/* =============================================================================
   $Base / Elements
   ========================================================================== */

*,
*:before, 
*:after { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box;
    box-sizing: border-box; 
}

html {font-size: 62.5%;}

body {
    position: relative; 
    font-family: "Roboto", sans-serif;
    font-size: 1.4rem; 
    line-height: 1.6; 
    color: #646668; 
    padding: 0; 
    min-height: 100vh;
    min-width: 320px;
    width: 100%;
}

#wrapper{
    position: relative;
    z-index: 2;
    text-align: left;
    background-color: var(--background3);
    box-shadow: inset 0px -11px 8px -10px rgba(0, 0, 0, 0.04);
    padding-bottom: 1px;
}

#wrapper:has( .breadcrumb){
    background-color: var(--white);
}

a {
    text-decoration: none; 
    color: #212121;
}

a:hover {
    text-decoration: underline; 
}

ul, ol, dl, dt, dd {
    list-style: none; 
    margin: 0; 
    padding: 0; 
    list-style-position: outside; 
}

ul.grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

    ul.grid li {
        max-width: 230px;
    }

ul.list{
    list-style: none;
    list-style-position: inside;
    margin: 0 0 20px 0;
}
    ul.list li{
        margin: 0 0 0 20px;
    }

@media screen and (max-width: 840px) {
     ul.grid li {
        max-width: 160px;
    }
}

@media screen and (max-width: 375px) {
     ul.grid li {
        max-width: 100%;
    }
}

h1 {
    font-size: var(--h1); 
    font-weight: bold; 
    line-height: 1.26;
    color: var(--texte);
}

h2 {
    font-size: var(--h2);
    line-height: 44px;
    font-weight: bold;
    color: var(--texte);
}

small {
    font-size: 80%;
}

table {
    border-collapse: collapse;
    vertical-align: top;
    width: 100%;
    margin: 0 0 20px 0;
}

p{margin: 0 0 20px 0; line-height: 1.6; font-size: 1.6rem;}

