/* ==========================================================================
   Fonts
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,300&family=Fahkwang:wght@200&family=Sora:wght@300;600&display=swap');

/* ==========================================================================
   Variable Colors
   ========================================================================== */

:root {
	--background:	#FFFFFF;
	--primary:		#222222;
	--secondary:	#CCCCCC;
	--selection:	rgba(241,190,72,0.25);
}

/*	==========================================================================
	Basics
	========================================================================== */

a { color: var(--primary); text-decoration: none; border-bottom: 1px solid var(--primary); padding-bottom: 0.1em; }
.footer-menu a .active, a .privacy { border-bottom: 1px solid var(--primary); padding-bottom: 0em; }

/*	==========================================================================
	Preloader
	========================================================================== */

#preloader { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--background); z-index: 99; }
#status { width: 50px; height: 50px; position: absolute; left: 50%; top: 50%; background-image: url(../img/loader.gif); background-size: 50px 50px; background-repeat: no-repeat; background-position: center; margin: -25px 0 0 -25px; }

/* ==========================================================================
   Global
   ========================================================================== */

html {
	background: var(--background);
	color: var(--primary);
	font-size: 20px;
	line-height: 40px;
	font-family: 'Sora', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1 { font-size: 1rem; font-family: 'Fahkwang', sans-serif; text-transform: uppercase; letter-spacing: 0.25rem; }
h2 { font-size: 1.25rem; line-height: 2.25rem; font-weight: normal; }

p { margin-bottom: 1.5vw; }
p:last-child { margin-bottom: 0; }

.global-padding { margin: 10vw 15vw 10vw 15vw; position: relative; }

.full-padding-bottom { padding-bottom: 5vw; }
.text-only h1 {
	margin-bottom: 5vw;
}

.hero-image {
	padding-top: 11.3vw;
}

.hero-image img {
	width: 100%;
	height: auto;
}

.hero-text {
	position: absolute;
	left: 0;
	top: 26vw;
	width: 100%;
	text-align: center;
}

.logo-anim { position: absolute; width: 15vw; left: calc(35vw - 7.5vw); top: 0; z-index: 5; }
.logo-anim-1 { width: 15vw; height: 15vw; }
.logo-anim-2 { margin-top: -50%; }

.columns {
	display: flex;
	justify-content: space-between;
}

.left-column {
	width: 25vw;
}

.left-column img {
	width: 100%;
	height: auto;
}

.right-column {
	margin-top: -0.5em;
	width: 40vw;
}

.right-column img {
	width: 100%;
	height: auto;
	margin: 3vw 0;
}

blockquote {
	font-family: 'Cormorant Garamond', serif;
	font-weight:300;
	font-style:italic;
	padding: 2vw 0;
	margin: 3vw 0;
	font-size: 1.8rem;
	line-height: 2rem;
	border-bottom: 1px solid var(--secondary);
	border-top: 1px solid var(--secondary);
}

.footer {
	border-top: 1px solid var(--secondary);
	font-size: 0.8rem;
	line-height: 1.4rem;
}

.footer a {
	text-decoration: none;
	border-bottom: none;
}

.footer ul {
	list-style: none;
    padding-inline-start: 0;
	margin-bottom: 1rem;
}

.footer ul:last-child {
	margin-bottom: 0;
}

.footer-menu {
	text-transform: uppercase;
}

.legal {
	font-size: 0.6rem;
	line-height: 0.9rem;
	text-transform: uppercase;
	margin-top: 1.5rem;
	margin-bottom: 0;
}

/*	==========================================================================
	Menu
	========================================================================== */

* { box-sizing: border-box; }
a, a:visited, a:hover, a:active {
  color: inherit;
  text-decoration: none;
}

.menu a { border-bottom: 0; }

.outer-menu {
	position: fixed;
	top: 5vw;
	right: calc(5vw + 60px);
	z-index: 10;
	text-transform: uppercase;
}
 .outer-menu .checkbox-toggle {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
	width: 60px;
	height: 60px;
	opacity: 0;
}
 .outer-menu .checkbox-toggle:checked + .hamburger > div {
	transform: rotate(135deg);
}
 .outer-menu .checkbox-toggle:checked + .hamburger > div:before, .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
	top: 0;
	transform: rotate(90deg);
}
 .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
	opacity: 0;
}
 .outer-menu .checkbox-toggle:checked ~ .menu {
	pointer-events: auto;
	visibility: visible;
}
 .outer-menu .checkbox-toggle:checked ~ .menu > div {
	transform: scale(1);
	transition-duration: .75s;
}
 .outer-menu .checkbox-toggle:checked ~ .menu > div > div {
	opacity: 1;
	transition: opacity .4s ease .4s;
}

 .outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
	transform: rotate(225deg);
}
 .outer-menu .hamburger {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 60px;
	height: 60px;
	padding: .5em 1em;
	cursor: pointer;
	transition: box-shadow .4s ease;
	backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
 .outer-menu .hamburger > div {
	position: relative;
	flex: none;
	width: 100%;
	height: 2px;
	background: var(--primary);
	transition: all .4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
 .outer-menu .hamburger > div:before, .outer-menu .hamburger > div:after {
	content: '';
	position: absolute;
	z-index: 10;
	top: -8px;
	left: 0;
	width: 100%;
	height: 2px;
	background: inherit;
	transition: all .4s ease;
}
 .outer-menu .hamburger > div:after {
	top: 8px;
}
 .outer-menu .menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	visibility: hidden;
	overflow: hidden;
	backface-visibility: hidden;
	outline: 1px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}
.outer-menu .menu > div {
	width: 250vw;
	height: 250vw;
	background: rgba(255,255,255,0.95);
	border-radius: 50%;
	transition: all .4s ease;
	flex: none;
	transform: scale(0);
	backface-visibility: hidden;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	-font-family: 'Fahkwang', sans-serif;
	-letter-spacing: 0.25rem;
}
.outer-menu .menu > div > div {
	text-align: center;
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	transition: opacity .4s ease;
	overflow-y: auto;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
.outer-menu .menu > div > div > ul {
	list-style: none;
	padding: 0 1em;
	margin: 0;
	display: block;
	max-height: 100vh;
}
.outer-menu .menu > div > div > ul > li {
	padding: 0;
	margin: 1em;
	font-size: 24px;
	display: block;
}
.outer-menu .menu > div > div > ul > li > a {
	position: relative;
	display: inline;
	cursor: pointer;
	transition: color .4s ease;
}
.outer-menu .menu > div > div > ul > li > a:hover {
	color: var(--secondary);
}
.outer-menu .menu > div > div > ul > li > a:hover:after {
	width: 100%;
}
.outer-menu .menu > div > div > ul > li > a:after {
	content: '';
	position: absolute;
	z-index: 10;
	bottom: -0.15em;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--secondary);;
	transition: width .4s ease;
}

.menu .active {
	color: var(--secondary);;
}

/*	==========================================================================
	Mobile
	========================================================================== */

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

	html { font-size: 1rem; line-height: 2rem; }

	.global-padding { margin: 7.5vw; position: relative; }
	.logo-anim { left: calc(42.5vw - 7.5vw); }

	.columns { flex-wrap: wrap; flex-direction: column-reverse; }
	.left-column { width: 100%; margin-top: 6vw;}
	.right-column { width: 100%; }

	blockquote { padding: 4vw 0; margin: 6vw 0; }

	.right-column img { margin: 6vw 0; }
	p { margin-bottom: 3vw; }

}

