
/* -------------------------------------------------
	
	01 . IMPORT CSS + FONTS
	02 . BASE
	03 . SWIPER - NEWS
	04 . CTA
	05 . PAGE FOOTER
	06 . xxxxxx
	07 . xxxxxx
	08 . xxxxxx
    09 . HERO
    10 . CONTACT
	
------------------------------------------------- */





/* ////////////////////////////////////////////////////////////////////////////

    01 . IMPORT CSS + FONTS

//////////////////////////////////////////////////////////////////////////// */

@import url('libs/normalize.css');
@import url('libs/bootstrap.css');
@import url('libs/ionicons.css');
@import url('libs/swiper.css');
@import url('libs/kenburns.css');
@import url('libs/lightgallery.css');

@import url('interface.css');
@import url('blog.css');
@import url('works.css');
@import url('about.css');
@import url('services.css');


:root {
    
    --font-text: 'Epilogue', sans-serif;
    --font-title: "Syne", sans-serif;

    --color-bg: #FFF; /* rgba(255,255,255,1); */

    --color-dark: #0A0A0A;
    --color-light: #FFF;

    --color-grey-dark: #5A5A5E; /* rgba(90,90,94,1); */
    --color-grey: #7D7D82; /* rgba(125,125,130,1); */
    --color-grey-light: #B6B6B9; /* rgba(182,182,185,1); */
    --color-grey-xlight: #EAEAEB; /* rgba(234,234,235,1); */

    --color-red: #CE1126; /* rgba(206,17,38,1); */
    --color-yellow: #F3CA40; /* rgba(243,202,64,1); */

    /* --- INTERFACE --- */
    --site-width: 1500px;
    --site-width-inner: 1470px;
    --btn-radius: 0;

}





/* ////////////////////////////////////////////////////////////////////////////

    02 . BASE

//////////////////////////////////////////////////////////////////////////// */

html {
	background-color: var(--color-bg);
    width: 100%;
    height: 100%;
}
body {
    position: relative;
    background-color: var(--color-bg);
    color: var(--color-dark);
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    height: 100%;
    overflow-x: hidden!important;
    /* text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}
body.open {
    overflow: hidden!important;
    touch-action: none;
}

body::-webkit-scrollbar {
    display: none;
}
html {
    scrollbar-width: none;
}
  
  
  
/* LIENS */
a {
	color: var(--color-dark);
	text-decoration: none;
	-webkit-transition: all .25s;
	transition: all .25s;
}
.no-touch a:hover { color: var(--color-dark); outline:0; text-decoration:none; }

a[href^=tel]{
    color: inherit!important;
    text-decoration: inherit!important;
    font-size: inherit!important;
    font-style: inherit!important;
    font-weight: inherit!important;
}

/* TEXTE */
br { font-size: 0; line-height: 0; }
strong, b { font-weight: 600; }

/* IMAGE */
img { position: relative; max-width: 100%; user-select: none; }

/* LISTES */
ol, ul { margin: 0; padding: 0; list-style: none; }

/* PARAGRAPHES */
p { margin: 0 0 10px 0; padding: 0; }
p:last-child { margin: 0; }

/* TITRES */
h1, h2, h3, h4, h5, h6 {
    /* font-family: var(--font-title); */
	line-height: 1;
    font-weight: inherit;
    margin: 0;
}

/* PADDING */
.no-padding { padding:0; }





/* ////////////////////////////////////////////////////////////////////////////

	03 . SWIPER - NEWS

//////////////////////////////////////////////////////////////////////////// */

.news {
    position: relative;
}
.news:before {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
    background-image: url('../img/interface/pattern-1.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

/* ITEM */
.news .blog_item {
    margin: 0;
    width: 100%;
}


/* HEADER */
.swiper_header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}

.swiper_header-title h2 {
	font-family: var(--font-title);
    font-size: 44px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}

.swiper_header-cta {
    display: flex;
    align-items: center;
    /* position: relative;
    top: -4px; */
    height: 40px;
}
/* .swiper_header-cta a {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
} */

.swiper-thumb {
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .swiper_header-title h2 {
        font-size: 36px;
        line-height: 1;
        word-break: break-word;
        word-spacing: 1000px;
    }
    .swiper_header-title {
        flex: 1;
    }
    .swiper_header-cta {
        margin-left: 15px;
    }
}

/* SWIPER */
.news .swiper_wrap {
    position: relative;
    width: 100%;
    height: auto;
}
.swiper_news {
    position: relative;
}
.swiper_news .swiper-slide {
    position: relative;
    display: flex;
    height: auto;
    transition: opacity .25s;
}
/* .swiper_news .swiper-slide .blog_item {
    width: 100%;
} */
.swiper_news .swiper-slide .blog_item-inner {
    padding: 10px 0 0 0;
}
.swiper_news .swiper-slide .blog_item-inner h2 {
    font-size: 21px;
    line-height: 1.4;
}
.swiper_news .swiper-slide .blog_item-date {
    font-size: 11px;;
    padding: 6px 6px 5px 6px;
} 

@media only screen and (max-width: 992px) {
    /* .swiper_news {
        mask-image: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 85%, rgba(255,255,255,0) 100%);
    } */
    /* .swiper_news .swiper-slide .blog_item-title div {
        font-size: 18px;
    } */
}

/* SWIPER -- navigation */
.swiper_header-nav {
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
}
.swiper_header-nav .swiper-button-next,
.swiper_header-nav .swiper-button-prev {
    top: 0;
    top: auto;
    left: auto;
    right: auto;
    position: relative !important;
    height: inherit !important;
    margin: 0;
    padding: 0;
    width: 20px;
}
.swiper_header-nav .swiper-button-prev {
    margin: 0 20px 0 0;
}
.swiper_header-nav .swiper-button-prev::after,
.swiper_header-nav .swiper-button-next::after {
    content: "";
    box-sizing: border-box;
    font-family: "Ionicons";
    font-size: 50px;
    color: var(--color-dark);
    opacity: 1;
    width: auto;
    height: inherit !important;
}
.swiper_header-nav .swiper-button-prev::after {
    content: '\f3d5';
}
.swiper_header-nav .swiper-button-next::after {
    content: '\f3d6';
}
.swiper_header-nav .swiper-button-next.swiper-button-disabled,
.swiper_header-nav .swiper-button-prev.swiper-button-disabled {
    opacity: .25;
}

@media only screen and (max-width: 992px) {
    .swiper_header-nav .swiper-button-next,
    .swiper_header-nav .swiper-button-prev {
        display: none;
    }
}

/* SWIPER -- pagination */
.swiper_news .swiper-pagination {
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: flex-end;
}
.swiper_news .swiper-pagination.swiper-pagination {
    position: relative;
    margin-top: 25px;
    bottom: 0;
}
.swiper_news .swiper-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    display: block;
    border-radius: 0;
    background: var(--color-grey);
    border: none;
    opacity: .5;
    transition: all 0.3s;
}
.swiper_news .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-dark);
}
.swiper_news .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}
.swiper_news .swiper-pagination.swiper-pagination-hidden {
    opacity: 0!important;
    height: 0!important;
    display: none!important;
    margin: 0!important;
}

