html {
  padding: 0;
  margin: 0;
  background: #100c1b;
}

* {
box-sizing: border-box;
}

* {
	outline: none;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  
  background-color: #0e122b;

  
  padding: 0;
  margin: 0;
  color: #000;
  -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
h1,
h2,
h3 {
  font-weight: normal;
}

img {
	display: inline-block;
	max-width: 100%;
}

a {
	color: #000;
	text-decoration: none;
	transition: .3s all;
	cursor: pointer !important;
}

a:hover, a:focus {
	color: #666;
	text-decoration: none;
}

a:hover, button:hover {
    cursor: pointer !important;
}

ul li {
	list-style: none;
}

.cubic_overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 50px 50px; /* Размер ячейки */
  pointer-events: none;
  cursor: default;
}  

.clear {
	clear: both;
}

.container {
	width: 1790px;
	margin: 0 auto;
}


.my_cookie_alert {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1em 1.8em;
	width: 100%;
	background: #000;
	/*opacity: 0.9;*/
	z-index: 100;
	font-size: 14px;
	visibility: hidden;
}

.my_cookie_alert span {
	text-align: left;
	display: block;
	float: left;
	color: #aaa;
	padding: 0 0;
	max-width: calc(100% - 120px);
}

.my_cookie_alert a {
	color: #fff;
	display: inline-block;
	margin-top: 5px;
}

.my_cookie_alert > div {
	float: right;
}

.my_cookie_alert > div a {
	display: inline-block;
	background-color: #008bf7;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	border-color: #008bf7;
	-webkit-transition: all .2s ease-in-out !important;
	transition: all .2s ease-in-out !important;
	text-transform: uppercase !important;
	padding: .8em 1.5em;
	border-radius: 4px;
	margin: 0;
}

.mybut1 {
	display: inline-block;
	
    transform: skewX(-12deg) translateY(0px) scale(1);
    background: linear-gradient(rgb(255, 213, 79) 0%, rgb(255, 184, 0) 50%, rgb(255, 152, 0) 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 3px solid rgba(255, 140, 0, 0.8);
    box-shadow: rgb(198, 113, 0) 0px 4px 0px, rgba(255, 184, 0, 0.3) 0px 0px 20px;
    animation: auto ease 0s 1 normal none running none;

	text-align: center;
	text-transform: uppercase;
	
	padding: 20px 30px;
	padding-right: 85px;

	font-size: 20px;
	font-weight: bold;
	font-style: italic;
	
	color: #0a0e27;
	text-decoration: none;
	position: relative;
}

.mybut1 span {
	transform: skewX(12deg);
	display: inline-block;
}



.mybut1:hover, .mybut1:focus {

	color: #0a0e27;
	
	  box-shadow: rgb(198, 113, 0) 0px 7px 0px, rgba(255, 184, 0, 0.8) 0px 0px 50px;
	  animation: springShakeAndGrow 0.3s ease forwards;
}


@keyframes springShakeAndGrow {
  0% { transform: scale(1) translateX(0) skewX(-12deg); }
  20% { transform: scale(1.04) translateX(-6px) skewX(-12deg); }
  40% { transform: scale(1.06) translateX(6px) skewX(-12deg); }
  60% { transform: scale(1.08) translateX(-3px) skewX(-12deg); }
  80% { transform: scale(1.10) translateX(3px) skewX(-12deg); }
  100% { transform: scale(1.08) translateX(0) skewX(-12deg); }
}


.mybut1_wishlist:after {
	content: '';
	display: block;
	background: url(/images/icon_steam.png) center center no-repeat;
	background-size: contain;
	width: 38px;
	height: 38px;
	position: absolute;
	top: 13px;
	right: 30px;
	transition: .5s;
	transform: skewX(12deg);
}





/* Header */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	height: 90px;
	transition: .5s;
}

.header.sticky {
	background: rgba(13,15,44,0.8);
	height: 60px;
}

.header_logo {
	float: left;
	width: 80px;
	margin-top: 10px;
	transition: .5s;
}

.header.sticky .header_logo {
	width: 40px;
	margin-top: 5px;
}

.header_logo img {
	display: inline-block;
	max-width: 100%;
}

.header_menu {
	float: right;
	margin-top: 32px;
	transition: .5s;
}

.header.sticky .header_menu {
	margin-top: 14px;
}

