@charset "UTF-8";

:root {
	--color-beige: 220,217,209;
	--color-black: 0,0,0;
	--color-blue: 194,205,214;
	--color-dark-green: 61,77,66;
	--color-green: 196,204,199;
	--color-grey-10: 26,26,26;
	--color-grey-50: 128,128,128;
	--color-grey-75: 190,190,190;
	--color-white: 255,255,255;

    --transition-duration-bt: 0.4s;
	--transition-timing-linear: linear;
	--transition-timing-ease-out: cubic-bezier(0,0.6,0.4,1);
	--transition-timing-ease-in-out: cubic-bezier(0.6,0,0.4,1);
}

html {
	height: 100%;
	font-family: 'Open Sans', sans-serif;
}

body {
	width: 100%;
	height: 100%;
	background: rgb(var(--color-white));
	overflow-y: scroll;
}

body.noscroll {
	overflow: hidden;
}

.notransition {
	transition: none !important;
}

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}

img, iframe, video {
	display: block;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, hr, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, button, section, summary, time, mark, audio, video {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
	border: none;
}

ul, li {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3, h4, h5 {
	font-weight: normal;
}

button {
	background: none;
	border-radius: 0;
	cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

*:focus {
    outline: 0;
}


/*************************************
	Header
 *************************************/


header {
    display: block;
    position: absolute;
	width: 100%;
    top: 0;
    background: rgba(var(--color-white),1);
	margin: 0;
    padding: 0;
    transition: background-color 0.4s linear;
    z-index: 200;
}

body.home header {
    background: rgba(var(--color-white),0);
}

header.fixed,
body.home header.fixed {
    position: fixed;
    background: rgba(var(--color-white),0.85);
	transition: background-color 0.4s 0.6s linear, transform 0.6s;
}

header.hide {
	transform: translateY(-100%);
}

header nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    column-gap: 10px;
    padding: 48px max(120px, (160 / 1366) * 100vw);
}

header nav a.logo {
    display: block;
    margin-right: auto;
    transition: opacity 0.2s linear;
}

body.home header nav a.logo {
    opacity: 0;
    pointer-events: none;
}

header.fixed nav a.logo,
body.home header.fixed nav a.logo {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.6s;
}

header nav a.logo img {
    width: auto;
    height: 32px;
}

@media screen and (min-width: 721px) {
    body:not(.home) header.top nav a.logo img {
        height: 84px;
        margin: -8px 0;
        transition: height 0.4s cubic-bezier(0.25,0.25,0.25,1), margin 0.4s cubic-bezier(0.25,0.25,0.25,1);
    }
}

header nav ul.top-tools {
	display: flex;
    column-gap: 10px;
}

header nav ul.top-tools li {
	display: flex;
    column-gap: 10px;
    color: rgb(var(--color-black));
    font-weight: 500;
    font-size: 14px;
    line-height: 1em;
    text-transform: uppercase;
}

header nav ul.top-tools li a {
	height: 1em;
}

*#menu-item-270, #menu-item-1052, #menu-item-1021, #menu-item-1054 {
	background-color: #c2cdd6;
	padding: 20px;
	font-size: 20px;
}

#menu-item-270:hover, #menu-item-1052:hover, #menu-item-1021:hover, #menu-item-1054:hover {
	opacity: 0.8;
	cursor: pointer;
}

#menu-item-wpml-ls-11-en, #menu-item-wpml-ls-11-fr {
	padding: 20px 10px;
	font-size: 20px;
}

header div.ico {
    margin-top: 20px;
}

header nav ul.top-tools li + li:before {
    /*content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    background: rgb(var(--color-black));*/
    /*vertical-align: middle;*/
    /*margin-right: 10px;*/
}

header nav ul.main-menu {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
	position: fixed;
	height: 100vh;
    right: 0;
    top: 0;
    padding: 110px 0 0 0;
    pointer-events: none;
	z-index: 10;
}

header nav ul.main-menu:before,
header nav ul.main-menu:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: translateX(100%);
    transform-origin: left top;
    transition: transform 0.6s;
    z-index: -1;
}

header nav ul.main-menu:before {
    background: rgba(var(--color-blue),0.85);
}

header nav ul.main-menu:after {
    background: rgba(var(--color-black),0.85);
}

header nav ul.main-menu li {
    position: relative;
	width: calc(max(120px, (160 / 1366) * 100vw) + 50px + 1.5em);
    color: rgb(var(--color-grey-50));
    font-size: 16px;
    line-height: 1.25em;
    text-transform: uppercase;
    padding: 0.75em 1.5em;
    opacity: 0;
    transform: translateX(0.5em);
    transition: opacity 0.2s linear, transform 0s 0.2s linear;
}

header nav ul.main-menu li a {
    transition: color 0.2s linear;
}

header nav ul.main-menu li a:hover,
header nav ul.main-menu li a.active,
header nav ul.main-menu li.current_page_item a {
    color: rgb(var(--color-white));
}

header nav ul.main-menu li:not(.home) + li {
    border-top: solid 1px rgba(var(--color-white),0.2);
}

header nav ul.main-menu li.home,
header nav ul.main-menu li.lang,
header nav ul.main-menu li:last-of-type {
    margin-top: 0 !important;
}

