html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 0;
  min-width: 0;
}

body {
  font-family: 'Oswald', sans-serif;
  color: #fff;
}

.svg-icon {
  width: 5rem;
  height: 5rem;
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
  fill: #fff;
}

.svg-icon circle {
  stroke: #4691f6;
  stroke-width: 1;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  max-height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#091738bf), to(#091738bf)), url(../images/hero-bg2.jpg);
  background: linear-gradient(#091738bf, #091738bf), url(../images/hero-bg2.jpg);
  background-size: cover;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero .logo img {
  height: auto;
}

.hero .playnow {
  border: 2px solid;
  border-radius: 20px;
  padding: 2rem;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  background: #000000ad;
}

.hero .playnow a {
  text-decoration: none;
  font-size: 10rem;
  font-weight: bolder;
  text-shadow: 0 11.36px 3.896px #000000, 0 -1px 1px #fff;
  color: #fff;
}

.hero .playnow:hover {
  background: #000;
}

.hero .buttons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero .buttons-wrapper .platform {
  padding: 2rem;
}

.hero .buttons-wrapper .platform img {
  width: 20rem;
  max-width: 20rem;
  height: 10rem;
}

.features {
  background: #161616;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4rem 0;
}

.features .content {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.features .content .trailer {
  position: relative;
  padding-bottom: 2rem;
}

.features .content .trailer img {
  position: relative;
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

.features .content .trailer img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* set to 100% for full overlay width */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(232, 208, 148, 0.3)), to(rgba(232, 208, 148, 0.8)));
  background: linear-gradient(to bottom, rgba(232, 208, 148, 0.3) 0%, rgba(232, 208, 148, 0.8) 100%);
}

.features .content .intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 4rem;
}

.features .content .intro h1 {
  color: #fff;
  padding: 4rem 0;
  font-size: 10rem;
  text-align: center;
}

.features .content .intro p {
  font-size: 2.4rem;
  opacity: 0.7;
  text-align: center;
}

.features .content .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.features .content .cards .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: center;
  color: #fff;
  margin: 0rem 5rem;
}

.features .content .cards .card img {
  max-width: 100%;
  border-radius: 50%;
}

.features .content .cards .card p {
  text-align: center;
  padding: 2rem 0;
  font-size: 2rem;
}

.features .content .reasons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.features .content .reasons .reason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6rem 0;
}

.features .content .reasons .reason:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.features .content .reasons .reason .photo {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.features .content .reasons .reason .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  justify-self: flex-end;
  padding: 3rem;
}

.features .content .reasons .reason .text h4 {
  font-size: 3rem;
}

.features .content .reasons .reason .text p {
  font-size: 1.5rem;
  opacity: 0.7;
}

.features .content .reasons .reason img {
  max-width: 100%;
  -webkit-box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.9);
          box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.9);
  max-height: 360px;
}

.features .content .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

.features .content .more .discover {
  padding: 2rem 0;
}

.features .content .more .screenshots {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.features .content .more .screenshots img {
  max-width: 99%;
  border: 2px inset #000;
  -webkit-box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.9);
          box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.9);
  max-height: 315px;
}

.testimonials {
  background: #161616;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10rem 0;
}

