@charset "utf-8";

/******************************* Important CSS *******************************/
@import url('notification.css');
@import url("https://unpkg.com/aos@2.3.1/dist/aos.css");
@import url("https://unpkg.com/balloon-css/balloon.min.css");

/********************************* Font Awesome *****************************************/
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/fontawesome.min.css');

/********************************* OWL Carousel *****************************************/
@import url('https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.css');

/********************************* Slick Carousel *****************************************/
@import url('https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css');
@import url('https://cdn.jsdelivr.net/gh/kenwheeler/slick@1.8.1/slick/slick-theme.css');

/********************************* Modal Video *****************************************/
@import url('modal-video.min.css');

/********************************* Magnific Popup *****************************************/
@import url('https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.css');

/********************************* Font Families *****************************************/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=League+Spartan:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&family=Readex+Pro:wght@200;300;400;500;600;700&display=swap');
@import url("https://unpkg.com/balloon-css/balloon.min.css");


@font-face {
    font-family: reeyregular;
    src: url(fonts/reey/Reey-Regular.otf);
}

/*********************************************** COLOR VARIABLES ********************************************/

:root {
    --primary-color: #106fa8;
    --second-color: #01aeef;
     --third-color: #585858; 
    --white-color: #fff;
    --black-color: #000;
    --primary-font:
    "DM Sans";
    --title-font:
    'Lexend',sans-serif;
    --smooth-font:
    "Roboto";
    }


/*********************************************** Default styles ********************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    border: none;
    text-decoration: none;
    color: inherit;
    word-wrap: break-word;
}

::placeholder {
    font-weight: inherit;
    color: inherit;
}

input, select, button {
    outline: none;
    font-size: 14px;
    background: transparent;
    font-family: inherit;
}

a {
    cursor: pointer;
    transition: all 0.5s ease;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    /*! object-fit: cover; */
}

.container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.row-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.owl-nav.disabled {
    display: none !important;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: var(--primary-font);
    line-height: 1.8;
    color: #888;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    border-bottom: 3px solid var(--second-color);
    z-index: 30 !important;
}

.sticky .top-header {
  /* display: none; */
}
.sticky .logo-header img {
  /* height: 91%; */
}

.wrapper-header.sticky {
  padding: 0;
}
.sticky .logo-header {
  /* width: 216px; */
  /* height: 76px; */
}
.sticky .logo-header a {
  /* height: 100%; */
  /* width: 76%; */
  position: relative;
}
.sticky .navlink > li {
  /* padding-bottom: 10px; */
}
#wrapper-header {
}

.wrapper-super-header.sticky {
    z-index: 10;
}

/*********************************************** Loaders ********************************************/

#loader{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#loader2{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 105;
}

#loader3{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 110;
}

/****************************************************** Messages Erreurs **************************************/

.message-erreur {
    display: none;
    position: relative;
    font-size: 12px;
    background: none;
    margin: 5px 0 0px;
    padding: 0 0 0 15px;
    text-align: left;
    color: #be1e2d;
    width: 100%;
}

.message-erreur::before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: -5px;
    left: 20px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #be1e2d;
}

/* ====================================================== Titre General =========================================== */

.section-title {
    position: relative;
    font-family: var(--title-font);
    margin-bottom: 40px;
}

.title-filigrane {
    top: 20%;
    left: 0;
    font-size: 180px;
    font-weight: 700;
    color: #f6f6f6;
    position: absolute;
    line-height: .8;
    transform: translate(0 , -50%);
    width: 100%;
}

.center .title-filigrane {
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 121px;
}

.title-bloc {
    position: relative;
    font-size: 40px;
    line-height: 1.1;
    padding-bottom: 40px;
    color: #222;
    font-weight: 500;
}

.title-bloc:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 81px;
    bottom: 7px;
    left: 0;
    background-color: var(--primary-color);
}

.center .title-bloc:before {
    left: 50%;
    transform: translateX(-50%);
}

