.a-propos-presentation-container {
    width: 100%;
    height: fit-content;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.a-propos-presentation {
    width: 80%;
    height: fit-content;
    border: 3px solid red;
    margin: 2rem 0;
    padding: 1rem;
    border-radius: 25px;
}

.a-propos-presentation-title {
    height: fit-content;
   
    display: flex;
    align-items: center;
   
    font-size: 35px;
    font-weight: bold;
}

.a-propos-presentation-title-logo {
    height: 100px;
}

.a-propos-presentation-texte-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 90%;
    margin: auto;
    padding-top: 1rem;
   
    
}

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

    .a-propos-presentation {
    width: 90%;
}
.a-propos-presentation-title {
    font-size: 30px;
    flex-direction: column;
 text-align: center;
}

.a-propos-presentation-title-logo {
    height: 60px;
}

.a-propos-presentation-texte-container {
font-size: 18px;
   
    
}
}
