/*
 * Fonts
 * -----------------------------
*/

@font-face {
  font-family: 'FA Brands';
  src: url('../fonts/Brands-Regular-400.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FA Thin';
  src: url('../fonts/Pro-Thin-100.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FA Light';
  src: url('../fonts/Pro-Light-300.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FA Regular';
  src: url('../fonts/Pro-Regular-400.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FA Solid';
  src: url('../fonts/Pro-Solid-900.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* End of Fonts */



/*
 * Variables
 * -----------------------------
*/

:root {
    --main-font: 'Raleway', sans-serif;
    --second-font-family: 'hightower-text', serif;
    --main-color: #111111;
    --dark-grey-color: #676B72;
    --light-grey-color: #BFBFBF;
    --gold-color: #A79E8E;
}

/* End of Variales */



/*
 * General
 * -----------------------------
*/

body {
    color: #ffffff;
    background-color: var(--main-color);
    font-family: var(--main-font);
}

.custom-slider button.slick-arrow {
   background: none;
   border: 0;
   font-size: 0;
}

.custom-slider .slick-prev {
   position: absolute;
   top: 50%;
   left: 35px;
   z-index: 2;
}

.custom-slider-arrows-outside .slick-prev {
   left: -35px;
}

.custom-slider .slick-next {
   position: absolute;
   top: 50%;
   right: 35px;
   z-index: 2;
}

.custom-slider-arrows-outside .slick-next {
   right: -35px;
}

.custom-slider .slick-prev:before,
.custom-slider .slick-next:before {
   content: '\f0c9';
   font-family: 'FA Light';
   font-style: normal;
   font-weight: 300;
   text-decoration: inherit;
   /*--adjust as necessary--*/
   font-size: 30px;
   color: #ffffff;
}

.custom-slider-arrows-outside .slick-prev:before,
.custom-slider-arrows-outside .slick-next:before {
   color: #888888;
}

.custom-slider .slick-prev:before {
   content: '\f104';
}

.custom-slider .slick-next:before {
   content: '\f105';
}

.modal-backdrop.show {
	opacity: 0 !important;
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* End of General */



/*
 * Header
 * -----------------------------
*/

header {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

header .bt-menu {
    width: 220px;
    height: 50px;
    padding-left: 145px;
    font-family: var(--second-font-family);
    font-size: 1.15rem;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    pointer-events: all;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background-color: rgba(17,17,17,0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

header .bt-menu.bt-menu-background {
    background-color: rgba(17,17,17,0.5);
}

header .bt-menu:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background-color: var(--dark-grey-color);
    opacity: 1;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

header .bt-menu.menu-active:before {
    opacity: 0;
}

header .bt-menu:after {
    content: '\f0c9';
    font-family: 'FA Light';
    font-style: normal;
    font-weight: 300;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    font-size: 32px;
    color: #ffffff;
    position: absolute;
    left: 100px;
}

header .bt-menu.menu-active:after {
    content: '\f00d';
}

header .bt-menu span {
    pointer-events: none;
}

header .zone-langue {
    width: 220px;
    height: 50px;
    padding-right: 135px;
    position: relative;
    font-family: var(--second-font-family);
    font-size: 1.15rem;
    text-transform: uppercase;
    text-align: right;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    cursor: pointer;
    background-color: rgba(17,17,17,0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    display: none !important;
}

header .zone-langue.zone-langue-background {
    background-color: rgba(17,17,17,0.5);
}

header .zone-langue:before {
    content: '\f078';
    font-family: 'FA Regular';
    font-style: normal;
    font-weight: 400;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    font-size: 18px;
    color: #ffffff;
    position: absolute;
    right: 100px;
}

header .zone-langue:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background-color: var(--dark-grey-color);
}

.overlay-menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 10;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.overlay-menu.menu-active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.zone-menu {
    position: fixed;
    width: 400px;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 15;
    padding: 220px 100px 100px 0;
    background-color: rgba(0,0,0,0.65);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.zone-menu.menu-active {
    width: 600px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.zone-menu nav ul li {
    position: relative;
    width: 100%;
    padding-left: 60px;
}

.zone-menu nav ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: var(--dark-grey-color);
    -webkit-transition: all 0.12s ease;
    -moz-transition: all 0.12s ease;
    -o-transition: all 0.12s ease;
    transition: all 0.12s ease;
}

.zone-menu nav ul li:hover:before {
    width: 65px;
}

.zone-menu nav ul li a {
    display: block;
    padding: 20px 0 20px 40px;
    font-family: var(--second-font-family);
    font-size: 1.15rem;
    text-transform: uppercase;
    color: var(--gold-color);
    text-decoration: none;
    -webkit-transition: all 0.12s ease;
    -moz-transition: all 0.12s ease;
    -o-transition: all 0.12s ease;
    transition: all 0.12s ease;
}

.zone-menu nav ul li:hover a {
    padding: 20px 0 20px 45px;
}

.header-pages {
    width: 100%;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.header-pages a {
    display: block;
    position: relative;
    z-index: 3;
}

.header-pages a img {
    width: 280px;
    display: block;
    border: 0;
}

.header-pages .shadow-header {
    width: 100%;
    height: 160px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: #111111;
    background: linear-gradient(0deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0) 100%);
}

/* End of Header */



/*
 * Homepage
 * -----------------------------
 */

main.main-homepage section.home-screen {
    width: 100vw;
    height: 100vh;
    position: relative;
    margin-bottom: 100px;
    overflow: hidden;
}

main.main-homepage section.home-screen .zone-background {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transform: scale(1);
    background-position: bottom center;
    will-change: transform, opacity;
}

main.main-homepage section.home-screen .zone-background .stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    pointer-events: none;
}

main.main-homepage section.home-screen .zone-background .stars-container .star {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: white;
    opacity: 0;
    animation: blink 1.5s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes effectLogo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

main.main-homepage section.home-screen .zone-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 65px;
    opacity: 0;
    transform: scale(1);
    animation: effectLogo 3.5s forwards;
    animation-delay: 1.35s;
}

main.main-homepage section.home-screen .zone-logo img {
    display: block;
    width: 550px;
    height: auto;
}

main.main-homepage section.home-screen .zone-bottom {
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main.main-homepage section.home-screen .zone-bottom a.arrow-scroll {
    width: 230px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
}

main.main-homepage section.home-screen .zone-bottom .arrow-scroll:before {
    content: '\f175';
    font-family: 'FA Regular';
    font-style: normal;
    font-weight: 400;
    text-decoration: inherit;
    font-size: 18px;
    color: #ffffff;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

main.main-homepage section.home-screen .zone-bottom .baseline {
    width: calc(100% - 300px);
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

main.main-homepage section.home-screen .zone-bottom .baseline div {
    padding: 0 20px;
    position: relative;
    font-family: var(--second-font-family);
    font-size: 1.05rem;
    text-transform: uppercase;
    color: var(--gold-color);
}

main.main-homepage section.home-screen .zone-bottom .baseline div:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -2px;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background-color: var(--gold-color);
}

main.main-homepage section.home-screen .zone-bottom .baseline div:last-of-type:after {
    display: none;
}

main.main-homepage section.home-screen .zone-bottom .social {
    width: 230px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

main.main-homepage section.home-screen .zone-bottom .social a {
    font-family: 'FA Brands';
    font-style: normal;
    font-weight: 400;
    text-decoration: inherit;
    width: 40px;
    height: 40px;
    display: block;
    padding: 10px;
    font-size: 18px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

main.main-homepage section.home-screen .zone-bottom .social a.instagram:before {
    content: '\f16d';
    position: relative;
}

main.main-homepage section.home-screen .zone-bottom .social a.linkedin:before {
    content: '\f08c';
    position: relative;
}

/* End of Homepage */



/*
 * Footer
 * -----------------------------
 */

footer {
    width: 100%;
    height: 600px;
    position: relative;
	z-index: 0;
}

footer .background-footer {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    filter: grayscale(1);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

footer .shadow-footer {
    width: 100%;
    height: 35%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: #111111;
    background: linear-gradient(180deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0) 100%);
}

footer .logo-footer {
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: 270px;
    z-index: 3;
}

footer .logo-footer img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

footer .infos-footer {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 50px;
    z-index: 4;
}

footer .infos-footer p {
    text-align: center;
	font-size: 0.9rem;
	font-weight: 500;
	font-family: var(--second-font-family);
	color: #ffffff;
	opacity: 0.8;
}

footer .infos-footer a {
    color: #ffffff;
	font-family: var(--second-font-family);
}

/* End of Footer */


/*
 * Media Queries
 * -----------------------------
 */

@media screen and (max-width: 1399px) {

main.main-homepage section.home-screen .zone-logo img {
    width: 500px;
}

footer {
    height: 500px;
}

footer .shadow-footer {
    height: 30%;
}

footer .logo-footer {
    bottom: 220px;
}

}

@media screen and (max-width: 1199px) {

main.main-homepage section.home-screen {
    margin-bottom: 80px;
}

main.main-homepage section.home-screen .zone-logo img {
    width: 450px;
}

footer {
    height: 400px;
}

footer .shadow-footer {
    height: 20%;
}

footer .logo-footer {
    bottom: 180px;
}

}

@media screen and (max-width: 991px) {

main.main-homepage section.home-screen {
    margin-bottom: 60px;
}

header {
    top: 50px;
}

header .bt-menu {
    padding-left: 110px;
}

header .bt-menu:after {
    left: 70px;
}

header .zone-langue {
    padding-right: 110px;
}

header .zone-langue:before {
    right: 70px;
}

.zone-menu.menu-active {
    width: 400px;
}

}

@media screen and (max-width: 767px) {

main.main-homepage section.home-screen {
    margin-bottom: 40px;
}

header {
    height: 110px;
    top: 0;
}

header .bt-menu,
header .zone-langue {
    height: 110px;
}

header .bt-menu.bt-menu-background,
header .zone-langue.zone-langue-background {
    background-color: rgba(17,17,17,0.85);
}

.zone-menu nav ul li {
    padding-left: 40px;
}

.zone-menu.menu-active {
    width: 100vw;
}

main.main-homepage section.home-screen .zone-logo img {
    width: 300px;
}

main.main-homepage section.home-screen .zone-bottom,
main.main-homepage section.home-screen .zone-bottom a.arrow-scroll,
main.main-homepage section.home-screen .zone-bottom .social {
    height: 100px;
}

footer .shadow-footer {
    height: 10%;
}

footer .logo-footer {
    bottom: 150px;
}

footer .infos-footer {
    bottom: 15px;
}

}

@media screen and (min-width: 1200px) and (max-width: 1399px) {



}

@media screen and (min-width: 992px) and (max-width: 1199px) {



}

@media screen and (min-width: 768px) and (max-width: 991px) {



}


/* End of Media Queries */