@charset "utf-8";
@import '../../../../fonts/wf/Quantico/font.css';
@import '../../../../fonts/wf/Plumb/font.css';

* {
  box-sizing: border-box;
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  background: #090c12;
  color: #fff;
  font: 16px/1.4 Plumb, Arial, Helvetica, sans-serif;
  text-align: center;
}
a {
  color: #fff;
}
.ovl-opened main,
.ovl-opened .top-bar  {
  overflow-y: scroll;
}


.button {
  font: 30px/68px Quantico, sans-serif;
  background: #f00;
  color: #fff;
  border: 1px solid #f00;
  text-decoration: none;
  padding: 0 40px;
  display: block;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
}

.button:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: none;
}
.button span {
  font-size: 24px;
  vertical-align: top;
  margin-left: 5px;
}

h2,
h3 {
  line-height: 1;
  font-family: Quantico, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}

h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 30px;
}
h3 {
  font-size: 24px;
  margin: 0 0 20px;
}
.content img {
  display: block;
  max-width: 100%;
  margin: auto;
  height: auto;
}

section {
  display: block;
  position: relative;
  max-width: 1920px;
  margin: auto;
}
.content {
  position: relative;
  z-index: 1;
}
.cont {
    max-width: 1300px;
    margin: 0px auto;
}
@media screen and (min-width: 1920px) {
  section:before,
  section:after {
    content: '';
    position: absolute;
    top:0;
    bottom:0;
    width: 50px;
    pointer-events: none;
    z-index: 3;
  }
  section:before {
    left: 0;
    background: linear-gradient(to right, #090c12, transparent);
  }
  section:after {
    right: 0;
    background: linear-gradient(to left, #090c12, transparent);
  }
}

.top-bar {
  position: fixed;
  top:0;
  left:0;
  right:0;
  background: rgba(0,0,0,.7);
  z-index: 10;
  height: 49px;
}

.page-nav__item {
  display: inline-block;
  font-family: Quantico, sans-serif;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 1;
  padding: 16px 40px;
  text-decoration: none;
  color: #fff;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.page-nav-mobile {
  display: none;
  position: absolute;
  right:0;
  top:0;
  width: 70px;
  height: 49px;
  cursor: pointer;
  background: url("../images/menu.png") no-repeat 50% 50%;
}

.page-nav__item.active {
  color: #f00;
}

.lang {
  position: absolute;
  left: 0;
  top:0;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 13px;
  z-index: 10;
  display: inline-block;
  vertical-align: top;
  height: 49px;
}

.lang:hover .lang__current:after {
  transform: rotate(180deg);
}

.lang:hover .lang__list {
  transform: scaleY(1);
  opacity: 1;
}

.lang__current {
  position: relative;
  color: #fff;
  padding: 15px;
  box-sizing: border-box;
}

.lang__current:after {
  position: relative;
  top: -3px;
  display: inline-block;
  width: 0;
  height: 0;
  content: '';
  transition: transform 300ms cubic-bezier(0.5, -0.5, 0.5, 1.5) 0s, -webkit-transform 300ms cubic-bezier(0.5, -0.5, 0.5, 1.5) 0s;
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: #777a7e transparent transparent transparent;
}

.lang__list {
  position: absolute;
  top: 49px;
  left: 0;
  transition: transform 300ms ease 0s, -webkit-transform 300ms ease 0s;
  transform: scaleY(0);
  transform-origin: left top 0;
  text-align: left;
  opacity: 0;
  will-change: transform;
  width: 125px;
}

.lang__item {
  line-height: 28px;
  margin-bottom: 1px;
  transition: all 0.3s ease;
  background: #000;
  color: #fff;
  display: block;
  text-decoration: none;
  padding-left: 10px;
}

.lang__item:hover {
  color: #000;
  background: #fff;
}

.lang__flag {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 16px;
  background-image: url("../images/flags.png");
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.lang__flag.flag_de {
  background-position-y: -16px;
}

.lang__flag.flag_fr {
  background-position-y: -32px;
}

.lang__flag.flag_pl {
  background-position-y: -64px;
}

.lang__flag.flag_ru {
  background-position-y: -80px;
}

.lang__flag.flag_zh {
  background-position-y: -96px;
}

.lang__flag.flag_en {
  background-position-y: -144px;
}

.lang__flag.flag_es {
  background-position-y: -160px;
}

.lang__flag.flag_jp {
  background-position-y: -176px;
}

.lang__flag.flag_ko {
  background-position-y: -192px;
}

.lang__flag.flag_pt {
  background-position-y: -208px;
}


@media (max-width: 1200px) {
  .page-nav__item {
    padding: 16px 10px;
  }
}
@media (max-width: 800px) {
  .page-nav {
    display: none;
    position: absolute;
    right:0;
    top:49px;
    width: 100%;
    background: rgba(0,0,0,.7);
  }
  .page-nav__item {
    display: block;
  }
  .page-nav-mobile {
    display: block;
  }
  .page-nav-mobile.open + .page-nav {
    display: block;
  }
  .lang__current:hover + .lang__list {
    display: none;
  }
  .lang__current.open + .lang__list,
  .lang__current.open:hover + .lang__list {
    display: block;
    transform: scaleY(1);
    opacity: 1;
  }
}


.sect0 {
  background: url(../images/bg-0.jpg) no-repeat 50% 50%;
}
.sect1 {
  background: url(../images/bg-1.jpg) no-repeat 50% 50%;
}
.sect2 {
  background: url(../images/bg-2.jpg) no-repeat 50% 50%;
}
.sect3 {
  background: url(../images/bg-3.jpg) no-repeat 50% 50%;
}
.sect5 {
  background: url(../images/bg-5.jpg) no-repeat 50% 50%;
}
.sect1 .content:before,
.sect3 .content:before,
.sect5 .content:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(../images/square.png) repeat 50% 61%;
    opacity: .5;
    z-index: -1;
}

/* section head */
.sect0 {
  overflow: hidden;
}
.sect0 .content {
  padding: 130px 0 70px;
}

.sect0 .content:before {
  content: '';
  position: absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  background: url(../images/video-bg.png) repeat 0 0;
  z-index: -1;
}

.sect0 .content {
  z-index: 2;
}
.video {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}
.play {
  width: 202px;
  height: 202px;
  cursor: pointer;
  margin: 90px auto 120px;
  background: url(../images/play.png) repeat 0 0;
  opacity: .8;
}
.play:hover {
  opacity: 1;
}
.platforms {
  padding: 80px 0 0;
}
.platforms-col {
  display: inline-block;
  vertical-align: top;
  margin: 0 30px;
}
.platform {
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin: 0 14px;
  font-size: 10px;
  text-transform: uppercase;
  text-decoration: none;
}
.platform:hover {
  color: #f00;
}
.platform:before {
  content: '';
  display: block;
  height: 40px;
  margin: 0 auto 7px;
  background: url(../images/platforms.png) repeat 0 0;
}
.ovl .platform--ps {
  width: 87px;
}
.platform--ps:before {
  width: 50px;
}
.platform--xbox:before {
  width: 40px;
  background-position: -85px 0;
}
.platform--nt:before {
  width: 38px;
  background-position: -163px 0;
}
.platform--steam:before {
  width: 41px;
  background-position: -295px 0;
}
.platform--mygames:before {
  width: 89px;
  background-position: -363px 0;
}
.platform--pc:before {
  width: 40px;
  background-position: -226px 0;
}
.platforms--footer .platforms-col,
.platforms--footer .button {
  vertical-align: middle;
}

/* section classes */
.sect1 .content {
  padding: 90px 0 0;
  overflow: hidden;
}
.subtitle {
  font-size: 20px;
  margin: 0 0 30px;
  text-transform: uppercase;
}
.sect1 h2,
.sect1 .subtitle {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.classes {
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: right;
}
.classes-right {
  position: relative;
  display: inline-block;
  max-width: 450px;
  width: 100%;
  text-align: center;
  padding: 100px 0;
  z-index: 2;
}
.classes-nav {
  display: flex;
  justify-content: space-between;
  margin: 0 0 50px;
}
.classes-nav div {
  position: relative;
  width: 50px;
  height: 50px;
  border: 2px solid #f00;
  cursor: pointer;
}
.classes-nav div:before {
  content: '';
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  margin: auto;
  width: 45px;
  height: 45px;
  background: url(../images/classes.png) repeat 0 0;
  pointer-events: none;
}
.classes-nav div[data-class=rifleman]:before {
  background-position: -100px 0;
}
.classes-nav div[data-class=sed]:before {
  background-position: -200px 0;
}
.classes-nav div[data-class=engineer]:before {
  background-position: -300px 0;
}
.classes-nav div[data-class=sniper]:before {
  background-position: -400px 0;
}
.classes .classes-nav div:hover:before,
.classes .classes-nav div.active:before {
    background-position-y: 100%;
 }
.class-info {
  position: relative;
  border: 1px solid #f00;
  background: rgba(17,17,17,.7);
  padding: 60px 50px 0;
  height: 550px;
  text-align: left;
}
.class-info > div {
  display: none;
}
.class-info > div.active {
  display: block;
}
.class-info__title {
  font: 20px/22px Quantico, sans-serif;
  color: #f00;
  margin: 0 0 23px;
  text-transform: uppercase;
}
.class-info p {
  margin: 0 0 15px;
}
.class-info-icon {
  display: none;
  position: absolute;
  top:80px;
  right:20px;
  width: 22px;
  height: 22px;
  background: url(../images/info.png) repeat 0 0;
  cursor: pointer;
  z-index: 3;
}
.class-info-icon.open {
  background-image: url(../images/close.png);
}

.class-img {
  position: absolute;
  left:0;
  bottom:0;
  width: 600px;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.class-img:before,
.class-img:after {
  content: '';
  position: absolute;
  bottom: 210px;
  width: 49px;
  height: 457px;
  background: url(../images/class-img.png) no-repeat 0 0;
  z-index: -1;
}
.class-img:before {
  right: 100%;
}
.class-img:after {
  left:100%;
  transform: rotate(180deg);
}
.class-img img {
  position: absolute;
  bottom:0;
  left:-100px;
  right:-100px;
  max-width: 200%;
  margin: auto;
}

/* pve */
.sect2 .content {
  padding: 60px 20px;
}
.pve {
  position: relative;
  width: 680px;
  margin: auto;
}
.pve:before,
.pve:after {
  content: '';
  position: absolute;
  top:0;
  bottom: 0;
  margin: auto;
  width: 22px;
  height: 212px;
  background: url(../images/pve-decor.png) no-repeat 0 0;
  z-index: 2;
}
.pve:before {
  left: 0;
}
.pve:after {
  right: 0;
  transform: rotate(180deg);
}
.pve .slick-prev {
  left: -30px;
}
.pve .slick-next {
  right: -30px;
}

.pve-item {
  width: 680px;
  padding: 0 30px;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 14px;
}
.pve-title {
  font-size: 28px;
  color: #f00;
}
.pve-title span {
  display: block;
}
.pve-video {
  flex: 0 0 auto;
  position: relative;
  margin-left: 20px;
  cursor: pointer;
}
.pve-video:after {
  content: '';
  position: absolute;
  left:0;
  right:0;
  bottom:0;
  top:0;
  margin: auto;
  width: 72px;
  height: 72px;
  background: url(../images/pve-play.png) no-repeat 0 0;
  pointer-events: none;
}
.map {
  display: inline-block;
  position: relative;
}
.map-points {
  position: absolute;
  left:0;
  right: 0;
  top:0;
  bottom:0;
}
.map-point {
  position: absolute;
  white-space: nowrap;
  height: 17px;
  font: 10px/10px Quantico, sans-serif;
  color: #f00;
  padding-left: 30px;
  background: url(../images/map-points.png) no-repeat 0 0;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 1;
}
@-webkit-keyframes rotate {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
@keyframes rotate {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
.map-point.active:before {
  content: '';
  position: absolute;
  top: -39px;
  left:-35px;
  width: 91px;
  height: 91px;
  background: url(../images/map-point-rotate.png) no-repeat 0 0;
  pointer-events: none;
  z-index: -1;
  -webkit-animation: rotate 7s linear infinite;
          animation: rotate 7s linear infinite;
}
.map-point.map-point--l.active:before {
  left:auto;
  right: -35px;
}
.map-point--l {
  text-align: right;
  padding: 0 30px 0 0;
  background-position: 100% 0;
}
.map-point.active {
  background-position-y: 100%;
  cursor: default;
  color: #fff;
}
.map-point--1 {
  left:60%;
  top:12%;
}
.map-point--2 {
  right: 57%;
  top:19%;
}
.map-point--3 {
  left:46%;
  top:66%;
}
.map-point--4 {
  left:47%;
  top:38%;
}
.map-point--5 {
  left:44%;
  top:24%;
}
.map-point--6 {
  left: 14%;
  top: 15%;
}
.map-point--7 {
  left:45%;
  top:17%;
}
.map-point--8 {
  right:18%;
  top:30%;
}
.map-point--9 {
  right:10.5%;
  top:13%;
}
.map-point--10 {
  left:82%;
  top:42%;
}

/* pvp */
.sect3 .content {
  padding: 60px 20px;
}
.pvp {
  max-width: 1510px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pvp-item {
  position: relative;
  width: 19.8%;
  border: 1px solid #f00;
  margin-bottom: 4px;
}
.pvp-item > div {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.pvp-item img {
  position: relative;
  z-index: 1;
}
.pvp-video {
  display: none;
  left:0;
  top:0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
}
.pvp-item__name {
  position: absolute;
  bottom:15px;
  left:18px;
  right:18px;
  text-transform: uppercase;
  font: 18px/20px Quantico, sans-serif;
  text-align: left;
  z-index: 3;
}
.pvp-item:before {
  content: '';
  position: absolute;
  left:-2px;
  right:-2px;
  top:-2px;
  bottom:-2px;
  background: url(../images/pvp-frame.png) no-repeat 0 0;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 4;
}

/* section arsenal */
.sect4 .content h2 {
  position: absolute;
  left:0;
  right:0;
  top:8%;
  z-index: 5;
}
.guns {
  position: absolute;
  left:0;
  right:0;
  top:0;
  bottom: 0;
}
.guns-map img {
  width: 100%;
  height: auto;
  position: absolute;
  left:0;
  right:0;
  top:0;
  bottom: 0;
  pointer-events: none;
  display: none;
}
.gun__place {
  position: absolute;
  cursor: pointer;
}
.gun__place:hover + img,
.gun__place.on + img + img {
  display: block;
}
.gun__place.on + img,
.gun__place.on:hover + img {
  display: none;
}
.gun__place--1 {
  left: 8.5%;
  top:19%;
  width: 19%;
  height: 17%;
}
.gun__place--2 {
  left: 9.5%;
  top: 34%;
  width: 14%;
  height: 10%;
}
.gun__place--3 {
  left: 11.5%;
  top: 47.5%;
  width: 10%;
  height: 10.5%;
}
.gun__place--4 {
  left: 9.5%;
  top: 59.5%;
  width: 14%;
  height: 11%;
}
.gun__place--5 {
  left: 39%;
  top: 27%;
  width: 15.5%;
  height: 8%;
}
.gun__place--6 {
  left: 40%;
  top: 37%;
  width: 16%;
  height: 9%;
}
.gun__place--7 {
  left: 38%;
  top: 48.5%;
  width: 17%;
  height: 9%;
}
.gun__place--8 {
  left: 41%;
  top: 61.5%;
  width: 12.5%;
  height: 8%;
}
.gun__place--9 {
  left: 60%;
  top: 25.5%;
  width: 6%;
  height: 6%;
}
.gun__place--10 {
  left: 60.5%;
  top: 37%;
  width: 5.5%;
  height: 6%;
}
.gun__place--11 {
  left: 61%;
  top: 49%;
  width: 5.5%;
  height: 9%;
}
.gun__place--12 {
  left: 59.5%;
  top: 61.5%;
  width: 7%;
  height: 7%;
}
.gun__place--13 {
  left: 75.5%;
  top: 20%;
  width: 13%;
  height: 9%;
}
.gun__place--14 {
  left: 73.5%;
  top: 32.5%;
  width: 15%;
  height: 11.5%;
}
.gun__place--15 {
  left: 69%;
  top: 46.5%;
  width: 21.5%;
  height: 11.5%;
}
.gun__place--16 {
  left: 72%;
  top: 59%;
  width: 20%;
  height: 11.5%;
}

.gun-info {
  position: absolute;
  left:110%;
  top:-100px;
  bottom:-100px;
  margin: auto;
  width: 408px;
  height: 213px;
  font-size: 12px;
  padding: 40px 40px 0;
  text-align: left;
  background: url("../images/guns-info.png") no-repeat 0 0;
  z-index: 6;
}
.gun-info:before {
  content: '';
  position: absolute;
  right: 100%;
  top:60px;
  margin: auto;
  width: 122px;
  height: 44px;
  background: url("../images/guns-point-l.png") no-repeat 0 0;
}
.gun--l2 .gun-info:before {
  width: 60px;
  top:65px;
}
.gun--r .gun-info:before {
  left: 100%;
  right: auto;
  top:55px;
  background: url("../images/guns-point-r.png") no-repeat 100% 0;
}

.gun__place--1 .gun-info:before {
  top:84px;
}
.gun__place--3 .gun-info {
  left: 140%;
}
.gun__place--9 .gun-info:before,
.gun__place--10 .gun-info:before,
.gun__place--11 .gun-info:before,
.gun__place--12 .gun-info:before {
  width: 60px;
}

.gun--r .gun-info {
  left: auto;
  right: 120%;
}
.gun--l2 .gun-info {
  left: 50%;
}
.gun-info__name {
  text-transform: uppercase;
  font: 18px/20px Quantico, sans-serif;
  color: #f00;
  margin: 0 0 12px;
}


.guns-slider {
  display: none;
  width: 80%;
  max-width: 500px;
  margin: auto;
}
.gun-item {
  text-align: left;
}
.gun-item__img {
  margin: 0 0 30px;
}
.gun-item__name {
  position: relative;
  padding: 17px 0 25px;
  text-transform: uppercase;
  font: 20px/24px Quantico, sans-serif;
  color: #f00;
}
.gun-item__name:before {
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 55px;
  height: 11px;
  background: url("../images/gallery-decor-top.png") no-repeat 0 0;
}
.gun-item__text {
  font-size: 14px;
}
.guns-slider .slick-arrow {
  top: 25px;
  margin-top: 0;
}

/* section graphic */
.sect5 .content {
  padding: 60px 0;
}

.graphic {
  position: relative;
  max-width: 1000px;
  margin: auto;
}
.graphic:before,
.graphic:after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.graphic:before {
  top: -16px;
  width: 55px;
  left:0;
  height: 11px;
  background: url("../images/gallery-decor-top.png") no-repeat 0 0;
}
.graphic:after {
  right:8px;
  bottom: -17px;
  width: 55px;
  height: 10px;
  background: url("../images/gallery-decor-bot.png") no-repeat 0 0;
}
.graphic .slider {
  max-height: 564px;
}
.graphic .slick-list {
  border: 1px solid #ff0000;
}


.slider {
  position: relative;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
}
.slider.slick-initialized {
  overflow: visible;
}
.slider:before,
.slider:after {
  content: '';
  position: absolute;
  width: 32px;
  height: 232px;
  background: url("../images/gallery-decor-side.png") no-repeat 0 0;
  z-index: 1;
}
.slider:before {
  bottom:20px;
  left:-18px;
}
.slider:after {
  top:20px;
  right:-18px;
}
.slider img {
  display: block;
  max-width: 100%;
  height: auto;
}
.slider .b-link {
  position: absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  cursor: pointer;
  z-index: 2;
}
.slider-item {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.slick-dots {
  position: absolute;
  left:20px;
  bottom:20px;
  margin: 0;
  padding: 0;
}
.slick-dots li {
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  margin: 0 -2px;
}
.slick-dots li button {
  display: block;
  width:46px;
  height:10px;
  background: none;
  overflow: hidden;
  text-indent: 100px;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  background: url("../images/points.png") no-repeat 0 0;
  outline: none;
}
.slick-dots li.slick-active button {
  background-position: 0 100%;
}

.slick-arrow {
  width: 24px;
  height: 49px;
  cursor: pointer;
  background: url("../images/arrow.png") no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -24px;
  color: transparent;
  font-size: 0;
  opacity: .7;
  border: none;
  z-index: 3;
}
.slick-arrow:hover {
  opacity: 1;
}
.slick-arrow:focus {
  outline: none;
}
.slick-prev {
  left: -40px;
}
.slick-next {
  right: -40px;
  background-position: 100% 0;
}

.ovl.is-block {
  width: 100%;
}
.ovl-content {
  width: 100%;
  background: #111416;
  display: flex;
  min-height: 100vh;
  align-items: center;
  text-align: center;
  padding: 30px 0;
}
.ovl-content > div {
  width: 100%;
}
.ovl .platform  {
  margin-top: 20px;
}
.ovl-gifts {
  background: url("../images/ovl-gifts.png") no-repeat 50% 0;
  padding: 40px 0 0;
}
.ovl-gifts h3 {
  position: relative;
  max-width: 500px;
  margin: 0 auto -35px;
  color: #f00;
  z-index: 1;
}
.ovl-gift {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
}
.ovl-gift__text {
  position: absolute;
  right:20px;
  left:20px;
  text-align: right;
  bottom:16px;
  text-transform: uppercase;
}
.ovl-gift__text b {
  display: block;
  font-weight: normal;
  color: #f00;
}
.ovl-hint {
  padding: 30px 0 0;
  max-width: 800px;
  margin: auto;
  text-transform: uppercase;
  font-size: 14px;
  color:#6B6A6A;
}
@media screen and (min-width: 1200px) {
  .ovl .platform  {
    font-size: 18px;
    margin: 30px 30px 0;
  }
  .ovl .platform:before {
    background-image:  url("../images/platforms-b.png");
    height: 66px;
  }
  .ovl .platform--ps {
    width: 157px;
  }
  .ovl .platform--ps:before {
    width: 84px;
  }
  .ovl .platform--xbox:before {
    width: 66px;
    background-position: -179px 0;
  }
  .ovl .platform--nt:before {
    width: 63px;
    background-position: -341px 0;
  }
  .ovl .platform--steam:before {
    width: 69px;
    background-position: -495px 0;
  }
  .ovl .platform--mygames:before {
    width: 149px;
    background-position: -638px 0;
  }
  .ovl .platform--pc:before {
    width: 66px;
    background-position: -834px 0;
  }
}


@media screen and (max-width: 1200px) {
  .sect1 .content {
    padding: 30px 20px 0;
    overflow: hidden;
  }

  .class-img:before,
  .class-img:after {
    display: none;
  }
  .graphic {
    max-width: 700px;
    margin: auto;
  }
  .slider:before,
  .slider:after {
    height: 50%;
  }
  .slider:before {
    top:40%;
  }
  .slider:after {
    top:10%;
  }

}

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

  .class-img {
    left:-10%;
  }
  .class-img img {
    max-width: 120%;
  }
  .classes-right {
    padding: 50px 0;
  }
  .map-points {
    display: none;
  }
  .map {
    background: url("../images/map-mobile.png") no-repeat 0 50%;
    background-size: 100% auto;
  }
  .map > img {
    opacity: 0;
    visibility: hidden;
  }
  .slider {
    width: 90%;
  }
  .ovl-gifts {
    background: none;
  }
  .ovl-gifts h3 {
    font-size: 16px;
    max-width: 90%;
  }
  .ovl-gift {
    display: inline-block;
    margin: 20px auto;
    max-width: 90%;
  }
  .ovl-gift img {
    max-width: 100%;
    height: auto;
  }
  .platforms--footer {
    position: relative;
    padding-top: 100px;
    margin-top: 50px;
  }
  .platforms--footer .button {
    position: absolute;
    top:0;
    Left:0;
    right:0;
    margin: auto;
    max-width: 380px;
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .content {
    overflow: hidden;
  }
  section:not(.sect4) .content {
    padding-left: 5%!important;
    padding-right: 5%!important;
  }
  .sect0 .content {
    padding: 60px 5% 20px;
  }
  .sect0 .content:before,
  .video {
    display: none;
  }
  h2 {
    font-size: 20px;
  }
  .play {
    width: 150px;
    height: 150px;
    background-size: contain;
    margin: 60px auto;
  }
  .platforms--footer .button,
  .button {
    line-height: 60px;
    font-size: 20px;
    width: 110%;
    margin: 0 -5%;
    max-width: 120%;
  }
  .button span {
    font-size: 14px;
  }
  .platforms {
    padding: 0;
  }

  .platforms--footer {
    padding-top: 60px;
  }
  .platforms-col {
    padding: 35px 0 0;
    margin: auto;
  }
  .subtitle {
    font-size: 14px;
  }
  .classes-right {
    display: block;
    padding: 0;
    max-width: 100%;
  }
  .classes-nav {
    max-width: 330px;
    margin: auto;
  }
  .class-info {
    display: none;
    position: absolute;
    left:0;
    right:0;
    top:60px;
    padding: 20px;
    height: auto;
  }
  .class-img {
    position: relative;
    width: 100%;
    left:0;
    height: 550px;
    z-index: -1;
  }
  .class-img img {
    max-width: 500px;
  }
  .class-info-icon {
    display: block;
  }
  .class-info-icon.open + .class-info {
    display: block;
  }
  .pvp,
  .pve {
    width: 90%;
  }
  .pve:before,
  .pve:after {
    display: none;
  }
  .pve-item {
    width: 100%;
    display: block!important;
  }
  .pve-title span {
    display: inline;
  }
  .pve-video {
    max-width: 294px;
    margin: 20px auto 0;
  }
  .pvp {
    display: block;
    max-width: 300px;
  }
  .pvp-item {
    max-width: 298px;
    margin: 1px;
  }
  .slick-prev,
  .slick-prev {
    left: -30px;
  }
  .slick-next,
  .slick-next {
    right: -30px;
  }
  .slick-dots {
    display: none!important;
  }
  .ovl-close {
    top:10px!important;
  }


  .sect4 .content {
    padding: 30px 0;
  }
  .guns-slider {
    display: block;
  }
  .guns-map {
    display: none;
  }
  .sect4 .content > img {
    display: none;
  }
  .sect4 .content h2 {
    position: static;
  }
}