header nav ul.main-menu li.lang,
header nav ul.main-menu li:last-of-type {
    flex-grow: 2;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
}


/*--  nav-open  --*/

body.nav-open {
	overflow: hidden;
}

body.nav-open header nav ul.main-menu {
    pointer-events: auto;
}

body.nav-open header nav ul.main-menu:before,
body.nav-open header nav ul.main-menu:after,
body.nav-close header nav ul.main-menu:before,
body.nav-close header nav ul.main-menu:after {
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.2,0.1,0.4,1);
    animation-fill-mode: both;
}

body.nav-open header nav ul.main-menu:before,
body.nav-close header nav ul.main-menu:before {
    animation-name: kf-nav-bckg1;
}

body.nav-open header nav ul.main-menu:after,
body.nav-close header nav ul.main-menu:after {
    animation-name: kf-nav-bckg2;
}

body.nav-close header nav ul.main-menu:before,
body.nav-close header nav ul.main-menu:after {
    animation-direction: reverse;
}

@keyframes kf-nav-bckg1 {
    0% {
        transform: scaleX(1) translateX(100%);
    }
    50% {
        transform: scaleX(1) translateX(0);
    }
    100% {
        transform: scaleX(0) translateX(0);
    }
}

@keyframes kf-nav-bckg2 {
    0%, 50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

body.nav-open header nav ul.main-menu li {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s linear, transform 0.6s cubic-bezier(0,0.6,0.4,1);
}

body.nav-open header nav ul.main-menu li:nth-child(1) {
    transition-delay: 0.6s;
}

body.nav-open header nav ul.main-menu li:nth-child(2) {
    transition-delay: 0.7s;
}

body.nav-open header nav ul.main-menu li:nth-child(3) {
    transition-delay: 0.8s;
}

body.nav-open header nav ul.main-menu li:nth-child(4) {
    transition-delay: 0.9s;
}

body.nav-open header nav ul.main-menu li:nth-child(5) {
    transition-delay: 1s;
}

body.nav-open header nav ul.main-menu li:nth-child(6) {
    transition-delay: 1.1s;
}

body.nav-open header nav ul.main-menu li:nth-child(7) {
    transition-delay: 1.2s;
}

body.nav-open header nav ul.main-menu li:nth-child(8) {
    transition-delay: 1.3s;
}

body.nav-open header nav ul.main-menu li:nth-child(9) {
    transition-delay: 1.4s;
}

body.nav-open header nav ul.main-menu li:nth-child(10) {
    transition-delay: 1.5s;
}


/*--  nav ico  --*/


header div.ico {
    display: block;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 50px;
    z-index: 20;
}

header div.ico > div {
    display: block;
    position: relative;
    width: 50px;
    height: 24px;
}

header div.ico span {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background: rgb(var(--color-black));
    transition: width 0s 0.3s, background 0.3s 0.3s, opacity 0.3s 0.3s, top 0.3s 0.3s, transform 0.3s;
}

body.nav-open header div.ico span {
    background: rgb(var(--color-white));
    transition: width 0s 0.3s, background 0.3s, opacity 0.3s, top 0.3s, transform 0.3s 0.3s;
}

header div.ico span:nth-child(1) {
    top: 0px;
}

header div.ico span:nth-child(2) {
    top: calc(50% - 2px);
}

header div.ico span:nth-child(3) {
    top: calc(100% - 4px);
    right: 0;
}

body.nav-open header div.ico span:nth-child(1) {
    top: calc(50% - 2px);
    transform: rotate(45deg);
}

body.nav-open header div.ico span:nth-child(2) {
    opacity: 0;
}

body.nav-open header div.ico span:nth-child(3) {
    top: calc(50% - 2px);
    width: 100%;
    transform: rotate(-45deg);
}


/*************************************
	Sections
 *************************************/


main {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

body:not(.home) main {
    padding-top: calc((48px * 2) + 84px - 16px);
}

.page {
	flex: 1 0 auto;
	display: block;
	position: relative;
}

section {
    display: block;
    position: relative;
    color: rgb(var(--color-black));
}

section + section,
footer section.registration-form {
    margin-top: 12px;
}

section > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
}

section > div > div,
.slider.common-areas div.text {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    position: relative;
    padding: max(60px, (80 / 1366) * 100vw) max(120px, (160 / 1366) * 100vw);
}

section > div > div:only-of-type {
    grid-column: 1 / -1;
}

section > div > div:not(:only-of-type):nth-of-type(odd) {
    padding-right: max(51px, (68 / 1366) * 100vw);
}

section > div > div:nth-of-type(even) {
    padding-left: max(51px, (68 / 1366) * 100vw);
}

.no-margin {
    margin: 0 !important;
}

.no-padding:not(.w720) {
    padding: 0 !important;
}

section > div > div.cover {
    min-height: calc(50vw / (var(--img-w) / (var(--img-h) * 0.8333)));
}

section > div > div.cover:only-of-type {
    min-height: calc(100vw / (var(--img-w) / (var(--img-h) * 0.8333)));
}

section > div > div.cover img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-size picture,
.full-size img {
    width: 100%;
    height: auto;	
}

section > div > div.square {
    min-height: 50vw;
}

section h2 {
    display: block;
	min-height: 0vh;
    font-weight: 400;
    font-size: 32px;
    font-size: clamp(24px, (32 / 1366) * 100vw, 32px);
    letter-spacing: 0.05em;
    line-height: 1.25em;
    text-transform: uppercase;
}

section h2.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s linear, transform 0.6s cubic-bezier(0.25,0.25,0.25,1);
	transition-delay: var(--transition-delay);
}

