/* ============================================================================= /*
    📁 style.css ▶ 

    - 
    💻 JKCPROD © 2024 
/* ============================================================================= */


/***********************************************************************************
                                🔧 ELEMENTS 🔧                     
************************************************************************************/

* {
    /* ✏ COLORS ✏ */
    --white: #FFFFFF;
    --black: #000000;
    --light-grey: #f2f2f3;
    --dark-grey: #808080;
    --cyan: #00ffff;
    --dark-blue: #000087;
    --dark-blue-80: rgba(0, 0, 135, 0.80);

    margin: 0;
    padding: 0;
    box-sizing: border-box;

    /* ✏ MAIN FONT ✏ */
    font-family: 'Figtree';
}




html, body {
    overflow-x: hidden;
    color:none;
}

  
/* 🔴 ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ 🔴 */
/* ✒ ✒ ✒ ✒ ✒  ✒ ✒ TEXT ✒ ✒ ✒ ✒ ✒ ✒  */
/* 🔴 ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ 🔴 */

h1{
    font-size: 36px!important;
    font-weight: 700!important;
    line-height: 42px!important;
    letter-spacing: 0px!important;
    margin: 0!important;
}

h2{
    font-size: 24px!important;
    font-weight: 700!important;
    line-height: 32px!important;
    letter-spacing: 0px!important;
    margin: 0!important;
}

h3{
    font-size: 18px!important;
    font-weight: 700!important;
    line-height: 24px!important;
    letter-spacing: 0px!important;
    margin: 0!important;
}

h4 {
    font-size: 16px!important;
    font-weight: 300!important;
    line-height: 24px!important;
    letter-spacing: 0px!important;
    margin: 0!important;
}

h5 {
    font-size: 12px!important;
    font-weight: 700!important;
    line-height: 24px!important;
    letter-spacing: 0px!important;
    margin: 0!important;
}

p {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0px; 
}

@media (max-width: 0px) {
    p {
        font-size: 12px;
        font-weight: 300;
        line-height: 22px;
        letter-spacing: 0px; 
    }
 }

/* 🔴 ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ 🔴 */
/* ✒ ✒ ✒ ✒ ✒ OTHERS ELEMENTS ✒ ✒ ✒ ✒ ✒  */
/* 🔴 ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ ✒ 🔴 */

.dark-blue {
    color: var(--dark-blue);
}

.firstSectionContents {
    padding-top: 90px;
    padding-bottom: 100px;
}

.otherSectionContents {
    padding-bottom: 100px;
}


.noDeco{
    text-decoration: none!important;
}

.buttonGen{
    background-color: #00FFFF;
    height: 40px;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 2.4px;
    color: #000087;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all;
    text-decoration: none!important;
}

.buttonGen:hover{
    background-color: #000087;
    color: #00FFFF;
    cursor: pointer;
}

.blue-line {
    position: relative;
    left: 0;
    width: 100vw;
    height: 2px;
    background: var(--cyan);
    margin-bottom: 115px;
}


/***********************************************************************************
                                    🔍 NAVBAR 🔍                    
************************************************************************************/

/* ✒ ✒ ✒ ✒ ✒ DESKTOP ✒ ✒ ✒ ✒ ✒  */

.fixed-sidebar {
    padding-right: 0px!important;
    position: fixed !important;
    padding-top: 175px;
    height: 100%;
    transition: padding-top 0.7s ease-in-out; /* Animation plus douce pour le padding */
    background-color: white;
    z-index: 90;
}

.menu nav ul li {
    list-style: none;
}

.menu nav ul li a {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    color: #000087!important;;
    line-height: 16px;
    font-size: 16px!important;
    font-weight: 700!important;
    transition: 0.9s all;
    height: 26px;
    display: flex;
    align-items: center;
}

.menu nav ul li a:hover {
    background: #00FFFF;
}

.menu .arrow{
    transition: transform 0.4s;
}

.menu nav ul li a img{
    height: 17px;
    width: 17px;
    position: relative;
    bottom: 1px;
    margin-left: 3.5px; 
}

.menu nav li ul.submenu {
    overflow: hidden;
     max-height: 0;
    opacity: 0;
    transition: opacity 0.8s, max-height 0.8s ease-in-out ;
    list-style-type: none;
   
    padding-left: 15px!important;
} 


.menu nav li ul.submenu li a { 
    font-size: 12px!important;
    font-weight: 300!important;
    transition: 0.6s all!important;
} 

.menu nav li ul.submenu li a:hover { 
    font-weight: 800!important;
    background-color: transparent!important;
} 

.menu nav li ul.submenu li a:hover::before {
    content: '';
    display: inline-block;
    height: 3px;
    width: 15px;
    background-color: #01FFFF;
    position: absolute;
    margin-top: 10px;
    left: 1px;
}

.menu-item > a .arrow {
    transition: transform 0.6s ease-in-out;
}

.menu nav ul {
    padding: 0;
    margin: 0;  
} 

