html {
  padding: 0;
  margin: 0;
background: #0d0d0d;
}

* {
box-sizing: border-box;
}

* {
	outline: none;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  line-height: 30px;
  font-weight: 300;
  background: #0d0d0d;
  background-size: 100% auto;
  padding: 0;
  margin: 0;
  color: #fff;
  -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;
}

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

ul li {
	list-style: none;
}

.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;
}

.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;
}

.mybut {
	display: inline-flex;
    justify-content: center;
    align-items: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: none;
	color: #000;
	background: #f9c900;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
}

.mybut:hover, .mybut:focus {
	background: #fff;
}

.mybut span {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 32px;
	height: 32px;
}

.mybut.white {
	background: #fff;
}

.mybut.white:hover, .mybut.white:focus {
	background: #f9c900;
}

#float_play_btn {
    position: fixed;
    bottom: 60px;
    left: calc(50% - 115px);
    display: none; /* Изначально скрыта */
    z-index: 990;
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
	background: rgba(155,80,95,0.4);
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
	border-radius: 50px;
}

#float_play_btn a {
	display: block;
	width: 230px;
	
	padding: 8px;
}

#float_play_btn a span {
	width: 84px;
	height: 84px;
	display: flex;
    justify-content: center;
    align-items: center;
	background: #f9c900;
	border-radius: 50%;
	position: relative;
	transition: .5s;
}

#float_play_btn a:hover span {
	background: #fff;
}

#float_play_btn a span:after {
	display: block;
	content: 'Play Now';
	position: absolute;
	right: -115px;
	top: calc(50% - 15px);
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
	z-index: 991;
}



.block_head {
	font-size: 40px;
	line-height: 48px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 400;
	margin: 0;
}

/* Top Menu */

 .menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            width: 35px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0 0;
            align-items: flex-end; /* Выравниваем вправо */
			position: absolute;
			top: 40px;
			right: 0;
        }
		
 .menu-toggle:before {
	 content: 'MENU';
	 position: absolute;
	 left: -60px;
	 padding-right: 20px;
	 top: -2px;
	 font-size: 18px;
	 line-height: 18px;
	 color: #999;
	 transition: .5s;
 }
 
  .menu-toggle:hover:before {
	  color: #fff;
  }

        .menu-toggle span {
            display: block;
            height: 2px;
            background-color: #fff;
            border-radius: 10px;
            transition: all 0.3s ease;
            transform-origin: right center; /* Точка трансформации справа */
        }

        /* Начальная ширина */
        .menu-toggle span:nth-child(1) { 
            width: 100%; 
        }
        .menu-toggle span:nth-child(2) { 
            width: 100%; 
        }
        .menu-toggle span:nth-child(3) { 
            width: 100%; 
        }

        /* При наведении - сужаем вправо */
        .menu-toggle:hover span:nth-child(1) { 
            width: 95%; 

        }
        .menu-toggle:hover span:nth-child(2) { 
            width: 60%; 

        }
        .menu-toggle:hover span:nth-child(3) { 
            width: 30%; 

        }
		
/* Полноэкранное меню */
        .fullscreen-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #0D0D0D;
			background-size: contain;
            transition: left 0.4s ease;
            z-index: 1000;
            overflow-y: auto;
			overflow: hidden;
        }

        .fullscreen-menu.active {
            left: 0;
        }
		
		.fullscreen-menu .container {
			position: relative;
			height: 100%;
		}

/* Содержимое меню */

.fullscreen-menu .bg {
	position: absolute;
	top: -850px;
	right: -200px;
	width: 1400px;
	height: 1400px;
	background: radial-gradient(circle,rgba(76, 63, 9, 1) 0%, rgba(13, 13, 13, 1) 60%);
	z-index: -1;
}

.menu-header {
	width: 70px;
	padding-top: 10px;
}

.menu-header img {
	width: 100%;
}

.menu-content {
    list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 60px;
}
		
.menu-content li {
    margin: 10px 0;
}

.menu-content a {
    text-decoration: none;
    color: #666;
    font-size: 20px;
	text-transform: uppercase;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
}

.menu-content a:hover {
    color: #fff;
}

.menu-active {
	position: absolute;
	top: calc(50% - 100px);
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	color: #999;
	font-size: 128px;
	font-weight: 300;
	text-transform: uppercase;
	z-index: -1;
}

.menu-active span {
	display: block;
	opacity: 0;
	transition: .7s;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	transform: scale(0.3);
}

.menu-active span.show {
	opacity: 1;
	display: block;
	transform: scale(1);
}

.menu-trailer {
	position: absolute;
	left: 0;
	bottom: 70px;
	width: 560px;
	
}

.menu-trailer h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
	margin: 0;
	margin-bottom: 15px;
}

.menu-trailer a {
	opacity: .7;
}

.menu-trailer a:hover {
	opacity: 1;
}

.menu-trailer img {
	border: 1px solid #666;
	border-radius: 20px;
	width: 100%;
}

        /* Кнопка закрытия */
        .close-btn {
            position: absolute;
            top: 25px;
            right: 0;
            background: none;
            border: none;
            font-size: 40px;
			font-weight: bold;
            cursor: pointer;
            color: #666;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.5s ease;
        }

        .close-btn:hover {
            color: #fff;
        }

/* Header */

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

.header .container {
	position: relative;
}

.header.sticky {
	background: rgba(0,0,0,1);
}

.header_logo {
	float: left;
	width: 70px;
	margin-top: 10px;
}

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

.header_hub {
	float: right;
	margin-right: 250px;
	margin-top: 32px;
}

.header_hub a {
	display: inline-block;
	font-size: 18px;
	color: #999;
	padding-left:34px;
	background: url(./images/top_hub_logo.png) left center no-repeat;
}

.header_hub a:hover {
	color: #fff;
}

/* Top Block */

.main_top_block {
	height: 44vw;
	height: calc(100vh - 170px);
	position: relative;
	overflow: hidden;
}

.main_top_bg {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
}

.main_top_bg_480 {
	display: none;
}

.main_top_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main_top_bottom {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 1;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
}

.main_top_bottom {
	border-bottom: 0;
}

.main_top_bottom_logo {
	float: left;
	width: 160px;
	padding: 27px;
	background: rgba(0,0,0,0.4);
}

.main_top_bottom_logo img {
	width: 100%;
	display: block;
}

.main_top_bottom_name {
	float: left;
	padding-top: 40px;
	padding-left: 55px;
}

.main_top_bottom_name h1, .main_top_bottom_name h3 {
	margin: 0;
	font-size: 40px;
	line-height: 40px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
}

.main_top_bottom_name h2 {
	font-size: 20px;
	color: #fff;
	opacity: .8;
	text-transform: uppercase;
	margin: 0;
}

.main_top_bottom_download {
	float: right;
	right: 0;
	top: 30px;
	position: relative;
}

.main_top_bottom_steam {
	float: right;
	right: 0;
	top: 30px;
	position: relative;
}

.main_top_bottom_download a,
.main_top_bottom_steam a {
	position: relative;
}

.main_top_bottom_download a:before {
	display: block;
	content: 'Download';
	position: absolute;
	left: -125px;
	top: calc(50% - 12px);
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
}



