
/* -------------------------------------------------
	
	01 . IMPORT CSS + FONTS
	02 . BASE
	03 . SWIPER - NEWS
	04 . SWIPER - TESTIMONIALS
	05 . PAGE FOOTER
	06 . HOME - EXPERTISES
	07 . HOME - PARTNERS
	08 . HOME - ABOUT
    09 . HERO
	
------------------------------------------------- */





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

    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('interface.css');
@import url('blog.css');
@import url('works.css');
@import url('about.css');
@import url('services.css');


:root {
    
    --font-text: 'Albert Sans', sans-serif;

    --color-text: #0A0A0A; /* rgba(10,10,10,1); */
    --color-bg: #FCFCFC; /* rgba(252,252,252,1); */

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

    --color-grey-dark: #606065; /* rgba(96,96,101,1); */
    --color-grey: #a0a0a8; /* rgba(160,160,168,1); */
    --color-grey-light: #cfcfd3; /* rgba(207,207,211,1); */
    --color-grey-xlight: #f0f0f2; /* rgba(240,240,242,1); */

    --color-gold: #AA8901; /* rgba(170,137,1,1); */
    --color-green: #9A9F66; /* rgba(154,159,102,1); */
    --color-brown: #C57645; /* rgba(197,118,69,1); */
    --color-blue: #197278; /* rgba(25,114,120,1); */

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

}

/* @media screen and (max-width: 992px) {
    :root {
        
    }
} */





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

    02 . BASE

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

html {
	background-color: var(--color-bg);
    width: 100%;
    height: 100%;
}
body {
    position: relative;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-text);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    height: 100%;
    overflow-x: hidden!important;
}
body.open {
    overflow: hidden!important;
    touch-action: none;
}

/* LIENS */
a {
	color: var(--color-text);
	text-decoration: none;
	-webkit-transition: all .25s;
	transition: all .25s;
}
.no-touch a:hover { color: var(--color-text); 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: 700; }

/* 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 {
	line-height: 1;
    font-weight: inherit;
    margin: 0;
}

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





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

	03 . SWIPER - NEWS

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

.news {
    position: relative;
}

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

/* SWIPER */
.news .swiper_wrap {
    position: relative;
    width: 100%;
    height: auto;
}
.swiper_news {
    position: relative;
}
.swiper_news .swiper-slide {
    display: flex;
    height: auto;
    transition: opacity .25s;
}
.swiper_news .swiper-slide .blog_item {
    width: 100%;
}
.swiper_news .swiper-slide .blog_item-title div {
    font-size: 28px;
}

/* 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: 8px;
    height: 8px;
    display: block;
    border-radius: 2em;
    background: transparent;
    border: var(--color-dark) solid 1px;
    transition: all 0.3s;
    opacity: 1;
}
.swiper_news .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    background: var(--color-dark);
    opacity: 1;
}
.swiper_news .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}

@media only screen and (max-width: 992px) {
    .swiper_news .swiper-pagination {
        display: flex;
    }
    .swiper_news .swiper-slide .blog_item-title div {
        font-size: 22px;
    }
    .swiper_news .swiper-slide .blog_item-desc {
        font-size: 17px;
    }
}





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

	04 . SWIPER - TESTIMONIALS

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

.testimonial {
    position: relative;
    background-color: var(--color-green);
    color: var(--color-light);
}
.testimonial .swiper_wrap .swiper-button-prev::after,
.testimonial .swiper_wrap .swiper-button-next::after {
    color: var(--color-light);
}
.testimonial .swiper_wrap .swiper-pagination .swiper-pagination-bullet {
    border-color: var(--color-light);
}
.testimonial .swiper_wrap .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color-light);
}

/* SWIPER */
.swiper_wrap {
    position: relative;
    width: 100%;
    height: auto;
}
.swiper_testimonials {
    position: relative;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 9%, rgb(0, 0, 0) 91%, rgba(0, 0, 0, 0) 100%);
}
.swiper_testimonials .swiper-slide {
    display: flex;
    height: auto;
}
.swiper_testimonials-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 75px;
}
.swiper_testimonials-desc {
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
}
.swiper_testimonials-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 25px;
}
.swiper_testimonials-author span {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
}

