/*!
Theme Name: Gozem Revamp Theme
Theme URI: http://underscores.me/
Author: gozem.co
Author URI: http://gozem.co/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: gozem-revamp-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Gozem Revamp Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:wght@400;600;700&family=Muli:wght@300;400;600;700&display=swap");

:root {
    /* Spacing */
    --spacing-0: 0;
    --spacing-2: 4px;
    --spacing-4: 8px;
    --spacing-6: 16px;
    --spacing-7: 20px;
    --spacing-8: 24px;
    --spacing-10: 32px;
    --spacing-12: 40px;
    --spacing-14: 48px;
    --spacing-15: 56px;
    --spacing-16: 64px;

    /* Colors */
    --color-white: #FFF;
    --color-green-100: #179138;
    --color-green-120: #0E5E24;
    --color-green-200: #0B471B;
    --color-green-40: #C5EBCF;
    --color-grey-100: #1A1A1A;
    --color-grey-80: #595959;
    --color-grey-40: #D8D8D8;
    --color-grey-10: #F9F9F9;

    --color-green-100-alpha-20: rgba(23, 145, 56, 0.2);
    --color-green-120-alpha-30: rgba(14, 94, 36, 0.3);


    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    --font-body: var(--font-sans);
    --font-size-base: 1rem;
    --font-weight-semi-bold: 600;
    --text-color: #454545;

    /* Layout */
    --header-height: 70px;
}

/* Base Styles */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: Inter;
    font-size: var(--font-size-base);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    height: 100%;
    padding-top: var(--header-height);
    position: relative;
}

/* Utility Classes */
.gz-container-fluid,
.service-hero-container .service-hero_content,
.hero-container-main .hero-content-area {
    width: 100%;
    max-width: 100%;
    /* margin: 0 auto; */
    margin-inline: auto;
    padding: 0 20px;
}

/* -------------------------------------------------------------------------- */
/* ----------------------------- Header & Navigation ----------------------------- */
/* -------------------------------------------------------------------------- */
.main-navigation-container {
    width: 100%;
    z-index: 1;
    position: absolute;
}

.main-navigation-container.career-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
    background-color: #fff;
}

.main-navigation-container.fixed_top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: var(--color-white);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-height);
    padding: 0px;
    background: transparent;
    /* border-bottom: 1px solid #E8E8E8; */
}

.logo-desktop {
    display: inline-block;
    max-width: 148px;
    height: 32px;
}