.main_top_bottom_steam a:before {
	display: block;
	content: 'Wishlist Now';
	position: absolute;
	left: -160px;
	top: calc(50% - 12px);
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
}

.main_top_bottom_steam span {
	width: 48px;
	height: 48px;
}


.main_top_bottom_arrow {
	position: absolute;
	top: calc(50% - 6px);
	left: calc(50% - 11px);
}

.main_top_bottom_arrow img {
	display: block;
}

.main_top_discord {
	position: absolute;
	top: 165px;
	right: calc(50% - 895px);
	z-index: 2;
	
}

.main_top_discord:before {
	content: '';
	display: block;
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	z-index: 0;
	background: radial-gradient(circle,rgba(255, 255, 255, .6) 0%, rgba(255, 255, 255, 0) 50%);
}

.main_top_discord a {
	animation: discord_blink 1.5s infinite;
	z-index: 1;
}

.main_top_discord a:hover {
	animation: none;
	filter: brightness(1.2);
}

@keyframes discord_blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }


/* Main Tabs */

.main_tabs_cont {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
	margin-top: 30px;
	margin-bottom: 200px;
}

.main_tabs_column {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    position: relative;
	color: #fff;
	text-align: center;
	font-size: 20px;
}

.main_tabs_column h3 {
	color: #999;
	font-size: 20px;
	text-transform: uppercase;
	margin: 0;
	text-align: center;
	margin-bottom: 5px;
}

.main_tabs_column p {
	margin: 0;
}

.main_tabs_column a {
	display: inline-block;
	margin: 0 2px;
	border: 1px solid #fff;
	border-radius: 15px;
	padding: 1px 10px;
	color: #fff;
}

.main_tabs_column a:hover {
	color: #000;
	background: #f9c900;
	border: 1px solid #f9c900;
}

.main_tabs_column:not(:last-child):after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background: #fff;
}


/* MODES & LOCATIONS */

.main_modes {
	position: relative;
}

.main_locations {
	position: relative;
	margin-top: 250px;
}

.main_modes_head_head,
.main_locations_head_head {
	float: left;
	max-width: 550px;
}

.main_modes_head h2,
.main_locations_head h2 {
	font-size: 48px;
}

.main_modes_head h2 {
	color: #F9C900;
}

.main_modes_head_text,
.main_locations_head_text {
	float: right;
	width: 50%;
}


.modes_slider_pic img,
.locations_slider_pic img {
	width: 100%;
}

.modes_slider_title,
.locations_slider_title {
	position: absolute;
	left: 0;
	bottom: 220px;
	font-size: 40px;
}

.modes_slider_text,
.locations_slider_text {
	position: absolute;
	left: 50%;
	bottom: 70px;
	max-width: 500px;
}

.locations_slider_text {
	max-width: 750px;
}

.modes_slider_logo,
.locations_slider_logo {
	position: absolute;
	left: 90px;
	bottom: 70px;
	z-index: 2;
}

.modes_slider .slick-slide .container,
.locations_slider .slick-slide .container {
	position: relative;

}

.modes_slider .slick-prev,
.locations_slider .slick-prev {
	top: auto;
	left: 0;
	bottom: 70px;
	z-index: 3;
}

.modes_slider .slick-next,
.locations_slider .slick-next {
	top: auto;
	left: 180px;
	right: auto;
	bottom: 70px;
	z-index: 1;
}

.modes_slider .slick-prev, .modes_slider .slick-next,
.locations_slider .slick-prev, .locations_slider .slick-next {
	width: 112px;
	height: 112px;
	padding: 0;
	transform: none;
}

.modes_slider .slick-prev::before,
.locations_slider .slick-prev::before {
	content: '';
	display: block;
	width: 112px;
	height: 112px;
	background: url(./images/slider_arrow.png) center center no-repeat;
	background-size: contain;
	transition: .5s;
	transform: scale(-1, 1);
}

.modes_slider .slick-next::before,
.locations_slider .slick-next::before {
	content: '';
	display: block;
	width: 112px;
	height: 112px;
	background: url(./images/slider_arrow.png) center center no-repeat;
	background-size: contain;
	transition: .5s;
}

.slick-prev.slick-disabled::before, .slick-next.slick-disabled::before {
	opacity: .1;
}

.modes_slider .slick-dots,
.locations_slider .slick-dots {
	position: absolute;
	bottom: auto;
	display: inline-block;
	width: auto;
	left: calc(50% - 895px);
	top: 80px;
}

.modes_slider .slick-dots li button::before,
.locations_slider .slick-dots li button::before {
	opacity: 1;
	color: #fff;
}

.modes_slider .slick-dots li.slick-active button::before,
.locations_slider .slick-dots li.slick-active button::before {
	font-size: 12px;
}

.main_modes_buts {
	position: absolute;
	right: calc(50% - 895px);
	bottom: 60px;
	z-index: 2;
	width: 390px;
}

.main_modes_buts h2 {
	font-size: 20px;
	line-height: 26px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 400;
}


.main_modes_buts_cont > div {
	display: inline-block;
	width: 48px;
	margin-right: 12px;
}

.main_modes_buts_cont > div a {
	opacity: 0.5;
}

.main_modes_buts_cont > div a:hover {
	opacity: 1;
}

.main_modes_buts_cont > div img {
	width: 100%;
}





/* polublock */

.polublock {
	padding: 0 0px;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  overflow: hidden;
}

.polublock > div {
	display: grid;
}


.polublock img {
	width: 100%;
}

.spotlight_text {
	display: grid;
	text-align: center;
	align-items: center;
	color: #E2E1F7;
	padding: 20px 120px;

}


.with_spotlight {
	position: relative;
	text-align: center;
	overflow: hidden;
}

.with_spotlight h2, .with_spotlight p {
	position: relative;
	z-index: 1;
}

.with_spotlight h2 {
	margin-bottom: 30px;
}

.with_spotlight p {
	margin: 0;
}

