:root {
    --white: white;
    --black: #000;
    --light-black: #f5f5f5;
    /* --yellow: #f1d11a; */
    --grey: #444444;
    --fs-2xl: 4em;
    --fs-xl: 3em;
    --fs-l: 2.5em;
    --fs-m: 2em;
    --fs-s: 1.75em;
    --fs-xs: 1.5em;
    --color-white: hsl(0, 0%, 100%);
    --color-contrast-higher: hsl(240, 100%, 99%);
    --orange: #fd6b0d;
    --menu: #fff;
    --violet: #211651;
    --pink: #8f0d57;
    --orange-menu: #ffdbc4;
    --violet-menu: #e0d9ff;
    --pink-menu: #ffc8e7;
}

[data-theme="dark"] {
    --white: #292929;
    --black: white;
    --light-black: #191817;
    --grey: #d6d6d6;
    --menu: #222;
    --orange-menu: #fd6b0d;
    --violet-menu: #211651;
    --pink-menu: #8f0d57;
}

body {
    background-color: var(--white);
}

.text {
    color: var(--black);
    opacity: 0.8;
}

.newBtn {
    color: var(--black);
    border-color: var(--black);
}

.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: transform .5s cubic-bezier(.3, .86, .36, .95);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 200;
}

.menu-right {
    display: flex;
    /* justify-content: space-between; */
    column-gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 200;
    width: fit-content;
}

.header-wrap {
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    width: 100%;
    position: relative;
    z-index: 105;
    max-width: 100%;
}

