@font-face {
	font-family: teko;
	src: url("../fonts/teko.woff");
}

@font-face {
	font-family: steraton-extra-bold;
	src: url("../fonts/poppins-extra-bold.woff");
}

@font-face {
	font-family: steraton-regular;
	src: url("../fonts/poppins.woff");
}

@font-face {
	font-family: steraton-pixel;
	src: url("../fonts/chill.woff");
}

* {
	margin: 0;
	padding: 0;
}

html,
body {
	overflow-x: hidden;
	background-color: #00162b;
	font-family: steraton-regular;
	font-size: 20px;
	-webkit-text-size-adjust: 100%;
	cursor: default;
}

canvas {
	position: absolute;
	background-color: #00162b;
	opacity: 1;
	z-index: 10;
}

h1 {
	display: grid;
	color: #00162b;
	font-family: steraton-extra-bold;
	font-size: clamp(10px, 7vw, 30px);
	padding-top: 4px;
	padding-bottom: 8px;
	margin: auto;
	margin-top: 0;
	margin-bottom: 0.3em;
}

h1 strong {
	display: contents;
}

h1 span {
	color: #ffffff;
}

h1 span b {
	color: #f50b48;
}

h1 span span {
	color: #fcd700;
}

h2 {
	display: inline-block;
	font-size: 1.2em;
	text-align: center;
	color: #db0a40;
	font-family: steraton-extra-bold;
	font-weight: 600;
	background-color: #1a2e41;
	max-width: clamp(0px, 95vw, 680px);
	border-radius: 17px;
	padding: 13px;
	margin: auto;
	margin: 0px 5px 0px 5px;
	margin-top: 0.3em;
	margin-bottom: 0.3em;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h3 {
	font-size: 1.2em;
	text-align: center;
	color: #525252;
	padding-top: 4px;
	padding-bottom: 8px;
	margin: auto;
	margin-top: 0.3em;
	margin-bottom: 0.3em;
}

p {
	position: relative;
	padding: 16px;
	text-align: left;
	line-height: 1.5;
	width: clamp(0px, 95vw, 680px);
	margin: auto;
	color: #ffffff;
	box-sizing: border-box;
	z-index: 5
}


main {
	margin-top: 180px;
	text-align: center;
	position: relative;
	z-index: 2;
}

section {
	margin-bottom: 120px;
	position: relative;
}

section:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

a {
	display: inline-block;
	color: inherit;
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	transform: scale(1.1);
	box-shadow: 1px 1px 0px #fcd700, 4px 4px 0px rgba(82, 82, 82, 0.25);
}

a:active {
	transform: scale(1);
	box-shadow: 1px 1px 0px #f6d4b1, 3px 3px 0px rgba(82, 82, 82, 0.4);
}

.shadow-gradient {
	position: absolute;
	width: 100%;
	height: 70px;
	bottom: 0;
	background: linear-gradient(to top, rgb(0 22 43) 0px, rgba(0, 0, 255, 0) 40px);
	z-index: 15;
}

.stamb {
	position: absolute;
	width: 100%;
	height: 100vh;
	text-align: center;
	align-content: center;
	overflow: hidden;
	z-index: 1;
}

.stamb img {
	width: clamp(0px, 95vw, 500px);
	border-radius: 12px;
}

.collaboration {
	width: clamp(0px, 100vw, 680px);
	overflow: auto;
	margin: auto;
	margin-top: 50px;
	display: block;
	position: relative;
	user-select: none;
}

.page-title {
	color: white;
	font-size: clamp(10px, 8vw, 65px);
	padding: 0;
}

@media (max-width: 569px) {
	.page-title {
		font-size: clamp(10px, 15vw, 65px);
	}
}

.collaboration:before {
	display: block;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	-moz-box-shadow: inset 0px 0px 20px 31px rgb(0 22 43);
	-webkit-box-shadow: inset 0px 0px 20px 31px rgb(0 22 43);
	box-shadow: inset 0px 0px 20px 30px rgb(0 22 43);
}

.collaboration img {
	width: 100%;
}

.neon {
	color: #ffffff;
	font-size: clamp(20px, 12vw, 68px);
	background-color: transparent;
	margin: 0;
	margin-bottom: 50px;
	text-transform: uppercase;
	letter-spacing: 12px;
	text-shadow:
		0 0 0.1em #add8e6,
		0 0 0.2em #add8e6,
		0 0 0.4em rgba(255, 255, 255, 0.6),
		0 0 0.8em rgba(255, 255, 255, 0.6);
	white-space: nowrap;
	animation: breathing 3s infinite alternate ease-in-out;
}

@keyframes breathing {
	0% {
		text-shadow: 0 0 0.1em #add8e6, 0 0 0.2em #add8e6, 0 0 0.3em rgba(255, 255, 255, 0.6), 0 0 0.6em rgba(255, 255, 255, 0.6);
	}

	50% {
		text-shadow: 0 0 0.15em #add8e6, 0 0 0.25em #add8e6, 0 0 0.45em rgba(255, 255, 255, 0.7), 0 0 0.9em rgba(255, 255, 255, 0.7);
	}

	100% {
		text-shadow: 0 0 0.1em #add8e6, 0 0 0.2em #add8e6, 0 0 0.4em rgba(255, 255, 255, 0.6), 0 0 0.8em rgba(255, 255, 255, 0.6);
	}
}

.steraton-rolling {
	height: 100vh;
}

.steraton-3d-card {
	perspective: 1200px;
	--o: 0;
	--p: 100%;
	--h: 50%;
	--r: 0;
	--p: 94.0576%;
	--r: 180deg;
	--o: 0.194607;
	--h: 38.4684%;
	transform: translate3d(0, 0, 0.1px);
	position: relative;
	height: 100vh;
	display: grid;
	place-content: center;
	overflow: hidden;
	z-index: 20;
}

.strn-srv {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
}

.strn-card {
	--scale: 1;
	transform: translate3d(0, 0, 0.1px) scale(var(--scale)) rotateY(var(--r));
	transform-style: preserve-3d;
	border-radius: 15px;
	overflow: hidden;
	display: grid;
	grid-area: 1/1;
	width: clamp(0px, 95vw, 680px);
	height: 610px;
	box-shadow: #000000c2 0px 0px 12px 3px;
	pointer-events: auto;
}

@media (max-width: 469px) {
	.strn-card {
		height: 560px;
	}
}

.strn-card-view {
	background-color: #6e6176;
	background-image: radial-gradient(circle at var(--p) 50%,
			#fff 10%,
			transparent 100%);
	background-size: 100% 220vh;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	transform: translateZ(1px);
	transform-style: preserve-3d;
	-webkit-mask-size: cover;
	mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	transform: rotateY(180deg) translateZ(1px);
	border-radius: 15px;
	overflow: hidden;
}

.strn-card-view::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(-70deg,
			transparent 40%,
			rgba(255, 255, 255, 0.5) 40.5%,
			transparent);
	background-size: 200% 200%;
	background-position: var(--p) var(--p);
	z-index: 5;
	opacity: calc(var(--o) + 0.5);
	pointer-events: none;
}

