@import "https://fonts.googleapis.com/css?family=Montserrat:400,800";
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.colored {
  color: #d71414;
}

.brand-text {
  color: #FFF;
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  margin-left: 60px;
  margin-top: -45px;
}

a {
  color: #FFF;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
}
a:visited {
  color: #FFF;
  text-decoration: none;
}
a:hover {
  color: #f38321;
  text-decoration: none;
}
a:active {
  color: #FFF;
  text-decoration: underline;
}
a:focus {
  color: #FFF;
  text-decoration: none;
}

.landing_button_container img {
  transition: transform 1s ease;
}
.landing_button_container img:hover {
  animation: pulse 1s infinite;
  transform: scale(1.1);
}
.landing_button_container img:focus {
  scale: 1;
}

.img-logo {
  max-width: 30%;
  height: auto;
}

html {
  color: #FFF;
  background-color: #080808;
  font-size: 16px;
  line-height: 1.5rem;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  color: #FFF;
  background-color: #080808;
  font-size: 16px;
  line-height: 1.5rem;
  max-width: 100%;
  overflow-x: hidden;
}

.full-width {
  padding-left: 0;
  padding-right: 0;
  background-size: cover;
  background-position: center;
  padding: 25vh 0;
  border-bottom: 0px solid #000;
}

h1 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

h4 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

h5 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

h6 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  font-family: Montserrat, sans-serif;
  font-size: 0.9375rem;
  padding: 5px 5px 5px 0;
  margin: 0;
  font-weight: 400;
}

.strong {
  font-weight: bold;
}

.spaced {
  letter-spacing: 5px;
}

.subtle {
  color: #999;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.short-hr-left::after {
  border-top: 2px solid;
  border-color: #f38321;
  content: "";
  display: block;
  height: 1px;
  width: 10%;
  margin: 13px 0 0 0;
}

.short-hr-center::after {
  border-top: 2px solid;
  border-color: #f38321;
  content: "";
  display: block;
  height: 1px;
  width: 100px;
  margin: 10px auto 0 auto;
}

.short-hr-right::after {
  border-top: 2px solid;
  border-color: #f38321;
  content: "";
  display: block;
  height: 1px;
  width: 10%;
  margin: 10px 0 0 auto;
}

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

li {
  font-family: Montserrat, sans-serif;
}

.floated-left {
  float: left;
}

.floated-right {
  float: right;
}

.inline {
  display: inline;
}

.tiny-margin {
  margin-bottom: 3.625em;
}

.small-margin {
  margin-bottom: 6em;
}

.medium-margin {
  margin-bottom: 8em;
}

.large-margin {
  margin-bottom: 12em;
}

hr {
  width: 95%;
  height: 1px;
  background: #d71414;
  margin: 20px auto 25px auto;
}

button {
  outline: none !important;
}

.button {
  height: auto;
  width: 200px;
  margin: 40px auto;
  padding: 10px 15px;
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
  color: #222;
  border: none;
  border-radius: 8px;
  background: rgb(255, 105, 16);
  display: inline-block;
  outline: none;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.button:visited {
  color: rgb(255, 255, 255);
}
.button:hover {
  text-decoration: none !important;
  color: #FFF !important;
  background: #b15000;
}
.button:focus {
  color: #222;
}

.help-block {
  font-size: 12px;
}

.cookies-bar {
  background: #111;
  height: auto;
  width: 100vw;
  position: fixed;
  bottom: -60px;
  border-top: 1px solid #f38321;
  z-index: 10;
  transition: 0.4s;
}
.cookies-bar p {
  display: inline;
}
.cookies-bar a {
  text-decoration: underline;
}
.cookies-bar .button {
  display: block;
  position: absolute;
  top: 25%;
  right: 35px;
  margin: 0;
  height: 30px;
  width: 30px;
  padding: 0;
  font-size: 1.4rem;
  color: #fff;
  background: none;
}
.cookies-bar .button:hover {
  color: #ff9900 !important;
}

.cookies-wrapper {
  position: relative;
  padding: 15px 40px;
}

.cookies-bar.open {
  transform: translateY(-60px);
}

.cookies-bar.closed {
  transform: translateY(60px);
}

#loader-wrapper {
  background: #111;
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  text-align: center;
  z-index: 1050;
}

.loader-logo {
  position: relative;
  color: #FFF;
  top: 43%;
  font-family: Montserrat, sans-serif;
  letter-spacing: 5px;
}