.title-bloc:after {
    position: absolute;
    content: '';
    height: 12px;
    width: 12px;
    bottom: 2px;
    left: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.center .title-bloc:after {
    left: 50%;
    transform: translateX(-50%);
}

.sub-title {
    position: relative;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.center .sub-title {
    /* margin: 0 auto 6px; */
    /* padding: 0 44px; */
}

.title-bloc + p {
    margin-top: 10px;
}

.text-title {
    color: #383838;
     font-family: var(--primary-font); 
}

.section-title.center {
    text-align: center;
}

.ligne-titre {
    margin: 0 auto 40px;
    position: relative;
    width: 1200px;
    max-width: 100%;
}

.ligne-titre > * {
    width: 50%;
}

.ligne-titre .section-title {
    margin: 0;
    width: 50%;
    padding: 0 15px;
    position: unset;
}



/************************************************** BTN-STYLE ************************************* */

.primary-btn {
    margin-right: 15px;
    padding: 17px 30px 17px 30px;
    display: flex;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    background-color: var(--primary-color);
    color: var(--white-color);
    fill: var(--white-color);
    border: none;
    border-radius: 50px;
    box-shadow: 0 6px 27px 0 rgb(0 0 0 / 10%);
    transition: all 0.3s ease-in-out;
    align-items: center;
    position: relative;
    white-space: nowrap;
}

body  .plugin ._li #u_0_0_s1 ._2p3a {
  width: 100% !important;
}
#u_0_3_vK {
  height: 600px !important;
}

.primary-btn:last-child {
    margin-right: 0;
}

.primary-btn svg {
    margin: -2px 0 0 7px;
    transition: all 0.4s ease;
    width: 24px;
    aspect-ratio: 1;
    fill: inherit;
}

.primary-btn:hover {
    background-color: var(--second-color);
    color: var(--white-color);
    fill: var(--white-color);
}

.primary-btn i {
    color: inherit;
    font-size: inherit;
    margin: 0 7px;
    margin-right: 0;
    transition: all 0.4s ease-in-out;
}

span.play-text {
    display: flex;
    align-items: center;
}

.primary-btn.play-btn i {
    color: var(--primary-color);
    font-size: 24px;
}

.primary-btn.play-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.primary-btn:hover svg , .primary-btn:hover i {
    fill: inherit; 
    color: inherit; 
}

.primary-btn:hover svg {
    -webkit-animation: toRightFromLeft 0.3s linear forwards;
    animation: toRightFromLeft 0.4s linear forwards;
    fill: var(--white-color);
}

.primary-btn.play-btn:hover i {
/*    color: var(--white-color);*/
}


    
/**************************************** Margins & Paddings styles ***************************************/

.mb-50 {
    margin-bottom: 50px;
}

.mb-40 {
     margin-bottom: 40px; 
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-0 {
    margin-bottom: 0;
}



.mt-50 {
    margin-top: 50px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-0 {
    margin-top: 0;
}


.pb-50 {
    padding-bottom: 50px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-0 {
    padding-bottom: 0;
}


.pt-50 {
    padding-top: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-0 {
    padding-top: 0;
}

.white, .white > * {
    color: var(--white-color) !important;
}

.center, .center > * {
    text-align: center !important;
}

/**************************************** Header Mobile ***************************************/


.header-mobile {
    display: none; 
}


/**************************************** Pop up Video ***************************************/

.popup-video {
    width: 90px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #005aa9;
}

.popup-video i:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: red;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 currentColor;
    box-shadow: 0 0 0 0 currentColor;
    -webkit-animation:
        
        
        
        -border 3s infinite;
    animation:pulse-border 3s infinite;
    opacity: .6;
    z-index: -1;
}

.popup-video:before
{
   content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--second-color);
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: 0;
}
.popup-video:after{
    content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  display: block;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--second-color);
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: 0;
    
}

.popup-video::before {
    opacity: .4;
}

.element-shape-decor {}

.item-shape-decor {
    position: absolute;
    z-index: 1;
}

.item-shape-decor img {}

.item-shape-decor:nth-child(1) {
    bottom: 0;
    left: 0;
}

.item-shape-decor:nth-child(2) {
    top: 0;
    right: 0;
}

/****************************************************************************************************************|
                                                                                                              |**|
                                                    Animations                                                |**|
                                                                                                              |**|
*****************************************************************************************************************/

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes ripple {
    70% {
        background: rgba(255, 255, 255, 0);
        width: 120px;
        height: 120px;
    }
    100% {
        background: rgba(255, 255, 255, 0);
        width: 0px;
        height: 0px;
    }
}



/********************************************************************************************************/
 
 
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}
@keyframes shapeMover {
  0%, 100% {
    -webkit-transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    -webkit-transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}
 
/*****************************************************************************************************/

 
/**************************************************************************************************/
 


/****************************************************************************************************************|
                                                                                                              |**|
                                                        Header                                                |**|
                                                                                                              |**|
*****************************************************************************************************************/




/***************************************************Recherche*************************************************************/



.bloc-search-bar-- {
    position:  absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    top: 0;
    width:  100%;
    background-color: rgb(245, 245, 245);
    height: 200px;
    z-index: 10010;
    margin-top: 1px;
    padding-top: 30px;
    transform: translateY(-178%);
    transition: all 0.8s;
}

.content-search-display {
    width: 900px;
    max-width: 100%;
    margin:  0 auto;
    height: auto;
    position:  relative;
    padding-right: 100px;
    box-sizing: border-box;
}

button#close {
    position: absolute !important;
    top: 0;
    right: 0;
    margin-right: 0 !important;
    padding: 0 !important;
    border: 0;
    background-color: rgba(0, 0, 0, 0);
    color: rgb(255, 255, 255);
    width: 34px;
    cursor: pointer;
}