.header_menu a.menu_link {
	display: inline-block;
	margin-right: 40px;
	text-transform: uppercase;
	font-size: 24px;
	font-style: italic;
	font-weight: bold;
	color: #ffb800;
	position: relative;
}

.header_menu a.menu_link:hover {
	color: #fff;
}

.header_menu a.menu_link span {
	display: inline-block;
	position: relative;
}

.header_menu a.menu_link span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffb800;
  transition: all 0.1s;
  transform: translateX(-50%);
}

.header_menu a.menu_link.active span::after {
  width: 100%;
}

.header_menu .menu_wish_link {
	display: none;
}

.header .toggle-mobile {
	display: none;
}

/* Content */

.main_top_block {
	height: 44vw;
	max-height: 940px;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

/* Контейнер для видео */
.main_top_bg_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Само видео */
.main_top_bg_video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Растягивает видео на весь блок */
}

/* Затемнение видео */
.main_top_bg_video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 0.5 - степень затемнения (0-1) */
    z-index: 1;
}



.main_top_cubic {
	position: absolute;
	z-index: 3;
	top: 20px;
	left: 0;
	width: 100%;
}

.main_top_cubic img {
	display: block;
}

.main_top_text {
	position: absolute;
	z-index: 3;
	top: 180px;
	left: 0;
	width: 100%;
}

.main_top_logo {
	margin-bottom: 20px;
}

.main_top_logo img {
	margin-left: -140px;
}

.main_top_tags {
	transform: rotate(-2deg);
    transform-origin: left bottom;
	float: left;
}

.main_top_tags > div {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	padding: 8px 12px;
	text-transform: uppercase;
	font-style: italic;
	color: #ffb800;
	border: 2px solid #ffb800;
	margin: 5px;
	transform: skewX(-12deg);
}
    

.main_top_tags > div span {
	transform: skewX(12deg);
	display: inline-block;
}

.main_top_head {

	padding-top: 50px;
}

.main_top_head h2 {
	color: #ffb800;
	font-size: 1.5rem;

	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
	margin-bottom: 15px;
}

.main_top_head p {
	color: #fff;
	font-size: 1.25rem;

	font-weight: bold;
	margin: 0;
}

.main_top_play {
	float: left;
	padding-left: 60px;
	transform: rotate(-2deg);
	margin-top: -25px;
}


.block_head {
	font-size: 60px;
	text-align: left;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #ffb800;
	margin: 0;
	padding: 0;
}

/* About */

.main_about {
	padding-top: 100px;
	margin-top: -50px;
	clip-path: polygon(0px 3%, 100% 0%, 100% 100%, 0px 96%);
    background: linear-gradient(135deg, rgb(107, 33, 168) 0%, rgb(59, 130, 246) 50%, rgb(37, 99, 235) 100%);
	position: relative;
}

.main_about_cubs {
	animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.main_about .absolute,
.main_faq .absolute,
.main_connected .absolute {
	position: absolute;
}

.main_about .overflow-hidden,
.main_faq .overflow-hidden,
.main_connected .overflow-hidden {
	overflow: hidden;
}

.main_about .pointer-events-none,
.main_faq .pointer-events-none,
.main_connected .pointer-events-none {
    pointer-events: none;
}

.main_about .inset-0,
.main_faq .inset-0,
.main_connected .inset-0 {
    inset: 0;
}


.main_about_text {
	float: left;
	width: 50%;
	position: relative;
	text-align: left;
	align-items: center;
	color: #fff;
	padding-right: 50px;
}


.main_about_text p {
	font-size: 1.2rem;
}

.main_about_pic {
	max-width: 300px;
	position: relative;
	margin: 0 auto;
	margin-bottom: 40px;
}

.main_about_pic:before {
	content: '';
	display: block;
	position: absolute;
	top: -10%;
	left: -10%;
	width: 120%;
	height: 120%;
	z-index: 0;
  border-radius: 50%;
  background: #fff;
  opacity: .3;
  filter: blur(50px);
}

.main_about_pic img {
	width: 100%;
	z-index: 1;
	position: relative;
	display: inline-block;
}

.main_about_trailer {
	float: left;
	width: 50%;
	
}

.main_about_trailer a {
	position: relative;
	overflow: hidden;
	display: block;
	    clip-path: polygon(0px 2%, 100% 0px, 100% 98%, 0px 100%);
}

.trailer_pic img {
	transition: 1s;
	width: 100%;
}

.main_about_trailer a:hover .trailer_pic img {
	transform: scale(1.2);
}

.trailer_text {
	position: absolute;
	left: 0;
	top: calc(50% + 70px);
	width: 100%;
	text-align: center;
	color: #ffb800;
	font-size: 22px;
	font-weight: bold;
	text-transform: uppercase;
	font-style: italic;
	transition: .5s;
}

.main_about_trailer a:hover .trailer_text {
	opacity: .7;
}

.trailer_arrow {
  display: block;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
  width: 90px;
  height: 90px;
}

.trailer_arrow svg {
  color: #ffb800;
  fill: #ffb800;
  width: 100%;
  height: 100%;
  transition: .5s;
}

.main_about_trailer a:hover .trailer_arrow svg {
	scale: 1.2;
}

.trailer_circle {
  display: block;
  position: absolute;
  top: calc(50% - 90px);
  left: calc(50% - 90px);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #ffb800;
  opacity: .4;
  filter: blur(50px);
}


/* MEDIA */

.main_media {
	position: relative;
	padding-top: 50px;
	padding-bottom: 80px;
}

.swiper {
	margin-top: 50px;
}

/* Базовые стили слайдера */
.swiper-slide {
  opacity: 0.7;
  transition: all 0.3s ease;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.swiper-slide-active {
  opacity: 1;
}

.swiper-slide-active img {
  transform: scale(1);
}

/* Контейнер для всего */
.slide-content {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0px 2%, 100% 0px, 100% 98%, 0px 100%);
}

/* Черный overlay - по умолчанию скрыт */
.chess-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* Скрыт по умолчанию */
  z-index: 10;
  pointer-events: none; /* Вот это свойство! */
}