#progress {
  width: 0;
  height: 2px;
  background: #0051ff;
  position: relative;
  top: 45%;
}

.loader-text {
  position: relative;
  color: #FFF;
  top: 48%;
}

.loaded {
  -moz-transform: translate3d(0px, -100%, 0px);
  -webkit-transform: translate3d(0px, -100%, 0px);
  -o-transform: translate(0px, -100%);
  -ms-transform: translate(0px, -100%);
  transform: translate3d(0px, -100%, 0px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#main-logo {
  color: #FFF;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0 0px;
  text-decoration: none;
  text-align: justify;
}

.navbar-dark {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  height: auto;
}
.navbar-dark .navbar-nav .nav-link {
  color: #FFF;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #d71414;
}

.fixed-top {
  z-index: 90;
}

.scrolled {
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 90;
}

.navbar-collapse .dropdown-menu {
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.6);
}
.navbar-collapse .dropdown-item {
  color: #fff;
  text-decoration: none;
}
.navbar-collapse .dropdown-item:hover {
  background: none;
}
.navbar-collapse .dropdown-item:hover .item-text {
  color: #d71414;
}
.navbar-collapse .dropdown-item .item-text {
  font-size: 0.875rem;
}
.navbar-collapse .dropdown-items-divide-hr {
  width: 100%;
  height: 1px;
  margin: 0.25rem auto 0.25rem auto;
  border: none;
  background-color: #b5bcc4;
  opacity: 0.2;
}

.navbar-toggler {
  border: none;
  cursor: pointer;
}

.icon-social {
  transition: 0.3s ease;
}
.icon-social:hover {
  scale: 1.3;
}

.fa-discord {
  transition: 0.3s ease;
}
.fa-discord:hover {
  scale: 1.3;
}

#hamburger .icon-bar {
  display: block;
  height: 2px;
  width: 25px;
  background: #FFF;
  margin: 7px 0;
  transition: 0.3s ease-in-out;
}
#hamburger .icon-bar:nth-child(1) {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#hamburger .icon-bar:nth-child(2) {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#hamburger .icon-bar:nth-child(3) {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#hamburger.open .icon-bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hamburger.open .icon-bar:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#hamburger.open .icon-bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#container_platforms_btns {
  max-width: 100%;
  height: auto;
  justify-content: center;
  border: 10px;
  display: inline-block;
  padding: 10px;
  margin-top: 1vh;
}

#container_playnow_btn {
  max-width: 100%;
  height: 50;
  margin: 0px;
  display: flex;
  justify-content: center;
  top: 50%;
}

#container_buynow_btn {
  max-width: 100%;
  height: 50;
  margin: 0px;
  display: flex;
  justify-content: left;
  top: 50%;
}

.hero-unit {
  position: relative;
  border-bottom: 1px solid #000;
}

#videoPlaceholder {
  width: 100%;
  height: 100%;
}

#bgvid {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-caption {
  position: absolute;
  top: 20%;
  left: 15%;
  right: 15%;
  padding: 15px;
  z-index: 5;
  text-align: center;
}
.hero-caption h2 {
  font-size: 1.5rem;
}
.hero-caption h1 {
  font-size: 3.5rem;
}

.headline {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 65%;
}

#about-section {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%), url(../images/base/placeholders/chapters/chapter2_bg.png);
  padding: 10vh;
}

.features .col-md-4 {
  background-size: cover;
  background-position: center;
  min-height: 550px;
  padding: 10vh 5vw;
}
.features h2 {
  margin-top: 30vh;
  transition: 0.4s ease;
}
.features h2.short-hr-center::after {
  transition: 0.4s ease;
  width: 0;
}
.features p {
  opacity: 0;
  transition: 0.4s ease;
}

#features-section .feature-card:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/base/placeholders/feature.jpg);
}
#features-section .feature-card:nth-child(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/base/placeholders/feature.jpg);
}
#features-section .feature-card:nth-child(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/base/placeholders/feature.jpg);
}

.card-active h2 {
  margin-top: 20vh;
}
.card-active h2.short-hr-center::after {
  width: 100px;
}
.card-active p {
  opacity: 1;
}

.feature-card {
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
  border-bottom: 2px solid rgb(255, 255, 255);
}

