
/* -------------------------------------------------
	
	01 . IMPORT CSS + FONTS
	02 . BASE
	03 . PAGE FOOTER
	04 . HERO
	05 . CONTACT
	06 . TESTIMONIALS
	07 . BLOCKS
	08 . FAQ
    09 . ABOUT
    10 . MARQUEE
    11 . POPUP
	
------------------------------------------------- */





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

    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/magnific-popup.css');

@import url('interface.css');
@import url('rooms.css');
@import url('about.css');
@import url('component.css');
@import url('_fix.css');


:root {
    
    --font-text: "Albert Sans", sans-serif;
    --font-title: "Akshar", sans-serif;

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

    --color-grey-dark: #5D6B83; /* rgba(90,90,94,1); */
    --color-grey: #8D99AE; /* rgba(141,153,174,1); */
    --color-grey-light: #B7BFCC; /* rgba(182,182,185,1); */
    --color-grey-xlight: #E7EAEE; /* rgba(234,234,235,1); */

    --color-yellow: #BDA352; /* rgba(189,163,82,1); */
    --color-red: #A41623; /* rgba(164,22,35,1); */
    --color-blue: #2D3047; /* rgba(45,48,71,1); */
    --color-blue-dark: #101119; /* rgba(16,17,25,1); */

    --site-width: 1410px;
    --site-width-inner: 1380px;
    --btn-radius: 0;

}





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

    02 . BASE

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

html {
	background-color: var(--color-light);
    width: 100%;
    height: 100%;
}
body {
    position: relative;
    background-color: var(--color-light);
    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::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/interface/pattern.png);
    background-repeat: repeat;
    background-size: 50px 50px;
    background-position: center;
    opacity: .2;
    filter: grayscale(1);
}
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 . PAGE FOOTER

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

.page_content {
    position: relative;
    padding: 50px 15px 100px 15px;
}

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

@media only screen and (max-width: 992px) {
    .page_content {
        position: relative;
        padding: 30px 0 50px 0;
    }
    .page_content h2 {
        font-size: 20px;
    }
    .page_content h3 {
        font-size: 20px;
    }
}





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

    04 . HERO

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

.hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: calc(72vh);
    background-color: var(--color-light);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: scroll;
    background-position: center center;
}

@media only screen and (max-width: 992px) {
    .hero {
        height: 50dvh;
        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: 85px auto 0 auto;
    padding: 0 25px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero_caption h1 {
    position: relative;
    font-family: var(--font-title);
    font-size: clamp(60px, 8vw, 116px);
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--color-yellow);
}
.hero_caption span {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(24px, 6vw, 28px);
    line-height: 1.025;
    font-weight: 300;
    margin-top: 2px;
    color: var(--color-grey);
}

/* ROOMS */
.hero.rooms {
    height: calc(92vh);
}
.hero.rooms .hero_caption-inner {
    margin: -60px auto 0 auto;
}

/* HOME */
.hero.home {
    height: calc(92vh);
}

@media only screen and (max-width: 992px) {
    .hero_caption-inner {
        margin: 35px auto 0 auto;
    }
    /* ROOMS */
    .hero.rooms {
        height: 50dvh;
    }
    .hero.rooms .hero_caption-inner {
        margin: 70px auto 0 auto;
    }
    /* HOME */
    .hero.home {
        height: 85dvh;
    }
}

/* VIDEO */
.hero.video {
    height: calc(100vh);
}
.hero.video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-blue);
    opacity: .5;
}


.hero.video > .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%);
}


/* -------------------------------------------
    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;
    background-color: var(--color-blue);
}
.hero_image img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.075);
    filter: brightness(22%) saturate(110%) grayscale(100%);
    opacity: 1;
    mix-blend-mode:luminosity
}


/* -------------------------------------------
    SLIDER 
------------------------------------------- */
.hero_full {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: var(--color-light);
}

.slider_zoom_wrapper {
    position: relative;
    color: var(--color-light);
    background-color: var(--color-blue-dark);
    overflow: hidden;
    height: 100%;
}
.slider_zoom_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/interface/pattern.png);
    background-repeat: repeat;
    background-size: 50px 50px;
    background-position: center;
    opacity: .15;
    /* filter: grayscale(100%); */
}

