.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	z-index: 99999;
	opacity: 1;
	pointer-events: all;
	transition: all 0.5s ease-in-out;
}

.loader.hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.logo-block {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100vh;
}

.logo-block svg {
	height: auto;
	overflow: visible;
	width: 400px;
}

.logo-block h1 {
	font-size: 78px;
	font-weight: 300;
	text-transform: uppercase;
	animation: fadeIn 1s ease-in-out 1.25s forwards;
	opacity: 0;
	transform: translateY(20px);
	text-wrap-mode: nowrap;
}

.logo-block h1 span {
	font-weight: 700;
	font-size: 78px;
	text-wrap-mode: nowrap;
}

.since-2022 {
	font-size: 20px;
	animation: fadeIn 1s ease-in-out 1.5s forwards;
	opacity: 0;
	transform: translateY(20px);
	text-wrap-mode: nowrap;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.path-left,
.path-right {
	opacity: 0;
	transform-origin: center;
}

.path-left {
	animation: slideLeft 1s ease-in-out 0s forwards;
}

.path-right {
	animation: slideRight 1s ease-in-out 0s forwards;
}

@keyframes slideLeft {
	0% {
		transform: translateX(-150vw) scale(20);
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	100% {
		transform: translateX(0) scale(1);
		opacity: 1;
	}
}

@keyframes slideRight {
	0% {
		transform: translateX(150vw) scale(20);
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	100% {
		transform: translateX(0) scale(1);
		opacity: 1;
	}
}

@media (max-width: 650px) {
	.logo-block svg {
		width: 300px;
	}

	.logo-block h1 {
		font-size: 58px;
	}

	.logo-block h1 span {
		font-size: 58px;
	}

	.since-2022 {
		font-size: 15px;
	}
}

@media (max-width: 500px) {
	.logo-block svg {
		width: 200px;
	}

	.logo-block h1 {
		font-size: 38px;
	}

	.logo-block h1 span {
		font-size: 38px;
	}

	.since-2022 {
		font-size: 11px;
	}
}