strong{color:#172663;}

blockquote{font-size: 1.2rem; padding: 20px; border: 1px dotted #888; margin: 0 0 20px 0;}

input{
    background-color: transparent;
}

.list_button{text-align: center;}

.buttonLink{
    color: #FFF;
    background-color: #58628b;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none !important;
    margin: 0 10px 5px 0;
}
    .buttonLink:hover {
        background-color: #DAE0FF;
        color: #172663;
    }

p[role="heading"][aria-level="3"]{
       color: var(--Texte, rgba(33, 33, 33, 0.85))!important;
       font-family: Roboto;
       font-size: 18px;
       font-style: normal;
       font-weight: 700;
       line-height: 24px; /* 133.333% */
    }


    /* =============================================================================
   # RGAA
   ========================================================================== */


.ei_sronly {
    position: absolute;
    overflow: hidden;
    padding: 0;
    border: 0;
    clip: rect(0px,0px,0px,0px);
    clip-path: circle(0);
    width: 1px;
    height: 1px;
    margin: -1px;
    white-space: nowrap;
}



/* =============================================================================
    $Fonts
========================================================================== */

@font-face {
    font-family: "icon";
    src: url("fonts/icon_20260115.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Roboto";
    font-weight: 400;
    font-style: normal;
    src: url("fonts/Roboto/Roboto-Regular.ttf") format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-weight: 500;
    font-style: normal;
    src: url("fonts/Roboto/Roboto-Medium.ttf") format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-weight: 700;
    font-style: normal;
    src: url("fonts/Roboto/Roboto-Bold.ttf") format('truetype');
}



/* HEADER */

header{
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

header .logo {
    width: 340px;
    display: block;
    margin: 0 0 30px 0;
}

header .logo img{
    width: 100%;
}

header .social-bar {
    background-color: #172663;
    min-height: 28px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    padding: 0 40px;
    span{
        color: white;
    }
    ul{
        list-style: none;
        li{
            color: white;
        }
    }
}


.main-header .main-logo{
    background-image: url("/files/fr/images/header/main-logo.svg");
}

.menu-container{
    max-width: 100%;
    padding: 12px 40px;
    justify-content: space-between;
    position: relative;
    height: 72px;
}

.menu-menu-container{
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;

}

.main-header {
    position: sticky;
    top: 0;
    left: 0;
    background-color: var(--background3);
    right: 0;
    z-index: 101;
    -webkit-transition: top 0.2s ease-in-out, background .2s ease, -webkit-box-shadow .2s ease;
    transition: top 0.2s ease-in-out, background .2s ease, -webkit-box-shadow .2s ease;
    transition: top 0.2s ease-in-out, background .2s ease, box-shadow .2s ease;
    transition: top 0.2s ease-in-out, background .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    
    @media (max-width: 1400px) {
        position: relative;
        z-index: inherit;
    }
}

.main-menu{
    display: flex;
    right: 24px;
    height: 100%;
}

.main-header .main-menu ul > li {
    position: relative;
    padding: 15px 0 15px 36px;
    list-style: none;
    display: inline-block;
    font-weight: bold;
}

.main-header .main-menu ul > li > a {
    position: relative;
    color: rgba(33, 33, 33, 0.85);
    font-size: 1.7rem !important;
}

.main-header .main-menu ul > li.selected > a:before {
    width: 100%;
}

.main-header .main-menu ul > li .sub-menu li a:hover,
.main-header .main-menu ul > li .sub-menu li.current-menu-item a,
.main-header .main-menu ul > li .sub-menu li.selected > a {
    background: #3352FC;
    color: #fff !important;
}

.main-header .main-menu ul > li.menu-item-has-children .arrow {
    content: '';
    background: url("/files/fr/images/header/arrow-bottom-select-dark.svg") 50% 50% no-repeat;
    width: 11px;
    height: 15px;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}


.main-header .main-menu ul > li a:before {
    position: absolute;
    background: #2F5BEA;
    height: 3px;
    content: '';
    left: 0;
    width: 0;
    display: block;
    bottom: -9px;
    -webkit-transition: width .2S ease;
    transition: width .2S ease;
}

.main-header .main-menu ul > li a:hover {
    text-decoration: none;
}

.main-header .main-menu ul > li .sub-menu {
    display: none;
    margin-left: 0px;
    width: 288px;
    border-radius: 5px;
    left: 0;
    top: 100%;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    
}

.main-header .main-menu ul > li .sub-menu li {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 0;
    position: relative;
    border-bottom: 0;
    border-top: 0;
}

.main-header .main-menu ul > li .sub-menu li a {
    padding: 10px 20px 10px 20px;
    display: block;
    color: #2C2E30;
    font-size: 1.5rem !important;
    -webkit-transition: background .2s ease, color .2s ease;
    transition: background .2s ease, color .2s ease;
    font-weight: normal;
}

/* menu-in-submenu */

.main-header .main-menu li li.sub-menu-has-children ul.menu-in-submenu {
    display: none;
}

.main-header .main-menu li li.sub-menu-has-children.active ul.menu-in-submenu {
    display: block;
}

.main-header .main-menu ul > li.menu-item-has-children > ul > li.sub-menu-has-children .sub-arrow {
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    background: #fff;
    margin-left: 0;
    border-left: 1px solid #E7EAEE;
    border-bottom: 1px solid #E7EAEE;
    cursor: pointer;
}

.main-header .main-menu ul > li.menu-item-has-children > ul > li.sub-menu-has-children .sub-arrow:after {
    content: '';
    background: url(/files/fr/images/header/arrow-bottom-select-dark.svg) 50% 50% no-repeat;
    width: 11px;
    height: 15px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -5px;
    margin-top: -7px;
}

.main-header .main-menu ul > li:hover .sub-menu {
    display: block;
    position: absolute;
    left: 36px;
    transform: translateX();
    background: #fff;
    z-index: 10;
}

.main-header .main-logo {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 111px;
    height: 35px;
    position: absolute;
    @media (max-width: 1400px) {
     position:relative;    
    }
}


@media only screen and (min-width: 1400px) {
    .main-header .main-menu li li:hover ul.menu-in-submenu {
        display: block;
    }

    .main-header .main-menu ul > li.menu-item-has-children > ul > li.sub-menu-has-children .sub-arrow {
        border-left: 1px solid #E7EAEE;
    }

    .main-header .main-menu ul > li.menu-item-has-children > ul > li.sub-menu-has-children.active .sub-arrow {
        border-bottom: 1px solid #E7EAEE;
    }

    .main-header .main-menu ul > li.menu-item-has-children > ul > li.sub-menu-has-children .sub-arrow:after {
        transform: rotate(-90deg) !important;
    }

    .main-header .main-menu ul.menu-in-submenu {
        position: absolute;
        background-color: #FFFFFF;
        width: 100%;
        top: 0;
        left: 220px;
        -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
}

@media (min-width: 1400px) {
    .main-header   ul > li.menu-item-has-children .arrow {
        pointer-events: none;
    }
}

/* bouton Burger */

.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
    background-color: var(--texte);
    top: 0;
    display: none;
}

.show-overlay{
    display: block;
}

@media (min-width: 1400px) {
    .overlay{
        display: none;
    }
}

.showMenu {
    z-index: 5;
    display: none;
    width: 24px;
    height: 12px;
    flex-direction: column;
    gap: 3px;
    border-style: none;
    background-color: transparent;
    
    .line{
        width: 100%;
        height: 2px;
        background-color: var(--texte);
        transition: all .3s;
    }

    @media (max-width: 1400px) {
        display: flex;align-items: center;
    }
    &.menu-open {
        .line:nth-child(1){
        transform: rotate(-45deg) translate(-4px, 4px);
        }
        .line:nth-child(2){
        transform: rotate(45deg)}
        .line:nth-child(3){
        display: none;
        }
        
    ;
        position: absolute;
    }
    
}

.main-header .menu-icon {
    cursor: pointer;
    display: inline-block;
    padding: 24px 24px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
    margin-bottom: 0;
}

.main-header .menu-icon .navicon {
    background: var(--texte);
    display: block;
    height: 2px;
    position: relative;
    -webkit-transition: background .2s ease-out;
    transition: background .2s ease-out;
    width: 24px;
}

.main-header.normal .menu-icon .navicon{
    background: #333;
}

.main-header .menu-icon .navicon:before, .main-header .menu-icon .navicon:after {
    background: var(--texte);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    width: 100%;
}


.main-header .menu-icon .navicon:before {
    top: 5px;
}

.main-header .menu-icon .navicon:after {
    top: -5px;
}

.main-header .menu-btn {
    top: -10px;
    opacity: 1;
}



.main-header .menu-btn:checked ~ .menu {
    max-height: 240px;
}

.main-header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.main-header .menu-btn:checked ~ .menu-icon .navicon:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.main-header .menu-btn:checked ~ .menu-icon .navicon:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.main-header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .main-header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}


/* menu minimisé */
@media (max-width: 1400px) {



    .menu-container{
        display: grid!important;
        grid-template-columns: 1fr 1fr 4fr;
        gap: 10px;
    }
    .main-menu{
        display: grid!important;
        align-content: center;
    }

    .menu-search-bar{
        display: block;
    }

    .social-bar{
        display: none!important;
    }


    .main-header .menu-container{
        padding: 0 16px;
    }
    .menu-menu-container {
        display: block;
        background-color: var(--background3);
        position: absolute;
        left: 0;
        height: fit-content;
        padding: 10px;
    }

    .responsive{
        position: relative;
        z-index: 166;
        display: flex;
        align-items: center;
    }

    .menu-menu-container {
        display: none;
        transform: translateX(-100%);
        transition: all linear .3s;

        .menu{
            order: 2;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contact-container{
            width: 100%;
            text-align: right;
        }

        .contact{
            margin-top: 10px;
            order: 1;
        }
    }

    .menu-responsive-open {
        display: flex;
        background-color: var(--background3);
        position: absolute;
        left: 0;
        animation-delay: .1s;
        transform: translateX(0%)!important;
        z-index: 101;
        flex-direction: column;
        justify-content: normal;
    }
    
    .menu-container{
        flex-direction: row-reverse;
    }

    .main-header .menu-icon {
        display: block;
        left: 0;
        top: 1px;
    }

    .main-header .d-flex {
        height: 63px;
    }

    .main-header .main-logo {
        margin: auto auto;
    }

    .main-header.normal .main-menu ul > li.menu-item-has-children .arrow, .main-header.without-bg .main-menu ul > li.menu-item-has-children .arrow {
        position: absolute;
        top: 0;
        right: 0;
        width: 46px;
        height: 70px;
        background: #fff;
        margin-left: 0;
        border-left: 1px solid #E7EAEE;
    }

    .main-header .main-menu ul > li:hover .sub-menu {
        display: none;
        position: initial;
        -webkit-box-shadow: none;
        box-shadow: none;
        left: initial;
        -webkit-transform: translateX(0);
        transform: translateX(0);
         @media (max-width: 1400px) {
             display:block;background-color: var(--background3);    
        }
    }

    .main-header.normal .main-menu ul > li.menu-item-has-children .arrow:after, .main-header.without-bg .main-menu ul > li.menu-item-has-children .arrow:after {
        content: '';
        background: url("/files/fr/images/header/arrow-bottom-select-dark.svg") 50% 50% no-repeat;
        width: 11px;
        height: 15px;
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
    }

    .main-header .main-menu ul > li {
        display: block;
        margin-top: 0;
        display: block;
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #E7EAEE;
        background-color: rgba(255, 255, 255, 1);
    }

        .main-header .main-menu ul > li:first-child {
            border-top: 1px solid #E7EAEE;
        }

        .main-header .main-menu ul > li > a {
            display: block;
            width: 100%;
            padding: 20px;
            position: relative;
            color: #2C2E30 !important;
        }

        

        .main-header .main-menu ul > li.menu-item-has-children > a {
            padding-right: 66px;
            z-index: 1;
            position: relative;
            color: var(--CTA, #2F5BEA)!important;
            font-family: Roboto;
            font-style: normal;
            font-weight: 700;
            line-height: 18px; /* 150% */
            letter-spacing: 0.24px;
            text-transform: uppercase;
        }

        .main-header .main-menu ul > li.menu-item-has-children .arrow {
            position: absolute;
            top: 0;
            right: 0;
            width: 46px;
            height: 70px;
            background: #fff;
            margin-left: 0;
            border-left: 1px solid #E7EAEE;
            cursor: pointer;
            z-index: 2;
            display: none;
        }

        .main-header .main-menu ul > li.menu-item-has-children .arrow:after {
            content: '';
            background: url("/files/fr/images/header/arrow-bottom-select-dark.svg") 50% 50% no-repeat;
            width: 11px;
            height: 15px;
            display: block;
            position: absolute;
            left: 50%;
            margin-left: -5px;
            top: 50%;
            margin-top: -7px;
        }

        .main-header .main-menu ul > li a:before {
            display: none;
        }

        .main-header .main-menu ul > li a {
            font-size: 1.5rem !important;
        }

        .main-header .main-menu ul > li .sub-menu {
            width: 100%;
            padding: 0;
            border-radius: 0;
            -webkit-box-shadow: none;
            box-shadow: none;
            display: flex;
            flex-direction: column;
        }

        .main-header .main-menu ul > li .sub-menu li:before {
            width: 100%;
        }

    .main-header .main-menu ul > li.contact a.btn{
        color: #fff !important;
        text-align: center;
        padding-right: unset;
    }

    .main-header .main-menu ul > li.contact {
        padding-left: 0;
    }

}

@media screen and (max-width: 840px) {
    header {/* padding: 35px 0 0 0; *//* min-height: 350px; */}
    header .logo { width: 170px;}
    header .accroche {width: 100%;}
    header h1{font-size: 1.8rem;}
}

/* =============================================================================
    Bouton
   ========================================================================== */

.btn{
    background: #2F5BEA;
    display: inline-block;
    padding: 13px 26px;
    font-size: 17px !important;
    font-size: 1.7rem !important;
    line-height: 20px !important;
    line-height: 2rem !important;
    color: #fff !important;
    border-radius: 5px;
    border: 1px solid #1541d1;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

a.btn:hover {
    text-decoration: none;
}

.main-header .main-menu ul > li > a.btn{
    border-radius: 0;
}

.desktop-show-all{
    display: block;
    @media (max-width: 1139px) {
        display: none;
    }
}

.mobile-show-all{
    display: none;
    width: fit-content;
    margin: 12px auto;
     @media (max-width: 1139px) {
        display: block;
    }
}

.show-all{
    color: var(--cta);
    cursor: pointer;
    transition: all .3s;
    &::after{
        content:"";
            background: url("/files/fr/images/keyboard_arrow_down.svg") 50% 50% no-repeat;
            width: 10px;
            height: 10px;
            display: inline-block;
            margin: 0 5px;
            transform: rotate(-90deg);
    }
}

div[data-type="collections"] .show-all, div[data-type="categories"] .show-all, div[data-type="menu"] .show-all{
         &::after{
            transform: rotate(0deg);
         }
}

.show-all.rotate{
    &::after{
            transform: rotate(180deg)!important;
        }
}

/*Social icons */

.social-icons {
    display: flex;
    gap: 16px;
    font-size: 2rem;

    & a:hover {
        text-decoration: none;
    }
}

header .social-icons {
    font-size: 1.4rem;
}

.icon{
    &.facebook::before{
        width: 24px;
        height: 24px;
        content:"\e900";
        font-family: "icon";
    }

    &.instagram::before{
        width: 24px;
        height: 24px;
        content:"\e901";
        font-family: "icon";
    }

    &.linkedin::before{
        width: 24px;
        height: 24px;
        content:"\e902";
        font-family: "icon";
    }
}

header .icon::before{
    color: var(--white);
}

header #search_input .icon::before{
    color: var(--cta);
}

footer .icon::before{
    color: var(--texte_medium);
}


/* barre de recherche */

.searchInput_active_state {
    position: relative;
    height: 50px;
    
    input {
        padding: 1.2rem 1.6rem 1.2rem 4rem;
        font-size: 1.7rem;
        border: 1px solid rgba(25, 16, 16, 0.46);
        border-radius: 60px;
        width: 100%;
        height: 100%;
        z-index: 98;

        @media (min-width: 1400px) {
            width: 300px;
        }
        
        &::placeholder{
            color: #2F5BEA;      
        }
    }
    span{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 1.6rem;
        z-index: 99;
    }
    span::before{
        content: "\e986";
        font-family: icon;
        display: block;
        font-size: 17px;
        color: #2F5BEA;
    }
    @media (max-width: 1400px) {
        background-color: var(--background3);
        .search-txt:active, .search-txt:focus{
            border: 2px solid red!important;
        }
    }   
}

@media (max-width: 1400px) {
    .mobile-form-focus {
        position: absolute;
        left: 0;
        width: 100%;
        z-index: 999;
    }
}

/* Breadcrumb */

.breadcrumb{
    padding: 24px 0 0 16px;
    margin-bottom: 0;
    display:flex;
    li:not(:last-child)::after{
        content:"";
        background: url("/files/fr/images/header/arrow-bottom-select-dark.svg") 50% 50% no-repeat;
        width: 10px;
        height: 10px;
        display: inline-block;
        margin: 0 5px;
        transform: rotate(-90deg);
    }
    li a{
        color: var(--texte);
    }
}

/* Pictolien menu */

div[data-type="menu-instead"]{
    overflow: hidden;
}

/* newsletter */
.newsletter{
    background-color: var(--cta_120) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 96px;
    border-radius: 8px;
    gap: 24px;
    position: relative;
    font-size: 24px;
    margin-bottom: 40px;
    @media (max-width: 1139px) {
        gap: 0;
    }

    span{
        font-weight: bold;
        color: var(--texte);
        position: relative;
        @media (max-width: 1139px) {
            width: fit-content;
            margin: 0 auto;
        }
        &::before{
            content: "\e904";
            position: absolute;
            left: -30px;
            bottom: 0px;
            margin: auto;
            font-family: icon;
            display: block;
            font-size: 17px;
            font-weight: 400;
            color: var(--cta);
            @media (max-width: 1139px) {
               bottom: 4px;
            }
        }
    }    

      @media (max-width: 1139px) {
        &,div:first-child{
            display:flex;
            gap:0;
            flex-direction: column;
            padding: 16px!important;
            justify-content: center;
            text-align:center
        }
    }
}


/* =============================================================================
    Footer
   ========================================================================== */

footer{
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.04);

    .col,
    .menu-col {
        padding: 0;
    }

    .px-16 {
        padding-right: 0;
        padding-left: 0;
    }
}

.footer-container{
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 0 ;
    
    p{
        margin: 0;
        color: var(--texte_medium);
    }

    .col{
        max-width: 209px;
        &.col1{
            display: flex;
            position: relative;
            flex-direction: column;
            gap: 24px;
            .main-logo{
                width: 100%;
                img{
                    width: 100%;
                    @media (max-width: 1140px) {
                        &{
                            max-width: 118px;
                        }
                    }
                }
            }
            img{
                
                &.ebra-groupe{
                    width: 117px;
                    float: right;
                    @media (max-width: 1140px) {
                        &{
                            width: 59px;
                            float: inherit;
                        }
                    }
                }
            }
            @media (max-width: 1140px) {
                &{
                    flex-direction: row;
                }
            }
        }

        &.col2{
            display: flex;
            flex-direction: column;
            gap: 24px;
            .footer-m-edition{
                position: relative;
                width: fit-content;
            }
        }
         &.col4{
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        @media (max-width: 1140px) {
            &{
                width: 100%;
                max-width: 100%;
            }
        }
    }

    ul li a {
        color: var(--texte_medium);
        line-height: 24px;
        font-size: 16px;
        padding: 4px 0;
        display: flex;

        &[target="_blank"]::after {
            content: '\e903';
            display: block;
            width: 14px;
            height: 14px;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            margin-left: 4px;
            flex-shrink: 0;
            font-family: icon;
        }
    }
    
    @media (max-width: 1139px) {
        &, .footer-menu{
            flex-direction: column;
            padding: 16px!important;
        }

        .footer-menu{
            padding: 0 !important;
        }
    }

    .footernewsletter .py-12,
    .follow-us .py-12 {
        padding-top: 0;
    }

}

.footer-menu{
    min-width: 50%;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    flex-grow: 1;

    ul.menu {
        margin-top: 1.2rem;
    }

    &>div{
        display: flex;
        flex-basis: 185px;
        flex-direction: column;
        gap: 12px;
        padding: 0;
    }
    h4{
        font-size: 18px;
        font-weight: bold;
        font-family: 'roboto';
        color: var(--texte);
        padding: 12px 0;
    }
}

.legal-n-map{
    width: 100%;
    padding: 48px 15px 128px 15px;
    background-color: var(--background3);
    a{
        color: var(--texte_medium);
        font-weight: bold;
    }
    @media (max-width: 1400px) {
        padding: 32px 16px 128px 16px;
        & ul{
            flex-direction: column;
            gap: 24px;
            padding: 0;
        }
    }
}

.menu-catalogue {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.linkTagsList {
  display: flex;
  width: min-content;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.3s ease;
}

.linkTagsList li {
  margin-right: 10px;
}

.prevLinkTags, .nextLinkTags {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 90;
  height: 100%;
  width: 50px;
  display: flex;
  align-items: center;
  /* transform: translateX(-0px); */
}

.prevLinkTags {
    left: 0;
    background: linear-gradient(-90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 36%);

    &::after{
        content: "";
        background: url(/files/fr/images/keyboard_arrow_down.svg) 50% 50% no-repeat;
        width: 20px;
        height: 20px;
        position:absolute;
        z-index: 91;
        transform: rotate(90deg);
        top: 0;
        bottom: 0;
        margin: auto;
        left: 10px;
    }
}

.nextLinkTags {
    right: 0;
    background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 36%);

    &::after{
        content: "";
        background: url(/files/fr/images/keyboard_arrow_down.svg) 50% 50% no-repeat;
        width: 20px;
        height: 20px;
        position:absolute;
        z-index: 91;
        transform: rotate(-90deg);
        top: 0;
        bottom: 0;
        margin: auto;
        right: 10px;
    }
}

/* =============================================================================
    Forms
   ========================================================================== */


.contactForm input[type="text"],
.contactForm input[type="email"],
.contactForm input[type="tel"],
.contactForm textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(44, 46, 48, 0.1);
    background-color: #FFF;
    border-radius: 4px;
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
}

.contactForm div.fields .field:not(:first-of-type) {
    margin-top: 16px;
}

.contactForm #counter {
    text-align: right;
}

.contactForm label.error {
    display: block;
    color: red;
    margin-top: 4px;
}

.contactForm input.error,
.contactForm textarea.error {
    border-color: red;
}

.contactForm .StaticPage {
    margin: 16px 0;
    text-align: justify;
} 

.contactForm .StaticPage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contactForm .StaticPage p {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 8px;
}