.extra-features {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%), url(../images/base/placeholders/chapters/chapter1_bg.png);
  background-size: cover;
  border-bottom: 2px solid rgb(255, 255, 255);
  background-attachment: fixed;
}
.extra-features:nth-of-type(3) {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%), url(../images/base/placeholders/chapters/chapter2_bg.png);
  background-attachment: fixed;
}
.extra-features:nth-of-type(4) {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%), url(../images/base/placeholders/chapters/chapter3_bg.png);
  background-attachment: fixed;
}
.extra-features img {
  margin: 10vh auto 0 auto;
}
.extra-features .col-xl-8 {
  padding: 30vh 10% 25vh 10px;
}

.extra-features.right {
  text-align: right;
}
.extra-features.right .col-xl-8 {
  padding: 30vh 10px 25vh 10%;
}

.gallery-item {
  padding: 0;
  border: 0px solid rgb(255, 255, 255);
}
.gallery-item img {
  width: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.3s ease;
}
.overlay:hover {
  opacity: 0;
}

#cta-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../images/base/placeholders/chapters/chapter2_bg.png);
  padding: 8vh;
}
#cta-section h1 {
  font-size: 3rem;
}

.game-box {
  float: right;
  width: 80%;
  height: auto;
}

.platforms {
  max-width: 100%;
  height: auto;
}

#dlc-section .col-xl-6:nth-of-type(1) {
  padding-right: 0;
}
#dlc-section .col-xl-6:nth-of-type(2) {
  background: url(../images/bg.png) repeat;
}
#dlc-section img {
  float: right;
}
#dlc-section .button {
  margin: 20px 5px;
}

.dlc-card {
  padding: 10% 15px;
}

#extras {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/base/placeholders/bg.jpg);
}
#extras .headline {
  margin-top: 20vh;
  width: 70%;
}
#extras .social-links li {
  display: inline-block;
  border: 2px solid #FFF;
  border-radius: 50%;
  padding: 12px;
  margin: 0 5px;
}
#extras .social-links li i {
  vertical-align: middle;
  text-align: center;
  width: 25px;
  height: 15px;
}
#extras .social-links li:hover {
  background: #FFF;
}
#extras .social-links li:hover a {
  color: #f38321;
}

input {
  width: 60%;
  height: 45px;
  border: none;
  border-radius: 4px;
  background: #222;
  padding: 0 0 0 20px;
  outline: #333;
  color: #FFF;
}

#newsletter-box h2 {
  margin-bottom: 20px;
}
#newsletter-box .button {
  color: #FFF;
  background: #222;
  border: none;
  margin: 0;
  height: 45px;
  vertical-align: top;
}
#newsletter-box .button:hover {
  background: #bc1a1a;
}

.text-danger {
  font-family: Montserrat, sans-serif;
  font-size: 1.3rem;
  margin-top: 10px;
}

.text-success {
  font-family: Montserrat, sans-serif;
  font-size: 1.3rem;
  margin-top: 10px;
}

.upper-social {
  font-size: 12px;
  border-radius: 3px;
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  transition: 0.1s background-color linear, 0.1s color linear;
  padding: 10px 20px;
  margin-right: 1vh;
  margin-top: 1vh;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
}

.social-links {
  margin-top: 2vh;
}

#footer {
  width: 100%;
  min-height: 50px;
  height: auto;
  color: #AAA;
  background: url(../images/base/bg_footer.png) repeat;
  border-top: 0px solid #f38321;
  font-size: 14px;
  line-height: 20px;
}
#footer .row:only-child {
  padding: 20px 0;
}
#footer ul {
  margin-left: 0px 0;
}
#footer ul li {
  display: inline-block;
  margin-bottom: 10px;
  margin-left: 0px;
}
#footer ul li a {
  color: #BFB6CD;
}
#footer ul li a:hover {
  color: #f38321;
}

.brands {
  text-align: auto;
}
.brands img {
  width: auto;
  height: 50px;
  border: 15px;
  margin-left: 15px;
}

#footerinfo {
  transition: 0.3s ease;
  font-size: 12px;
  color: #BFB6CD;
  margin-bottom: 0px;
  margin-top: 10px;
  margin-left: 15px;
  text-decoration: underline;
}
#footerinfo:hover {
  color: orange;
}

#copyright {
  font-size: 12px;
  color: #BFB6CD;
  margin-bottom: 0px;
  margin-top: 10px;
  margin-left: 15px;
}
#copyright a {
  color: #BFB6CD;
  text-decoration: underline;
}

