@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

:root {
    --blue: #07192D;
    --yellow: #FEB261;
    --brown: #A1513C;
    --white-grey: #F7F7F7;
    --blue-light: #717D96;
    --orange: #FEB261;
}

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

.flex {
    display: flex;
}

.wrapper {
    max-width: 1600px;
    padding: 0 5%;
    margin: 0 auto;
}

ul, li {
    list-style: none;
}

section {
    padding: 100px 0;
}

section h2 {
    font-size: 35px;
    margin-bottom: 40px;
}

.bg-blue {
    background-color: var(--blue);
}

.bg-grey {
    background-color: var(--white-grey);
}

.bg-white {
    background-color: #fff;
}

body {
    background-color: var(--white-grey);
    font-family: "Montserrat", sans-serif;
    color: var(--blue);
    font-size: 16px;
    line-height: 160%;
}




.h1, .h2, .h3, .h4 {
    font-family: "Cormorant Garamond", serif;
    line-height: 90%;
    color: var(--blue);
    font-weight: 300;
}

.h2 {
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
}

.h1 {
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
}

.title-lined {
    border-bottom: 1px solid #BBBBBB;
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.title-lined .h1 {
    margin-bottom: 30px;
}

.title-lined p {
    margin-bottom: 20px;
}

.alt-title {
    color: var(--yellow);
    font-weight: 400;
    display: block;
    font-size: 20px;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
}

.h3 {
    font-size: 50px;
}

footer {

    background-color: var(--blue);
    padding: 70px 5%;
    border-top: 1px solid var(--blue-light);
}

footer .footer-wrap {
    display: flex;
  
    gap: 80px;
    align-items: start;
    justify-content: space-between;
}

.footer-logo .logo {
    width: 180px;
    display: block;
}

.footer-nav{ display: flex; gap: 60px;}
.footer-nav ul {
   /* column-count: 3;
    column-gap: 60px;*/
        
}
.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a,
.language-switcher a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.footer-nav a:hover {
    opacity: .8;
}

.footer-socials ul {
    display: flex;
    gap: 10px;
}

.footer-meta {
    text-align: right;
    color: #fff;
        font-size: 13px;
}
.footer-group {
  
    margin-bottom: 8px;
    break-inside: avoid;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.language-switcher {
    white-space: nowrap;
    margin-bottom: 20px;
}

.language-switcher a.active {
    color: var(--yellow);
}

.cta-social {
    border: 1px solid var(--blue-light);
    display: inline-block;
    padding: 8px 14px;
    border-radius: 2px;
    text-decoration: none;
    color: #fff;
}

.cta-social{
    transition:.25s;
}

.cta-social:hover{
    background:white;
    color:var(--blue);
}

.footer-copyright {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

@media (max-width: 900px) {

    footer {

        padding: 60px 5%;
        text-align: center;
    }

    footer .footer-wrap {
        display: block;
        align-items: center;
        
    }.footer-nav {
    column-count: 2;
    max-width: none;
}

    .footer-logo {
        margin-bottom: 50px;
    }

    .footer-logo .logo {
        width: 140px;
        margin: 0 auto;
    }

    .footer-nav {
        margin-bottom: 50px;
    }

    .footer-nav ul {
        column-count: 1;
    }

    .footer-nav li {
        margin-bottom: 16px;
    }

    .footer-nav a {
        font-size: 16px;
        font-family: "Cormorant Garamond", serif;
    }

    .footer-socials {
        margin-bottom: 40px;
    }

    .footer-socials ul {
        justify-content: center;
    }

    .footer-meta {
        text-align: center;
    }

    .language-switcher {
        margin-top: 20px;
    }

}



#main-nav {

    top: 0;
    right: 0;

}


#main-nav li a {
    text-decoration: none;
    font-size: 14px;
    color: var(--blue-light);
    font-weight: 500;
}

#main-nav li.active a {
    color: var(--blue);

}

#main-nav li {
    padding: 10px;
    display: inline-block;
}

#main-nav a{
    position:relative;
}

#main-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:1px;
    background:var(--blue);
    transition:.3s;
}

#main-nav a:hover::after,
#main-nav li.active a::after{
    width:100%;
}

.cta {
    background-color: var(--yellow);
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    border-radius: 3px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));

}

.cta,
.cta-light,
.cta-hg,
.big-cta-bot {
    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
          /*  text-wrap-mode: nowrap;*/
}

.cta:hover,
.cta-light:hover,
.cta-hg:hover,
.big-cta-bot:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(7,25,45,.12);
}

.cta:active,
.cta-light:active{
    transform: translateY(-1px);
}

header .cta {
    filter: none
}

.cta-light {
    background-color: #fff;
    border: 1px solid var(--blue);
    color: var(--blue);
    filter: none
}

.cta-hg {
    background: var(--blue);
    font-size: 20px;
    color: #fff;
    position: relative;
    text-align: left;
    font-family: "Cormorant Garamond", serif;
    text-decoration: none;
    display: inline-block;
    padding: 20px;
    text-decoration: none;
    border-radius: 4px;
    width: 100%;
    margin: 5px 0;
    padding-right: 120px;
}
.cta-hg::after{
   content: "";
    position: absolute;
    right: 22px;
    display: block;
    top: 50%;
    width: 62px;
    height: 16px;
    /* background: white; */
    transform: translateY(-50%);
    transition: .2s;
}

.cta-hg:hover::after{
    transform:translate(4px,-50%);
}


.cta-hg-blue {
    color: #fff;
}

.cta-hg-blue:after{background: var(--blue) url(../img/arrow.svg) no-repeat;}

.cta-hg-white {
    background: #fff ;
    color: var(--blue);
    cursor: pointer
}

 .cta-hg-white.active {
    color: #fff;
    background-color:  var(--blue);
    
}
.cta-hg-white.active:after{ background:  url(../img/arrow.svg)  no-repeat;}
.cta-hg-white:after{ background:  url(../img/arrow-blue.svg)  no-repeat;}



.big-cta-bot {
     transition:.3s;
    background: #fff url(../img/arrow-bot.svg) no-repeat right 20px center;
    color: var(--blue);
}

.big-cta-bot:hover, .big-cta-bot.active {
    background: var(--blue) url(../img/arrow-bot-white.svg) no-repeat right 20px center;
    color: #fff;
}

