.formation-base-container {
     width: 90%;
    max-width: 2000px;
    padding: 1rem;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: fit-content;
}

.formation-base-container ul {
list-style-type: disc;
  padding-left: 20px;
}

.formation-base-header {
    width: 100%;
    height: 20vh;

}

.formation-base-top {
   /* background-image: url(../../img/abstract-wave-background.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 70%;
    position: relative;
}

.formation-base-titre {
    position: absolute;
    background-color: white;
    padding: 1rem;
    width: 70%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.formation-base-titre h2{
text-align: center;
}

.formation-base-block {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid black;
}

.formation-base-block-illustration {
    width: 50%;
}

.formation-base-block-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.formation-base-block-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.formation-base-infos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
   
}

.formation-base-infos p{
    width: 50%;
    min-width: 330px;
   
}

.formation-base-infos-image {
    height: 100%;
    max-width: 330px;
    border-radius: 8px;
}

/* version mobile */

@media (max-width: 862px) {


    .formation-base-block {
    flex-direction: column;
}

.formation-base-block-illustration, .formation-base-block-content {
    width: 100%;
}


}