.logoSideBar{
    opacity: 0;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 900!important;
    color: var(--dark-blue);
    transition: opacity 0.7s ease-in-out; 
}

.logoSideBar h1 {
    cursor: pointer; 
    display: inline-block;
}
  

@media (max-width: 1200px) {
    .menu h1{
        font-size: 26px!important;
    }

    .menu nav ul li a {
       
        font-size: 14px!important;
 
    }
}

/* ✒ ✒ ✒ ✒ ✒ MOBILE ✒ ✒ ✒ ✒ ✒  */

.hamburger {
    display: none;
}

@media (max-width: 991.98px) { 
    .logoSideBar{
        display: none!important;
    }
    
    .hamburger {
      display: block;
      background: none;
      border: none;
      font-size: 24px;
      z-index: 1000;
      color: var(--dark-blue);
    }
    .menu {
      display: none; 
      position: absolute;
      margin-top: 181px;
      width: 100vw;
      height: 100vh!important;
      z-index: 100;
      background: var(--white);
      padding-left: 15.75px;

    }
    .menu.is-active {
      display: block; 
    }

    #header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .fixed-sidebar{
        padding-top: 0px!important;
    }
}

@media (max-width: 767px) { 
    .menu {  
      margin-top: 192px;
    }    
}

/***********************************************************************************
                                    📃 PAGES 📃                    
************************************************************************************/

/* ✒ ✒ ✒ ✒ ✒ [HOME PAGE] ✒ ✒ ✒ ✒ ✒  */

/* HEADER */



#header-line {
    position: relative;
    left: 0;
    width: 100vw;
    height: 30px;
    background: var(--cyan);
    
}

#header {
    width: 100%;
    padding-top: 113px;
    padding-bottom: 40px;
}

#header-top h1 {
    text-transform: uppercase;
    font-weight: 900!important;
    color: var(--dark-blue);
    transition: 0.4s all;
}

#header-top .mainLogo:hover {
    font-size: 38px!important;
}


#header-top h1 span {
    color: #000087;
}


#header-top h1 span.tiret {
    color:  var(--cyan);
}


#header-top h1 span:nth-child(6) {
    color:  var(--cyan);
}


#header-bottom {
   margin-top: 10px;
}


#header-bottom h3 {
    color: #000087;
    font-family: 'Bodoni Moda';
    font-weight: 500!important;
}



#header-bottom-lang ul li {
    font-size: 11px;
    line-height: 12px;
    letter-spacing: 0px;
    font-weight: 300!important;
    list-style: none;
    
}

#header-bottom-lang ul {
    height: 100%;
    margin: 0;
    padding: 0;
}


#header-bottom-lang ul li a {
    text-decoration: none;
    color: var(--dark-blue);
    padding-right: 6px;
    padding-left: 6px;
    font-size: 12px;
    transition: transform 0.4s all;
}

#header-bottom-lang ul li a:hover {
    transform: rotate(15deg);
    opacity: 0.7;
}

#header-bottom-lang ul .active {
    font-weight: 700!important;
}

#header-bottom-lang ul i {
    font-weight: 600!important;
    font-size: 12px;
    transition: 0.4s all;
}

#header-bottom-lang ul i:hover {
    transform: rotate(15deg);
    opacity: 0.7;
}

#header-bottom-lang ul img {
    padding: 0;
    margin: 0;
    width:13px;
    height: 14px;
}

#header-bottom-lang input{
    padding: 0;
    margin: 0;
    transition: 0.8s ease-in-out;
    width: 0;
    height: 15px;
    border: none;
    background-color: #00008718;
    border-radius: 15px;
    font-size: 12px;   
}

#header-bottom-lang input:focus-visible{
    border: none!important;
    outline: none!important;
}

#header-bottom-lang .loupe:hover input{
    width: 200px; 
    border: black 1px solid;
}

@media (max-width: 990px) {
    #header {
        padding-top: 50px;
        padding-bottom: 6px;
    }
    #header-bottom-lang ul li a:first-child {
        padding-left: 0;
    }

    

    #header-bottom h3{
        margin-bottom: 20px!important;
    }
}


/* CARROUSEL */


.carousel-no-anim{
    padding-top: 15px;
}

.carousel-section article {
    min-height: 650px;
    margin: 0!important;
    padding: 0;
    width: 100vw;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-left: 194px;
    padding-top: 248px;
    background-size: 100%;

    

}
.carousel-home .carousel-section article {
  
    margin-bottom: 100px!important;
    

}

.carousel-section .carrousel-text {
    height: 100%;
    width: 100vw;
    margin: 0;
    background-color: #0000872a;
    border: 6px solid var(--cyan);
    border-right: none;
    padding:0; 
    margin: 0;  
    padding-left: 58px; 
    padding-bottom: 40px;
    padding-top: 40px;  
}

  
.carousel-section .carrousel-text li {
    display: none;
    color: var(--white);
    font-size: 42px;
    line-height: 56px;
    font-weight: 500;
    font-family: 'Bodoni Moda';
    color: white;    
}
  
