/*<!-- Web studio Rubic-on.com -->*/
@font-face {
	font-family: "baloo";
	src: local("BalooBhai2-Regular"),
		url("../fonts/baloo/BalooBhai2-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: "baloo";
	src: local("BalooBhai2-Medium"),
		url("../fonts/baloo/BalooBhai2-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: "baloo";
	src: local("BalooBhai2-SemiBold"),
		url("../fonts/baloo/BalooBhai2-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: "baloo";
	src: local("BalooBhai2-Bold"),
		url("../fonts/baloo/BalooBhai2-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: "aguante";
	src: local("Aguante-Regular"),
		url("../fonts/aguante/Aguante-Regular.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
}

body {
	font-family: "baloo", sans-serif;
	font-weight: 400;
	background: #030303;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	color: #b3add0;
}
a {
	text-decoration: none;
	color: #fff;
}
/*Flex*/
.f-a {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
}
.f-b {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.f-c {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.f-s {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
}
.f-e {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
}
.f-ai {
	align-items: center;
}
.f-dr {
	flex-direction: column;
}
.f-w {
	flex-wrap: wrap;
}
.wrapper {
    max-width: 90%;
    margin: 0 auto;
    flex: 1;
    width: 100%;
}

#site {
	background: url("../img/mainbg.png") top;
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
}
.parralaxbg {
	position: absolute;
	top: 0px;
	left: 0%;
	width: 100%;
	height: 100%;
	transform: translate(0, -50%);
	content: "";
	background: url("../img/bgover.png") top;
	background-size: 100% 100%;
}
#header {
	width: 100%;
	margin: 0 auto;
	background: linear-gradient(180deg, #1e1935, transparent);
	padding-top: 5px;
	height: 70px;
	position: relative;
	z-index: 9999;
}
/* #header:before {
	background: url("../img/header_decorate.png");
	content: "";
	position: absolute;
	width: 100%;
	height: 11px;
	background-repeat: repeat;
	bottom: -11px;
	left: 0;
} */
.logo {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	margin-right: 50px;
	line-height: 50px;
}
.logo span {
	color: #8a75e7;
	font-size: 48px;
}
.header_menu {
	margin-left: 50px;
}
.header_menu.active {
	display: flex;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.header_menu_mob {
	display: none;
	margin-left: 20px;
	transition: 0.4s;
}
.header_menu_mob span {
	display: block;
	width: 30px;
	height: 3px;
	background: #fff;
	margin: 5px 0px;
	border-radius: 50px;
	transition: 0.2s;
}

.header_menu_mob span:nth-child(2) {
	width: 24px;
}
.header_menu_mob span:nth-child(3) {
	width: 26px;
}
.header_menu_mob:hover span:nth-child(2) {
	width: 30px;
}
.header_menu_mob:hover span:nth-child(3) {
	width: 30px;
}
.header_menu_mob.active span {
	background: #8a75e7;
	margin: -3px;
}
.header_menu_mob.active span:nth-child(1) {
	width: 30px;
	transform: rotate(45deg);
}
.header_menu_mob.active span:nth-child(2) {
	width: 30px;
	transform: rotate(-45deg);
}
.header_menu_mob.active span:nth-child(3) {
	display: none;
}
.header_menu_mob.active:hover {
	transform: rotate(180deg);
}

.header_menu_link {
	font-size: 16px;
	font-weight: 600;
	margin-right: 40px;
	transition: 0.2s;
	letter-spacing: 0.1em;
}
.header_menu_link i {
	color: #8a75e7;
	font-size: 14px;
	margin-right: 5px;
}
.header_menu_link:hover {
	color: #8a75e7;
}
.header_decoration {
	margin: 0px 10px;
}
.header_decoration span {
	width: 1px;
	height: 40px;
	background: #8a75e7;
	opacity: 0.1;
	margin: 0px 2px;
}
.header_lang {
	margin-right: 60px;
	cursor: pointer;
	position: relative;
	padding: 5px 10px;
	border-radius: 3em;
	transition: 0.2s;
}
.header_lang.active {
	background: rgb(127 109 207 / 25%);
}
.header_lang img {
	width: 24px;
}
.header_lang i {
	margin-left: 10px;
	font-size: 10px;
}
.header_panel {
	position: absolute;
	list-style: none;
	background: #37334a;
	padding: 5px 12px;
    top: 35px;
	border-radius: 10px;
	border-bottom: 4px solid #5c5775;
	display: none;
	transition: 0.2s;
}
.header_panel.active {
	display: block;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.header_panel:before {
	position: absolute;
	content: "";
	background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%2337334a" d="M182.6 137.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8l256 0c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z"/></svg>');
	width: 16px;
	height: 16px;
	background-size: cover;
	top: -12px;
	right: 5px;
}
.header_panel li {
	margin: 6px 0;
}
.header_panel a {
	display: flex;
	transition: 0.2s;
}
.header_panel a:hover {
	filter: brightness(1.3);
}
.header_lc {
	background: rgb(127 109 207 / 25%);
	border-left: 3px solid #8a75e7;
	border-right: 3px solid #8a75e7;
	font-weight: 400;
	border-radius: 3em;
	padding: 8px 15px;
	font-size: 16px;
	transition: 0.2s;
}
.header_lc i {
	margin-right: 15px;
}
.header_lc span {
	font-weight: 600;
}
.header_lc:hover {
	background: #8a75e7;
	border-left: 3px solid #ffffff;
	border-right: 3px solid #ffffff;
}
.main {
	height: calc(1080px - 70px);
	position: relative;
}
.main_container {
	height: 100%;
	position: relative;
	z-index: 1;
}
.main_middle {
	text-align: center;
	width: 45%;
}
.main_server {
	background: rgb(62 52 80 / 95%);
	border-radius: 3em;
	width: 150px;
	margin: 0px 20px;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0px -5px #44336f;
}
.main_server_head {
	padding: 10px;
	background: rgb(110 96 183 / 90%);
	position: relative;
	border-radius: 3em 3em 0 0;
	overflow: hidden;
}
.main_server_head:before {
	position: absolute;
	content: "";
	background: url("../img/imgbg_srv.png");
	width: 150px;
	height: 131px;
	left: 0;
	top: 0;
	border-radius: 3em 3em 0 0;
}
.main_server_container {
	padding: 10px;
	text-align: center;
}
.main_server__name {
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	display: block;
	position: relative;
}
.main_server__chronic {
	font-size: 12px;
	font-weight: 500;
}
.main_server__stat {
	margin: 8px 0px;
}
.main_server__stat span {
	display: block;
	width: 16px;
	height: 6px;
	border-radius: 50px;
	margin: 0px 1px;
	border: 1px solid #b3add0;
}
.main_server__stat span.active {
	display: block;
	width: 16px;
	height: 6px;
	background: #5e3bb9;
	border-radius: 50px;
}
.main_server__online {
	font-size: 24px;
	color: #fff;
	font-weight: 500;
}
.main_server .online {
	font-size: 12px;
	color: #00ff4e;
}
.main_server .offline {
	font-size: 12px;
	color: #f00;
}
.main_title {
	text-align: center;
	font-family: "aguante";
	color: #fff;
	font-size: 52px;
	margin: 20px 0px;
}
.main_title span {
	color: #8a75e7;
}
.main_description {
	width: 80%;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	margin: 0 auto;
	text-align: center;
}
.main_startplay {
	background: url("../img/startplay.png");
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.1em;
	width: 280px;
	margin: 50px auto;
	padding-top: 5px;
	height: calc(91px - 5px);
	transition: 0.4s;
}
.main_startplay:hover {
	background: url("../img/startplay.png");
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.1em;
	width: 280px;
	margin: 50px auto;
	padding-top: 5px;
	height: calc(91px - 5px);
	filter: drop-shadow(5px 0px 0px #b3add0) drop-shadow(-5px 0px 0px #b3add0)
		hue-rotate(20deg);
}

#informer {
	position: relative;
}
.informer_container {
	position: relative;
	padding: 20px 0px;
}
.informer_block {
	background: #37334a;
	/* width: 250px; */
	width: 400px;
	height: 360px;
	border-radius: 3em;
	margin: 0px 20px;
	border-top: 4px solid #524b70;
	box-shadow: 0px 0px 25px 0px rgb(151 97 201 / 25%);
	background-image: url(/storage/images/01JP06JE3SE4KY2M5JYASP6VG7.png);
	background-repeat: no-repeat;
	background-size: 100% 180px;
	background-position: top;
}

.informer__img {
	width: 100%;
	height: 180px;
	background-position: 30% 0%;
	border-radius: 3em 3em 0px 0px;
	position: relative;
	background-size: 100%;
}
.informer__img:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background: linear-gradient(180deg, transparent, #37334a);
}
.informer__info {
	padding: 0px 15px;
	text-align: center;
	margin-top: -50px;
	position: relative;
	z-index: 1;
	height: 230px;
	overflow: hidden;
}
.informer__title {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 16px;
    -webkit-line-clamp: 32;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0px 1px 10px rgb(0 0 0 / 20%);
}
.informer__content {
	margin: 0px;
	line-height: 20px;
	font-size: 14px;
	margin-top: 10px;
	-webkit-line-clamp: 5;
	line-clamp: 5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 110px;
}

.informer__dline {
	width: 50px;
	height: 1px;
	margin: 10px auto;
	background: linear-gradient(90deg, transparent, #ad01fa, transparent);
	box-shadow: 0 0 10px 1px #ad01fa;
}
.informer__date {
	color: #8a75e7;
	font-size: 12px;
	margin: 10px 0px;
}
.informer__btn {
	background: #8a75e7;
	font-size: 14px;
	padding: 5px 30px;
	border-radius: 3em;
	text-transform: uppercase;
	border: 1px solid #8a75e7;
	transition: 0.2s;
}
.informer__btn i {
	font-size: 10px;
	margin-left: 10px;
}
.informer__btn:hover {
	background: transparent;
}
.informer_arrows {
	width: 100%;
	position: absolute;
	top: 40%;
	left: 0;
	color: #8a75e7;
	font-size: 36px;
	transform: translate(0, -50%);
	z-index: 1;
}

.informer_arrows .arrows {
	position: absolute;
	cursor: pointer;
	opacity: 0.5;
	transition: 0.2s;
}
.informer_arrows .arrows:hover {
	filter: brightness(1.4);
}
.informer_arrows .arrows__left {
	position: absolute;
	left: 0;
}
.informer_arrows .arrows__right {
	position: absolute;
	right: 0;
}
.informer_arrows .arrows:hover {
	opacity: 1;
}
.informer_navs {
	position: relative;
	margin-top: 50px;
}
.informer_navs span {
	display: block;
	border-radius: 2em;
	background: #595084;
	width: 16px;
	height: 6px;
	margin: 0px 5px;
	cursor: pointer;
	position: relative;
	opacity: 0.5;
	transition: 0.2s;
}
.informer_navs span:hover {
	opacity: 1;
}
.informer_navs .active {
	opacity: 1;
	background: #8a75e7;
}
.informer_navs .active:before {
	content: "";
	position: absolute;
	width: 18px;
	height: 8px;
	left: -2px;
	top: -2px;
	border: 1px solid #8a75e7;
	border-radius: 2em;
}
.preim {
	margin-top: 100px;
}
.preim_item {
	width: 300px;
	text-align: center;
	margin: 0px 10px;
}
.preim_icon {
	filter: drop-shadow(0px 0px 20px #37334a);
}
.preim_name {
	font-weight: 600;
	color: #fff;
	font-size: 18px;
}
.preim_text {
	font-size: 16px;
}
.title {
	font-size: 40px;
	font-weight: 400;
	color: #fff;
}
.title span {
	color: #8a75e7;
	font-weight: 600;
	display: contents;
}
.widgets {
	margin-top: 50px;
}
.widgets_left {
	width: calc(50% - 20px);
	margin-right: 20px;
    z-index: 99999;
}
.news_block {
	background: #37334a;
	border-radius: 3em;
	padding: 20px 30px;
	width: calc(50% - 70px);
	margin: 10px 0px;
	box-shadow: 0px 0px 25px 0px rgb(151 97 201 / 25%);
}

.news_block:first-child {
	width: 100%;
	padding: 0px 0px 0px 30px;
}
.news_block:last-child {
	margin-left: 20px;
}
.news_block:first-child .news_title {
	margin-top: 20px;
}
.news_block_img {
	width: 340px;
	height: 350px;
	border-radius: 0px 3em 3em 0px;
	position: relative;
	box-shadow: -5px 0px 11px -5px rgb(0 0 0 / 50%);
	display: none;
	overflow: hidden;
}
.news_block:first-child .news_block_img {
	display: block;
}
.news_block_img::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 50%;
	transform: translate(0%, -50%);
	z-index: 1;
	width: 2px;
	height: 250px;
	background: linear-gradient(180deg, transparent, #ad01fa, transparent);
	box-shadow: 0 0 10px 0px #ad01fa;
	filter: drop-shadow(0px 1px 10px #ad01fa);
}
.news_block_img img {
	height: 100%;
	border-radius: inherit;
}
.news_block_over {
	margin-right: 20px;
}
.news_title {
	font-size: 24px;
	margin: 5px 0px 10px;
	color: #fff;
	font-weight: 600;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	letter-spacing: 1px;
}
.news_title i {
	margin-right: 20px;
	color: #8a75e7;
	position: relative;
	top: 3px;
}
.news_content {
	-webkit-line-clamp: 7;
	line-clamp: 7;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: calc(7 * 30px);
}
.news_bottom {
    margin-top: 20px;
    z-index: 999999;
    position: relative;
}
.news_date {
	font-size: 12px;
	color: #8a75e7;
	margin-right: 10px;
}
.news_date i {
	font-size: 12px;
	margin-right: 10px;
}
.news_btn {
	background: #8a75e7;
	padding: 5px 20px;
	border-radius: 2em;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	border: 1px solid #8a75e7;
	transition: 0.2s;
}
.news_btn i {
	margin-left: 10px;
	font-size: 12px;
}
.widgets_right {
	width: calc(50% - 20px);
	margin-left: 20px;
}
.news_btn:hover {
	background: transparent;
}
.posts_block {
	width: calc(50% - 20px);
	margin: 10px;
}
.posts_block_item {
	width: calc(100% - 20px);
	background: #37334a;
	padding: 0px 0px 0px 20px;
	border-radius: 3em;
	border-left: 4px solid #524b70;
}
.post_block__title {
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 260px;
	display: inline-block;
}
.post_block__title i {
	margin-right: 20px;
	font-size: 18px;
	color: #b3add0;
	position: relative;
	top: 3px;
}
.posts_block__btn {
	background: #8a75e7;
	padding: 20px 45px;
	border-radius: inherit;
	font-size: 14px;
	transition: 0.2s;
}
.posts_block__btn:hover {
	background: #524b70;
	color: #fff;
	transform: scale(0.8);
}
.posts_block_bottom {
	margin-top: 3px;
	color: #8a75e7;
	font-size: 12px;
	font-weight: 500;
}
.posts_block_bottom span {
	color: #b3add0;
}

.posts_block_bottom i {
	margin-right: 5px;
}
.posts_block_date {
	margin-left: 20px;
}
.posts_block_author {
	margin-right: 20px;
}
.primary_btn {
	text-align: center;
	display: block;
	padding: 10px;
	background: linear-gradient(0deg, #a33eff, #5b45ff);
	border-radius: 3em;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 10px;
	letter-spacing: 1px;
	transition: 0.2s;
	box-sizing: border-box;
    z-index: 999;
}
.primary_btn i {
	margin-right: 10px;
}
.primary_btn:hover {
	filter: brightness(1.2);
	letter-spacing: 4px;
	-webkit-animation-name: textSpacing;
	animation-name: textSpacing;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
.rating {
	position: relative;
	margin-top: 30px;
}
.rating:before {
	position: absolute;
	content: "";
	background: url("../img/rating_pers.png");
	width: 355px;
	height: 450px;
	left: -20px;
	top: 55%;
	transform: translate(0%, -50%);
}
.rating_container {
	height: 100%;
	display: none;
}
.rating_container.active {
	display: flex;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.rating_over {
	position: relative;
	width: 580px;
}
.rating_item {
	padding: 10px 20px;
	border-radius: 3em;
	background: rgb(55 51 74 / 30%);
	margin-bottom: 10px;
	margin-left: 5px;
	width: calc(50% - 45px);
}
.rating__num {
	font-size: 16px;
	color: #fff;
	margin-right: 10px;
}
.rating__name {
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 120px;
}
.rating__name img {
	margin: 0px 10px 0px 5px;
	position: relative;
	top: 2px;
}
.rating__score {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	color: #fff;
	font-weight: 600;
}
/*.rating__score i {
	margin-right: 10px;
}*/
.rating__score span {
	font-size: 12px;
	font-weight: 400;
}
.rating_item:nth-child(1) {
	background: rgb(55 51 74 / 90%);
	width: 100%;
}

.rating_item:nth-child(2) {
	background: rgb(55 51 74 / 80%);
	width: 100%;
}

.rating_item:nth-child(3) {
	background: rgb(55 51 74 / 70%);
	width: 100%;
}
.rating_item:nth-child(1) .rating__name {
	font-size: 18px;
	font-weight: 700;
	background: linear-gradient(to left, #f0ff00, #ff8a00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	width: 250px;
}
.rating_item:nth-child(2) .rating__name {
	font-size: 18px;
	font-weight: 600;
	background: linear-gradient(to left, #ffffff, #899fa2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	width: 250px;
}
.rating_item:nth-child(3) .rating__name {
	font-size: 18px;
	font-weight: 600;
	background: linear-gradient(to left, #e48383, #96553c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	width: 250px;
}

.rating_item:nth-child(1) .rating__score {
	font-size: 21px;
}
.rating_item:nth-child(2) .rating__score {
	font-size: 21px;
}
.rating_item:nth-child(3) .rating__score {
	font-size: 21px;
}
.rating_item:nth-child(1) .rating__score span {
	font-size: 16px;
}
.rating_item:nth-child(2) .rating__score span {
	font-size: 16px;
}
.rating_item:nth-child(3) .rating__score span {
	font-size: 16px;
}
.rating_item:nth-child(1) .rating__score i {
	font-size: 14px;
	position: relative;
	top: -1px;
}
.rating_item:nth-child(2) .rating__score i {
	font-size: 14px;
	position: relative;
	top: -1px;
}
.rating_item:nth-child(3) .rating__score i {
	font-size: 14px;
	position: relative;
	top: -1px;
}
.rating_selector {
	margin-top: 30px;
}
.rating_selector_name {
	text-transform: uppercase;
	font-size: 12px;
	margin-right: 20px;
}
.rating_selector_item {
	background: #37334a;
	padding: 5px 30px;
	border-radius: 3em;
	color: #ccc5ec;
	font-size: 14px;
	cursor: pointer;
	margin: 0px 5px;
	transition: 0.2s;
	text-shadow: 0 0 5px rgb(0 0 0 / 50%);
}
.rating_selector_item:hover {
	background: #8a75e7;
	color: #fff;
}
.rating_selector_item.active {
	background: #8a75e7;
	color: #fff;
}
#media {
	margin-top: 50px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.media_btns {
	margin-left: 20px;
}
.media_btns a {
	padding: 5px 10px;
	border-radius: 3em;
	transition: 0.2s;
}
.media_btns a:hover {
	background: #8a75e7;
}
.add_stream span {
	border-radius: 50%;
	background: #3b9a68;
	width: 18px;
	height: 18px;
	display: inline-flex;
	justify-content: center;
	position: relative;
	font-size: 10px;
	align-items: center;
	margin-right: 5px;
}
.add_video span {
	border-radius: 50%;
	background: #9a633b;
	width: 18px;
	height: 18px;
	display: inline-flex;
	justify-content: center;
	position: relative;
	font-size: 10px;
	align-items: center;
	margin-right: 5px;
}
.media_container {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.media_items {
	display: flex;
	gap: 14px;
	padding: 20px 0;
}
.media_item {
	border-radius: 3em;
	background-color: #37334a;
	background: url("../img/media_promo.png") top;
	height: 210px;
	border-right: 3px solid #8a75e7;
	border-left: 3px solid #8a75e7;
	position: relative;
	box-shadow: 0px 0px 20px 2px rgb(78 54 101 / 30%);
	width: auto;
	background-size: cover;
}
.media_item img {
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background-size: 100% 100%;
}
.media_desc {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgb(55 51 74 / 70%);
	padding: 5px 10px;
	border-radius: 3em;
	font-size: 14px;
}
.media_item iframe {
	border-radius: inherit;
	width: 100%;
	height: 100%;
}
.media_navs {
	position: relative;
	margin-top: 20px;
	padding: 20px 0px;
}
.media_navs span {
	display: block;
	border-radius: 2em;
	background: #595084;
	width: 16px;
	height: 6px;
	margin: 0px 5px;
	cursor: pointer;
	position: relative;
	opacity: 0.5;
	transition: 0.2s;
}
.media_navs span:hover {
	opacity: 1;
}
.media_navs .active {
	opacity: 1;
	background: #8a75e7;
}
.media_navs .active:before {
	content: "";
	position: absolute;
	width: 18px;
	height: 8px;
	left: -2px;
	top: -2px;
	border: 1px solid #8a75e7;
	border-radius: 2em;
}
#footer {
	margin-top: 100px;
	position: relative;
	padding: 10px 0px;
}
#footer:before {
	position: absolute;
	content: "";
	width: 100%;
	background: url("../img/footer_smouke.png");
	height: 433px;
	bottom: 0;
	background-size: 100% 100%;
}
.footer_container {
	position: relative;
	z-index: 1;
}
.footer_copy {
	margin-top: -10px;
	font-size: 14px;
	color: #fff;
}
.footer_social {
	margin-left: 40px;
}
.footer_social_item {
	width: 32px;
	height: 32px;
	background: #8a75e7;
	border-radius: 50%;
	margin-right: 15px;
	transition: 0.2s;
}
.footer_social_item:hover {
	filter: brightness(1.2);
	transform: scale(1.2);
}
.footer_social_item:hover i {
	transform: rotate(360deg);
	transition: 0.2s;
}
.social_tg {
	background: #1684d8;
}
.social_ds {
	background: #6e60b7;
}
.social_yt {
	background: #d81616;
}
.footer_middle {
	font-size: 12px;
	width: 420px;
	text-align: center;
}
.footer_middle span {
	color: #fff;
	display: table;
}

.footer_links {
	margin-left: 40px;
}
.footer_links a {
	margin: 0px 10px;
	font-size: 12px;
	text-decoration: underline;
	text-underline-offset: 5px;
	color: #8a75e7;
	font-weight: 500;
	transition: 0.2s;
}
.footer_links a:hover {
	color: #fff;
}
.footer_std {
	transition: 0.2s;
	background: rgb(98 79 171 / 60%);
	border-radius: 1em;
}
.footer_std img{
	width: 60px;
	height: 60px;
}
.footer_std:hover {
	transform: scale(1.1);
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 50%, 0);
		transform: translate3d(0, 50%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 50%, 0);
		transform: translate3d(0, 50%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes textSpacing {
	0% {
		letter-spacing: 1px;
	}
	50% {
		letter-spacing: 2px;
	}
	100% {
		letter-spacing: 1px;
	}
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.main_logo:hover img {
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.main_logo:hover {
	filter: hue-rotate(-42deg);
	transition: 0.2s;
}
.logo:hover {
	transform: scale(1.1);
	transition: 0.2s;
}
@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}
	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}
@keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}
	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}
.popap {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgb(13 12 18 / 80%);
	z-index: 999;
	top: 0px;
	left: 0;
	display: none;
}
.popap.active {
	display: block;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.popap_over {
	position: absolute;
	max-width: 1000px;
	padding: 10px;
	background: #37334a;
	border-radius: 2em;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 20px rgb(75 63 107 / 50%);
}
.popap_close {
	position: absolute;
	right: -30px;
	top: -30px;
	font-size: 20px;
	cursor: pointer;
	transition: 0.2s;
	color: #fff;
}
.popap_close:hover {
	color: #37334a;
}
.popap_container {
	font-weight: 400;
}
.popap_container h3 {
	font-size: 36px;
	text-align: center;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	background: #231a33;
	letter-spacing: 2px;
	color: #fff;
	border-radius: 3em;
}
.popap_block {
	background: linear-gradient(to left, transparent, #403a55, transparent);
	text-align: center;
	padding: 10px;
	position: relative;
	margin: 10px 0px;
}
.popap_block::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, 0%);
	z-index: 1;
	width: 250px;
	height: 2px;
	background: linear-gradient(to left, transparent, #ad01fa, transparent);
	box-shadow: 0 0 10px 0px #ad01fa;
	filter: drop-shadow(0px 1px 10px #ad01fa);
}
.popap_block::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0%);
	z-index: 1;
	width: 250px;
	height: 2px;
	background: linear-gradient(to left, transparent, #ad01fa, transparent);
	box-shadow: 0 0 10px 0px #ad01fa;
	filter: drop-shadow(0px 1px 10px #ad01fa);
}
.popap_block_name {
	font-size: 21px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.popap_block_btns {
	margin-top: 10px;
}
.popap_link {
	background: #8a75e7;
	font-size: 14px;
	padding: 5px 20px;
	border-radius: 3em;
	text-transform: uppercase;
	border: 1px solid #8a75e7;
	transition: 0.2s;
	font-weight: 500;
	margin: 5px;
}
.popap_link i {
	font-size: 14px;
	margin-right: 10px;
}
.popap_link:hover {
	background: transparent;
}
.popap_container::-webkit-scrollbar {
	width: 0.2em;
	height: 0.2em;
}

.popap_container::-webkit-scrollbar-thumb {
	background: #8a75e7;
}

.popap_container::-webkit-scrollbar-track {
	background: rgb(75 63 107 / 10%);
}

.popap_container {
	padding: 0px 2px;
	scrollbar-face-color: #8a75e7;
	scrollbar-track-color: rgb(75 63 107 / 10%);
}