.logo {
    display: block;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

@media screen and (max-width: 1024px) {
    /* .logo {
        top: 47px;
        right: 120px;
    } */
}

@media screen and (max-width: 600px) {
    /* .logo {
        top: 42px;
        right: 70px;
    } */
}

.logo img {
    width: auto;
    height: 20px;
    object-fit: contain;
}

@media screen and (min-width: 1024px) {
    .logo img {
        height: 30px;
    }
}

@media screen and (max-width: 1024px) {
    /* .logo img {
        height: 18px;
    } */
}

.logo span {
    font-weight: 300;
    font-size: 1.5vw;
    margin-left: 0.5vw;
    line-height: 1;
    margin-top: -0.08vw;
    opacity: .7;
    letter-spacing: -0.05vw;
    display: none;
}

.nav-menu {
    z-index: 9999;
    opacity: 1;
    height: 30px;
    width: 30px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    mix-blend-mode: difference;
}

@media screen and (max-width: 1024px) {
    /* .nav-menu {
        top: 30px;
        margin-top: 0px;
    } */
}

.nav-menu span.text {
    opacity: 0;
    display: block;
    width: 30px;
    height: 0;
}


.nav-menu span.line {
    width: 30px;
    height: 1px;
    background: var(--black);
    display: block;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-menu.active span.line {
    /* background: #fff; */
}

.nav-menu span.line {
    top: 50%;
}

.nav-menu span.line:nth-child(1) {
    transform: translateY(-10px);
}

.nav-menu span.line:nth-child(2) {
    /* top: 0.75vw; */
}

@media screen and (max-width: 1024px) {
    .nav-menu span.line {
        width: 30px;
    }

    .nav-menu span.line:nth-child(1) {
        /* top: 22px; */
    }

    .nav-menu span.line:nth-child(2) {
        /* top: 28px; */
    }
}

@media screen and (max-width: 1024px) {
    .nav-menu:hover span.line {
        width: 30px;
    }

    .nav-menu:hover span.line:nth-child(2) {
        -webkit-transform: translateY(0) translateX(0);
        -moz-transform: translateY(0) translateX(0);
        -ms-transform: translateY(0) translateX(0);
        -o-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
        width: 30px;
    }
}

span.line {
    overflow: hidden;
}

span.line {
    display: block;
}

.menu-cover {
    position: fixed;
    z-index: 101;
    width: 100%;
    height: 100%;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.menu-cover {
    opacity: 0;
    background: #000;
    z-index: 7;
    pointer-events: none;
}

.menu__bg {
    position: fixed;
    z-index: 101;
    width: 100%;
    height: 100%;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.menu__bg {
    background-color: var(--menu);
    opacity: 0;
    pointer-events: none;
}

.menu__bg svg {
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: .6;
}

.menu {
    position: fixed;
    z-index: 101;
    width: 100%;
    height: 100%;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.menu {
    pointer-events: none;
    white-space: normal;
    opacity: 0;
}

.menu .menu_content {
    position: relative;
    height: 100vh;
}

@media screen and (max-width: 600px) {
    .menu .menu_content {
        padding-top: 200px;
    }
}

.menu.active {
    pointer-events: auto;
}

.menu ol {
    line-height: 1.2;
    padding: 0 0 0 10%;
    margin-top: 0;
    top: 50vh;
    position: relative;
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
    transform: translateY(-70%);
    list-style-type: none;
    counter-reset: compteListe;
    width: 95%;
    font-size: 6vw;
    font-weight: 600;
    letter-spacing: -0.1vw;
    font-family: "Raleway";
}

.elementor-kit-34 .menu ol a {
    font-family: "Raleway";
}

@media screen and (max-width: 600px) {
    .menu ol {
        padding: 0 0 0 15%;
        font: 400 normal 40px "Graphik";
        width: 90%;
        top: calc(45vh - 10px);
    }
}

.menu ol li {
    position: relative;
    display: inline-block;
    padding-right: 3.5vw;
}

@media screen and (max-width: 600px) {
    .menu ol li {
        display: block;
    }
}

.menu ol li::before {
    display: none;
    counter-increment: compteListe 1;
    color: rgba(255, 255, 255, 0.2);
    content: "0" counter(compteListe);
    position: absolute;
    font: 400 normal 12px/12px "Graphik";
    top: 40%;
    right: calc(100% + 68px);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}

@media screen and (max-width: 600px) {
    .menu ol li::before {
        display: none;
    }
}

.menu ol li.mobile_link {
    display: none;
}

.menu ol li a {
    padding: 0.5% 0;
    color: var(--black);
    display: block;
    position: relative;
    transition: opacity 0.3s ease, color 0.3s ease;
    /* opacity: .8; */
    opacity: 1;
}

.menu ol li sup {
    font-size: 25%;
    font-weight: 400;
    opacity: .5;
    position: relative;
    top: -2.5vw;
    left: -0.5vw;
}

@media screen and (max-width: 600px) {
    .menu ol li sup {
        font-size: 30%;
        top: -10px;
        left: -10px;
    }
}

@media screen and (max-width: 600px) {
    .menu ol li.mobile_link {
        display: block;
        font-size: 20px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .menu ol li.mobile_link sup {
        opacity: .7;
        font-size: 60%;
        top: -5px;
        position: relative;
        left: 0;
    }

    .menu ol li.mobile_link.first {
        margin-top: 60px;
    }
}

.menu ol:hover li a {
    opacity: .7;
}

.menu ol:hover li a:hover {
    opacity: 1;
    color: var(--orange);
}

.menu .address {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 0 5vw 10%;
    font-size: 1.1vw;
    display: flex;
}

@media screen and (max-width: 768px) {
    .menu .address {
        display: none;
    }
}

.menu .address__col {
    /* width: 20%; */
    padding-right: 2vw;
}

.menu .address__col_col {
    display: flex;
    width: 30%;
}

.menu .address__col_col div {
    padding-right: 2vw;
    width: 50%;
}

.menu .address__col a {
    /* color: rgba(255, 255, 255, 0.4); */
    color: var(--black);
    opacity: 1;
    transition: color 0.3s ease, opacity .3s linear;
    display: block;
}

.menu .address__col a.social {
    display: inline-block;
    padding-right: 1vw;
}

.menu .address__col p {
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    transition: color 0.3s ease;
    font-size: 90%;
}

.menu .address__col p small {
    color: var(--black);
    line-height: 1.4;
    display: block;
    padding-right: 2vw;
    opacity: .8;
    padding-top: 1vw;
}

.menu .address__col a:hover {
    color: var(--orange);
}

.menu__hover {
    position: relative;
    counter-reset: menucounter;
}

.menu__hover .menu__item,
.menu__hover .menu__item-text,
.menu__hover .menu__item-textinner {
    position: relative;
}

.menu__hover .hover-reveal {
    position: absolute;
    z-index: -1;
    width: 300px;
    height: 400px;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    will-change: transform, filter;
}

.menu__hover .hover-reveal__inner {
    overflow: hidden;
}

.menu__hover .hover-reveal__inner,
.menu__hover .hover-reveal__img {
    width: 100%;
    height: 100%;
    position: relative;
}

.menu__hover .hover-reveal__img {
    background-size: cover;
    background-position: 50% 50%;
}


.nav-menu.active span.line:nth-child(1) {
    background: var(--orange);
    /* transform: rotate(45deg) translate(-11px, -6px); */
    transform: rotate(45deg) translate(-6px, -12px);
}

.nav-menu.active span.line:nth-child(2) {
    background: var(--orange);
    /* transform: rotate(-45deg) translate(-9px, 3px); */
    transform: rotate(-45deg) translate(-3px, 8px);
}

.nav-menu:hover span.line:nth-child(1) {
    background: var(--orange);
}

.nav-menu:hover span.line:nth-child(2) {
    background: var(--orange);
}

/* Darkmode switcher */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 101;
}

.theme-switch {
    display: inline-block;
    height: 26px;
    position: relative;
    width: 42px;
}

.theme-switch input {
    visibility: hidden;
}

.switch-slider {
    background-color: #999;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.switch-slider:before {
    background-color: white;
    bottom: 2.8px;
    content: '\f186';
    height: 20px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 20px;
    color: #999;
    font-size: 12px;
    padding: 2px 2px 5px 4px;
    font-family: 'Font Awesome 5 Free';
}

input:checked+.switch-slider {
    background-color: var(--orange);
}

input:checked+.switch-slider:before {
    transform: translateX(15px);
    content: '\f185';
    color: var(--orange);
}

.switch-slider.round {
    border-radius: 34px;
}

.switch-slider.round:before {
    border-radius: 50%;
}