.carousel-section .carrousel-text .active {
    display: block;
}
  
  
.carousel-section .button-container {
    height: 100%;
    margin-top: 50px;
}

.carousel-section .button-container button {
    padding: 0;
    border: none;
    background-color: transparent;
    transition: 0.4s all;
}

.carousel-section .button-container button:hover {
    cursor: pointer;
    opacity: 0.5;
}

.carousel-section .button-container button:focus {
    border: none;
    outline: none;   
}

.carousel-section .button-container #prev {
    margin-right: 15px;
}

@media (max-width: 990px) {
    .carousel-section article {
        padding-left: 20px;
        min-height: 445px;
        padding-top: 88px;
    }

    .carousel-section .carrousel-text {
        padding-left: 15px;
    }

    .carousel-section .carrousel-text li {
        font-size: 28px;
        line-height: 34px;
    }  
}

/* NEWS HOME PAGE */

.news-homepage h1{
    color: #000087;
    margin-bottom: 50px!important;
}

.card-news{
    margin-top: 50px;
    height: fit-content;
}

.card-news .date{
    font-size: 12px;
    color: #000087;
    font-weight: 400!important;
    margin: 0;
    margin-bottom: 10px;

}

.card-news .langue{
    margin: 0;
    margin-bottom: 10px;
}

.card-news .langue a{
    font-size: 12px;
    color: #000087;
    font-weight: 400!important;
    margin: 0;
    transition: 0.4s all;
}

.card-news .langue span{
    font-size: 12px;
    color: #000087;
    font-weight: 400!important;
}

.card-news .langue .active{
    font-weight: 700!important;
}

.card-news .langue a:hover{
    text-decoration: none!important;
    font-weight: 600!important;
}

.card-news .small-hr{
    height: 0.5px;
    width: 100%;
    background-color: #000087;
    padding:0;
    margin: 0; 
}

.card-news h3{
    color: #000087CC;
    font-weight: 700!important;
    margin-top: 20px!important;
    margin-bottom: 10px!important;
}

.card-news .description{
    color: #000087CC;
}

.news-homepage .buttonGen{
    margin-top: 40px!important;
}


/* KEYS NUMBERS */

.keys-homepage h1{
    color:#000087;
    margin-bottom: 12px!important;
}

.keys-homepage .card-keys{
    height: 263px;
    
    margin-top: 28px;
}

.keys-homepage .card-keys-1, .keys-homepage .card-keys-6{
    background-color: #000087;
}

.keys-homepage .card-keys-2, .keys-homepage .card-keys-4{
   background-color: #F2F2F2;
}

.keys-homepage .card-keys-3, .keys-homepage .card-keys-5{
    background-color: #00FFFF;
 }
 

/* Q&A */

.qa-homepage h1{
    color:#000087;
    margin-bottom: 30px!important;
}

.qa-homepage .intro{
    color: #000087CC;
    margin-bottom: 45px!important;
}

.custom-file-upload {
    padding-right: 12px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid var(--dark-blue);
    padding-bottom: 4px;
    padding-top: 11px;
    padding-left: 14px;
    color: var(--dark-blue);
    width: 100%;
  }
  
  .custom-file-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }
  
  .custom-file-upload .placeholder {
    display: inline-block;
  }

  .accordion-content-careers .view {
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .careers-checkbox {
    border: 1px solid var(--dark-blue) !important;
    margin-bottom: 8px;
  }
  
  input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 30px !important;
    width: 30px !important;
    border: 1px solid var(--dark-blue);
    outline: none; 
    cursor: pointer; 
    position: relative;
}

input[type="checkbox"]:checked {
    background-color: var(--white);
    border-color: var(--dark-blue); 
}

input[type="checkbox"]:checked::before {
    content: "\2713"; 
    font-size: 20px; 
    color: var(--dark-blue); 
    position: absolute; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); 
}

.career-fieldset {
    border-bottom: 1px solid var(--dark-blue);
    margin-top: 20px!important;
    padding-left: 14px;
    padding-right: 14px
}

.career-fieldset  input[type="checkbox"] {
    height: 12px !important;
    width: 12px !important;
}

.career-fieldset input[type="checkbox"]:checked::before {
    font-size: 18px;
}




.career-fieldset label {
    
    font-size: 14px!important;
    font-weight: 300!important;
    color: var(--dark-blue)!important;
    letter-spacing: 1.4px!important;
    margin-bottom: 0!important;

}
.career-fieldset legend {
    
    font-size: 14px!important;
    font-weight: 300!important;
    color: var(--dark-blue)!important;
    letter-spacing: 1.4px!important;
    margin-bottom: 20px!important;

}



.accordion-aready {
    width: 100%;
    max-width: 1200px;
}

.accordion-button-aready {
    background-color: var(--white);
    color: var(--dark-blue);
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    transition: 0.4s;
    text-transform: uppercase;
    padding-top: 50px;
    padding-bottom: 50px;
}

.accordion-button-aready:nth-child(odd) {
    border-top: 1px solid var(--dark-blue-80);
}