.to-bottom-links {
    display: flex;
    gap: 30px;
}

.page-intro .text {
    padding-top: 15px;
}

@media (max-width: 900px) {
    .to-bottom-links {
        flex-direction: column;
        gap: 10px
    }

    #page-service .index-service .wrap-cta {
        width: 100%;
    }

    #page-service .page-intro .flex {
        flex-direction: column;
        gap: 30px
    }
}

#sect_hp-hero {
    position: relative;
    min-height: calc(100vh - 110px);
    padding: 0;
    overflow: hidden;
    background: var(--blue);
}

#sect_hp-hero .main-banner {
    display: block;
    width: 100%;
    height: calc(100vh - 110px);
    object-fit: cover;
}

#sect_hp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 25, 45, 0.12) 0%,
        rgba(7, 25, 45, 0.04) 45%,
        rgba(7, 25, 45, 0.42) 100%
    );
    pointer-events: none;
}

#sect_hp-hero .box-hover {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: min(620px, 48vw);
    min-height: 62vh;
    height: calc( 100vh - 110px );
    display: flex;
    align-items: center;
    padding: 70px 7%;
    background: rgba(7, 25, 45, 0.88);
    color: #fff;
    border-radius: 6px 0 0 6px;
    width: 50vw;
    backdrop-filter: blur(4px);
}
#sect_hp-hero .box-hover .to-bottom{       position: absolute;
    bottom: 80px;
    display: block;
    z-index: 9999;
    width: 80px;
    height: 20px;
    background: url(../img/arrow.svg) no-repeat center center;
    transform: rotate(90deg);
    right: 33px;
}

#sect_hp-hero .box-hover .h3 {
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.05;
}
#sect_hp-hero .box-hover .h3::after{ content: ""; width: 50%; height: 1px; background-color: #fff; display: block; margin: 30px 0;}

#sect_hp-hero .box-hover .text {
    margin-bottom: 34px;
}

#sect_hp-hero .box-hover .text p {
    font-size: 15px;
}

@media (max-width: 900px) {
    #sect_hp-hero {
        min-height: auto;
    }

    #sect_hp-hero .main-banner {
        height: 62vh;
    }

    #sect_hp-hero::after {
        background: linear-gradient(
            180deg,
            rgba(7, 25, 45, 0.05) 0%,
            rgba(7, 25, 45, 0.45) 100%
        );
    }

    #sect_hp-hero .box-hover {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        min-height: auto;
        border-radius: 0;
        padding: 55px 5%;
    }

    #sect_hp-hero .wrap-cta {
        flex-direction: column;
    }
}

.wrap-cta {
    display: inline-flex;
    gap: 20px
}

.wrap-cta-hg {
    margin-bottom: 40px;
}



#sect_hp-about {
    text-align: center;
    padding-bottom: 0;
}

#sect_hp-about .text {
    margin-bottom: 30px
}
#sect_hp-faq{ padding: 120px 0;}
#sect_hp-faq .flex {
    gap: 50px
}

#sect_hp-faq .title-intro {
    min-width: 40%;
}

#sect_hp-faq .questions {
    width: 60%;
}

@media (max-width: 900px) {
    #sect_hp-faq .flex {
        flex-direction: column;
    }

    #sect_hp-faq .questions {
        width: 100%;
    }
}


#sect_hp-clients {
    background-color: var(--blue);
    padding: 110px 0 ;
    overflow: hidden;
}

#sect_hp-clients .h2 {
    color: #fff;
}

#sect_hp-clients .wrap-title {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.clients-slider {
    position: relative;
}

.slider-cards {
    display: flex;
    gap: 54px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 20px;
    padding-top: 20px;
}

.slider-cards::-webkit-scrollbar {
    display: none;
}

.client-card {
    background-color: #fff;
    flex: 0 0 270px;
    max-width: 270px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease;
}

.client-card:hover {
    transform: translateY(-4px);
}

.client-card a {
    display: block;
    text-decoration: none;
}

.client-card .client-image {
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
}

.client-card .client-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-image{
    overflow:hidden;
}

.client-image img{
    transition:transform .6s ease;
}

.client-card:hover img{
    transform:scale(1.05);
}

.client-card .client-logo {
    height: 112px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card .client-logo img {
    max-height: 65px;
    max-width: 170px;
    object-fit: contain;
    transform: none;
}

.client-detail{ gap: 80px}
.client-content{ width: 50%}
.client-detail .client-picture {
    width: 50%;
    min-width: 0;
    margin-left: -100px;
}

.client-picture__fallback,
.client-slider__slide img {
    display: block;
    width: 100%;
    border-radius: 5px;
}

.client-slider {
    position: relative;
    width: 100%;
    min-width: 0;
}

.client-slider__viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.client-slider__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.client-slider__slide {
    flex: 0 0 100%;
    min-width: 0;
    margin: 0;
}

.client-slider__slide img {
    aspect-ratio: 4 / 5;
    height: 100%;
    object-fit: cover;
}

.client-slider__controls {
      display: block;
    height: 60px;
}

.client-slider__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--blue-light);
    border-radius: 50%;
    background: transparent;
    color: var(--blue);
    font-size: 20px;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.client-slider__arrow:hover {
    border-color: var(--blue);
    background-color: var(--blue);
    color: white;
}

.client-slider__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.client-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--blue-light);
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.client-slider__dot.is-active {
    background-color: var(--blue);
    transform: scale(1.4);
}

@media (max-width: 900px) {
    .client-detail .client-picture {
        width: 100%;
        margin-left: 0;
    }
    .client-detail .client-content { width: 100%;}

    .client-slider__slide img {
        aspect-ratio: 4 / 3;
    }
}


.client-intro{  margin-bottom: 40px;}
.client-intro::after{ content: ''; width: 50%; height: 1px; background-color: var(--blue-light); display: block; margin-top: 40px; }
.client-detail h3{     margin-bottom: 30px;
    color: var(--blue);
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 500;}
    .client-mission{ margin-bottom: 50px;}

.client-website{ margin-bottom: 40px;}

.client-results .prose ul li{ font-weight: bold; position: relative; list-style: none;
    padding-left: 42px;
    font-size: 17px;
    font-weight: 600;
}

