/* ----------- media breakpoints down ----------- */
/* ----------- fonts ----------- */
/* ----------- colors ----------- */
/* ----------- buttons ----------- */
.btn.red {
  font-size: .9rem;
  line-height: 1em;
  font-family: "Vollkorn SC", serif;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  background: #9b2525;
  background: linear-gradient(0deg, #9b2525 0%, #760000 100%);
  transition: all .2s linear; }
  @media only screen and (max-width: 767.98px) {
    .btn.red {
      font-size: 1rem; } }
  .btn.red:hover {
    opacity: .8; }

/* ----------- text colors ----------- */
.text-white {
  color: #fff; }

.text-red {
  color: #7C0606; }

/* ----------- image src  ----------- */
/* ----------- main ----------- */
body {
  font-size: 18px;
  padding: 0;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background: #000;
  overflow-x: hidden;
  max-width: 100vw; }
  @media only screen and (max-width: 1499.98px) {
    body {
      font-size: 16px; } }

body, html {
  height: 100%; }

*:focus {
  box-shadow: none;
  outline: none; }

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

.text-light {
  font-weight: 300; }

.text-bold {
  font-weight: 700; }

.text-shadow {
  text-shadow: 2px 2px 9px black; }

b, strong {
  font-weight: 700; }

.section-title {
  font-size: 2.4em;
  margin: 0 auto;
  margin-bottom: 1em;
  font-family: "Vollkorn SC", serif;
  font-weight: bold; }
  @media only screen and (max-width: 767.98px) {
    .section-title {
      font-size: 2.2em;
      margin-bottom: 0.3em; } }
  @media only screen and (max-width: 767.98px) and (orientation: landscape) {
    .section-title {
      font-size: 1.8em;
      margin-bottom: 0.1em; } }
  .section-title span {
    margin-bottom: 0.3em;
    display: block;
    font-size: 0.7em;
    font-weight: 400; }

p {
  line-height: 1.4em; }

section {
  background: #fff;
  height: 100%;
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1; }
  section .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto 100%; }
    section .bg.bottom-right {
      background-position: bottom right; }
    section .bg.bottom-left {
      background-position: bottom left; }
    section .bg.bottom-full-width {
      background-position: bottom center;
      background-size: 100% auto; }
    section .bg.top-full-width {
      background-position: top center;
      background-size: 100% auto; }
    section .bg.max-w {
      background-size: auto 100%; }
    @media only screen and (max-width: 767.98px) {
      section .bg.top-full-width, section .bg.bottom-full-width, section .bg.bottom-left, section .bg.bottom-right {
        background-position: center center;
        background-size: cover; } }
    @media only screen and (max-width: 767.98px) {
      section .bg.mobile-relative {
        background-position: center center;
        background-size: cover;
        display: block;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: 100vw; } }
  section .cnt {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    padding-top: 12vh;
    z-index: 1; }
    @media only screen and (max-width: 767.98px) {
      section .cnt.mobile-relative {
        position: relative;
        top: auto;
        left: auto;
        height: auto;
        padding-bottom: 0;
        padding-top: 80px; } }
    @media only screen and (max-width: 767.98px) and (orientation: landscape) {
      section .cnt.mobile-relative {
        padding-top: 70px; } }
    section .cnt .slider {
      width: 50vw;
      min-height: 100px; }
    section .cnt .text {
      max-width: 60vw; }
      @media only screen and (max-width: 767.98px) {
        section .cnt .text {
          max-width: 100vw;
          padding: 0 15px; } }
      section .cnt .text p {
        line-height: 1.6em; }
        @media only screen and (max-width: 767.98px) and (orientation: landscape) {
          section .cnt .text p {
            line-height: 1.3em;
            margin-bottom: 5px;
            padding-bottom: 0;
            margin-top: 7px; } }
      section .cnt .text.short {
        max-width: 30vw; }
        @media only screen and (max-width: 767.98px) {
          section .cnt .text.short {
            max-width: 100vw; } }
      section .cnt .text.medium {
        max-width: 50vw; }
        @media only screen and (max-width: 767.98px) {
          section .cnt .text.medium {
            max-width: 100vw; } }
      section .cnt .text.left {
        margin-right: 30vw; }
        @media only screen and (max-width: 767.98px) {
          section .cnt .text.left {
            margin-right: 0; } }
      section .cnt .text.right {
        margin-left: 30vw; }
        @media only screen and (max-width: 767.98px) {
          section .cnt .text.right {
            margin-left: 0; } }
      section .cnt .text.two-cols {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: nowrap; }
        @media only screen and (max-width: 767.98px) {
          section .cnt .text.two-cols {
            flex-wrap: wrap; } }
        section .cnt .text.two-cols .col {
          padding: 20px; }
          @media only screen and (max-width: 767.98px) {
            section .cnt .text.two-cols .col {
              padding: 0; } }
          section .cnt .text.two-cols .col.w-40 {
            width: 40%;
            min-width: 40%; }
            @media only screen and (max-width: 767.98px) {
              section .cnt .text.two-cols .col.w-40 {
                width: 100%;
                min-width: 100%; } }
      section .cnt .text .btn-container {
        padding-top: 4vh; }
  section .top-decoration-type2 {
    position: absolute;
    left: 0;
    width: 100%;
    top: -170px;
    height: 200px;
    background-image: url("../assets/images/first-cover-layer-5.png");
    background-repeat: repeat-x;
    background-size: auto 100%; }
    @media only screen and (max-width: 767.98px) {
      section .top-decoration-type2 {
        top: -50px;
        height: 70px; } }
  section .top-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 9vw;
    background: transparent;
    margin-top: -8vw;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap; }
    section .top-decoration.without-margin {
      margin-top: 0; }
    section .top-decoration img {
      height: 100%; }

header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 999;
  box-sizing: border-box; }
  @media only screen and (max-width: 767.98px) {
    header.main-header {
      display: none; } }
  header.main-header .logo {
    width: 15vw;
    position: absolute;
    left: 2vw;
    top: 2vw;
    transition: all 0.2s linear; }
    header.main-header .logo img {
      max-width: 100%; }
      @media only screen and (max-width: 767.98px) {
        header.main-header .logo img {
          display: none; } }
      header.main-header .logo img.logo-mobile {
        height: 40px;
        display: none; }
        @media only screen and (max-width: 767.98px) {
          header.main-header .logo img.logo-mobile {
            display: block; } }
  header.main-header .right {
    position: absolute;
    right: 2vw;
    top: 2vw;
    width: 40vw;
    text-align: right;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap; }
    @media only screen and (max-width: 767.98px) {
      header.main-header .right {
        width: auto; } }
    @media only screen and (max-width: 767.98px) {
      header.main-header .right .social-media-icons {
        display: none; } }
    header.main-header .right .social-media-icons ul.social-media {
      margin: 0 2vw 0 auto; }
  header.main-header.fixed, header.main-header.fixed-mobile {
    width: 100%;
    height: 60px;
    background: #000;
    background: rgba(0, 0, 0, 0.95);
    top: -60px; }
    @media only screen and (max-width: 767.98px) {
      header.main-header.fixed, header.main-header.fixed-mobile {
        display: none; } }
    header.main-header.fixed .logo, header.main-header.fixed-mobile .logo {
      height: 40px;
      width: auto;
      left: 10px;
      top: 10px; }
      header.main-header.fixed .logo img, header.main-header.fixed-mobile .logo img {
        height: 100%; }
    header.main-header.fixed .right, header.main-header.fixed-mobile .right {
      top: 12px;
      right: 10px; }
      @media only screen and (max-width: 767.98px) {
        header.main-header.fixed .right, header.main-header.fixed-mobile .right {
          top: 16px; } }
      header.main-header.fixed .right .social-media-icons ul.social-media, header.main-header.fixed-mobile .right .social-media-icons ul.social-media {
        margin-right: 10px; }
        header.main-header.fixed .right .social-media-icons ul.social-media li, header.main-header.fixed-mobile .right .social-media-icons ul.social-media li {
          width: 20px;
          height: 20px;
          margin-right: 10px; }
          header.main-header.fixed .right .social-media-icons ul.social-media li img, header.main-header.fixed-mobile .right .social-media-icons ul.social-media li img {
            max-width: 20px;
            max-height: 20px; }
      header.main-header.fixed .right .btn, header.main-header.fixed-mobile .right .btn {
        font-size: 0.7rem; }
  @media only screen and (max-width: 767.98px) {
    header.main-header.fixed-mobile {
      display: block; } }

