/*L2Banners.ru - Верстка сайтов на заказ
Email: l2banners@mail.ru
*/
/* Шрифты:
	font-family: 'Alice', 'Times New Roman', Times, serif;
	font-family: 'PT Serif', 'Times New Roman', Times, serif;
	*/

@import url(reset.css);
body {
	font-family: "Alice", "Times New Roman", Times, serif;
	font-size: 14px;
	color: #2a2a2a;
	background: rgb(229, 225, 213);
	top: 0px !important;
}
.skiptranslate {
	display: none !important;
}

/* preload */

.preload {
	/* background: rgb(17, 15, 12) url(../images/logo__prew.png) no-repeat center center; */
	background: rgb(17, 15, 12);
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	visibility: visible;
	transition: all 0.5s cubic-bezier(0.64, 0.14, 0.34, 1.32);
}

.preload.fade {
	opacity: 0;
	visibility: hidden;
}

.logo-prew {
	transition: all 0.5s cubic-bezier(0.64, 0.14, 0.34, 1.32);
}

.preload.fade .logo-prew {
	transform: scale(2);
	opacity: 0;
}

.main {
	overflow: hidden;
	position: relative;
	min-height: 1300px;
	background: rgb(229, 225, 213) url(../images/bg.jpg) no-repeat center top;
	/* background: rgb(229, 225, 213) url(../images/bgSnow.jpg) no-repeat center top; */
}

a {
	color: rgb(83, 129, 182);
	transition-duration: 0.4s;
	transition-property: opacity, color, background-color, background;
}

a:hover {
	text-decoration: none;
}

img {
	max-width: 100%;
}

button {
	font-family: "Alice", "Times New Roman", Times, serif;
}

input,
select {
	width: 100%;
	min-height: 38px;
	border: 1px solid #9eacb2;
	border-radius: 5px;
	background-color: #e5e1d9;
	box-sizing: border-box;
	transition: 0.3s all;
	color: #777;
	font-size: 14px;
	padding-left: 12px;
	font-family: "Alice", "Times New Roman", Times, serif;
}

input:focus {
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}

.input_wrapper {
	position: relative;
	min-height: 20px;
	width: 100%;
	max-width: 250px;
	margin-bottom: 20px;
}

.input_wrapper span {
	margin-bottom: 10px;
	display: inline-block;
}