.titre-search-bar {
    margin: 0 0 10px 0;
    font-size: 27px;
    letter-spacing: .5px;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
}

p.description-search-bar {
    color: rgb(37, 37, 37);
    font-size: 17px;
    width: auto;
    line-height:  1.5;
    opacity: 0.8;
    width: 100%;
    margin-top: 15px;
    text-align: center;
}

.bloc-search-bar--:before {
    position: absolute;
    right: 0;
    top: -15px;
    left: 55vw;
    width: 0;
    height: 0;
    margin: auto;
    content: '';
    border-bottom: 15px solid rgb(242, 242, 242);
    border-right: 20px solid rgba(0, 0, 0, 0);
    border-left: 20px solid rgba(0, 0, 0, 0);
    z-index: 1500;
    display: none;
}

.bloc-search-bar--.show-search-bar--- {
    transform: translateY(0);
}

.icone-search svg, 
.icone-cle svg {
}

form#search-bar label {
    width: 70%;
}

input#mot-cle {
    width: 100%;
    height: 50px;
    border: 0px solid rgb(216, 216, 216);
    padding: 0 10px;
    font-size: 19px;
    margin-right: 0;
    background: #fff;
}


form#search-bar {
    position:  relative;
    display: flex;
    width:  100%;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0px 6px 12px rgb(0 0 0 / 5%);
    height: 80px;
    border-radius: 40px;
    padding: 0 15px 0 20px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.content-button-client a:last-child .icone-cle {
    width: 123px;
}

button#search-button {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    padding: 0 45px;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    height: 55px;
    background: var(--primary-color);
    cursor: pointer;
    display: none;
}

.element-recherche {
    position: absolute;
    top: 80%;
    width: 95%;
    padding: 18px 30px 20px;
    background: var(--white-color);
    border-bottom: 5px solid var(--second-color);
    box-shadow: 11px 10px 38px rgb(46 63 99 / 15%);
    transition: all 220ms linear 0ms;
    border-radius: 8px;
}

.resultats-recherche{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: var(--second-color);
    padding: 0 0 20px;
}

ul.liste-element-recherche {
    max-height: 250px;
    overflow-y: auto;
}

form#search-bar:hover .element-recherche {
}

li.item-element-recherche {
    padding: 2px 0;
    font-size: 14px;
    cursor: pointer;
    transition: all 220ms linear 0ms;
}

li.item-element-recherche:not(:last-child) {
    border-bottom: 1px solid #eee;
}

li.item-element-recherche:hover {
    color: var(--primary-color);
}

div#div_preloader {}

div#loadercontenteur {
    position: absolute;
    right: 1%;
}

div#loadercontenteur img {
    width: 50px;
}


/******************************************************************************************************/


.wrapper-header {
    background: white;
    box-shadow: 0px 5px 10px #0000000f;
    position: relative;
    z-index: 1;
    /* padding-bottom: 13px; */
}

.header {
    justify-content: unset;
    align-items: center;
}

.logo-header {
    width: 15%;
    height: auto;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: h;
}

.logo-header a {
    /* background: #151515; */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    padding: 10px 0 15px;
    overflow: hidden;
}

.logo-header img {
    width: 100%;
    height: auto;
}