.social-media-icons ul.social-media {
  list-style: none;
  padding: 0;
  color: #898989;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap; }
  .social-media-icons ul.social-media li {
    margin-right: 1vw;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center; }
    .social-media-icons ul.social-media li:last-child {
      margin-right: 0; }
    .social-media-icons ul.social-media li a {
      color: #898989;
      vertical-align: middle;
      transition: all .2s linear; }
      .social-media-icons ul.social-media li a:hover {
        opacity: .8; }
      .social-media-icons ul.social-media li a img {
        width: 1.8vw;
        height: 1.8vw;
        max-width: 27px;
        max-height: 27px;
        vertical-align: middle; }

.cookies-info {
  position: fixed;
  padding: 15px 30px;
  background: #000;
  -webkit-box-shadow: -4px 16px 25px 12px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: -4px 16px 25px 12px rgba(0, 0, 0, 0.19);
  box-shadow: -4px 16px 25px 12px rgba(0, 0, 0, 0.19);
  z-index: 9999;
  width: 250px;
  margin: 0 auto;
  bottom: 20px;
  color: #c1c1c1;
  font-size: 1rem;
  line-height: 1.1rem;
  right: 20px; }
  @media only screen and (max-width: 767.98px) {
    .cookies-info {
      right: auto;
      left: 0;
      width: 100%;
      bottom: 0;
      transform: none;
      max-width: 100%;
      box-sizing: border-box; } }
  .cookies-info .close {
    padding: 0;
    margin: 0 auto;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: all .2s linear; }
    .cookies-info .close img, .cookies-info .close svg {
      max-width: 100%; }
    .cookies-info .close:hover {
      opacity: .8; }
  .cookies-info small {
    position: relative;
    padding-right: 20px;
    display: block; }
    .cookies-info small .btn {
      border: 0;
      background: transparent;
      color: #c1c1c1;
      cursor: pointer;
      padding: 0;
      text-decoration: underline;
      transition: all .2s linear; }
      .cookies-info small .btn:hover {
        opacity: .8; }

.top-section {
  position: relative;
  overflow: hidden; }
  .top-section .top-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    z-index: 1;
    background: black;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, black 100%); }
  .top-section .bottom-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 20vh;
    background: black;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%); }
  .top-section .logo {
    position: absolute;
    bottom: 32vh;
    left: 50%;
    transform: translateX(-50%);
    width: 50vh;
    z-index: 2; }
    @media only screen and (max-width: 575.98px) {
      .top-section .logo {
        width: 80vw; } }
  .top-section .text {
    position: absolute;
    text-align: center;
    z-index: 1;
    top: 15vh;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 5vh; }
    @media only screen and (max-width: 991.98px) {
      .top-section .text {
        width: 80vw; } }
    .top-section .text .title {
      font-size: 0.7em;
      text-transform: uppercase;
      margin-bottom: 2vh;
      font-weight: 400; }
      .top-section .text .title.v-2 {
        font-weight: 800;
        font-size: 1.2em; }
      .top-section .text .title span {
        display: block; }
    .top-section .text p {
      padding: 0;
      margin: 0 auto; }
      .top-section .text p .btn {
        font-size: 0.5em;
        padding: 13px 20px 10px 20px;
        font-weight: 400;
        line-height: 1em; }
  .top-section .scroll {
    position: absolute;
    bottom: 20vh;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: 0;
    box-shadow: none;
    width: 10vh;
    height: 10vh;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    opacity: .8;
    transition: all .2s ease-in-out; }
    @media only screen and (max-width: 991.98px) {
      .top-section .scroll {
        bottom: 8vh;
        width: 13vh;
        height: 13vh; } }
    .top-section .scroll:hover {
      opacity: 1; }
    .top-section .scroll img {
      width: 100%;
      animation: pulse 2s infinite; }
  .top-section #sparks-effect {
    z-index: 1;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 45vh;
    background: transparent; }
  .top-section .parallax-section {
    position: relative;
    height: 100%;
    background: #000; }
    .top-section .parallax-section .layer {
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      left: 0; }
      .top-section .parallax-section .layer[data-layer="0"] {
        text-align: center; }
        .top-section .parallax-section .layer[data-layer="0"] img {
          position: absolute;
          height: auto;
          width: 120vw;
          margin: 0 auto;
          bottom: -5vw;
          left: 50%;
          transform: translateX(-50%); }
          @media only screen and (max-width: 1199.98px) {
            .top-section .parallax-section .layer[data-layer="0"] img {
              bottom: auto;
              top: 0;
              width: auto;
              height: 100%; } }
      .top-section .parallax-section .layer[data-layer="1"] img {
        position: absolute;
        bottom: 5vh;
        height: 78vh;
        left: 50%;
        transform: translateX(-50%); }
        @media only screen and (max-width: 991.98px) {
          .top-section .parallax-section .layer[data-layer="1"] img {
            transform: translateX(-50%);
            width: auto;
            height: 70vh;
            margin: 0 auto; } }
        @media only screen and (max-width: 767.98px) {
          .top-section .parallax-section .layer[data-layer="1"] img {
            left: 20%; } }
      .top-section .parallax-section .layer[data-layer="2"] img {
        position: absolute;
        bottom: -2vh;
        width: 130vw;
        left: 50%;
        transform: translateX(-50%); }
      .top-section .parallax-section .layer[data-layer="3"] img {
        position: absolute;
        bottom: -10vh;
        width: 120vw;
        left: 50%;
        transform: translateX(-50%); }
      .top-section .parallax-section .layer[data-layer="4"] img {
        position: absolute;
        bottom: -20vh;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%); }