section h2.hide {
    opacity: 0;
    transform: translateY(1.25em);
}

section h2.h2-border {
	flex-shrink: 0;
    display: flex;
    position: relative;
    width: clamp(300px, (400 / 1366) * 100vw, 400px);
    min-height: clamp(300px, (400 / 1366) * 100vw, 400px);
    border: solid 8px rgb(var(--color-white));
    padding: clamp(33px, (44 / 1366) * 100vw, 44px);
    z-index: 1;
}

section h2.h2-border:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: -8px;
    top: -8px;
    border: solid 8px rgb(var(--color-beige));
}

section h2.h2-border.overflow-top {
	align-items: flex-end;
    margin-top: min(-114px, ((((-80 - 56) / 1366) * 100vw) - 12px));
}

section h2.h2-border.overflow-top:after {
    clip-path: inset(max(42px, (56 / 1366) * 100vw) 0 0 0);
}

section > div > div:nth-child(1) h2.h2-border.overflow-top {
	margin-left: clamp(-44px - 8px, ((-44 / 1366) * 100vw) - 8px , -33px - 8px);
}

section h2.h2-border.overflow-right {
    align-self: flex-end;
    margin-right: min(-93px, ((-68 - 56) / 1366) * 100vw);
    padding-right: max(36px, (48 / 1366) * 100vw);
}

section h2.h2-border.overflow-right:after {
    clip-path: inset(0 max(42px, (56 / 1366) * 100vw) 0 0);
}

section h2.h2-border + p {
    margin-top: max(60px, (80 / 1366) * 100vw);
}

section h3 {
    display: block;
	min-height: 0vh;
    font-weight: 500;
    font-size: clamp(36px, (60 / 1366) * 100vw, 60px);
    letter-spacing: 0.05em;
    line-height: 1.0967em;
    text-transform: uppercase;
}

section h4 {
    display: block;
	min-height: 0vh;
    font-weight: 400;
    font-size: clamp(24px, (48 / 1366) * 100vw, 48px);
    letter-spacing: 0.05em;
    line-height: 1.25em;
    text-transform: uppercase;
}

section h5 {
    display: block;
	min-height: 0vh;
    font-weight: 500;
    font-size: clamp(21px, (24 / 1366) * 100vw, 24px);
    letter-spacing: 0.05em;
    line-height: 1.2778em;
    text-transform: uppercase;
}

section p,
section ul.list-style-display-disc li {
	min-height: 0vh;
    font-weight: 400;
    font-size: clamp(16px, (18 / 1366) * 100vw, 21px);
    line-height: 1.2778em;
}

section ul.item-list + p {
    margin-top: max(60px, (80 / 1366) * 100vw);
}

section * + p,
section * + h5 {
    margin-top: 1.2778em;
}

section h5 + p {
    margin-top: 0.6389em;
}

section p.show,
section h5.show,
ul.list-style-display-disc.show {
    opacity: 1;
    transition: opacity 0.6s linear;
	transition-delay: var(--transition-delay);
}

section p.hide,
section h5.hide,
ul.list-style-display-disc.hide {
    opacity: 0;
}

section ul.list-style-display-disc {
	padding-left: 2.5em;
}

section ul.list-style-display-disc li {
	margin-top: 0.6389em;
}

section ul.list-style-display-disc li:before {
	content: "•";
	display: block;
	position: absolute;
	margin-left: -1em;
}

section p a {
    text-decoration: underline;
}

strong {
    font-weight: 700;
}

sup {
	display: inline-block;
	position: relative;
	font-size: 0.6em;
	vertical-align: top;
	margin-top: -0.3em;
}

section.beige {
    background-color: rgb(var(--color-beige));
}

section.black {
    background-color: rgb(var(--color-black));
    color: rgb(var(--color-white));
}

section.blue {
    background-color: rgb(var(--color-blue));
}

section.green {
    background-color: rgb(var(--color-green));
}

.align-items-center {
    align-items: center;
}

.flex-direction-row {
	flex-direction: row;
	column-gap: max(51px, (68 / 1366) * 100vw);
}

.justify-content-center {
	justify-content: center;
}

.align-self-center {
    align-self: center;
}

.text-align-center {
    text-align: center;
}

.text-decoration-underline {
	text-decoration: underline !important;
}

.text-transform-none {
	text-transform: none !important;
}

.text-transform-uppercase {
	text-transform: uppercase !important;
}

.white-space-nowrap {
	white-space: nowrap;
}

div.logo-griffin-square-h1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

img.logo-griffin-square-h1 {
	min-height: 0vh;
    width: clamp(201px, (268 / 1366) * 100vw, 308px);
    height: auto;
}

ul.item-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    column-gap: 6em;
    row-gap: 5em;
    min-height: 0vh;
    font-size: clamp(12px, (12 / 1366) * 100vw, 14px);
    margin-top: 5em;
}