.wrapper {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

/* Дополнительно */

.animation-container {
	transition: 1s all;
	transition-delay: 0.4s;
}

.hidden {
	opacity: 0;
	transition: 0.3s all;
}

.visible {
	opacity: 1;
	transition: 0.3s all;
}

.l2b_animation {
	opacity: 0;
}

.l2b_animation.animated {
	opacity: 1;
}

.old_ie {
	background-color: #000;
	font-size: 30px;
	padding: 120px 0 20px 0;
	text-align: center;
	z-index: 999999;
	width: 100%;
	color: #fff;
}

.old_ie a {
	color: #d53939;
}

.red {
	color: red;
}

.bold {
	font-family: "PT Serif", "Times New Roman", Times, serif;
	font-weight: bold;
}

/* link */

.link {
	display: inline-block;
}

.link_tdn {
	text-decoration: none;
}

.link_tduh:hover {
	text-decoration: underline;
}

.link_green {
	color: #329327;
}

.link_blue {
	color: rgb(16, 163, 214);
}

/* .link_blue:hover {
	color: rgb(7, 54, 70);
	} */

.warning {
	text-transform: uppercase;
	color: #f30000;
	font-family: "PT Serif", "Times New Roman", Times, serif;
}

.lh-13 {
	line-height: 13px;
}

/* .download_circle:after {
	content: "";
	display: block;
	background: url(../images/arrow_dawn.png) no-repeat center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	animation: after_circle  4s linear infinite;
}

@keyframes after_circle {
	0% {
		transform: rotateX(0deg);
	}
	50% {
		transform: rotateX(40deg);
	}
	100% {
		transform: rotateX(0deg);
	}
}
*/

/* menu */

.menu-wrp {
	/* background-color: rgba(0, 0, 0, 0.22); */
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.menu-wrp.menu-wrp_active {
	display: flex;
}

.menu {
	display: flex;
	justify-content: center;
	flex-direction: row;
	box-sizing: border-box;
	max-width: 1250px;
	flex-grow: 1;
}

.menu-wrp_active .menu {
	animation: menu 1s ease 1;
	animation-fill-mode: forwards;
}

@keyframes menu {
	0% {
		opacity: 0;
		transform: scale(0) translateY(-400px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.menu__link {
	display: inline-block;
	margin: 5px 25px;
	text-align: center;
	color: #fff;
	text-decoration: none;
	box-sizing: border-box;
	transition: 0.3s all;
	text-align: left;
	font-size: 14px;
	position: relative;
	padding: 5px 0;
}

.menu__link::before {
	content: "";
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0;
	bottom: 0;
	background-color: #fff;
	transition: 0.3s all;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	border-radius: 50%;
	filter: blur(8px);
	pointer-events: none;
}

.menu__link:hover:before {
	animation: menu__link 0.3s ease;
}

@keyframes menu__link {
	0% {
		transform: scale(0.3);
		filter: blur(10px);
		opacity: 0.6;
	}
	100% {
		transform: scale(1.4);
		filter: blur(20px);
		opacity: 0;
	}
}

.menu__link_mla {
	margin-left: auto;
}

.menu__link:hover {
}

.menu__txt {
	margin: 0;
	box-sizing: border-box;
	text-transform: uppercase;
	margin-bottom: 5px;
	transition: 0.2s all;
}

.menu__link:hover .menu__txt {
	transform: translateY(3px);
}

.menu__desc {
	color: #e9e3d0;
	font-size: 12px;
	transition: 0.2s all;
}

.menu__link:hover .menu__desc {
	transform: translateY(-3px);
}

/* Кнопка меню */

.burger-btn {
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 88;
	background-color: rgba(0, 0, 0, 0.5);
	height: 36px;
	width: 40px;
	border-radius: 3px;
	cursor: pointer;
	box-sizing: border-box;
}

.burger-btn__line {
	height: 4px;
	position: absolute;
	left: 5px;
	right: 5px;
	background-color: #fff;
	border-radius: 2px;
	transition: 0.3s all;
}

.burger-btn__line_top {
	top: 5px;
}

.burger-btn__line_middle {
	top: 50%;
	transform: translateY(-50%);
}

.burger-btn__line_bottom {
	bottom: 5px;
}

.burger-btn_active .burger-btn__line_top {
	transform: rotate(45deg) translateY(-50%);
	transform-origin: center top;
	top: 50%;
}

.burger-btn_active .burger-btn__line_middle {
	transform: rotate(180deg);
	opacity: 0;
}

.burger-btn_active .burger-btn__line_bottom {
	transform: rotate(-45deg) translateY(50%);
	transform-origin: center bottom;
	bottom: 50%;
}

@media (min-width: 1200px) {
	/* меню */
	.menu-wrp {
		display: flex;
	}
	.burger-btn {
		display: none;
	}
}

@media (max-width: 1200px) {
	/* меню */
	.menu-wrp {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 86;
		height: auto;
		overflow-y: auto;
		align-items: flex-start;
		background-color: rgba(0, 0, 0, 0.8);
	}
	.menu {
		display: flex;
		justify-content: center;
		flex-direction: column;
		margin: auto 0;
	}
	.menu__txt {
		margin: 0;
		padding: 0;
	}
	.menu__link {
		padding: 10px 0;
		margin: 0;
		text-align: center;
	}
	.menu__link_mla {
		margin-left: 0;
	}
	.menu__link:hover .menu__txt {
		transform: translateY(1px);
	}
	.menu__link:hover .menu__desc {
		transform: translateY(-1px);
	}
}

/* header */

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 350px;
	/* outline: 1px solid #fff; */
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.logo-wrp a {
	transition: 0.5s;
}

.logo-wrp a:hover {
	filter: brightness(110%);
	transition: 0.5s;
}

/* logo */

.logo-wrp {
	max-width: 420px;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 95px;
	box-sizing: border-box;
}

.logo {
	display: block;
	/* background: url(../images/logo.png) no-repeat; */
	width: 220px;
	height: 154px;
	position: relative;
	text-decoration: none;
}

.logo__shield {
	background: url(../images/logo__shield.png) no-repeat;
	width: 173px;
	height: 154px;
	position: absolute;
	left: 22px;
	top: 0;
	transition: 0.3s all;
}

.logo:hover .logo__shield {
	transform: scale(0.8);
}

.logo__ace {
	background: url(../images/logo__ace.png) no-repeat;
	width: 102px;
	height: 49px;
	position: absolute;
	left: 58px;
	top: 30px;
	transition: 0.3s all;
}

.logo:hover .logo__ace {
	filter: brightness(110%);
}

.logo__ace::before {
	content: "";
	display: block;
	background: url(../images/logo__ace.png) no-repeat;
	width: 102px;
	height: 49px;
	position: absolute;
	left: 0px;
	top: 0px;
	transition: 0.3s all;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
}

.logo:hover .logo__ace:before {
	animation: logo__ace 0.3s ease;
}

@keyframes logo__ace {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.4);
		opacity: 0;
	}
}

.logo__world {
	background: url(../images/logo__world.png) no-repeat;
	width: 181px;
	height: 48px;
	position: absolute;
	left: 18px;
	top: 81px;
	transition: 0.3s all;
}

.logo__world::before {
	content: "";
	display: block;
	background: url(../images/logo__world.png) no-repeat;
	width: 181px;
	height: 48px;
	position: absolute;
	left: 0px;
	top: 0px;
	transition: 0.3s all;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
}

.logo:hover .logo__world:before {
	animation: logo__world 0.3s ease;
}

@keyframes logo__world {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.4);
		opacity: 0;
	}
}

.logo:hover .logo__world {
	transform: scale(0.9);
}

.logo__decor-top_left {
	background: url(../images/logo__decor_left.png) no-repeat;
	width: 40px;
	height: 42px;
	position: absolute;
	left: 19px;
	top: 32px;
	transition: 0.3s all;
	transform-origin: right bottom;
}

.logo:hover .logo__decor-top_left {
	transform: rotate(-20deg);
}

.logo__decor-top_right {
	background: url(../images/logo__decor_right.png) no-repeat;
	width: 40px;
	height: 42px;
	position: absolute;
	left: 159px;
	top: 32px;
	transition: 0.3s all;
	transform-origin: left bottom;
}

.logo:hover .logo__decor-top_right {
	transform: rotate(20deg);
}

.logo__decor-bottom_left {
	background: url(../images/logo__decor_left-bottom.png) no-repeat;
	width: 38px;
	height: 58px;
	position: absolute;
	left: 0px;
	top: 80px;
	transition: 0.3s all;
	transform-origin: right bottom;
}

.logo:hover .logo__decor-bottom_left {
	transform: rotate(10deg);
}

.logo__decor-bottom_right {
	background: url(../images/logo__decor_right-bottom.png) no-repeat;
	width: 38px;
	height: 58px;
	position: absolute;
	left: 182px;
	top: 80px;
	transition: 0.3s all;
	transform-origin: left bottom;
}

.logo:hover .logo__decor-bottom_right {
	transform: rotate(-10deg);
}

.logo__txt {
	text-transform: uppercase;
	color: #fff;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 3px;
	text-align: center;
	transition: 0.3s all;
}

/* servers */

.servers {
	max-width: 450px;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 80px;
	box-sizing: border-box;
	position: relative;
}

.server {
	position: relative;
	width: 125px;
	height: 123px;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
	cursor: default;
	margin: 0 17px;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.server:before {
	content: "";
	display: block;
	width: 196px;
	height: 169px;
	position: absolute;
	left: -35px;
	top: -2px;
	transition: 0.3s all;
	background: url(../images/server__decor.png) no-repeat;
	z-index: -2;
	pointer-events: none;
}

.server_animate:before {
	animation: after_circle 4s linear infinite;
	transform-origin: 97px 64px;
	transform-style: preserve-3d;
	perspective: 700px;
}

@keyframes after_circle {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

.server:after {
	content: "";
	display: block;
	width: 196px;
	height: 169px;
	position: absolute;
	left: -35px;
	top: -2px;
	transition: 0.3s all;
	background: url(../images/server__bg.png) no-repeat;
	z-index: -1;
	pointer-events: none;
}

.server__count {
	color: #464232;
	font-size: 36px;
}

.server__desc {
	color: #929085;
	font-size: 12px;
}

.circle {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 125px;
	height: 125px;
}

/* btns*/

/* btn-min */

.btn-min {
	box-sizing: border-box;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff2bf;
	font-size: 12px;
	text-align: center;
	width: 160px;
	height: 38px;
	cursor: pointer;
	transition: 0.3s all;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	border: 0;
}

.servers__btn-min {
	position: absolute;
	bottom: 38px;
	left: 50%;
	transform: translateX(-50%);
}

.btn-min:after {
	content: "";
	display: block;
	background: url(../images/btn-min.png) no-repeat;
	width: 189px;
	height: 82px;
	position: absolute;
	left: -14px;
	top: -19px;
	transition: 0.3s all;
	z-index: -1;
	pointer-events: none;
}

.btn-min_sub:after {
	background: url(../images/btn-sub.png) no-repeat;
	top: -16px;
}

.btn-min:hover:after {
	filter: brightness(120%);
}

/* btn-long */

.btn-long {
	box-sizing: border-box;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff2bf;
	font-size: 14px;
	text-align: center;
	width: 258px;
	height: 46px;
	cursor: pointer;
	transition: 0.3s all;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	/* outline: 1px solid #fff; */
	z-index: 1;
}

.header__btn-long {
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
}

.btn-long:after {
	content: "";
	display: block;
	background: url(../images/btn-long.png) no-repeat;
	width: 290px;
	height: 103px;
	position: absolute;
	left: -14px;
	top: -25px;
	transition: 0.3s all;
	z-index: -1;
	pointer-events: none;
}

.btn-long:hover:after {
	filter: brightness(120%);
}

/* btn-f */

.btn-f {
	box-sizing: border-box;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff2bf;
	font-size: 12px;
	text-align: center;
	width: 115px;
	height: 30px;
	cursor: pointer;
	transition: 0.3s all;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	border: 0;
}

.btn-f_m {
	margin: 10px 8px;
}

.btn-f:after {
	content: "";
	display: block;
	background: url(../images/btn-f.png) no-repeat;
	width: 141px;
	height: 58px;
	position: absolute;
	left: -12px;
	top: -10px;
	transition: 0.3s all;
	z-index: -1;
	pointer-events: none;
}

.btn-f:hover:after {
	filter: brightness(120%);
}
/* btn-f-long */

.btn-f-long {
	box-sizing: border-box;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff2bf;
	font-size: 12px;
	text-align: center;
	width: 150px;
	height: 30px;
	cursor: pointer;
	transition: 0.3s all;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	border: 0;
}

.btn-f_m-long {
	margin: 10px 8px;
}

.btn-f-long:after {
	content: "";
	display: block;
	background: url(../images/btn-f-long.png) no-repeat;
	width: 175px;
	height: 58px;
	position: absolute;
	left: -12px;
	top: -10px;
	transition: 0.3s all;
	z-index: -1;
	pointer-events: none;
}

.btn-f-long:hover:after {
	filter: brightness(120%);
}

/* info-color */

.info-color {
	background-color: #000;
	color: #fff;
	font-size: 14px;
	display: inline-block;
	padding: 13px 16px;
	border-radius: 5px;
	cursor: default;
}

.info-color__green {
	background-color: #71a624;
}

/* mid */

.mid-wrp {
	position: relative;
	z-index: 1;
}

.mid {
	display: flex;
	justify-content: space-between;
	max-width: 1140px;
	margin: 0 auto;
	box-sizing: border-box;
	padding-top: 25px;
	min-height: 540px;
	position: relative;
	transition: 0.6s all;
}

/* .mid_animate {
	transform: scale(0);
}

.gw-go .mid_animate {
	transform: scale(1);
	} */

/* .mid:after {
	content: "";
	background: url(../images/content.png) no-repeat;
	width: 1325px;
	height: 857px;
	position: absolute;
	left: 50%;
	top: -127px;
	margin-left: -667px;
	z-index: -1;
	} */

/* container */

.container {
	flex-grow: 1;
	max-width: 380px;
}

.container_forum {
	max-width: 360px;
	margin-right: 17px;
}

.container_news {
	margin-left: 40px;
}

.container__header {
	text-align: left;
	position: relative;
	box-sizing: border-box;
	padding-left: 50px;
}

.container__header_mb {
	margin-bottom: 30px;
}

.container__header_forum {
	margin-bottom: 17px;
}

.container__header:before {
	content: "";
	display: block;
	background: url(../images/decor__circle.png) no-repeat;
	width: 63px;
	height: 66px;
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s all;
}

.container__header:after {
	content: "";
	display: block;
	background: url(../images/decor__circle_wheel.png) no-repeat;
	width: 47px;
	height: 50px;
	position: absolute;
	left: -12px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s all;
	animation: circle 10s linear infinite;
}

@keyframes circle {
	0% {
		transform: translateY(-50%) rotate(0deg);
	}
	100% {
		transform: translateY(-50%) rotate(360deg);
	}
}

.container__title {
	color: #2a2a2a;
	text-transform: uppercase;
	font-size: 16px;
	margin-bottom: 3px;
}

.container__desc {
	color: #404040;
	font-size: 12px;
}

/* news */

.news {
	display: flex;
	align-items: center;
	min-height: 70px;
	padding: 6px 60px 6px 0;
	box-sizing: border-box;
	position: relative;
	margin: 0 0 20px 0;
	text-decoration: none;
}

.news:after {
	content: "";
	display: block;
	background: url(../images/news__arrow.png) no-repeat;
	width: 47px;
	height: 46px;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s all;
}

.news:hover:after {
	/* transform: translateY(-50%) rotateY(180deg); */
	animation: news_after 0.6s linear infinite;
}

@keyframes news_after {
	0% {
		transform: translateX(0px) translateY(-50%);
	}
	50% {
		transform: translateX(10px) translateY(-50%);
	}
	100% {
		transform: translateX(0px) translateY(-50%);
	}
}

.news:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(249, 255, 102, 0.35);
	border-radius: 10px;
	transition: 0.3s all;
	z-index: -1;
	/* transform: scale(1.3); */
	opacity: 0;
}

.news:hover:before {
	/* transform: scale(1); */
	opacity: 1;
}

.news__decor {
	background: url(../images/news__decor_top.png) no-repeat;
	width: 375px;
	height: 16px;
	pointer-events: none;
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
}

.news__decor_bottom {
	transform: rotateX(180deg) translateX(-50%);
	top: auto;
	bottom: -8px;
}

.news__img {
	background-image: url(../images/news__img.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 54px;
	height: 54px;
	border: 2px solid #8c8a7e;
	flex-shrink: 0;
	border-radius: 6px;
	overflow: hidden;
}

.date {
	width: 40px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
}

.date__day {
	color: #3e3c39;
	font-size: 24px;
}

.date__month {
	color: #3e3c39;
	font-size: 14px;
}

.news__content {
	flex-grow: 1;
	box-sizing: border-box;
	padding-left: 16px;
}

.news__title {
	color: #000;
	font-size: 14px;
	text-transform: uppercase;
}

.news__desc {
	color: #73716a;
	font-size: 14px;
}

/* forum */

.forum {
	min-height: 360px;
}

.theme {
	display: flex;
	align-items: center;
	min-height: 60px;
	padding: 6px 0;
	box-sizing: border-box;
	position: relative;
	text-decoration: none;
}

.theme:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.05);
	/* background-color: rgba(249, 255, 102, 0.35); */
	border-radius: 0;
	transition: 0.3s all;
	z-index: -1;
	/* transform: scale(1.3); */
	opacity: 0;
}

.theme:hover:before {
	/* transform: scale(1); */
	opacity: 1;
	right: 0;
}

.theme:after {
	content: "";
	display: block;
	border-top: 1px solid #afaea2;
	border-bottom: 1px solid #f3f2ee;
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	transition: 0.3s all;
}

.theme__ava {
	background-image: url(../images/forum__ava.png);
	width: 55px;
	height: 55px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	margin-right: 6px;
	border-radius: 50%;
}

.theme:hover .theme__ava {
	animation: ava 0.3s;
}

@keyframes ava {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}

.theme__content {
}

.theme__title {
	font-family: "Times New Roman", Times, serif;
	color: #3d3d3d;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
}

.theme__info {
	color: #807777;
	font-size: 12px;
}

/* rating */

.rating-wrp {
	background: url(../images/rating__bg.png) no-repeat;
	width: 325px;
	height: 469px;
	box-sizing: border-box;
}

.rating-wrp_pos {
	transform: translateX(-15px) translateY(28px);
}

.rating-title {
	color: #ffd287;
	text-transform: uppercase;
	font-size: 14px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 6px;
}

.rating {
	max-width: 220px;
	margin: 0 auto;
	color: #6a6a6a;
	font-family: "PT Serif", serif;
	position: relative;
	transition: 0.5s all;
}

.rating_height {
	height: 315px;
}

.rating__tab {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.6;
	transition: 0.5s all;
	visibility: hidden;
	transform-style: preserve-3d;
	/* transform: rotateY(90deg); */
	transform-origin: center top;
	height: 0;
	overflow: hidden;
}

.rating__tab_active {
	opacity: 1;
	visibility: visible;
	/* transform: rotateY(0deg); */
	transition-delay: 0.4s;
	height: 100%;
}

.top {
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: default;
}

.top:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 0;
	transition: 0.3s all;
	z-index: -1;
	opacity: 0;
}

