

/* -------------------------------------------------------------------------- */
/* --------------------- Services Why Use Gozem Section --------------------- */
/* -------------------------------------------------------------------------- */

.why-use-gozem-section {
    display: flex;
    padding: var(--Spacings-12, 40px) 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacings-10, 32px);
    border-bottom: 1px solid var(--Colors-C-Grey-Grey-30, #E8E8E8);
}

.u-grid--title .why-section_title {
    color: var(--Colors-C-Grey-Grey-100, #1A1A1A);
    text-align: center;

    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 0;
}


.why-use-gozem-section .why-section_body {

    display: grid;
    gap: var(--Spacings-8, 24px);
}

.why-use-gozem-section .why-section_body .why-section_item {
    flex: 1 0 0;
}

.why-use-gozem-section .why-section_body .why-section_item .card {
    border-radius: 24px;
    border: 1px solid #D8D8D8;
    background: #F9F9F9;
    height: 100%;
}

.why-use-gozem-section .why-section_body .why-section_item .card img {
    object-fit: cover;
    border-radius: 24px 24px 0 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto !important;
}

.why-use-gozem-section .why-section_body .why-section_item .card .card-body {

    padding: var(--Spacings-11, 36px) var(--Spacings-6, 16px) var(--Spacings-6, 16px);

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacings-4, 8px);
    align-self: stretch;
}

.why-use-gozem-section .why-section_body .why-section_item .card-body::before {
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    top: -32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: var(--badge);
}


