.presenation {
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    padding: 5%;
}
.presenation h1 {
    font-family: Roboto-Medium;
    font-size: 40px;
}
.presenation bold {
    font-family: Roboto-Medium;
}
.presenation .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: center;
    width: 20%;
    height: 100%;
}
.presenation .right img {
    width: 260px;
    height: 200px;
    object-fit: contain;
}
.presenation .left {
    width: 60%;
    height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.presenation .holder {
    display: flex;
    gap: 20px;
    width: 100%;
    min-height: 450px;
}
.presenation .holder p {
    font-size: 17px;
    text-align: justify;
}
.presenation .holder p.low {
    font-family: "Roboto-Light";
    font-size: 12px;
}
.presenation .holder .col-r, .presenation .holder .col-l {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
}
@media (max-width: 767px) {
    /* Styles spécifiques aux téléphones */
    h1 {
        text-align: center;
    }
    .presenation {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .presenation > * {
        width: 100% !important;
    }
    .presenation .left .holder {
        flex-direction: column !important;
    }
    .presenation .left .holder > * {
        width: 100% !important;
    }
    .presenation .right {
        flex-direction: row !important;
        justify-content: space-evenly;
    }
    .presenation .right img {
        width: 30% !important;
        height: 100px !important;
    }
}