.top:hover:before {
	opacity: 1;
}

.top_header {
	font-size: 12px;
	height: 15px;
}

.top:after {
	content: "";
	display: block;
	border-top: 1px solid #afaea2;
	border-bottom: 1px solid #f3f2ee;
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	transition: 0.3s all;
}

.top_header:after {
	content: none;
}

.top__num {
	width: 20px;
	flex-shrink: 0;
	text-align: center;
}

.top__name {
	width: 120px;
	flex-shrink: 0;
	color: #433718;
	font-weight: bold;
	font-family: "Times New Roman", Times, serif;
	text-overflow: ellipsis;
	overflow: hidden;
}

.top__name_header {
	width: 140px;
	box-sizing: border-box;
	padding-left: 5px;
	color: #6a6a6a;
	font-weight: normal;
}

.top__pvp {
	width: 35px;
	text-align: right;
	flex-shrink: 0;
}

.top__border {
	width: 10px;
	text-align: center;
	flex-shrink: 0;
}

.top__pk {
	width: 35px;
	text-align: left;
	flex-shrink: 0;
}

.rating-btns {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: 0.3s all;
}

.rating-btn {
	box-sizing: border-box;
	padding: 8px 15px;
	color: #fff6bb;
	font-size: 12px;
	font-weight: bold;
	font-family: "Times New Roman", Times, serif;
	border-radius: 3px;
	background-color: #131212;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	background: linear-gradient(
		to bottom,
		rgba(19, 18, 18, 1) 0%,
		rgba(22, 61, 55, 1) 59%,
		rgba(35, 89, 86, 1) 84%,
		rgba(39, 107, 109, 1) 100%
	);
	margin: 5px;
	opacity: 0.5;
	transition: 0.3s all;
}