.accordion-item-aready-last {
    border-bottom: 1px solid var(--dark-blue-80);
}

.accordion-item-aready h3{
    text-transform: none!important;
    font-size: 18px!important;
    font-weight: 700!important;
}

.accordion-item-aready .careers-p, .accordion-button-aready {
    text-transform: none!important;
}

.accordion-button-aready:focus {
   outline: none;
}

.accordion-button-aready::before {
    content: "\00a0\00a0\00a0\00a0\00a0";
    background-image: url('../img/general/accordeonPlus.svg') ;
    background-repeat: no-repeat;
    margin: 0px 16px;
    margin-right: 44px;
    margin-top: 5px;
    transition: transform 0.2s ease-in-out;
  }
  
  .accordion-button-aready.active::before {
    transform: rotate(360deg);
    content: "\00a0\00a0\00a0\00a0\00a0";
    background-image: url('../img/general/accordeonMinus.svg') ;
}

.accordion-button-aready.active {
    font-weight: 700!important;
}

.accordion-content-aready {
    margin-left: 80px;
    display: none;
    overflow: hidden;
    background-color: white;
}

.accordion-content-aready{
    color: #000087;
}

.accordion-content-aready p{
    margin-bottom: 40px;
}

.accordion-content-aready h3{
    margin-bottom: 20px!important;
}



.qa-homepage .buttonGen{
    margin-top: 50px!important;
}

/* STAY INFORMED */

.carousel-no-anim h1{
    font-size: 35px!important;
    font-weight: 700!important;
    color: white;
}

.carousel-no-anim h2{
    font-size: 24px!important;
    font-weight: 700!important;
    line-height: 32px!important;
    color: white;
}

.carousel-no-anim .buttonGen{
   margin-top: 16px;
    width: 166px!important;
}

.carousel-no-anim .carrousel-text {
    height: 100%;
    width: 100vw;
    margin: 0;
    background-color: #0000872a;
    border: 6px solid var(--cyan);
    border-right: none;
    padding:0; 
    margin: 0;  
    padding-left: 58px; 
    padding-bottom: 92px;
    padding-top: 86px;  
}

/* RANKING */


.ranking-homepage h1{
    color: #000087;
    margin-top: 100px!important;
}

.ranking-homepage .carousel-ranking{
    padding-top: 32px;
}

.ranking-homepage .buttonGen{
    margin-top: 124px!important;
}

/* EVENTS */

.events-homepage .card-events{
    margin-top: 50px;
}



.events-homepage h1{
    color: #000087;
}

.events-homepage .buttonGen{
    margin-top: 85px!important;
}

.card-events .date{
    font-size: 12px;
    font-weight: 400!important;
    color: #000087!important;
    margin: 0;
    margin-bottom: 10px;

}

.card-events .langue{
    font-weight: 400!important;

    font-size: 12px;
    color: #000087;
    margin: 0;
    margin-bottom: 10px;
}

.card-events .small-hr{
    height: 0.5px;
    width: 100%;
    background-color: #000087;
    padding:0;
    margin: 0; 
}

.card-events h3{
    color: #000087CC;
    font-weight: 700!important;
    margin-top: 20px!important;
    margin-bottom: 10px!important;
}

.card-events .description{
    color: #000087CC;
}

.card-events .image{
    margin-bottom: 20px;
}



/***********************************************************************************
                                    🔗 FOOTER 🔗                   
************************************************************************************/

.footer1{
    position: relative;
    z-index: 1000;
    min-height: 400px;
    width: 100%;
    background-color: #000087;
    display: flex;
    align-items: center;
}

.footer1 p{
    font-weight: 300!important;
    color: white!important;
    margin: 0;
}

.footer1 h4{
    font-weight: 700!important;
    color: white!important;
}

.footer1 .container-footer{
    width: 100%;
    max-height: 266px;
    border-left:1px solid white;
    width: 100%;
}

.footer1 .container-footer-1 img{
    margin-bottom: 48px;
    width: 166px;
    height: 21.74px;
    cursor: pointer;
}

.footer1 .container-footer-2{
    padding-top: 107px;
}


.footer1 .container-footer-2 a{
    font-weight: 300!important;
    color: white!important;
    font-size: 14px!important;
    margin-top: 6px;
    transition: 0.4s all;
}

.footer1 .container-footer-2 a:hover {
    font-weight: 600!important;
}

.container-footer-3 .contact-img {
    margin-bottom: 15px;
}

.container-footer-3 .contact-img img{
    width: 32px;
    height: 32px;
    margin-right: 15px;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
}

.container-footer-3 .contact-img img:hover {
    transform: rotate(15deg);
    opacity: 0.7;
}


.container-footer-3 .social-img {
    margin-bottom: 23px;
}

.container-footer-3 .social-img img {
    margin-right: 24px;
    margin-top: 8px;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
}

.container-footer-3 .social-img img:hover {
    transform: rotate(15deg);
    opacity: 0.7;
}