.content-header {
    width: 85%;
}

.wrap-content-header {}

.top-header {
    font-size: 14px;
    position: relative;
    padding: 15px 0;
    width: 100%;
}
.top-header::before {
  position: absolute;
  content: '';
  background-color: var(--primary-color);
  width: 100%;
  height: 77px;
  bottom: 7%;
  float: right;
  left: 1%;
  border-radius: 5px;
  z-index: -1;
}
.wrap-top-header {display: flex;left: 12px;position: relative;}

.social-header {
    /*! width: 13%; */
    /*! padding: 10px 10px 10px 30px; */
    justify-content: center;
    display: flex;
    align-items: center;
    /*! padding-top: 11px; */
}

.wrap-social-header {
    justify-content: unset;
}

.social-header a {
    color: #888;
    font-size: 12px;
    position: relative;
    aspect-ratio: 1;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-color);
    background-color: var(--white-color);
    font-size: 14px;
    border-radius: 50%;
    overflow: hidden;
    transition: all .5s ease;
    margin: 0 3px;
}

.social-header a:hover {
    transform: scale(1.1);
}

.social-header a + a {
    padding-left: 0;
}

.social-header a.fb:hover {
    /*! color: #285da1; */
}

.social-header a.tw:hover {
    /*! color: #03a9f4; */
}

.social-header a.yb:hover {
    /*! color: red; */
}

.right-top-header {
    /*! background: var(--white-color); */
    width: 77%;
    padding: 0px 20px 0px 20px;
}

.wrap-right-top-header {}
.wrap-languages-header label input[type="radio"] {
    display: none;
}

.wrap-languages-header label.choix-lang {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 5px;
    cursor: p;
}

.wrap-languages-header form {
    display: flex;
    flex-wrap: wrap;
}

.item-info-header + .item-info-header {
    padding-left: 10px;
}

.wrap-item-info-header {}

.icon-info-header {
    color: var(--white-color);
    font-size: 16px;
}

.icon-info-header i {}

.item-info-header a {
    padding-left: 8px;
    color: var(--white-color);
}

.languages-header {padding-right: 20px;}

.wrap-languages-header a:nth-child(1) {color: var(--primary-color);}

.languages-header span {
    color: var(--white-color);
}
.wrap-languages-header label input[type="radio"]:checked + span {
    color: var(--second-color);
    font-weight: 500;
}
.languages-header a + a {
    padding-left: 10px;
}

.languages-header a.active {
    color: var(--primary-color);
}



.bottom-header {
    padding: 0px 14px 0;
    font-family: 'Roboto', sans-serif;
}

.navlink {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    /* background: grey; */
    justify-content: start;
    width: 89%;
}

.navlink > li {
    position: relative;
    padding: 15px 13px;
    /* color: #ffffff; */
    background: grey;
    /* border-right: 3px solid white; */
    margin-right: 4px;
}

.navlink > li:not(:first-child) {
    /* margin-left: 25px; */
}

.smenu li.has-children > a:after {
    content: "\f105";
    right: 0;
}

li.has-children > a:after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 10px;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translate(0,-50%);
}

.navlink > li > a {
    font-size: 10px;
    position: relative;
    display: flex;
    transition: all .5s ease;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
}

.navlink > li > a.active, .navlink > li > a:hover, .navlink > li:hover > a, .navlink > li.active > a {
    /* color: var(--primary-color); */
}

.navlink > li > a:before {
    content: "";
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: .5s linear;
}

.navlink > li:hover > a:before, .navlink > li.active > a:before, .navlink > li > a.active:before {
    width: 30px;
    opacity: 1;
    visibility: visible;
}



.wrap-bottom-header {
    padding: 0;
}


/*GESTION DES SOUS MENUS*/

ul.smenu, ul.ssmenu {
    border-bottom: 4px solid var(--primary-color);
    position: absolute;
    background: #fff;
    padding: 16px 0;
    /* font-size: 1px; */
    top: 100%;
    left: 0;
    margin-top: 30px;
    min-width: 250px;
    z-index: 4;
    visibility: hidden;
    opacity: 0;
    box-shadow: 11px 10px 38px rgb(46 63 99 / 15%);
    transition: all 220ms linear 0ms;
    border-radius: 8px;
    clip: rect(1px,1px,1px,1px);
    transform-origin: 0 0 0;
    text-align: left;
}
ul.ssmenu {
  max-width: 260px;
}

