@charset "utf-8";

/* CSS Document */
:root {
  --primary: #00a0ff;
  --secondary: #091220;
}
html {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
}
body {
  background-color: black;
  padding: 0;
  margin: 0;
}
@font-face {
  font-family: headline;
  src: url("../fonts/AvenirNextLTPro-Bold.otf");
}
@font-face {
  font-family: body-text;
  src: url("../fonts/AvenirNextLTPro-Regular.otf");
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: headline;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1em;
}
p {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
strong {
  font-family: headline;
}
.parallel {
  background-color: #444444;
  border-radius: 5px;
  padding: 0.5rem 1rem 0.35rem;
  font-family: headline;
  font-weight: bold;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.25s ease-in-out;
  margin-bottom: 2rem;
}
.parallel:hover {
  background-color: #006dac;
  color: var(--primary);
  text-decoration: none;
}
.parallel.active {
  background-color: var(--primary);
  color: white;
}
.CTA {
  background-color: var(--primary);
  padding: 15px 30px;
  border: 1px solid var(--primary);
  border-radius: 0.5rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-family: headline;
  transition: all 0.25s ease-in-out;
}
.CTA:hover {
  background-color: var(--secondary);
  color: var(--primary);
}
.mobile-only-show {
  display: none;
}
.body-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  padding-bottom: 0;
  background-color: black;
  overflow: hidden;
}
.signup-section {
  background-color: var(--primary);
  color: white;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.signup-section h5 {
  margin-bottom: 0;
  margin-top: 0.4rem;
}
.signup-header .signup.signup-section {
  font-size: 0.7rem;
  line-height: 0.9rem;
}
.signup-section .form-control {
  font-size: 0.8rem;
  height: 38px;
}
.signup-section .form-control::placeholder {
  opacity: 0.66;
}
.signup-section p {
  margin-bottom: 1.25rem;
}
.signup-section .CTA {
  background-color: transparent;
  padding: 6px 20px;
  border: 1px solid white;
  border-radius: 0.5rem;
  width: 100%;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-family: headline;
  transition: all 0.25s ease-in-out;
}
.signup-section .CTA:hover {
  background-color: white;
  color: var(--primary);
}
.map-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: black;
  position: relative;
  overflow: hidden;
}
.map-section::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background-image: url("../img/nftday-map-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.25;
}
.map-section .map-image img {
  max-width: 90%;
}
.body-section-content {
  width: 100%;
  height: 100%;
  color: white;
  padding-top: 0;
  position: relative;
}
.body-section img {
  max-width: 100%;
}
.body-section .main-text img {
  max-width: 100%;
  max-height: 2.5rem;
}
.body-section .main-text span {
  color: var(--primary);
}
.body-section .main-text ul {
  padding-left: 1rem;
  margin-bottom: 2.5rem;
}
.body-section .main-text li {
  margin-bottom: 0.1rem;
  margin-left: 0;
}
.video-bg {
  min-width: 100%;
  min-height: 100%;
  opacity: 0.25;
  position: absolute;
  top: 50%;
  right: 0px;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.main-text h2 {
  margin-bottom: 1.25rem;
}
p.parallels {
  line-height: 2.5rem;
  margin-bottom: 1.25rem;
}
.card-column {
  padding: 2rem;
}
.flipcard {
  transform-style: preserve-3d;
  transform: perspective(100rem);
  background: none;
  z-index: 99;
  position: relative;
  translate: 0 0 100rem;
}
.flipcard:hover {
  z-index: 999;
  cursor: grab;
}
.flipcard img {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  transition: all 0.25s ease-in-out;
}
.flipcard .card-container {
  transition: 0.5s;
  transform-style: preserve-3d;
  position: relative;
  animation: Zrotation 10s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.flipcard .card-container:hover {
  animation-play-state: paused;
}
.flipcard .card-front {
  transform-style: preserve-3d;
  transform: rotateY(0deg);
}
.flipcard .card-back {
  transform-style: preserve-3d;
  transform: rotateY(180deg);
  position: absolute;
  top: 0;
  left: 0;
}
.flipcard .front-background,
.flipcard .back-background {
  pointer-events: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.flipcard .front-foreground,
.flipcard .back-foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: scale(0.98);
  translate: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.flipButton,
.touch-icon {
  position: relative;
  padding: 1.5rem;
  opacity: 0.5;
}
.flipButton a {
  color: white;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.flipButton a:hover {
  color: #00a0ff;
  cursor: pointer;
}
#flip-to-front {
  display: none;
}
#playerButton:hover,
#playerButtonTwo:hover {
  cursor: pointer;
}
#cardMusic {
  display: hidden;
}
.title-bar hr {
  border: 1px solid var(--primary);
  opacity: 1;
  max-width: 150px;
}
.logo-block {
  background-color: #222222;
  padding-top: 8rem;
  padding-bottom: 8rem;
  color: white;
  position: relative;
  z-index: 3;
}
.logo-block img {
  max-width: 66%;
  margin-bottom: 2rem;
}
.about-section {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: white;
  color: black;
  position: relative;
  overflow: hidden;
}
.about-section .logo {
  align-items: center;
  justify-content: center;
  display: flex;
}
.about-section .logo img {
  max-width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.footer {
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
  color: #555555;
  border-top: 2px var(--primary) solid;
  position: relative;
  z-index: 6;
}
.footer .content img.main-logo {
  margin-bottom: 1.5rem;
}
.footer .content img {
  max-width: 100%;
  max-height: 2rem;
  margin-bottom: 1rem;
}
.footer .content p {
  font-size: 0.75rem;
}
.footer .content hr {
  max-width: 66%;
  border-color: #333333;
  opacity: 1;
  margin-bottom: 1.5rem;
}
.footer .content a {
  opacity: 0.3;
}
.footer .content a img {
  margin-bottom: 0;
}
.footer .content a:hover {
  opacity: 1;
}
.footer .display-image img {
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .signup-section {
    position: relative;
  }
  .title-bar h5 {
    margin-bottom: 0.5rem;
  }
  .form-control {
    margin-bottom: 0.75rem;
  }
  .signup-section {
    padding-bottom: 1rem;
  }
  .body-section {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 2rem;
  }
  .mobile-only-show {
    display: block;
  }
}