.container-footer-3 .social-img .linkedin{
    width: 20px;
    height: 20px;
    margin-left: 7px;
}

.container-footer-3 .social-img .youtube{
    width: 24px;
    height: 16.8px;
    position: relative;
}

.container-footer-3 .social-img .instagram{
    width: 24px;
    height: 24px;
    position: relative;
}

.container-footer-3 p{
   font-weight: 600!important;
   margin-top: 35px;
}

.container-footer-3 .buttonGen{
    margin-top: 19px;
}
.container-footer-3 .buttonGen:hover{
    border: solid 1px #00FFFF;
}

@media (max-width: 767px) {
    .container-footer{
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px!important;
        padding-right: 10px!important;
        border-left: none!important;
    }

    .footer1 .container-footer-2{
        padding-top: 0px;
    }

    .footer1{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}







.footer2{
    background-color: #CCCCE7;
    position: relative;
    z-index: 1000; 
    
}

.container-footer-credit{
    min-height: 30px;
}

.footer2 p{
    font-size: 12px!important;
    font-weight: 300!important;
    margin: 0;
    color: #000087!important;
    transition: 0.4s all;

}

.footer2 a p:hover{
    font-weight: 600!important;
}


/***********************************************************************************
                                    🔗 EXPERTISE 🔗                   
************************************************************************************/


.firstSectionExpertise h1 {
    margin-bottom: 52px !important;
    color: var(--dark-blue);

}

.firstSectionExpertise p {
    color: #000087CC;
    font-weight: 300!important;

}

.expertise-media {
    margin-bottom: 52px !important;
    margin-top: 15px !important;
}

.expertise-media img{
    transition: 0.4s all;
}

.expertise-media img:hover{
    transform: rotate(15deg);
    opacity: 0.7;
}

.expertise-contact h5 {
    color: #000087;
    font-weight: 700!important;
    border-bottom: 0.5px solid var(--dark-blue);
    padding-bottom: 5px;
    margin-bottom: 20px!important;

}

.expertise-contact-people {
    padding: 20px 0 0 0;
    cursor: pointer; /* Indique que l'élément est cliquable */
}

.expertise-contact-people h4 {
   margin: 0!important;
   padding:0!important;
   line-height: 14px!important;
   margin-left: 9px!important;
}

.expertise-contact-people h5 {
    margin: 0!important;
    padding-left:20px;
 }
 

.contact-info {
    display: none;
}

.contact-info h4 {

    margin: 0px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-left: 25px !important;
}

.contact-info h4 i {
    padding-right: 1em;
}

.contact-info-name {
    padding: 15px 0;
}

.contact-info-name h5 {
    font-size: 1.3em;
    padding: 0 1.5em;
    color: var(--dark-blue);
}

.contact-info-name h5:nth-child(2) {
    font-weight: 800;
}

.contact-info li {
    font-size: 12px !important;
    margin-bottom: 6px !important;
}

.contact-info h4::before {
    opacity: 0;
}

.contact-info h4 {
    font-weight: 300 !important;
}

.profile-pic {
    width: 100%; /* Taille de l'image de profil */
    object-fit: cover; /* Assure que l'image garde ses proportions */
}

.expertise-contact-people h4,
.expertise-contact-people h5 {
    color: var(--dark-blue);
}

.expertise-contact-people h5 {
    border-bottom: none !important;
    padding-left: 26px;
    line-height: 10px!important;
}


.contact-info .view {
    width: 100%;
}

/* QUOTE */

.quoteSection .blue-line{
    margin-bottom: 100px!important;
}

.styled-quote {
    border-top: 1px solid var(--dark-blue);
    border-bottom: 1px solid var(--dark-blue); 
    padding-top: 35px;
    padding-bottom: 30px;
   
}

.styled-quote p {
    color: var(--dark-blue);
    font-size: 32px !important;
    line-height: 38px!important;
    font-weight: 500!important;
    font-family: 'Bodoni Moda';
    padding-left: 20px;
}

.styled-quote p::before {
    content: '';
    background-image: url('../img/expertise/quote1.png');
    width: 16px;
    height: 16px;
    left:15px;
    top: 42px;
    position: absolute;
    font-family: 'Bodoni Moda'!important;
}

.styled-quote p img {
    margin-bottom: 15px;
}

.styled-quote cite {
    display: block;
    text-align: right; 
    color: var(--dark-blue);
    font-weight: 500!important;
    font-size: 18px!important;
    text-decoration: none!important;
    text-transform: none!important;
    font-style: normal!important;
}



/* PEOPLE */ 



.peopleSection h1{
    color: var(--dark-blue);
}

.form-people input, .form-people select {
    border: none;
    border-radius: 0!important;
    border-bottom: 1px solid var(--dark-blue);
    color: var(--dark-blue);
    width: 100%;
    height: 40px;
    padding-left: 14px;
    padding-right: 32px;
    appearance: none;
    -webkit-appearance: none; 
    -moz-appearance: none; 
    background: transparent;
}




.form-people {
    position: relative;
    margin-bottom: 30px;
    margin-top: 100px;
}

.form-people .icon-loupe {
    position: absolute;
    right: 25px; /* Ajustez selon vos besoins */
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    background-image: url('../img/general/loupeFilter.png');
    background-size: cover;
}

.descriptionPeople{
    color: #000087;
}

.section-side-info{
    margin-top: 50px;
}


.peopleSection .buttonGen{
    margin-bottom: 50px;
}

.descriptionPeople .styled-quote p::before{
    left: 13px!important;
    top: unset!important;
}


.descriptionPeople .styled-quote cite{
    font-size: 12px!important;
    font-weight: 700!important;
}

.descriptionPeople .text{
    margin-bottom: 50px;
    margin-top: 50px;
}


.form-people .icon-arrow {
    position: absolute;
    right: 25px; /* Ajustez selon vos besoins */
    top: 50%;
    transform: translateY(-50%);
    height: 6.58px;
    width: 12px;
    z-index: -1;
    background-image: url('../img/general/arrowFilter.png');
    background-size: cover;
}

.form-people input::placeholder{
    font-weight: 300!important;
    font-size: 14px!important;
    opacity: 30%;
    color: #000087;
    
    
}

.form-people input:focus, .form-people select:focus {
   outline: none;
}


.card-people .name{
    font-size: 16px!important;
    font-weight: 300!important;
    line-height: 16px!important; 
    color: #000087;
}

.card-people .fonction{
    font-size: 12px!important;
    font-weight: 700!important;
    line-height: 18px!important; 
    color: #000087;
    margin-bottom: 30px!important;

}

.buttonExperts{
    margin-top: 15px;
    margin-bottom: 0!important;
}

.image-people {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    content: fit-content;
}


.image-people img {
    display: block;
    width: 100%;
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 255, 255, 0.501);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.overlay-text {
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 2.4px!important;
}



.image-people:hover .overlay {
    opacity: 1;
}

.image-people:hover img {
    transform: scale(1.1);
}

.getintouch a {
    color: var(--white) !important;
    font-weight: 700!important;
}

.peopleCareers h1{
    margin-bottom: 30px!important;
    color: var(--dark-blue);
}

.peopleCareers p{
    color: var(--dark-blue);
}

.peopleCareers .blue-line{
    margin-top: 100px!important;
    margin-bottom: 0!important;
}


/* SECTION SIDE INFO */ 

.section-side-title {
    color: var(--dark-blue);
}

.section-side-title h5 {
    font-weight: 300 !important;
    text-transform: uppercase !important;
}



.section-side-info li {
    list-style: none;
    color: var(--dark-blue);
    font-size: 12px !important;
    margin-bottom: 5px;
}

.section-side-info li svg {
    padding-right: 5px;
}

.section-side-expertise {
    color: var(--dark-blue);
}

.section-side-expertise h5:first-child {
    border-bottom: 1px solid var(--dark-blue);
    font-weight: 700!important;
    padding-bottom: 5px;   
    margin-bottom: 10px;

}

.section-side-expertise h5 {
    list-style: none;
    font-weight: 300!important;
    line-height: 14px!important;
    margin-top: 10px!important;
}

.section-side-expertise .active {
    font-weight: 700!important;
}

.section-side-qrcode {
    color: var(--dark-blue);
    padding-top: 8px;
}

.section-side-qrcode p {
    font-size: 12px !important;
}


/* SUBSRIBE */ 

.banking-more-contact-subscribe {
    width: 100%;
    height: 263px;
    background: url('../img/news/subscribe.png');

    padding: 30px 25px;
    color: var(--white) !important;

}

.banking-more-contact-subscribe h3{
    color: white!important;
    font-size: 24px!important;
    font-weight: 700!important;
}
.banking-more-contact-subscribe p {
    color: white!important;
    font-size: 18px!important;
    font-weight: 700!important;
    
}

.banking-more-contact-subscribe button {
    margin: 0;
    padding: 1em;
    width: 100%;
    border: none;
    z-index: 1000;
}



/* PODCAST AUDIO */

.custom-audio-player {
    min-width: 100%; /* Ajustez la largeur maximale selon vos besoins */
    margin: 0; /* Espace autour du lecteur */
    border-bottom: 2px solid var(--dark-grey);
    border-top: 2px solid var(--dark-grey);
    padding: 10px 0;
}

.custom-audio-player figcaption {
    font-size: 12px; /* Taille de police pour le titre */
    color: var(--dark-blue); /* Couleur de texte pour le titre */
    margin-left: 75px;
    font-weight: 600;
}

.custom-audio-player audio {
    width: 100%; /* Largeur de l'élément audio pour s'étendre au conteneur */
    margin: 10px 0; /* Espace au-dessus et en dessous de l'élément audio */
}

.custom-audio-player .audio-duration {
    font-size: 12px; /* Taille de police pour la durée */
    color: var(--dark-blue); /* Couleur de texte pour la durée */
    font-weight: 600;
    margin-left: 75px;
}

#playPauseButton{
    margin-left: 25px;
}