ul.item-list li {
    text-align: center;
}

main section ul.item-list li img {
    display: inline-block;
    width: 6em;
    height: 6em;    
}

ul.item-list li img.show {
    animation: kf-amenities-img-show 0.4s cubic-bezier(0.25,0.25,0.25,1) backwards;
    animation-delay: var(--transition-delay);
}

@keyframes kf-amenities-img-show {
    0% {
		opacity: 0;
		transform: translateY(100%);
	}
    100% {
		opacity: 1;
		transform: translateY(0);
	}
}

ul.item-list li img.hide {
    opacity: 0;
}

ul.item-list li figcaption {
    line-height: 1.25em;
    text-transform: uppercase;
}

ul.item-list li figcaption.show {
    opacity: 1;
    transition: opacity 0.4s linear;
	transition-delay: var(--transition-delay);
}

ul.item-list li figcaption.hide {
    opacity: 0;
}

.in-text-img {
	flex-grow: 2;
	display: block;
	position: relative;
    width: 100%;
	margin-top: max(30px, (40 / 1366) * 100vw);
}

.in-text-img img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section img.partners.logo-mondev {
    width: auto;
    height: 45px;
}

section img.partners.logo-hillpark-capital {
    width: auto;
    height: 17px;
	margin: 14px 0;
}

.bt,
.bt:after {
    display: inline-block;
	border: solid 1px rgb(var(--color-black));
	font-size: 1em;
	text-transform: uppercase;
}

.bt {
	position: relative;
	background: rgb(var(--color-white));
	color: rgb(var(--color-black));
    text-decoration: none;
	padding: 0.75em 1.5em;
}

.bt + .bt  {
    margin-left: 1.5em;
}

.bt:after {
	content: attr(data-name);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: -1px;
	top: -1px;
	background: rgb(var(--color-black));
	color: rgb(var(--color-white));
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.4s cubic-bezier(0.25,0.25,0.25,1);
}

.bt:hover:after {
	clip-path: inset(0 0 0 0);
}

.bt.show:after {
    animation: kf-bt-show 0.4s cubic-bezier(0.25,0.25,0.25,1) backwards;
    animation-delay: var(--transition-delay);
}

@keyframes kf-bt-show {
    0%   {clip-path: inset(0 0 0 0);}
    100%  {clip-path: inset(0 0 0 100%);}
}

.grecaptcha-badge { 
    visibility: hidden;
}

section.black .bt,
section.black .bt:after {
	border-color: rgb(var(--color-white));
}

section.black .bt {
	background: rgb(var(--color-black));
	color: rgb(var(--color-white));
}

section.black .bt:after {
	background: rgb(var(--color-white));
	color: rgb(var(--color-black));
}

section.blue .bt {
	background: transparent;
}

section.gallery > div > div {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: calc((164 / 1366) * 100vw);
	grid-auto-flow: dense;
	grid-gap: 12px;
	padding-top: 0;
	padding-bottom: 0;
}

section.gallery > div > div > *,
section.gallery > div > div figure,
section.gallery > div > div picture {
	display: block;
	position: relative;
    width: 100%;
    height: 100%;
}

section.gallery > div > div > *.show,
section.gallery > div > div > *.loaded {
	opacity: 1;
    transition: opacity 0.4s linear;
	transition-delay: var(--transition-delay);
}

section.gallery > div > div > *.hide,
section.gallery > div > div > *.loading {
	opacity: 0;
}

section.gallery > div > div picture img {
	position: absolute;
	width: 100%;
	height: 100%;
    object-fit: cover;
}

.grid-column-start {
    grid-column-start: var(--grid-column-start);
}

.grid-column-end {
    grid-column-end: var(--grid-column-end);
}

.grid-row-start {
    grid-row-start: var(--grid-row-start);
}

.grid-row-end {
    grid-row-end: var(--grid-row-end);
}

.ico-bt-play:after {
    content: "";
    display: block;
    position: absolute;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    background: url("../images/ico-bt-play.svg") center center no-repeat;
    background-size: contain;
    filter: drop-shadow(0 0 10px rgba(var(--color-black),1));
    transform: translate(-50%, -50%);
}


/*************************************
	Form
 *************************************/


form {
	position: relative;
	font-size: 0px;
	counter-reset: inp_radio;
}

form.hide {
	height: 0 !important;
	overflow: hidden;
	transition: height 0.6s cubic-bezier(0.25,0.25,0.25,1);
}

form h2 {
    margin-bottom: 40px;
}

form input, 
form textarea,
form select,
form label,
form button[type="submit"],
form p {
    display: block;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.25em;
    margin: 0;
	padding: 0;
}

form label {
	text-transform: uppercase;
}

form input, 
form textarea,
form select,
form label:not(.checkbox) span {
    padding: 0.5em 0.75em;
}

form input, 
form textarea,
form select {
    width: 100%;
    min-height: 0;
	background: transparent;
	border: solid 1px rgb(var(--color-black));
    border-radius: 0;
    -webkit-appearance: none;
	appearance: none;
    transition: min-height 0.4s var(--transition-timing-ease-in-out);
}

form select {
	padding-right: 2.5em;
}

form textarea {
	height: calc(2.25em + 2px);
	transition: height 0.4s;
}

