*
{
	margin: 0;
	padding: 0;
}

html
{
	scroll-behavior: smooth;
	overflow-x: hidden;
	background-color: black;
}

body
{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	position: relative;
	width: 100%;
	background-color: black;
}

ol
{
	list-style: none;
}

#loading_screen
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0b1b2e;
	z-index: 10002;
}

#safari_warning
{
	position: fixed;
	bottom: 0;
	left: 0;
	width: calc(100% - 100px);
	background-color: #e72e2e;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 50px 18px 50px;
}

#safari_warning p
{
	font-family: proxima_nova_semi_bold;
	font-size: 16px;
	color: var(--text-color-2);
	text-align: center;
	line-height: 22px;
}

#lcp
{
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10000;
	display: flex;
}

#lcp p
{
	font-family: proxima_nova_semi_bold;
	font-size: 16px;
	color: black;
	opacity: 0.01;
}

#main
{
	display: flex;
	flex-direction: column;
}

.section
{
	display: flex;
	justify-content: center;
	align-items: center;
}

.content
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	z-index: 10;
	flex-direction: column;
	padding: 0px 200px;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

.content.leaning
{
	margin-top: calc(clamp(100px, 7vw, 140px) + 3.3vw);
	margin-bottom: calc(clamp(100px, 7vw, 140px) - 3.3vw);
}

@media screen and (max-width: 1400px) { .content { padding: 0px 150px; } }
@media screen and (max-width: 1150px) { .content { padding: 0px 100px; } }
@media screen and (max-width: 1020px) { .content { padding: 0px 50px; } }
@media screen and (max-width: 500px) { .content { padding: 0px 25px; } }

.section_end
{
	height: 8vw;
	width: 100%;
	margin: -4vw 0px -4vw 0px;
	transform: rotate(-4deg) scale(1.2, 1);
}

.link
{
	display: inline-block;
	position: relative;
	color: var(--buttons-color);
	text-decoration: none;
}

.link:hover
{
	color: var(--hover-color);
}

.link::before
{
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	top: 75%;
	left: 0;
	background-color: var(--buttons-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.link:hover::before
{
	transform: scaleX(0.999);
}

.button
{
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: all;
	border: 2px solid var(--buttons-color);
	padding: 15px 35px 15px 40px;
	border-radius: 40px;
	font-family: raleway_semi_bold;
	font-size: 16px;
	color: var(--buttons-color);
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.button:hover
{
	background-color: var(--bio-color);
}

.button .button_arrow
{
	height: 13px;
	margin-left: 15px;
	fill: none;
	stroke: var(--buttons-color);
	stroke-width: 3px;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.button .button_arrow .path_1, .button .button_arrow .path_2
{
	transition: all 0.3s ease;
}

.button:hover .button_arrow .path_1
{
	d: path("M8.85 1.5 L8.85 15.89");
	d: "M8.85 1.5 L8.85 15.89";
}

.button:hover .button_arrow .path_2
{
	d: path("M16.19 8.54 8.85 15.89 1.5 8.54");
	d: "M16.19 8.54 8.85 15.89 1.5 8.54";
}

.animated
{
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.5s ease-in-out, transform 1.2s ease-out;
}

.section_title
{
	font-family: proxima_nova_bold;
	font-size: 40px;
	margin-bottom: 70px;
	text-align: center;
}

.safari_fix
{
	filter: none !important;
}

.safari_fix:hover
{
	filter: none !important;
}