.client-results .prose ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 400;


}
.slider-arrow {
    position: absolute;
    bottom: -55px;
    right: 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.slider-arrow--prev,
.slider-arrow--next {
    content: '';
    display: block;
    /* border: 1px solid red; */
    width: 80px;
    height: 20px;
    background: url(../img/arrow.svg) no-repeat center center;
}
.team-slider .slider-arrow--prev,
.team-slider .slider-arrow--next {
    background: url(../img/arrow-blue.svg) no-repeat center center;
    bottom: 20px
}

.client-slider__controls .slider-arrow--prev,
.client-slider__controls .slider-arrow--next {
    background: url(../img/arrow-blue.svg) no-repeat center center;
    bottom: 20px
}

.slider-arrow--prev {
    right: 70px;
    transform: rotate(180deg);


}

.slider-arrow:hover {
    opacity: 0.65;
}

.client-card{
    transition:
        transform .3s,
        box-shadow .3s;
}

.client-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

@media (max-width: 768px) {
    #sect_hp-clients {
        padding: 60px 0 90px;
    }

    .slider-cards {
        gap: 24px;
    }

    .client-card {
        flex-basis: 230px;
        max-width: 230px;
    }
}

.wrap-client-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
#sect_hp-services .content {
    text-align: left;
    min-width: 50%;
}



#sect_hp-sectors .split-visual__images {
    text-align: center;
}

.sector-detail__content{ margin-bottom: 60px;} .sector-detail { padding-bottom: 100px;}

#sect_hp-sectors .text {
    text-align: center;
}

#sect_hp-sectors .text p {
    margin-bottom: 30px;
}


#sect_hp-sectors .split-visual__images .wrap-cta {
    margin-top: 30px;
}

#sect_hp-sectors .text {
    margin-top: 60px;
    width: 100%;
}

#sect_hp-sectors .split-visual__inner {
    grid-template-columns: minmax(50%, 0) 1fr;
}

@media (max-width:900px) {
    #sect_hp-services.split-visual {
        padding-top: 0px;
    }

    #sect_hp-services .content {
        margin-top: 50px;
    }

    #sect_hp-sectors .text {
        width: 100%;
    }

    .wrap-client-cards{ gap: 30px}
}
#sect_all-contact{ padding: 80px 0;}
#sect_all-contact .wrapper{ gap: 120px;
    align-items: center;
    max-width: 1200px;
    justify-content: space-between;}


#sect_all-contact .text .cta {
    margin-top: 30px;
}

#sect_all-contact .wrapper {
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    justify-content: space-between
}

@media (max-width:900px) {
    #sect_all-contact .flex {
        flex-direction: column;
    }

    #sect_all-contact .text {
        margin: 0;
    }
}

article.index-service {
    padding: 65px 0;
}



#sect_about-wwd .flex {
    gap: 50px
}

#sect_about-work-together {
    background-color: var(--blue);
    padding: 0;
    color: #fff;
    text-align: center;
}

#sect_about-work-together img {
    display: block;
}


#sect_about-work-together .about-work-together-text {
    width: 100%;
    color: #fff;
    align-self: center;
    padding: 50px 5%;
}

#sect_about-work-together .about-work-together-text .text {
    margin-bottom: 50px;
}

#sect_about-work-together .about-work-together-text h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

#sect_about-work-together .about-work-together-text h5 {
    font-size: 30px;
    font-style: italic;
    font-weight: 100;
    margin-bottom: 60px;
}

#page_team {
    padding-top: 50px
}

#page_team-detail {
    padding: 50px 0 100px 0
}

#page_team-detail .wrapper {
    max-width: 1000px;
}

#page_team-detail .summary {
    border-bottom: 1px solid #BBBBBB;
    margin-bottom: 50px;
    padding-bottom: 50px;
}

#page_team-detail .description {
    border-bottom: 1px solid #BBBBBB;
    margin-bottom: 50px;
    padding-bottom: 50px;
}


#sect_team-apply {
    background-color: var(--blue);
    color: #fff;
    padding: 150px 0;
}

#sect_team-apply .flex {
    gap: 100px;
    justify-content: space-around;
}


#sect_team-apply h3 {
    color: #fff;
}

@media (max-width:900px) {
    #sect_team-apply .flex, .title-team .flex {
        flex-direction: column;
        gap: 30px !important;
    }

    article.index-service {
        padding-bottom: 70px;
    }

    article.index-service {
        padding: 50px 0;
    }
}

/*-----------SECTION FAQ ----------*/
/*-----------SECTION FAQ ----------*/
/*-----------SECTION FAQ ----------*/
.faq-item {
    border-bottom: 1px dotted var(--blue);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 50px 18px 0;
    text-align: left;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    position: relative;
}

.faq-question::after {
    background: url(../img/small-arrow.svg) no-repeat center center;
    display: block;
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
     transition:all .25s ease;
}

.faq-item.active .faq-question::after {
    content: "";
    display: block;
    transform: rotate(90deg);
    width: 20px;
    height: 20px;
    background: url(../img/small-arrow.svg) no-repeat center center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-inside {
    padding: 20px;
}

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

.faq-main-title {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.faq-main-title .h1 {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--blue);
    margin-bottom: 20px;
}

.faq-main-title .wrap-filters {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.faq-main-title .wrap-filters ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-main-title .wrap-filters ul li {
    display: inline-block;
}

.faq-main-title .filter-label {
    background: url(../img/icon-filter.png) no-repeat left center;
    padding-left: 35px;
    margin-top: 9px;
    display: block;
}

.faq-question{
    transition:padding-left .25s ease,color .25s ease;
}

.faq-question:hover{
    padding-left:8px;
    color:var(--brown);
}

.filter-btn {
    border-radius: 9px;
    display: inline-block;
    background: #FFF;
    padding: 10px 30px;
    cursor: pointer;
    text-decoration: none;
    color: var(--blue);
    transition: all .25s ease;
}

.filter-btn.active, 
.filter-btn:hover {
    background: var(--blue);
    color: #fff;
}

#main-faq {
    max-width: 700px;
    margin: 0 auto;
}

#sect_sectors-main {
    display: flex;
    gap: 50px;
}

.sector-visus {
    gap: 50px
}
.sector-visus .picture img{ display: block; max-width: 100%; border-radius: 6px; overflow: hidden; margin-top: 30px;}