ul.smenu li, .ssmenu li {
    padding: 0 32px;
    /*! white-space: nowrap; */
    position: relative;
}

ul.smenu a {
    line-height: normal;
    padding: 10px 0;
    position: relative;
    font-weight: 500;
    font-size: 12px;
    display: block;
    border-bottom: 1px solid rgba(90,90,90,.11);
    color: var(--primary-color);
    transition: all 220ms linear 0ms;
}

ul.ssmenu {
    top: 0px;
    left: 100%;
}

ul.ssmenu li {}

ul.ssmenu a {}

ul.navlink li:hover .smenu, ul.smenu li:hover .ssmenu {
    visibility: visible;
    opacity: 1;
    clip: inherit;
    margin-top: 0px;
}

ul.smenu a:before {
    content: '';
    width: 10px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translate(0,-50%);
    opacity: 0;
    transition: all 220ms linear 0ms;
    background-color: var(--second-color);
    bottom: -5%;
}

.navlink > .has-children:nth-child(8) ul.ssmenu {
  left: -100%;
}
.navlink > .has-children:nth-child(7) ul.ssmenu {
  left: -100%;
    top: -90px ;
}
.navlink > .has-children:nth-child(3) li:nth-child(8) ul.ssmenu{
    top: -150px ;
}
.navlink > .has-children:nth-child(3) li:nth-child(9) ul.ssmenu{
    top: -150px ;
}
.navlink > .has-children:nth-child(3) li:nth-child(10) ul.ssmenu{
    top: -150px ;
}
.navlink > .has-children:nth-child(2) li:nth-child(8) ul.ssmenu{
    top: -80px ;
}
.navlink > .has-children:nth-child(2) li:nth-child(9) ul.ssmenu{
    top: -80px ;
}
.navlink > .has-children:nth-child(3) .ssmenu:nth-child(9) {

    top: -150px ;
}
.navlink > .has-children:nth-child(3) .ssmenu:nth-child(10) {

    top: -150px ;
}
.navlink > .has-children:nth-child(2) .ssmenu:nth-child(8) {

    top: -150px ;
}
.navlink > .has-children:nth-child(2) .ssmenu:nth-child(9) {

    top: -150px ;
}
.navlink > .has-children:nth-child(2) .ssmenu:nth-child(10) {

    top: -150px ;
}

ul.smenu a:hover {
    padding-left: 18px;
    color: var(--second-color);
}

ul.smenu a:hover:before {
    opacity: 1;
    left: 0;
}

ul.navlink li:last-child a {
    border-bottom: none;
}

/******************************************************************/

.right-bottom-header {
    padding-left: 0;
}

.search-header {
    position: relative;
    flex-wrap: wrap;
    border-right: 1px solid #bbbbbb;
    padding: 0 20px;
    margin-right: 15px;
}

.search {
    color: var(--primary-color);
    position: relative;
    aspect-ratio: 1;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #106fa826;
    font-size: 12px;
    border-radius: 50%;
    transition: all .5s ease;
    cursor: pointer;
}

.search:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.search i {}

.btn-header {}

.btn-header a {
    padding: 6px 20px;
    background: var(--second-color);
    border-radius: 30px;
    font-size: 14px;
    color: var(--white-color);
    font-weight: 600;
}


/*langage*/
span.bouton-translate {
    display: block;
    position: relative;

}

.bouton-translate .list-language {
    position: absolute;
    background: white;
    border-radius: 5px;
    width: 100px;
    z-index: 5;
    left: -34px;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.8s;
    box-shadow: 1px 1px 20px #0000006e;
    line-height: 1.8;
}

.list-language a {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    margin-left: 0;
    padding: 0 19px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
}

.list-language a img {
    width: auto;
    height: 12px;
    margin-right: 6px;
}

.list-language a:last-child {
    border-bottom: none;
}

span.bouton-translate {
    position: relative;
    font-size: 26px;
    color: #bbbbbb;
    -webkit-transition: all 500ms ease;
    /* transition: all 500ms ease; */
    margin: 0 0 0 15px;
    text-align: center;
    transition: all 0.3s ease-out;
    z-index: 6;
    line-height: 10px;
}