.slideshow__slide-caption-text .container {
    max-width: 1280px!important;
    width: 100%!important;
    align-items: flex-start;
}

.slideshow__slide-caption-title {
    font-family: var(--font-title);
    font-size: clamp(48px, 8vw, 100px)!important;
    line-height: 1;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slideshow__slide-desc {
    font-size: clamp(15px, 6vw, 20px)!important;
    line-height: 1.35;
    margin: 10px 0 0 0;
}

.slideshow__slide-caption-subtitle {
    display: flex;
    padding: 20px 0 0 0;
}
.slideshow__slide-caption-subtitle a {
    align-self: flex-start;
}

@media only screen and (max-width: 992px) {
    .slideshow__slide-desc {
        font-size: 17px!important;
        max-width: 90%;
    }
    .slideshow__slide-caption-subtitle {
        padding: 15px 0 0 0;
    }
}




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

	05 . CONTACT

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

/* TITLE */
.page_header-contact {
    position: relative;
    padding: 200px 15px 75px 15px;
}
.page_header-contact .page_header-title {
    display: flex;
    justify-content: space-between;
    align-items:end;
}
.page_header-contact .page_header-title h1 {
    font-family: var(--font-title);
    font-size: clamp(40px, 6vw, 62px);
    line-height: 1;
    font-weight: 300;
    /* text-transform: uppercase; */
    margin: 0 150px 0 0;
}
.page_header-contact .page_header-title a {
    flex-shrink: 0;
    text-transform: uppercase;
}
.page_header-contact .page_header-title a i {
    position: relative;
    top: -2px;
}

@media only screen and (max-width: 992px) {
    .page_header-contact {
        padding: 125px 0 50px 0;
    }
    .page_header-contact .page_header-title {
        align-items:start;
        flex-direction: column;
    }
    .page_header-contact .page_header-title h1 {
        margin: 0 0 15px 0;
        line-height: 1.25;
    }
    .page_header-contact .page_header-title a {
        line-height: 40px;
        font-size: 13px;
        padding: 0 12px;
    }
}

/* MAP */
.map-container {
	position:relative;
	background: rgba(234,234,235,.5);
}
.map {
	position:relative;
	height:450px;
	width:calc(100%);
	background: rgba(234,234,235,.5);
}
.map-nav {
	position:absolute;
	z-index:2;
	top: 25px;
	right: 25px;
	display: flex;
}
#cd-zoom-in, #cd-zoom-out {
	position: relative;
	/* top:0;
	left:0; */
	height: 38px;
	width: 38px;
	cursor: pointer;
	background-color: var(--color-light);
	text-align:center;
	transition: background-color 0.2s ease-in-out;
}
.no-touch #cd-zoom-in:hover,
.no-touch #cd-zoom-out:hover {
	/* background-color: var(--color-yellow); */
}
.no-touch #cd-zoom-in:hover:after,
.no-touch #cd-zoom-out:hover:after {
	color: var(--color-grey);
}
#cd-zoom-in {
    /* margin-left: 38px; */
	border-top: 1px solid var(--color-grey-xlight);
	border-right: 1px solid var(--color-grey-xlight);
	border-bottom: 1px solid var(--color-grey-xlight);
    border-left: none;
}
#cd-zoom-in:after {
	font-size: 16px;
	line-height:36px;
	color: var(--color-dark);
	content: "\f217";
	font-family: "Ionicons";
	display:block;
}
#cd-zoom-out {
    border: 1px solid var(--color-grey-xlight);
}
#cd-zoom-out:after {
	font-size: 16px;
	line-height:36px;
	color: var(--color-dark);
	content: "\f208";
	font-family: "Ionicons";
	display:block;
}

