:root {
    --gold: #CBBBA0;
    --violet: #672F43;
}

@font-face {
    font-family: 'onest' ;
    src: url("./assets/fonts/Onest-Bold.woff2") format("woff2"), url("./assets/fonts/Onest-Bold.woff") format("woff");
    font-style: normal;
    font-display: swap;
    font-weight: 900;
}
@font-face {
    font-family: 'source-reg';
    src: url("./assets/fonts/SourceSans3-Regular.woff2") format("woff2"), url("./assets/fonts/SourceSans3-Regular.woff") format("woff");
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'source-semi';
    src: url("./assets/fonts/SourceSans3-SemiBold.woff2") format("woff2"), url("./assets/fonts/SourceSans3-SemiBold.woff") format("woff");
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'source-bold';
    src: url("./assets/fonts/SourceSans3-Bold.woff2") format("woff2"), url("./assets/fonts/SourceSans3-Bold.woff") format("woff");
    font-style: normal;
    font-display: swap;
}
/* GLOBAL */
.error404.not-found{
    padding-top: 125px;
    padding-bottom: 45px;
}

body {
    overflow-x: hidden;
    width: 100%;
}
body * {
    font-family: 'source-reg';
}
body a,body a:hover {
    transition: 0.2s ease-in-out all;

}
body a {
    color: var(--violet);
}
body h1 {
    font-family: onest;
    font-weight: 800;
}
p strong {
    font-family: 'source-bold';
}
body.home h1 {
    font-size: 63px;
}
body h2, body h2 span, body h2 strong {
    color: var(--violet);
    font-family: 'onest';
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
}
body h3, body h3 span, body h3 strong {
    font-family: 'onest';
    font-weight: 800;
}
body h4, body h4 span, body h4 strong {
    font-family: onest;
    font-size: 14px;
    font-weight: 800;
}
body h4::after {
    background-color: #CBBBA0;
    content: '';
    display: block;
    height: 4px;
    margin-top: 10px;
    width: 32px;
}
body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
    background-color: var(--gold);
    background-image: none;
    border: none;
    border-radius: 100px;
    color: white;
    padding: 10px 50px;
}
body .vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern, body .bouton-popup {
    background-color: var(--violet);
    background-image: none;
    border: none;
    border-radius: 100px;
    color: white;
    padding: 10px 50px;
}
body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover, body .vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern:hover {
    background-color: #383838;
    color: white;
}
/* Form */
/* Structure de base */
.cf7-aurik__row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}
.cf7-aurik__col {
    flex: 1;
}
.cf7-aurik__col--half {
    width: 48%;
}
@media (max-width: 768px) {
    .cf7-aurik__col, .cf7-aurik__col--half {
        width: 100%;
    }
    .cf7-aurik__col--third {
        width: 100%;
    }
}

/* Champs */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 0px;
    background-color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    color: #333;
    box-sizing: border-box;
}

/* Labels */
.wpcf7-form label {
    font-weight: bold;
    font-size: 15px;
    display: block;
    margin-bottom: 12px;
    color: #672F43;
}

/* Checkbox RGPD */
.wpcf7-acceptance .wpcf7-list-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #222;
}
.wpcf7-acceptance input[type="checkbox"] {
    margin-right: 8px;
}

/* Lien RGPD */
.wpcf7-acceptance a {
    color: #333;
    text-decoration: underline;
}

/* Bouton */
.wpcf7 input[type="submit"] {
    display: block;
    margin: 20px auto 0;
    padding: 12px 32px;
    border: none;
    border-radius: 20px;
    background-color: #ffffff;
    color: #222;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.wpcf7 input[type="submit"]:hover {
    background-color: #eee;
}

/* Uniformise les marges */
.wpcf7-form-control {
    margin: 0;
}


