/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@font-face {
  font-family: 'plus-jakarta-sans';
  src: url(/79ac663d53d7ec27f19a.woff2) format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'plus-jakarta-sans-italic';
  src: url(/0af84b3452be4616bfe5.woff2) format('woff2');
  font-weight: normal;
  font-style: italic;
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	background: #f4f1ed;
	overscroll-behavior: none;
}

body {
	color: #111;
    font-family: 'plus-jakarata-sans', sans-serif;
    font-size: 1.8rem;
    line-height: 1.45;
}

.header {
    width: 100%;
    color: #fff;
	z-index: 1000;
	position: relative;
	/* mix-blend-mode: difference; */
}

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

.header-w {
	mix-blend-mode: unset;
}

.header-container {
    width: 100%;
    height: 100%;

    padding: 0 6rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */

.logo {
	position: fixed;
    display: flex;
    align-items: center;
	top: 0;
	margin-top: 3rem;
	/* filter: invert(1); */
	z-index: 2;
}

.logo img {
    display: block;
    /* width: 45px; */
    height: auto;

    /* only use this if your logo is black */
    /* filter: invert(1); */
}

.logo-w img {
	/* filter: invert(1); */
}

.magnifying-glass {
	height: 1.5rem;
	width: 1.5rem;
}

/* Menu */

.header-w .menu {
	filter: invert(1);
}

.menu {
	position: fixed;
	right: 3rem;
	top: 0;
	margin-top: 1.5rem;
	z-index: 3;
	display: none;
	gap: .5rem;
	z-index: 2;
}

.menu-item {
	width: 6rem;
	height: 6rem;
	border: #00000025 1px solid;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-hamburger, .menu-magnifying-glass {
	background: none;
	outline: none;
	border: none;
	box-shadow: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu-item img {
	width: 2rem;
	height: 2rem;
}

.menu-item-hamburger {
	position: relative;
}

.menu-hamburger-close {
	transform: scale(1.15);
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	background: #111111;
	width: 100%;
	height: 100%;
	border-radius: 1rem;
}

.menu-hamburger-close img {
	filter: invert(1);
}

/* Navigation */

.navigation {
    position: fixed;
	right: 6rem;
	top: 0;
	height: 5.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #00000025;
	border-radius: 1rem;
	padding: 0 3.6rem;
	color: #000;
	margin-top: 2rem;
	/* filter: invert(1); */
}

.mobile-navigation {
	display: none;
	position: fixed;
	background-color: white;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	padding: 25rem 3rem 6rem;
}

.mobile-nav-item {
	margin-bottom: 1rem;
}

.mobile-nav-item a {
	color: black;
	font-size: 3.2rem;
	text-transform: uppercase;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;

    list-style: none;
}

.nav-list a,
.contact-link {
    text-decoration: none;
	text-transform: uppercase;
    font-family: plus-jakarta-sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
}

.nav-item {
	display: flex;
	align-items: center;
	position: relative;
}

.nav-item-icon {
	cursor: pointer;
}

.nav-item--contact a {
	display: flex;
	align-items: center;
}

.arrow {
	height: 1.1rem;
	width: max-content;
	margin-left: .5rem;
}

.arrow-side-reverse {
	transform: rotate(180deg) translateY(.06rem);
}

/* Hover */

.nav-list a {
    position: relative;
	color: #000;
}

.navigation .nav-list a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background: #111;

    transition: width 0.3s ease;
}

.navigation-w .nav-list a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background: #fff;

    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.navigation-w {
	color: #fff;
	border: 1px solid #ffffff25;
}

.navigation-w img {
	filter: invert(1);
}

.navigation-w a {
	color: white;
}

.contact-link {
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.6;
}

/* Search form */

.search-form {
	/* opacity: 0; */
	position: fixed;
	top: 2rem;
	right: 52.8rem;
	opacity: 0;
	z-index: 1001;
}

.search-input {
	height: 5.6rem;
	border-radius: 1rem;
	outline: none; 
	border: 1px solid #00000025;
	padding: 0 2rem;
	background: none;
	font-size: 1.4rem;
}

.header-w .search-input {
	color: white;
	border: 1px solid #ffffff25;
}

.search-form button {
	outline: none;
	background: none;
	border: none;
	padding-right: 1rem;
	font-size: 1.4rem;
	color: black;
	height: 5.6rem;
	border: 1px solid #00000025;
	padding: 0 2rem;
	border-radius: 1rem;
	cursor: pointer;
	font-family: 'plus-jakarata-sans', sans-serif;
}

.header-w .search-form button {
	color: white;
	border: 1px solid #ffffff25;;
}

.search-results {
	position: fixed;
	width: 92%;
	padding: 8rem 3rem;
	left: 50%;
	transform: translateX(-50%);
	background-color: #f4f1ed;
	border: 1px solid #E2DFDD;
	box-shadow: #00000005 10px 10px;
	top: 10vh;
	border-radius: 1rem;
	opacity: 0;
}

.search-results article {
	margin-bottom: 3rem;
}

.search-results h3 {
	font-size: 2.4rem;
}

.search-results a {
	border-bottom: 1px solid black;
	padding-bottom: .4rem;
	color: black;
}

.search-results p {
	padding-top: 2rem;
	color: black;
}

.search-results strong {
	font-weight: 800;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding: 0px 60px 0rem;
	margin-top: 12rem;
}

.footer-card {
	position: relative;
    min-height: 70rem;

    border: 1px solid #c6c2bd;
    border-radius: 7px;

    display: grid;
    grid-template-columns: 1fr 1.35fr;

    overflow: hidden;

	padding: 55px 50px;
}

.footer-navigation {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}

.footer-navigation-item {
	display: flex;
	align-items: center;
}

.footer-navigation-item-arrow {
	width: max-content;
	height: 2.4rem;
	margin-left: 1.3rem;
}

.footer-label {
    display: block;

    margin-bottom: 28px;

    font-size: 1.8rem;

	color: #000000;
}

.footer-navigation nav {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.footer-navigation nav a {
    font-size: 4.2rem;
    letter-spacing: -1.5px;
	margin-bottom: 1.5rem;
	font-weight: 400;
}

/* =====================================================
   FOOTER NAVIGATION
===================================================== */

.footer-navigation nav {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}


.footer-nav-link {
    position: relative;

    display: flex;
    align-items: center;

    width: max-content;

    padding-bottom: 0.2rem;

    margin-bottom: 1.5rem;

    font-size: 4.2rem;
    font-weight: 400;

    letter-spacing: -1.5px;

    text-decoration: none;
}


/* =====================================================
   TEXT
===================================================== */

.footer-nav-text {
    display: block;
}


/* =====================================================
   ARROW
===================================================== */

.footer-navigation-item-arrow {
    width: max-content;
    height: 2.4rem;

    margin-left: 1.3rem;
}


/* =====================================================
   REAL HTML UNDERLINE
===================================================== */

.footer-nav-line {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 0.15rem;

    background-color: currentColor;

    /*
    Hidden initially
    */

    transform: scaleX(0);

    transform-origin: left center;

    transition:
        transform
        0.5s
        cubic-bezier(
            0.76,
            0,
            0.24,
            1
        );

    pointer-events: none;
}


/* =====================================================
   HOVER
===================================================== */

.footer-nav-link:hover
.footer-nav-line {
    transform: scaleX(1);
}

.contact-info {
    margin-top: 36px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    font-size: 1.8rem;
}

.contact-info .footer-label {
    margin-bottom: 8px;
}

.contact-info a,
.contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info img {
	width: 3.1rem;
}



/* FOOTER ART */

.footer-art {
    position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;

    display: flex;
	z-index: -1;
    /* justify-content: center;
    align-items: center; */

	opacity: .7;

	mix-blend-mode: multiply;
}

.footer-content {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.footer-slider {
    display: flex;
    gap: 8px;
	justify-content: flex-end;
	align-items: flex-end;
}

.footer-slider button {
    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 50%;

    background: #d7d7d7;
}



/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-top: 2rem;

    font-size: 1.2rem;

	margin-bottom: 4rem;

	height: max-content;
}

.footer-bottom > div:first-child {
    display: flex;
    flex-direction: column;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal .bottom-logo-link {
	display: flex;
	align-items: center;
}

.bottom-logo {
	width: 1.6rem;
	margin-right: .3rem;
}

.image-wipe-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wipe-wrapper > img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
	clip-path: inset(100% 0 0 0);
    -webkit-clip-path: inset(100% 0 0 0);
	opacity: 0;
	visibility: hidden;
}

.image-wipe-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #E2DFDD;
    pointer-events: none;

    visibility: hidden;

    clip-path: inset(100% 0 0 0);
    -webkit-clip-path: inset(100% 0 0 0);
}

.mobile-filter-exit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border-radius: 1rem;
    color: white;
    transform: scale(1.15);
    opacity: 0;
}

