/* --- CSS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;600&display=swap');
/* --- BODY RESET --- */
body, html {
	width: 100%;
	height: 100%;
	margin: 0;
	background: #1A1A1A;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 300;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
}

a {
	color: #fff;
}

h1 {
	text-align: center;
	font-weight: 600;
	font-size: 60px;
	line-height: 90px;
	margin: 150px auto;
}
h2 {
	font-weight: 600;
	font-size: 50px;
	line-height: 62px;
	margin: 0;
	padding: 0;
}
h3 {
	font-weight: 600;
	font-size: 30px;
	line-height: 37px;
	margin: 0;
	padding: 0;
}
h4 {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	margin: 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.25);
}


.page {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	transition: all .3s;
}
.wrapper {
	position: relative;
	margin: 0 auto;
	max-width: 800px;
}
.wrapper.project-content {
	margin: 100px auto;
}

.big-image {
	position: relative;
	width: 143.75%;
	left: -21.85%;
	margin: 50px auto;
}

.wrapper.project-content img {
	max-width: 100%;
	display: block;
	margin: 50px 0;
}
.wrapper.project-content .big-image img {
	margin: 25px 0;
}
.wrapper.project-content p {margin-top: 0;}
.wrapper.project-content h3 {margin-top: 100px; margin-bottom: 10px}
.wrapper.project-content h4 {margin-bottom: 50px;}


.attention {
	padding: 100px 0;
}

.options {
	display: flex;
	justify-content: center;
	margin: 150px auto;
}
.option {
	margin: 0 0 0 90px
}
.option:first-child {
	margin: 0;
}



.projects {

}
.project-wrapper {
	height: 0;
	padding-bottom: 75%;
	position: relative;
	margin: 200px 0;
}
.project {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.meta {
 	width: 450px;
 	padding: 0 50px 0 0;
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
}

.meta .more {
	margin: 30px 0 0 0;
}
.hero {
	width: 300px;
}
.hero img,
.hero video {
	height: 100%;
}




.hyperlink-button {
	position: relative;
	display: inline-block;
	height: 50px;
	padding: 0 40px 0 0;
	z-index: 1;
	text-decoration: none;
	font-weight: 700;
	font-size: 25px;
	line-height: 50px;
}
.hyperlink-button:after {
	position: absolute;
	content: '';
	display: block;
	bottom: 3px;
	left: 0;
	width: 0%;
	height: 2px;
	background: #fff;
	transition: width 0.25s ease;
}
.hyperlink-button:hover:after {width: calc(100% - 40px);}


.hyperlink-button .icon,
.hyperlink-button .icon::after {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
}


.hyperlink-button .icon {
	right: 0;
	background-color: rgba(255, 255, 255, 0.08);
	border-radius: 100px;
	z-index: -1;
	transition: background-color 0.25s ease;
}
.hyperlink-button .icon:after {
	content: '';
	left: 0;
	background: url(../assets/link.svg) 50% 50% no-repeat;
	opacity: .1;
	transition: opacity 0.25s ease;
}
.hyperlink-button.external .icon:after {
	background-image: url(../assets/link-external.svg);
}


.hyperlink-button:hover .icon {background-color: rgba(50, 20, 250, 1);}
.hyperlink-button:hover .icon:after {opacity: 1;}
.hyperlink-button .hyperlink-child {transition: all .5s cubic-bezier(0.250, 0.460, 0.450, 0.940);}
.hyperlink-button:hover .hyperlink-child {transition: all 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940);}




.animation.wave {
	display: inline-block;
	animation-name: wave;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	transform-origin: bottom right;
}



@keyframes wave {
  from 	{transform: translate3d(0, 0, 0);}
  10%	{transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -10deg);}
  20% 	{transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 8deg);}
  30% 	{transform: translate3d(-8%, 0, 0) rotate3d(0, 0, 1, -8deg);}
  40% 	{transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 8deg);}
  50% 	{transform: translate3d(-6%, 0, 0) rotate3d(0, 0, 1, -8deg);}
  60% 	{transform: translate3d(5%, 0, 0) rotate3d(0, 0, 1, 4deg);}
  70% 	{transform: translate3d(-0%, 0, 0) rotate3d(0, 0, 1, -4deg);}
  to 	{transform: translate3d(0, 0, 0);}
}





.content {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: calc(100vh - 13rem);
	position: relative;
	justify-content: flex-start;
	align-items: center;
}
.distort {
	position: absolute;
	pointer-events: none;
	will-change: transform;
}
.distort__img {
	opacity: 0;
}

.menu__link,
.quote__link {
	z-index: 999;
	color: var(--color-content-link);
	position: relative;
	white-space: nowrap;
}

.menu__link:hover,
.quote__link:hover {
	color: var(--color-content-link-hover);
}

.menu__link span,
.quote__link span {
	display: inline-block;
}



