.navbar-toggler {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggle-wrapper {
    width: 24px;
    height: 24px;
    position: relative;
}

.toggler-icon,
.toggler-icon::before,
.toggler-icon::after {
    position: absolute;
    width: 24px;
    height: 4px;
    left: 0;
    background-color: var(--color-green-100);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.toggler-icon {
    top: 50%;
    transform: translateY(-50%);
}

.toggler-icon::before,
.toggler-icon::after {
    content: '';
    left: 0;
}

.toggler-icon::before {
    top: -9px;
}

.toggler-icon::after {
    bottom: -9px;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.navbar-nav {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}

.nav-link {
    color: var(--color-grey-100);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;

    padding-bottom: 0;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #000;
}

.main-navigation .nav-toggle-locate {
    display: flex;
    margin-right: 0px;
    align-items: center;
}

.main-navigation .nav-toggle-locate .nav-locate .dropdown-toggle::after {
    display: none;
}

.main-navigation .nav-locate .nav-item {
    list-style: none;
    padding-right: 16px;
}

.main-navigation .nav-locate .nav-icon i {
    color: var(--color-green-100);
    font-size: 24px;
}

.main-navigation #menu-location-menu {
    padding-left: 0rem;
}

.main-navigation .nav-locate .dropdown-menu.show {
    left: -120px;
}

.main-navigation .navbar-nav.ml-auto.nav-locate-translate {
    display: none;
}



.main-navigation-container.fixed_top .main-navigation .nav-link {
    /* padding: 6px 0 0; */
}

.main-navigation-container.fixed_top .main-navigation .nav-link,
.main-navigation-container.fixed_top .main-navigation .nav-locate-translate .nav-link:hover,
.main-navigation-container.fixed_top .main-navigation .nav-locate-translate .nav-link:focus,
.main-navigation-container.fixed_top .main-navigation .nav-locate-translate .nav-link.active,
.main-navigation-container.fixed_top .main-navigation .nav-locate-translate .nav-link.show {
    color: #000 !important;
}

.main-navigation-container.fixed_top .main-navigation .nav-link:hover,
.main-navigation-container.fixed_top .main-navigation .nav-link:focus,
.main-navigation-container.fixed_top .main-navigation .nav-link.active,
.main-navigation-container.fixed_top .main-navigation .nav-link.show {
    color: #179138 !important;
}

.second-navigation .nav-link:hover,
.second-navigation .nav-link:focus,
.second-navigation .nav-link.active,
.second-navigation .nav-link.show {
    color: #179138 !important;
}

.second-navigation {
    padding: 0;
}

.second-navigation .navbar-nav {
    flex-direction: row;
    gap: 20px;
}

.second-navigation .nav-link {
    color: #1A1A1A !important;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding-bottom: .5rem;
}

/* -------------------------------------------------------------------------- */
/* ------------------------------ Main Hero Section ------------------------------ */
/* -------------------------------------------------------------------------- */
.hero-section {
    display: grid;
    grid-template-areas:
        "carousel-indicators"
        "carousel-inner"
        "carousel-description";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    position: relative;
    width: 100%;
    overflow: hidden;
    align-items: center;
}

.hero-section .carousel-indicators {
    grid-area: carousel-indicators;
    justify-content: start;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .indicator,
.hero-section .indicator.active {
    background-color: rgba(255, 255, 255, 0.415);
    height: 3px;
    width: 64px;
    border: solid 1px rgba(255, 255, 255, 0.415);
    border-radius: 10px;
    opacity: .5;
}

.hero-section .indicator.completed.active,
.hero-section .completed {
    opacity: 1 !important;
}

.hero-section .progress-container {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.hero-section .progress-bar {
    height: 100%;
    width: 0%;
    background-color: #fff;
    transition: width 0.1s linear, background-color 0.3s ease;
}

.hero-section .carousel-description {
    grid-area: carousel-description;
    padding: 36px 20px;
}

.hero-section .carousel-description .carousel-title {
    color: #1A1A1A;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 0;
}

.hero-section .carousel-step-indicators {
    list-style: none;
    padding: 0;
}

.hero-section .carousel-step-indicators .step-indicator {
    display: none;
}

.hero-section .carousel-step-indicators .step-indicator.active {
    display: block;
}

.image-overlay-container.hero-slide1 {
    background-image: url("assets/images/hero_slide1.jpg");
}

.image-overlay-container.hero-slide2 {
    background-image: url("assets/images/hero_slide2.jpeg");
}

.image-overlay-container.hero-slide3 {
    background-image: url("assets/images/hero_slide3.jpg");
}

.image-overlay-container.hero-slide4 {
    background-image: url("assets/images/hero_slide4.jpg");
}

.image-overlay-container.hero-slide5 {
    background-image: url("assets/images/hero_slide5.jpeg");
}

.image-overlay-container.hero-slide1,
.image-overlay-container.hero-slide2,
.image-overlay-container.hero-slide3,
.image-overlay-container.hero-slide4,
.image-overlay-container.hero-slide5 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 50vw;
}

.image-overlay-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.30);
    transition: background-color 0.3s ease;
}

/* -------------------------------------------------------------------------- */
/* ----------------------------- Action Section ----------------------------- */
/* -------------------------------------------------------------------------- */
.action-section {
    background: #179138;
}

.action-section .download_app {
    display: flex;
    padding: 20px 0;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    justify-content: center;
}

.action-section-text {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

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

.action-section .btn-download.btn-app-store-primary,
.action-section .btn-download.btn-google-play-primary {
    width: 28.689px;
    height: 32px;
}

.action-section .btn-download.btn-app-store-primary {
    background-image: url("assets/images/white-apple-logo.svg") !important
}

.action-section .btn-download.btn-google-play-primary {
    background-image: url("assets/images/white-google-play-logo.svg") !important
}

.action-section .divider::after {
    content: '';
    border-right: 2px solid #fff;
    height: 2.5rem;
    display: block;
    position: relative;
}

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

.services-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;

}

.services-section .gz-container-fluid {
    padding: 0;
}

.services-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.services-section-container .section-title {
    color: #1A1A1A;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 0;
    padding: 40px 20px;
}

.section-body {
    display: grid;
    grid-template-areas:
        "services-nav"
        "services-nav-content";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 36px;
    padding-bottom: 40px;
}

.services-nav {
    grid-area: services-nav;
}

.services-nav-content {
    grid-area: services-nav-content;

}

.services-section .section-body .nav.nav-pills {
    padding: 16px 20px;
    justify-content: flex-start;
    align-items: center;
    gap: 4px !important;
    width: 100%;
    border-top: 1px solid #D8D8D8;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 0px;
}

.nav-pills .primary-nav-link,
.nav-pills .primary-nav-link:hover,
.nav-pills .primary-nav-link.active,
.nav-pills .primary-nav-link.active:hover,
.nav-pills .show>.primary-nav-link,
.nav-pills .secondary-nav-link,
.nav-pills .secondary-nav-link:hover,
.nav-pills .secondary-nav-link.active,
.nav-pills .secondary-nav-link.active:hover,
.nav-pills .show>.secondary-nav-link {
    border-radius: 999px;
    padding: 12px 32px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* Couleurs de base pour les liens */
.nav-pills .primary-nav-link,
.nav-pills .secondary-nav-link {
    color: #1A1A1A;
    background: rgba(232, 244, 235, 0.00);
}

/* Couleur pour l'état hover */
.nav-pills .primary-nav-link:hover,
.nav-pills .secondary-nav-link:hover {
    color: #179138;
    background-color: #e8f4eb;
}

/* Styles pour le lien primaire actif */
.nav-pills .primary-nav-link.active,
.nav-pills .primary-nav-link.active:hover,
.nav-pills .show>.primary-nav-link {
    color: #fff;
    background: #179138;
}

.services-section .tab-content .tab-pane .services-tab-content,
.services-section .tab-content .tab-pane .service-tab-body-content .tab-moto-body,
.services-section .tab-content .tab-pane .service-tab-body-content .tab-tricycle-body,
.services-section .tab-content .tab-pane .service-tab-body-content .tab-voiture-body,
.services-section .tab-content .tab-pane .service-tab-body-content .tab-coursier-body,
.services-section .tab-content .tab-pane .service-tab-body-wrapper .tab-restaurants-body,
.services-section .tab-content .tab-pane .service-tab-body-wrapper .tab-shopping-body,
.services-section .tab-content .tab-pane .service-tab-body-wrapper .tab-billetteries-body,
.services-section .tab-content .tab-pane .services-tab-body-container {
    display: flex;
    padding: 0px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}



.horizontal-divider {
    width: 100%;
}

.horizontal-divider::after {
    content: '';
    border-bottom: 1px solid #E8E8E8;
    width: 100%;
    display: block;
    position: relative;
}

.services-section .service_item-link {
    text-decoration: none;
}


.services-section .service-item {
    display: flex;
    padding: 0px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.services-section .service-item-title {
    color: #1A1A1A;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 0px;
}

.services-section .service-item .service_item_menu {
    display: grid;
    grid-template-columns: repeat(1fr);
    gap: 24px;
}

.services-section .service-item .card {
    background-color: transparent;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    flex-direction: row;
}

.service_item_menu .card-image {
    width: fit-content;
    align-self: center;

}

.service_item_menu .card-image img {
    width: 56px;
    height: 56px;
}

.services-section .service_item_menu .card .card-body.p-0 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.services-section .service-item .card .card-title {
    color: #1A1A1A;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}

.service_item_menu .service_item-link .card p {
    color: #1A1A1A;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 0;
}

.services-section .tab-content .tab-pane.service-pane .tab-pane-body h3 {
    padding: 0px 20px;
}

.services-section .tab-content .tab-pane .tab-pane-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-self: stretch;
}

.services-section .section-body .tab-content .tab-pane .service-tab-body-content .nav.nav-pills,
.services-section .section-body .tab-content .tab-pane .service-tab-body-wrapper .nav.nav-pills,
.services-section .section-body .tab-content .tab-pane .services-tab-body-container .nav.nav-pills {
    border: none;
}


.service-tab-body-content,
.service-tab-body-wrapper {
    display: grid;
    grid-template-areas:
        "service--nav"
        "service--content";
    grid-template-columns: 100vw;
    grid-template-rows: auto;
    gap: 36px;
}

.service--nav {
    grid-area: service--nav;
}

.service--content {
    grid-area: service--content;

}

.inscription-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
}

.services-section .download-section {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 16px;
    background-color: #F2F2F2;
}

/* ,
.services-section .partner-section .partner-section-title,
.services-section .become-driver-section .become-driver-section-title,
.services-section .become-gozem-money-agent-section .become-gozem-money-agent-section-title */
.services-section .download-section .download-section-title {
    color: #1A1A1A;
    text-align: center;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

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

.services-section .download-section .btn-download {
    height: 60px
}

.services-section .download-section .btn-download.btn-app-store-secondary,
.services-section .download-section .btn-download.btn-google-play-secondary {
    width: 175px
}

/* -------------------------------------------------------------------------- */
/* ----------------------------- Update Section ----------------------------- */
/* -------------------------------------------------------------------------- */

.update-section {
    padding: 40px 0px;
    background: #F2F2F2;
}

.update-section .update-section-container {
    display: grid;
    grid-template-areas:
        "update-section-title"
        "update-section-body"
        "more--update";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 36px;
}

.update-section-title {
    grid-area: update-section-title;
}

.update-section .update-section-title .update-section--title {
    color: #1A1A1A;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 0;
    padding: 0px 20px;
    justify-content: center;
}

.update-section .update-section-title .update-section--text {
    display: none;
}

.update-section .update-section-body {
    grid-area: update-section-body;
    max-width: 100%;
    padding: 0px;
    justify-content: space-between;
}


.update-section .update-section-body .update_item {
    width: 300px;
    text-decoration: none;
}


.update-section .update-section-body .update_item .card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    background-color: transparent;
}

/* .update-section .update-section-body .update_item .card .card-img-styled {
    width: 100%;
    height: 202px;
    border-radius: 8px;
    overflow: hidden;
}
 */
.update-section .update-section-body .update_item .card .card-img {
    /* width: 100%;
    display: block;
    height: 100%;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden; */

    aspect-ratio: 12 / 9;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.update-section .update-section-body .update_item .card .card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.update-section .update-section-body .card .card-body .card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
    overflow: hidden;
    color: #1A1A1A;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}

.update-section .update-section-body .card .date-time {
    color: #949494;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    margin-bottom: 0;
    gap: 10px;
}

.update-section .update-section-body .card .date-time .date-text-body-secondary {
    display: flex;
    padding-top: 1px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.update-section .update-section-body .card .date-time .date-text-body-secondary::after {
    content: '\f111';
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-size: 4px;
    font-weight: 900;
    margin: 0;
    vertical-align: 0;
}

.update-section .horizontal-divider::after {
    content: '';
    border-bottom: 1px solid #D8D8D8;
    width: 100%;
    display: block;
    position: relative;
}


.update-section-body .learn-more {
    cursor: pointer;

}

.update-section-body .learn-more {
    color: #179138;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;

    gap: 8px;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.more--update {
    grid-area: more--update;
}

.more--update .btn-more-update {
    padding: 12px 16px;
    width: 100%;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    border: 2px solid #179138;
}

/* -------------------------------------------------------------------------- */
/* ------------------------------- site-footer ------------------------------ */
/* -------------------------------------------------------------------------- */


.site-footer {
    color: #fff;
    background-color: #179138;
    line-height: 1.5rem;
}

.site-footer .site--description {
    padding: 32px 0 48px;
}

.site-footer .site-description-area {
    display: grid;
    grid-template-areas:
        "logo"
        "description-navigation"
        "hr"
        "reseau-download-location-language";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 48px;
}

.logo {
    grid-area: logo;
}

.site-footer .logo-footer {
    background-image: url("assets/images/gozem-logo-white.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 26px;
    text-indent: -9999px;
    width: 148px;
}

.site-footer .description-navigation {
    grid-area: description-navigation;

    display: grid;
    grid-template-areas:
        "footer-tagline"
        "navigation";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 48px;
}

.site-footer .footer-tagline {
    grid-area: footer-tagline;
}

.site-footer .footer-tagline p {
    color: #FFF;

    /* i16/Medium */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.site-footer .footer-tagline p:last-child {
    margin-bottom: 0;
}

.site-footer .navigation {
    grid-area: navigation;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.site-footer .navigation .navigation-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}


.site-footer .navigation .navigation-item h4,
.reseau-download-location-language-item h4 {
    color: #FFF;

    /* i18/Bold */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.site-footer a {
    text-decoration: none;

    color: #fff;
}

.site-footer address,
.site-footer .contact-us,
.site-footer .driver-support,
.site-footer .wa-message-u,
.site-footer .complaint,
.site-footer .menu li {
    color: #FFF;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0
}

.site-footer .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.reseau-download-location-language {
    grid-area: reseau-download-location-language;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.reseau-download-location-language-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.site-footer .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.site-footer .social-links a {
    color: #179138;
    background-color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    align-content: center;
    text-align: center;
}

.site-footer .link-social {
    display: inline-block
}


.site-footer .link-social i {
    font-size: 1.5rem;
    padding-top: 5px;
}

.site-footer .link-social:hover,
.site-footer .link-social:focus {
    color: #179138
}


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

.site-footer .btn-download.btn-app-store-primary,
.site-footer .btn-download.btn-google-play-primary {

    width: 39.047px;
    height: 48px;
}

.site-footer .btn-download.btn-app-store-primary {
    background-image: url("assets/images/white-apple-logo.svg");
}

.site-footer .btn-download.btn-google-play-primary {
    background-image: url("assets/images/white-google-play-logo.svg");
}

.site-footer .btn-download {
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    text-indent: -9999px;
    margin-bottom: 0;
}

.site-footer .divider::after {
    content: '';
    border-right: 2px solid #fff;
    height: 3rem;
    display: block;
    position: relative;
}

.site-footer .locate-translate {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.site-footer .locate-translate li {
    width: 100%;
}

.site-footer .locate-translate>li:first-child .dropdown-toggle::after {
    margin-left: auto;
}

.site-footer .locate-translate>li:not(:first-child) .dropdown-toggle {
    display: flex;
    align-items: center;
}

.site-footer .locate-translate>li:not(:first-child) .dropdown-toggle::before {
    content: "";
    display: inline-block;
    border: none;
    font-style: normal;
    background-image: url("assets/images/translate-white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    aspect-ratio: 1 / 1;
    margin-right: 7px;
}

.site-footer .locate-translate>li:not(:first-child) .dropdown-toggle::after {
    margin-left: auto !important;
}

.site-footer .locate-translate .nav-link {
    display: flex;
    padding: 12px 16px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 999px;
    border: 2px solid #D8D8D8;
}

.site-footer .locate-translate .nav-link .nav-icon {
    margin-right: 5px;
}

.site-footer .dropdown .dropdown-item {
    color: #454545
}

.site-footer .menu-footer-translate-menu-container .dropdown {
    margin: 2rem auto;
    width: 50%
}

.site-footer .site-info {
    padding: 32px 0 48px;
    background: #0E5E24;
}

.site-info .site-info-container {
    display: grid;
    grid-template-areas:
        "copyright"
        "privacy-policy"
        "terms-and-conditions"
        "cookies";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
}

.copyright {
    grid-area: copyright;
}

.privacy-policy {
    grid-area: privacy-policy;
}

.terms-and-conditions {
    grid-area: terms-and-conditions;
}

.cookies {
    grid-area: cookies;
}

.copyright,
.privacy-policy,
.terms-and-conditions,
.cookies {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.copyright {
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.privacy-policy a,
.terms-and-conditions a,
.cookies a {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
}



.site-footer .locate-translate .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #e8f4eb !important;
}


.site-footer .locate-translate .nav-item .dropdown-menu .dropdown-item {
    padding-top: 12px;
    padding-bottom: 12px;
}

.site-footer .locate-translate .nav-item .dropdown-menu .dropdown-item:hover {
    color: #179138 !important;
}


.input-inset,
.input-inset:focus {
    border-radius: 12px;
    background-color: #E8E8E8;
    border: none;

    display: flex;
    padding: 12px 24px 12px 56px;
    justify-content: center;
    align-items: center;
    gap: var(--Spacings-6, 16px);

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;

    overflow: hidden;
    color: #6C6C6C !important;
    text-overflow: ellipsis;

    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.input-inset::placeholder,
.searchIcon i {
    color: #6C6C6C !important;
}

.form-item {
    width: 100%;
}

.form-item label {
    position: relative;
    width: 100%;
}

.searchIcon {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 24px;
    bottom: 12px;
}

/* .input-inset::before {
  border: none;
  content: '\f002';
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  margin-left: 0.75rem;
  vertical-align: 0
} */

/* -------------------------------------------------------------------------- */
/* ------------------------------ Media Query ------------------------------ */
/* -------------------------------------------------------------------------- */

/* ≥ 768px (tablettes) */
@media (min-width: 744px) {

    .image-overlay-container.hero-slide1,
    .image-overlay-container.hero-slide2,
    .image-overlay-container.hero-slide3,
    .image-overlay-container.hero-slide4,
    .image-overlay-container.hero-slide5 {
        height: 40vw;
    }


    .hero-section .carousel-indicators {
        grid-area: carousel-indicators;
        bottom: 12px;
    }


    .hero-section .carousel-description .carousel-title {
        font-size: 48px;
    }

    .hero-section .carousel-description {
        padding: 36px 24px;
    }

    /* -------------------------------------------------------------------------- */
    .action-section .download_app {
        padding: 24px 0;
    }

    /* -------------------------------------------------------------------------- */
    .services-section-container .section-title {
        font-size: 38px;
    }

    .nav-pills .primary-nav-link,
    .nav-pills .primary-nav-link:hover,
    .nav-pills .primary-nav-link.active,
    .nav-pills .primary-nav-link.active:hover,
    .nav-pills .show>.primary-nav-link,
    .nav-pills .secondary-nav-link,
    .nav-pills .secondary-nav-link:hover,
    .nav-pills .secondary-nav-link.active,
    .nav-pills .secondary-nav-link.active:hover,
    .nav-pills .show>.secondary-nav-link {
        font-size: 20px;
    }

    .services-section .service-item .card .card-title {
        font-size: 20px;

    }

    .service_item_menu .service_item-link .card p {
        font-size: 16px;

    }

    .services-section .service-item .service_item_menu {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--Spacings-10, 32px) var(--Spacings-8, 24px)
    }

    .services-section .tab-content .tab-pane .tab-pane-body {
        align-items: center;
    }

    .services-section .section-body .nav.nav-pills {
        justify-content: center;
    }

    .services-section .download-links {
        flex-direction: row;
    }

    .inscription-section .download {
        width: 100%;
    }

    .services-section .download-section {
        background-color: #F9F9F9;
    }

    /* -------------------------------------------------------------------------- */
    .update-section .update-section-container {

        gap: 40px;
    }

    .update-section .update-section-title .update-section--title {

        font-size: 38px;

    }

    .update-section .update-section-body .card .card-body .card-title {

        font-size: 20px;
    }

    .update-section .update-section-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .update-section .update-section-title .update-section--title {

        padding: 0px;

    }

    .update-section .update-section-title .update-section--text {
        display: block;
        color: #595959;

        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .update-section .update-section-body .card .date-time {
        font-size: 14px;
    }

    .more--update .btn-more-update {

        width: fit-content;
        padding: 12px 24px;
    }

    .site-footer .navigation {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .reseau-download-location-language {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* -------------------------------------------------------------------------- */
    .site-footer .locate-translate {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
    }

    .site-info .site-info-container {

        grid-template-areas:
            "copyright copyright copyright"
            "privacy-policy terms-and-conditions cookies";
        grid-template-columns: auto auto 1fr;
        grid-template-rows: auto;
        gap: 24px;
    }

    .site-footer address,
    .site-footer .contact-us,
    .site-footer .driver-support,
    .site-footer .wa-message-u,
    .site-footer .complaint,
    .site-footer .menu li {
        font-size: 16px;
    }
}

@media (min-width: 992px) and ((max-width: 1023px)) {
    .collapse:not(.show) {
        display: none !important;
    }


    .navbar-collapse {
        flex-grow: 1 !important;
        flex-basis: 100% !important;
        align-items: center !important;
    }

    .navbar {
        position: relative !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .navbar-expand-lg .navbar-toggler {
        display: block;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
    }

    .second-navigation .navbar-nav {
        flex-direction: row;
    }

}



/* Tablets/Laptops */
@media (min-width: 1024px) {
    .main-navigation {
        padding: 21px 0 16px;
    }

    .second-navigation {
        padding: 8px 0;
    }

    .navbar-nav {
        padding: 0;
    }

    .main-navigation .navbar-brand {
        margin-right: 55px !important;
    }

    .main-navigation .nav-locate {
        display: none
    }

    .main-navigation .navbar-nav.ml-auto.nav-locate-translate {
        display: flex;
        gap: 20px;
    }

    .main-navigation .nav-locate-translate>li:first-child .dropdown-toggle {
        display: flex;
        padding: 12px 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 999px;
        border: 2px solid #1A1A1A;
        border-radius: 2rem;
    }

    .main-navigation-container.fixed_top .main-navigation .nav-locate-translate>li:last-child .dropdown-toggle {
        display: flex;
        padding: 12px 0px;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .main-navigation-container.fixed_top .main-navigation .nav-locate-translate>li:last-child .dropdown-toggle::before {
        content: "";
        display: inline-block;
        border: none;
        font-style: normal;
        background-repeat: no-repeat;
        background-size: contain;
        width: 24px;
        height: 24px;
        aspect-ratio: 1 / 1;
        background-image: url("assets/images/translate-black.svg");
    }

    .main-navigation .siteMenu {
        gap: 32px;
    }

    .main-navigation .siteMenu .nav-link {
        padding: 6px 0px !important;
    }

    .nav-link {
        padding-bottom: 4px;

    }


    .main-navigation-container.fixed_top .main-navigation .nav-locate-translate .nav-item .dropdown-menu .dropdown-item:hover {
        background-color: #e8f4eb !important;
    }


    .main-navigation-container.fixed_top .main-navigation .nav-locate-translate .nav-item .dropdown-menu .dropdown-item {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .main-navigation-container.fixed_top .main-navigation .nav-locate-translate .nav-item .dropdown-menu .dropdown-item:hover {
        color: #179138 !important;
    }

    .second-navigation .navbar-nav .nav-link:first-child {
        padding-left: 0;
    }

    .main-navigation-container.career-navbar .nav-link,
    .main-navigation-container.career-navbar .main-navigation .nav-link:hover,
    .main-navigation-container.career-navbar .main-navigation .nav-link:focus,
    .main-navigation-container.career-navbar .main-navigation .nav-link.active,
    .main-navigation-container.career-navbar .main-navigation .nav-link.show {
        color: #fff !important;
    }


    .main-navigation-container.career-navbar {
        /* width: 100%; */
        background-color: #179138;
        /* position: relative; */
    }

    .main-navigation-container.career-navbar .nav-locate-translate>li:last-child .dropdown-toggle::before {
        content: "";
        display: inline-block;
        border: none;
        font-style: normal;
        background-repeat: no-repeat;
        background-size: contain;
        width: 24px;
        height: 24px;
        aspect-ratio: 1 / 1;
        background-image: url("../images/translate-white.svg");
    }

    .main-navigation-container.career-navbar .nav-locate-translate>li:first-child .dropdown-toggle {
        border: 2px solid #fff;
    }

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

    /* body {
        padding-top: 0px;
    } */

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


    /* .hero-section {
        grid-template-columns: repeat(11, 1fr);
    }

    .carousel-inner {
        grid-column: span 12;
    }

    .carousel-indicators,
    .carousel-description {
        grid-area: none !important;
        grid-column: span 6;
        grid-column-start: 2 !important;
        padding: 0 !important;
        margin-left: 0 !important;
    } */

    .hero-section .carousel-indicators {
        bottom: 16px;
    }

    .hero-section .carousel-description {
        position: absolute;
        /* top: -40vw; */
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        align-items: center;
        height: 40vw;
        width: 100%;
    }

    .hero-section .carousel-description .carousel-title {
        color: #FFF;
        font-family: Inter;
        font-size: 68px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        max-width: 690px;
    }

    /* -------------------------------------------------------------------------- */
    .action-section .action-section-text {
        font-size: 24px;
    }

    .action-section .download_app {
        gap: 48px;
    }

    .action-section .btn-download.btn-app-store-primary,
    .action-section .btn-download.btn-google-play-primary {
        width: 35.862px;
        height: 40px;
    }

    /* -------------------------------------------------------------------------- */
    .services-section {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        padding: 0 24px 96px;
    }

    .section-body {
        gap: 21px;
    }

    .services-section-container .section-title {
        font-size: 48px;
        padding-left: 0px;
        padding-right: 0px;
        text-align: center;
        width: 800px;
    }


    .services-section .service-item .card .card-title {
        font-size: 24px;
    }

    .service_item_menu .service_item-link .card p {
        font-size: 20px;
    }

    .section-body,
    .service-tab-body-content,
    .service-tab-body-wrapper {
        display: flex;
        justify-items: center;
        flex-direction: column;
        align-items: center;
        gap: 21px;
        width: 100%;
    }

    .services-section .tab-content {
        border-radius: 40px;
        border: 1px solid #D8D8D8;
        padding: 48px;
    }

    .services-section .service-item .service_item_menu {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }

    .services-section .section-body .tab-content .tab-pane .services-tab-content,
    .services-section .tab-content .tab-pane .service-tab-body-content .tab-moto-body,
    .services-section .tab-content .tab-pane .service-tab-body-content .tab-tricycle-body,
    .services-section .tab-content .tab-pane .service-tab-body-content .tab-voiture-body,
    .services-section .tab-content .tab-pane .service-tab-body-content .tab-coursier-body,
    .services-section .tab-content .tab-pane .service-tab-body-wrapper .tab-restaurants-body,
    .services-section .tab-content .tab-pane .service-tab-body-wrapper .tab-shopping-body,
    .services-section .tab-content .tab-pane .service-tab-body-wrapper .tab-billetteries-body,
    .services-section .tab-content .tab-pane .services-tab-body-container {
        padding: 0px;
    }

    .services-section .section-body .nav.nav-pills,
    .services-section .service-tab-body-content .nav.nav-pills,
    .services-section .service-tab-body-wrapper .nav.nav-pills {
        border-radius: 100px;
        border: 1px solid #D8D8D8 !important;
        width: fit-content;
        padding: 16px;
        justify-content: center;
        gap: 16px;
    }

    .nav-pills .primary-nav-link,
    .nav-pills .primary-nav-link:hover,
    .nav-pills .primary-nav-link.active,
    .nav-pills .primary-nav-link.active:hover,
    .nav-pills .show>.primary-nav-link,
    .nav-pills .secondary-nav-link,
    .nav-pills .secondary-nav-link:hover,
    .nav-pills .secondary-nav-link.active,
    .nav-pills .secondary-nav-link.active:hover,
    .nav-pills .show>.secondary-nav-link {

        padding: 16px 32px;

    }

    .service-tab-body-content,
    .service-tab-body-wrapper {
        gap: 64px;
    }

    .services-section .section-body .tab-content .tab-pane .services-tab-content,
    .services-section .tab-content .tab-pane .service-tab-body-content .tab-moto-body,
    .services-section .tab-content .tab-pane .service-tab-body-content .tab-tricycle-body,
    .services-section .tab-content .tab-pane .service-tab-body-content .tab-voiture-body,
    .services-section .tab-content .tab-pane .service-tab-body-content .tab-coursier-body,
    .services-section .tab-content .tab-pane .service-tab-body-wrapper .tab-restaurants-body,
    .services-section .tab-content .tab-pane .service-tab-body-wrapper .tab-shopping-body,
    .services-section .tab-content .tab-pane .service-tab-body-wrapper .tab-billetteries-body,
    .services-section .tab-content .tab-pane .services-tab-body-container {
        gap: 64px;
    }

    .inscription-section .download {
        width: 50%;
    }

    .services-section .download-section {
        background-color: #F9F9F9;
    }

    .service_item_menu .card-image img {
    width: 80px;
    height: 80px;
}
/* -------------------------------------------------------------------------- */
    .update-section {
        padding: 120px 0;
    }

    .update-section .gz-container-fluid {
        padding: 0 24px;

        margin-left: auto;
        margin-right: auto;
        width: 100%;
        align-items: center;
    }

    .update-section .update-section-body .update_item {
        flex: 1 0 0;
        width: 230px;
    }

    .update-section .update-section-container {
        display: grid;
        grid-template-areas:
            "update-section-title more--update"
            "update-section-body update-section-body";

        grid-template-columns: 1fr auto;
        grid-template-rows: auto 1fr;
        gap: 10px;
    }

    .update-section-title {
        grid-area: update-section-title;
    }

    .more--update {
        grid-area: more--update;
        justify-self: end;
    }

    .update-section-body {
        grid-area: update-section-body;
        gap: 24px;
    }

    .update-section-body .card-img-top {
        height: 200px;
    }

    .update-section .update-section-body .card .card-body .card-title {
        -webkit-line-clamp: 2;
    }

    /* -------------------------------------------------------------------------- */
    .site-footer .description-navigation {
        grid-template-areas:
            "footer-tagline navigation";
        grid-template-columns: 408px 1fr;
        grid-template-rows: auto;
        gap: 48px;
    }

    .site-footer .site--description {
        padding: 120px 0 48px;
    }

    .site-footer .site-info {
        padding: 48px 0;
    }

    .site-footer .menu,
    .site-footer .navigation .navigation-item {
        gap: 24px;
    }

    .site-footer .download-links .btn-download.btn-app-store-primary,
    .site-footer .download-links .btn-download.btn-google-play-primary {
        width: 150px;
    }

    .site-footer .download-links .btn-download.btn-app-store-primary {
        background-image: url("assets/images/app-store-bg-transparent-badge-en.svg")
    }

    .site-footer .download-links .btn-download.btn-google-play-primary {
        background-image: url("assets/images/google-play-bg-transparent-badge-en.svg")
    }


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

    html[lang=fr-FR] .site-footer .btn-download.btn-google-play-primary {
        background-image: url("assets/images/google-play-bg-transparent-badge-fr.svg")
    }

    .site-footer .navigation {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .site-info .site-info-container {

        grid-template-areas:
            "copyright  privacy-policy terms-and-conditions cookies";
        grid-template-columns: 2fr auto repeat(2, auto);
        grid-template-rows: auto;
        gap: 24px;
    }
}


/* Desktop */
@media (min-width: 1200px) {

    .gz-container-fluid,
    .hero-section .carousel-indicators,
    .hero-section .carousel-description,
    .service-hero-container .service-hero_content,
    .hero-container-main .hero-content-area,
    .impact-section-texte-wrapper {
        max-width: calc(90vw - 5rem) !important;
    }

    /* -----------------------------career hero--------------------------------------------- */

    .container--body {
        min-width: calc(90vw - 5rem) !important;
        place-self: center;
        margin-left: 0px;
    }

    .career-hero_title-wrapper {
        width: 720px !important;
    }

    /* -------------------------------------------------------------------------- */
    .services-section .gz-container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* -------------------------------------------------------------------------- */
    .job-openings-section .gz-container-fluid {
        max-width: calc(78vw - 5rem) !important;
    }

    .stories-list {
        max-width: 100% !important;
    }
}

@media (min-width: 1920px) {

    .gz-container-fluid,
    .hero-section .carousel-indicators,
    .hero-section .carousel-description,
    .service-hero-container .service-hero_content,
    .hero-container-main .hero-content-area,
    .impact-section-texte-wrapper {
        max-width: 1548px !important;
    }

    .container--body {
        min-width: 1548px !important;
    }

    .hero-section .carousel-description,
    .image-overlay-container.hero-slide1,
    .image-overlay-container.hero-slide2,
    .image-overlay-container.hero-slide3,
    .image-overlay-container.hero-slide4,
    .image-overlay-container.hero-slide5 {
        height: 36vw;
    }

    .job-openings-section .gz-container-fluid {
        max-width: 1348px !important;
    }
}

/* Optional: Animation for smoother transitions */
@media (prefers-reduced-motion: no-preference) {

    .gz-container-fluid,
    .container--body {
        transition: all 0.3s ease;
    }
}