.testimonials .content {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials .content .testimonial-pics {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-top: 3rem;
}

.testimonials .content .testimonial-pics img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 20px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.testimonials .content .testimonial-pics img:hover {
  -webkit-filter: none;
          filter: none;
}

.testimonials .content .testimonial-pics img.active {
  -webkit-filter: none;
          filter: none;
}

.testimonials .content .testimonial-contents {
  max-width: 500px;
  text-align: center;
}

.testimonials .content .testimonial {
  color: #fff;
  display: none;
}

.testimonials .content .testimonial h4 {
  font-size: 10rem;
}

.testimonials .content .testimonial h4:before {
  content: "\201c";
}

.testimonials .content .testimonial h4:after {
  content: "\201D";
}

.testimonials .content .testimonial p {
  color: #5c5c5c;
  margin-bottom: 20px;
  font-size: 2rem;
}

.testimonials .content .testimonial .author {
  text-transform: uppercase;
  font-size: 2rem;
}

.testimonials .content .testimonial.active {
  display: block;
}

.startplaying {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 40vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#091738eb), to(#091738e3)), url(../images/hero-bg.jpg) no-repeat center center fixed;
  background: linear-gradient(#091738eb, #091738e3), url(../images/hero-bg.jpg) no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem;
}

.startplaying .content {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.startplaying .content .text {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.startplaying .content .text h3 {
  font-size: 5rem;
  padding-bottom: 1rem;
}

.startplaying .content .text p {
  font-size: 2rem;
  padding-bottom: 2rem;
}

.startplaying .content .banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.startplaying .content .banner img {
  max-width: 80%;
  border: 5px solid #000;
  border-radius: 20%;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer ul {
  width: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  list-style-type: none;
}

@media (max-width: 1199.98px) {
  main .hero {
    height: 100% !important;
    min-height: 100vh;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  main .hero .playnow {
    width: 70%;
    text-align: center;
    position: relative;
    bottom: 80px;
  }
  main .hero .playnow a {
    font-size: 4.2rem;
  }
  main .hero .buttons-wrapper {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 1rem;
  }
  main .hero .buttons-wrapper .platform {
    padding: 0;
  }
  main .hero .buttons-wrapper .platform img {
    height: 100px;
    width: 200px;
  }
  main .features {
    padding: 5rem 0;
  }
  main .features .content {
    width: 100%;
  }
  main .features .content .trailer img {
    height: auto;
  }
  main .features .content .intro h1 {
    font-size: 5rem;
    text-align: center;
    padding: 2rem;
  }
  main .features .content .intro p {
    font-size: 2rem;
    text-align: center;
    padding: 1rem 2rem;
  }
  main .features .content .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 1rem;
  }
  main .features .content .reasons .reason {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 0;
  }
  main .features .content .reasons .reason .text h4 {
    font-size: 2.5rem;
    text-align: center;
  }
  main .features .content .reasons .reason .text p {
    text-align: center;
  }
  main .features .content .reasons .reason:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .features .content .more .screenshots {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  main .features .content .more img {
    max-width: 100%;
  }
  main .testimonials {
    padding: 2rem 0;
  }
  main .testimonials .content {
    width: 100%;
  }
  main .testimonials .content .testimonial-pics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  main .testimonials .content .testimonial-pics img {
    width: 7rem;
    height: 7rem;
  }
  main .testimonials .content .testimonial h4 {
    font-size: 5rem;
  }
  main .testimonials .content .testimonial p {
    padding: 2rem;
  }
  main .startplaying .content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .startplaying .content .text {
    text-align: center;
  }
  main .startplaying .content .text h3 {
    font-size: 3rem;
    text-transform: uppercase;
  }
  main .startplaying .content .text p {
    opacity: 0.7;
  }
  main .startplaying .content .buttons-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main .startplaying .content .buttons-wrapper a {
    padding: 1rem 0;
  }
  main .startplaying .content .buttons-wrapper a img {
    width: 200px;
  }
  main .startplaying .content .banner {
    padding: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.privacy-policy .hero {
  height: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(#091738ee), to(#091738bf)), url(../images/hero-bg.jpg) center center !important;
  background: linear-gradient(#091738ee, #091738bf), url(../images/hero-bg.jpg) center center !important;
  background-size: contain;
}

.privacy-policy .hero .logo img {
  max-width: 90%;
  height: auto;
}

.privacy-policy .hero .title {
  font-size: 8rem;
  text-align: center;
}

.privacy-policy p {
  padding: 2rem;
  font-size: 1.7rem !important;
}

.privacy-policy .features .element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 0;
}

.privacy-policy .features .element h4 {
  font-size: 3rem;
}

.privacy-policy .features ul {
  list-style: none;
  text-align: center;
}

.privacy-policy .features ul li {
  font-size: 1.5rem;
}

.privacy-policy .features ul li a {
  text-decoration: none;
}
/*# sourceMappingURL=style.css.map */