/* Показываем только у активного слайда */
.swiper-slide-active .chess-overlay {
  display: flex;
  flex-wrap: wrap;
}

/* Квадратики - создаем через flexbox */
.chess-cell {
  background-color: black;
  box-sizing: border-box;
  flex: 0 0 auto; /* Не растягиваться */
  animation: disappear 0.8s ease-out forwards;
  animation-play-state: paused; /* Анимация остановлена по умолчанию */
}

/* Анимация включена только когда overlay видим */
.swiper-slide-active .chess-cell {
  animation-play-state: running;
}

/* Анимация исчезновения */
@keyframes disappear {
  0% { opacity: 1; background: black; }
  100% { opacity: 0; background: transparent; }
}


/* Стили для пагинации */

.swiper-pagination {
	position: relative;
	bottom: auto;
	top: auto;
	margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #7a7a8c;
  opacity: 1;
  border-radius: 0;
  transform: skewX(-12deg);
  
}

.swiper-pagination-bullet:hover {
	animation: springShakeAndGrow 0.3s ease forwards;
}

.swiper-pagination-bullet-active {
  background: #ffb800;
  width: 40px;
  height: 12px;
}





/* FAQ */

.main_faq {
	padding-top: 100px;
	padding-bottom: 80px;
	background: linear-gradient(135deg, rgb(30, 58, 138) 0%, rgb(14, 165, 233) 50%, rgb(6, 182, 212) 100%);
	clip-path: polygon(0px 0%, 100% 3%, 100% 96%, 0px 100%);
	position: relative;
}

.main_faq h2.block_head {
	color: #fff;
}

.main_faq_cont {
	width: 50%;
	margin-top: 40px;
	float: left;
}

.faq_item {
	background: rgba(255,255,255,0.2);
	border: 2px solid rgba(255,255,255,0.4);
	
	margin: 15px 0;
}

.faq_question {
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	font-style: italic;
	font-weight: bold;
	position: relative;
	cursor: pointer;
	padding: 20px 25px;
	padding-right: 60px;
}

.faq_question > div {
	position: absolute;
	top: calc(50% - 12px);
	right: 25px;
	font-size: 20px;
	color: #fff;
	transition: .5s;
}

.faq_question.active > div {
	transform: rotate(180deg) translateY(6px);
}

.faq_answer {
	padding: 20px 25px;
	font-size: 16px;
	color: #fff;
	background: rgba(255,255,255,0.1);
}

.main_faq_pic {
	text-align: center;
	float: left;
	width: 50%;
}

.main_faq_pic_pic {
	display: inline-block;
	width: 300px;
	position: relative;
}

.main_faq_pic_pic img {
	width: 100%;
	position: relative;
	z-index: 1;
}