/* DISTANCE */
.distance {
    margin: 100px 0 0 0;
    display: flex;
    justify-content: space-between;
}
.distance_item {
    margin: 0 30px 0 0;
}
.distance_item:last-child {
    margin: 0;
}
.distance_item strong {
    display: block;
    font-family: var(--font-title);
    font-size: 18px;
    line-height: 1.05;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    color: var(--color-yellow);
}
.distance_item ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
.distance_item li {
    margin: 0 0 5px 0;
    padding: 0 0 0 20px;
    font-size: 16px;
    line-height: 1.25;
}
.distance_item li:last-child {
    margin: 0;
}
.distance_item li::before {
	position:relative;
	content: "\f3d6";
	font-family: "Ionicons";
	display: inline-block;
    font-size: 100%;
	margin-left: -20px;
	width: 20px;
    color: var(--color-grey-dark);
}

/* INFOS */
.contact_title {
    font-size: 19px;
    line-height: 1.3;
    margin: 0 0 50px 0;
    text-align: center;
}

.contact_infos {
    background-color: rgba(189,163,82,.15);
    padding: 35px;
}

.contact_item {
    display: flex;
    flex-direction: column;
    margin: 0 0 30px 0;
}
.contact_item:last-child {
    margin: 0;
}

.contact_item strong {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 15px;
}
.contact_item:not(:first-child) strong {
    font-size: 20px;
    text-transform: none;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact_item ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
.contact_item li {
    display: flex;
    align-items: center;
    margin: 0 0 10px 0;
}
.contact_item li:last-child {
    margin: 0;
}
.contact_item li i {
    text-align: center;
    width: 16px;
    margin: 0 10px 0 0;
}

/* SOCIAL */
.social {
    display: flex;
    align-items: center;
}
.social a {
    position: relative;
    font-size: 24px;
    line-height: 1;
    padding: 0 8px;
    text-decoration: none;
}
.social a:first-child {
    padding: 0 8px 0 0;
}
.social a img {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 24px;
}

@media only screen and (max-width: 992px) {
    .map {
        height: 350px;
    }
    .distance {
        margin: 50px 0 0 0;
        flex-direction: column;
    }
    .distance_item {
        margin: 0 0 25px 0;
    }
    .contact_infos {
        padding: 25px;
        margin: 0 0 50px 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-yellow); }

@media only screen and (max-width: 992px) {
    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-size: 11px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    padding: 16px 16px 0 16px;
    color: var(--color-grey);
    user-select: none;
}

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;
}

/* ------------------------------------------- 
	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 var(--color-light) inset;
}

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





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

    06 . TESTIMONIALS

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

.testimonials {
    position: relative;
    /* background: var(--color-grey-dark); */
}
.testimonials .section_title {
    position: relative;
    margin: 0 0 25px 0;
}

/* SWIPER */
.swiper_wrap {
    position: relative;
    width: 100%;
    height: auto;
    background-color: rgba(234,234,235,.65);
    padding: 50px;
}
.swiper_testimonials {
    position: relative;
}
.swiper_testimonials .swiper-slide {
    display: flex;
    height: auto;
    opacity: 0!important;
    user-select: none;
}
.swiper_testimonials .swiper-slide.swiper-slide-active {
    opacity: 1!important;
}
.swiper_testimonials-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* padding: 0 80px; */
}
.swiper_testimonials-desc {
    font-size: 21px;
    line-height: 1.45;
    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.5;
}
.swiper_testimonials-author span:last-child {
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
}

/* NAVIGATION */
.swiper_wrap .swiper-button-prev,
.swiper_wrap .swiper-button-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    display: none;
}
.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: flex;
    justify-content: center;
    align-items: flex-end;
}
.swiper_wrap .swiper-pagination.swiper-pagination {
    position: relative;
    margin-top: 35px;
    bottom: 0;
}
.swiper_wrap .swiper-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    display: block;
    border-radius: 0;
    background: var(--color-yellow);
    border: none;
    opacity: .4;
    transition: all 0.3s;
}
.swiper_wrap .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-yellow);
}
.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) {
    .testimonials .section_title {
        margin: 0 0 25px 0;
    }
    .swiper_wrap {
        padding: 25px;
    }
    .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;
    }
}





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

    07 . BLOCKS

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