form textarea.focus-in {
	height: 4.75em;
}

form input:-webkit-autofill,
form input:-webkit-autofill:hover, 
form input:-webkit-autofill:focus, 
form input:-webkit-autofill:active {
    -webkit-text-fill-color: rgb(var(--color-black));
	-webkit-box-shadow: 0 0 0 30px rgb(var(--color-beige)) inset !important;
	box-shadow: 0 0 0 30px rgb(var(--color-beige)) inset !important;
}

form input[type="radio"] {
	display: block;
	width: 0;
	background: transparent;
	border: none;
	margin: 0;
	padding: 0;
}

form input[type="radio"]:before {
	content: counter(inp_radio, upper-alpha);
	counter-increment: inp_radio;
	transition: color 0.2s linear;
}

form label.radio,
form input[type="radio"],
form label.checkbox,
form input[type="checkbox"] {
	cursor: pointer;
}

form label.select {
	overflow: hidden;
}

form label.focus-in.select {
	overflow: visible;
}

form label.select:after {
	content: "";
	display: block;
	position: absolute;
	width: 14px;
	height: 14px;
	right: 0.75em;
	top: 50%;
	border-right: solid 1px rgb(var(--color-black));
	border-bottom: solid 1px rgb(var(--color-black));
	transform: rotate(45deg) translate(-50%, -50%);
	transform-origin: center center;
}

form label.select.focus-in:after {
	top: 3.3em;
}

form label {
	transition: padding 0.4s var(--transition-timing-ease-in-out);
}

form label + label {
	/*margin-top: 6px;*/
	margin-top: 0.5em;
}

form.show label {
	opacity: 1;
	transition: opacity 0.6s linear, padding 0.4s var(--transition-timing-ease-in-out);
}

form.show label:nth-child(2) {
	transition-delay: 0.1s;
}

form.show label:nth-child(3) {
	transition-delay: 0.2s;
}

form.show label:nth-child(4) {
	transition-delay: 0.3s;
}

form.show label:nth-child(5) {
	transition-delay: 0.4s;
}

form.show label:nth-child(6) {
	transition-delay: 0.5s;
}

form.show label:nth-child(7) {
	transition-delay: 0.6s;
}

/*form label:not(.select):not(.radio):not(.textarea).focus-in {*/
form label:not(.radio):not(.textarea).focus-in {
    padding-top: 2.2em;
	transition-delay: 0s;
}

form label:not(.checkbox) span {
	position: absolute;
	border: solid 1px rgba(0,0,0,0);
	transform-origin: left bottom;
	transition: color 0.4s linear, transform 0.4s var(--transition-timing-ease-in-out);
}

/*form label:not(.select):not(.radio).focus-in span {*/
form label:not(.radio).focus-in span {
    transform: scale(0.8) translateY(-120%);
    transition: color 0.4s 0.2s linear, transform 0.4s 0.2s var(--transition-timing-ease-in-out);
}

form label.radio {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 2em;
	transition: color 0.2s linear;
}

form label.checkbox {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 1em;
    margin:  2em 0;
    padding: 0;
    transform: none;
}

form label.checkbox span {
	align-self: center;
	text-transform: none;
}

form label + p {
	font-weight: 300;
	margin-top: 4em;
}

form input[type="checkbox"] {
    align-self: start;
	width: auto;
	height: auto;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	font-size: 0;
	margin: 0;
	padding: 0;	
}

form input[type="checkbox"]:before{
	content: "\f00c";
	display: block;
	width: 2.25em;
	height: 2.25em;
	min-height: 0vh;
	background: transparent;
	border: solid 1px rgb(var(--color-black));
	color: rgba(var(--color-black), 0);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	line-height: 2.25em;
	text-align: center;
	transition: color 0.2s linear;
}

form input[type="checkbox"]:checked:before {
    color: rgba(var(--color-black), 1);
}

form button[type="submit"] {
	background: rgb(var(--color-black));
	color: rgb(var(--color-white));
    margin-top: 1.5em;
	padding: 0.75em 1.5em;
}

form button[type="submit"]:after {
	background: rgb(var(--color-white));
	color: rgb(var(--color-black));
}

form button[type="submit"]:disabled {
	opacity: 0.25;
}

form.show button[type="submit"] {
	opacity: 1;
	transition: opacity 0.6s linear;
	transition-delay: 0.8s;
}

.error {
	color: #FF0000 !important;
}

.takk {
	display: block;
	position: relative;
	animation: kf-fade-in 0.4s 0.6s linear both;
}


/*************************************
	Footer
 *************************************/


.widget {
    display: block;
    position: fixed;
    right: 0;
    /* bottom: 50%; */
	bottom: 0;
    z-index: 100;
}

.widget > div {
    display: block;
    position: absolute;
	left: 0;
	top: 0;
	/* transform: rotate(-90deg) translate(-50%, -100%); */
	transform: translate(-100%, -100%);
	transform-origin: left top;
}

.widget > div a {
    display: block;
	min-height: 0vh;
    background-color: rgb(var(--color-green));
    color: rgb(var(--color-black));
    font-size: clamp(18px, (24 / 1366) * 100vw, 24px);
    line-height: 1em;
    text-transform: uppercase;
    white-space: nowrap;
	padding: 0.75em 1.5em;
}