.rating-btn_active {
	opacity: 1;
}

/* nav */

.nav {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	min-height: 90px;
	box-sizing: border-box;
	padding: 20px 10px;
	position: relative;
	margin-bottom: 20px;
	z-index: 2;
}

.nav:after {
	content: "";
	display: block;
	border-top: 1px solid #afaea2;
	border-bottom: 1px solid #f3f2ee;
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	transition: 0.3s all;
}

.nav__link {
	text-transform: uppercase;
	color: rgb(87, 82, 81);
	font-size: 14px;
	text-decoration: none;
	font-family: "Times New Roman", Times, serif;
	margin: 5px 10px;
	padding: 5px 0;
	position: relative;
	font-weight: bold;
}

.nav__link:after {
	content: "";
	display: block;
	height: 1px;
	background-color: rgb(87, 82, 81);
	position: absolute;
	left: 0;
	bottom: -1px;
	right: 100%;
	transition: 0.3s all;
}

.nav__link:hover:after {
	right: 0;
}

.nav__link:before {
	content: "";
	display: block;
	height: 1px;
	background-color: rgb(87, 82, 81);
	position: absolute;
	right: 0;
	top: -3px;
	left: 100%;
	transition: 0.3s all;
}

.nav__link:hover:before {
	left: 0;
}