@keyframes pulse {
  0% {
    transform: scale(0.8); }
  50% {
    transform: scale(1); }
  100% {
    transform: scale(0.8); } }

[data-section="trailer-video"] {
  width: 100%;
  background: #000; }
  [data-section="trailer-video"] .top-decoration {
    z-index: 2; }
    @media only screen and (max-width: 767.98px) {
      [data-section="trailer-video"] .top-decoration {
        height: 10vh; } }
  [data-section="trailer-video"] .cnt {
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center; }
  [data-section="trailer-video"] .video-img {
    height: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0; }
  [data-section="trailer-video"] .btn-player {
    position: absolute;
    width: 115px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    box-shadow: none;
    border: 0;
    display: block;
    opacity: .15;
    cursor: not-allowed;
    transition: all .2s linear; }
    [data-section="trailer-video"] .btn-player.active {
      opacity: 1;
      cursor: pointer; }
    [data-section="trailer-video"] .btn-player span {
      padding-top: 5px;
      line-height: 1.4em;
      display: block; }
    [data-section="trailer-video"] .btn-player img {
      max-width: 100%; }
    [data-section="trailer-video"] .btn-player:hover {
      opacity: .8;
      width: 120px; }
  [data-section="trailer-video"] .video {
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden; }
    [data-section="trailer-video"] .video img {
      width: 100%;
      max-width: 100%; }
    [data-section="trailer-video"] .video video {
      min-width: 100%;
      min-height: 100%; }
      @media only screen and (max-width: 1199.98px) {
        [data-section="trailer-video"] .video video {
          object-fit: cover;
          text-align: center;
          height: 100%;
          width: auto; } }
      @media only screen and (max-width: 767.98px) {
        [data-section="trailer-video"] .video video {
          width: 100%; } }

[data-section="about"] {
  background: #000; }
  @media only screen and (max-width: 767.98px) {
    [data-section="about"] .bg {
      position: absolute;
      bottom: 0;
      top: auto;
      height: 49vh; } }
  @media only screen and (max-width: 767.98px) and (orientation: landscape) {
    [data-section="about"] .bg {
      height: 100vh; } }
  [data-section="about"] .cnt {
    padding-bottom: 40vw; }
    @media only screen and (max-width: 767.98px) {
      [data-section="about"] .cnt .text {
        padding-right: 40px; } }

[data-section="rewrite-the-myth"] {
  background: #7C0606; }
  @media only screen and (max-width: 767.98px) {
    [data-section="rewrite-the-myth"] .bg {
      position: absolute;
      bottom: 3vh;
      top: auto;
      height: 49vh; } }
  @media only screen and (max-width: 767.98px) and (orientation: landscape) {
    [data-section="rewrite-the-myth"] .bg {
      height: 100vh; } }
  @media only screen and (max-width: 767.98px) {
    [data-section="rewrite-the-myth"] .cnt .text {
      padding-right: 40px; } }

[data-section="forge"] {
  background: #000; }
  [data-section="forge"] .decoration {
    width: 80vw;
    position: absolute;
    transform: rotate(45deg);
    top: -20vw;
    left: -20vw; }
    @media only screen and (max-width: 767.98px) {
      [data-section="forge"] .decoration {
        display: none; } }
    [data-section="forge"] .decoration img {
      width: 100%; }
  [data-section="forge"] .cnt .text {
    max-width: 50vw; }
    @media only screen and (max-width: 767.98px) {
      [data-section="forge"] .cnt .text {
        max-width: 100%; } }
  @media only screen and (max-width: 767.98px) {
    [data-section="forge"] .bg {
      position: absolute;
      bottom: -5vh;
      top: auto;
      height: 79vh;
      background-position: 0 0 !important; } }

[data-section="hack-and-slash"] {
  background: #fff; }
  @media only screen and (max-width: 767.98px) {
    [data-section="hack-and-slash"] .bg {
      position: absolute;
      bottom: 0;
      top: auto;
      height: 49vh; } }
  @media only screen and (max-width: 767.98px) and (orientation: landscape) {
    [data-section="hack-and-slash"] .bg {
      height: 100vh; } }
  @media only screen and (max-width: 767.98px) {
    [data-section="hack-and-slash"] .cnt .text {
      padding-right: 40px; } }

[data-section="gallery"] {
  min-height: 70vh; }
  @media only screen and (max-width: 767.98px) {
    [data-section="gallery"] {
      min-height: 60vh;
      height: 60vh; } }
  @media only screen and (max-width: 767.98px) and (orientation: landscape) {
    [data-section="gallery"] {
      min-height: 100vh;
      height: 100vh; } }
  [data-section="gallery"] .slider-cnt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap; }
    [data-section="gallery"] .slider-cnt .clouds {
      position: absolute;
      width: 100%; }
      [data-section="gallery"] .slider-cnt .clouds img {
        max-width: 100%; }
    [data-section="gallery"] .slider-cnt .slider {
      position: relative;
      width: 100vh;
      margin-top: -15vh;
      z-index: 2; }
      @media only screen and (max-width: 767.98px) {
        [data-section="gallery"] .slider-cnt .slider {
          width: 80vw;
          margin-top: 0; } }
      @media only screen and (max-width: 767.98px) and (orientation: landscape) {
        [data-section="gallery"] .slider-cnt .slider {
          width: 50vw; } }
      [data-section="gallery"] .slider-cnt .slider:before {
        position: absolute;
        display: block;
        content: "";
        width: 102%;
        height: 101%;
        background: #DADADA;
        z-index: -1;
        transform: rotate(4deg); }
      [data-section="gallery"] .slider-cnt .slider .item {
        z-index: 1;
        position: relative; }
        [data-section="gallery"] .slider-cnt .slider .item img {
          width: 100%; }
      [data-section="gallery"] .slider-cnt .slider .slick-prev, [data-section="gallery"] .slider-cnt .slider .slick-next {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        z-index: 2;
        background: #963838;
        background: linear-gradient(0deg, #963838 0%, #6a0505 100%);
        transition: all .2s ease-in-out; }
        @media only screen and (max-width: 767.98px) {
          [data-section="gallery"] .slider-cnt .slider .slick-prev, [data-section="gallery"] .slider-cnt .slider .slick-next {
            width: 50px;
            height: 50px; } }
        [data-section="gallery"] .slider-cnt .slider .slick-prev:before, [data-section="gallery"] .slider-cnt .slider .slick-next:before {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background-repeat: no-repeat;
          background-position: center center;
          background-size: 20% auto;
          background-image: url("../assets/images/nav-icon.png");
          content: "";
          transition: all .2s ease-in-out;
          opacity: 1; }
        [data-section="gallery"] .slider-cnt .slider .slick-prev:hover:before, [data-section="gallery"] .slider-cnt .slider .slick-next:hover:before {
          opacity: .7; }
      [data-section="gallery"] .slider-cnt .slider .slick-prev {
        left: -35px; }
        @media only screen and (max-width: 767.98px) {
          [data-section="gallery"] .slider-cnt .slider .slick-prev {
            left: -25px; } }
      [data-section="gallery"] .slider-cnt .slider .slick-next {
        right: -35px; }
        @media only screen and (max-width: 767.98px) {
          [data-section="gallery"] .slider-cnt .slider .slick-next {
            right: -25px; } }
        [data-section="gallery"] .slider-cnt .slider .slick-next:before {
          transform: rotate(180deg); }

[data-section="combat"] {
  background: #000; }
  [data-section="combat"] .decoration {
    width: 80vw;
    position: absolute;
    transform: rotate(-25deg);
    top: 0;
    left: -20vw;
    z-index: 2; }
    [data-section="combat"] .decoration img {
      width: 100%; }
  @media only screen and (max-width: 767.98px) {
    [data-section="combat"] .bg {
      position: absolute;
      bottom: 0;
      top: auto;
      height: 49vh; } }

[data-section="bottom-section"] {
  position: relative;
  background: #010810;
  min-height: 100vw;
  height: auto; }
  [data-section="bottom-section"] .bg {
    z-index: 1; }
  [data-section="bottom-section"] .bg-parallax {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-top: -2vw;
    z-index: 0; }
    @media only screen and (max-width: 767.98px) {
      [data-section="bottom-section"] .bg-parallax {
        z-index: 0;
        bottom: auto;
        top: auto;
        background-size: cover;
        width: 100%;
        height: 80vh;
        text-align: center;
        margin-top: 30vh; } }
    [data-section="bottom-section"] .bg-parallax img {
      width: 105%; }
      @media only screen and (max-width: 767.98px) {
        [data-section="bottom-section"] .bg-parallax img {
          position: absolute;
          width: auto;
          height: 100%;
          left: 50% !important;
          transform: translateX(-50%) !important; } }
  [data-section="bottom-section"] .cnt-cols {
    position: relative;
    text-align: center;
    margin: 0 auto;
    padding-top: 2vw;
    z-index: 2; }
    @media only screen and (max-width: 767.98px) {
      [data-section="bottom-section"] .cnt-cols {
        max-width: 100%;
        width: 100%;
        padding-bottom: 200vw; } }
    [data-section="bottom-section"] .cnt-cols .box {
      width: 68vw;
      margin: 0 auto;
      margin-bottom: 33vw; }
      @media only screen and (max-width: 991.98px) {
        [data-section="bottom-section"] .cnt-cols .box {
          margin-bottom: 24vw; } }
      @media only screen and (max-width: 767.98px) {
        [data-section="bottom-section"] .cnt-cols .box {
          width: 100%;
          max-width: 100%;
          margin: 0 auto;
          padding: 0; } }
      [data-section="bottom-section"] .cnt-cols .box .logo {
        width: 37vw;
        height: auto;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 18vw;
        margin-top: 10vh; }
        @media only screen and (max-width: 767.98px) {
          [data-section="bottom-section"] .cnt-cols .box .logo {
            width: 80vw;
            margin-bottom: 5vw; } }
        [data-section="bottom-section"] .cnt-cols .box .logo img {
          max-width: 100%; }
      [data-section="bottom-section"] .cnt-cols .box .cols {
        position: relative;
        margin: 0 auto;
        text-align: center;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%; }
        @media only screen and (max-width: 767.98px) {
          [data-section="bottom-section"] .cnt-cols .box .cols {
            flex-wrap: wrap; } }
        [data-section="bottom-section"] .cnt-cols .box .cols .col {
          margin: 0 8%;
          width: 20%;
          position: relative;
          padding: 10px;
          line-height: 1.4em; }
          @media only screen and (max-width: 767.98px) {
            [data-section="bottom-section"] .cnt-cols .box .cols .col {
              margin: 0 auto;
              width: 100%;
              max-width: 100%;
              padding: 10px 30px; } }
          @media only screen and (max-width: 767.98px) {
            [data-section="bottom-section"] .cnt-cols .box .cols .col p {
              margin-bottom: 0;
              padding-bottom: 0; } }
          [data-section="bottom-section"] .cnt-cols .box .cols .col:after {
            position: absolute;
            top: 50%;
            left: 100%;
            width: 70%;
            height: 1px;
            content: "";
            background: #fff; }
            @media only screen and (max-width: 767.98px) {
              [data-section="bottom-section"] .cnt-cols .box .cols .col:after {
                top: auto;
                left: 50%;
                width: 1px;
                height: 20px;
                content: "";
                bottom: -19px; } }
          [data-section="bottom-section"] .cnt-cols .box .cols .col:first-child {
            margin-left: 0; }
          [data-section="bottom-section"] .cnt-cols .box .cols .col:last-child {
            margin-right: 0; }
            [data-section="bottom-section"] .cnt-cols .box .cols .col:last-child:after {
              display: none; }
  [data-section="bottom-section"] .main-footer {
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 767.98px) {
      [data-section="bottom-section"] .main-footer {
        margin-top: 30px; } }
    [data-section="bottom-section"] .main-footer .box {
      max-width: 500px;
      padding-left: 30px;
      padding-bottom: 30px;
      font-size: 13px;
      line-height: 1.2em; }
      @media only screen and (max-width: 1499.98px) {
        [data-section="bottom-section"] .main-footer .box {
          max-width: 40vw;
          font-size: 1vw;
          line-height: 1.4vw; } }
      @media only screen and (max-width: 767.98px) {
        [data-section="bottom-section"] .main-footer .box {
          max-width: 100%;
          padding: 15px;
          font-size: 0.8rem;
          line-height: 1.2rem; } }
      [data-section="bottom-section"] .main-footer .box .top .logo {
        width: 200px;
        margin-bottom: 20px; }
        @media only screen and (max-width: 767.98px) {
          [data-section="bottom-section"] .main-footer .box .top .logo {
            margin: 0 auto;
            margin-left: 0; } }
        [data-section="bottom-section"] .main-footer .box .top .logo img {
          max-width: 100%;
          height: auto; }
      [data-section="bottom-section"] .main-footer .box .cols {
        border-top: 1px solid #898989;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        padding-top: 30px;
        margin-top: 30px; }
        @media only screen and (max-width: 767.98px) {
          [data-section="bottom-section"] .main-footer .box .cols {
            flex-wrap: wrap; } }
        [data-section="bottom-section"] .main-footer .box .cols .col {
          width: 50%; }
          @media only screen and (max-width: 767.98px) {
            [data-section="bottom-section"] .main-footer .box .cols .col {
              width: 100%; } }
          @media only screen and (max-width: 767.98px) {
            [data-section="bottom-section"] .main-footer .box .cols .col.left {
              text-align: center;
              font-size: 1rem; } }
          [data-section="bottom-section"] .main-footer .box .cols .col small {
            color: #fff;
            padding-bottom: 5px;
            display: block;
            font-size: 13px;
            white-space: nowrap; }
            @media only screen and (max-width: 1499.98px) {
              [data-section="bottom-section"] .main-footer .box .cols .col small {
                font-size: 0.7rem; } }
            @media only screen and (max-width: 767.98px) {
              [data-section="bottom-section"] .main-footer .box .cols .col small {
                font-size: 1rem;
                white-space: initial; } }
            [data-section="bottom-section"] .main-footer .box .cols .col small a {
              color: #fff; }
          [data-section="bottom-section"] .main-footer .box .cols .col a.link {
            color: #898989;
            text-decoration: underline; }
            @media only screen and (max-width: 767.98px) {
              [data-section="bottom-section"] .main-footer .box .cols .col a.link {
                margin-top: 10px;
                display: block; } }
          [data-section="bottom-section"] .main-footer .box .cols .col.right .social-media-icons {
            text-align: right; }
            [data-section="bottom-section"] .main-footer .box .cols .col.right .social-media-icons .social-media {
              justify-content: flex-end; }
              @media only screen and (max-width: 767.98px) {
                [data-section="bottom-section"] .main-footer .box .cols .col.right .social-media-icons .social-media {
                  justify-content: center;
                  margin-top: 30px; } }
              @media only screen and (max-width: 767.98px) {
                [data-section="bottom-section"] .main-footer .box .cols .col.right .social-media-icons .social-media li {
                  width: 25px;
                  height: 25px;
                  margin: 0 5px;
                  text-align: center; } }
              @media only screen and (max-width: 767.98px) {
                [data-section="bottom-section"] .main-footer .box .cols .col.right .social-media-icons .social-media li img {
                  width: auto;
                  height: 19px; } }

.modal-container {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  display: none; }
  .modal-container.active {
    display: flex; }
  .modal-container .bg {
    display: block;
    position: absolute;
    z-index: 0;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .modal-container .modal {
    z-index: 1;
    width: 60vw;
    max-width: 800px; }
    @media only screen and (max-width: 767.98px) {
      .modal-container .modal {
        width: 80vw;
        height: auto; } }
    .modal-container .modal iframe {
      width: 100%;
      min-height: 50vh; }