.widget.absolute {
    /* position: absolute; */
	position: fixed;
    bottom: 0;
}

.widget.absolute > div {
   /* transform: rotate(-90deg) translate(0, -100%); */
   transform: translate(-100%, -100%);
}

footer {
    font-size: 14px;
	letter-spacing: 0.05em;
    line-height: 1.6429em;
}

footer .footer-container {
	padding: 5% 10% !important;
}

footer section.registration-form {
    z-index: 20;
}

footer section.registration-form div.form-pattern {
    background: url("../images/pattern-footer-form.svg") left top repeat;
    background-attachment: fixed;
	background-size: min(288px, (288 / 1366) * 100vw);
    opacity: 0.04;
}

section + section,
footer section.registration-form .info.black {
    margin-top: 0 !important;
}

footer .logo {
	align-self: start;
}

img.logo-griffin-square {
    width: auto;
    height: 115px;
	/*padding-top: 25px !important;*/
}

footer img.logo-mondev {
    width: auto;
    height: 44px;
}

footer img.logo-hillpark-capital {
    width: auto;
    height: 17px;
}

footer section.info {
    position: sticky;
    bottom: 0;
}

footer section.info > div > div {
    display: grid;
    grid-template-columns: 1fr auto auto;
	align-items: center;
    grid-gap: 40px;
	position: relative;
}

footer section.info > div > div > div:nth-child(4) {
	grid-column-start: 2;
}

footer .social-networks {
	/*place-self: center center;*/
	place-self: start center;
    display: grid;
    grid-template-columns: repeat(2, auto);
	grid-gap: 10px;
}

footer .social-networks > *:nth-child(1) {
    grid-column: 1 / -1;
}

footer .social-networks > *:nth-child(3) {
	justify-self: end;
}

footer .social-networks i {
    font-size: 36px;    
}

/*footer .adresse {
	padding-top: 50px;
}*/

footer section.legal {
	background: rgb(var(--color-grey-10));
	color: rgb(var(--color-white));
	margin-top: 0;
}

footer section.legal > div > div {
	grid-column: 1 / -1;
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
}

footer section.legal > div > div > span {
    display: inline-block;
}

footer section.legal > div > div > span + span:before {
    content: "|";
    display: inline-block;
    margin: 0 0.5em;
}


/*************************************
	Lightbox
 *************************************/


#lightbox, #lightbox .lightbox_bckg {
	position: fixed;
	display: none;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

#lightbox {
	z-index: 2000;
}

#lightbox.show {
	display: block;
	animation: kf-fade-in 0.2s linear 0s forwards;
}

#lightbox .lightbox_bckg {
	display: block;
	background: rgba(var(--color-black),0.75);
}

#lightbox button.bt-close {
	width: 50px;
	height: 50px;
	color: rgb(var(--color-white));
	font-size: 32px;
	line-height: 50px;
	text-align: center;
}

#lightbox button.bt-close:after {
	content: "\2715";
}

#lightbox div.lightbox-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
    pointer-events: none;
}

#lightbox div.lightbox-content {
	display: block;
	position: relative;
	box-shadow: 0 0 30px rgba(var(--color-black), 0.5);
    pointer-events: auto;
}

#lightbox div.lightbox-content.gallery {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	width: calc(100vw - 40px);
	height: calc(100vh - 40px);
	background: rgba(var(--color-black),0.85);
	padding: 20px;
}

#lightbox div.lightbox-content.gallery div.media {
	flex-grow: 1;
	display: block;
	position: relative;
	width: 100%;
}

#lightbox div.lightbox-content.gallery iframe,
#lightbox div.lightbox-content.gallery img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	animation: kf-fade-in 0.8s linear 0s forwards;
}

#lightbox div.lightbox-content.gallery img {
	object-fit: contain;
}

#lightbox div.lightbox-content.gallery div.ctrl-arr {
	display: flex;
	column-gap: 1px;
}

#lightbox div.lightbox-content.gallery div.ctrl-arr button {
    display: inline-block;
	position: relative;
	width: 50px;
	height: 50px;
    background: rgba(var(--color-white), 0.8);
	opacity: 0.2;
	pointer-events: none;
	transform: none;
}

#lightbox div.lightbox-content.gallery div.ctrl-arr button:after {
    content: "\f060";
    color: rgb(var(--color-black));
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    transition: color 0.4s;
}

#lightbox div.lightbox-content.gallery div.ctrl-arr button[data-dir="next"]:after {
    content: "\f061";
}

#lightbox div.lightbox-content.gallery div.ctrl-arr button.show {
	opacity: 1;
	pointer-events: auto;
}

#lightbox div.lightbox-content.gallery button.bt-close {
	position: relative;
	opacity: 1;
	pointer-events: auto;
}


/****  Home popup  ****/


/*.grid-column-start {
    grid-column-start: var(--grid-column-start);
}*/
#lightbox .lightbox-content.lb-popup,
#lightbox .lightbox-content.lb-popup img {
	width: 660px;
	height: 790px;
	object-fit: cover;
}

#lightbox .lightbox-content.lb-popup {
	box-shadow: none;
}

#lightbox .lightbox-content.lb-popup button.bt-close {
	position: absolute;
	right: 0px;
	top: 0px;
	transform: translateY(-100%);
}