.custom-audio-player .progress-bar {
    width: 80%;
    height: 5px;
    margin-left: 25px;
    background-color: var(--cyan);
    cursor: pointer;
    position: relative;
}

.custom-audio-player .progress-bar .progress {
    width: 0;
    height: 100%;
    background-color: var(--dark-blue);
    position: absolute;
    left: 0;
    top: 0;
}

.custom-audio-player button {
    background: none;
    border: none;
}

/* VIDEO */ 

.video-wrapper {
    position: relative;
    max-width: 100%; /* ou la largeur maximale désirée */
    height: 0;
    padding-bottom: 56.25%; /* pour un ratio de 16:9 */
    background-image: url('../img/people/eventcard.png');
    background-size: cover;
    background-position: center;
  }

  .video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.6);
}

.video-wrapper.is-playing::after {
    /* Cela supprime le pseudo-élément après */
    content: none;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }
  
  /* Masquer l'iframe pour montrer l'image d'arrière-plan */
  .video-wrapper iframe {
    display: none;
  }
  
/* EVENT CARD */ 

.eventCardHeader h5 {
    color: var(--dark-blue);
    font-weight: 300 !important;
}

.eventCardHeader {
    border-bottom: 1px solid var(--dark-blue);
}

.card-body {
    padding: 0 !important;
}