.spotlight {
            position: absolute;
            width: 1500px;
            height: 1500px;
            border-radius: 50%;
			background: radial-gradient(circle,rgba(76, 63, 9, 1) 5%, rgba(13, 13, 13, 1) 70%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s;
            transform: translate(-50%, -50%);
			z-index: 0;
}

.with_spotlight:hover .spotlight {
    opacity: 1;
}

.main_maps .polublock > div:nth-child(1){
	grid-column-start: 2; grid-row-start: 1;
}

.main_maps .polublock > div:nth-child(2){
	grid-column-start: 1;
}






/* Hub */

.main_hub {
	position: relative;
	background: linear-gradient(301.6deg, #E045AC -30.71%, #230F65 101.01%);
	text-align: right;
}

.main_hub_bg {
	float: right;
	margin-right: 120px;
}

.main_hub_bg_mobile {
	display: none;
}

.main_hub_bg img {
	width: 100%;
	display: block;
}

.main_hub_top {
	position: absolute;
	top: 60px;
	left: calc(50% - 895px);
	max-width: 500px;
	text-align: left;
}

.main_hub_top h2 {
	font-size: 40px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0;
	margin-bottom: 15px;
}

.main_hub_top p {
	margin: 0;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 24px;
	opacity: .8;
}

.main_hub_bottom {
	position: absolute;
	bottom: 60px;
	left: calc(50% - 895px);
	max-width: 500px;
	text-align: left;
}

.main_hub_bottom h2 {
	font-size: 100px;
	line-height: 90px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0;
	margin-bottom: 20px;
}

.main_hub_bottom h3 {
	font-size: 48px;
	line-height: 48px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0;
}

.main_hub_but {
	position: absolute;
	right: calc(50% - 895px);
	bottom: 60px;
}

.main_hub_but:before {
	display: block;
	content: 'Explore';
	position: absolute;
	left: -135px;
	top: calc(50% - 15px);
	color: #fff;
	text-transform: none;
	font-size: 32px;
}



/* Wallpaper */

.main_wallpaper {
	position: relative;
}

.wallpaper_slider {

}

.wallpaper_slider .slick-slide {
	position: relative;
}

.wallpaper_slider .slick-slide img {
	width: 100%;
}

.download_wallpaper {
	position: absolute;
	top: 60px;
	right: calc(50% - 895px);
}

.download_wallpaper:before {
	display: block;
	content: 'Download wallpaper';
	position: absolute;
	left: -250px;
	top: calc(50% - 13px);
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
}

.wallpaper_slider .slick-prev {
	top: auto;
	left: auto;
	bottom: 70px;
	right: calc(50% - 785px);
	z-index: 1;
}

.wallpaper_slider .slick-next {
	top: auto;
	left: auto;
	right: calc(50% - 895px);
	bottom: 70px;
	z-index: 1;
}

.wallpaper_slider .slick-prev, .wallpaper_slider .slick-next {
	width: 100px;
	height: 100px;
	padding: 0;
	transform: none;
	border-radius: 50%;
	overflow: hidden;
	
}

.wallpaper_slider .slick-prev::before {
	content: '';
	display: block;
	width: 100px;
	height: 100px;
	opacity: 1;
	background: #f9c900 url(./images/btn_explore.png) center center no-repeat;
	background-size: 22px 16px;
	transition: .5s;
	transform: scale(-1, 1);
	
}

.wallpaper_slider .slick-next::before {
	content: '';
	display: block;
	width: 100px;
	height: 100px;
	opacity: 1;
	background: #f9c900 url(./images/btn_explore.png) center center no-repeat;
	background-size: 22px 16px;
	transition: .5s;
}

.wallpaper_slider .slick-prev:hover:before,
.wallpaper_slider .slick-next:hover:before {
	background: #fff url(./images/btn_explore.png) center center no-repeat;
}

.wallpaper_trailer {
	height: 20vw;
	overflow: hidden;
	z-index: 5;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.wallpaper_trailer > div {
	height: 100% !important;
}


.wallpaper_toggle {
  position: absolute;
  bottom: 70px;
  left: calc(50% - 230px);
  display: inline-block;
  width: 460px;
  height: 100px;
  z-index: 6;
}

.wallpaper_toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.wallpaper_toggle_slider {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  transition: all 0.4s ease;
  z-index: 1;
  width: 50%;
  text-align: center;
}

.text.off {
  left: 0;
  color: #fff;
}

.text.on {
  right: 0;
  color: #fff;
}

.knob {
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  background: rgba(255,255,255,0.4);
  border-radius: 50px;
  transition: all 0.4s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #666;
}


input:checked + .wallpaper_toggle_slider .knob {
  transform: translateX(100%); /* 120px - 60px - 4px*2 = 56px */
  color: #4CAF50;
}



/* Updates */

.main_updates {
	position: relative;
	text-align: right;
	overflow: hidden;
}

.main_updates_bg {
	float: right;
	margin-right: 300px;
	margin-top: 50px;
	z-index: 2;
	position: relative;
}

.main_updates_bg img {
	width: 100%;
	display: block;
}

.main_updates_overlay {
	position: absolute;
	bottom: -600px;
	right: -350px;
	width: 1400px;
	height: 1400px;
	z-index: 1;
	background: radial-gradient(circle,rgba(90, 90, 90, 1) 0%, rgba(13, 13, 13, 1) 50%);
}

.main_updates_top {
	position: absolute;
	top: 320px;
	left: calc(50% - 895px);
	max-width: 500px;
	text-align: left;
	z-index: 2;
}

.main_updates_top h2 {
	font-size: 48px;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0;
}

.main_updates_bottom p {
	margin: 0;
	font-size: 22px;
	line-height: 30px;
	opacity: .8;
}

.main_updates_bottom {
	position: absolute;
	bottom: 60px;
	left: calc(50% - 895px);
	max-width: 500px;
	text-align: left;
	z-index: 2;
}

.main_updates_but {
	position: absolute;
	right: calc(50% - 895px);
	bottom: 60px;
	z-index: 2;
}

.main_updates_but:before {
	display: block;
	content: 'Read';
	position: absolute;
	left: -100px;
	top: calc(50% - 15px);
	color: #fff;
	text-transform: none;
	font-size: 32px;
}


/* Care & Support */

.main_care {
	position: relative;
	text-align: left;
	overflow: hidden;
}

.main_care_bg {
	margin-left: 150px;
	margin-top: 50px;
	z-index: 2;
	position: relative;
	width: 780px;
}

.main_care_bg img {
	width: 100%;
	display: block;
}

.main_care_overlay {
	position: absolute;
	bottom: -700px;
	left: calc(50% - 400px);
	width: 1400px;
	height: 1400px;
	z-index: 1;
	background: radial-gradient(circle,rgba(198, 2, 205, 1) 0%, rgba(13, 13, 13, 1) 50%);
	opacity: .4;
}

.main_care_head {
	position: absolute;
	top: 200px;
	left: calc(50% - 895px);
	max-width: 300px;
	text-align: left;
	z-index: 2;
}

.main_care_head h2 {
	font-size: 48px;
	line-height: 48px;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0;
}

.main_care_text {
	font-size: 22px;
	line-height: 30px;
	opacity: .8;
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 640px;
	text-align: left;
	z-index: 2;
	transform: translateY(-100%);
}


.main_care_contact {
	position: absolute;
	left: 20%;
	bottom: 0px;
	z-index: 2;
	border-top: 1px solid rgba(255,255,255,0.3);
	padding: 50px 0;
	width: 80%;
	z-index: 1;
	text-align: center;
	background: radial-gradient(circle,rgba(249, 201, 0, .3) 0%, rgba(0, 0, 0, 0) 50%);
}

.main_care_contact:after {
	display: block;
	content: '';
	position: absolute;
	right: 80px;
	top: -85px;
	background: url(./images/care_contact_pic.png) center center no-repeat;
	background-size: contain;
	width: 430px;
	height: 219px;
}

.main_care_contact a.mybut {
	width: 280px;
	border-radius: 50px;
	font-weight: 400;
	text-transform: none;
	font-size: 26px;
}

.main_care_contact a.mybut:hover {
	color: #000;
}



/* Politics */


.politics {
	color: #fff;
	margin-top: 40px;
	position: relative;
	z-index: 1;
	margin-bottom: 50px;
}

.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;
	line-height: 48px;
	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 {
	margin: 0 auto;
	margin-top: 110px;
	width: 190px;
}

.back_link  a:before {
	display: block;
	content: 'Back';
	position: absolute;
	right: -80px;
	top: calc(50% - 12px);
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
}

.back_link a span {
	transform: scaleX(-1);
}





.footer {
	clear: both;
	background: #f9c900;
	color: #000;
	padding: 50px 0;
	font-size: 18px;
}

.footer_join {
	float: left;
	
}

.footer_join h2 {
	font-size: 48px;
	line-height: 48px;
	font-weight: 300;
	text-transform: uppercase;
	margin: 0;
	margin-bottom: 40px;
}

.footer_social {
	float: left;
	width: 320px;
}

.footer_social > div {
	display: inline-block;
	margin-right: 24px;
}

.footer_social > div:last-of-type {
	margin: 0;
}

.footer_social  a {
	display: inline-block;
}

.footer_social  a:hover {
	filter: brightness(0);
	transform: translateY(-2px);
}

.footer_menu {
	float: right;
}

.footer_menu > div {
	float: left;
	width: 250px;
	margin-left: 120px;
}

.footer_menu > div > div {
	padding: 3px 0;
}

.footer_menu a {
	text-transform: uppercase;
}


.footer_copyright {
	margin-top: 100px;
}


/* Partnership */

.partnership_top_text {
	position: absolute;
	z-index: 3;
	bottom: 140px;
	left: 0;
	width: 100%;
	text-align: center;
}

.partnership_top_text > div {
	max-width: 900px;
	margin: 0 auto;
	color: #fff;
	font-size: 28px;
	line-height: 40px;
	text-shadow: #000 1px 0 10px;
	font-weight: bold;
}

.partnership_top_text > div h1 {
	font-weight: bold;
	font-size: 50px;
}


.partnership_top_but {
	position: absolute;
	bottom: 40px;
	left: calc(50% - 190px);
	z-index: 3;
}

.partnership_top_but a {
	color: #666;
	font-size: 30px;
	line-height: 30px;
	font-weight: 600;
	padding: 20px 90px;
	display: inline-block;
	background: linear-gradient(90deg, rgba(255,209,58,1) 0%, rgba(255,178,0,1) 100%);
	position: relative;
	
}

.partnership_top_but a:after {
	content: '';
	display: block;
	position: absolute;
	left: -5px;
	top: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	background: #fadb75;
	z-index: -1;
	transition: .3s;
	opacity: 0;
}

.partnership_top_but a:hover:after, .partnership_top_but a:focus:after {
	opacity: 1;
}

.creator_or_partner {
	text-align: center;
	color: #fff;
	padding-top: 90px;
	padding-bottom: 40px;
}

.creator_or_partner h2 {
	text-align: center;
	text-transform: uppercase;
	font-family: 'Retro Gaming';
	font-size: 74px;
	line-height: 94px;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
}

.creator_or_partner h2 span {
	color: #FFC400;
}

.creator_or_partner p {
	font-size: 28px;
	line-height: 50px;
	font-weight: 500;
	max-width: 1200px;
	display: block;
	margin: 0 auto;
}

.creator_or_partner_block {
	margin-top: 60px;
}

.creator_or_partner_block_left {
	float: left;
	width: 50%;
	text-align: left;
	padding-right: 50px;
}

.creator_or_partner_block_right {
	float: right;
	width: 50%;
	text-align: left;
	padding-left: 50px;
}

.creator_or_partner_block h3 {
	color: #FFC400;
	font-size: 44px;
	line-height: 60px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	margin-bottom: 40px;
	border-bottom: 2px solid #fff;
	display: inline-block;
}

.creator_or_partner_block p {
	margin-bottom: 20px;
}

.join_steps {
	padding-top: 90px;
	padding-bottom: 60px;
}

.join_steps h2 {
	text-align: center;
	text-transform: uppercase;
	font-family: 'Retro Gaming';
	font-size: 74px;
	line-height: 94px;
	margin: 0;
	padding: 0;
	margin-bottom: 50px;
	text-align: center;
	color: #fff;
}

.join_steps h2 span {
	color: #FFC400;
}

.join_step {
	padding: 40px 0;
}

.join_step > div:nth-child(1) {
	text-transform: uppercase;
	font-family: 'Retro Gaming';
	color: #fff;
	font-size: 44px;
	margin-bottom: 25px;
}

.join_step > div:nth-child(1) span {
	color: #FFC400;
}

.join_step > div:nth-child(2) {
	font-size: 28px;
	line-height: 50px;
	font-weight: 500;
	color: #fff;
}

.join_step_but {
	text-align: center;
	margin-top: 30px;
	position: relative;
	z-index: 3;
}

.join_step_but a {
	color: #666;
	font-size: 30px;
	line-height: 30px;
	font-weight: 600;
	padding: 20px 90px;
	display: inline-block;
	background: linear-gradient(90deg, rgba(255,209,58,1) 0%, rgba(255,178,0,1) 100%);
	position: relative;
	
}

.join_step_but a:after {
	content: '';
	display: block;
	position: absolute;
	left: -5px;
	top: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	background: #fadb75;
	z-index: -1;
	transition: .3s;
	opacity: 0;
}

.join_step_but a:hover:after, .join_step_but a:focus:after {
	opacity: 1;
}

.partnership_pixel {
	padding-top: 60px;
	padding-bottom: 40px;
	color: #fff;
}

.partnership_head {
	text-align: center;
	text-transform: uppercase;
	font-family: 'Retro Gaming';
	font-size: 60px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	margin-bottom: 50px;
	position: relative;
	padding-bottom: 30px;
}

.partnership_head:after {
	content: '';
	display: block;
	height: 7px;
	width: 220px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 110px);
	background: #fff;
}

.partnership_pixel h3 {
	color: #FFC400;
	font-size: 44px;
	line-height: 60px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
	text-align: center;
}

.partnership_pixel_block {
	color: #fff;
	font-size: 28px;
	line-height: 50px;
	font-weight: 600;
	padding-left: 40px;
	position: relative;
	margin: 40px 0;
}

.partnership_pixel_block:before {
	content: '';
	display: block;
	position: absolute;
	top: 17px;
	left: 0;
	width: 15px;
	height: 15px;
	background: #FFC400;
	border-radius: 50%;
}

.partnership_creator {
	padding-top: 60px;
	padding-bottom: 40px;
	color: #fff;
	font-size: 24px;
	line-height: 38px;
}

.partnership_creator h3 {
	color: #FFC400;
	font-size: 44px;
	line-height: 60px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
}


.partnership_creator_li {
	font-weight: 500;
	padding-left: 50px;
	position: relative;
	margin: 20px 0;
}

.partnership_creator_li:before {
	content: '';
	display: block;
	position: absolute;
	top: 12px;
	left: 20px;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
}

.partnership_creator_sub_li {
	padding-left: 90px;
	position: relative;
	margin: 20px 0;
}

.partnership_creator_sub_li:before {
	content: '';
	display: block;
	position: absolute;
	top: 17px;
	left: 65px;
	width: 14px;
	height: 4px;
	background: #fff;
}

.partnership_creator_li a {
	color: #FFC400;
}

.partnership_creator_li a:hover {
	color: #fcd659;
}

.partnership_partners {
	padding-top: 60px;
	padding-bottom: 40px;
	color: #fff;
	font-size: 24px;
	line-height: 38px;
}

.partnership_partners h3 {
	color: #FFC400;
	font-size: 44px;
	line-height: 60px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
}

.partnership_form {
	width: 760px;
	margin: 0 auto;
	margin-bottom: 60px;
}

#partnership_form {
	width: 100%;
	color: #fff;
}

#partnership_form > div {
	margin: 40px 0;
}