@media only screen and (max-width: 992px) {
    .swiper_news .swiper-pagination {
        display: flex;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

	04 . CTA

//////////////////////////////////////////////////////////////////////////// */

.cta {
    background-color: var(--color-red);
    padding: 0 15px;
}
/* .cta .col-md-12, .cta .col-lg-12,
.cta .col-md-11, .cta .col-lg-11,
.cta .col-md-10, .cta .col-lg-10,
.cta .col-md-9, .cta .col-lg-9,
.cta .col-md-8, .cta .col-lg-8 { padding: 0; } */

.cta_wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-red);
    color: var(--color-light);
    padding: 40px 0;
}
.cta_content {
    flex: 1;
    margin: 0 35px 0 0;
    font-size: 20px;
    line-height: 1.5;
}
.cta_content h2 {
    font-family: var(--font-title);
    font-size: 36px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.cta_btn {
    
}

@media only screen and (max-width: 992px) {
    .cta {
        padding: 0;
    }
    .cta_wrap {
        flex-direction: column;
        padding: 30px 15px;
    }
    .cta_content {
        flex: 1;
        margin: 0 0 15px 0;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }
    .cta_content h2 {
        font-size: 26px;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

    05 . PAGE FOOTER

/////////////////////////////////////////////////////////////////////////// */

.page {
    position: relative;
}

/* CONTENT */
.page a {
    text-decoration: underline;
}
.no-touch .page a:hover {
    text-decoration: none;
}
.page h2 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 10px;
    font-weight: 500;
}
.page h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 500;
}
.page p {
    margin-bottom: 10px;
    color: var(--color-grey-dark);
}
.page p:last-child {
    margin-bottom: 0;
}
.page p + h2 {
    margin: 40px 0 10px 0;
}
.page p + h3 {
    margin: 40px 0 10px 0;
}

@media only screen and (max-width: 992px) {
    .page h2 {
        font-size: 22px;
    }
    .page h3 {
        font-size: 20px;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

    06 . xxxxxx

/////////////////////////////////////////////////////////////////////////// */







/* ////////////////////////////////////////////////////////////////////////////

	07 . xxxxxx

//////////////////////////////////////////////////////////////////////////// */








/* ////////////////////////////////////////////////////////////////////////////

	08 . xxxxxx

//////////////////////////////////////////////////////////////////////////// */







/* ////////////////////////////////////////////////////////////////////////////

    09 . HERO

//////////////////////////////////////////////////////////////////////////// */

.hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: calc(100vh);
    background-color: var(--color-grey);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: scroll;
    background-position: center center;
}
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
    rgba(0,0,0,.8) 0%, 
    rgba(0,0,0,.6) 25%, 
    rgba(0,0,0,.4) 50%, 
    rgba(0,0,0,.6) 75%, 
    rgba(0,0,0,.8) 100%);
    opacity: 1;
}

@media only screen and (max-width: 992px) {
    .hero {
        height: 100dvh;
        max-height: -webkit-fill-available !important;
    }
}