@media only screen and (max-width: 500px) and (orientation: portrait) {

	.main-content { margin-top: 15vw; }
	.hero-image img { width: 100%; height: 75vh; object-fit: cover; }
	.hero-image { padding-top: 22.5vw; }
	.hero-text { top: 55vw; }

	.logo-anim { position: absolute; width: 30vw; left: calc(35vw - 7.5vw); top: 0; z-index: 5; }
	.logo-anim-1 { width: 30vw; height: 30vw; }

}

@media screen and (min-width: 501px) and (max-width: 800px) {

	html { font-size: 1rem; line-height: 2rem; }

	.global-padding { margin: 7.5vw; position: relative; }
	.logo-anim { left: calc(42.5vw - 7.5vw); }

	.columns { flex-wrap: wrap; flex-direction: column-reverse; }
	.left-column { width: 100%; margin-top: 5vw;}
	.right-column { width: 100%; }

}

@media screen and (min-width: 801px) and (max-width: 1000px) {

	.global-padding { margin: 10vw 10vw 10vw 10vw; position: relative; }
	.logo-anim { left: calc(40vw - 7.5vw); }

	.left-column { width: 30vw;}
	.right-column { width: 45vw; }


}

@media screen and (min-width: 1001px) and (max-width: 1400px) {

}

@media only screen and (min-width: 1401px) {


}