/* BURGER */
.hamburger {
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: none;
    font: inherit;
    margin: 0;
    overflow: visible;
    padding: 15px 15px;
    text-transform: none;
    transition-duration: 0.15s;
    transition-property: opacity, filter;
    transition-timing-function: linear;
    z-index: 3;
}
.hamburger:hover {
    opacity: 0.7;
}
.hamburger.is-active:hover {
    opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: white;
}
.hamburger-box {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 40px;
}
.hamburger-inner {
    display: block;
    margin-top: -2px;
    top: 50%;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    background-color: white;
    border-radius: 4px;
    height: 4px;
    position: absolute;
    transition-duration: 0.15s;
    transition-property: transform;
    transition-timing-function: ease;
    width: 40px;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -10px;
}
.hamburger-inner::after {
    bottom: -10px;
}
.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
    background-color: transparent !important;
    transition-delay: 0.22s;
}
.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(0, 10px, 0) rotate(45deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transform: translate3d(0, 10px, 0) rotate(-45deg);
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
body .hamburger.navbar-toggler {
    align-items: center;
    border: none;
    display: flex;
    z-index: 1000;
}
body .hamburger.navbar-toggler p {
    font-family: 'onest', sans-serif;
}
/* HEADER */
body #header {
    padding: 0;
}
body .navbar {
    background: rgba(103, 47, 67, 0.30);
}
body .navbar > div > div {
    padding: 32px;
}
#navbar {
    display: none;
}
body.menu-open{
    overflow: hidden;
}
body.menu-open #navbar {
    align-items: flex-start;
    background: var(--violet);
    bottom: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100vw;
    z-index: 124;
    padding-top: 100px;
    overflow-y: scroll;
}
body.menu-open .menu-home{
    display:none;
}
.navContainer{
display: flex;
    height: 100%;
}
.navbar-nav.gold{

}
.navbar-nav{

}
.navbar-nav{
    display: flex
;
    flex-direction: column!important;
    position: relative;
}
.navbar-nav li{

}
.navbar-nav li a{
    align-items: center;
    display: flex;
    text-transform: uppercase;
    margin-bottom: 30px;
    width: fit-content;
    font-size: 18px;
}
.navbar-nav li a:hover,body .navbar-nav .nav-link.active,body .navbar-nav .nav-link.show{
   color:#CBBBA0;
}
body .navbar-nav.gold li a{
   color:#CBBBA0;
}
.navbar-nav.gold li a:hover,body .navbar-nav.gold .nav-link.active,body .navbar-nav.gold .nav-link.show{
   color:#fff;
}
.navbar-nav li a:before{
    background-image: url(./assets/img/arrow-menu.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-flex;
    height: 20px;
    margin-right: 10px;
    width: 20px;
}.navbar-nav.gold li a:before{
    background-image: url(./assets/img/Arrow-gold.svg);

}
.navbar-nav li a:hover:before,body .navbar-nav .nav-link.active:before,body .navbar-nav .nav-link.show:before{
    background-image: url(./assets/img/Arrow-gold.svg);

}
.navbar-nav.gold li a:hover:before,body .navbar-nav.gold .nav-link.active:before,body .navbar-nav.gold .nav-link.show:before{
    background-image: url(./assets/img/arrow-menu.svg);

}
.navContainer img{
max-width: 100%;
    margin-bottom: 30px;
}
.leftnav{
width: 50%;
}
.rightnav{
    width: 50%;
    display: flex
;
    align-items: center;
}
body .navbar-nav {
    flex-direction: column;
}
body .navbar * {
    color: white;
}
.header-right {
    align-items: center;
    display: flex;
}
.header-right .header-texte {
    margin-right: 30px;
}
#bandeau-header {
    padding-bottom: 100px;
    padding-top: 300px;
}
body.home #bandeau-header h4 {
    font-size: 20px;
}
body #bandeau-header h1 {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
body #bandeau-header p {
    font-size: 23px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
}
#bandeau-header * {
    color: white;
    text-transform: uppercase;
}
body #main {
    margin-top: 0;
}
body #wrapper {
    position: relative;
}
body header {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
body #bandeau-header::after {
    background: url(assets/img/bandeau-aurik.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 100%;
    height: -webkit-fill-available;
    left: 0;
    position: absolute;
    top: 0;
    width: 1000px;
}
body.home #bandeau-header::after {
    background: url(assets/img/bandeau-home-aurik.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    /*height: 1000px;*/
    height: -webkit-fill-available;
    left: 0;
    position: absolute;
    top: 0;
    width: 1000px;
}
body .header-right {
    position: relative;
}
body .header-right::after {
    background: var(--violet);
    content: "";
    height: 96px;
    position: absolute;
    right: 0;
    transform: skewX(-30deg);
    width: 100%;
    z-index: -1;
}
body .menu-home {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
body .menu-home a {
    align-items: center;
    display: flex;
    margin-bottom: 30px;
    width: fit-content;
}
body .menu-home > a:last-child {
    margin-bottom: 0;
}
body .menu-home a::before {
    background-image: url(assets/img/arrow-menu.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-flex;
    height: 20px;
    margin-right: 10px;
    width: 20px;
}
body .header-right a {
    position: relative;
}
body .bandeau-home-hero {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 15%;
}
body.menu-home .texte-home {
    z-index: 123;
}
body.home #bandeau-header {
    padding-bottom: 50px;
    padding-top: 400px;
}
body.home #bandeau-header h1, body.home #bandeau-header h4 {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
body.home #bandeau-header h4::after {
    display: none;
}
body .header-right .header-texte::after {
    background: url(assets/img/rectangle.png);
    content: "";
    height: 96px;
    overflow: visible;
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    z-index: 123124;
}
/* FOOTER */
body #footer {
    background: var(--violet);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
body #footer .container {
    background: url('assets/img/logo-aurik-footer.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
body #footer .menu.nav {
    flex-direction: column;
    text-align: end;
}
#footer .pictos {
    align-items: end;
    display: flex;
    margin-bottom: 2%;
}
#footer .pictos a {
    font-size: 16px;
    margin-bottom: 20px;
    margin-right: 15px;
}
#footer .pictos a path {
    transition: 0.2s ease-in-out;
}
#footer .pictos a:hover path {
    fill: #d6cbcf;
    transition: 0.2s ease-in-out;
}
#footer * {
    color: white;
}
body #footer .menu-item a[aria-current=page] {
    color: white;
}
#footer a:hover {
    color: #c5b3b7;
}
#footer .menu-footer {
    padding-bottom: 50px;
    padding-top: 50px;
}
/* PAGES INTERNES */
body .fond-noir li {
    color: #e9e2d8;
}
body .bg-logo-blanc {
    background-position: left center !important;
}
.expertise-item {
    align-items: center;
    color: white;
    display: flex;
    flex-direction: column;
    height: 90vh;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: calc(33%);
}
.expertise-item::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: transform 0.3s ease-in-out;
    width: 100%;
    z-index: -1;
}
.expertise-item:hover::before {
    transform: scale(1.05);
}
/* Appliquer l'image de fond dynamiquement via l'attribut data-bg */
.expertise-item[data-bg]::before {
    background-image: var(--bg-image);
}
body .all-expertises h3 {
    color: white;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
}
body .all-expertises {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: 99vw;
}
body #main .wpb_video_wrapper {
    padding-top: 0;
    position: relative;
}
body #main .wpb_video_wrapper::before {
    background-image: url(assets/img/triangle-vert.svg);
    background-position: right bottom;
    background-repeat: no-repeat;
    bottom: 0;
    content: none;
    display: block;
    height: 200px;
    position: absolute;
    width: 100vw;
    z-index: 100;
}
body.home #bandeau-header a:hover {
    color: #e8bdcd;
}
.breadcrumbs * {
    color: #9B9B9B;
}
.breadcrumbs a:hover {
    color: #343434;
}
body .texte-home {
    max-width: 550px;
}
/* CARDS  DEMANDER UN CONSTAT*/
.conteneur-cartes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.carte {
    align-items: center;
    aspect-ratio: 1;
    cursor: default;
/ display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: calc(33.333% - 10px);
}
.carte.clicable {
    cursor: pointer;
}
.carte-background {
    background-position: center;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: transform 0.3s ease-in-out;
    width: 100%;
    z-index: -1;
}
.couche-couleur {
    align-items: center;
    color: white;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    height: 100%;
    justify-content: center;
    left: 0;
    padding: 20px;
    pointer-events: auto;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
body .vc_row {
    margin-left: calc(var(--bs-gutter-x) * -.5);
    margin-right: calc(var(--bs-gutter-x) * -.5);
}
.carte.clicable:hover .carte-background {
    transform: scale(1.05);
}
.carte.clicable {
    cursor: pointer;
}
.couche-couleur {
    align-items: center;
    color: white;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    height: 100%;
    justify-content: center;
    padding: 20px;
    position: absolute;
    transition: background-color 0.3s ease;
    width: 100%;
}
.icone-carte {
    height: 50px;
    margin-bottom: 10px;
    width: auto;
}
.titre-carte {
    font-family: 'onest', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
}
/* Pop-up */
.conteneur-cartes .popup {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    display: none; /* Caché par défaut */
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}
.conteneur-cartes .popup-contenu {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    padding: 40px;
    position: relative;
    text-align: center;
    width: 80%;
}
.conteneur-cartes .fermer-popup {
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
}
.conteneur-cartes .bouton-popup {
    display: inline-block;
    margin-top: 25px;
}
.conteneur-cartes .bouton-popup:hover {
    background-color: #365f58;
}
/* ANIMATION CARDS LE DRONE */
/* Conteneur principal */
.animated-cards {
    display: flex;
    height: 400px;
    overflow: hidden;
    width: 100%;
}
/* Cartes */
/* Conteneur principal */
.animated-sections {
    display: flex;
    height: 400px;
    overflow: hidden;
    width: 100%;
}
/* Sections */
.section-item {
    align-items: center;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    position: relative;
    text-align: center;
    transition: flex 0.5s ease-in-out;
}
/* Icône */
.section-item img {
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.5s ease-in-out;
    width: 50px;
}
/* Titre */
.section-item h3 {
    font-family: 'onest';
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
    text-transform: uppercase;
    transition: transform 0.5sease-in-out;
}
/* Texte caché par défaut */
.section-item .text {
    display: none;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
/* Effet quand la section est active */
.section-item.active {
    flex: 4;
}
/* Lorsque la section est active, le texte apparaît et le titre + icône remontent */
.section-item.active .text {
    border-left: 5px solid white;
    display: block;
    opacity: 1;
    padding-left: 20px;
    text-align: left;
}
.section-item.active h3, .section-item.active img {
    transform: translateY(-20px);
}
/* Bouton flèche */
.next-section-btn {
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    height: 30px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: background 0.3s ease-in-out, opacity 0.3s ease-in-out;
    width: 30px;
}
.next-section-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}
/* La flèche n'apparaît que si la section est active */
.section-item.active .next-section-btn {
    opacity: 1;
}
/* Assure que les sections sont bien collées entre elles */
.section-item:not(:first-child) {
    border-left: none;
}
/* Supprime les arrondis */
.section-item {
    border-radius: 0;
}
.texte-blanc * {
    color: white;
}
.texte-blanc h3 {
    font-family: 'source-reg';
    font-weight: 400;
}
.texte-blanc h3 strong {
    font-weight: 700;
}
@media (min-width: 1600px) {
    #bandeau-header {
        padding-bottom: 300px;
        padding-top: 480px;
    }
    body.home #bandeau-header {
        height: 800px;
        padding-bottom: 50px;
        padding-top: 480px;
    }

    body.home #bandeau-header::after {
        background: url(assets/img/after-aurik.png);
        background-position: left;
        background-repeat: no-repeat;
        background-size: contain;
        bottom: 0;
        content: "";
        height: 100%;
        height: -webkit-fill-available;
        left: 0;
        position: absolute;
        top: 0;
        width: 1000px;
    }
    body .bandeau-home-hero {
        padding-left: 15%;
    }
    body .texte-home {
        max-width: 550px;
    }
}
@media (max-width: 1200px) {
    body #bandeau-header::after,
    body.home #bandeau-header::after {
        background: url(/wp-content/uploads/2025/04/logo-or@2x.png);
        background-position: center 130px;
        background-repeat: no-repeat;
        background-size: 200px;
        bottom: 0;
        content: "";
        /* height: 1000px; */
        height: -webkit-fill-available;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }
    body .menu-home{
        display: none;
    }
    .texte-home{
        margin: auto;
    }
    body .bandeau-home-hero {
        align-items: flex-end;
        display: flex
    ;
        justify-content: space-between;
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media (max-width: 991px) {
    body .expertise-item {
        width: 100%;
    }
    #header > .container {
        flex-wrap: nowrap !important;
        width: 100% !important;
        margin: 0;           padding: 0;     max-width: 100%;
    }
    #header.navbar {
        flex-wrap: nowrap !important;
        width: 100% !important;
        margin: 0;        max-width: 100%;
    }
    .header-right{
        padding: 0 35px;
    }
    #header{
        background: var(--violet);
    }
    .navbar-toggler{
        background-color: #622138!important;
    }
    body .header-right::after {
         background: var(--violet);
         content: "";
         height: 100%;
         position: absolute;
         right: 0;
         transform: none;
         width: 100%;
         z-index: -1;
     }
}
@media (max-width: 768px) {
    .wpb_column{
        min-height: 0px!important;
    }
    body.home h1 {
        font-size: 2rem;
    }
    .navbar-toggler p{
        display: none;
    }
    body.home #bandeau-header h4 {
        font-size: 1rem;
    }
    body #footer .container {
        background: none;
    }
    body #footer .menu.nav {
        text-align: start;
    }
    #footer .menu-footer {
        padding-bottom: 20px;
        padding-top: 20px;
    }
    #footer .pictos {
        padding-left: 25px;
        padding-top: 25px;
    }
    .picto-check .wpb_single_image.vc_align_right {
        margin-bottom: 5px;
        text-align: left;
    }
    .animated-sections {
        flex-direction: column;
    }
    .animated-sections {
        height: 700px;
    }
    .carte {
        width: calc(50%);
    }
}
@media (max-width: 576px) {
    .navContainer {

        flex-wrap: wrap;
    }
    .leftnav {
        width: 100%;
    }.rightnav {
         width: 100%;
         display: flex
     ;
         align-items: center;
     }
    .navbar-nav li a {

        margin-bottom: 15px;
        padding: 0;

    }
}
@media (max-width: 564px) {
    .carte {
        width: 100%;
    }
}