/* footer */

.footer {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	min-height: 90px;
	box-sizing: border-box;
	padding: 20px 10px;
	position: relative;
}

.footer__container {
	max-width: 50%;
	flex-grow: 1;
}

.footer__desc {
	color: #8c877c;
	font-size: 12px;
	line-height: 16px;
}

/* bnr-wrp */

.bnr-wrp {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}

.footer__bnr a {
	text-decoration: none;
	display: inline-block;
	margin: 5px;
}

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

.footer__logo a {
	text-decoration: none;
	display: inline-block;
	margin: 5px;
}

/* other */

.vk-wrp {
	max-width: 360px;
	width: 100%;
}

#vk_groups {
	width: 100%;
}

/* Фон для модалки */

.l2b-popup-wrp {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
	overflow-y: auto;
	background-color: rgba(0, 0, 0, 0.49);
	z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	display: none;
	transition: 1s all;
	transform: scale(1);
	filter: blur(0);
}

.l2b-popup-wrp_flex {
	display: flex;
}

.l2b-popup-wrp_hide {
	opacity: 0;
	transform: scale(1.4);
	/* filter: blur(100px); */
}

.l2b-popup-wrp_visible {
	transition: 1s all;
	opacity: 1;
}

/* Модальное окно */

.l2b-popup {
	max-width: 774px;
	flex-grow: 1;
	height: auto;
	margin: auto 0;
	background: transparent url(../images/popup__bg.jpg) no-repeat center center;
	background-size: cover;
	box-sizing: border-box;
	padding: 34px;
	border-radius: 5px;
	position: relative;
}