/* =====================================================
   RESPONSIVE
===================================================== */

/* =====================================================
   TABLET
   approx. 768px - 1199px
===================================================== */

@media (max-width: 1199px) {
	.header-container {
		padding: 0 3rem;
    }

	.header-w .search-input {
		color: black;
	}

	.header-w .search-form button {
		color: black;
		height: 6rem;
	}

	.navigation {
		right: 3rem;
	}

	.mobile-nav-item a {
		font-size: 4rem;
	}

	.search-form {
		right: 49.8rem;
	}

	.search-form button {
		background-color: #f4f1ed;
	}

	.search-input {
		background-color: #f4f1ed;
	}

	.footer {
		padding: 0px 30px 0rem;
		margin-top: 14rem;
	}

	.footer-card {
		padding: 5rem 3rem 5rem;
	}
}

@media (max-width: 969px) {
	.header-container-desktop {
		display: none;
	}

	.header-container-mobile {
		display: none;
	}

	.navigation {
        display: none;
    }

	.menu {
		display: flex;
	}

	.search-form {
		right: 16rem;
		top: 1.5rem;
	}

	.search-input {
		height: 6rem;
	}

}

/* =====================================================
   MOBILE
   up to approx. 700px
===================================================== */

@media (max-width: 700px) {
	.header-container {
		padding: 0 2rem;
	}

	.menu {
		right: 2rem;
	}

	.mobile-nav-item a {
		font-size: 3.2rem;
	}

	.search-form button {
		height: 6rem;
	}

	.footer {
		padding: 0px 20px 0rem;
		margin-top: 12rem;
	}

	.footer-bottom {
		flex-flow: column;
		align-items: flex-start;
	}

	.footer-legal {
		align-self: flex-start;
		margin-top: 2rem;
	}

	.footer-card {
		padding: 5rem 2rem 5rem;
		min-height: 60rem;
	}
}