/* NAVIGATION */
.swiper_wrap .swiper-button-prev,
.swiper_wrap .swiper-button-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
}
.swiper_wrap .swiper-button-prev {
    left: -60px;
}
.swiper_wrap .swiper-button-next {
    right: -60px;
}
.swiper_wrap .swiper-button-prev::after,
.swiper_wrap .swiper-button-next::after {
    content: "";
    box-sizing: border-box;
    font-family: "Ionicons";
    font-size: 72px;
    line-height: 0;
    color: var(--color-dark);
    opacity: 1;
    width: auto;
    height: inherit !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.swiper_wrap .swiper-button-prev::after {
    content: '\f3d5';
}
.swiper_wrap .swiper-button-next::after {
    content: '\f3d6';
}

/* PAGINATION */
.swiper_wrap .swiper-pagination {
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: flex-end;
}
.swiper_wrap .swiper-pagination.swiper-pagination {
    position: relative;
    margin-top: 25px;
    bottom: 0;
}
.swiper_wrap .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 2em;
    background: transparent;
    border: var(--color-dark) solid 1px;
    opacity: 1;
    transition: all 0.3s;
}
.swiper_wrap .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    background: var(--color-dark);
}
.swiper_wrap .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}
.swiper_wrap .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_testimonials {
        mask-image: none;
    }
    .swiper_testimonials-desc {
        font-size: 18px;
        line-height: 1.4;
    }
    .swiper_testimonials-caption {
        padding: 0 5px;
    }
    .swiper_testimonials-author {
        margin-top: 15px;
    }
    .swiper_testimonials-author span {
        font-size: 13px;
        line-height: 1.3;
    }
    .swiper_wrap .swiper-button-prev,
    .swiper_wrap .swiper-button-next {
        display: none;
    }
    .swiper_wrap .swiper-pagination {
        display: flex;
    }
}





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

    05 . PAGE FOOTER

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

.page {
    position: relative;
    padding: 170px 10px 100px 10px;
}

/* HEADER */
.page_header {
    display: flex;
    margin-bottom: 50px;
    padding-bottom: 15px;
    border-bottom: var(--color-dark) solid 1px;
}
.page_header-title {
    position: relative;
    display: flex;
    max-width: 80%;
}
.page_header-title h1 {
    position: relative;
	font-family: var(--font-title);
    font-size: 48px;
    line-height: 1.05;
    font-weight: 300;
    text-transform: uppercase;
}

/* 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: 600;
}
.page h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 600;
}
.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 {
        padding: 100px 0 50px 0;
    }
    .page_header {
        margin-bottom: 35px;
        padding-bottom: 10px;
    }
    .page_header-title h1 {
        font-size: 30px;
    }
    .page h2 {
        font-size: 22px;
    }
    .page h3 {
        font-size: 20px;
    }
}





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

    06 . HOME - EXPERTISES

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

.service_home {
    position: relative;
}

.service_home-wrap {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0;
}
.service_home-item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.service_home-item:last-child {
    margin: 0 0 0 0;
}

/* IMAGE */
.service_home-item-image {
    position: relative;
    align-self: stretch;
    width: 100%;
    display: flex;
    padding-top: 56.25%;
}
.service_home-item-image img {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* CONTENT */
.service_home-item-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 75px;
}