.bouton-translate:hover .list-language {
    visibility: visible;
    opacity: 1;
}

.list-language a:hover {
    color: #272262;
}




/* ================================================================================================================== 
|                                                       FOOTER                                                       |
====================================================================================================================*/



.wrapper-footer {
    background-color: #0D2252;
    padding: 80px 0 60px;
    color: #b8b9da;
    /* font-weight: 700; */
    position: relative;
    font-family: poppins,sans-serif;
    margin-top: 30px;
}

.bg-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    overflow: hidden;
    max-height: 100%;
}

.bg-footer img {
    height: 100%;
}

.container.footer {
    width: 1320px;
}

.wrap-footer {
    align-items: unset;
    color: #DDE8E8;
    /* position: relative; */
}

.footer-widget {
    width: 20%;
    font-size: 13px;
    line-height: 27px;
    /* font-weight: 400; */
    /* padding-left: 30px; */
    /* padding: 0 15px; */
}

.footer-widget.nav-widget {
    /* padding-left: 40px; */
}

.footer-widget-title h3 {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    padding-bottom: 18px;
    line-height: 1.3;
    color: var(--white-color);
}

.footer-widget-title h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background: var(--second-color);
}

.wrap-nav-footer li::before {
    content: '.';
    position: absolute;
    width: auto;
    font-size: 46px;
    top: -31px;
    left: 0;
    color: var(--primary-color);
}

.wrap-nav-footer li a:hover {
    color: var(--second-color);
}

.field-form-news-letter input {
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    height: 50px;
    background: var(--white-color);
    width: 100%;
    text-align: left;
    padding: 0 15px;
    background: #263964;
}

.form-newsletter {
    position: relative;
}




.top-footer {
    width: 100%;
    justify-content: center;
    display: flex;
    position: absolute;
    top: -145px;
}
.logo-footer {
    width: 255px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: white; */
}
.logo-footer img {
    /*! position: relative; */
    /*! filter: brightness(0) invert(1); */
    filter: brightness(0) invert(1);
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-widget + .footer-widget {
    /* width: 20%; */
    padding-left: 35px;
}
.wrap-form-news-letter {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    padding-top: 30px;
}

.news-letter-button svg {
    fill: var(--white-color);
    height: 17px;
}

#email::placeholder {
    /* opacity: 1; */
    font-weight: 400;
}

.news-letter-button:hover {
    background: var(--second-color);
}

.news-letter-button {
    box-shadow: 0 8px 10px rgba(12,12,12,.1);
    position: relative;
    border: none;
    background: var(--primary-color);
    height: 100%;
    height: 50px;
    width: 25%;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 0 5px 5px 0;
    padding: 0 10px;
}

.field-form-news-letter {
    width: 75%;
}

.social-footer {
    padding-top: 30px;
    justify-content: unset;
}

.social-footer a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #232563;
    border-radius: 50%;
    font-size: 15px;
    color: #b8b9da;
    transition: all 0.3s ease-out 0s;
    margin: 0 5px;
}

.social-footer a:hover {
    background: var(--second-color);
    color: var(--white-color);
}

.footer-widget-details-info {
    padding-bottom: 15px;
}

.footer-widget-hours span {
    line-height: 1.9;
    font-size: 14px;
}

.footer-widget.logo-widget {
    line-height: 27px;
    font-weight: 400;
    padding: 0;
}

.footer-widget-hours h3 {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 5px;
}

.wrap-nav-footer li {
    line-height: 1.5;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.info-contact {
    padding: 10px 0;
    display: flex;
    align-items: center;
    line-height: 1.5;
}
.info-contact.nous-contacter {
  font-size: 16px;
  text-align: center;
  width: fit-content;
  color: var(--second-color);
}


.info-contact i {
    color: var(--primary-color);
    margin-right: 13px;
    font-size: 18px;
}

.footer-copyright {
    background-color: #01080D;
    color: var(--white-color);
    position: relative;
    font-family: poppins,sans-serif;
    font-size: 13px;
    padding: 20px 0;
}

.wrap-copyright.container {
    justify-content: center;
}

.text-copyright a {
    color: var(--primary-color);
    font-weight: 600;
}

.news-letter-button svg {
    /* fill: var(--white-color); */
    /* height: 20px; */
}

#email::placeholder {
    opacity: 1;
    font-weight: 400;
}