.l2b-popup-content {
	display: none;
}

.l2-modal-close {
	width: 16px;
	height: 16px;
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
}

.l2-modal-close:before {
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	background-color: #000;
	transition: 0.3s all;
	transform: rotate(-45deg);
}

.l2-modal-close:hover:before {
	transform: rotate(0deg);
}

.l2-modal-close:after {
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	background-color: #000;
	transition: 0.3s all;
	transform: rotate(45deg);
}

.l2-modal-close:hover:after {
	transform: rotate(0deg);
}

.modal {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}

.modal__item {
	flex-grow: 1;
	margin: 10px;
	box-sizing: border-box;
	/* outline: 1px solid #fff; */
}

.modal__item_content {
	max-width: 420px;
}

.modal__item_info {
	max-width: 236px;
	border: 1px solid #ccc;
	box-shadow: inset 0 3px 7px rgba(85, 76, 70, 0.18);
	padding: 13px;
	line-height: 16px;
}

.modal__txt {
	color: #595959;
	font-size: 12px;
}

/* donate */

.pay-system {
	color: #3f3f3f;
	font-size: 16px;
	text-align: center;
	padding: 15px 0;
	background-color: rgba(255, 255, 255, 0.3);
}

.pay-system_mb {
	margin-bottom: 25px;
}

/* inp-group */

.inp-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.inp-group_mb {
	margin-bottom: 10px;
}

.inp-group__about {
	width: 150px;
	color: #3f3f3f;
	font-size: 12px;
	display: flex;
	align-items: center;
}

.inp-group__input {
	flex-grow: 1;
	min-width: 200px;
}

.ico__rhombus {
	display: inline-block;
	background: url(../images/ico__rhombus.png) no-repeat;
	width: 25px;
	height: 25px;
}

.ico__rhombus_pos {
	margin-right: 5px;
	position: relative;
	top: 1px;
}

.s-wrp {
	text-align: center;
}

.s-wrp_m {
	padding: 20px 0;
}

.list-m {
	line-height: 18px;
}

/* files */

.files__title {
	color: #3f3f3f;
	font-size: 18px;
	font-family: "Times New Roman", Times, serif;
	font-weight: bold;
}

.files__title_pos {
	margin-bottom: 5px;
	margin-left: 5px;
}

.files-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	font-size: 12px;
}

.files-group_p {
	padding: 1px 0;
}