.service_home-item-title {
    display: flex;
    margin: 0 0 15px 0;
}
.service_home-item-title h2 {
    position: relative;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.service_home-item-title h2::before {
    position: relative;
    content: "\f396";
    box-sizing: border-box;
    font-family: "Ionicons";
    font-size: 75%;
    margin: 0 12px 0 0;
}

.service_home-item-desc {
    font-size: 21px;
    line-height: 1.45;
    color: var(--color-grey-dark);
}

/* EVEN */
.service_home-item:nth-child(even):last-child {
    margin: 0 0 0 0;
}
.service_home-item:nth-child(even) .service_home-item-content {
    order: -1;
    padding: 75px;
}

@media only screen and (max-width: 992px) {
    .service_home-wrap {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }
    .service_home-item {
        flex-direction: column;
    }
    .service_home-item:last-child {
        margin: 0;
    }
    .service_home-item-content {
        width: 100%;
        padding: 0;
    }
    .service_home-item-image {
        width: 100%;
        min-height: 260px;
        margin: 0 0 15px 0;
    }
    .service_home-item-title {
        margin: 0 0 10px 0;
    }
    .service_home-item-title h2 {
        font-size: 30px;
    }
    .service_home-item-desc {
        font-size: 18px;
    }
    /* EVEN */
    .service_home-item:nth-child(even):last-child {
        margin: 0;
    }
    .service_home-item:nth-child(even) .service_home-item-content {
        order: 1;
        padding: 0;
    }
    .service_home-item:nth-child(even) .service_home-item-image {
        margin: 0 0 15px 0;
    }
}





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

	07 . HOME - PARTNERS

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

.partners {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
    overflow: hidden;
    padding: 100px 0!important;
}

.swiper_marquee > .swiper-wrapper {
    padding: 10px 0;
    pointer-events: none;
    -webkit-transition-timing-function:linear!important; 
    -o-transition-timing-function:linear!important;
    transition-timing-function:linear!important;
}

.swiper_marquee .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 130px;
    margin: 0 20px;
}

.clients_box {
    background: #f9f9f9;
    border: 1px solid rgba(15, 14, 14, .03);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 200px;
    height: 130px;
    transition: none;
}
.clients_box .clients_box-inner {
    width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.clients_box .clients_box-inner img {
    mix-blend-mode: multiply;
    height: 60px;
    object-fit: contain;
}

@media only screen and (max-width: 992px) {
    .partners {
        padding: 50px 0!important;
    }
    .swiper_marquee .swiper-slide {
        width: 180px;
        height: 110px;
        margin: 0 15px;
    }
    .clients_box {
        height: 100%;
        width: 180px;
        height: 110px;
    }
    .clients_box .clients_box-inner {
        width: 130px;
        height: 130px;
    }
    .clients_box .clients_box-inner img {
        max-height: 50px;
    }
}





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

	08 . HOME - ABOUT

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

.about_home {
    position: relative;
}

.about_home-block {
    position: relative;
    display: flex;
    justify-content: center;
    width: 600px;
    height: 300px;
    margin: 0px auto;
}
.about_home-img {
    display: block;
    width: 300px;
    height: 300px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    margin: 0px auto;
    text-align: center;
    margin-bottom: 10px;
    border: 5px solid var(--color-light);
}
.about_home-img img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
    object-fit: cover;
}
.about_home-img:nth-child(2) {
    left: inherit;
    right: 10px;
    z-index: 1;
}

.about_home-desc {
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
    margin: 25px 0 0 0;
}

@media only screen and (max-width: 992px) {
    .about_home-block {
        width: 340px;
        height: 170px;
    }
    .about_home-img {
        width: 170px;
        height: 170px;
    }
    .about_home-img img {
        max-width: 100%;
        height: auto;
        vertical-align: middle;
        border: 0;
        object-fit: cover;
    }
    
    .about_home-desc {
        font-size: 22px;
        margin: 15px 0 0 0;
    }

}





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

    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,0.85) 0%, rgba(0,0,0,0.35) 25%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 75%, rgba(0,0,0,0.65) 100%);
    opacity: 1;
}

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

/* SCROLL DOWN */
.scroll-down {
    position: absolute;
    z-index: 1;
    right: 15px;
    bottom: 30px;
    display: flex;
    height: 100px;
    width: 50px;
    cursor: pointer;
}
.scroll-down a {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    height: 100%;
}
.scroll-down-text {
    position: relative;
    color: rgba(255,255,255,1);
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    transform: rotate(90deg);
}
.scroll-down-bar {
    background: rgba(255,255,255,1);
    height: 30px;
    left: 0;
    right: 0;
    margin: 0 auto 30px auto;
    position: relative;
    width: 1px;
}

@media only screen and (max-width: 992px) {
    .scroll-down {
        display: none;
    }
}

/* -------------------------------------------
    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: 45px auto 0 auto;
    padding: 0 25px;
}
.hero_caption h1 {
    position: relative;
    font-weight: 700;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1.2;
    color: var(--color-light);
}

@media only screen and (max-width: 992px) {
    .hero_caption-inner {
        margin: 35px auto 0 auto;
    }
}

/* -------------------------------------------
    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) translateX(-25px);
    transform-origin: center center;
}

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

