.home_presentation {
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: #F2F4F5;
}

.home_presentation_sz {
    display: flex;
    width: calc(100% - 20px);
    max-width: 1130px;
    justify-content: center;
    background-image: url('/wp-content/themes/malina/assets/img/home_presentation_1.webp'),
                     url('/wp-content/themes/malina/assets/img/home_presentation_2.webp'),
                     url('/wp-content/themes/malina/assets/img/home_presentation_3.svg');
    background-position: left center, right bottom, center center;
    background-size: auto 100%, 50% auto, cover;
    background-repeat: no-repeat;
    margin: 55px 0;
    padding: 55px 0;
    border-radius: 10px;
    overflow: hidden;
}

.home_presentation_data {
    display: flex;
    width: calc(100% - 40px);
    max-width: 430px;
    flex-direction: column;
}

.home_presentation_logo_c {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home_presentation_logo_enc {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.home_presentation_logo_img {
    display: block;
}

.home_presentation_logo_img img {
    height: 35px;
    width: auto;
    margin: 10px 0px 14px 0px;
}

.home_presentation_txt {
    line-height: 1.33;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", serif;
    font-weight: 400;
    font-size: 20px;
    margin-top: 20px;
}

.home_presentation_btn_c {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.home_presentation_btn {
    display: flex;
    width: auto;
    background-color: #000000;
    border-radius: 40px;
    line-height: 1;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", serif;
    font-weight: 500;
    font-size: 20px;
    margin: 10px 0 0 0;
    padding: 20px 32px;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.home_presentation_btn:hover {
    text-decoration: underline;
    color: #FFFFFF;
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
    .home_presentation_sz {
        background-image: url('/wp-content/themes/malina/assets/img/home_presentation_2.webp'),
                         url('/wp-content/themes/malina/assets/img/home_presentation_3.svg');
        background-position: right bottom, center center;
        background-size: 50% auto, cover;
    }

    .home_presentation_data {
        max-width: 100%;
        padding: 0 20px;
    }

    .home_presentation_txt {
        font-size: 18px;
    }

    .home_presentation_btn {
        font-size: 18px;
        padding: 15px 25px;
    }
}