#sect_sectors-main aside {
    min-width: 30%
}

#sector-visus img {
    display: block;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
}

#sector-visus {
    gap: 50px;
    margin-top: 30px;
}

@media (max-width: 900px) {

    #sect_sectors-main {
        display: block;
    }

    #sect_sectors-main aside {
        min-width: 0;
        margin-bottom: 40px;
    }

    .aside-sticky {
        position: relative;
        top: auto;

        display: flex;
        gap: 12px;
        flex-direction: column;
        overflow-x: auto;
        padding-bottom: 10px;

        scrollbar-width: none;
    }

    .aside-sticky::-webkit-scrollbar {
        display: none;
    }

    .aside-sticky article {
        flex-shrink: 0;
    }

    .aside-sticky .cta-hg {

        white-space: nowrap;
        padding: 14px 60px 14px 18px;
        font-size: 18px;
        margin: 0;
    }

    .service-content {
        min-height: auto;
    }

    .sector-panel .h3 {
        font-size: 42px;
        margin-bottom: 25px;
    }

    .sector-visus {
        display: block;
        margin-top: 35px;
    }

    .sector-visus>div:first-child {
        margin-bottom: 25px;
    }

    .sector-visus img {
        width: 100%;
        display: block;
    }

}

@media (max-width: 520px) {

    .sector-panel .h3 {
        font-size: 34px;
    }

    .aside-sticky .cta-hg {
        font-size: 16px;
        padding: 12px 50px 12px 16px;
        background-position: right 15px center;
    }

}

.prose p, .prose ul {
    margin-bottom: 20px;
}
.prose a{}
.prose a{
    position:relative;
    text-decoration:none;
}

.prose a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:100%;
    height:1px;
    transform:scaleX(0);
    transform-origin:left;
    transition:.3s;
    background:currentColor;
}

.prose a:hover::after{
    transform:scaleX(1);
}

.prose ul li{ list-style: circle inside; margin-bottom: 10px;}
.prose ul li p{ display: inline;}

.aside-sticky {
    position: sticky;
    top: 30px
}

.title-team .h1 {
    margin-bottom: 30px;
}

.title-team .intro {
    max-width: 500px;
}

.title-team .flex {
    gap: 100px;
}

#sect_team-members {

    padding: 100px 0 120px;
    overflow: hidden;
}

.team-slider {
    position: relative;
}

.team-slider__track {
    display: flex;
    gap: 58px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 40px 0 80px;
}

.team-slider__track::-webkit-scrollbar {
    display: none;
}

.team-member {
    flex: 0 0 295px;
    max-width: 295px;
}

.team-member__image {
    width: 100%;
    aspect-ratio: 1 / 0.98;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.team-member__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.team-member__image{
    overflow:hidden;
}

.team-member__image img{
    transition:transform .6s ease;
}

.team-member:hover img{
    transform:scale(1.04);
}

.team-title {
    margin-bottom: 30px;
}

.team-title h4 {
    font-size: 30px;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: var(--blue);
}

.team-title h5 {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--blue);
}

.team-text {
    margin-bottom: 28px;
}



.team-member .cta {
    min-width: 240px;
}

.team-slider__progress {
    position: relative;
    width: calc(100% - 120px);
    height: 8px;
    margin-left: 10px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.team-slider__progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--brown);
    border-radius: 20px;
    transition: width 0.15s linear;
}

@media (max-width: 768px) {
    #sect_team-members {
        padding: 70px 0 90px;
    }

    .team-slider__track {
        gap: 28px;
        padding-bottom: 60px;
    }

    .team-member {
        flex-basis: 250px;
        max-width: 250px;
    }

    .team-title h4 {
        font-size: 27px;
    }

    .team-slider__progress {
        width: 100%;
        margin-left: 0;
    }
}


#sect_job-offers {
    padding: 120px 0;
    background: #fff;
}

#sect_job-offers .wrap-title {
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;

}

#sect_job-offers .wrap-title .h3 {
    margin: 0;
}

#sect_job-offers .wrap-title p {
    max-width: 360px;
    margin: 0;
    line-height: 1.6;
}



.job-offer-card {
    border-bottom: 1px solid rgba(3, 25, 43, 0.35);
}

.job-offer-toggle {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 24px 0;
    border: 0;
    background: transparent;
    color: #061b2e;
    text-align: left;
    cursor: pointer;
    font: inherit;

    transition:padding-left .25s ease;
}

.job-offer-toggle::after {
    background: url(../img/small-arrow.svg) no-repeat center center;
    display: block;
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
     transition:all .25s ease;
}
.job-offer-card.is-open .job-offer-toggle::after {
    transform: rotate(90deg);

    }

.job-offer-toggle:hover{
    padding-left:10px;
}

.job-title {
    font-weight: 700;
}

.job-location,
.job-contract {
    color: rgba(3, 25, 43, 0.75);
}

.job-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}



.job-offer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.job-offer-inner {
    max-width: 620px;
    padding: 0 0 32px;
    line-height: 1.65;
}

.job-offer-inner p {
    margin: 0 0 24px;
}

@media (max-width: 768px) {
    #sect_job-offers {
        padding: 80px 0;
    }


    .job-offers-list {
        margin-left: 0;
    }

    .job-offer-toggle {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .job-location,
    .job-contract {
        grid-column: 1 / 2;
    }

    .job-arrow {
        grid-column: 2;
        grid-row: 1;
    }
}


#sect-page-contact {
    background-color: var(--blue);
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    color: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}

#sect-page-contact.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

body.contact-is-open {
    overflow: hidden;
}

#sect-page-contact .close {
    position: absolute;
    top: 40px;
    right: 5%;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

#sect-page-contact .close::before,
#sect-page-contact .close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    width: 28px;
    height: 1px;
    background: #fff;
}

#sect-page-contact .close::before {
    transform: rotate(45deg);
}

#sect-page-contact .close::after {
    transform: rotate(-45deg);
}



.page-contact-inside {
    width: 100%;
    justify-items: center;
    height: 100%;
    align-content: center;
    font-size: 14px;
}

.page-contact-inside .contact-title {
    min-width: 400px;
}

.page-contact-inside .wrapper.flex {
    gap: 100px
}

#sect-page-contact .h2 {
    color: #fff;
}