.main_faq_pic_pic:before {
	content: '';
	display: block;
	position: absolute;
	top: -10%;
	left: -10%;
	width: 120%;
	height: 120%;
	z-index: 0;
  border-radius: 50%;
  background: #fff;
  opacity: .3;
  filter: blur(50px);
}

.faq_socials a {
	display: inline-block;
	margin: 8px;
	width: 50px;
	padding: 10px;
	border: 1px solid rgba(255,255,255,0.7);
	background: rgba(255,255,255,0.2);
	border-radius: 4px;
}

.faq_socials a:hover {
	background: rgba(255,255,255,0.5);
}

.faq_socials a img {
	max-width: 100%;
	display: block;
}


/* Stay Connected */

.main_connected {
	margin-top: -20px;
	padding-top: 100px;
	padding-bottom: 140px;
	text-align: center;
	position: relative;
	height: auto;
	background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(255, 184, 0, 0.10) 0%, transparent 40%);
}

.main_connected h2 {
	text-align: center;
	transform: rotate(-2deg);
}

.main_connected_logo {
	margin-top: 20px;
}

.main_connected_logo img {
	max-width: 600px;
}

.main_connected .main_top_tags {
	float: none;
	margin-top: 50px;
}



.main_connected_social a {
	margin-right: 10px;
}

.main_connected_social a img {
	transition: .5s;
}

.main_connected_social a:hover img {
	filter: brightness(2);
}

.main_connected_play {
	margin-top: 20px;
}









/* Politics */

.politics {
	color: #fff;
	padding-top: 100px;
	position: relative;
	z-index: 1;
}

.politics ul {
	padding: 0;
}



.politics ul li {
	list-style: inside;
	margin: 20px 0;
	font-weight: 300;
	color: #bbb;
	font-size: 18px;
    line-height: 28px;
}

.politics ol li {
	margin: 20px 0;
	color: #bbb;
	font-weight: 300;
}

.politics ul li strong, .politics ol li strong {
	color: #fff;
	font-weight: bold;
}

.politics p {
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
	color: #bbb;
}

.politics p strong {
	font-weight: 600;
}

.politics h1 {
	font-size: 40px;
	text-transform: uppercase;
	margin-bottom: 0px;
}

.politics h2 {
	font-size: 28px;
	line-height: 50px;
	font-weight: 500;
	padding-bottom: 10px;
	padding-top: 20px;
}

.politics h3 {
	font-size: 24px;
	line-height: 29px;
	font-weight: 500;
}

.politics h4 {
	color: #b2a6e3;
	font-size: 24px;
	line-height: 29px;
	font-weight: 500;
}

.politics hr {
	margin-top: 40px;
	border: 1px solid #666;
}

.politics table {
	color: #bbb;
	width: 100%;
	border-collapse: collapse;
}

.politics table td {
	padding: 10px;
	font-size: 15px;
	border: 1px solid #666;
}

.politics a {
	color: #b2a6e3;
}

.politics a:hover {
	color: #cac7f6;
}

.politics_readmore {
	margin: 20px 0;
	font-size: 14px;
	font-style: italic;
}

.politics_readmore p {
	font-size: 14px;
}

.politics_readmore > div:nth-child(1) {
	text-align: center;
}

.politics_readmore > div:nth-child(2) {
	display: none;
}

.politics_readmore_but {
	display: inline-block;
	padding: 10px 30px;
	font-weight: bold;
	border: 1px solid #b2a6e3;
	font-size: 18px;
}



.politics_hint {
	border-top: 1px solid #fff;
	margin-top: 50px;
	padding-top: 20px;
	max-width: 555px;
}

.politics_hint h2 {
	font-size: 28px;
	line-height: 50px;
	font-weight: 500;
	margin: 0;
	padding: 0;
	color: #b2a6e3;
	margin-bottom: 10px;
}

.politics_hint > div {
	padding-left: 35px;
	margin: 15px 0;
	color: #bbb;
}

.politics_hint_address {
	background: url(./images/politics_hint_address.png) center left no-repeat;
}

.politics_hint_email {
	background: url(./images/politics_hint_email.png) center left no-repeat;
}

.politics_hint_email a {
	color: #bbb;
}

.politics_hint_email a:hover {
	color: #b2a6e3;
}

.back_link {
	text-align: center;
	margin-bottom: 50px;
}

.back_link a {
	display: inline-block;
	border: 2px solid #E2E1F7;
	color: #E2E1F7;
	text-transform: none;
	padding: 8px 20px;
}