.blocks {
    position: relative;
}
.blocks_grid {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.blocks_grid li {
    list-style: none;
    position: relative;
    overflow: hidden;
}
.blocks_grid li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100%);
    z-index: 3;
}
.blocks_grid-image {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    padding-top: 56.25%;
    overflow: inherit;
}
.blocks_grid-image img {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.025);
    filter: brightness(105%) saturate(110%);
    transition: transform 1s;
    object-fit: cover;
    object-position: center;
}
.no-touch .blocks_grid li:hover .blocks_grid-image img {
    transform: scale(1)!important;
}

.blocks_grid-caption {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px 0 0 0;
}
.blocks_grid-title {
    position: relative;
    font-family: var(--font-title);
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    /* text-transform: uppercase; */
    margin: 0 0 10px 0;
}
.blocks_grid-desc {
    position: relative;
    max-width: 100%;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}
.blocks_grid-cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    font-family: var(--font-title);
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    margin: 15px 0 0 0;
    color: var(--color-yellow);
}
.blocks_grid-cta i {
    margin: 0 0 0 10px;
}

@media (min-width: 992px) {
    .blocks_grid {
        display: grid;
        grid-gap: 30px;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 300px;
    }
    .blocks_grid li:nth-child(1) { grid-column: 1 / span 2; grid-row: 1 / span 2; }
    .blocks_grid li:nth-child(2) { grid-column: 3 / span 2; grid-row: 1; }
    .blocks_grid li:nth-child(3) { grid-column: 3 / span 2; grid-row: 2; }
    .blocks_grid-image img {
        filter: brightness(75%) saturate(110%);
    }
    .blocks_grid-caption {
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
        color: var(--color-light);
        padding: 45px;
    }
    .blocks_grid-title {
        font-size: 48px;
    }
    .blocks_grid-desc {
        max-width: 80%;
        font-size: 18px;
        line-height: 1.4;
    }
    .blocks_grid-cta {
        justify-content: flex-end;
        font-size: 18px;
        margin: auto 0 0 0;
        color: var(--color-light);
    }
}





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

    08 . FAQ

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

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.accordion_item {
    border: 1px solid var(--color-grey-xlight);
    overflow: hidden;
}
.accordion_header {
    padding: 20px 40px 20px 20px;
    font-family: var(--font-title);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}
.accordion_header::after {
    content: '\f3d0';
    font-family: "Ionicons";
    font-size: 26px;
    line-height: 1;
    transition: .25s;
    display: flex;
    position: absolute;
    right: 0;
    top: calc(50% - 13px);
    height: 26px;
    z-index: 1;
    padding: 0 15px;
    color: var(--color-yellow);
}
/* .accordion_header.active {
    background: var(--color-grey-xlight);
} */
.accordion_header.active::after {
    transform: rotateX(180deg);
}
.accordion_item .accordion__content {
    padding: 0 20px;
    max-height: 0;
    transition: .25s;
    overflow: hidden;
}
.accordion__content p:last-child {
    margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
    .accordion_header {
        padding: 15px 40px 15px 15px;
    }
    .accordion_item .accordion__content {
        padding: 0 15px;
    }
    .accordion__content p:last-child {
        margin-bottom: 15px;
    }
}





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

    09 . ABOUT

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

.about {
    position: relative;
    /* background: linear-gradient(180deg, rgba(189,163,82,.1) 0%, rgba(252,252,252,1) 100%); */
}

.about_wrap {
    display: flex;
    align-items: center;
    background-color: rgba(234,234,235,.65);
}

/* LEFT */
.about_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    padding: 60px;
}
.about_image {
    display: flex;
    justify-content: flex-end;
    order: 2;
}
.about_image img {
    filter: brightness(105%) saturate(110%);
    object-fit: cover;
    width: 100%;
}
.about_caption {
    text-align: justify;
    text-justify: distribute;
    text-align-last: left;
}
.about_caption h2 {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 25px 0;
}
.about_caption strong {
    font-weight: 600;
}
.about_caption p.lead {
    font-size: 19px;
    line-height: 1.35;
    font-weight: 500;
}
.about_cta {
    display: flex;
    margin: 30px 0 0 0;
}
.about_cta a {
    align-self: start;
}

