@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");
* {
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  font-family: 'Open Sans', sans-serif;
  color: #141414;
}

body h1 {
  letter-spacing: 1px;
}

body h2 {
  font-size: 38px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

@media screen and (max-width: 500px) {
  body h2 {
    font-size: 32px;
    margin-bottom: 23px;
  }
}

body h3 {
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

@media screen and (max-width: 500px) {
  body h3 {
    margin-bottom: 23px;
  }
}

body h4 {
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

@media screen and (max-width: 500px) {
  body h4 {
    margin-bottom: 23px;
  }
}

body p {
  margin-top: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

@media screen and (max-width: 500px) {
  body p {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 350px) {
  body p {
    font-size: 0.9375rem;
  }
}

body a {
  text-decoration: none;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a {
  color: white;
  display: inline-block;
  opacity: 0.8;
}

nav a:hover {
  color: #43A8DE;
}

nav a.active {
  opacity: 1;
  font-weight: 600;
  color: #43A8DE;
}

nav.top-menu {
  width: 100%;
  height: 60px;
  padding: 0 10px;
  background: #231F20;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  text-align: center;
}

nav.top-menu .logo {
  float: left;
}

nav.top-menu .links {
  float: right;
}

@media screen and (max-width: 750px) {
  nav.top-menu .links {
    display: none;
  }
}

nav.top-menu .links li {
  display: inline-block;
  height: 100%;
}

nav.top-menu .links a {
  line-height: 55px;
  margin: 0px 13px;
  padding: 2px 2px 0;
  font-size: 28px;
}

@media screen and (max-width: 1500px) {
  nav.top-menu .links a {
    font-size: 20px;
  }
}

nav.top-menu .links .buy-now {
  width: 160px;
  color: white;
  font-size: 1rem;
  border-color: white;
  line-height: unset;
  padding: 8px;
  position: relative;
  top: -4px;
}

nav.top-menu .links .buy-now:hover {
  opacity: 1;
}

nav.top-menu .nav-button {
  position: absolute;
  display: none;
  top: 5px;
  right: 3px;
  height: 30px;
  width: 40px;
  line-height: unset;
  margin: 10px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='40px' height='30px' viewBox='0 0 40 30' enable-background='new 0 0 40 30' xml:space='preserve' fill='white'><rect width='40' height='6'/><rect y='24' width='40' height='6'/><rect y='12' width='40' height='6'/></svg>");
  background-size: contain;
}

@media screen and (max-width: 750px) {
  nav.top-menu .nav-button {
    display: inline-block;
  }
}

nav.offcanvas {
  background: #231F20;
}

nav.offcanvas a {
  display: block;
  padding: 5px 20px;
  text-align: left;
  line-height: 70px;
}

nav.offcanvas li {
  border-bottom: 1px solid #a2a2a2;
  font-size: 5vw;
  margin: 0 5px;
}

.offcanvas-site-wrap::after {
  position: fixed;
  content: "";
  width: 100%;
  height: 100vh;
  right: 0;
  top: 0;
  opacity: 0;
  background-color: black;
  transition: right 0.4s, opacity 0.4s;
  z-index: 99;
  display: none;
  pointer-events: none;
}

.offcanvas-site-wrap.open {
  overflow: hidden;
}

.offcanvas-site-wrap.open::after {
  opacity: 0.5;
  cursor: pointer;
  display: block;
  pointer-events: initial;
}

.offcanvas-site-wrap.open::after, .offcanvas-site-wrap.open .nav, .offcanvas-site-wrap.open .fixed-background {
  right: calc(75%);
}

.flexbox .offcanvas-site-wrap::after {
  display: block;
}

.footer {
  background-color: #231F20;
  padding: 10px;
  text-align: center;
}

.footer a {
  padding: 10px 5px;
  display: inline-block;
}

.footer img:hover {
  opacity: 0.8;
}

.sideways {
  transform-origin: top left;
  transform: rotate(-90deg) translateX(-100%);
  position: absolute;
}

h2.inverse-style {
  font-weight: 400;
  padding: 10px 4vw;
  background-color: #e37101;
  color: #f8f8f8;
  margin: 0;
}

.section-video {
  background-color: black;
  text-align: center;
}

.section-video video {
  width: 100%;
  max-width: 1280px;
}

.information-and-blog {
  display: flex;
}

.information-and-blog .next-gen-vr {
  color: white;
  font-size: 50px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding: 60px;
  background-image: url(../images/buttons/htc-vive.jpg);
  background-color: #231F20;
  background-size: cover;
  background-position: 50% 33%;
  background-repeat: none;
  letter-spacing: 1px;
}

@media screen and (max-width: 500px) {
  .information-and-blog .next-gen-vr {
    font-size: 30px;
  }
}

.information {
  flex: 3 1;
  min-width: 300px;
}

@media screen and (max-width: 500px) {
  .information {
    padding-top: 10px;
  }
}

.information h2:not(.inverse-style), .information h3, .information h4, .information p {
  padding-top: 20px;
  padding-left: 20%;
  padding-right: 20%;
}

@media screen and (max-width: 500px) {
  .information h2:not(.inverse-style), .information h3, .information h4, .information p {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.information div {
  padding-bottom: 25px;
}

.information .intro h1 {
  margin-left: 4vw;
}

@media screen and (max-width: 500px) {
  .information .intro h1 {
    margin-left: 10px;
  }
}

.information .intro h2.sideways {
  font-weight: 400;
  font-size: 28px;
  left: 4vw;
  padding: 0;
}

@media screen and (max-width: 500px) {
  .information .intro h2.sideways {
    display: none;
  }
}

.information .highlights {
  padding-top: 0;
}

.information .highlights h3 {
  padding-top: 0;
}

.information .highlights ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.information .highlights li {
  margin: 10px 20px;
  display: inline-block;
  vertical-align: middle;
}

.information .highlights p {
  padding-top: 0;
}

.information .game-features .cards {
  width: 80%;
  margin: auto;
  margin-top: 60px;
  padding: 0;
}

.information .game-features .card {
  display: -webkit-box;
  display: flex;
  margin-bottom: 40px;
}

@media screen and (max-width: 750px) {
  .information .game-features .card {
    flex-flow: column-reverse;
  }
}

.information .game-features img {
  width: 33%;
  object-fit: cover;
  height: 18vw;
}

@media screen and (max-width: 750px) {
  .information .game-features img {
    width: auto;
    height: auto;
  }
}

.information .game-features .info {
  padding: 0 0 0 10%;
  width: 67%;
}

@media screen and (max-width: 750px) {
  .information .game-features .info {
    padding: 0;
    width: auto;
  }
}

.information .game-features .info h3 {
  margin: 0 0 10px 10px;
  padding: 0;
  font-weight: 400;
}

.information .game-features .info p {
  font-size: 1.125rem;
  padding: 0 0 0 10px;
}

.gallery .main-image-wrapper {
  width: 68%;
  text-align: center;
}

@media screen and (max-width: 1250px) {
  .gallery .main-image-wrapper {
    width: 100%;
  }
}

.gallery .main-image {
  border: 3px solid #e37101;
  height: calc(200px + 25vw);
  object-fit: cover;
  margin-bottom: 20px;
}

@media screen and (max-width: 1250px) {
  .gallery .main-image {
    width: 100%;
    height: auto;
  }
}

.gallery .gallery-contents {
  display: flex;
  padding: 4vw 2vw 0 2vw;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

@media screen and (max-width: 1250px) {
  .gallery .gallery-contents {
    flex-direction: column;
  }
}

.gallery .images {
  width: 28%;
  margin: 0 10px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-content: flex-start;
}

@media screen and (max-width: 1250px) {
  .gallery .images {
    width: 100%;
  }
}

.gallery .gallery-image {
  display: inline-block;
  cursor: pointer;
  margin: 5px;
}

@media screen and (max-width: 1250px) {
  .gallery .gallery-image {
    flex-basis: 0;
    flex-grow: 1;
  }
  .gallery .gallery-image:first-child {
    margin-left: 0;
  }
}

.gallery .gallery-image .thumbnail:hover {
  outline: 2px solid #ffcf9e;
}

.gallery .gallery-image .details {
  display: none;
}

.gallery .gallery-image.active .thumbnail {
  outline: 2px solid #e37101;
}

.gallery .gallery-image img {
  width: 12vw;
  height: 7vw;
  object-fit: contain;
  background-color: #231F20;
}

@media screen and (max-width: 1250px) {
  .gallery .gallery-image img {
    width: 100%;
    height: 100%;
  }
}

.gallery .image-description {
  margin: 0 4vw;
  padding: 1vw 0 4vw;
  border-top: 1px solid #e37101;
}

.subscribe {
  background: #414042;
  margin-top: 50px;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  text-align: center;
}

.subscribe .to-top {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(-55%);
  transition: transform 0.2s ease-in;
}

.subscribe .to-top:hover {
  transform: translateX(-50%) translateY(-65%);
}

.subscribe h2 {
  color: #BCBEC0;
  font-weight: 400;
  font-family: 'Open Sans';
  font-size: 44px;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 500px) {
  .subscribe h2 {
    font-size: 12vw;
  }
}

.subscribe p {
  color: #BCBEC0;
  font-size: 1.4375rem;
  margin-top: 0;
  padding-top: 0;
  letter-spacing: .5px;
}

@media screen and (max-width: 500px) {
  .subscribe p {
    font-size: 6.3vw;
  }
}

.subscribe .sub__form {
  display: flex;
  max-width: 400px;
  background: #414042;
  width: 100%;
  margin: 50px auto;
  height: 60px;
  border: 1px solid #BCBEC0;
}

@media screen and (max-width: 500px) {
  .subscribe .sub__form {
    width: 86vw;
  }
}

.subscribe .sub__input {
  background: transparent;
  border: none;
  padding: 5px 20px;
  color: white;
  flex-grow: 1;
  min-width: 0;
}

.subscribe .sub__button {
  background: transparent;
  border: none;
  color: #43A8DE;
  font-weight: 700;
  padding: 0 20px;
  background-image: url("../images/icons/send-arrow.svg");
  background-size: 67%;
  background-position: 40% 50%;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: transform 0.2s;
}

.subscribe .sub__button:hover {
  box-shadow: none;
  color: white;
  transform: scale(1.15);
}

.buy-now {
  border: 3px solid #000000;
  color: black;
  padding: 8px;
  display: block;
  margin: 0px auto;
  width: 160px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.buy-now:hover {
  opacity: 0.8;
}

.humble-widget {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
  height: 381px;
  width: 570px;
  max-width: 98%;
  margin: 100px auto;
}

.hero-image {
  display: block;
}