/* ***********************************************************
## FONTS
*********************************************************** */

@font-face {
    font-family: 'Trade Gothic LT Std-Bold';
    src: url('fonts/TradeGothicLTStd-Bold.woff2') format('woff2'),
        url('fonts/TradeGothicLTStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trade Gothic LT Std-BdCn20';
    src: url('fonts/TradeGothicLTStd-BdCn20.woff2') format('woff2'),
        url('fonts/TradeGothicLTStd-BdCn20.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trade Gothic LT Std-Light';
    src: url('fonts/TradeGothicLTStd-Light.woff2') format('woff2'),
        url('fonts/TradeGothicLTStd-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Utopia Std-Regular';
    src: url('fonts/UtopiaStd-Regular.woff2') format('woff2'),
        url('fonts/UtopiaStd-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ***********************************************************
## RESET
*********************************************************** */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background:transparent;
}

body {
  line-height: 1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  text-decoration: none;
  outline: 0;
  &:hover{
    text-decoration: none;
  }
}
/* General CSS */
.neo__menu {
  display: block;
  position: absolute;
  top: 45px;
  left: 50px;
  width: auto;
  min-width: 30px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  z-index: 5001;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 960px) {
  .neo__menu {
    top: 12px;
    left: 12px;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    left: calc(env(safe-area-inset-left, 0px) + 12px);
  }
}
.neo__menu > div {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.neo__scene__label {
  margin: 4px 0 0 50px;
  padding: 0;
  font-size: 23px;
  font-family: 'Trade Gothic LT Std-BdCn20', Arial;
  text-transform: uppercase;
  color: white;
  text-shadow: 2px 2px 4px black;
  padding-right: 5px;
  transition: opacity 0.4s ease-in-out;
}
@media screen and (max-width: 640px) {
  .neo__scene__label {
    opacity: 0;
  }
}
.neo__scene__label.hidden {
  display: none;
}
.neo__menu > div._front span {
  display: block;
  width: 30px;
  height: 1px;
  margin-bottom: 7px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 2px 2px black;
}
.neo__menu > div._front span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  -webkit-transform: translateX(-200%);
  -moz-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  -o-transform: translateX(-200%);
  transform: translateX(-200%);
  -webkit-transition: transform ease 300ms;
  -moz-transition: transform ease 300ms;
  -ms-transition: transform ease 300ms;
  -o-transition: transform ease 300ms;
  transition: transform ease 300ms;
}
.neo__menu > div._front span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: transform ease 300ms;
  -moz-transition: transform ease 300ms;
  -ms-transition: transform ease 300ms;
  -o-transition: transform ease 300ms;
  transition: transform ease 300ms;
}
.neo__menu > div._front span:nth-child(2):before,
.neo__menu > div._front span:nth-child(2):after {
  transition-delay: 75ms;
}
.neo__menu > div._front span:last-child {
  margin: 0;
}
.neo__menu > div._front span:last-child:before,
.neo__menu > div._front span:last-child:after {
  transition-delay: 150ms;
}
.neo__menu > div._back span {
  display: block;
  width: 24px;
  height: 1px;
  background: white;
  transform: translateY(50%) rotate(45deg) scaleX(0);
  transition: transform ease 200ms;
}
.neo__menu.active > div._back span {
  transition-delay: 450ms;
  transform: translateY(50%) rotate(45deg) scaleX(1);
}
.neo__menu.active > div._front span {
  box-shadow: none;
}
.neo__menu.active > div._front span:before {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.neo__menu.active > div._front span:after {
  -webkit-transform: translateX(200%);
  -moz-transform: translateX(200%);
  -ms-transform: translateX(200%);
  -o-transform: translateX(200%);
  transform: translateX(200%);
}
.neo__menu.active > div._back span:last-child {
  transform:translateY(-50%) rotate(-45deg) scaleX(1);
}
.neo__nav {
  box-sizing: border-box;
  width: 375px;
  max-width: 100%;
  height: 100%;
  padding: 150px 40px 150px 45px;
  background-color: rgba(17, 34, 56, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -moz-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, width 0.5s ease-in-out;
  -ms-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, width 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, width 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, width 0.5s ease-in-out;
}
@media screen and (max-height: 640px) {
  .neo__nav {
    padding-top: 60px;
    padding-bottom: 10px;
  }
}
.neo__nav.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.neo__nav > ul {
  list-style: none;
  list-style-type: none;
}
.neo__nav > ul > li {
  margin-bottom: 40px;
  cursor: pointer;
  user-select: none;
  font-size: 23px;
  font-family: 'Trade Gothic LT Std-BdCn20', Arial;
  text-transform: uppercase;
  position: relative;
  padding-left: 18px;
}
@media screen and (max-height: 640px) {
  .neo__nav > ul > li {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.neo__nav > ul > li > span.item__number {
  display: inline-block;
  margin-right: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
.neo__nav > ul > li > span.item {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  text-shadow: 0px 1px 2px black;
  vertical-align: top;
}
.neo__nav > ul > li > span.item:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: -7px;
  left: 0;
  -webkit-transition: width 0.5s ease-out;
  -moz-transition: width 0.5s ease-out;
  -ms-transition: width 0.5s ease-out;
  -o-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
}
@media screen and (max-height: 640px) {
  .neo__nav > ul > li > span.item:after {
    bottom: -3px;
  }
}
.neo__nav > ul > li > span.item.current:after {
  width: 100%;
}
.neo__nav > ul > li:hover > span.item:after {
  width: 100%;
}
.neo__overlay__close {
  display: block;
  position: absolute;
  top: 45px;
  right: 50px;
  width: auto;
  min-width: 30px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  z-index: 5001;
}
.neo__overlay__close > div {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.neo__overlay__close > div._back span {
  display: block;
  width: 24px;
  height: 1px;
  background: white;
  transform: translateY(50%) rotate(45deg) scaleX(0);
  transition: transform ease 200ms;
}
.neo__overlay__close.active > div._back span {
  transition-delay: 450ms;
  transform: translateY(50%) rotate(45deg) scaleX(1);
}
.neo__overlay__close.active > div._back span:last-child {
  transform:translateY(-50%) rotate(-45deg) scaleX(1);
}
.logo {
  display: block;
  position: absolute;
  z-index: 2;
  transition: opacity 0.5s ease-in-out;
}
.logo.hidden {
  opacity: 0;
  pointer-events: none;
}
.logo.branding {
  top: 50px;
  right: 45px;
  transition: all 0.3s ease-out;
}
.logo.branding.hidden {
  opacity: 0;
  pointer-events: none;
}
.logo.branding img {
  width: 165px;
  max-width: 165px;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 960px) {
  .logo.branding {
    top: 12px;
    right: 12px;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    right: calc(env(safe-area-inset-left, 0px) + 12px);
  }
}
/* Lightbox styles */
.mfp-wrap {
  z-index: 6000;
}
.mfp-container {
  background-color: #112236;
  padding: 0;
}
.mfp-content {
  height: 100%;
}
.mfp-close {
  top: 45px;
  right: 50px;
  width: 30px;
  height: 30px;
  transition: opacity 0.35s ease-out;
}
/* Lightbox fade/transition styles */
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
/* Carousel styles */
.owl-carousel {
  background-color: #112236;
}
.owl-carousel .owl-item > section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.owl-carousel .owl-item img {
  margin: 0 auto;
  max-height: calc(90vh - 100px);
  width: auto;
}
.owl-carousel .owl-dots {
  background-color: #112236;
  margin-top: 0;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom 0.4s ease-in-out;
}
@media screen and (max-width: 460px) {
  .owl-carousel .owl-dots {
    bottom: 75px;
  }
}
.owl-carousel .owl-dots .owl-dot span {
  transition: background 0.35s ease-out;
}
.owl-carousel .owl-dots .owl-dot span {
  background: #66717F;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background: #FFFFFF;
}
.owl-carousel .owl-dots .owl-dot:focus {
  outline: none;
}
.owl-carousel .owl-nav {
  margin-top: 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  -ms-transition: opacity 0.35s ease-in-out;
  -o-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
@media screen and (max-width: 960px) {
  .owl-carousel .owl-nav {
    display: none;
  }
}
.owl-carousel .owl-nav > button:focus {
  outline: none;
}
.owl-carousel .owl-nav > button.owl-prev.disabled,
.owl-carousel .owl-nav > button.owl-next.disabled {
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  -ms-opacity: 0.2;
  -o-opacity: 0.2;
  opacity: 0.2;
}
.owl-carousel .owl-nav > button.owl-prev:hover,
.owl-carousel .owl-nav > button.owl-next:hover {
  background: transparent;
}
.owl-carousel .owl-nav > button.owl-prev {
  margin: 0;
  position: fixed;
  top: 50%;
  left: 3vw;
  -webkit-transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  -ms-transition: opacity 0.35s ease-in-out;
  -o-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  -ms-opacity: 0.9;
  -o-opacity: 0.9;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.owl-carousel .owl-nav > button.owl-next {
  margin: 0;
  position: fixed;
  top: 50%;
  right: 3vw;
  -webkit-transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  -ms-transition: opacity 0.35s ease-in-out;
  -o-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  -ms-opacity: 0.9;
  -o-opacity: 0.9;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.owl-carousel .owl-nav > button img {
  width: 20px;
  height: 26px;
}
/* Poster content styles */
.poster__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.poster__content .owl-carousel {
  /* margin-top: 50px; */
}
.poster__border {
  display: none;
  width: calc(100vw - 2vw);
  height: calc(100vh - 2vw);
  background-color: transparent;
  border-radius: 10px;
  border: solid 1px white;
  position: absolute;
  top: 1vw;
  left: 1vw;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 460px) {
  .poster__border {
    width: calc(100vw - 4vw);
    height: calc(100vh - 4vw);
    top: 2vw;
    left: 2vw;
  }
}
.poster__headers {
  position: absolute;
  top: 45px;
  left: 50px;
  z-index: 2;
  max-width: calc(100% - 145px);
}
@media screen and (max-width: 460px) {
  .poster__headers {
    top: 105px;
  }
}
.poster__header,
.poster__sub__header {
  text-transform: uppercase;
}
.poster__header {
  font-family: "Trade Gothic LT Std-BdCn20";
  font-size: 23px;
  line-height: 1.1
}
.poster__header.has__icon {
  position: relative;
  padding-left: 65px;
}
.poster__header > img,
.poster__header > svg {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}
.poster__sub__header {
  font-family: "Trade Gothic LT Std-Light";
  font-weight: 100;
  font-size: 23px;
  margin-top: 5px;
}
.image__container {
  max-width: 90%;
  max-height: calc(100% - 100px);
}
figure {
  /* background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #112236;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  position: relative;
  margin: 0 auto; */
  background-size: cover;
  background-position: center center;
  background-position: center center;
  background-color: #112236;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  height: auto;
  position: relative;
  overflow: hidden;
}
figure:before,
figure:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
}
figure img {
  /* opacity: 0;
  visibility: hidden;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease-in-out; */
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 0;
  margin: 0 auto;
  visibility: visible;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