.strn-card-view p {
	width: 100%;
	color: #f50b48;
	font-family: teko;
	font-size: clamp(10px, 8vw, 50px);
	text-align: center;
	font-weight: 700;
	letter-spacing: 5px;
	margin: 0;
}

.strn-card-power {
	display: block;
	position: absolute;
	inset: 0;
	border-radius: 15px;
	background-image: repeating-linear-gradient(-45deg,
			hsl(0, 100%, 50%) 0%,
			hsl(30, 100%, 50%) 5%,
			hsl(60, 100%, 50%) 10%,
			hsl(120, 100%, 50%) 15%,
			hsl(180, 100%, 50%) 20%,
			hsl(222, 100%, 50%) 25%,
			hsl(258, 100%, 50%) 30%,
			hsl(300, 100%, 50%) 35%,
			hsl(0, 100%, 50%) 40%);
	background-size: 150vw 150vh;
	background-position: calc(var(--h)) calc(var(--h));
	background-repeat: no-repeat;
	-webkit-mask-size: 8% 6%;
	mask-size: 8% 6%;
	-webkit-mask-repeat: repeat;
	mask-repeat: repeat;
	mix-blend-mode: plus-lighter;
	filter: brightness(0.9) contrast(0.7) saturate(2);
	opacity: var(--o);
}

.strn-srv-logo {
	position: relative;
	width: 85%;
	z-index: 2;
}

nav {
	position: fixed;
	top: 0px;
	left: 0px;
	font-weight: 600;
	background-color: antiquewhite;
	width: 0px;
	z-index: 999;
}

.menu-btn {
	position: fixed;
	padding: 20px;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	gap: 0px;
	transition: all 0.7s;
	z-index: 1;
	justify-content: space-between;
	pointer-events: none;
}

nav .btn {
	opacity: 1;
	pointer-events: none;
	padding: 8px 16px;
	fill: #f6d4b1;
}

.menu-btn>.btn:first-child {
	padding: 12px 24px;
	margin-right: 16px;
}

nav svg {
	transition: all 0.2s;
}

nav .btn {
	opacity: 1;
	pointer-events: all;
	user-select: none;
}

.menu-body {
	background-color: #1a2e41;
	color: #f6d4b1;
	font-size: 2em;
	text-decoration: none !important;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: -100px;
	right: 100vw;
	z-index: 0;
	transition: all 0.7s;
	display: inline-flex;
	flex-direction: column;
	padding-top: 70px;
	padding-left: 20px;
	overflow: auto;
	box-sizing: border-box;
	opacity: 0;
}

.menu-body a {
	width: fit-content;
	margin-bottom: 18px;
	text-decoration: none !important;
}

.menu-body a:hover {
	transform: none;
	box-shadow: none;
	padding: 8px;
	color: #fff;
	border-bottom: 4px solid #f50b48;
	transition: transform 0.5s, padding 0.5s, color 0.5s, background-color 0.5s, border-radius 0.5s ease-in-out;
}

.active .menu-body {
	padding-top: 130px;
	left: 0px;
	right: 0px;
	opacity: 1;
}

@media (min-width: 540px) {
	.menu-btn {
		justify-content: left;
	}

	.active .menu-btn {
		translate: 28px;
	}

	.menu-body {
		padding-left: 50px;
	}
}

@media (max-width: 735px) {
	.menu-body a {
		margin-bottom: 30px;
	}
}

.btn {
	position: relative;
	font-size: 18px;
	display: inline-flex;
	margin: 0.25rem;
	box-shadow: 6px 6px 0px rgba(82, 82, 82, 0.25);
	background-color: #525252;
	color: #f6d4b1;
	cursor: pointer;
	transition: all 0.3s;
	padding: 4px 24px;
	border: #f6d4b1 solid 1px;
	text-decoration: none;
}

.btn:hover {
	transform: scale(1.1);
	box-shadow: 8px 8px 6px rgba(82, 82, 82, 0.25);
	z-index: 2;
}

.btn:active {
	transform: scale(0.95);
	box-shadow: 4px 4px 0px rgba(82, 82, 82, 0.4);
}