/***********************************************************************************
                            🔗 NEWS - DETAILS NEWS 🔗                   
************************************************************************************/

.news-homepage .form-people .buttonGen{
    margin-top: 0px!important; 
}

.news-homepage .form-people {
    margin-bottom: 130px!important;  
    margin-top: 100px!important;  
}

.news-homepage .card-news {
    margin-top: 0px!important;  
}

.news-carousel-no-anim{
    padding-top: 0!important;
    margin-top: 0px!important;
    margin-bottom: 60px!important; 

}



/*  */

.detailsNews .firstSectionContents .imgMain img{
    margin-top: 130px;
    margin-bottom: 100px;
}

.detailsNews .expertise-media{
    margin:0!important;
    margin-bottom: 150px!important;
}

.detailsNews .card-news{
    margin-top:0!important;
}

.detailsNews .card-news .date, .detailsNews .card-news .langue{
    margin-bottom:0!important;
}

.detailsNews .card-news h2{
    margin-top: 42px!important;
    margin-bottom: 38px!important;
}

.detailsNews .card-news h3{
    font-weight: 800!important;
}

.detailsNews .more-news-section h1{
    margin-bottom: 20px!important;
}

.detailsNews .more-news-section .intro{
    font-size: 16px!important;
    font-weight: 300!important;
    line-height: 22px!important;
    color: #000087;
    margin-bottom: 42px!important;

}

.detailsNews .more-news-section .intro span{
    font-weight: 600!important;
   
}

.event-card-list .row {
    margin-bottom: 100px;
    margin-top: 100px;
}

.save-date-list {
    margin-top: 65px;
}

.save-date-header {
    margin-bottom: 30px;
}

.save-date-list h5 {
    font-weight: 400 !important;
}

.expertise-contact .buttonGen {
    margin-top: 30px;
}

.careers-information h2 {
    margin-top: 50px !important;

    margin-bottom: 50px !important;
}

.careers-information li {
    font-weight: 300!important;
}


.careers-tabs {
    border: none;
    border-radius: 0!important;
    border-bottom: 1px solid var(--dark-blue);
    color: var(--dark-blue);
    width: 100%;
    height: 40px;
    padding-left: 14px;
    padding-right: 32px;
    appearance: none;
    -webkit-appearance: none; 
    -moz-appearance: none; 
    transition: all 0.5s;
    display: flex;
    align-items: center;
}

.careers-tabs a {
    color: var(--dark-blue) !important;
    text-decoration: none !important;
}

.careers-tabs:hover {
    background: var(--cyan);
    transition: all 0.5s;
}

.contact-page-title {
    margin-bottom: 100px;
}

.contact-page-subtitle {
    margin-bottom: 50px;
}

.contact-page-subtitle h2{
    color: #000087;
}

.contact-page #logoText {
    font-size: 20px !important;
}



.expertise-contact-label {
    font-size: 12px !important;
}

/* POP UP */ 