.extra-page {
  font-size: 0.875rem;
}
.extra-page a {
  color: #d71414;
}
.extra-page a:hover {
  color: #d71414;
  text-decoration: underline;
  text-decoration-color: #d71414;
}
.extra-page .hero-unit {
  min-height: 400px;
  background: #222;
  border: none;
}
.extra-page .hero-caption {
  margin-top: 25vh;
}
.extra-page .hero-caption h1 {
  font-size: 3.5rem;
}

.text-container ul {
  list-style: circle;
  margin-left: 40px;
}
.text-container ul li {
  margin: 5px 0;
}
.text-container ol li {
  margin: 5px 0;
}

.breadcrumb-nav {
  background: #171717;
  border: none;
  height: 60px;
}

.breadcrumb {
  border: none;
  background: none;
  margin: 0;
  height: 60px;
}
.breadcrumb li {
  padding-top: 5px;
}

#footer-extra {
  padding-top: 25px;
  border-top: 1px solid #d71414;
  background: url(../images/bg.png) repeat;
}
#footer-extra .social-links li {
  display: inline-block;
  border: 2px solid #FFF;
  border-radius: 50%;
  padding: 8px;
  margin: 0 5px;
}
#footer-extra .social-links li i {
  vertical-align: middle;
  text-align: center;
  width: 25px;
  height: 15px;
}
#footer-extra .social-links li a {
  color: #fff;
}
#footer-extra .social-links li:hover {
  background: #FFF;
}
#footer-extra .social-links li:hover a {
  color: #d71414;
}

.form-control-input {
  width: 100%;
}

.form-control-select {
  width: 100%;
  height: 45px;
  background: #222;
  border: none;
  outline: #333;
  color: #fff;
  padding: 0 0 0 20px;
}

.checkbox {
  font-size: 14px;
}
.checkbox input {
  width: auto;
  height: auto;
  vertical-align: -5%;
  margin-right: 0.375rem;
}

#privacyForm .button {
  width: 100%;
  margin-top: 0;
  height: 50px;
  font-size: 1.1rem;
}

.form-container {
  padding-top: 2em;
}

@media (max-width: 767px) {
  .tiny-margin {
    margin-bottom: 1.5em;
  }
  .small-margin {
    margin-bottom: 3em;
  }
  .medium-margin {
    margin-bottom: 4em;
  }
  .large-margin {
    margin-bottom: 6em;
  }
  .cookies-wrapper {
    padding: 15px 60px 15px 20px;
  }
  .cookies-bar .button {
    top: 30%;
  }
  .hero-caption h1 {
    font-size: 1rem;
  }
  .hero-caption h2 {
    font-size: 1rem;
  }
  .extra-features .col-xl-8 {
    padding: 30vh 15px;
  }
  .extra-features.right .col-xl-8 {
    padding: 30vh 15px;
  }
  .game-box {
    float: none;
    margin-bottom: 3vh;
  }
  .cta-card {
    text-align: center;
  }
  #dlc-section {
    padding: 5% 0;
    text-align: center;
  }
  #dlc-section .short-hr-left:after {
    margin: 10px auto;
  }
}
@media (max-width: 991px) {
  .navbar-dark {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    height: auto;
  }
  .full-width {
    padding: 20vh 0;
  }
  .navbar-collapse .dropdown-menu {
    background: none;
  }
  #extras {
    text-align: center;
    padding: 10vh 15px;
  }
  #extras .headline {
    margin: 0 0 3em 0;
  }
  #footer-extra .col-md-4 {
    margin-bottom: 2em;
    text-align: center;
  }
  #footer-extra .row:first-child {
    padding: 40px 0 20px 0;
  }
}
@media screen and (max-width: 750px) {
  #container_platforms_btns {
    visibility: hidden;
    clear: both;
    float: left;
    margin: 10px auto 5px 20px;
    width: 28%;
    display: none;
  }
}
@media (max-widtH: 988px) {
  .reviews {
    margin-top: 1em;
  }
}
@media (min-width: 1366px) {
  .features h2 {
    margin-top: 25%;
  }
  .card-active h2 {
    margin-top: 35%;
  }
}
@media (max-width: 1199px) {
  .extra-features img {
    display: none;
  }
  .extra-features .col-xl-8 {
    padding: 25vh 15vh;
  }
  .extra-features.right .col-xl-8 {
    padding: 25vh 15vh;
  }
  #dlc-section .col-xl-6:nth-of-type(1) {
    padding: 0;
  }
  #dlc-section img {
    width: 100%;
    float: none;
  }
}

/*# sourceMappingURL=main.css.map */