*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html *,
body *{
    margin: 0;
    padding: 0;
    font-family: "Host Grotesk", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: #000000;
    scroll-behavior: smooth;
    transition: all ease .3s;
}
.center{
    text-align: center;
}

/* commun */
.title{
    margin-bottom: 0.12em;
}
.title a{
    color: white;
    font-weight: inherit;
    text-decoration: underline;
}
.title h1{
    font-size: clamp(30px, 13vw, 100px);
    font-weight: 800;
    margin: 12px 0;
    line-height: 1em;
}
.title h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 12px 0;
    line-height: 1em;
}
.title h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 12px 0;
    line-height: 1em;
}
p{
    color: #00000050;
    font-size: 18px;
}
p strong{
    font-weight: 500;
}
p:not(:last-child){
    margin: 0 0 12px 0;
}
p.subtitle {
    font-size: 20px;
}
p.subtitle.center{
    text-align: center;
}
a{
    text-decoration: none;
}
.btn{
    font-size: 16px;
    background-color: #f7f7fa;
    display: inline-flex;
    border: solid 1px #000;
    width: auto;
    margin: 0;
    text-align: center;
    padding: 10px 20px;
    margin: 12px 0;
}
.btn:hover{
    cursor: pointer;
    background-color: #000;
    color: #f7f7fa;
}
.btn-arrow svg {
    width: 14px;
    height: auto;
    margin-left: 10px;
}
.btn-icone svg{
    width: 24px;
    height: 24px;
    margin-left: 10px;
}
.btn-arrow:hover svg polygon,
.btn-arrow:hover svg path,
.btn-icone:hover svg polygon,
.btn-icone:hover svg path{
    fill: #f7f7fa;
}
.container{
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 24px;
}
.container-fluid{
    width: 100%;
    display: flex;
    place-items: center;
}
/* hero */
.hero{
    width: 100%;
    height: 100vh;
    background-color: #f7f7fa;
    margin: auto;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
.hero picture img{
    max-width: 1600px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    right: 0;
}
/* .hero picture img.dark-mode{
    filter: invert(1);
} */
/* main */
main{
    background-color: #f7f7fa;
    position: relative;
    z-index: 10;
}

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 100;
    mix-blend-mode: difference;
}

header .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

header .top_header {
    background-color: transparent;
    padding: 10px 12px;
}
header .top_header .logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
}
header .top_header .logo img{
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
}
header .top_header a {
    color: #f7f7fa;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 6px 0;
}

header .top_header a::after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2509803922);
    transition: all ease 0.3s;
    position: relative;
    bottom: -4px;
}

header .top_header a:hover::after {
    background-color: #f7f7fa;
    width: 100%;
    transition: all ease 0.3s;
}
.fixed_elm {
    position: fixed;
    z-index: 100;
    top: 50%;
    width: auto;
    display: block;
    letter-spacing: 2px;
    mix-blend-mode: difference;
    font-size: 12px;
}

.fixed_elm.left {
    left: 24px;
    writing-mode: vertical-lr;
    transform: scale(-1) translateY(50%);
    color: #f7f7fa;
    transition: all ease 0.3s;
}

.fixed_elm.left::before {
    content: "";
    display: block;
    width: 3000px;
    height: 1px;
    background-color: #f7f7fa;
    transform: rotate(90deg);
    position: absolute;
    left: 10px;
    top: 0;
}

.fixed_elm.right {
    right: 24px;
    writing-mode: vertical-rl;
    color: #f7f7fa;
    transform: translateY(-50%);
    transition: all ease 0.3s;
}