.why-use-gozem-section .why-section_body .why-section_item .card .card-body .card-title {
    color: var(--Colors-C-Grey-Grey-100, #1A1A1A);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.why-use-gozem-section .why-section_body .why-section_item .card-body .card-text>* {
    color: var(--Colors-C-Grey-Grey-80, #595959);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}





/* -------------------------------------------------------------------------- */
/* --------------------- Services Become Partner Section -------------------- */
/* -------------------------------------------------------------------------- */


.partner-section .partner-section_image-wrapper {
    aspect-ratio: 16 / 9;
}

.u--grid {
    display: grid;
    grid-template-areas:
        "partner-section_image-wrapper"
        "partner-section_content";
    grid-template-columns: 1fr;
}


.partner-section .partner-section_image-wrapper .partner-section_image {
    grid-area: partner-section_image-wrapper;
    height: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.partner-bg.img-fluid {
    height: 100%;
    object-fit: cover;
}

.partner-section .partner-section_content {

    grid-area: partner-section_content;
    background-color: var(--Colors-Green-Gozem-100, #179138);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;

    padding: var(--Spacings-7, 20px) var(--Spacings-7, 20px) var(--Spacings-12, 40px) var(--Spacings-7, 20px);
    align-self: stretch;
}

.partner-section .partner-section_content .partner-section_title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacings-7, 20px);
    align-self: stretch;
}

.partner-section .partner-section_content .partner-section_title-wrapper .partner-section_title {
    color: var(--Colors-Neutral-White, #FFF);

    /* Inter/i32/Extra Bold */
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.partner-section .partner-section_content .partner-section_title-wrapper .partner-section__description p {
    color: var(--Colors-Neutral-White, #FFF);

    /* Inter/i14/Regular */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.partner-section .partner-section_content .partner-section_title-wrapper .partner-section__description .description__important {
    color: var(--Colors-Neutral-White, #FFF);

    /* Inter/i14/Bold */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.partner-section .partner-section_content .partner-section_cta {
    width: 100%;
}

.partner-section .partner-section_content .partner-section_cta a {
    display: flex;
    height: 56px;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    color: #0E5E24;
    text-align: center;
    text-overflow: ellipsis;
    font-style: normal;
    line-height: normal;
}


/* -------------------------------------------------------------------------- */
/* ------------------------ Services Download Section ----------------------- */
/* -------------------------------------------------------------------------- */

.download-app-section {
    display: flex;
    padding: var(--Spacings-12, 40px) 0 0;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    background-color: #E8F4EB;

}

.download-app-section .download-grid {
    display: grid;
    gap: var(--Spacings-10, 32px);
    grid-template-areas:
        "download-app-section_content"
        "download-app-section_image-wrapper";
    grid-template-columns: 1fr;

    justify-items: center;
}

.download-app-section .download-app-section_content {
    /* order: 1; */
    grid-area: download-app-section_content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--Spacings-10, 32px);
    align-self: stretch;
    padding: 0 20px;
}

.download-app-section .download-app-section_content .download-app-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacings-7, 20px);
    align-self: stretch;
}


.download-app-section .download-app-section_content .download-app-title-wrapper .download-app-title {
    color: var(--Colors-Green-Gozem-120, #0E5E24);
    text-align: center;

    /* Inter/i32/Extra Bold */
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 0;
}

.download-app-section .download-app-section_content .download-app-title-wrapper .download-app-description p {
    color: rgba(14, 94, 36, 0.80);
    text-align: center;

    /* Inter/i14/Regular */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

.download-app-section .download-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.download-app-section .download-app-section_content .download-app-section__buttons .btn-download {
    height: 62px;
    width: 40px;
}

.download-app-section .btn-download.btn-app-store-primary {
    background-image: url("../images/green-apple-logo.svg");
}

.download-app-section .btn-download.btn-google-play-primary {
    background-image: url("../images/green-google-play-logo.svg");
}

.download-app-section .divider::after {
    content: '';
    border-right: 2px solid #0E5E24;
    height: 38.4px;
    display: block;
    position: relative;
    border-radius: 20px;
}


.download-app-section .download-app-section_image-wrapper {
    align-content: flex-end;
    grid-area: download-app-section_image-wrapper;

    width: 100%;
}

.download-app-section .download-app-section_image-wrapper .download-app-section_image {
    background-image: url("../images/hand-holding-phone.png");
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: top;
    background-size: 102%;
    aspect-ratio: 9 / 12;
    width: 88%;
    place-self: end;
}









/* ≥ 768px (tablettes) */
@media (min-width: 744px) {
    .why-use-gozem-section {

        padding: var(--Spacings-16, 64px) 0;
        gap: var(--Spacings-12, 40px);
    }

    .why-use-gozem-section .why-section_header .why-section_title {
        font-size: 38px;
    }

    .why-use-gozem-section .why-section_body {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: var(--Spacings-6, 16px);
        align-self: stretch;
    }

    /* .why-use-gozem-section .why-section_body .why-section_item .card img {

        height: calc(32vw - 5rem);
        max-height: calc(60vw - 5rem);
    } */

    .u-grid--title .why-section_title {
        font-size: 38px;
    }


    /* -------------------------------------------------------------------------- */
    .u--grid {
        display: flex;
        align-items: stretch;
        height: 100%;
    }

    .partner-section .partner-section_image-wrapper {
        height: auto;
        width: 40%;
    }

    .partner-section .partner-section_content {
        width: 60%;
        display: flex;
        padding: var(--Spacings-16, 64px) var(--Spacings-10, 32px);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--Spacings-10, 32px);
    }

    .partner-section .partner-section_content .partner-section_title-wrapper .partner-section_title {
        font-size: 38px;
    }

    /* -------------------------------------------------------------------------- */
    .download-app-section {
        padding: var(--Spacings-16, 64px) 0 0;
    }


    .download-app-section .download-grid {
        gap: var(--Spacings-14, 48px);
    }

    .download-app-section .download-app-section_content .download-app-section__buttons .btn-download {
        width: 166px;
    }

    html[lang=fr-FR] .download-app-section .btn-download.btn-app-store-primary {
        background-image: url("../images/app-store-bg-black-badge-fr.svg");
    }

    html[lang=fr-FR] .download-app-section .btn-download.btn-google-play-primary {
        background-image: url("../images/google-play-bg-black-badge-fr.svg");
    }



    .download-app-section .btn-download.btn-app-store-primary {
        background-image: url("../images/app-store-bg-black-badge-en.svg");
    }

    .download-app-section .btn-download.btn-google-play-primary {
        background-image: url("../images/google-play-bg-black-badge-en.svg");
    }
}


@media (min-width: 1024px) {
    .why-use-gozem-section {
        padding: 124px 0 96px;
        gap: 80px;
        border: none;
    }

    .why-use-gozem-section .why-section_header .why-section_title {
        font-size: 48px;
    }

    .why-use-gozem-section .why-section_body .why-section_item {
        flex: 1 0 auto;
        width: 29%;
    }

    .why-use-gozem-section .why-section_body {
        gap: 56px;
        align-items: stretch;
    }


    .why-use-gozem-section .why-section_body .why-section_item .card-body::before {
        width: 70px;
        height: 70px;
    }

    .why-use-gozem-section .why-section_body .why-section_item .card img {
        height: calc(30vw - 5rem);
        max-height: 18rem;
    }

    .why-use-gozem-section .why-section_body .why-section_item .card .card-body {

        padding: 48px 32px 32px 32px;
        gap: 24px;
    }

    .why-use-gozem-section .why-section_body .why-section_item .card .card-body .card-title {

        font-size: 24px;
    }

    .why-use-gozem-section .why-section_body .why-section_item .card-body .card-text>* {

        font-size: 18px;
    }

    /* -------------------------------------------------------------------------- */
    .partner-section .partner-section_content {
        background-image: url("../images/partner-section-gozem-logo.svg");
        background-position: bottom right;
        background-repeat: no-repeat;
        background-size: 400px;

        padding: 90px 20px 170px 118px;
    }


    .partner-section .partner-section_content .partner-section_title-wrapper {
        align-items: center;
        gap: 16px;
        max-width: 540px;
    }

    .partner-section .partner-section_image-wrapper img {
        /* height: 40vw; */
        width: 100%;
        object-fit: cover;
    }

    .partner-section .partner-section_content .partner-section_title-wrapper .partner-section_title {
        font-size: 48px;
    }

    .partner-section .partner-section_content .partner-section_title-wrapper .partner-section__description p {
        font-size: 18px;
    }

    .partner-section .partner-section_content .partner-section_title-wrapper .partner-section__description .description__important {
        font-size: 18px;
    }

    .partner-section .partner-section_content .partner-section_cta a {

        width: fit-content;
    }


    /* -------------------------------------------------------------------------- */


    .download-app-section {
        padding: 96px 0;
        background-color: #fff;
    }

    .download-app-section .gz-container-fluid {
        padding: 0 20px !important;
    }

    .download-app-section .download-grid {
        /* display: flex;
        flex-direction: row; */
        background-image: url("../images/gozem_symbol-green-100.svg");
        background-position: top right;
        background-repeat: no-repeat;
        border-radius: 32px;
        background-color: #E8F4EB;
        height: 40rem;
        /* padding-top: 42px; */
        padding-left: 80px;
        padding-right: 80px;

        display: grid;
        grid-template-areas: "download-app-section_content" "download-app-section_image-wrapper";
        grid-template-columns: 1fr 420px;
    }



    /* .download-app-section .download-app-section_content{width: 96%;} */
    .download-app-section .download-app-section_image-wrapper .download-app-section_image {
        background-size: 100%;
        min-height: 100%;

        background-position-y: bottom;
        aspect-ratio: auto;
        width: 420px;
    }

    .download-app-section .download-app-section_content {
        gap: 37px;
        max-width: 680px;
        justify-self: start;
        align-items: flex-start;
        justify-content: center;
        z-index: 3;
        grid-row: 1 / 3 !important;
        height: 100%;
    }

    .download-app-section .download-app-section_content .download-app-title-wrapper .download-app-title {
        color: var(--Colors-Green-Gozem-120, #0E5E24);
        font-family: Inter;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-align: start;
    }


    .download-app-section .download-app-section_content .download-app-title-wrapper .download-app-description p {
        color: var(--Colors-C-Grey-Grey-100, #1A1A1A);
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: start;
    }

    .download-app-section .download-app-section_image-wrapper {
        place-self: flex-end;
        grid-column: 1 / span 2;
        grid-row: 1 / 3 !important;
        height: 100%;
        z-index: 1;
    }
}