#sect-page-contact .logo {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 170px;
}

#sect-page-contact .logo img {
    display: block;
    width: 100%;
}

#sect-page-contact .close {
    position: absolute;
    top: 40px;
    right: 60px;
}

#sect-page-contact .close:before,
#sect-page-contact .close:after {
    width: 40px;
    height: 1px;
    display: block;
    background-color: #fff;
    position: absolute;
    content: '';
    transform-origin: center;
}

#sect-page-contact .close:before {
    transform: rotate(45deg);
}

#sect-page-contact .close:after {
    transform: rotate(-45deg);
}

.contact-line {
    padding: 30px 0;
    gap: 50px
}

.contact-line.not-last {
    border-bottom: 1px solid var(--blue-light);
}

.contact-line .line {
    margin-bottom: 20px;
}

.contact-line a.simple {
    color: #fff;
    text-decoration: underline;
}

.contact-line .link-mail {
    color: var(--yellow);
    text-decoration: underline;
}

.contact-line .col {
    width: 60%;
}

.contact-line h3 {
    width: 40%;
    font-family: "Cormorant Garamond", serif;
    font-weight: 200;
    font-size: 30px;
}

#page-contact #sect-page-contact {
    position: relative;
    opacity: 1;
    display: block;
    visibility: visible;
}

#page-contact .logo {
    display: none;
}

#page-contact #sect-page-contact .close {
    display: none;
}

#page-service {
    padding-top: 40px;
}

#page-service .wrap-title {
    display: flex;
    gap: 100px;
    margin-bottom: 50px;
}

#page-service .h3 {
    margin-bottom: 30px;
}

#page-service .index-service .wrap-cta {
    border-top: 1px solid #D1D1D1;
    padding-top: 30px;
    margin-top: 30px;
}


.back-link{ color: var(--blue); margin-bottom: 50px; display: block;text-decoration: none;}

@media (max-width: 900px) {
    #sect-page-contact {
        overflow-y: auto;
        height: 100dvh;
    }

    #sect-page-contact .logo {
        top: 24px;
        left: 5%;
        width: 140px;
    }

    #sect-page-contact .close {
        top: 24px;
        right: 5%;
        width: 38px;
        height: 38px;
    }

    #sect-page-contact .close::before,
    #sect-page-contact .close::after {
        width: 32px;
        left: 3px;
    }

    .page-contact-inside {
        height: auto;
        min-height: 100dvh;
        align-content: start;
        padding: 120px 0 60px;
    }

    .page-contact-inside .wrapper.flex {
        display: block;
    }

    .page-contact-inside .contact-title {
        min-width: 0;
        margin-bottom: 50px;
    }

    #sect-page-contact .h2 {
        font-size: 52px;
    }

    .contact-line {
        display: block;
        padding: 28px 0;
        gap: 0;
    }

    .contact-line h3 {
        width: 100%;
        font-size: 28px;
        margin-bottom: 18px;
    }

    .contact-line .col {
        width: 100%;
    }

    .contact-line .line {
        margin-bottom: 18px;
    }

    .contact-line .cta {
        margin-top: 8px;
    }
}

@media (max-width: 520px) {
    #sect-page-contact .h2 {
        font-size: 44px;
    }

    .page-contact-inside {
        padding-top: 105px;
    }

    .contact-line {
        padding: 24px 0;
    }
}

/* split visual */

.split-visual {
    position: relative;
    overflow: hidden;
    /*padding: 100px 0;*/
}

.split-visual__inner {
    display: grid;
    grid-template-columns: minmax(0, 520px) 1fr;
    align-items: center;
    gap: 80px;
}



.split-visual__images {
    position: relative;
    margin-right: calc(-1 * ((100vw - 200%) / 2 ));
}

.split-visual__images img {
    display: block;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.split-visual__images .img-large {
    width: 70%;
    margin-left: auto;
    margin-top: 120px;
}

.split-visual__images .img-small {
    position: absolute;
    z-index: 2;
    width: 50%;
    top: 0;
    left: 0;
}

.split-visual--left .split-visual__inner {
    grid-template-columns: 1fr minmax(50%, 50%);
}

.split-visual--left .split-visual__text {
    grid-column: 2;
}

.split-visual--left .split-visual__images {
    grid-column: 1;
    grid-row: 1;
        margin-left: calc(-1 * ((100vw - 190%) / 2 ));

    margin-right: 80px;
}

.split-visual--right .split-visual__images {
  
    margin-left: 80px;
}

.split-visual__images img{
    transition:
        transform .6s ease,
        box-shadow .6s ease;
        border-radius: 5px;
}

.split-visual__images:hover img{
    box-shadow:0 30px 60px rgba(0,0,0,.18)!important;
}

.split-visual__images:hover .img-large{
    transform:translateY(-4px)!important;
}

.split-visual__images:hover .img-small{
    transform:translateY(4px)!important;
}

@media (max-width: 900px) {
    .split-visual__inner {
        display: block;

    }

    .split-visual__text {
        max-width: 100%;
    }

    .split-visual__images,
    .split-visual--left .split-visual__images {
        margin: 60px -5vw 0;
        min-height: auto;
    }

    .split-visual__images .img-large {
        width: 85%;
        height: auto;
        aspect-ratio: 4 / 3;
        margin: 80px 0 0 auto;
    }

    .split-visual__images .img-small {
        width: 55%;
        height: auto;
        aspect-ratio: 4 / 3;
        left: 5vw;
    }
}


/* SERVICES */

.service-popup {
    position: fixed;
    inset: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.service-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(245, 245, 245, 0.35);
    backdrop-filter: blur(10px);
}

.service-popup__box {
    position: relative;
    width: min(1180px, 86vw);
    max-height: 86vh;
    margin: 8vh auto;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.25);
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.service-popup.is-open .service-popup__box {
    transform: translateY(0);
    opacity: 1;
}

.service-popup__top {
    position: relative;
    padding: 80px 110px 90px;
    background: var(--blue);
    color: #fff;
}

.service-popup__top .alt-title {
    display: block;
    color: var(--orange);
}

.service-popup__top .h3 {
    max-width: 560px;
    margin-bottom: 45px;
    color: #fff;
}

.service-popup__columns {
    column-count: 2;
    column-gap: 90px;
    max-width: 960px;
}

.service-popup__columns p {
    break-inside: avoid;
}

.service-popup__bottom {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 80px;
    padding: 58px 110px 70px;
    background: #fff;
    color: var(--blue);
}

.service-popup__bottom h4 {
    margin: 0 0 28px;
    color: var(--orange);
    font-size: 26px;
    line-height: 1.05;
}

.service-popup__bottom ul,
.service-benefits .wrapper ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-popup__bottom li,
.service-benefits .wrapper ul li {
    position: relative;
    padding-left: 42px;
    font-size: 17px;
    font-weight: 600;
}

.service-popup__bottom li::before,
.service-benefits .wrapper ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 400;
}

