@font-face {
	font-family: "e-Ukraine";
	src: url("../assets/fonts/e-Ukraine-Light.woff2") format("woff2");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "e-Ukraine";
	src: url("../assets/fonts/e-Ukraine-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "e-Ukraine";
	src: url("../assets/fonts/e-Ukraine-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "e-Ukraine";
	src: url("../assets/fonts/e-Ukraine-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Philosopher";
	src: url("../assets/fonts/Philosopher-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Philosopher";
	src: url("../assets/fonts/Philosopher-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* * {
  outline: 1px solid red;
} */

*,
*::before,
*::after {
	box-sizing: border-box;
	z-index: 1;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

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

body {
	line-height: 1;
	font-family: "e-Ukraine", sans-serif;
	font-weight: 400;
	width: 100%;
}
body.no-scroll {
	overflow: hidden;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

header {
	display: flex;
	flex-direction: row;
	padding: 24px 64px;
	justify-content: space-between;
	top: 0;
	left: 0;
	/* position: fixed; */
	position: absolute;
	width: 100%;
	align-items: center;
	z-index: 1000;
}

.header-left {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 24px;
}

.header-btn {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	font-family: "Philosopher";
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	position: relative;
	background-image: url(../assets/img/header_button-bg.png);
	width: 233px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 0.2s;
}

.header-btn-burger {
	display: none;
}

.header-btn:hover {
	transform: scale(1.03);
}

.header-btn span {
	background: linear-gradient(
		to bottom,
		#fff975,
		#ffffff
	); /* градиент сверху вниз */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 18px;
}

.logo img {
    width: 200px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.03);
}

.header-links {
	display: flex;
	flex-direction: row;
	gap: 50px;
}

.header-links a {
	text-decoration: none;
	color: #6f6144;
	font-family: "Philosopher";
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.2s;
}

.header-links a:hover {
	color: #9a8b78;
}

/* Burger START */

.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.burger span {
	width: 40px;
	height: 3px;
	background: #6f6144;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Burger END */

/* Lang block START */

.lang-dropdown {
	position: relative;
	display: inline-block;
	user-select: none;
}

.lang-trigger {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	background: #fff5d5;
	border-radius: 8px;
	border: 1px solid #ffe49e;
	padding: 8px 12px;
	transition: background 0.2s;
}

.current-lang {
	color: #3b2e18;
}

.lang-trigger:hover {
	background: #fef4d9;
}

.arrow {
	width: 8px;
	height: 8px;
	border-right: 2px solid #3b2e18;
	border-bottom: 2px solid #3b2e18;
	transform: rotate(45deg);
	transition: transform 0.2s;
	margin-bottom: 2px;
}

.lang-menu {
	position: absolute;
	top: 100%;
	left: 0;
	/* background: #FFE49E; */
	border: 1px solid #ffe49e;
	border-radius: 8px;
	list-style: none;
	padding: 6px 0;
	display: none;
	min-width: 100%;
	/* box-shadow: 0 4px 10px rgba(0,0,0,0.4); */
}

.lang-dropdown.open .lang-menu {
	display: block;
	animation: fadeIn 0.2s ease;
}

.lang-menu li a {
	display: block;
	color: #3b2e18;
	text-decoration: none;
	padding: 8px 12px;
	transition: background 0.2s;
}

.lang-menu li a:hover {
	background: #f5e5c1;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Lang block END */

.hero {
	height: 100%;
	width: 100%;
	padding-bottom: 80px;
	background-image: url(../assets/img/mainbg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.hero::after {
	position: absolute;
	content: "";
	bottom: -20px;
	left: 0px;
	width: 100%;
	height: 32px;
	background: url(../assets/img/divider.svg) center center / contain repeat-x;
	z-index: 1;
}

.main_block {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 472px;
	margin-left: 120px;
}
.main_block h1 {
	text-align: center;
	font-family: "Philosopher";
	font-weight: bold;
	color: #3b2a21;
	font-size: 22px;
	line-height: 1.2;
	margin-bottom: 32px;
}

.main_block-logo img{
	width: 472px;
	margin-bottom: 24px;
	transition: transform 0.5s ease, filter 0.5s ease;
}

.main_block-logo:hover img {
	transform: scale(1.03);
	filter: brightness(1.1);
}

.main_stat {
	display: flex;
	flex-direction: row;
	gap: 24px;
	margin-bottom: 36px;
}

.main_stat-el {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.main_stat-el p {
	color: #9f824a;
}

.main_stat-el span {
	color: #d8bc7f;
	font-size: 12px;
	font-weight: 400;
}

.primary_button {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	font-family: "Philosopher";
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	position: relative;
	background-image: url(../assets/img/primary_button-bg.png);
	width: 350px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	text-decoration: none;
	margin-bottom: 16px;
	text-transform: uppercase;
	transition: transform 0.3s ease;
}

.primary_button:hover {
	transform: scale(1.06);
}

.primary_button span {
	background: linear-gradient(
		to bottom,
		#fff975,
		#ffffff
	); /* градиент сверху вниз */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.secondary_buttons {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 12px;
}

.secondary_button {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	font-family: "Philosopher";
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	position: relative;
	background-image: url(../assets/img/secondary_button-bg.svg);
	width: 138px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #4a3b1d;
	text-transform: uppercase;
	transition: transform 0.3s ease;
}

.secondary_button:hover {
	transform: scale(1.05);
}

.hero-char {
	width: 538px;
	position: absolute;
	top: 0;
	right: 66px;
	z-index: 0;
}

.hero-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-top: 176px;
	position: relative;
}

.hero-inner {
	display: flex;
	flex-direction: column;
	gap: 136px;
}

.bottom-block {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.serverblock-title {
	font-family: "Philosopher";
	color: #685a39;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 0.5;
	margin-bottom: 20px;
}

.servers {
	display: flex;
	flex-direction: column;
	flex: 1 1 100%;
}

.server-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1 1 100%;
}

.server-el {
	background-color: #fffadf;
	border-radius: 8px;
	flex-flow: row;
	flex-shrink: 0;
	justify-content: space-between;
	align-items: center;
	width: 490px;
	height: auto;
	margin: 0;
	padding: 16px 22px;
	display: flex;
	position: relative;
	border: 1px solid #ffcf54;
	text-decoration: none;
	transition: transform 0.3s ease;
	flex: 1 1 100%;
}

.server-el:hover {
	transform: scale(1.01);
}

.first_server-el {
	background-color: #ffffff;
	border-radius: 8px;
	flex-flow: row;
	flex-shrink: 0;
	flex-direction: column;
	width: 490px;
	height: auto;
	margin: 0;
	padding: 16px 22px;
	display: flex;
	position: relative;
	border: 1px solid #ffcf54;
	gap: 12px;
	text-decoration: none;
	transition: transform 0.3s ease;
	flex: 1 1 100%;
	justify-content: center;
}

.first_server-el:hover {
	transform: scale(1.01);
}

.first_server-el-inner {
	display: flex;
	justify-content: space-between;
}

.first_server-desc {
	font-size: 14px;
	color: #8d847c;
	font-weight: 400;
	line-height: 1.5;
}

.server-el_left {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

.rates {
	font-size: 24px;
	font-weight: bold;
	color: #413225;
}

.new_span {
	color: red;
	font-size: 12px;
	font-weight: 500;
}

.chronicles {
	font-size: 14px;
	font-weight: 400;
	color: #857a68;
}

.desc {
	font-size: 14px;
	font-weight: 400;
	color: #d1cab2;
}

.server-el_right {
	background: #00ff4024;
	display: flex;
	flex-direction: row;
	gap: 4px;
    padding: 8px 16px;
    border-radius: 24px;
    align-items: center;
}

.online {
	color: #4d7648;
	font-size: 14px;
	font-weight: 500;
}

.online-first {
	color: white;
	font-weight: 400;
}

.server-el_right-red {
	background: red;
}

.server-el_right-purple {
	background: #d738ff;
}

.news_inner {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 678px;
}

.primary_news {
	width: 678px;
	height: 294px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	/* background-image: url(assets/img/primary_news.jpg); */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid #ffcf54;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.primary_news:hover {
	transform: scale(1.01);
}

.primary_news::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #60442400 40%, #50371b 100%);
	pointer-events: none; /* чтобы не блокировал клики по контенту */
}

.primary_news-text {
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: white;
}

.primary_news-tag {
	color: white;
	padding: 6px 8px;
	background-color: #ff0048cd;
	border-radius: 100px;
	border: 1px solid #ff0048;
	font-size: 12px;
	font-weight: 500;
	display: block;
	width: fit-content;
}

.primary_news-text p {
	font-size: 24px;
}

.primary_news-text span {
	color: #ccc5bc;
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
	width: 80%;
}

.secondary_news {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 8px;
}

.secondary_news-el {
	height: 150px;
	background-color: #d3d3d3;
	border-radius: 8px;
	border: 1px solid #ffcf54;
	padding: 14px 18px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	flex: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	background-image: url(../assets/img/secondary_news-1.png);
	overflow: hidden;
	color: white;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.secondary_news-el:hover {
	transform: scale(1.01);
}

.secondary_news-el::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #60442400 50%, #50371b 100%);
	pointer-events: none; /* чтобы не блокировал клики по контенту */
}

.secondary_news-el p {
	font-size: 14px;
	font-weight: 400;
}

/* Info block START*/

.info {
	padding: 132px 0px;
	position: relative;
}

.info-char {
	position: absolute;
	transform: scale(0.55);
	top: -531px;
	right: -530px;
	z-index: 2;
}

/* .info::after {
    position: absolute;
    content: "";
    bottom: -90px;
    left: 0px;
    width: 100%;
    height: 32px;
    background: url(assets/img/divider.svg) center center / cover no-repeat;
    z-index: 2;
    transform: scaleY(-1);
} */

.info_inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 32px;
	height: 500px;
}

.players_stat {
	width: 474px;
}

.players_stat-content {
	background: linear-gradient(180deg, #fff7e1 0%, #fff1cc 100%);
	height: 464px;
	border-radius: 8px;
	border: 1px solid #ffcf54;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 0 0 474px;
}

.players_stat-content p {
	color: #766958;
	font-size: 14px;
}

.discord_block-content img {
	border-radius: 8px;
	border: 1px solid #ffcf54;
	transition: all 0.3s ease;
	width: 299px;
}

.discord_block-content img:hover {
	transform: scale(1.01);
}

.social_block {
	display: flex;
	flex-direction: column;
	height: 100%;
	flex: 1;
}

.social_block-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
	flex: 1;
	height: 100%;
}

.social-el {
	display: flex;
	flex-direction: row;
	background: linear-gradient(180deg, #fff7e1 0%, #fff1cc 100%);
	border-radius: 8px;
	border: 1px solid #ffcf54;
	flex: 1;
	text-decoration: none;
	padding: 16px 24px;
	align-items: center;
	gap: 12px;
	flex-grow: 1;
	justify-content: space-between;
	/* transition: all 0.3s ease; */
	transition: all 0.3s ease;
}

.social-el:hover {
	transform: scale(1.02);
}

.social-text {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.social-el img {
	width: 40px;
}

.social_img-tiktok {
	width: 36px !important;
}

.social-text p {
	font-size: 16px;
	font-weight: 500;
	color: #413225;
}

.social-el span {
	font-size: 12px;
	color: #766958;
}

/* Info block END*/

/* Start block START */

.start {
	/* background: #ffe5a2; */
	background: linear-gradient(180deg, #ffca8e 0%, #ffca8e27 100%);
	padding: 132px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;

	background-image: url(../assets/img/bg_map.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.start::before {
	position: absolute;
	content: "";
	top: -20px;
	left: 0px;
	width: 100%;
	height: 32px;
	background: url(../assets/img/divider.svg) center center / contain repeat-x;
	z-index: 1;
	transform: scaleY(-1);
	/* background-color: #F4B174; */
}

/* .start::after {
    position: absolute;
    content: "";
    bottom: -20px;
    left: 0px;
    width: 100%;
    height: 32px;
    background: url(assets/img/divider.svg) center center / cover no-repeat;
    z-index: 2;
} */

.start::after {
	position: absolute;
	content: "";
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #ffc27df1 0%, #fff0beec 100%);
	z-index: 0;
}

.start_title {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.start_title p {
	font-size: 20px;
	color: #7f6d46;
	text-transform: uppercase;
	font-weight: 400;
	text-align: center;
}

.start_title h1 {
	font-family: "Philosopher";
	font-weight: 600;
	text-transform: uppercase;
	font-size: 54px;
	color: #423120;
	text-align: center;
}

.start_content {
	margin-top: 64px;
	display: flex;
	flex-direction: row;
	gap: 32px;
}

.start-inner {
	width: 70%;
}

.step {
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: center;
	align-items: center;
	background: linear-gradient(180deg, #fff7e1 0%, #fff1cc 100%);
	padding: 32px 32px;
	border-radius: 16px;
	border: 1px solid #ffcf54;
	flex: 1;
}

.step h1 {
	font-size: 32px;
	font-family: "Philosopher";
	font-weight: 600;
	text-transform: uppercase;
	color: #423120;
}

.step_number {
	color: #ad9868;
}

.step p {
	color: #8e7357;
	font-size: 14px;
	line-height: 150%;
	text-align: center;
}

.step a {
	text-decoration: none;
	color: #423120;
	padding: 16px 48px;
	border: 1px solid #d1bf95;
	border-radius: 32px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.step a:hover {
	background-color: #f4e6c7;
}

/* Start block END */

/* Footer block START */

footer {
	background-color: #fff;
	padding: 64px 0;
	z-index: 3;
	position: relative;
}

.footer_nav {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.footer_title {
	font-size: 22px;
	text-transform: uppercase;
	color: #5f5035;
	font-family: "Philosopher";
	font-weight: 600;
}

.footer_row {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.footer_links {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer_links a {
	text-decoration: none;
	color: #bbae91;
	font-size: 14px;
	transition: all 0.3s ease;
}

.footer_links a:hover {
	color: #d7cdb5;
}

/* Footer block END */

/* Adaptive START */

@media (max-width: 1232px) {
	.container {
		padding: 0 32px;
	}

	.bottom-block {
		flex-direction: column;
	}

	.hero-char {
		display: none;
	}

	.header-links {
		display: none;
	}

	.hero-container {
		justify-content: center;
	}

	.first_server-el,
	.server-el {
		width: auto;
	}

	.news_inner {
		width: auto;
	}

	.primary_news {
		width: auto;
	}

	.main_block {
		margin-left: 0;
	}

	.info_inner {
		flex-wrap: wrap;
	}

	.players_stat {
		flex: 2 100%;
	}

	.discord_block {
		flex: 1;
	}

	.social_block {
		flex: 1;
		height: auto;
	}

	.info_inner {
		height: auto;
	}

	.discord_block-content {
		border: none;
	}

	.info-char {
		display: none;
	}

	.footer_nav {
		flex-direction: column;
	}

	.info-char {
		display: none;
	}

	.start-inner {
		width: 100%;
	}

	.footer_nav {
		gap: 40px;
	}

	.header-btn {
		display: none;
	}

	/* Burger START */

	.nav {
		position: absolute;
		top: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 16px;
		gap: 16px;
		width: 100%;
		height: 100vh;
		border-left: 1px solid #ddd;
		display: none; /* скрываем по умолчанию */
	}

	.nav.active {
		display: flex; /* показываем при клике */
	}

	.burger {
		display: flex;
	}

	/* Анимация бургера при открытии */
	.burger.active span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}
	.burger.active span:nth-child(2) {
		opacity: 0;
	}
	.burger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5.5px, -5.5px);
	}

	/* Burger END */

	.header-links a {
		font-size: 32px;
	}

	.header-links {
		gap: 32px;
	}

	.header-btn-burger {
		display: block;
	}
}

@media (max-width: 640px) {
	.container {
		padding: 0 24px;
	}

	.start_content {
		flex-direction: column;
	}

	.info_inner {
		flex-wrap: nowrap;
		flex-direction: column;
	}

	.players_stat {
		flex: 1;
		width: 100%;
	}

	.discord_block {
		flex: 1;
	}

	.social_block {
		flex: 1;
	}

	.server-list {
		gap: 4px;
	}

	.desc {
		display: none;
	}

	.bottom-block {
		gap: 40px;
	}

	.primary_news {
		padding: 16px;
	}

	.primary_news-text span {
		width: 100%;
	}

	.secondary_news-el {
		padding: 12px 16px;
	}

	.primary_news-tag {
		font-size: 14px;
		padding: 4px 6px;
	}

	.secondary_news-el p {
		line-height: 130%;
	}

	header {
		padding: 24px 16px;
	}

	.header-btn {
		display: none;
	}

	.main_block-logo img {
		width: 392px;
	}

	.hero-inner {
		gap: 80px;
	}

	.server-el {
		padding: 16px;
	}

	.first_server-el {
		padding: 16px;
	}

	.info {
		padding: 80px 0;
	}

	.info_inner {
		gap: 48px;
	}

	.start::before {
		display: none;
	}

	.hero::after {
		display: none;
	}

	.start_title p {
		font-size: 16px;
	}

	.start_title {
		gap: 16px;
	}

	.discord_block-content img {
		width: 100%;
	}
}

@media (max-width: 440px) {
	.container {
		padding: 0 16px;
	}

	.main_block-logo img {
		width: 360px;
	}

	.secondary_news {
		flex-direction: column;
	}

	.secondary_news-el {
		background-image: none;
		flex-direction: row-reverse;
		background: linear-gradient(180deg, #fff7e1 0%, #fff1cc 100%);
		border: 1px solid #ffcf54;
		align-items: center;
	}

	.secondary_news-el::before {
		background: linear-gradient(180deg, #fff7e1 0%, #fff1cc 100%);
	}

	.secondary_news-el p {
		color: #3b2a21;
	}

	.start_title h1 {
		font-size: 46px;
	}

	.step h1 {
		text-align: center;
		font-size: 30px;
	}
}

/* Adaptive END */

/* consent */
[data-section="consent"] {
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 20;
	animation: consentShow 1s ease forwards;
	background: rgba(38, 29, 23, 0.51);
	backdrop-filter: blur(8px);
	/* box-shadow: 0 0 60px #000; */
	box-sizing: border-box;
	padding-left: 16px;
	padding-right: 16px;
}

[data-container="consent"] {
	max-width: 1200px;
	margin: 0 auto;
}

@keyframes consentShow {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.consent {
	color: #fff;
	font-size: 14px;
	box-sizing: border-box;
	padding-top: 10px;
	padding-bottom: 10px;
	display: grid;
	align-items: center;
	text-align: center;
	grid-gap: 20px 50px;
	gap: 20px 50px;
	font-family: "Philosopher";
	line-height: 1.4;
}

@media (min-width: 680px) {
	.consent {
		grid-template-columns: 1fr auto;
		font-size: 16px;
		text-align: left;
		padding-top: 16px;
		padding-bottom: 20px;
	}
}

@media (min-width: 1200px) {
	.consent {
		padding-top: 22px;
		padding-bottom: 22px;
		font-size: 20px;
	}
}

@media (min-width: 680px) {
	.consent__btns {
		text-align: right;
	}
}

.bttn {
	cursor: pointer;
	text-decoration: none;
	color: #423120;
	padding: 13px 40px;
	border: 1px solid #d1bf95;
	border-radius: 32px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-family: "Philosopher";
	line-height: 1;
}

.color-yellow {
	color: #ffc72e;
}

.counter {
  display: flex;
  gap: 0px;
  font-size: 32px;
  line-height: 1;
  user-select: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.counter.visible {
  opacity: 1;
}

.slot {
  position: relative;
  width: 10px;
  height: 16px;
  overflow: hidden;
}

.numbers {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1.2, 0.36, 1);
}

.number {
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d7648;
    font-size: 14px;
    font-weight: 500;
}


.pulsating-circle {
  transform: translateX(-50%) translateY(0%);
  width: 12px;
  height: 12px;
  
  &:before {
	content: '';
    position: relative;
    display: block;
    width: 200%;
    height: 200%;
    box-sizing: border-box;
    margin-left: -50%;
    margin-top: -50%;
    border-radius: 45px;
    background-color: #7dffa7;
    animation: pulse-ring 1.25s 
	cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }
  
  &:after {
    content: '';
    position: absolute;
    left: 0; 
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #63f0b1;
    border-radius: 15px;
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(.8);
  }
}




/* Desc */

.desc-section {
    height: 100%;
    width: 100%;
    background: #FFFADF url(/template/site/default/assets/img/desc_assets/mainbg_desc.jpg) no-repeat top left;
    background-size: contain !important;
    position: relative;
    background-size: 100% 500px;
    padding-bottom: 112px;
}

.desc-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 300px;
    position: relative;
}

.desc_blocks {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  flex: 1;
  transition: all 0.4s ease;
}

.desc_block-servers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 382px;
  max-height: 90vh;
  overflow-y: auto;
  position: sticky;
  top: 20px;
  padding-right: 12px;
}

.desc_block-el {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 18px;
  background-color: #FFF7E1;
  border: 1px solid #FFCF54;
  border-radius: 8px;
  padding: 28px 22px;
  color: #413225;
  cursor: pointer;
  transition: all 0.4s ease;
  line-height: 1.5;
}

.desc_block-el:hover {
  background-color: #feeab3;
}



.desc_block-el img {
  border-radius: 2px;
  width: 40px;
}

.desc_block-active {
  background-color: #fff;
}

.desc_block-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #FFCF54;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  padding: 32px;
  transition: all 0.4s ease;
}

.desc_block-content img {
  width: 100%;
  height: 216px;
  border-radius: 4px;
  background-size: cover;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.desc_content-maininfo {
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  padding: 32px 112px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.desc_content-maininfo h1 {
  color: #9D0027;
  font-size: 32px;
  font-weight: 500;
}

.desc_content-maininfo p {
  font-size: 16px;
  color: #413225;
  font-weight: 400;
  line-height: 1.5;
}

.desc_content-h1 {
  color: #9D0027;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.desc_content-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #9D0027;
  text-align: center;
}


.desc_content-info p {
  font-size: 16px;
  color: #514438;
  font-weight: 400;
  line-height: 1.5;
}

.desc_hr {
  height: 1px;
  width: 100%;
  background-color: #E5E5E5;
  margin: 8px 0;
}

.desc_content-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.desc-list {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.desc-list p {
    font-size: 16px;
  color: #514438;
  font-weight: 400;
  line-height: 1.5;
}

.desc-dot {
  min-width: 6px;
  min-height: 6px;
  border-radius: 3px;
  background-color: #514438;
}

.desc-dot-2lvl {
  width: 12px;
  height: 2px;
  border-radius: 3px;
  background-color: #51443867;
  margin-left: 20px;
}

::-webkit-scrollbar {
  width: 8px;          /* ширина вертикального скролла */
  height: 8px;         /* высота горизонтального (если есть) */
}

/* Ползунок (то, что двигается) */
::-webkit-scrollbar-thumb {
  background: #FFCF54;  /* цвет ползунка */
  border-radius: 8px;
}

/* Трек (фон полосы прокрутки) */
::-webkit-scrollbar-track {
  background: #FFFFFF;  /* фон трека */
  border-radius: 8px;
  margin: 0 6px;          /* отступы сверху и снизу от контента */
}

/* При наведении */
::-webkit-scrollbar-thumb:hover {
  background: #d9ae40;
}


table {
  border-collapse: collapse;
  font-size: 14px;
}
.my_table {
  width: 100%;

}
 th {
  background: #fffbee;
  text-align: left;
  vertical-align: middle;
}

th, td {
  border: 1px solid #ccc;
  padding: 8px;
}


tr:hover {
  background: #fffbee;
}

td:nth-child(1) {
  width: 48px;
}

td:nth-child(1), td:nth-child(2),td:nth-child(3) {
  text-align: left;
  vertical-align: middle;
}

.desc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.desc-item span {
  display: inline; /* или block, если нужно, но не flex */
  white-space: nowrap;
  color: #9D0027;
}

.desc-item img {
  width: 32px;
  height: 32px;
  border-radius: 2px;
}

/* Блок со спойлерами */
.spollers {
/*	display: grid;*/
	gap: 15px;
}
/* Спойлер */
.spollers__item {
	font-size: 16px;
}
/* Заголовок спойлера */
.spollers__title {
	width: 100%;
	cursor: pointer;
	position: relative;
	text-align: left;
  padding: 12px 12px;
  /* border-radius: 12px; */
  cursor: pointer;
  border: none;
  font-size: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 500;
}

.spollers__title img {
  width: 32px;
  height: 32px;
}

/* Когда внутри элемента с классом _spoller-init */
._spoller-init .spollers__title {
	cursor: pointer;
}

/* Псевдоэлементы при инициализации */
._spoller-init .spollers__title::before,
._spoller-init .spollers__title::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	background-color: #000;
	height: 2px;
	width: 8px;
	transition: transform 0.5s ease 0s;
}

/* Изначальное положение стрелок */
._spoller-init .spollers__title::before {
	transform: translate(-75%, -50%) rotate(40deg);
}

._spoller-init .spollers__title::after {
	transform: translate(0, -50%) rotate(-40deg);
}

/* При активном состоянии */
._spoller-init .spollers__title._spoller-active::before {
	transform: translateX(-75%) rotate(-40deg);
}

._spoller-init .spollers__title._spoller-active::after {
	transform: rotate(40deg);
}


/* Контент спойлера */
.spollers__body {
	padding: 24px;
	border: 1px solid #eee;
}

.table-oly {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ipsImage {
  width: 32px !important;
  height: 32px !important;
}

@media (max-width: 1232px) {
  .desc_blocks {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .desc_block-servers {
    flex-direction: row;
    max-height: none !important;
    width: 95vw;
    z-index: 3;
    padding: 12px;
    border-radius: 8px;
    background-color: #f1e9cb;
  }
  .desc_block-el {
    font-size: 16px;
    gap: 16px;
    padding: 6px 24px;
  }
  .desc_block-content {
    width: 100%;
  }
  .table_wrapper {
    width: 100%;
    overflow-x: auto;
  }
  .desc_content-maininfo {
  	padding: 24px;
  }
}