@media (max-width: 430px) {
	
	.menu-item {
		background-color: #f4f1ed;
	}

	.header-w .menu-item {
		background-color: transparent;
	}

	.search-form {
		display: flex;
		flex-flow: column-reverse;
		right: 2rem;
		top: 8rem;
		width: 88%;
	}

	.search-results {
		top: 21rem;
	}

	.search-form button {
		width: 12.5rem;
		margin-top: .5rem;
		align-self: flex-end;
	}

	.footer-navigation nav a {
		font-size: 3.2rem;
	}

	.footer-card {
		grid-auto-flow: row;
		grid-template-columns: 1fr;
	}

	.footer-slider {
		margin-top: 3.6rem;
		justify-self: flex-start;
	}
}

.three-canvas {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
	z-index: -1;
}

.three-canvas canvas {
    display: block;
    width: 100%;
    height: 100%;
}
.logo {
    display: none;
}

.three-canvas {
    position: fixed;
}

.hero {
    padding: 0 6rem;
    width: 100%;
    height: 100vh;
    font-size: 2.4rem;
}

.hero1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-off {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

.hero-logo {
    width: 75%;
}

.hero h2 {
    font-size: 8.4rem;
    color: white;
    margin-bottom: 2rem;
}

.hero-paragraph {
    color: white;
    width: 60%;
}

.hero-button {
    background: none;
    outline: none;
    border: 1px solid white;
    border-radius: 1rem;
    padding: 2rem 1.4rem;
    margin-top: 4rem;
}

.hero-button-link {
    color: white;
    text-transform: uppercase;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.hero-button img {
    filter: invert(1);
    margin-left: 1rem;
}