.service-benefits .wrapper{ display: flex; justify-content: space-between; max-width: 1200px; gap: 50px}
.service-benefits .wrapper ul{ margin-bottom: 30px;}


.service-popup__close {
    position: absolute;
    z-index: 3;
    top: 34px;
    right: 38px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.service-popup__close::before,
.service-popup__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 6px;
    width: 32px;
    height: 1px;
    background: #fff;
}

.service-popup__close::before {
    transform: rotate(45deg);
}

.service-popup__close::after {
    transform: rotate(-45deg);
}

body.service-popup-is-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .service-benefits .wrapper{ display: block;}
    .service-popup__box {
        width: 100%;
        max-height: 100vh;
        margin: 0;
    }

    .service-popup__top {
        padding: 70px 28px 60px;
    }

    .service-popup__columns {
        column-count: 1;
    }

    .service-popup__bottom {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 45px 28px 55px;
    }

    .service-popup__bottom li {
        font-size: 17px;
    }
}

/* @end SERVICES */


.sector-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
}

.sector-panel.active {
    display: block;
    animation: sectorFadeIn 0.35s ease forwards;
}

@keyframes sectorFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#page_cgu {
    padding: 50px 0 100px 0
}

#page_cgu .h1{ margin-bottom: 50px;}
#page_cgu .wrapper {
    max-width: 1000px;
}

#page_cgu .summary {
    border-bottom: 1px solid #BBBBBB;
    margin-bottom: 50px;
    padding-bottom: 50px;
}




/* ==========================================================
   MOBILE GLOBAL — YPR
   À placer tout en bas du fichier CSS
========================================================== */

@media (max-width: 900px) {

    html,
    body {
        overflow-x: hidden;
    }

    body {
        padding-top: 82px;
        font-size: 15px;
        line-height: 1.65;
    }

    section {
        padding: 70px 0;
    }

    .wrapper {
        padding: 0 5%;
    }

    .flex {
        flex-direction: column;
    }

    .h1,
    .h2 {
        font-size: clamp(46px, 13vw, 62px);
        line-height: .92;
    }

    .h3 {
        font-size: clamp(36px, 10vw, 48px);
        line-height: .95;
    }

    .alt-title {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .title-lined {
        margin-bottom: 35px;
        padding-bottom: 35px;
    }

    .title-lined .h1 {
        margin-bottom: 24px;
    }

    .wrap-cta {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .cta,
    .cta-light {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
    }

    .cta-hg {
        font-size: 18px;
        padding: 16px 70px 16px 18px;
    }

    .cta-hg::after {
        right: 18px;
        width: 48px;
        background-size: contain;
    }
}


/* ==========================================================
   HERO HOMEPAGE MOBILE
========================================================== */

@media (max-width: 900px) {

    #sect_hp-hero {
        min-height: auto;
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
        background: var(--blue);
    }

    #sect_hp-hero .main-banner {
        width: 100%;
        height: 52vh;
        min-height: 360px;
        object-fit: cover;
    }

    #sect_hp-hero::after {
        display: none;
    }

    #sect_hp-hero .box-hover {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: auto;
        min-height: auto;
        border-radius: 0;
        padding: 55px 5% 60px;
        background: var(--blue);
        backdrop-filter: none;
    }

    #sect_hp-hero .box-hover > div {
        width: 100%;
    }

    #sect_hp-hero .box-hover .h3 {
        margin-bottom: 24px;
    }

    #sect_hp-hero .box-hover .h3::after {
        width: 70%;
        margin: 24px 0;
    }

    #sect_hp-hero .box-hover .text {
        margin-bottom: 30px;
    }

    #sect_hp-hero .box-hover .text p {
        font-size: 15px;
    }

    #sect_hp-hero .box-hover .to-bottom {
        display: none;
    }
}


/* ==========================================================
   HOMEPAGE SECTIONS
========================================================== */

@media (max-width: 900px) {

    #sect_hp-about {
        padding: 70px 0 0;
    }

    #sect_hp-services.split-visual {
        padding-top: 70px;
    }

    #sect_hp-services .content {
        min-width: 0;
        margin-top: 45px;
    }

    #sect_hp-sectors .split-visual__inner {
        display: block;
    }

    #sect_hp-sectors .text {
        margin-top: 45px;
    }

    #sect_hp-clients {
        padding: 75px 0 95px;
    }

    #sect_hp-clients .wrap-title {
        margin-bottom: 35px;
        padding: 0 5%;
    }

    .slider-cards {
        gap: 22px;
        padding-left: 5%;
        padding-right: 5%;
        scroll-padding-left: 5%;
    }

    .client-card {
        flex: 0 0 235px;
        max-width: 235px;
    }

    .client-card .client-logo {
        height: 95px;
        padding: 20px;
    }

    .slider-arrow {
        bottom: -45px;
    }

    .slider-arrow--next {
        right: 5%;
    }

    .slider-arrow--prev {
        right: calc(5% + 70px);
    }

    #sect_hp-faq {
        padding: 75px 0;
    }

    #sect_hp-faq .flex {
        gap: 30px;
    }

    #sect_hp-faq .title-intro,
    #sect_hp-faq .questions {
        width: 100%;
        min-width: 0;
    }
}


/* ==========================================================
   SPLIT VISUAL MOBILE
========================================================== */