.unique-content {
	background: linear-gradient(to right, #FFC857, #F26D5A, #A86FDF, #59A1FF);
	background-clip: text;
	-webkit-background-clip: text;
	font-weight: 600;
	color: transparent;
}

p .point {
	display: inline-block;
	padding: 4px 8px;
	margin-bottom: 12px;
	border: dashed 1px #72748c;
	box-shadow: 1px 1px 0px #72748c, 4px 4px 0px rgba(82, 82, 82, 0.25);
}

p .dynamic {
	font-weight: 600;
}

p .dynamic-power {
	font-weight: 600;
	color: #bec3ff;
}

p .contact-whtp {
	background: linear-gradient(to right, #25d366, #128c7e, #075e54);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 600;
	cursor: pointer;
	transition: font-size 0.3s ease;
}

p .contact-vbr {
	background: linear-gradient(to right, #8f5de8, #d07eff, #9e00f0);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 600;
	cursor: pointer;
	transition: font-size 0.3s ease;
}

p .contact-whtp:hover {
	font-size: 1.1rem;
}

p .contact-vbr:hover {
	font-size: 1.1rem;
}

.u-line span {
	border-bottom: 2px solid #bec3ff59;
}

.glasses-panel {
	width: fit-content;
	padding-top: 45px;
	padding-bottom: 15px;
	margin: auto;
}

.loader-wrapper {
	position: relative;
	width: 177px;
	height: 102px;
	background-color: #00162b;
    border-radius: 50px;
	animation: gentleFloat 10s ease-in-out infinite;
	transition: transform 0.5s ease-in-out;
}

.loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 177px;
	height: 102px;
	overflow: hidden;
	mask: url(../img/threads/svg/steraton-services-glass-shadow-1.svg);
}

.loader:nth-of-type(2) {
	mask: url(../img/threads/svg/steraton-services-glass-shadow-2.svg);
}

.blur {
	filter: blur(3px);
	mix-blend-mode: hue-rotate(45deg);
	transform: scale(1.04, 1);
	transform-origin: center;
}

.blur .background {
	animation: 1.5s linear 0.1s infinite spin;
}

.image-wrapper {
	position: absolute;
	top: 24px;
	left: 33px;
	width: 114px;
	overflow: hidden;
	height: 52px;
	background: url(../img/steraton-services-sapphire-cat.webp);
	background-size: 250px;
	background-position: -70px -93px;
	border-radius: 35%;
	box-shadow: inset 0 0 10px 11px #00162b;
	opacity: 0.3;
	transform: scale(1.1);
	transform-origin: center;
	animation: 2.5s ease-in-out 0.2s alternate infinite fade;
	z-index: 0;
}

.background {
	position: absolute;
	height: 200%;
	width: 200%;
	top: -50%;
	left: -50%;
	animation: 1.5s linear 0s infinite spin;
	transform-origin: center;
	background: conic-gradient(from 0deg at center center, #000 0%, #00ffea 30%, #ea00ff 50%, #ffea00 100%);
}

@keyframes spin {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes fade {
	from {
		opacity: 0;
	}

	to {
		opacity: 0.2;
	}
}

@keyframes gentleFloat {
	0% {
		transform: translate(0px, 0px);
	}

	25% {
		transform: translate(5px, -5px);
	}

	50% {
		transform: translate(-5px, 5px);
	}

	75% {
		transform: translate(5px, 5px);
	}

	100% {
		transform: translate(0px, 0px);
	}
}

.semi-logo {
	margin-top: 50px;
}

.semi-logo img {
	width: clamp(0px, 95vw, 500px);
	user-select: none;
}

.semi-logo img:hover {
	animation: vibrate 0.3s ease-in-out infinite;
}

.semi-logo p {
	font-size: 23px;
	font-weight: 600;
	text-align: center;
}

@keyframes vibrate {

	0%,
	100% {
		transform: translate(0, 0);
	}

	10% {
		transform: translate(-2px, 0);
	}

	20% {
		transform: translate(2px, 0);
	}

	30% {
		transform: translate(0, -2px);
	}

	40% {
		transform: translate(0, 2px);
	}

	50% {
		transform: translate(-1px, 0);
	}

	60% {
		transform: translate(1px, -1px);
	}

	70% {
		transform: translate(-1px, 1px);
	}

	80% {
		transform: translate(1px, -1px);
	}

	90% {
		transform: translate(0, 1px);
	}
}

.wrapper {
	padding: 16px;
	text-align: left;
	line-height: 1.5;
	width: clamp(0px, 95vw, 680px);
	margin: auto;
	box-sizing: border-box;
}

.faq-container {
	color: #bec3ff;
	border: dashed 1px #6f5f00;
	box-shadow: 1px 1px 0px #fcd700, 4px 4px 0px rgba(82, 82, 82, 0.25);
	margin: 20px 0;
}

.question {
	font-size: 0.9rem;
	font-weight: 600;
	padding: 20px 80px 20px 20px;
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.question::after {
	content: "\002B";
	font-size: 1.8rem;
	position: absolute;
	right: 20px;
	transition: 0.2s;
}

.question.active::after {
	transform: rotate(45deg);
}

.answercont {
	max-height: 0;
	overflow: hidden;
	transition: 0.3s;
	cursor: default;
}

.answer {
	font-size: 0.95rem;
	color: #ffffff;
	padding: 0 20px 20px;
	line-height: 1.5rem;
}

.answercont ul li {
	margin: 10px 0px 10px 21px;
}

.answercont ul li span {
	transform: scale(1.1);
	color: #fcd700;
	background-color: #00162b;
	transition: transform 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
	cursor: pointer;
}

.answercont ul li span:hover {
	transform: scale(1.1);
	box-shadow: 1px 1px 0px #fcd700, 4px 4px 0px rgba(82, 82, 82, 0.25);
	border: dashed 1px #6f5f00;
	padding-right: 5px;
	padding-left: 5px;
}

.scroller__inner {
	padding-block: 1rem;
	display: flex;
	flex-wrap: wrap;
}

.scroller[data-animated="true"] {
	overflow: hidden;
	-webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
	mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	flex-wrap: nowrap;
	-webkit-animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
	animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
	--_animation-direction: reverse;
}

.scroller[data-direction="left"] {
	--_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
	--_animation-duration: 40s;
}

@-webkit-keyframes scroll {
	to {
		transform: translate(calc(-50% - 0.5rem));
	}
}

@keyframes scroll {
	to {
		transform: translate(calc(-50% - 0.5rem));
	}
}

.languages-names {
	margin: auto;
	text-align: center;
	width: clamp(0px, 95vw, 680px);
}

.tag-list {
	margin: 0;
	padding-inline: 0;
	list-style: none;
}

.tag-list li {
	padding: 10px;
	margin-right: 10px;
	background-color: #2a4b9a;
	color: white;
	border: dashed 1px #ffffff;
	box-shadow: 1px 1px 0px #ffffff, 4px 4px 0px rgba(82, 82, 82, 0.25);
}

.background-text {
	position: relative;
	overflow: hidden;
}

.background-text::after {
	max-width: 100vw;
	font-family: steraton-pixel;
	white-space: nowrap;
	content: "Steraton";
	position: absolute;
	top: 62%;
	left: 50%;
	transform: translate(-50%, -40%);
	text-transform: uppercase;
	font-size: clamp(2rem, 16vw, 5.8rem);
	color: #081d32;
	font-weight: bold;
	letter-spacing: 0.5vw;
	z-index: -1;
	white-space: nowrap;
	text-align: center;
	overflow: hidden;
}

.background-text p {
	position: relative;
	z-index: 1;
}

@media (max-width: 405px) {
	.background-text::after {
		transform: translate(-50%, -62%);
	}
}

.gold-text-wrapper {
	width: clamp(0px, 95vw, 680px);
	margin: auto;
	margin-top: 90px;
	display: grid;
	grid-template-areas: 'overlap';
	place-content: center;
	text-align: center;
	text-transform: uppercase;
}

.gold-text-wrapper>div {
	background-clip: text;
	-webkit-background-clip: text;
	font-weight: 900;
	font-size: 1.6rem;
	grid-area: overlap;
	letter-spacing: 3px;
	-webkit-text-stroke: 4px transparent;
}

.gold-text-wrapper .bg {
	background-image: repeating-linear-gradient(105deg,
			#ffb338 0%,
			#3e2904 5%,
			#ffb338 12%);
	color: transparent;
	filter: drop-shadow(5px 15px 15px black);
	transform: scaleY(1);
	transform-origin: top;
}

.gold-text-wrapper .fg {
	background-image: repeating-linear-gradient(5deg,
			#ffb338 0%,
			#77571d 23%,
			#ffb338 31%);
	color: #1e2127;
	transform: scale(1);
}

.key-services {
	position: relative;
	width: clamp(0px, 95vw, 680px);
	margin: auto;
	margin-top: 45px;
}

.ofr-jobs {
	display: flex;
	align-items: center;
	overflow-x: auto;
	white-space: nowrap;
	padding: 10px;
	margin: auto;
	list-style-type: none;
	-webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
	cursor: grab;
	-ms-overflow-style: none;
	scrollbar-width: none;
	transition: width 0.7s ease-out;
}

.ofr-jobs li {
	height: fit-content;
	text-wrap: auto;
	padding: 10px 15px;
	margin-right: 10px;
	color: white;
	flex: 0 0 auto;
	user-select: none;
	width: auto;
	max-height: 50px;
	overflow: hidden;
	transition: max-height 0.5s ease-out, margin-right 0.3s ease-in-out, background-color 0.3s ease-out;
}

.ofr-jobs li:first-child {
	margin-left: 20%;
}

.ofr-jobs li:last-child {
	margin-right: 20%;
}

.ofr-jobs li.default {
	background-color: #db0a40 !important;
	border: dashed 2px #fcd700;
	font-weight: 600;
	max-width: 50%;
	max-height: 50%;
	white-space: initial;
	transition: background-color 0.7s ease-out, max-height 0.5s ease-out, border 0.5s ease-in-out, margin-left 0.7s ease-out;
}

.ofr-jobs li:first-child.default {
	margin-left: 20%;
}

.ofr-jobs li:not(.default) {
	transition: background-color 0.7s ease-out, max-height 0.5s ease-out, margin-left 0.5s ease-out;
}

.ofr-jobs::-webkit-scrollbar {
	display: none;
}

.code-container {
	width: clamp(0px, 95vw, 680px);
	margin: auto;
	background-color: #3b4252;
	padding: 10px;
	overflow: hidden;
	font-family: steraton-pixel;
	text-align: left;
	border-radius: 23px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	position: relative;
}

@media (max-width: 509px) {
	.code-container {
		border-radius: 0;
	}
}

.code-display {
	margin: 0;
	font-size: 1rem;
	user-select: none;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.html-tag {
	color: #ff79c6;
}

.html-language-value {
	color: #f7bbae;
}

.head-tag {
	color: #d57878;
}

.title-tag {
	color: #0097ec;
}

.title-value {
	color: #FFA500;
	animation: textHitFontSize 1s ease-out forwards;
	transition: transform 0.5s;
}

@keyframes textHitFontSize {
	0% {
		font-size: 1em;
		letter-spacing: 0px;
		text-shadow: 0 0 0 rgba(0, 0, 0, 0);
	}

	45% {
		font-size: 1.03em;
		letter-spacing: 1px;
	}

	70% {
		font-size: 0.95em;
		letter-spacing: 0px;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	}

	100% {
		font-size: 1em;
		letter-spacing: 0px;
		text-shadow: 0 0 0 rgba(0, 0, 0, 0);
	}
}

.body-tag {
	color: #b0b0ff;
}

.div-tag {
	color: #ff5454;
}

.attribute {
	color: #ebcb8b;
}

.id-tag-value {
	color: #00cd00;
}

.paragraph-tag {
	color: #9af0f4;
}

.characters-tag {
	color: #c1c1c1;
}

.string {
	text-shadow: #86afcd 1px 0 10px;
	color: #ffffff;
}

.string-white-space {
	display: inline-block;
}

.cursor {
	display: inline-block;
	width: 10px;
	height: 1.2rem;
	color: #d8dee9;
	background-color: #d8dee9;
	font-weight: bold;
	margin-left: 2px;
	animation: blink 1s infinite;
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.exec-engine {
	display: flex;
	margin-top: 12px;
	margin-bottom: 20px;
}

.ticontainer {
	position: absolute;
	right: 15px;
}

.ticontainer .tidot {
	background-color: #90949c;
}

.tiblock {
	align-items: center;
	display: flex;
	height: 17px;
}

.tiblock .tidot {
	width: 10px;
	height: 10px;
	display: inline-block;
	border-radius: 8px;
	margin-right: 2px;
	-webkit-animation: typingDots 1.5s infinite ease-in-out;
}

.tiblock .tidot:nth-child(1) {
	-webkit-animation-delay: 200ms;
}

.tiblock .tidot:nth-child(2) {
	-webkit-animation-delay: 300ms;
}

.tiblock .tidot:nth-child(3) {
	-webkit-animation-delay: 400ms;
}

@-webkit-keyframes typingDots {
	0% {
		-webkit-transform: translateY(0px)
	}

	28% {
		-webkit-transform: translateY(-10px)
	}

	44% {
		-webkit-transform: translateY(0px)
	}
}

.con_mail {
	transform: scale(1.1);
	color: #fcd700;
	font-weight: 600;
	background-color: #00162b;
	transition: transform 0.3s ease, font-size 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
	cursor: pointer;
}

.con_mail:hover {
	transform: scale(1.1);
	font-size: 1.1rem;
	border: dashed 1px #6f5f00;
	box-shadow: 1px 1px 0px #fcd700, 4px 4px 0px rgba(82, 82, 82, 0.25);
	padding-right: 5px;
	padding-left: 5px;
}

form {
	width: clamp(0px, 90vw, 680px);
	padding: 15px;
	border: 4px solid #000;
	background-color: #f4f4f4;
	text-align: left;
	margin: 0 auto;
	box-shadow: 8px 8px 0 #000;
}

form p {
	color: #f50b48;
	padding: 0;
}

form div {
	padding: 0px 0px 15px 12px;
}

form div label {
	width: fit-content;
}

form label {
	display: block;
	margin-top: 10px;
	color: #333;
	font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
	width: calc(100% - 20px);
	padding: 8px;
	margin-top: 4px;
	margin-bottom: 10px;
	border: 2px solid #000;
	background-color: #fff;
	color: #333;
	font-size: 16px;
	outline: none;
	box-shadow: inset 4px 4px 0 #ccc;
	font-family: inherit;
}

form select {
	width: fit-content;
}

form textarea {
	min-height: 50px;
	max-height: 300px;
	height: 170px;
	resize: vertical;
}

form label[for="gdpr"],
label[for="verify"] {
	display: flex;
	margin-bottom: 15px;
	align-items: center;
	font-weight: normal;
	font-size: 14px;
	color: #333;
}

form input[type="checkbox"] {
	margin-right: 8px;
}

form button {
	width: 100%;
	padding: 10px;
	font-family: "chill", sans-serif;
	background-color: #333;
	color: #fff;
	border: 2px solid #000;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	box-shadow: 4px 4px 0 #000;
	transition: transform 0.1s ease;
}

form button:hover {
	transform: translate(-2px, -2px);
}

.sub-community {
	margin-top: 35px;
}

.sub-community img {
	width: inherit;
	user-select: none;
}

.sub-community div {
	display: flex;
	padding: 0px;
	margin-top: 20px;
}

.status {
	width: 100%;
	display: none;
	margin-top: 15px;
}

@media (max-width: 380px) {
	.sub-community div {
		display: block;
	}
}

@media (min-width: 381px) {
	.sub-community div input {
		margin: 0px 10px 0px 0px;
	}
}

footer {
	position: relative;
	display: flex;
	width: clamp(0px, 95vw, 680px);
	flex-direction: column;
	color: #ffffff;
	margin: auto;
	margin-top: 160px;
	padding: 32px 0px;
	cursor: default;
	z-index: 2;
}

.footer-frame p {
	padding: 0px;
	margin-top: 12px;
}

.blaze {
	text-align: left;
	font-size: clamp(3.25rem, 5vw, 48px);
	font-weight: 600;
	color: white;
	padding-top: 40px;
	text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange, 4px -5px 6px yellow, -4px -10px 10px yellow, 0 -10px 30px yellow;
	animation: 2s Blazing infinite alternate linear;
}

@keyframes Blazing {
	0% {
		text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange, 0 0 0 yellow, 0 0 5px yellow, -2px -5px 5px yellow, 4px -10px 10px yellow;
	}

	25% {
		text-shadow: 0 3px 20px red, 0 0 30px red, 0 0 20px orange, 0 0 5px yellow, -2px -5px 5px yellow, 3px -10px 10px yellow, -4px -15px 20px yellow;
	}

	50% {
		text-shadow: 0 3px 20px red, 0 0 20px red, 0 -5px 10px orange, -2px -5px 5px yellow, 3px -10px 10px yellow, -4px -15px 20px yellow, 2px -20px 30px rgba(255, 255, 0, 0.5);
	}

	75% {
		text-shadow: 0 3px 20px red, 0 0 20px red, 0 -5px 10px orange, 3px -5px 5px yellow, -4px -10px 10px yellow, 2px -20px 30px rgba(255, 255, 0, 0.5), 0px -25px 40px rgba(255, 255, 0, 0)
	}

	100% {
		text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange, 0 0 0 yellow, 0 0 5px yellow, -2px -5px 5px yellow, 4px -10px 10px yellow;
	}
}

.footer-sections {
	display: flex;
	width: clamp(0px, 95vw, 680px);
	justify-content: space-between;
	margin-top: 45px;
}

.footer-sections h3 {
	color: #db0a40;
	font-size: 0.85rem;
	font-weight: 600;
	text-align: left;
	background-color: #1a2e41;
	width: fit-content;
	padding: 10px;
	margin-left: 0;
}

.footer-sections p {
	width: fit-content;
	padding: 0px;
	margin-left: 10px;
	margin-bottom: 3px;
}

.footer-sections p span {
	border-bottom: 2px solid #fcd700;
	cursor: default;
}

.footer-sections a:hover {
	transform: none;
	box-shadow: none;
	cursor: pointer;
}

@media (max-width: 420px) {
	.footer-sections {
		display: block;
	}

	.footer-sections div {
		margin-bottom: 15px;
	}

	.footer-sections h3 {
		margin-bottom: 15px;
		font-size: 17px;
	}

	.footer-sections p {
		display: inline-block;
		padding: 0px 4px 0px 4px;
		margin-bottom: 10px;
		margin-left: 0;
		border-radius: 13px;
		border: 2px solid #1a2e41;
		transition: background-color 0.8s;
	}
}

.copyright {
	margin: 75px 0px 5px 0px;
}

.copyright p {
	padding: 0px;
	color: #ffffff;
	text-align: center;
}

.copyright p a {
	display: inline;
	font-weight: 700;
	background: linear-gradient(to right, #FFC857, #F26D5A, #A86FDF, #59A1FF, #FFD269);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	animation: shine 25s linear infinite;
}

.copyright p a:hover {
	transform: none;
	box-shadow: none;
	cursor: pointer;
}

@keyframes shine {
	0% {
		background-position: -200px 0;
	}

	50% {
		background-position: 200px 0;
	}

	100% {
		background-position: -200px 0;
	}
}

.love {
	display: inline-block;
	position: relative;
	top: 3px;
	font-size: 1.4em;
	-webkit-transform: scale(.9);
	-moz-transform: scale(.9);
	transform: scale(.9);
	-webkit-animation: love .5s infinite linear alternate-reverse;
	-moz-animation: love .5s infinite linear alternate-reverse;
	animation: love .5s infinite linear alternate-reverse;
}

@-webkit-keyframes love {
	to {
		-webkit-transform: scale(1.2);
	}
}

.dimLayer {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: rgb(0 0 0 / 85%);
	z-index: 1000;
	justify-items: center;
	align-content: space-evenly;
	transition: height 0.5s ease, opacity 0.5s ease;
	opacity: 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.dimLayer.show {
	height: 100%;
	opacity: 1;
}

.container {
	padding: 1px;
	max-width: 50%;
	margin: 10px;
	background: white;
	border-radius: 17px;
	text-align: center;
	opacity: 0;
}

.container.show {
	opacity: 1;
}

.dimLayer .container p {
	text-align: center;
	color: #000000;
	padding: 0;
	margin-bottom: 15px;
}

.dimLayer .container h4 {
	font-size: clamp(10px, 8vw, 32px);
	font-weight: 600;
	color: #1a2e41;
	margin-top: 30px;
}

.closeBtn {
	position: relative;
	top: 12px;
	background-color: #db0a40;
	color: white;
	font-weight: 600;
	letter-spacing: 1px;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 17px;
	user-select: none;
}

.progress-container {
	width: 319px;
	height: 5px;
	margin: auto;
	background-color: #f3f3f3;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	position: relative;
}

.progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(to right, #ff6b6b, #ffcc00);
	transition: width 0.1s ease;
}

.timer-text {
	width: 319px;
	margin: auto;
	font-size: 12px;
	font-weight: bold;
	text-align: right;
	color: #b8b8b8;
}

.scrolling {
	overflow: clip;
}

.verify-container {
	display: grid;
	grid-template-columns: repeat(5, 55px);
	grid-template-rows: repeat(5, 50px);
	justify-content: center;
	width: 275px;
	margin: auto;
	padding: 20px;
	border: 2px solid #333;
	border-radius: 17px;
	background: #f4f4f4;
	text-align: center;
}

.verify-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e0e0e0;
	font-size: 1.2em;
	cursor: pointer;
	border: 1px solid #aaa;
	border-radius: 8px;
	user-select: none;
	margin: 2px;
	user-select: none;
	transition: background 0.3s ease;
}

.verify-cell.selected {
	background: #a0e3a0;
}

.verify-cell.correct {
	background: #4CAF50;
}

.verify-cell.incorrect {
	background: #e3a0a0;
}

.verify-canvas {
	display: block;
	height: 100px;
	background: #f4f4f4;
	margin: 10px auto;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	position: relative;
}

.selected-items-canvas {
	display: block;
	height: 60px;
	margin: 10px auto;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	position: relative;
}

.verify-message {
	margin: 20px 0px 0px 0px;
	font-weight: bold;
}

.verify-buttons {
	display: block;
	margin-top: 25px;
	justify-content: center;
	user-select: none;
}

.verify-buttons span {
	width: fit-content;
	color: #bec3ff;
	background-color: #1a2e41;
	padding: 8px;
	margin: 3px;
	border-radius: 17px;
	font-weight: 600;
	cursor: pointer;
}

@media (max-width: 573px) {
	.container {
		max-width: none;
	}

	.verify-buttons {
		display: flex;
		align-items: center;
	}
}

.snow-main {
	position: fixed;
	display: flex;
	justify-content: space-between;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: main-loadup 1s forwards linear, main-loadup-bg 10s forwards linear;
	animation-delay: 4s;
	z-index: 1;
}

@keyframes main-loadup {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes main-loadup-bg {
	from {
		background-size: 100% 100%;
		background-position: 0% 0%;
	}

	to {
		background-size: 400% 400%;
		background-position: 0% 100%;
	}
}

.initial-snow {
	position: relative;
	top: 0;
	left: 0;
	width: 345px;
	height: 100%;
	overflow: hidden;
	opacity: 0.2;
	-webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
	mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.initial-snow:nth-of-type(2) {
	margin-left: auto;
	margin-right: 0;
	-webkit-mask: linear-gradient(270deg, transparent, white 20%, white 80%, transparent);
	mask: linear-gradient(270deg, transparent, white 20%, white 80%, transparent);
}

.initial-snow>* {
	font-family: auto;
	font-size: 50px;
	color: white;
	position: absolute;
	top: -5vh;
}

@keyframes snowfall {
	0% {
		transform: translate3d(var(--left-ini), 0, 0);
	}

	100% {
		transform: translate3d(var(--left-end), 110vh, 0);
	}
}

.snow:nth-child(2n) {
	filter: blur(1px);
	font-size: 40px;
}

.snow:nth-child(6n) {
	filter: blur(2px);
	font-size: 30px;
}

.snow:nth-child(10n) {
	filter: blur(5px);
	font-size: 30px;
}

.snow:nth-child(1) {
	--size: 0.8vw;
	--left-ini: 0vw;
	--left-end: -1vw;
	left: 70vw;
	animation: snowfall 9s linear infinite;
	animation-delay: -1s;
}

.snow:nth-child(2) {
	--size: 0.2vw;
	--left-ini: -7vw;
	--left-end: 10vw;
	left: 65vw;
	animation: snowfall 15s linear infinite;
	animation-delay: -8s;
}

.snow:nth-child(3) {
	--size: 1vw;
	--left-ini: 6vw;
	--left-end: 6vw;
	left: 1vw;
	animation: snowfall 9s linear infinite;
	animation-delay: -7s;
}

.snow:nth-child(4) {
	--size: 0.2vw;
	--left-ini: -3vw;
	--left-end: 9vw;
	left: 88vw;
	animation: snowfall 14s linear infinite;
	animation-delay: -5s;
}

.snow:nth-child(5) {
	--size: 0.4vw;
	--left-ini: -2vw;
	--left-end: -9vw;
	left: 74vw;
	animation: snowfall 6s linear infinite;
	animation-delay: -4s;
}

.snow:nth-child(6) {
	--size: 0.2vw;
	--left-ini: 5vw;
	--left-end: 1vw;
	left: 35vw;
	animation: snowfall 6s linear infinite;
	animation-delay: -7s;
}

.snow:nth-child(7) {
	--size: 0.4vw;
	--left-ini: -2vw;
	--left-end: -1vw;
	left: 27vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -8s;
}

.snow:nth-child(8) {
	--size: 1vw;
	--left-ini: -9vw;
	--left-end: -2vw;
	left: 69vw;
	animation: snowfall 8s linear infinite;
	animation-delay: -8s;
}

.snow:nth-child(9) {
	--size: 0.2vw;
	--left-ini: -1vw;
	--left-end: -5vw;
	left: 84vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -6s;
}

.snow:nth-child(10) {
	--size: 0.2vw;
	--left-ini: 7vw;
	--left-end: -9vw;
	left: 82vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -3s;
}

.snow:nth-child(11) {
	--size: 0.6vw;
	--left-ini: -2vw;
	--left-end: -1vw;
	left: 48vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -1s;
}

.snow:nth-child(12) {
	--size: 0.2vw;
	--left-ini: 5vw;
	--left-end: 6vw;
	left: 39vw;
	animation: snowfall 15s linear infinite;
	animation-delay: -8s;
}

.snow:nth-child(13) {
	--size: 0.2vw;
	--left-ini: 6vw;
	--left-end: 5vw;
	left: 3vw;
	animation: snowfall 9s linear infinite;
	animation-delay: -8s;
}

.snow:nth-child(14) {
	--size: 0.8vw;
	--left-ini: -5vw;
	--left-end: -2vw;
	left: 49vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -8s;
}

.snow:nth-child(15) {
	--size: 0.6vw;
	--left-ini: 10vw;
	--left-end: 4vw;
	left: 77vw;
	animation: snowfall 7s linear infinite;
	animation-delay: -4s;
}

.snow:nth-child(16) {
	--size: 0.8vw;
	--left-ini: -3vw;
	--left-end: 1vw;
	left: 86vw;
	animation: snowfall 14s linear infinite;
	animation-delay: -8s;
}

.snow:nth-child(17) {
	--size: 1vw;
	--left-ini: 6vw;
	--left-end: -7vw;
	left: 18vw;
	animation: snowfall 9s linear infinite;
	animation-delay: -6s;
}

.snow:nth-child(18) {
	--size: 1vw;
	--left-ini: -9vw;
	--left-end: 4vw;
	left: 64vw;
	animation: snowfall 13s linear infinite;
	animation-delay: -7s;
}

.snow:nth-child(19) {
	--size: 1vw;
	--left-ini: 2vw;
	--left-end: -7vw;
	left: 52vw;
	animation: snowfall 15s linear infinite;
	animation-delay: -9s;
}

.snow:nth-child(20) {
	--size: 0.4vw;
	--left-ini: 0vw;
	--left-end: 8vw;
	left: 5vw;
	animation: snowfall 8s linear infinite;
	animation-delay: -9s;
}

.snow:nth-child(21) {
	--size: 0.6vw;
	--left-ini: -9vw;
	--left-end: -2vw;
	left: 10vw;
	animation: snowfall 12s linear infinite;
	animation-delay: -3s;
}

.snow:nth-child(22) {
	--size: 0.8vw;
	--left-ini: -3vw;
	--left-end: -8vw;
	left: 54vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -9s;
}

.snow:nth-child(23) {
	--size: 0.6vw;
	--left-ini: -7vw;
	--left-end: -8vw;
	left: 20vw;
	animation: snowfall 6s linear infinite;
	animation-delay: -3s;
}

.snow:nth-child(24) {
	--size: 0.4vw;
	--left-ini: 10vw;
	--left-end: -4vw;
	left: 68vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -8s;
}

.snow:nth-child(25) {
	--size: 1vw;
	--left-ini: 3vw;
	--left-end: 5vw;
	left: 90vw;
	animation: snowfall 7s linear infinite;
	animation-delay: -9s;
}

.snow:nth-child(26) {
	--size: 1vw;
	--left-ini: -7vw;
	--left-end: 5vw;
	left: 71vw;
	animation: snowfall 13s linear infinite;
	animation-delay: -2s;
}

.snow:nth-child(27) {
	--size: 0.6vw;
	--left-ini: 9vw;
	--left-end: 4vw;
	left: 2vw;
	animation: snowfall 15s linear infinite;
	animation-delay: -5s;
}

.snow:nth-child(28) {
	--size: 1vw;
	--left-ini: -5vw;
	--left-end: 3vw;
	left: 23vw;
	animation: snowfall 12s linear infinite;
	animation-delay: -1s;
}

.snow:nth-child(29) {
	--size: 0.4vw;
	--left-ini: -2vw;
	--left-end: -1vw;
	left: 39vw;
	animation: snowfall 14s linear infinite;
	animation-delay: -9s;
}

.snow:nth-child(30) {
	--size: 0.6vw;
	--left-ini: -9vw;
	--left-end: -5vw;
	left: 76vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -5s;
}

.snow:nth-child(31) {
	--size: 0.4vw;
	--left-ini: -5vw;
	--left-end: 3vw;
	left: 14vw;
	animation: snowfall 8s linear infinite;
	animation-delay: -5s;
}

.snow:nth-child(32) {
	--size: 0.2vw;
	--left-ini: 5vw;
	--left-end: -1vw;
	left: 86vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -9s;
}

.snow:nth-child(33) {
	--size: 0.4vw;
	--left-ini: -3vw;
	--left-end: 10vw;
	left: 66vw;
	animation: snowfall 6s linear infinite;
	animation-delay: -6s;
}

.snow:nth-child(34) {
	--size: 1vw;
	--left-ini: -3vw;
	--left-end: 6vw;
	left: 75vw;
	animation: snowfall 14s linear infinite;
	animation-delay: -9s;
}

.snow:nth-child(35) {
	--size: 1vw;
	--left-ini: -6vw;
	--left-end: 7vw;
	left: 22vw;
	animation: snowfall 7s linear infinite;
	animation-delay: -5s;
}

.snow:nth-child(36) {
	--size: 1vw;
	--left-ini: 3vw;
	--left-end: 4vw;
	left: 10vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -10s;
}

.snow:nth-child(37) {
	--size: 0.6vw;
	--left-ini: 2vw;
	--left-end: 10vw;
	left: 95vw;
	animation: snowfall 13s linear infinite;
	animation-delay: -6s;
}

.snow:nth-child(38) {
	--size: 0.8vw;
	--left-ini: 5vw;
	--left-end: 8vw;
	left: 34vw;
	animation: snowfall 9s linear infinite;
	animation-delay: -10s;
}

.snow:nth-child(39) {
	--size: 0.8vw;
	--left-ini: 4vw;
	--left-end: 0vw;
	left: 80vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -2s;
}

.snow:nth-child(40) {
	--size: 0.8vw;
	--left-ini: 1vw;
	--left-end: -7vw;
	left: 45vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -4s;
}

.snow:nth-child(41) {
	--size: 0.2vw;
	--left-ini: 9vw;
	--left-end: 10vw;
	left: 82vw;
	animation: snowfall 8s linear infinite;
	animation-delay: -2s;
}

.snow:nth-child(42) {
	--size: 1vw;
	--left-ini: 9vw;
	--left-end: -9vw;
	left: 22vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -6s;
}

.snow:nth-child(43) {
	--size: 0.6vw;
	--left-ini: 5vw;
	--left-end: 8vw;
	left: 66vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -1s;
}

.snow:nth-child(44) {
	--size: 0.6vw;
	--left-ini: -5vw;
	--left-end: -2vw;
	left: 75vw;
	animation: snowfall 12s linear infinite;
	animation-delay: -4s;
}

.snow:nth-child(45) {
	--size: 0.2vw;
	--left-ini: 0vw;
	--left-end: 3vw;
	left: 2vw;
	animation: snowfall 7s linear infinite;
	animation-delay: -5s;
}

.snow:nth-child(46) {
	--size: 0.2vw;
	--left-ini: 8vw;
	--left-end: -3vw;
	left: 94vw;
	animation: snowfall 8s linear infinite;
	animation-delay: -9s;
}

.snow:nth-child(47) {
	--size: 0.6vw;
	--left-ini: -6vw;
	--left-end: -9vw;
	left: 95vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -4s;
}

.snow:nth-child(48) {
	--size: 0.2vw;
	--left-ini: -5vw;
	--left-end: 6vw;
	left: 34vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -6s;
}

.snow:nth-child(49) {
	--size: 0.8vw;
	--left-ini: 4vw;
	--left-end: 8vw;
	left: 22vw;
	animation: snowfall 12s linear infinite;
	animation-delay: -10s;
}

.snow:nth-child(50) {
	--size: 0.2vw;
	--left-ini: -4vw;
	--left-end: 4vw;
	left: 100vw;
	animation: snowfall 14s linear infinite;
	animation-delay: -9s;
}

@media (max-width: 1090px) {
	.initial-snow {
		width: 100%;
		opacity: 0.07;
	}

	.initial-snow:nth-of-type(2) {
		display: none;
	}
}