/* RIGHT */
.about_right {
    display: flex;
    flex-direction: column;
    width: 55%;
    padding: 0 60px;
}
.about_right .about_image {
    display: flex;
    align-items: flex-end;
    gap: 25px;
}
.about_right .about_image img {
    filter: brightness(105%) saturate(110%);
    object-fit: cover;
    width: 50%;
    height: 100%;
}

@media only screen and (max-width: 992px) {
    .about_wrap {
        flex-direction: column;
        background: none;
    }
    /* LEFT */
    .about_left {
        width: 100%;
        padding: 25px;
        background-color: rgba(234,234,235,.65);
    }
    .about_caption {
        text-align: left;
        text-justify: inherit;
        text-align-last: inherit;
    }
    .about_caption h2 {
        font-size: 28px;
    }
    /* RIGHT */
    .about_right {
        width: 100%;
        padding: 0;
        margin-top: 50px;
    }
    .about_right .about_image {
        gap: 0;
    }
    .about_right .about_image img {
        margin: 0 0 0 0;
    }
    .about_right .about_image img:last-child {
        margin: 0;
    }
}





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

    10 . MARQUEE

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

.marquee {
    padding: 0 0 0 0!important;
}
.marquee-text-wrapper {
    white-space: nowrap;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    max-width: 1000% !important;
    width: 100vw !important;
}
.marquee-text {
    font-size: clamp(72px, 12vw, 248px)!important;
    line-height: 1.15;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    color: var(--color-grey-xlight);
}
.marquee-text:before {
    content: '.';
    color: transparent;
}





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

    11 . POPUP

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

/* ------------------------------------------- 
	ANIMATION
------------------------------------------- */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
	background:rgba(0,0,0,.9);
}
.mfp-fade.mfp-bg.mfp-ready { opacity: 0.9; }
.mfp-fade.mfp-bg.mfp-removing { opacity: 0; }
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content { opacity: 1; }
.mfp-fade.mfp-wrap.mfp-removing .mfp-content { opacity: 0; }

.mfp-zoom-in .mfp-with-anim { opacity: 0; transition: all 0.2s ease-in-out; transform: scale(0.8); }
.mfp-zoom-in.mfp-bg { opacity: 0; transition: all 0.3s ease-out; }
.mfp-zoom-in.mfp-ready .mfp-with-anim { opacity: 1; transform: scale(1); }
.mfp-zoom-in.mfp-ready.mfp-bg { opacity: 0.8; }
.mfp-zoom-in.mfp-removing .mfp-with-anim { transform: scale(0.8); opacity: 0; }
.mfp-zoom-in.mfp-removing.mfp-bg { opacity: 0; }

/* ------------------------------------------- 
	BASE
------------------------------------------- */
.popup {
	position: relative;
	background: var(--color-light);
	color: var(--color-dark);
	padding: 0;
	width:auto;
	max-width: 740px;
	margin: 10px auto;
}
.popup .mfp-close {
	/* background-color: var(--color-yellow)!important; */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 75px!important;
    height: 75px!important;
}
.popup .mfp-close:after {
	color: var(--color-yellow)!important;
    font-size: 66px!important;
}



/* INLINE */
.popup-inner {
    padding: 25px;
}
.popup-title {
	display: block;
	position: relative;
    font-family: var(--font-title);
    font-size: clamp(30px, 6vw, 40px);
	line-height: 1.1;
    font-weight: 300;
    text-transform: uppercase;
	color: var(--color-yellow);
    padding: 0 50px 0 0;
    margin: 0 0 20px 0;
}

.popup-content {
    /* font-size: 16px;
    line-height: 21px; */
}
.popup-content p {
    margin: 0 0 10px 0;
}
.popup-content p:last-child {
    margin: 0;
}

.popup-img {
    margin: 0 0 25px 0;
}

.popup-desc {

}

.popup-cta {
    display: flex;
    margin: 25px 0 0 0;
}
.popup-cta a {
    align-self: flex-start;
    text-transform: uppercase;
}


