@media (max-width: 900px) {

    .split-visual {
        overflow: hidden;
    }

    .split-visual__inner {
        display: block;
    }

    .split-visual__text {
        max-width: 100%;
    }

    .split-visual__images,
    .split-visual--left .split-visual__images,
    .split-visual--right .split-visual__images {
        margin: 50px -5vw 0;
        min-height: auto;
    }

    .split-visual__images .img-large {
        width: 82%;
        aspect-ratio: 4 / 3;
        height: auto;
        margin: 75px 0 0 auto;
    }

    .split-visual__images .img-small {
        width: 58%;
        aspect-ratio: 4 / 3;
        height: auto;
        left: 5vw;
    }
}


/* ==========================================================
   SERVICES PAGE MOBILE
========================================================== */

@media (max-width: 900px) {

    #page-service, #page-sector, #page-clients, #page_client, #page_team, #page_service{
        padding-top: 80px;
    }

    #page-service .wrap-title {
        display: block;
        margin-bottom: 35px;
    }

    #page-service .wrap-title .h1,
    #page-service .wrap-title .h2,
    #page-service .wrap-title .h3 {
        margin-bottom: 24px;
    }

    article.index-service {
        padding: 55px 0;
    }

    #page-service .index-service .wrap-cta {
        width: 100%;
        padding-top: 25px;
        margin-top: 25px;
    }
}


/* ==========================================================
   SECTORS PAGE MOBILE
========================================================== */

@media (max-width: 900px) {

    #sect_sectors-main {
        display: block;
        padding-top: 60px;
    }

    #sect_sectors-main aside {
        margin-bottom: 35px;
    }

    .aside-sticky {
        position: relative;
        top: auto;
        display: block;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 12px;
        margin: 0 -5vw;
        padding-left: 5vw;
        padding-right: 5vw;
        scrollbar-width: none;
    }

    .aside-sticky::-webkit-scrollbar {
        display: none;
    }

    .aside-sticky article {
        flex: 0 0 auto;
        width: auto;
        min-width: 230px;
    }

    .aside-sticky .cta-hg {
        white-space: normal;
        height: 100%;
        min-height: 72px;
        display: flex;
        align-items: center;
    }

    .service-content {
        min-height: auto;
    }

    .sector-panel .h3 {
        font-size: clamp(34px, 10vw, 44px);
        margin-bottom: 24px;
    }

    .sector-visus {
        display: block;
        margin-top: 35px;
    }

    .sector-visus .picture img,
    .sector-visus img {
        width: 100%;
        margin-top: 24px;
    }
}


/* ==========================================================
   TEAM MOBILE
========================================================== */

@media (max-width: 900px) {



    .title-team .flex {
        gap: 25px !important;
    }

    .title-team .intro {
        max-width: 100%;
    }

    #sect_team-members {
        padding: 70px 0 90px;
    }

    .team-slider__track {
        gap: 24px;
        padding: 30px 5% 55px;
        margin: 0 -5%;
        scroll-padding-left: 5%;
    }

    .team-member {
        flex: 0 0 250px;
        max-width: 250px;
    }

    .team-member__image {
        margin-bottom: 24px;
    }

    .team-title {
        margin-bottom: 22px;
    }

    .team-title h4 {
        font-size: 28px;
    }

    .team-title h5 {
        font-size: 18px;
    }

    .team-member .cta {
        min-width: 0;
        width: 100%;
    }

    #sect_team-apply {
        padding: 75px 0;
    }

    #sect_team-apply .flex {
        gap: 30px !important;
    }
}


/* ==========================================================
   FAQ MOBILE
========================================================== */

@media (max-width: 900px) {

    .faq-main-title {
        margin-bottom: 35px;
    }

    .faq-main-title .h1 {
        padding-bottom: 24px;
    }

    .faq-main-title .wrap-filters {
        display: block;
    }

    .faq-main-title .filter-label {
        margin-bottom: 16px;
    }

    .faq-main-title .wrap-filters ul {
        gap: 8px;
    }

    .filter-btn {
        padding: 9px 18px;
        font-size: 14px;
    }

    .faq-question {
        padding: 18px 42px 18px 0;
        font-size: 15px;
        line-height: 1.45;
        color: var(--blue);
    }

    .faq-question::after {
        right: 8px;
    }

    .faq-inside {
        padding: 12px 0 24px;
    }

    #main-faq {
        max-width: 100%;
    }
}


/* ==========================================================
   JOB OFFERS MOBILE
========================================================== */

@media (max-width: 900px) {

    #sect_job-offers {
        padding: 75px 0;
    }

    #sect_job-offers .wrap-title {
        display: block;
        margin-bottom: 35px;
    }

    #sect_job-offers .wrap-title .h3 {
        margin-bottom: 22px;
    }

    #sect_job-offers .wrap-title p {
        max-width: 100%;
    }

    .job-offer-toggle {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 22px 36px 22px 0;
    }

    .job-offer-toggle::after {
        right: 4px;
    }

    .job-title {
        font-size: 16px;
    }

    .job-location,
    .job-contract {
        font-size: 14px;
    }

    .job-offer-inner {
        max-width: 100%;
        padding-bottom: 28px;
    }
}


/* ==========================================================
   CONTACT MOBILE
========================================================== */

@media (max-width: 900px) {

    #sect_all-contact {
        padding: 70px 0;
    }

    #sect_all-contact .wrapper {
        gap: 30px;
        align-items: flex-start;
    }

    #sect-page-contact {
        overflow-y: auto;
        height: 100dvh;
    }

    #sect-page-contact .logo {
        top: 24px;
        left: 5%;
        width: 140px;
    }

    #sect-page-contact .close {
        top: 24px;
        right: 5%;
        width: 38px;
        height: 38px;
    }

    .page-contact-inside {
        height: auto;
        min-height: 100dvh;
        padding: 115px 0 60px;
        align-content: start;
    }

    .page-contact-inside .wrapper.flex {
        display: block;
    }

    .page-contact-inside .contact-title {
        min-width: 0;
        margin-bottom: 40px;
    }

    #sect-page-contact .h2 {
        font-size: clamp(44px, 13vw, 58px);
    }

    .contact-line {
        display: block;
        padding: 26px 0;
    }

    .contact-line h3,
    .contact-line .col {
        width: 100%;
    }

    .contact-line h3 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .contact-line .line {
        margin-bottom: 16px;
    }
}


/* ==========================================================
   SERVICE POPUP MOBILE
========================================================== */

