/* Fonts */
@font-face {
  font-family: 'FuturaStd';
  src: url('_fonts/FuturaStd-Book.woff2') format('woff2'),
  url('_fonts/FuturaStd-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans', sans-serif;
  src: url('_fonts/FuturaStd-Bold.woff2') format('woff2'),
      url('_fonts/FuturaStd-Bold.woff') format('woff');
  font-weight: bold;
  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: 1080px) {
  .neo__menu {
    top: 12px;
    left: 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: 0 0 0 50px;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  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: 263px;
  max-width: 100%;
  height: 100%;
  padding: 150px 50px;
  background-color: rgba(9, 17, 28, 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: 45px;
    padding-bottom: 10px;
  }
  .neo__menu {
    top: 12px;
    left: 12px;
  }
}
.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;
  position: relative;
  padding-left: 24px;
}
@media screen and (max-height: 460px) {
  .neo__nav > ul > li {
    margin-bottom: 16px;
  }
  .neo__menu {
    top: 12px;
    left: 12px;
  }
}
.neo__nav > ul > li > span.item__number {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  margin-right: 6px;
  position: absolute;
  top: 0;
  left: 0;
  transition: font-size 0.35s ease-in-out;
}
.neo__nav > ul > li > span.item {
  display: inline-block;
  position: relative;
  vertical-align: top;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  transition: font-size 0.35s ease-in-out;
}
@media screen and (max-height: 460px) {
  .neo__nav > ul > li > span.item__number {
    font-size: 14px;
  }
  .neo__nav > ul > li > span.item {
    font-size: 14px;
  }
}
.neo__nav > ul > li > span.item:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: white;
  position: absolute;
  z-index: -1;
  bottom: -5px;
  left: 0px;
  -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;
}
.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 {
  display: none !important;
  top: 50px;
  right: 45px;
  transition: all 0.3s ease-out;
}
.logo.branding.hidden {
  opacity: 0;
  pointer-events: none;
}
.logo.branding img {
  width: 84px;
  max-width: 84px;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1080px) {
  .logo.branding {
    top: 12px;
    right: 12px;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    right: calc(env(safe-area-inset-left, 0px) + 12px);
  }
}
.logo.neoscape,
.logo.republic {
  bottom: 28px;
  right: 45px;
  transition: all 0.3s ease-out;
}
.logo.neoscape img,
.logo.republic img {
  width: 70px;
  height: auto;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1080px) {
  .logo.neoscape,
  .logo.republic {
    bottom: 110px;
    right: 12px;
    right: calc(env(safe-area-inset-right, 0px) + 12px);
  }
  .logo.neoscape img,
  .logo.republic img {
    width: 50px;
  }
}
/* Lightbox styles */
.mfp-wrap {
  z-index: 6000;
}
.mfp-container {
  background-color: #112238;
  padding: 0;
}
.mfp-content {
  height: 100%;
}
.mfp-iframe-holder .mfp-content {
  max-width: 85vw;
}
.mfp-close,
.mfp-iframe-holder .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;
}