#partnership_form > div label {
	display: block;
	font-weight: bold;
}

#partnership_form > div span {
	font-weight: 300;
	font-style: italic;
	color: #ccc;
	font-size: 15px;
	margin-top: 10px;
	display: block;
}

#partnership_form > div input[type=text] {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	background: transparent;
	padding: 20px 0;
}

#partnership_form .form_submit {
	text-align: center;
	margin-top: 50px;
}


#partnership_form .form_submit input {
	color: #000;
	font-size: 30px;
	line-height: 30px;
	font-weight: 600;
	padding: 20px 90px;
	display: inline-block;
	background: linear-gradient(90deg, rgba(255,209,58,1) 0%, rgba(255,178,0,1) 100%);
	cursor: pointer;
	transition: .5s;
	border: 0;
}

#partnership_form .form_submit input:hover {
	filter: brightness(1.1);
}

.partnership_form_hint {
	color: #fff;
	margin-top: 50px;
}

.partnership_form_hint a {
	color: #FFC400;
}

.partnership_form_hint a:hover {
	color: #fcd659;
}

.main_block_menu a {
	color: #666;
}



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

@media screen and (max-width: 1920px) {
	
.menu-content {
	margin-top: 40px;
}

.menu-content li {
	margin: 5px 0;
}

.menu-trailer {
	bottom: 50px;
}

.menu-active {
	top: calc(50% - 100px);
	font-size: 100px;
}



}


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

}

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

