body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
  font-weight: 400;
  position: relative;
  font-family: "Roboto", sans-serif;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.container {
  max-width: 1230px;
  margin: 0 auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1030px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1230px;
  }
}

h2 {
  color: #fff;
}

ul li {
  color: #fff;
  line-height: 24px;
}

/* header */
.main-header {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* hero */

.hero {
  background: #000;
  /*min-height: 869px;*/
  position: relative;
  padding-top: 50px;
  padding-bottom: 80px;
}

.hero::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 3px;
  /*background: linear-gradient(to right, #956e33, #efe497, #956e33);*/
  bottom: 0;
  left: 0;
  z-index: 2;
}

.hero:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  /*background: rgba(0, 0, 0, 0.7);*/
}

.hero-logo {
  width: 95px;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #000000) drop-shadow(0 0 10px #000000);
}

.hero-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero-bg img {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: bottom center;
  max-width: 100%;
  max-height: 100%;
}

.hero iframe {
  height: 500px;
  width: 100%;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .container .language {
  width: 100%;
  margin-bottom: 20px;
}

.hero .container .language p {
  text-align: right;
  font-size: 18px;
  font-weight: 700;
}

.hero .container .language p a {
  color: #fff;
  text-decoration: none;
}

.hero .container .language p a:hover {
  color: #f8c223;
}

.hero .container .language p img {
  margin-bottom: -5px;
}

/*
.language { width: 100%;float: left; display: flex; justify-content: flex-end;}
  .language-container { width: 1200px; margin: 0 auto; }
    .language-container p { text-align: right; font-size: 18px; font-weight: 700;}
      .language-container p img { margin-bottom: -5px; }
      .language-container p a { color: #fff; text-decoration: none; }
      .language-container p a:hover { color: #f8c223; }*/

.language {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.language button {
  text-transform: uppercase;
}
.back-cta {
  display: block;
  color: #fff;
  text-decoration: none;
  background-color: #ff4a04;
  padding: 10px 25px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.back-cta:hover {
  background: #fbb307;
}
/* Dropdown Button */
.dropbtn {
  background-color: transparent;
  color: #ff4a04;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.dropbtn img {
  margin-right: 5px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 20;
  right: 0;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  display: flex;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
}
.dropdown-content a img {
  margin-right: 5px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.hero-game__holder {
  position: relative;
  z-index: 3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 20px 10px 0px rgba(0, 0, 0, 0.87);
}

.hero-game__header {
  background: #fff;
  padding: 10px 26px;
}

.hero-game__header p {
  color: #fff;
  line-height: 24px;
}

.hero-game__header p a {
  color: #fff;
}

.hero-game__title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #ff4a04;
  text-transform: uppercase;
  margin: 10px 0;
}

.hero-game__visited {
  background: #fff;
  padding: 10px 26px 30px;
  text-align: center;
}

.cta {
  background: rgb(251, 143, 19);
  background: linear-gradient(
    180deg,
    rgba(251, 143, 19, 1) 0%,
    rgba(251, 56, 1, 1) 100%
  );
  display: block;
  margin: 50px auto 0;
  width: 300px;
  text-align: center;
  padding: 20px 0;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 1px 1px 1px #000;
  font-size: 32px;
}
.cta:hover {
  background: rgb(251, 227, 18);
  background: linear-gradient(
    180deg,
    rgba(251, 227, 18, 1) 0%,
    rgba(251, 153, 1, 1) 100%
  );
}

.hidden {
  display: none !important;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  position: fixed;
}
.modal div {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  border: 3px solid #ff4a04;
}
.modal div h3 {
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 0;
}
.modal div .cta {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .hero-game__title {
    font-size: 18px;
  }
}

.hero-game__title sup {
  font-weight: 400;
  font-size: 65%;
}

.hero-game__body {
  padding-top: 50%;
  position: relative;
}

.hero-game {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero-game iframe {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: top center;
  max-width: 100%;
  max-height: 100%;
}

.hero-game div {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #000;
  height: 100%;
}

.hero-game div p {
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 0 20px;
  line-height: 28px;
}

.hero-game video {
  width: 100%;
}

/* footer */

.main-footer {
  background-image: url(//cdn.zxcdn.com/webCDN/img/ZC/new/bg-tile.fs8.png),
    linear-gradient(180deg, #cdcdcd 0, #cdcdcd 40%, #cdcdcd 60%, #fff 100%);
  background-size: auto auto, auto 100%;
  background-repeat: repeat, no-repeat;
  padding: 60px 0;
  display: block;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.main-footer p {
  margin-top: 0;
}

.main-footer p a {
  text-decoration: none;
  color: #000;
}

.footer-content {
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

.footer-content p {
  font-family: "Roboto";
  font-size: 16px;
  text-align: center;
  color: #000;
  margin-bottom: 31px;
  font-weight: 500;
}

.footer-decor {
  display: inline-block;
  width: 498px;
  height: 106px;
  border-radius: 10px;
  border: solid 1px #000000;
  background-color: #000000;
}

.footer-logo {
  margin: 0 auto;
  margin-bottom: 20px;
  display: block;
  width: 137px;
}
/* inner page specific css */

.inner-page {
  display: flex;
  flex-flow: column;
  height: 100%;
}
.terms-content.hero-game__header a,
.terms-content.hero-game__header li,
.terms-content.hero-game__header h2,
.terms-content.hero-game__header p {
  color: #000;
}
