/* PICTURE */
picture[background] {
	position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
picture[alpha]:after {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
    width: 100%;
    background: var(--black);
    content: '';
    opacity: 0.7;
}
picture[alpha][light]:after {
	background: var(--white);
	opacity: 0.95;
}
picture[landscape] {
	aspect-ratio: 7/8;
} 
picture[landscape="2/3"] {
	aspect-ratio: 2/3;
}
picture[landscape="3/4"] {
	aspect-ratio: 3/4;
}
picture[portrait] {
	aspect-ratio: 3/2;
}
picture[icon] {
	width: 24px;
	height: 24px;
}
picture[icon] img {
	object-fit: contain;
}

/* COL BG */
[column-background] {
	margin-left: -80px;
    padding: 0 80px;
}

/* ROUNDED */
.rounded {
	border-radius: 5px;
}
.rounded.m {
	border-radius: 20px;
}
.rounded.l {
	border-radius: 40px;
}
.rounded.xl {
	border-radius: 60px;
}

/* NAVIGATION */
nav {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 100px;
	background: var(--black);
	z-index: 10;
}
nav ul {
	margin: 0;
	padding: 0;
}
nav ul li {
	list-style-type: none;
	z-index: 2;
}
nav ul li a:not(.button) {
	display: flex;
	align-items: center;
	padding: 0 20px;
	color: var(--white);
	font-family: 'ClashDisplay-Medium';
	letter-spacing: 0.3em;
	text-transform: uppercase;
}
nav ul li.menu-item-has-children a:after {
	position: relative;
	top: 2px;
	display: block;
	width: 8px;
	height: 4px;
	margin-left: 10px;
	background: url('../img/nav-arrow.svg') no-repeat center / contain;
	content: '';
}
nav ul li a:hover,
nav ul li a.active,
nav ul li.current-lang a {
	color: var(--primary);
}


/* LOGO */
.logo {
	display: flex;
	align-items: center;
	width: 186px;
	height: 23px;
}

/* CAROUSEL */
.owl-carousel .owl-item picture {
	background: var(--black);
}
.owl-carousel .owl-item picture img {
	object-fit: contain;
}
.owl-carousel .owl-nav {
	position: absolute;
	left: 0;
	bottom: calc(2 * var(--size-xl));
	display: flex;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	width: 41px;
	height: 35px;
	background-image: url("data:image/svg+xml,%3Csvg width='41' height='35' viewBox='0 0 41 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M27.5701 0C27.5701 9.58 35.6201 17.27 40.9301 17.27' stroke='white' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M27.5701 34.55C27.5701 24.97 35.6201 17.28 40.9301 17.28' stroke='white' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M38.96 17.27H0' stroke='white' stroke-width='2' stroke-miterlimit='10'/%3E%3C/g%3E%3C/svg%3E");
}
.owl-carousel .owl-nav button.owl-prev {
	margin-right: var(--size-s);
	transform: rotate(180deg);
}
.owl-carousel .owl-nav button span {
	display: none;
}
.owl-carousel .owl-nav button.disabled {
	opacity: 0.5;
	pointer-events: none;
}

/* HEADER */
header {
	height: 850px;
	padding: 160px 0;
	background: #121212;
	color: var(--white);
}
header picture[alpha]:after {
	background: linear-gradient(to right, black 40%, transparent);
	opacity: 1;
}


/* SECTION */
section {
	padding: calc(2 * var(--size-xl)) 0;
}
section[border-radius] {
	margin-top: -100px;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
}

/* LINE */
.line {
	display: block;
	width: 100%;
	height: 1px;
}

/* BUTTON */
.button {
	display: block;
	min-width: 200px;
	border: 1px solid #979797;
	border-radius: 6px;
	color: var(--white);
	font-family: 'ClashDisplay-Semibold';
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	text-transform: lowercase;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
}
.button:hover {
	border-color: var(--white);
	color: var(--white);
}
.button.dark {
	background: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.button.dark:hover {
	background: #20252A;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}


/* FORM */
form label {
	color: var(--primary);
	font-size: 15px;
}
form input {
	width: 100%;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--primary);
	border-radius: 0;
	padding: 15px 0;
	font-size: 17px;
	outline: none;
	text-align: center;
}


/* FOOTER */
footer {
	background: var(--black);
	padding: 80px 0;
}
footer ul {
	margin: 0;
	padding: 0;
}
footer ul li {
	margin-top: var(--size-s);
	list-style-type: none;
}
footer ul li:first-child {
	margin-top: 0;
}
footer .socials {
	display: flex;
	height: 25px;
}
footer .socials img {
	width: auto;
	height: 25px;
}
footer .slogan {
	padding-left: var(--size-l);
	border-left: 1px solid var(--gray-darker);
	font-family: 'ClashDisplay-Medium';
	font-size: 30px;
}


/* ANCHOR */
.section__anchor {
	top: -99px;
}

/* GALLERY */
.gallery .gallery__preview {
	/* height: 675px; */
}
.gallery .gallery__thumbs {
	height: 220px;
}
.gallery .gallery__thumbs > div {
	opacity: 0.3;
	transition: all 0.2s ease-in-out;
}
.gallery .gallery__thumbs > div:hover {
	opacity: 1;
}


/* PAGES */
.page-home .offices {
	min-height: 810px;
}
.page-home .offices .offices__list {
	position: absolute;
	top: -170px;
	right: 0;
}