.main_top_block {
	height: calc(100vh - 140px);
}

.menu-active {
	top: calc(50% - 50px);
	font-size: 80px;
}

.main_tabs_column {
	padding: 10px;
	font-size: 18px;
}

.main_tabs_column h3 {
	font-size: 18px;
}

.main_tabs_column span {
	margin: 0 1px;
	border-radius: 15px;
	padding: 2px 7px;
}

body {
	font-size: 20px;
	line-height: 28px;
}

.main_modes_buts {
	right: auto;
	left: calc(50% - 300px);
	bottom: 0px;
	width: 690px;
}

.main_modes {
	padding-bottom: 50px;
	margin-bottom: 60px;
}

.main_modes_buts h2 {
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0;
	display: block;
	float: left;
	width: 300px;
	text-align: right;
	padding-right: 40px;
	margin: 0;
}

.main_modes_buts_cont {
	float: left;
	width: 390px;
}

.modes_slider_text, .locations_slider_text {
	max-width: 100%;
	bottom: 90px;
}

.modes_slider .slick-dots, .locations_slider .slick-dots {
	left: 40px;
	top: 60px;
}

.main_hub_top {
	top: 50px;
	left: 50px;
}

.main_hub_bottom {
	bottom: 50px;
	left: 50px;
}

.main_hub_but {
	right: 50px;
	bottom: 50px;
}

.main_hub_bg img {
	width: 50vw;
}

.main_locations {
	position: relative;
	margin-top: 180px;
}

.download_wallpaper {
	top: 50px;
	right: 50px;
}

.wallpaper_slider .slick-next {
	right: 50px;
	bottom: 50px;
}

.wallpaper_slider .slick-prev {
	bottom: 50px;
	right: 160px;
}

.main_updates_top {
	position: absolute;
	top: 250px;
	left: 50px;
}

.main_updates_bottom {
	bottom: 50px;
	left: 50px;
	max-width: 500px;
}

.main_updates_but {
	right: 50px;
	bottom: 50px;
}

.main_updates_bg img {
	width: 50vw;
}

.main_care_head {
	top: 180px;
	left: 50px;
	max-width: 300px;
}

.main_care_bg {
	margin-left: 100px;
	margin-top: 50px;
	width: 740px;
}

.main_top_discord {
	right: 50px;
}

.main_top_bottom_logo {
	width: 120px;
	padding: 15px;
}

.main_top_bottom_name h1, .main_top_bottom_name h3 {
	font-size: 32px;
	line-height: 32px;
	margin-bottom: 5px;
}

.main_top_bottom_name h2 {
	font-size: 16px;
}

.main_top_bottom_name {
	padding-top: 30px;
	padding-left: 40px;
}

.mybut {
	width: 65px;
	height: 65px;
}

.mybut span {
	width: 24px;
	height: 24px;
}

.main_top_bottom_download {
	top: 28px;
}

.main_top_bottom_download::before {
	left: -110px;
	top: calc(50% - 14px);
	font-size: 16px;
}

.main_top_bottom_steam::before {
	left: -125px;
	top: calc(50% - 14px);
	font-size: 16px;
}

.back_link {
	width: 140px;
}

.back_link a::before {
	right: -70px;
}


}