.files-group_bb {
	border-bottom: 1px solid rgb(204, 204, 204);
}

.files-group_mb {
}

.files-group__about {
	flex-grow: 1;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

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

/* seasons */

.summer .seasons__left {
	background: url(../images/leaves__left.png) no-repeat;
	width: 633px;
	height: 435px;
	position: absolute;
	left: 50%;
	transform: translateX(-800px);
	top: -311px;
	z-index: -1;
	pointer-events: none;
}

.summer .seasons__right {
	background: url(../images/leaves__right.png) no-repeat;
	width: 536px;
	height: 283px;
	position: absolute;
	left: 50%;
	transform: translateX(274px);
	top: -203px;
	z-index: -1;
	pointer-events: none;
}

.summer .seasons__bottom {
	background: url(../images/leaves__bottom.png) no-repeat;
	width: 618px;
	height: 358px;
	position: absolute;
	left: 50%;
	transform: translateX(-203px);
	top: 485px;
	z-index: -1;
	pointer-events: none;
}

.girl {
	background: url(../images/dwarf-girl.png) no-repeat;
	width: 438px;
	height: 595px;
	position: absolute;
	left: 50%;
	margin-left: -961px;
	top: 275px;
	z-index: 2;
	pointer-events: none;
	animation: girl 20s linear infinite;
	transform-origin: center bottom;
}

@keyframes girl {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(-3deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

/* birds */

.bird__left {
	background: url(../images/bird__left.png) no-repeat;
	width: 206px;
	height: 203px;
	position: absolute;
	left: 50%;
	margin-left: -764px;
	/* transform: translateX(-764px); */
	top: -221px;
	z-index: -1;
	pointer-events: none;
	/* transform-origin: right bottom;
	transform: scale(0);
	transition: .3s all; */
	animation: bird__left 25s linear infinite;
	transform-origin: right bottom;
}

@keyframes bird__left {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(-5deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

.bird__right {
	background: url(../images/bird__right.png) no-repeat;
	width: 115px;
	height: 133px;
	position: absolute;
	left: 50%;
	margin-left: 573px;
	/* transform: translateX(573px); */
	top: -231px;
	z-index: 2;
	pointer-events: none;
	/* transform-origin: left bottom;
	transform: scale(0);
	transition: .3s all; */
	animation: bird__right 25s linear infinite;
	transform-origin: left bottom;
}

@keyframes bird__right {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(5deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

/* devil */

.devil {
	width: 107px;
	height: 217px;
	position: absolute;
	left: 50%;
	margin-left: 515px;
	top: -287px;
	z-index: 1;
	pointer-events: none;
	animation: devil 25s linear infinite;
	transform-origin: center center;
}

.devil:before {
	content: "";
	background: url(../images/devil.png) no-repeat;
	width: 107px;
	height: 217px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

@keyframes devil {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(5deg) scale(0.8);
	}
	100% {
		transform: rotate(0deg) scale(1);
	}
}

.devil:after {
	content: "";
	background: url(../images/devil__shadow.png) no-repeat;
	width: 122px;
	height: 141px;
	position: absolute;
	left: 0px;
	top: 20px;
	z-index: -2;
}

/* panel */

.panel {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 15;
}

/* lang */

.lang {
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.languages {
	background: url(../images/lang-bg.png) no-repeat center bottom;
	width: 87px;
	height: 90px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding-left: 7px;
}

.language-heading {
	display: inline-block;
	vertical-align: middle;
	margin-top: 7px;
	color: rgb(111, 111, 111);
}

.language-list {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin-left: 5px;
	margin-top: 8px;
}

.language-list:hover .language-dropdown {
	opacity: 1;
	visibility: visible;
	top: 100%;
}

.language-list a {
	width: 50px;
	height: 30px;
	line-height: 30px;
	border-radius: 30px;
	background: #ebe4be;
	display: block;
	border: 1px solid #ebe4be;
	margin-bottom: 1px;
	color: #464232;
	font-size: 12px;
	text-decoration: none;
	padding: 0 10px;
	transition: all 0.3s ease;
	margin: 2px 0;
}

.language-list a:hover {
	border: 1px solid #867d46;
}

.language-list a.hidden {
	display: none;
}

.language-list a:after {
	content: attr(data-google-lang);
	text-transform: uppercase;
}

.language-list img {
	display: inline-block;
	vertical-align: middle;
	margin: -3px 5px 0 0;
}

.language-dropdown {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	top: 0px;
	left: -10px;
}

.language-current {
	position: relative;
	text-transform: uppercase;
}

.language-current a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 30px;
	background: transparent;
	display: block;
	border: 0;
	margin-bottom: 0;
	color: #464232;
	font-size: 12px;
	text-decoration: none;
	padding: 0 10px;
	transition: all 0.3s ease;
	margin: 2px 0;
	cursor: pointer;
}

.language-current a:after {
	display: none;
}

.language-current a:hover {
	border: 0;
}

.language-current:after {
	content: "";
	background: url(../images/arrow.png) no-repeat;
	width: 8px;
	height: 7px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

#google_translate_element {
	display: inline-block;
	vertical-align: middle;
	height: 35px;
	width: 120px;
}

.goog-te-gadget {
	color: transparent !important;
}

.goog-te-gadget span {
	display: none !important;
}

.goog-te-combo {
	margin: 5px 0 0 10px !important;
	background: rgba(0, 0, 0, 0.3);
	color: #dedede;
	font-size: 12px !important;
	border-color: #2f2e4b;
	height: 35px;
	border-radius: 35px;
	padding: 0 0 0 10px;
	width: 120px;
	outline: none;
}

.goog-te-combo option {
	background: #0b0d11;
}

/* swiper */

/* sarrow */
.sarrow {
	flex-shrink: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 0;
	background-color: transparent;
	background-image: none;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 2.5rem;
	height: 2.5rem;
}

.sarrow:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 5;
	pointer-events: none;
	background-color: transparent;
	background-image: none;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border: 0;
	transition: 0.2s all;
	opacity: 0;
}

.sarrow:hover:before {
	opacity: 1;
}

.sarrow:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	pointer-events: none;
	font-family: "gwi";
	display: flex;
	justify-content: center;
	align-items: center;
	color: rgb(255, 163, 44);
	font-size: 2rem;
	border: 0;
	transition: 0.2s all;
	text-shadow: 0 0 2px #000000a8;
}

.sarrow_prev:after {
	content: "\E80A";
}

.sarrow_next:after {
	content: "\E80E";
}

.sarrow:hover:after {
	color: rgb(255, 194, 81);
}

.sarrow.swiper-button-disabled {
	opacity: 0.4;
	pointer-events: none;
}

/* sarrows */
.sarrows {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: 0.875rem;
	gap: 0.875rem;
}

/* dots */
.dots {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: 0.625rem;
	gap: 0.625rem;
	width: auto !important;
}

.dots.swiper-pagination-lock {
	display: none;
}

.dot {
	width: 0.625rem;
	height: 0.625rem;
	box-sizing: border-box;
	opacity: 1;
	cursor: pointer;
	flex-shrink: 0;
	transition: 0.3s all;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(204, 200, 194, 0.5);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 0.625rem;
}

.dot_active {
	background-color: rgb(162, 196, 41);
	width: 3.75rem;
}

/* stream */
.stream {
	--stream-height: 10rem;
	height: var(--stream-height);
	display: flex;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-weight: 400;
	cursor: default;
	/* border: 1px solid rgba(66, 72, 81, 0.25); */
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	z-index: 0;
	width: 100%;
	background-color: rgba(14, 15, 17, 1);
	background-image: url(../images/stream/bg.jpg?v=2.0);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 5px;
}

.stream iframe {
	width: 100%;
	height: 100%;
}

.stream__content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	position: relative;
	z-index: 0;
	box-sizing: border-box;
	padding: 1.25rem;
	width: 100%;
}

.stream__ico {
	display: inline-block;
	font-size: 2rem;
	color: rgba(255, 255, 255, 0.8);
	opacity: 0;
}

.stream__desc {
	margin-top: 31px;
	margin-bottom: 1rem;
	font-size: 12px;
}

.stream__btn {
	color: rgb(235 246 255);
	text-decoration: none;
	font-size: 14px;
}

/* streams */
.streams {
	box-sizing: border-box;
	margin: -50px auto 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 13;
	width: 1140px;
	max-width: 90%;
}

.streams__wrap {
	overflow: hidden;
}

.streams__dots {
	margin-top: 20px;
}

.streams__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.streams__arrow_prev {
	right: calc(100%);
}

.streams__arrow_next {
	left: calc(100%);
}

/* lnk */

.lnk {
	text-decoration: underline;
	color: inherit;
	font-size: inherit;
}

.lnk:hover {
	text-decoration: none;
}

/* cookie */

.cookie {
	animation: cookieShow 1s ease forwards;
	color: rgba(255, 255, 255, 1);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
	border-radius: 0;
	border: 0;
	background: rgba(89, 83, 67, 0.6);
	padding: 20px;
	box-sizing: border-box;
	opacity: 0;
	display: none;
	backdrop-filter: blur(6px);
	box-shadow: 0 0 30px #000000b2;
}

.cookie_pos {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
}

@media (min-width: 540px) {
	.cookie {
		font-size: 16px;
		padding: 20px 40px;
	}
}

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

	100% {
		opacity: 1;
	}
}

.cookie__body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 10px 20px;
	max-width: 1100px;
	margin: 0 auto;
}

@media (min-width: 720px) {
	.cookie__body {
		flex-direction: row;
	}
}

.cookie__content {
	flex-grow: 1;
	min-width: 0;
}

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