/* Style de la modale (background) */
.modal {
    display: none; /* Caché par défaut */
    position: fixed; /* Rester en place */
    z-index: 9999; /* Situé au-dessus */
    left: 0;
    top: 0;
    width: 100%; /* Pleine largeur */
    height: 100%; /* Pleine hauteur */
    overflow: hidden; /* Activer le scroll si nécessaire */
    background-color: rgb(0,0,0); /* Couleur de fond */
    background-color: rgba(0,0,0,0.4); /* Noir avec opacité */
   
  
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(0px); /* Ensures transform is present for hardware acceleration */
  }
  
  /* Style du contenu de la modale */
  .modal-content {
    background-color: var(--white);
    margin: 2% auto; /* 15% du haut et centré horizontalement */
    padding: 0px;
    border: 1px solid #888;
    border-radius: 0 !important;
    width: 1136px;  

    
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
  
  /* Le bouton pour fermer la modale */
  .close {
    color: var(--dark-blue);
    background-color: var(--cyan);
    float: right;
    font-size: 50px;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .close:hover,
  .close:focus {
    color: var(--dark-grey);
    text-decoration: none;
    cursor: pointer;
  }

.pop-up-line {
    width: 100% !important;
}

.thanks {
    color: var(--dark-blue);
    width: 70%;
}

.thanks  h2 {
    font-weight: 800;
}

.modal #header {
    height: fit-content;
}

/***********************************************************************************
                                    🔗 EVENTS 🔗                   
************************************************************************************/

.sectionEventPeople .expertise-media {
    margin-bottom: 0px !important;
}

.buttonGenAllEvents {
    margin-bottom: 100px!important;
}

/***********************************************************************************
                                    🔗 CONTACT 🔗                   
************************************************************************************/

.mapDiv iframe{
    max-height:334px!important; 
}

/***********************************************************************************
                                    🔗 SIGNUP 🔗                   
************************************************************************************/

.asterixP{
    font-size: 12px;
}

.firstInputSignUp{
    margin-top: 16px;
}
.firstInputSignUp input[type="checkbox"] {
    height: 27px !important;
    width: 65px !important;
    margin-bottom: 35px;
}

.firstInputSignUp label {
    margin-left: 16px!important;
    font-size: 16px!important;
    line-height: 22px!important;
    font-weight: 300!important;
}


.tabs-cyan {
    background-color: var(--cyan) !important;
}


.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
    border-bottom: 1px solid var(--dark-blue)!important;
}
.custom-select {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 0 !important;
    color: var(--dark-blue);
    width: 100%;
    height: 40px;
    padding-left: 14px;
    padding-right: 32px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    cursor: pointer;
}

.custom-select span {
    opacity: 30%;
    color: #000087;
    font-size: 14px;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-top: none;
    z-index: 99;
    background-color: #fff;
    overflow: hidden;
    border-bottom: #000087 1px solid;
    max-height: 0;
    transition: max-height 0.5s ease-in-out; /* Adjusted transition time for smoother effect */
}
.custom-options.open {
    max-height: 700px; /* Increased max-height */
}
.custom-option {
    padding-top: 4px!important;    
    padding-bottom: 4px!important;

    padding-left: 15px!important;
    padding-right: 0px!important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s all;
   
}

.custom-option:first-child{
    border-top: #000087 1px solid;
}

.custom-option input[type="checkbox"]:checked::before{
    font-size: 12px !important;
    padding-top: 2px;
    padding-right: 1px;
}

.custom-option label{
    font-size: 12px!important;
    font-weight: 300!important;
    color: #000087!important;
    text-transform: uppercase;
    margin: 0!important;
}
.custom-option:hover {
    background-color: #f2f2f2;
}
.custom-option input[type="checkbox"] {
    padding-right: 0px!important;
    margin-right: 10px;
    height: 13px!important;
    width: 13px!important;
    border: 1px solid var(--dark-blue)!important;
    padding-left: 0px!important;
    cursor: pointer;
}


.accordion-content-aready .form-people {

    margin-top: 60px !important;
}

.accordion-content-aready .form-people .careers-checkbox-main{
    padding-left: 0px!important;
    padding-right: 24px !important;
    height: 25px!important;
    width: 25px!important;
    border: 1px solid #000087;
}

.accordion-content-aready .form-people .careers-checkbox-main-label{
    margin-left: 30px!important;
}
.custom-file-upload{
    letter-spacing: 1.4!important;
}

.career-form-marge input{
    margin-bottom: 25px!important;
}

.career-form-marge  input::placeholder{
    font-size: 14px!important;
    opacity: 30%;
    color: #000087;
    letter-spacing: 1.4px!important;


}

.signup-page .form-people input::placeholder{
    letter-spacing: 1.4px!important;
}

.signup-page .career-fieldset input[type="checkbox"] {
    height: 12px !important;
    width: 12px !important;
    padding-right: 10px;
}

.signup-page .career-fieldset legend{
    font-size: 16px!important;
    font-weight: 700!important;
    color: #000087!important;
    border-bottom: 1px solid #000087;
    margin-bottom: 9px !important;

}
.signup-page .career-fieldset{
    padding-left: 0!important;
}
.signup-page .career-fieldset input[type="checkbox"]:checked::before {
    font-size: 10px;
}

.signup-page .career-fieldset label{
    font-size: 12px!important;
    color: #000087;
    letter-spacing: 0px!important;
    margin-bottom: 6px!important;
    padding-left: 14px!important;
}
.custom-file-upload span{
    color: #000087;
    opacity: 30%;
    font-size: 14px!important;
    letter-spacing: 1.4px!important;

}

.modal #header-bottom h4{
    font-family: 'Bodoni Moda';
    color: #000087;
    font-size: 18px!important;

}