/* ---------------------------------------------------1400------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 1400px) {
	
.modes_slider_pic {
	height: 600px;
	overflow: hidden;
}

.locations_slider_pic {
	height: 600px;
	overflow: hidden;
}

.modes_slider_pic img,
.locations_slider_pic img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.modes_slider_title, .locations_slider_title {
	bottom: 180px;
	font-size: 30px;
}

.modes_slider_logo, .locations_slider_logo {
	left: 55px;
	bottom: 70px;
	width: 65px;
	height: 65px;
}

.modes_slider .slick-next, .locations_slider .slick-next {
	left: 100px;
}

.modes_slider .slick-prev, .modes_slider .slick-next, .locations_slider .slick-prev, .locations_slider .slick-next {
	width: 65px;
	height: 65px;
}

.modes_slider .slick-prev::before, .locations_slider .slick-prev::before {
	width: 65px;
	height: 65px;
}

.modes_slider .slick-next::before, .locations_slider .slick-next::before {
	width: 65px;
	height: 65px;
}
	
.container {
	width: calc(100% - 80px);
}

.header_logo {
	width: 60px;
}

.header {
	height: 90px;
}

.header_hub {
	margin-right: 220px;
	margin-top: 30px;
}



.download_wallpaper::before {
	left: -200px;
	top: calc(50% - 14px);
	font-size: 16px;
}

.main_top_bottom_arrow {
	top: calc(50% - 4px);
	left: calc(50% - 8px);
	width: 16px;
	height: 8px;
}


.menu-active {
	top: calc(50% - 40px);
	font-size: 60px;
}

body {
	font-size: 18px;
	line-height: 26px;
}

.main_hub_top h2 {
	font-size: 36px;
	margin-bottom: 12px;
}

.main_hub_top p {
	font-size: 18px;
	line-height: 22px;
}

.main_hub_bottom h2 {
	font-size: 80px;
	line-height: 70px;
	margin-bottom: 15px;
}

.main_hub_bottom h3 {
	font-size: 34px;
	line-height: 34px;
}

.main_locations {
	margin-top: 120px;
}


.wallpaper_slider .slick-next {
	right: 40px;
	bottom: 40px;
}

.wallpaper_slider .slick-prev {
	bottom: 40px;
	right: 115px;
}

.wallpaper_slider .slick-prev, .wallpaper_slider .slick-next {
	width: 65px;
	height: 65px;
}

.wallpaper_slider .slick-prev::before,
.wallpaper_slider .slick-next::before,
.wallpaper_slider .slick-prev:hover::before,
.wallpaper_slider .slick-next:hover::before {
	width: 65px;
	height: 65px;
}


.download_wallpaper {
	top: 40px;
	right: 40px;
}

.main_updates_top {
	top: 200px;
	left: 40px;
}

.main_updates_bottom {
	bottom: 40px;
	left: 40px;
}

.main_updates_but {
	right: 40px;
	bottom: 40px;
}

.main_care_head {
	top: 140px;
	left: 40px;
	max-width: 250px;
}

.main_care_head h2 {
	font-size: 40px;
	line-height: 40px;
}

.main_care_bg {
	margin-left: 90px;
	margin-top: 40px;
	width: 640px;
}

.main_care_text {
	font-size: 16px;
	line-height: 24px;
	max-width: 45%;
}

.main_care_contact {
	padding: 30px 0;
}

.main_care_contact a.mybut {
	width: 220px;
	border-radius: 40px;
	font-size: 24px;
}

.main_care_contact::after {
	right: 80px;
	top: -45px;
	width: 230px;
	height: 117px;
}

.main_top_bottom_steam {
	top: 28px;
}

.main_top_discord {
	right: 40px;
}


}

/* ---------------------------------------------------1280------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1280px) {
	
.modes_slider .slick-dots, .locations_slider .slick-dots {
	left: 30px;
	top: 40px;
}
	
.main_modes_head h2, .main_locations_head h2 {
	font-size: 42px;
}

.main_modes_head_head, .main_locations_head_head {
	max-width: 420px;
}
	
.main_top_block {

}

.main_top_bg {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
}

.container {
	width: calc(100% - 60px);
}

.menu-active {
	top: calc(50% - 30px);
	font-size: 40px;
}

.main_tabs_column {
	font-size: 16px;
}

.main_tabs_column h3 {
	font-size: 17px;
}

.main_tabs_column span {
	margin: 0 0px;
	border-radius: 15px;
	padding: 1px 4px;
	line-height: 18px;
}

.main_tabs_cont {
	margin-top: 35px;
	margin-bottom: 90px;
}

body {
	font-size: 17px;
	line-height: 24px;
}

.main_locations {
	margin-top: 100px;
}

.main_care_bg {
	margin-left: 120px;
	margin-top: 60px;
	width: 450px;
}

.footer {
	padding: 40px 0;
}

.footer_join h2 {
	font-size: 40px;
	line-height: 40px;
	margin-bottom: 25px;
}

.footer_menu > div {
	width: 210px;
	margin-left: 30px;
}

.footer_copyright {
	margin-top: 50px;
}

.creator_or_partner h2 {
	font-size: 56px;
    line-height: 70px;
}

.partnership_head {
	font-size: 50px;
	line-height: 60px;
	margin-bottom: 40px;
	padding-bottom: 20px;
}

.creator_or_partner p {
	font-size: 22px;
	line-height: 36px;
	max-width: 100%;
}

.partnership_pixel_block {
	font-size: 22px;
	line-height: 36px;
	font-weight: 600;
	margin: 40px 0;
}

.partnership_creator {
	font-size: 20px;
	line-height: 34px;
}

.partnership_partners {
	font-size: 20px;
	line-height: 34px;
}

.join_steps h2 {
	font-size: 56px;
    line-height: 70px;
}

.partnership_creator h3,
.partnership_partners h3 {
	font-size: 38px;
	line-height: 48px;
}

.creator_or_partner_block h3 {
	font-size: 38px;
	line-height: 48px;
}

.join_step > div:nth-child(1) {
	font-size: 36px;
}

.join_step > div:nth-child(2) {
	font-size: 22px;
	line-height: 36px;
}

}

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

	
.main_modes_head h2, .main_locations_head h2 {
	font-size: 40px;
	line-height: 40px;
}

.block_head {
	font-size: 28px;
	line-height: 32px;
	letter-spacing: 1px;
}

.with_spotlight h2 {
	margin-bottom: 20px;
}

.main_modes_head_head, .main_locations_head_head {
	max-width: 50%;
}
	
.menu-content a {
	font-size: 18px;
}

.menu-active {
	top: calc(50% - 20px);
	font-size: 30px;
}
	
body {
	font-size: 16px;
	line-height: 24px;
}

.main_tabs_column h3 {
	margin-bottom: 5px;
}

.main_tabs_column span {
	padding: 1px 3px;
	line-height: 18px;
	font-size: 14px;
}

.main_hub_bg img {
	width: 55vw;
}

.main_hub_bg {
	margin-right: 60px;
}

.main_hub_top {
	top: 30px;
	left: 30px;
}

.main_hub_top h2 {
	font-size: 32px;
	line-height: 32px;
	margin-bottom: 12px;
}

.main_hub_top p {
	font-size: 16px;
	line-height: 20px;
}

.main_hub_bottom {
	bottom: 30px;
	left: 30px;
}

.main_hub_bottom h2 {
	font-size: 64px;
	line-height: 58px;
}

.main_hub_bottom h3 {
	font-size: 24px;
	line-height: 24px;
}

.main_hub_but {
	right: 30px;
	bottom: 30px;
}

.main_hub_but::before {
	left: -100px;
	top: calc(50% - 12px);
	font-size: 24px;
}

.main_locations {
	margin-top: 100px;
}

.wallpaper_toggle {
	bottom: 50px;
	left: calc(50% - 180px);
	width: 360px;
	height: 65px;
}

.wallpaper_toggle_slider {
	border-radius: 40px;
}

.text {
	font-size: 16px;
	letter-spacing: 0px;
}

.download_wallpaper {
	top: 30px;
	right: 30px;
}

.wallpaper_slider .slick-next {
	right: 30px;
	bottom: 30px;
}

.wallpaper_slider .slick-prev {
	bottom: 30px;
	right: 105px;
}

.main_updates_top {
	top: 150px;
	left: 30px;
}

.main_updates_bottom {
	bottom: 30px;
	left: 30px;
}

.main_updates_but {
	right: 30px;
	bottom: 30px;
}

.main_updates_bg {
	margin-right: 200px;
	margin-top: 40px;
}

.main_updates_but::before {
	left: -80px;
	top: calc(50% - 12px);
	font-size: 24px;
}

.main_updates_top h2 {
	font-size: 40px;
}

.main_updates_bottom p {
	font-size: 16px;
	line-height: 20px;
}

.main_updates_overlay {
	bottom: -600px;
	right: -350px;
	width: 1100px;
	height: 1100px;
}

.footer_subscribe a {
	font-size: 18px;
	padding: 12px 25px;
}

.footer_join h2 {
	font-size: 36px;
	line-height: 36px;
	margin-bottom: 25px;
}

.footer_social {
	margin-top: 12px;
	margin-left: 10px;
}

.footer_menu > div {
	margin-left: 0px;
}

.main_top_discord {
	right: 30px;
}


	.partnership_top_text > div h1 {
	font-size: 36px;
}

.partnership_top_text > div {
	font-size: 20px;
	line-height: 30px;
	padding: 0 40px;
}
	
}

/* ---------------------------------------------------900------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
	
	.main_top_block {
	height: 460px;
}
	
.main_top_bottom_name {
	padding: 0;
	position: absolute;
	top: -260px;
	left: 25px;
	z-index: 2;
	text-shadow: 1px 1px 2px black;
}

.main_top_bottom2 .main_top_bottom_name {
	
	text-shadow: none;
}

.main_top_bottom2 .main_top_bottom_name h1, .main_top_bottom2 .main_top_bottom_name h3 {
	color: #000;
}

.main_top_bottom2 .main_top_bottom_name h2 {
	color: #000;
}
	
	.main_top_bottom_name h1, .main_top_bottom_name h3 {
	font-size: 28px;
	line-height: 28px;
}
	
	.main_top_bottom_logo {
	width: 100px;
	padding: 17px;
}
	
	.header_logo {
	width: 44px;
}

.header {
	height: 70px;
}

.menu-toggle::before {
	display: none;
}

.header_hub {
	margin-right: 80px;
	margin-top: 22px;
	width: 24px;
	height: 24px;
	overflow: hidden;
}

.header_hub a {
	background-position: top left;
}

.menu-toggle {
	top: 25px;

}
	

.main_top_bottom_arrow {
	display: none;
}

#float_play_btn {
	display: none !important;
}

.container {
	width: calc(100% - 50px);
}

.mybut {
	width: 48px;
	height: 48px;
}

.mybut span {
	width: 20px;
	height: 20px;
}

.main_top_bottom_download {
	top: 28px;
}

.main_top_bottom_download::before {
	left: -90px;
	top: calc(50% - 15px);
	font-size: 14px;
}

.menu-active {
	display: none;
}

.menu-content {
	margin-top: 20px;
}

.menu-trailer h2 {
	display: block;
	float: left;
	font-size: 18px;
	margin: 0;
	margin-top: 44px;
	margin-right: 50px;
}

.menu-trailer a {
	width: 114px;
	height: 114px;
	border-radius: 50%;
	overflow: hidden;
	display: block;
	float: left;
	border: 1px solid #666;
}

.menu-trailer a img {
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.menu-content a {
	font-size: 18px;
	line-height: 26px;
	display: block;
}

.main_tabs_cont {
	display: block;
	margin-top: 0;
	margin-bottom: 60px;
}

.main_tabs_column:not(:last-child)::after {
	display: none;
}

.main_tabs_column {
	min-width: auto;
	padding: 20px 0;
	text-align: left;
	border-bottom: 1px solid #666;
	height: 65px;
}

.main_tabs_column h3 {
	margin: 0;
	float: left;
	width: 120px;
	text-align: left;
}

.main_tabs_column p {
	float: left;
	width: calc(100% - 120px);
	text-align: right;
}

.main_modes_head_head, .main_locations_head_head {
	max-width: 100%;
	float: none;
}

.main_modes_head_text, .main_locations_head_text {
	float: none;
	width: 100%;
}

.main_modes_head {
	margin-bottom: 20px;
}

.main_modes_head h2, .main_locations_head h2 {
	font-size: 22px;
	line-height: 26px;
	margin-bottom: 15px;
}

.block_head {
	font-size: 22px;
	line-height: 24px;
	letter-spacing: 1px;
}

.modes_slider .slick-dots, .locations_slider .slick-dots {
	left: 25px;
	top: 30px;
}

.polublock {
	display: block;
}

.polublock > div {
	display: block;
}

.polublock img {
	display: block;
}

.spotlight_text {
	display: block;
	padding: 100px 20px;
}

.main_hub_top {
	top: 25px;
	left: 25px;
	width: 185px;
}

.main_hub_top h2 {
	font-size: 22px;
	line-height: 20px;
	margin-bottom: 10px;
}

.main_hub_top p {
	font-size: 14px;
	line-height: 18px;
}

.main_hub_bottom {
	bottom: 25px;
	left: 25px;
}

.main_hub_bottom h2 {
	font-size: 36px;
	line-height: 32px;
}

.main_hub_bottom h3 {
	font-size: 16px;
	line-height: 16px;
}

.main_hub_but {
	right: 25px;
	bottom: 25px;
}

.main_hub_but::before {
	display: none;
}

.wallpaper_slider .slick-prev, .wallpaper_slider .slick-next {
	width: 48px;
	height: 48px;
}

.wallpaper_slider .slick-prev {
	bottom: 30px;
	right: 85px;
}

.wallpaper_slider .slick-next {
	right: 25px;
	bottom: 30px;
}

.download_wallpaper {
	top: 30px;
	right: 25px;
}

.download_wallpaper::before {
	left: -180px;
	top: calc(50% - 13px);
	font-size: 14px;
}

.wallpaper_slider .slick-prev::before,
.wallpaper_slider .slick-next::before,
.wallpaper_slider .slick-prev:hover::before,
.wallpaper_slider .slick-next:hover::before {
	width: 48px;
	height: 48px;
	background-size: 12px 9px;
}

.main_care_head {
	top: 40px;
	left: 25px;
	max-width: 250px;
}

.main_care_head h2 {
	font-size: 22px;
	line-height: 22px;
}

.main_updates_top h2 {
	font-size: 22px;
}

.main_care_text {
	top: 80px;
	left: 25px;
	max-width: 200px;
	transform: none;
}

.main_care_contact::after {
	display: none;
}

.main_care_contact {
	left: 0;
	padding: 25px 0;
	width: 100%;
	text-align: left;
	padding-left: 25px;
}

.main_care_contact a.mybut {
	width: 170px;
	font-size: 20px;
}

.main_care_bg {
	margin-left: 150px;
	margin-top: 30px;
	width: 500px;
}

.main_top_bottom_steam {
	top: 28px;
}

.footer_menu {
	display: none;
}

.main_top_discord {
	top: 100px;
}

.back_link {
	width: 110px;
}

.back_link a::before {
	right: -60px;
}

.partnership_form {
	width: 100%;
	padding: 0 20px;
}
	
	.join_steps {
	padding-top: 50px;
	padding-bottom: 20px;
}
	
	.creator_or_partner {
	padding-top: 50px;
	padding-bottom: 20px;
}

.creator_or_partner p {
	font-size: 20px;
	line-height: 30px;
}

.partnership_pixel_block {
	font-size: 20px;
	line-height: 30px;
	margin: 30px 0;
	padding-left: 30px;
}

.partnership_pixel_block::before {
	top: 10px;
	width: 12px;
	height: 12px;
}
	
	.creator_or_partner_block {
	margin-top: 40px;
}
	
	.creator_or_partner_block_left {
	padding-right: 20px;
}

.creator_or_partner_block_right {
	padding-left: 20px;
}
	
	.creator_or_partner_block h3 {
	font-size: 32px;
	line-height: 44px;
}

.partnership_creator h3,
.partnership_partners h3 {
	font-size: 32px;
	line-height: 44px;
}
	
	.creator_or_partner h2 {
	font-size: 46px;
	line-height: 58px;
}

.partnership_head {
	font-size: 46px;
	line-height: 58px;
}

.partnership_head {
	font-size: 42px;
	line-height: 56px;
	margin-bottom: 30px;
}

.join_steps h2 {
	font-size: 46px;
	line-height: 58px;
}

.join_step > div:nth-child(1) {
	font-size: 28px;
	margin-bottom: 20px;
}

.join_step > div:nth-child(2) {
	font-size: 20px;
	line-height: 30px;
}

}

/* ---------------------------------------------------700------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 700px) {
	
	.main_top_discord {
	top: 90px;
	right: 25px;
	width: 70px;
}


.modes_slider_pic {
	height: 420px;
}

.locations_slider_pic {
	height: 420px;
}

.modes_slider_title {
	bottom: 180px;
	font-size: 24px;
	text-shadow: 1px 1px 2px black;
}

.locations_slider_title {
	bottom: 230px;
	font-size: 24px;
	text-shadow: 1px 1px 2px black;
}

.modes_slider_text, .locations_slider_text {
	max-width: 100%;
	bottom: 70px;
	left: 0;
	text-shadow: 1px 1px 2px black;
}

.modes_slider_logo, .locations_slider_logo {
	left: 40px;
	bottom: 0px;
	width: 48px;
	height: 48px;
}

.modes_slider .slick-prev, .locations_slider .slick-prev {
	bottom: 0px;
}

.modes_slider .slick-next, .locations_slider .slick-next {
	left: 80px;
	bottom: 0px;
}

.modes_slider .slick-prev, .modes_slider .slick-next, .locations_slider .slick-prev, .locations_slider .slick-next {
	width: 48px;
	height: 48px;
}

.modes_slider .slick-prev::before, .locations_slider .slick-prev::before {
	width: 48px;
	height: 48px;
}

.modes_slider .slick-next::before, .locations_slider .slick-next::before {
	width: 48px;
	height: 48px;
}

.main_modes_buts {
	position: relative;
	top: auto;
	bottom: auto;
	left: auto;
	width: 100%;
}

.main_modes_buts h2 {
	font-size: 16px;
	line-height: 20px;
	float: none;
	width: 100%;
	text-align: center;
	padding-right: 0px;
	margin: 0;
}

.main_modes_buts_cont {
	float: none;
	width: 100%;
	text-align: center;
	margin-top: 15px;
}

.main_modes_buts_cont > div {
	margin-right: 12px;
	margin: 0 5px;
}

.main_modes {
	padding-bottom: 0px;

}

.main_hub_bg {
	overflow: hidden;
	height: 500px;
	margin: 0;
}

.main_hub_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main_hub {
	text-shadow: 1px 1px 2px black;
}

.main_locations {
	margin-top: 60px;
}

.main_locations_head {
	margin-bottom: 20px;
}

.slick-dots li {
	margin: 0 2px;
}

.download_wallpaper::before {
	display: none;
}

.download_wallpaper {
	top: auto;
	right: auto;
	left: 25px;
	bottom: 30px;
}

.wallpaper_slider .slick-slide {
	height: 500px;
}

.wallpaper_slider .slick-slide > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wallpaper_toggle {
	bottom: auto;
	top: 25px;
	left: calc(50% - 140px);
	width: 280px;
	height: 48px;
	line-height: 0;
}

.text {
	font-size: 14px;
}

.main_updates_bg {
	overflow: hidden;
	height: 370px;
	margin: 0;
}

.main_updates_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main_updates_top {
	top: 60px;
	left: 25px;
}

.main_updates_top h2 {
	font-size: 22px;
}

.main_updates_bottom {
	left: 25px;
}

.main_updates {
	text-shadow: 1px 1px 2px black;
}

.main_updates_bottom p {
	width: 200px;
}

.main_updates_but {
	right: 25px;
}

.main_updates_but::before {
	display: none;
}

.main_updates_overlay {
	bottom: -400px;
	right: -350px;
	width: 800px;
	height: 800px;
}

.main_top_bottom2 .main_top_bottom_name {
	top: -330px;
}
	
}

/* ---------------------------------------------------480------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
	
.main_hub_bg {
	display: none;
}

.main_hub_bg_mobile {
	display: block;
	float: right;
	margin-right: 0px;
}

.main_hub_bg_mobile img {
	display: block;
}


.menu-content a {
	font-size: 22px;
	line-height: 32px;
}	

.menu-content {
	margin-top: 30px;
}

.footer_subscribe {
	display: none;
}

.footer_social {
	margin: 0;
}

.footer_copyright {
	margin-top: 40px;
	font-size: 16px;
}

.footer_social > div {
	margin-right: 12px;
}

.footer_social > div:last-of-type {
	margin: 0;
}

.main_top_bottom_steam a::before {
	left: -115px;
	font-size: 15px;
}

.join_steps h2 {
	margin-bottom: 20px;
}
	
	.partnership_head {
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 30px;
}

.partnership_head::after {
	height: 5px;
	width: 140px;
	left: calc(50% - 70px);
	background: #fff;
	}
	
	.creator_or_partner p {
	font-size: 18px;
	line-height: 30px;
}

.partnership_partners {
	font-size: 18px;
	line-height: 30px;
}

.partnership_creator_li {
	padding-left: 40px;
	margin: 15px 0;
}

.partnership_creator_li:before {
	left: 15px;
}

.partnership_pixel_block {
	font-size: 18px;
	line-height: 30px;
}

.partnership_creator {
	font-size: 18px;
	line-height: 30px;
}

.partnership_creator h3,
.partnership_partners h3 {
	font-size: 28px;
	line-height: 40px;
}
	
	.creator_or_partner_block {
	margin-top: 40px;
	float: none !important;
	padding: 0 0 !important;
	width: 100% !important;
	}
	
	.main_top_block.partnership_top_block {
	height: 600px;
	margin-bottom: 20px;
}
	
	.partnership_top_text {
	bottom: auto;
	top: 100px;
}

.partnership_top_text > div h1 {
	font-size: 35px;
	line-height: 45px;
}

.partnership_top_text > div {
	font-size: 18px;
	line-height: 28px;
}

.partnership_top_but {
	bottom: 0px;
	left: calc(50% - 100px);
	text-align: left;
}

.join_step_but {
	
}

.partnership_top_but a,
.join_step_but a,
#partnership_form .form_submit input {
	font-size: 24px;
	padding: 20px 20px;
}

}

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

}

/* Menu correct height*/

@media screen and (max-height: 900px) {

	.menu-trailer {
	bottom: 40px;
	width: 320px;
}

.menu-content li {
	margin: 3px 0;
}

}

@media screen and (max-height: 800px) {

	.menu-trailer {
	bottom: 20px;
}

.menu-content li {
	margin: 1px 0;
}

}