@media (max-width: 900px) {

    .service-popup {
        overflow-y: auto;
    }

    .service-popup__box {
        width: 100%;
        max-height: none;
        min-height: 100dvh;
        margin: 0;
        box-shadow: none;
    }

    .service-popup__top {
        padding: 75px 28px 55px;
    }

    .service-popup__top .h3 {
        margin-bottom: 35px;
    }

    .service-popup__columns {
        column-count: 1;
    }

    .service-popup__bottom {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 42px 28px 55px;
    }

    .service-popup__bottom li {
        font-size: 17px;
        padding-left: 32px;
    }

    .service-popup__close {
        top: 26px;
        right: 24px;
    }
}


/* ==========================================================
   FOOTER MOBILE
========================================================== */

@media (max-width: 900px) {

    footer {
        padding: 60px 5% 45px;
        text-align: center;
    }

    footer .footer-wrap {
        display: block;
    }

    .footer-logo {
        margin-bottom: 42px;
    }

    .footer-logo .logo {
        width: 135px;
        margin: 0 auto;
    }

    .footer-nav {
        margin-bottom: 42px;
    display: block;
    gap: 20px
    }

    .footer-nav ul {
        column-count: 1;
    }

    .footer-nav li {
        margin-bottom: 14px;
    }

    .footer-nav a {
        font-size: 18px;
        font-family: "Cormorant Garamond", serif;
    }

    .footer-socials {
        margin-bottom: 35px;
    }

    .footer-socials ul {
        justify-content: center;
    }

    .footer-meta {
        text-align: center;
    }

    .language-switcher {
        margin-top: 20px;
    }

    .footer-copyright {
        margin-top: 38px;
    }
}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 520px) {

    section {
        padding: 58px 0;
    }

    body {
        padding-top: 78px;
    }

    header .logo {
        width: 135px;
    }

    #sect_hp-hero .main-banner {
        height: 46vh;
        min-height: 300px;
    }

    #sect_hp-hero .box-hover {
        padding: 48px 5% 55px;
    }

    .client-card {
        flex-basis: 215px;
        max-width: 215px;
    }

    .team-member {
        flex-basis: 230px;
        max-width: 230px;
    }

    .split-visual__images .img-large {
        width: 86%;
    }

    .split-visual__images .img-small {
        width: 62%;
    }

    .aside-sticky article {
        min-width: 210px;
    }
}

/* ==========================================================
   HEADER
========================================================== */

.site-header {
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 30px 30px;
    background: rgba(255, 255, 255, 0);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header .header-inner {
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-header .logo {
    display: block;
    width: 200px;
}

.site-header .logo img {
    display: block;
    width: 100%;
}

/*
 * Lorsque l’on quitte le haut de la page,
 * le header complet disparaît.
 */
.site-header.is-compact {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
}

body {
    padding-top: 110px;
}


/* ==========================================================
   BOUTONS BURGER
========================================================== */

.menu-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    display: block;
    width: 30px;
    height: 1px;
    background: var(--blue);
    transform: translateX(-50%);
    transition:
        top 0.25s ease,
        bottom 0.25s ease,
        transform 0.25s ease;
}

.menu-toggle span:first-child {
    top: 18px;
}

.menu-toggle span:last-child {
    bottom: 18px;
}


/* Burger desktop après scroll */

.menu-toggle--scrolled {
    position: fixed;
    z-index: 950;
    top: 24px;
    right: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 35px rgba(7, 25, 45, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.25s ease;
}

.menu-toggle--scrolled.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-toggle--scrolled:hover {
    background: var(--yellow);
}

.menu-toggle--scrolled:hover span {
    background: var(--blue);
}


/* ==========================================================
   MENU PLEIN ÉCRAN
========================================================== */

.mobile-nav {
    position: fixed;
    z-index: 1000;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    height: 100dvh;
    padding: 100px 8% 60px;

    overflow-y: auto;

    background: var(--blue);
    color: #fff;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav__logo {
    position: absolute;
    top: 30px;
    left: 30px;
    display: block;
    width: 180px;
}

.mobile-nav__logo img {
    display: block;
    width: 100%;
}

.mobile-nav ul {
    width: min(700px, 100%);
    margin-bottom: 45px;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-nav a:not(.cta):not(.mobile-nav__logo) {
    display: block;
    padding: 18px 0;
    color: #fff;
    text-decoration: none;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 6vw, 42px);
    line-height: 0.95;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.mobile-nav a:not(.cta):not(.mobile-nav__logo):hover {
    padding-left: 12px;
    color: var(--yellow);
}

.mobile-nav .cta {
    align-self: flex-start;
    filter: none;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;

    width: 48px;
    height: 48px;

    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 7px;

    width: 34px;
    height: 1px;

    background: #fff;
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

body.mobile-menu-is-open {
    overflow: hidden;
}


/* ==========================================================
   AFFICHAGE DES VERSIONS
========================================================== */

.desktopOnly {
    display: block;
}

.mobileOnly {
    display: none;
}


/* ==========================================================
   HEADER MOBILE
========================================================== */

@media (max-width: 900px) {
    body {
        padding-top: 82px;
    }

    .desktopOnly {
        display: none !important;
    }

    .mobileOnly {
        display: block;
    }

    .site-header,
    .site-header.is-compact {
        padding: 18px 5%;
        background: #fff;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;

        box-shadow: 0 8px 30px rgba(7, 25, 45, 0.06);
    }

    .site-header .logo {
        width: 145px;
    }

    .menu-toggle--mobile {
        display: block;
        width: 40px;
        height: 40px;
    }

    .menu-toggle--mobile span {
        width: 30px;
    }

    .menu-toggle--mobile span:first-child {
        top: 14px;
    }

    .menu-toggle--mobile span:last-child {
        bottom: 14px;
    }

    .mobile-nav {
        padding: 105px 5% 45px;
        justify-content: flex-start;
    }

    .mobile-nav__logo {
        top: 24px;
        left: 5%;
        width: 145px;
    }

    .mobile-menu-close {
        top: 21px;
        right: 5%;
    }

    .mobile-nav a:not(.cta):not(.mobile-nav__logo) {
        padding: 17px 0;
        font-size: clamp(38px, 12vw, 38px);
    }

    .mobile-nav ul {
        margin-bottom: 40px;
    }

    .mobile-nav .cta {
        width: 100%;
        text-align: center;
    }
}