.section_banner_why-us {
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: luminosity;
    background-image: url('../media/jpg/why-us-banner.jpg');
}


.container_banner_why-us {
    padding: 3vw 6vw;
    display: flex;
    gap: 2vw;
    justify-content: center;
    height: 100vh;
}

.why-us-banner-text {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
}

.why-us-banner-text h1 {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--white);
    z-index: 2;
}

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    z-index: 2;
}

.section-why-us-text {
    padding: 3vw 6vw;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-why-us-text h2 {
    text-align: center;
}

.why-us-text {
    color: var(--text-color);
    text-align: center;
}

/* Why Us carrousel Section */
.section-why-us-carrousel {
    background-color: var(--blue);
}

.swiper {
    padding: 3vw 6vw;
}

.why_card {
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    padding: 3vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-items: start;
    align-items: start;
    justify-content: start;
    height: fit-content;
    align-self: start;
    object-fit: cover;
}

.why_card:hover {
    transform: translateY(-5px);
}

.why_card h3 {
    font-size: 1.5rem;
    color: var(--white);
}

.why_card .card_info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: start;
    text-align: center;
}

.swiper-slide-active.why_card {
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.5s ease-in-out;
    object-fit: cover;

}

.swiper-slide-active.why_card h3,
.swiper-slide-active.why_card p {
    color: var(--text-color);
    transition: color 0.5s ease;
}



.why_card span {
    background-color: var(--secondary-color);
    color: var(--white);
    height: 1.5rem;
    width: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;
}

/* section partner today */

.section-partner-today {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1vw;
    padding: 3vw 6vw;
}

.section-partner-today .img-partner-today {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.section-partner-today .text-partner-today {
    background-color: var(--background-color);
    border-radius: 20px;
}

.section-partner-today .text-partner-today h2 {
    color: var(--white);
    background-color: var(--primary-color);
    padding: 2rem 1rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.section-partner-today .text-partner-today p {
    margin: 3rem;
    color: var(--text-color);
    text-wrap: balance;
}

/* section get in touch*/

.section-get-in-touch {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6vw;
    gap: 2rem;
    background-image: url('../media/jpg/why-us-02.jpg');
    background-size: cover;
    background-position: center;
}

.section-get-in-touch p {
    width: 50vw;
    text-align: center;
}

@media (max-width: 900px) {
    .section_banner_why-us,
    .container_banner_why-us {
        height: 40vh;
    }

    .section-why-us-text {
        padding: 12vw 6vw;
        gap: 1.5rem;
    }

    /* Why Us carrousel Section */
    .section-why-us-carrousel {
        background-color: var(--blue);
        padding: 12vw 6vw;
    }

    .swiper {
        padding: 0;
    }

    .why_card {
        padding: 6vw;
    }

    .why_card span {
        height: 2rem;
        width: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        text-align: center;
        align-self: center;
    }

    /* section partner today */

    .section-partner-today {
        grid-template-columns: 1fr;
        row-gap: 3vw;
        padding: 12vw 6vw;
    }

    .section-partner-today .text-partner-today p {
        text-align: center;
        margin: 2rem;
    }

    /* section get in touch*/

    .section-get-in-touch {
        padding: 12vw 6vw;
        gap: 2rem;
        background-image: url('../media/jpg/why-us-02.jpg');
        background-size: cover;
        background-position: 70% 20%;
    }
}