@media screen and (max-height: 930px) and (orientation : landscape) {
	#lightbox .lightbox-content.lb-popup,
	#lightbox .lightbox-content.lb-popup img {
		width: calc((660 / 790) * 85vh);
		height: 85vh;
	}
}

@media screen and (max-width: 780px) and (orientation : portrait) {
    #lightbox .lightbox-content.lb-popup,
	#lightbox .lightbox-content.lb-popup img {
		width: 85vw;
		height: calc((790 / 660) * 85vw);
	}
	#gs-top-tools {
		display: none;
	}
}


/*** ***/


@keyframes kf-fade-in {
    0%   {opacity: 0;}
    100%  {opacity: 1;}
}

@media screen and (max-width: 1024px) {
	section.gallery > div > div {
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: calc((253 / 1024) * 100vw);
	}
}

@media screen and (max-width: 960px) {
	header nav {
		padding: 36px min(120px, (60 / 768) * 100vw);
	}
    
	header nav ul.main-menu {
		padding: 86px 0 0 0;
	}
	
    header nav ul.main-menu li {
		width: 100%;
		font-size: 18px;
		line-height: 1.25em;
		padding: 0.75em 1.5em;
	}
    
    body:not(.home) main {
        padding-top: calc((36px * 2) + 84px - 16px);
    }
	
    section > div > div,
	.slider.common-areas div.text {
		padding: min(60px, (30 / 768) * 100vw) min(120px, (60 / 768) * 100vw);		
	}
	
    section > div > div:not(:only-of-type):nth-of-type(odd) {
		padding-right: min(120px, (30 / 768) * 100vw);
	}
	
    section > div > div:nth-of-type(even) {
		padding-left: min(120px, (30 / 768) * 100vw);
	}
	
	section h2.h2-border.overflow-top {
		margin-top: calc((((-30 - 32) / 768) * 100vw) - 12px);
	}

	section h2.h2-border.overflow-top:after {
		clip-path: inset(calc((32 / 768) * 100vw) 0 0 0);
	}

	section > div > div:nth-child(1) h2.h2-border.overflow-top {
		margin-left: 0;
	}
    
    section h2.h2-border.overflow-right {
        margin-right: calc(((-30 - 32) / 768) * 100vw);
    }

    section h2.h2-border.overflow-right:after {
        clip-path: inset(0 calc((32 / 768) * 100vw) 0 0);
    }
    
    section h2.h2-border + p {
        margin-top: min(60px, (30 / 768) * 100vw);
    }
    
    section ul + p {
        margin-top: min(60px, (30 / 768) * 100vw);
    }
	
    footer section.registration-form div.form-contact {
        grid-column: 1 / -1;
        padding-right: min(120px, (60 / 768) * 100vw);
    }

    footer section.registration-form div.form-contact form {
		width: 100%;
	}

    footer section.registration-form div.form-pattern {
        display: none;
    }
    
    footer img.logo-griffin-square {
        /*height: 125px;*/
		width: 90% !important;
    }

    footer img.logo-mondev {
        height: 33px;
    }

    footer img.logo-hillpark-capital {
        height: 13px;
    }
    
    footer .social-networks i {
        font-size: 27px;    
    }
    
    footer section.info > div > div {
        grid-gap: 30px;
    }
}