.back_link a:hover, .back_link a:focus {
	background: #fff;
	color: #505093;
}




.footer {
	background: #0a0e27;
	border-top: 2px solid #191d34;
	clear: both;
	padding: 50px 0;
	font-size: 14px;
	color: rgb(184, 174, 201);
}

.footer_cont {
	display: table;
	width: 100%;
}

.footer_row {
	display: table-row;
}

.footer_row > div {
	display: table-cell;
	vertical-align: middle;
}

.footer_logo {
	text-align: left;
	width: 280px;
}

.footer_logo img {
	width: 60px;
}

.footer_copyright {
	text-align: right;
	width: 280px;
}

.footer_links {
	text-align: center;
	
}

.footer_links a {
	color: rgb(184, 174, 201);
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	margin: 0 10px;
}

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

/* -------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------АДАПТАЦИЯ-------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------------- */


@media screen and (max-width: 1800px) {
	
	.container {
	width: calc(100% - 100px);
	margin: 0 auto;
}

}

/* ---------------------------------------------------1680------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1680px) {

.main_top_text {
	top: 120px;
}

}

@media screen and (max-width: 1500px) {


}

@media screen and (max-width: 1400px) {

	.main_top_text {
	top: 100px;
}

.main_top_block {
	height: 55vw;
}

.block_head {
	font-size: 40px;
}

.main_about {
	padding-top: 70px;
}

.main_about_text p {
	font-size: 1.1rem;
}

.main_about_pic {
	max-width: 200px;
	margin-bottom: 30px;
}

.main_media {
	padding-top: 40px;
	padding-bottom: 60px;
}

.main_faq_pic_pic {
	width: 200px;
}

.main_faq_pic {
	width: 350px;
	padding-top: 50px;
}

.main_faq_cont {
	width: calc(100% - 350px);
	margin-top: 20px;
}

.main_faq {
	padding-top: 40px;
	padding-bottom: 60px;
}

}

/* ---------------------------------------------------1280------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1280px) {
	
.faq_question {
	padding: 15px 15px;
	padding-right: 40px;
}

.faq_question > div {
	right: 15px;
}

.faq_answer {
	padding: 15px;
}

.main_faq_pic {
	width: 300px;
}

.main_faq_cont {
	width: calc(100% - 300px);
}

.footer_logo {
	text-align: left;
	width: 220px;
}

}

/* ---------------------------------------------------1024------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
	
.container {
	width: calc(100% - 60px);
	margin: 0 auto;
}

.header_logo {
	width: 70px;
	margin-top: 5px;
}

.header_menu a.menu_link {
	font-size: 20px;
}

.main_top_block {
	height: 525px;
}
	
.main_top_logo img {
	margin-left: -140px;
	width: 700px;
}

.main_top_play {
	padding-left: 20px;
	margin-top: -22px;
}

.mybut1 {
	padding: 15px 20px;
	padding-right: 60px;
	font-size: 18px;
}

.mybut1_wishlist::after {
	width: 30px;
	height: 30px;
	top: 10px;
	right: 20px;
}

.main_top_head h2 {
	font-size: 1.3rem;
	margin-bottom: 12px;
}

.main_top_head p {
	font-size: 1rem;
}

.footer_logo {
	width: 100px;
}
	

	
}


/* ---------------------------------------------------700------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
	
.container {
	width: calc(100% - 25px);
	margin: 0 auto;
}

html.no-scroll, body.no-scroll {
	overflow: hidden;
}



.header {
	width: 100%;
	overflow: visible;
	height: 70px;
}


.header .toggle-mobile {
	display: block;
	position: absolute;
	top: 10px;
	right: 15px;
	z-index: 2;
	padding: 5px;
  width:48px;
  height: 48px;
  cursor:pointer;
  transition: .3s;
}

.header.sticky .toggle-mobile {
	top: 3px;
}

.header .toggle-mobile.visible {
	padding-left: 3px;
}

.header .toggle-mobile > div {
	display:flex;
  flex-direction:column;
  width: 100%;
  height: 100%;
  z-index: 300;
  position: relative;
}

.header .toggle-mobile > div span{
  background: #ffb800;
  border-radius:0px;
  height:7px;
  margin: 4px 0;
  transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);

}

.header .toggle-mobile > div span:nth-of-type(1){
  width:50%;
  
}

.header .toggle-mobile > div span:nth-of-type(2){
  width:100%;
}


.header .toggle-mobile > div span:nth-of-type(3){
  width:75%;
 
}


.header .toggle-mobile.visible span:nth-of-type(1){
  transform-origin:bottom;
  transform:rotatez(45deg) translate(5px,1px)
}


.header .toggle-mobile.visible span:nth-of-type(2){
  
  transform-origin:top;
  transform:rotatez(-45deg)
}


.header .toggle-mobile.visible span:nth-of-type(3){
  
  transform-origin:bottom;
  width:50%;
  transform: translate(16px,-7px) rotatez(45deg);

}


.header_logo {
	width: 60px;
	margin: 0;
	z-index: 3;
	position: absolute;
	top: 2px;
	left: 15px;
}

.header.sticky .header_menu {
  margin-top: 0;
}

.header .header_menu {
	position: absolute;
	width: 100%;
	margin: 0;
	float: none;
	padding: 0;
	top: 0;
	right: 0;
	text-align: center;
	padding-top: 100px;
	height: 100vh;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.35s cubic-bezier(0.645,0.045,0.355,1);
	transition: transform 0.35s cubic-bezier(0.645,0.045,0.355,1);
	background: rgba(0,0,0,0.8);
	backdrop-filter: blur(15px);
	-webkit-transform: translate3d(0,-100%,0);
	-moz-transform: translate3d(0,-100%,0);
	-o-transform: translate3d(0,-100%,0);
	-ms-transform: translate3d(0,-100%,0);
	transform: translate3d(0,-100%,0);
}

.header .header_menu.visible {
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.header .header_menu a.menu_link {
	display: block;
	margin: 50px 0;
	text-align: center;
	font-size: 24px;
}

.header_menu a.menu_link.active::after {
	width: 80px;
	bottom: -3px;
}

.header_menu .menu_wish_link {
	display: inline-block;
	font-size: 18px;
	padding: 15px 20px;
	padding-right: 60px;
}
.header_menu .menu_wish_link::after {
	width: 30px;
	height: 30px;
	top: 10px;
	right: 20px;
}

.main_top_block {
	height: 570px;
}

.main_top_text {
	top: 80px;
}

.main_top_logo {
	margin-bottom: 10px;
	text-align: center;
}

.main_top_logo img {
	margin-left: 0;
	width: 620px;
}

.main_top_tags {
	float: none;
	text-align: center;
}

.main_top_play {
	padding-left: 0px;
	margin-top: 10px;
	float: none;
	text-align: center;
}

.main_top_head {
	padding-top: 30px;
	text-align: center;
}

.main_about {
	padding-top: 50px;
	padding-bottom: 60px;
}

.block_head {
	font-size: 32px;
	text-align: center;
}

.main_about_text {
	float: none;
	width: 100%;
	padding-right: 0px;
}

.main_about_trailer {
	float: none;
	width: 100%;
}

.main_about_pic {
	max-width: 170px;
	margin-bottom: 20px;
}

.main_media {
	padding-top: 30px;
	padding-bottom: 40px;
}

.swiper {
	margin-top: 30px;
}

.main_faq_cont {
	width: 100%;
	float: none;
}

.main_faq_pic {
	width: 100%;
	float: none;
	padding-top: 20px;
}

.main_faq_pic_pic {
	width: 170px;
}

.faq_question {
	font-size: 16px;
}

.faq_question > div {
	right: 10px;
}

.main_connected {
	margin: 0px;
	padding-top: 50px;
	padding-bottom: 50px;
}

.main_connected .main_about_cubs {
	display: none;
}

.main_connected_logo img {
	max-width: 480px;
}

.footer_cont {
	display: block;
}

.footer_row {
	display: block;
}

.footer_row > div {
	display: block;
	text-align: center;
	padding: 15px 0;
}

.footer_logo {
	width: 100%;
}

.footer_copyright {
	width: 100%;
	text-align: center;
}

.footer {
	padding: 40px 0;
}
	
}

/* ---------------------------------------------------480------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
	
.block_head {
	font-size: 28px;
}


.footer_links a {
	display: block;
	margin: 12px 0px;
	font-size: 18px;
}
	
.main_connected {
	overflow: hidden;
}

.main_connected_logo {
	margin: 0 auto;
	height: 100px;
	margin-top: 20px;
	position: relative;
}

.main_connected_logo img {
	position: absolute;
	top: 0;
	left: calc(50% - 240px);
	width: 480px;
	max-width: auto;
}

}