.presentation-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 4rem 0;


}

.presentation {
  width: 80%;
  height: fit-content;
  padding: 25px;
display: flex;
  
}

.presentation-slogan {
display: flex;
flex-wrap: wrap;
width: 60%;
border-right: 3px solid #d13133;
padding: 1rem;
gap: 1rem;
}



.slogan {
    margin-left: 5px;
    font-size: 25px;    
}

.presentation-title {
  font-size: 35px;
  font-weight: bold;
  transform: translateX(-25%);
}

.presentation-logo {
  width: 35%;
  margin: auto;
}



/* Responsive */
@media (max-width: 862px) {

  

.presentation {
  width: 100%;
  flex-direction: column-reverse;
  
}

.presentation-slogan {

width: 100%;
border-top: 3px solid #d13133;
border-right: 0px solid #d13133;

}

.presentation-title {
  font-size: 30px;
  font-weight: bold;
  transform: translateX(-20px);
}

.presentation-logo {
  width: 80%;
  margin: auto;
  margin-bottom: 1rem;
}

.slogan {
    margin-left: 5px;
    font-size: 20px;    
}
}