.css-mode{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    border: solid 1px #666666;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    border-radius: 20px;
    background-color: #0f0f0f;
}
.css-mode svg{
    max-width: 20px;
    height: auto;
}
.css-mode svg path{
    fill: white;
}
.css-mode.active{
    background-color: white;
    border: solid 1px #eee;
}
.css-mode.active svg path{
    fill: black;
}
/* intro */
.smek_intro::before{
    content: "";
    display: block;
    width: 100%;
    height: 400px;
    background: #f7f7fa00;
    background: -webkit-linear-gradient(to bottom, #f7f7fa00, #f7f7fa);
    background: linear-gradient(to bottom, #f7f7fa00, #f7f7fa);
    position: absolute;
    top: -400px;
    left: 0;
}
.smek_intro{
    margin-top: 100vh;
    height: 50vh;
    min-height: 800px;
    padding: 0 20px;
    background-color: #f7f7fa;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.smek_intro .title {
    padding: 0 20px;
    margin-bottom: 30px;
}
.smek_intro .btn{
    margin: 20px 0 30px 0;
}
.smek_intro p{
    max-width: 700px;
    text-wrap: balance;
}

/* columns */
.smek_columns{
    background-color: #f7f7fa;
    margin: 40px auto;
    padding: 0 20px;
}
.smek_columns .title{
    padding: 0;
}
.smek_columns .flex{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.smek_columns .flex > div{
    max-width: 600px;
}
.smek_columns .flex img{
    max-width: 500px;
    width: 100%;
    height: 700px;
    object-fit: cover;
    vertical-align: middle;
}
.smek_columns .flex .content{
    padding: 20px;
    width: 100%;
}

/* marquee */
@keyframes marqueeOne {
0% {
transform: translate3d(var(--move-initial), 0, 0);
}
100% {
transform: translate3d(var(--move-final), 0, 0);
}
}
@keyframes marqueeTwo {
0% {
transform: translate3d(var(--move-final), 0, 0);
}
100% {
transform: translate3d(var(--move-initial), 0, 0);
}
}
body .marquee {
background-color: #000;
position: relative;
overflow: hidden;
--offset: 20vw;
--move-initial: calc(-25% + var(--offset));
--move-final: calc(-50% + var(--offset));
}
body .marquee__inner {
width: fit-content;
display: flex;
position: relative;
white-space: nowrap;
}
body .marquee__inner span {
font-size: 10vw;
padding: 0 2vw;
text-transform: uppercase;
color: #f7f7fa;
font-weight: 800;
}
body .marquee .first {
transform: translate3d(var(--move-initial), 0, 0);
animation: marqueeOne 10s linear infinite;
}
@media (min-width: 1024px) {
}
body .marquee .second {
transform: translate3d(var(--final-initial), 0, 0);
animation: marqueeTwo 10s linear infinite;
}



.smek_projets{
    background-color: #ffffff;
    margin: 40px 0 0 0;
    overflow: hidden;
    padding: 80px 0;
}
.smek_projets .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.smek_projets .slick-slider{
    left: 10%;
}
.smek_projets .slick-track {
    margin-left: 0;
}
.smek_projets .slick-list{
    margin: 40px 0;
    overflow: visible;
}
.smek_projets .slick-slide{
    padding: 20px;
    margin: 0 10px;
    margin: 0 10px;
}
.smek_projets .slick-slide img{
    width: 100%;
    height: 350px;
    display: block;
    margin-bottom: 0;
    vertical-align: middle;
    object-fit: cover;
    pointer-events: none;
}
.smek_projets .slick-slide img:last-child{
    margin-bottom: 20px;
}
/* .smek_projets p{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} */
.slider-controls{
    position: relative;
    z-index: 10;
}
.slider-controls button{
    border: none;
    background: none;
    width: 50px;
    height: 50px;
    padding: 10px;
}
.slider-controls button svg{
    opacity: 1;
    transition: all ease .3s;
}
.slider-controls button:hover svg{
    cursor: pointer;
    opacity: 0.3;
    transition: all ease .3s;
}


/* footer */
footer {
    background-color: #090909;
    padding: 48px;
    position: relative;
    z-index: 20;
}
footer .flex{
    display: flex;
    justify-content: space-between;
}
footer .col {
    max-width: 32%;
    padding: 12px;
    margin: auto 0;
}

footer .col p,
footer .col li {
    color: #f7f7fa;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.7em;
    font-weight: 100;
}

footer .col a {
    font-size: inherit;
    color: #f7f7fa;
    display: inline-block;
    font-weight: 100;
    letter-spacing: 2px;
    font-size: 12px;
}

footer .col a::after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all ease 0.3s;
    position: relative;
    bottom: -2px;
}

footer .col a:hover {
    color: #f7f7fa;
    cursor: pointer;
}

footer .col a:hover::after {
    background-color: #f7f7fa;
    width: 100%;
    transition: all ease 0.3s;
}

footer .col ul li span {
    color: rgba(255, 255, 255, 0.4);
}

footer .col ul li:before {
    content: "•";
    margin-right: 6px;
    vertical-align: middle;
}




main{
    opacity: 1;
    transition: all ease .3s;
    position: relative;
    left: 0;
    filter: blur(0);
}
main.go-left{
    opacity: 0.4;
    position: relative;
    left: -600px;
    filter: blur(6px);
    transition: all ease .3s;
}
.more-toggle{
    position: fixed;
    overflow: scroll;
    right: -600px;
    background-color: #ffffff;
    transition: all ease .3s;
    top: 0;
    height: 100vh;
    z-index: 10;
    padding: 50px 60px 50px 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
}
.more-toggle .header-more{
    margin-bottom: 20px;
}
.more-toggle button{
    width: 30px;
    border: none;
    background: none;
    height: 30px;
    opacity: 1;
    transition: all ease .3s;
}
.more-toggle button:hover{
    cursor: pointer;
    opacity: 0.4;
    transition: all ease .3s;
}
.more-toggle.go-left {
    right: 0;
}
.more-toggle img{
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 10px;
}
.more-toggle .exp{
    margin-bottom: 20px;
    position: relative;
    background-color: #ffffff;
}
.liens{
    margin-top: 30px;
}
.liens .btn {
    display: flex;
    text-align: center;
    max-width: 240px;
    text-align: center;
    justify-content: center;
}
/* .more-toggle .exp::before{
    content: "";
    display: block;
    width: 1px;
    height: 110%;
    background-color: #000000;
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: -1;
} */
.more-toggle span{
    display: block;
    width: 100%;
    padding: 2px 20px;
}
.more-toggle span.date{
    text-transform: uppercase;
    color: #999;
    font-size: 12px;
    letter-spacing: 1px;
    font-size: 12px;
    letter-spacing: 1px;
}
.more-toggle span.nom{
    font-size: 20px;
    font-weight: bold;
    display: block;
}
.more-toggle span.lieu {
    text-transform: uppercase;
    color: #999;
    font-size: 12px;
    letter-spacing: 1px;
}
.more-toggle ul{
    margin-top: 10px;
    padding: 20px;
    background: #00000010;
    list-style: none;
}
.more-toggle ul li strong{
    font-weight: 800;
}

@media screen and (max-width: 1000px) {
    footer .col {
        max-width: unset;
        width: 100%;
        text-align: center;
    }
    .fixed-elm{
        display: none;
    }
    body .marquee{
        padding: 20px 0;
    }
    .smek_columns{
        margin: 40px auto;
        padding: 0;
    }
    .smek_columns .container{
        padding: 0;
    }
    .smek_columns .flex{
        flex-direction: column;
    }
    .smek_columns .flex .content{
        text-align: center;
    }
    footer .flex,
    .smek_projets .container{
        flex-direction: column;
    }
    .smek_projets{
        padding: 40px 0;
    }
    .smek_projets h2{
        text-align: center;
    }
    .smek_projets .slick-slider {
        left: 0;
    }
    .smek_projets .slick-slide {
        padding: 0 10px;
        border: none;
    }
    .more-toggle{
        padding: 50px;
    }
    .liens .btn{
        max-width: 100%;
    }
}

@media screen and (max-width:600px) {
    .more-toggle {
        padding: 80px 20px 50px 20px;
    }
}








/* invers color */
/* invers color */
/* invers color */
body.invers,
body.invers .title h1,
body.invers .title h2,
body.invers .title h3,
body.invers p strong,
body.invers .more-toggle span.nom,
body.invers .more-toggle ul li,
body.invers .more-toggle ul li strong,
body.invers header .top_header a,
body.invers .fixed_elm.right,
body.invers .fixed_elm.left{
    color: white !important;
}
body.invers p{
    color: #ffffff50;
}
body.invers .smek_projets .title h2,
body.invers .smek_projets .title h3{
    color: #0f0f0f;
}
body.invers .smek_projets p,
body.invers .more-toggle span.lieu,
body.invers .more-toggle span.date {
    color: #999999;
}
/* invers background color */
body.invers .more-toggle,
body.invers .smek_projets{
    background-color: #000000;
}
body.invers,
body.invers .hero,
body.invers .more-toggle .exp{
    background-color: #0f0f0f;
}
body.invers .smek_intro,
body.invers .smek_columns,
body.invers .fixed_elm.left::before,
body.invers main{
    background-color: #000000;
}
body.invers header .top_header a::after {
    background-color: rgba(0, 0, 0, 0.5);
}
body.invers .smek_intro::before {
    background: #00000000;
    background: -webkit-linear-gradient(to bottom, #00000000, #000000);
    background: linear-gradient(to bottom, #00000000, #000000);
}
body.invers .marquee{
    background-color: #090909;
}
body.invers header .top_header a:hover::after{
    background-color: #010101;
}
body.invers .more-toggle ul{
    background: #ffffff10;
}
body.invers .btn{
    background-color: transparent;
    color: white;
    border-color: white;
}
body.invers .btn:hover{
    background-color: #ffffff;
    border-color: #ffffff;
    color: #0f0f0f;
}
body.invers .slider-controls button svg polygon,
body.invers .more-toggle button svg polygon,
body.invers .btn-arrow svg polygon,
body.invers .btn-arrow svg path,
body.invers .btn-icone svg polygon,
body.invers .btn-icone svg path{
    fill: #ffffff;
}
body.invers .slider-controls button:hover svg polygon{
    opacity: 1;
}
body.invers .more-toggle button:hover svg polygon{
    fill: #ffffff50;
}
body.invers .btn-arrow:hover svg polygon,
body.invers .btn-arrow:hover svg path,
body.invers .btn-icone:hover svg polygon,
body.invers .btn-icone:hover svg path{
    fill: #0f0f0f;
}
.invers .hero::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00000040;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.invers .hero picture img{
    max-width: unset;
}
/* fin body active */