body {
	margin: 0;
	font-family: "Inter", sans-serif;
	font-weight: 200;
	--corner-size: 3vw;
}

canvas {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

h1,
h2,
h3,
h4,
p {
	margin: 0;
}

main {
	color: #f0f0f7;
}

section {
	padding: 0;
}

.garage {
	position: relative;
	width: 100%;
	height: calc(100vh + var(--corner-size));
	border-radius: 0 0 var(--corner-size) var(--corner-size);
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.8) 3vw 5vw 5vw;
	z-index: 2;
}

.hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.heroWrapper {
	width: 66vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
}

main .title {
	font-size: 4vw;
	width: 20vw;
	font-weight: 500;
	margin-bottom: 1vw;
	line-height: 1;
	position: relative;
	z-index: 1;
}

.description {
	font-size: 1vw;
	width: 26vw;
	line-height: 1.4;
	position: relative;
	z-index: 1;
}

.filter {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	background: linear-gradient(80deg, rgba(0, 0, 0, 0.8) 20%, transparent 70%);
}

.hero .filter {
	background: linear-gradient(80deg, rgba(0, 0, 0, 0.8) 20%, transparent 70%);
}

.hero::after {
	display: block;
	content: "";
	background: black;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: var(--progress);
	z-index: 2;
	transition: opacity 0.1s;
}

.garage .backgroundImage {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
	z-index: -1;
	transform: scale(calc(var(--progress) / 7 + 1));
}

.bigText {
	width: 100%;
	position: relative;
}

.bigText .content {
	width: 100%;
	padding: 10vh 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}

section .filter {
	top: 0;
	height: 100%;
	background: linear-gradient(-65deg, rgba(0, 0, 0, 1) 40%, transparent 150%)
		#006a89;
	z-index: 0;
}

.gradient2 {
	background: linear-gradient(-117deg, rgba(0, 0, 0, 1) 40%, transparent 150%)
		#006a89 !important;
}

.gradient3 {
	background: linear-gradient(-105deg, rgba(0, 0, 0, 1) 40%, transparent 150%)
		#006a89 !important;
}

.postgarage .filter {
	top: calc(-1 * var(--corner-size));
	height: calc(100% + var(--corner-size));
}

.postgarage .content {
	position: fixed;
	top: 0;
	left: 0;
}

.bigText .title,
.bigText .description {
	text-align: center;
}

.bigText .title {
	width: 60vw;
}

.sup {
	position: relative;
	z-index: 1;
	margin-bottom: 3vw;
	font-size: 1.5rem;
}

.fadein span {
	opacity: 0;
	transform: translateY(50%);
	transition: opacity 0.6s, transform 0.6s ease-out;
}

.fadein span.displayed {
	opacity: 1;
	transform: none;
}

.hidden {
	visibility: hidden;
}

.dg.ac {
	z-index: 10;
}

.fadein span {
	display: inline-block;
}

.parallaxed {
	transition: transform 0.1s;
}

.cards {
	position: relative;
	padding-bottom: 5vw;
}

.cards .content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 63vw;
	margin: auto;
}

.card {
	border-radius: 2vw;
	background: black;
	width: 30vw;
	margin-bottom: 2vw;
	overflow: hidden;
	background: radial-gradient(
		circle farthest-corner at top right,
		rgb(58, 86, 98),
		#16171f
	);
	position: relative;
	z-index: 2;
}

.card svg {
	overflow: visible;
}

.card:nth-last-child(-n + 2) {
	margin: 0;
}

.card .bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 4vw;
}

.card .title {
	font-size: 1.8rem;
}

.card .description {
	color: rgba(213, 214, 234, 1);
	white-space: pre-line;
}

.card a {
	color: #f0f0f7;
	text-decoration: none;
	font-size: 0.8rem;
	margin-top: 2rem;
}
