*
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body
{
	font-family: 'Roboto', sans-serif;
}

@keyframes redFlow
{
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.main
{
	width: 100%;
	height: 100%;
	background-image: url(/assets/images/main_background.webp);
	background-size: cover;
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.footer
{
	width: 100%;
	height: 200px;
	background-color: #0E0E0E;
	display: flex;
	justify-content: center;
}

.footer-content
{
	width: 80%;
	height: 100%;
	display: flex;
}

.footer-contact-us
{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer-contact-us > h1
{
	color: #D2D2D2;
	font-size: 26px;
}

.footer-contact-us > p
{
	color: #858585;
	margin-top: 12px;
}

.footer-contact-us > p > a
{
	color: #B5B5B5;
	font-size: 16px;
	text-decoration: none;
}

.footer-social
{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer-social > h1
{
	color: #D2D2D2;
	font-size: 26px;
}

.footer-social > ul
{
	list-style: none;
	display: flex;
	margin-top: 12px;
}

.footer-social > ul > li
{
	margin-right: 12px;
}

.footer-social > ul > li > a
{
	color: #B5B5B5;
	font-size: 16px;
	text-decoration: none;
}

.header
{
	width: 1240px;
	height: 70px;
	display: flex;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background-color: #eeeeee22;
	z-index: 1;
}

.menu-left-side
{
	width: 1025px;
	height: 100%;
	display: flex;
	align-items: center;
}

.menu-logo
{
	width: 55.77px;
	height: 50px;
	background-image: url(/assets/images/logo.svg);
	background-size: 100%;
	margin-left: 40px;
	background-repeat: no-repeat;
	position: relative;
}

.menu-list
{
	display: flex;
	list-style: none;
}

.menu-list-item
{
	margin-right: 64px;
}

.menu-list-item a
{
	color: #ffffff;
	font-size: 16px;
	text-decoration: none;
	transition: 0.3s;
}

.menu-list-item a:hover
{
	color: #c4c4c4;
}

.menu
{
	height: 100%;
	display: flex;
	align-items: center;
    margin-left: 40px;
}

.menu-right-side
{
	width: 215px;
	height: 100%;
	display: flex;
	align-items: center;
}

.media
{
	width: 100%;
	list-style: none;
	display: flex;
	justify-content: space-evenly;
}

.media-item
{
	
}

.media-item a
{
	display: block;
	background-size: 100%;
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	transition: 0.3s;
}

.media-item a:hover
{
	opacity: 0.5;
}

.media-item-dc
{
	background-image: url(/assets/images/discord.svg);
}

.media-item-yt
{
	background-image: url(/assets/images/yt.svg);
}

.selsoviet-main
{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 12%;
}

.selsoviet-big-name-main
{
    color: #ffffff;
    font-size: 120px;
	font-family: 'Squada One', sans-serif;
}

.selsoviet-small-name-main
{
    color: #ffffff;
    font-size: 30px;
	font-family: 'Squada One', sans-serif;
}

.selsoviet-learn-more-main
{
	margin-top: 30px;
	padding: 16px 42px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;

	background: linear-gradient(
		120deg,
		#7a000077,
		#c4000077,
		#ff2a2a77,
		#c4000077,
		#7a000077
	);
	background-size: 300% 300%;

	animation: redFlow 6s ease infinite;
	box-shadow:
		0 0 0 rgba(255, 0, 0, 0),
		inset 0 0 0 rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(6px);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.selsoviet-learn-more-main::before
{
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: inherit;
	background: inherit;
	filter: blur(14px);
	opacity: 0.6;
	z-index: -1;
	transition: opacity 0.25s ease;
}

.selsoviet-learn-more-main:hover
{
	transform: translateY(-2px);
	box-shadow:
		0 12px 30px rgba(255, 0, 0, 0.35),
		inset 0 0 0 rgba(255, 255, 255, 0.15);
}

.selsoviet-learn-more-main:hover::before
{
	opacity: 1;
}

.selsoviet-learn-more-main:active
{
	transform: translateY(0);
}

.selsoviet-promo-1
{
	width: 100%;
	height: 100%;
	background-image: url(/assets/images/promo6.webp);
	background-size: cover;
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.selsoviet-promo-primary-title
{
	width: 45%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-left: 150px;
}

.selsoviet-promo-primary-title > h1
{
	color: #ffffff;
	font-size: 120px;
	font-family: 'Squada One', sans-serif;
}

.selsoviet-promo-primary-title > p
{
	color: #ffffff;
	font-size: 27px;
	margin-top: 10px;
	font-family: 'PT Serif', serif;
	font-weight: 700;
}

.selsoviet-wishlist
{
	margin-top: 30px;
	padding: 16px 42px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;

	background: linear-gradient(
		120deg,
		#7a000077,
		#c4000077,
		#ff2a2a77,
		#c4000077,
		#7a000077
	);
	background-size: 300% 300%;

	animation: redFlow 6s ease infinite;
	box-shadow:
		0 0 0 rgba(255, 0, 0, 0),
		inset 0 0 0 rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(6px);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.selsoviet-wishlist::before
{
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: inherit;
	background: inherit;
	filter: blur(14px);
	opacity: 0.6;
	z-index: -1;
	transition: opacity 0.25s ease;
}

.selsoviet-wishlist:hover
{
	transform: translateY(-2px);
	box-shadow:
		0 12px 30px rgba(255, 0, 0, 0.35),
		inset 0 0 0 rgba(255, 255, 255, 0.15);
}

.selsoviet-wishlist:hover::before
{
	opacity: 1;
}

.selsoviet-wishlist:active
{
	transform: translateY(0);
}

.selsoviet-promo-secondary
{
	background-color: #181819;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
}

.selsoviet-promo-secondary > article
{
	margin-top: 100px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.selsoviet-promo-secondary > article:last-of-type
{
	margin-bottom: 100px;
}

.selsoviet-promo-desc-image
{
	width: 711px;
	height: 400px;
	background-size: cover;
	border-radius: 20px;
	background-repeat: no-repeat;
}

.selsoviet-promo-desc-image-1
{
	background-image: url(/assets/images/promo3.webp);
}

.selsoviet-promo-desc-image-2
{
	background-image: url(/assets/images/promo2.webp);
}

.selsoviet-promo-desc-image-3
{
	background-image: url(/assets/images/promo4.webp);
}

.selsoviet-promo-desc-image-4
{
	background-image: url(/assets/images/promo1.webp);
}

.selsoviet-promo-desc-image-5
{
	background-image: url(/assets/images/promo5.webp);
}

.selsoviet-promo-desc
{
	width: 600px;
}

.selsoviet-promo-desc-right
{
	margin-left: 170px;
}

.selsoviet-promo-desc-left
{
	margin-right: 170px;
}

.selsoviet-promo-desc > h1
{
	color: #ffffff;
	font-family: 'PT Serif', serif;
	font-weight: 700;
	font-size: 46px;
}

.selsoviet-promo-desc > p
{
	color: #ffffff;
	font-family: 'PT Serif', serif;
	font-weight: 400;
	font-size: 18px;
	margin-top: 10px;
}