/* -------------------------------------------
    CAPTION 
------------------------------------------- */
.hero_caption {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}
.hero_caption-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}
.hero_caption h1 {
    position: relative;
    font-family: var(--font-title);
    font-size: clamp(36px, 6vw, 60px);
    line-height: 1.025;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-light);
}

.hero.home h1 {
    font-size: clamp(36px, 6vw, 66px);
    line-height: 1;
    font-weight: 600;
}

@media only screen and (max-width: 992px) {
    .hero_caption-inner {
        margin: 35px auto 0 auto;
    }
    .hero.home h1 br {
        display: none;
    }
}

/* -------------------------------------------
    IMAGE 
------------------------------------------- */
.hero_image {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: scroll;
    background-position: center top;
}
.hero_image img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------------------------------
    VIDEO MP4 
------------------------------------------- */
.hero > .videoHero {
    position: relative;
    width: 100%;
    height: 100%;
}
.videoHero > video {
    display: flex;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

/* -------------------------------------------
    VIDEO YT 
------------------------------------------- */
#videoHero {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
}
.ytplayer-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(1.2, 1.2) translate(-15px,-10px);
    transform-origin: center center;
}

@media only screen and (max-width: 992px) {
    .ytplayer-container {
        left: 50%;
        transform: scale(1.2, 1.2) translateX(-50%);
    }
}

/* -------------------------------------------
    DOWN ARROW 
------------------------------------------- */
.down-arrow {
    position: absolute;
    z-index: 3;
    top: calc(100vh - 80px);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 40px;
    border: 1px solid;
    border-radius: 2px;
    /* animation: jumpInfinite 1.5s infinite; */
    color: var(--color-grey-dark);
}
.down-arrow:after {
    content: " ";
    position: absolute;
    top: 22px;
    left: -8px;
    width: 16px;
    height: 16px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    border-radius: 2px;
    transform: rotateZ(45deg);
}
@keyframes jumpInfinite {
    0% { margin-top: 0; }
    50% { margin-top: 20px; }
    100% { margin-top: 0; }
}





/* ////////////////////////////////////////////////////////////////////////////

	10 . CONTACT

//////////////////////////////////////////////////////////////////////////// */

.contact_infos {
    text-align: center;
    margin: 0 0 50px 0;
}

.contact_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 20px 0;
}
.contact_item:last-child {
    margin: 0;
}

.contact_item strong {
    display: flex;
    font-family: var(--font-title);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.contact_item:not(:first-child) strong {
    color: var(--color-red);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
}

.contact_cta {
    display: flex;
    flex-direction: column;
}
.contact_cta a,
.contact_cta a[href^=tel] {
    font-size: 16px !important;
    line-height: 1 !important;
    color: var(--color-dark)!important;
    /* width: 100%;
    text-align: center;
    justify-content: center; */
    margin: 0 0 10px 0;
}
.contact_cta a:last-child {
    margin: 0;
}


/* -------------------------------------------
    FORM 
------------------------------------------- */
form {
    padding:0 15px;
}
form:after {
    content: '';
    display: table;
    clear: both;
}

form .field {
    display: block;
    border: 1px solid var(--color-grey-xlight);
    float: left;
    width: 100%;
}
form .field.tnb { border-top: 0; }
form .field.half { width: 50%; }
form .field.last { border-left: 0; }

form .field.error label { color: var(--color-red); }

@media only screen and (max-width: 767px) {
    form .field.half {
        width: 100%;
    }
    form .field.last {
        border-left: 1px solid var(--color-grey-xlight);
    }
    form .field.half.last {
        border-top: 0;
    }
}


/* ------------------------------------------- 
	FIELDS
------------------------------------------- */
form .field label {
    display: block;
    font-family: var(--font-title);
	font-size: 12px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    padding: 16px 16px 0 16px;
    color: var(--color-grey);
}

form .field input,
form .field textarea {
    display: block;
    width: 100%;
    padding: 8px 16px 16px 16px;
    font-size: 16px;
    border: 0;
    outline: 0;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
    background-color: transparent;
}

form .field textarea {
    min-height: 150px;
    resize: vertical;
}

form .field select {
	position: relative;
    display: block;
    width: 100%;
    padding: 4px 16px 16px 16px;
    font-size: 16px;
    line-height: 25px;
    border: 0;
    outline: 0;
    background: none;
    border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}
.select-carret {
	position: relative;
	width:100%!important;
    margin: 0;
}
.select-carret .carret {
	position: absolute;
	z-index:1;
	top: calc(50% + 2px);
	right: 10px;
	font-size: 21px;
	color: #a0a0a8;
}

/*form .field select:invalid { color: #a0a0a0; }
form .field select.has-placeholder { color: #a0a0a0; }
form .field select [disabled] { color: #a0a0a0; }
form .field select option { color: var(--color-dark)!important; }*/


/* ------------------------------------------- 
	AUTO COMPLETE CHROME
------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
  

/* ------------------------------------------- 
	BOUTON SUBMIT
------------------------------------------- */
.btn-form {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}








