* {
	padding: 0;
	margin: 0;
}
body {
	--lightColor: #f1f1ed;
	--darkColor: black;

	-webkit-font-smoothing: antialiased;
	background-color: var(--lightColor);
}
nav {
	position: absolute;
	z-index: 100;
}
nav ul {
	position: absolute;
	margin: 0 40px;
	height: 100px;
	display: grid;
	grid-template-columns: auto auto auto;
	align-items: center;
	color: black;
}
nav ul li {
	display: inline-block;
	padding-right: 40px;
	cursor: default;
}
section {
	position: relative;
	width: 100vw;
	min-height: 100vh;
	z-index: 0;

	border-bottom: 20px solid var(--lightColor);
	-webkit-clip-path: inset(0px);
	clip-path: inset(0px);
	overflow: hidden;
}

section:hover .section-content {
	pointer-events: all;
}
.section-content {
	display: grid;
	width: 100%;
	min-height: 100vh;
	top: 0;

	align-items: center;
	justify-content: center;
	
	color: var(--lightColor);
	pointer-events: none;
}
.section-content > div {
	max-width: 960px;
	margin: 40px;
}
#hero-header {
	max-width: unset;
}
.fixed {
	position: fixed;
}
.two-column {
	display: grid;
	align-items: baseline;
	column-gap: 40px;
	grid-row-gap: 80px;
	grid-template-columns: auto 1fr;
	margin-top: 80px;
	margin-bottom: 80px;
}
.two-column img {
	width: 420px;
	width: 100%;
}
.no-overlay {
	color: var(--darkColor) !important;
}
.square {
	min-height: 100vw;
}
section > img, section > video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	z-index: -1;
	filter: brightness(0.7);
}

/* Special */

.arrow-down {
	position: fixed;
	margin: 0 -20px;
	left: 50%;
	bottom: 80px;
	color: black;

	border: 1px solid;
	border-width: 0 0 1.5px 1.5px;
	width: 30px;
	height: 30px;
	line-height: 0;
	font-size: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: scaleX(1.3) rotate(-45deg);
}
.arrow-down:first-child {
	margin-bottom: 25px;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.lfo {
  animation: lfo 2.2s infinite;
}
@keyframes lfo {
  0% {
    margin-bottom: 0;
  }
  50% {
    margin-bottom: -10px;
  }
  100% {
    margin-bottom: 0;
  }
}