@media screen and (max-width: 720px) {
    header nav {
        column-gap: 0;
		padding: calc((32 / 375) * 100vw);
	}
        
    header nav > a {
        font-size: 18px;
        line-height: 24px;
    }

    header nav > a:not(.logo) + a:before {
        content: none;
    }
	
	header nav a.logo img {
		margin: -4px 0;
	}
    
    header nav > a.bt-register {
        display: none;
    }
    
    header nav ul.main-menu {
		padding: calc(((64 / 375) * 100vw) + 14px) 0 0 0;
	}
    
    header nav ul.main-menu li {
        width: 100vw;
        font-size: 18px;
    }
    
    header div.ico {
        margin-left: calc((32 / 375) * 100vw);
    }

    header div.ico > div {
        width: 36px;
        height: 24px;
    }
    
    body.home header nav a.logo {
        opacity: 1;
        pointer-events: auto;
    }
    
    body main,
    body:not(.home) main {
        padding-top: calc((((32 / 375) * 100vw) * 2) + 24px);
    }

    section + section,
    footer section.registration-form {
        margin-top: 8px;
    }
	
	section + section,
	footer section.registration-form .info.black {
		margin-top: 0 !important;
	}

    section > div > div, 
	.slider.common-areas div.text {
		grid-column: 1 / -1;
		padding: calc((24 / 375) * 100vw) calc((32 / 375) * 100vw);
	}
    
    section > div > div:not(.cover) + div {
        padding-top: 0;
    }
    
    section > div > div.cover,
    section > div > div.cover:only-of-type {
        min-height: max(100vw, 100vw / (var(--img-w) / (var(--img-h) * 0.8)));
    }
    
    section > div > div.square {
        min-height: 100vw;
    }
	
    section > div > div.cover:nth-child(2) {
        grid-row-start: 1;
    }

    section > div > div.contact {
        grid-row-start: 1;
		padding-top: calc((24 / 375) * 100vw) !important;
    }
	
    section > div > div:not(:only-of-type):nth-of-type(odd) {
		padding-right: calc((32 / 375) * 100vw)
	}
	
    section > div > div:nth-of-type(even) {
		padding-left: calc((32 / 375) * 100vw)
	}
    
    section h2.h2-border {
        width: calc((250 / 375) * 100vw);
        min-height: calc((250 / 375) * 100vw);
		border-width: 6px;
        padding: calc((24 / 375) * 100vw);
    }

    section h2.h2-border.overflow-top {
        margin-top: calc((((-24 - 36) / 375) * 100vw) - 8px);
    }

    section h2.h2-border.overflow-right {
        align-self: flex-start;
        margin-top: calc(((-24 - 36) / 375) * 100vw);
        margin-right: 0;
    }
	
    section h2.h2-border.overflow-right:after,
    section h2.h2-border.overflow-right:after {
		left: -6px;
		top: -6px;
		border-width: 6px;
        clip-path: inset(calc((36 / 375) * 100vw) 0 0 0);
    }
    
    section h2.h2-border.overflow-top,
    section h2.h2-border.overflow-right {
        align-items: flex-end;
    }
      
    section h2.h2-border + p {
        margin-top: calc((24 / 375) * 100vw);
    }
    
    section ul + p {
        margin-top: calc((24 / 375) * 100vw);
    }
    
    ul.item-list {
        column-gap: 2.5em;
        row-gap: 2.5em;
        margin-top: 2.5em;
    }
	
	section.gallery > div > div {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: calc((72 / 375) * 100vw);
		grid-gap: 8px;
	}

	section.gallery > div > div *.grid-column-end[style*="--grid-column-end: span 2;"] {
		grid-column-end: span 1;
		grid-row-end: span 2;
	}
	
	section.gallery > div > div *.grid-column-end[style*="--grid-column-end: span 3;"] {
		grid-column-end: span 1;
	}
	
	section.gallery > div > div *.grid-column-end[style*="--grid-column-end: span 4;"] {
		grid-column-end: span 2;
	}

	section.gallery > div > div *.grid-column-end[style*="--grid-column-end: span 6;"] {
		grid-column-end: span 2;
		grid-row-end: span 2;
	}
	
	section.gallery > div > div *.grid-row-end[style*="--grid-row-end: span 2;"] {
		grid-row-end: span 3;
	}

	section.gallery > div > div *.grid-column-end.grid-row-end[style*="--grid-column-end: span 4; --grid-row-end: span 2;"] {
		grid-column-end: span 2;
		grid-row-end: span 4;
	}
		
	.flex-direction-row {
		flex-direction: column;
		column-gap: 0;
		row-gap: calc((24 / 375) * 100vw);
	}
    
    .bt {
        display: block;
    }
    
    .bt + .bt  {
        margin-top: 1.5em;
        margin-left: 0;
    }
    
    .no-padding.w720 {
        padding: 0 !important;
    }

    footer section.info > div > div {
        grid-template-columns: auto 1fr;
        grid-gap: calc((24 / 375) * 100vw);
    }
    
    footer section.info > div > div > div:nth-child(1) {
        grid-column: 1 / -1;
    }

    footer section.info > div > div > div:nth-child(2) {
        grid-column: 1 / -1;
    }

    footer section.info > div > div > div:nth-child(3) {
        grid-column: 1 / -1;
        grid-row-start: 2;
    }

    footer section.info > div > div > div:nth-child(4) {
        grid-column-start: auto;
    }
	
	footer img.award {
        height: 250px;
    }
    
    footer .social-networks {
        place-self: start start;
        grid-gap: calc((24 / 375) * 100vw);
        padding-bottom: calc((24 / 375) * 100vw);
    }

    footer .social-networks > *:nth-child(1) {
        display: none;
    }

    footer section.legal {
        font-size: 12px;
    }

    footer section.legal > div > div > span {
        display: block;
    }

    footer section.legal > div > div > span + span:before {
        content: none;
    }
	
	#lightbox div.lightbox-content.gallery {
		display: flex;
		flex-flow: column nowrap;
		justify-content: space-between;
		align-items: flex-end;
		gap: 16px;
		width: calc(100vw - 32px);
		height: calc(100vh - 32px);
		background: rgba(var(--color-black),0.85);
		padding: 16px;
	}
	
	#lightbox div.lightbox-content.gallery div.ctrl-arr {
		justify-content: space-between;
		position: absolute;
		width: 100%;
		left: 0;
		bottom: 0;
		filter: drop-shadow(0 0 8px rgba(var(--color-black),1));
		padding: 16px;
		z-index: 10;
	}
	
	#lightbox div.lightbox-content.gallery div.ctrl-arr button {
		width: 32px;
		height: 32px;
		background: transparent;
	}

	#lightbox div.lightbox-content.gallery div.ctrl-arr button:after {
		color: rgb(var(--color-white));
	}

	#lightbox div.lightbox-content.gallery button.bt-close {
		position: absolute;
		width: 32px;
		height: 32px;
		filter: drop-shadow(0 0 8px rgba(var(--color-black),1));
		line-height: 32px;
		z-index: 10;
	}

}

.body-preload,
.preload {
	display: none !important;
}