@charset "utf-8";

:root {
  --primary: #00A0FF;
  --secondary: #002040;
  --sectionbg: #272727;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #000000;
  overflow-x: hidden;
}
@font-face {
  font-family: headline;
  src: url("../fonts/AvenirNextLTPro-Bold.otf");
}
@font-face {
  font-family: body-text;
  src: url("../fonts/AvenirNextLTPro-Regular.otf");
}
@font-face {
  font-family: digital-clock;
  src: url("../fonts/DigitalDismay.otf");
}
h1, h2, h3, h4, h5, h6 {
  font-family: headline;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.1em;
}
h4 {
  font-size: 1rem;
}
h5 {
  margin-bottom: 1rem;
}
p {
  font-family: body-text;
  line-height: 1.5rem;
  margin-bottom: 2rem;
}
a {
  color: var(--primary);
  text-decoration: underline;
  transition: all .25s ease-in-out;
  font-weight: bolder;
}
a:hover {
  color: white;
}
.no-gutter {
	padding-left: 0;
	padding-right: 0;
}

/* CALL TO ACTION */

.CTA {
  background-color: var(--primary);
  border-radius: .5rem;
  border: 1px solid var(--primary);
  padding: .775rem 1.5rem .6rem;
  font-family: headline;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  display:inline-block;
  color: white;
  transition: all .25s ease-in-out;
}
.CTA:hover {
  background-color: var(--secondary);
  color: var(--primary);
  display:inline-block;
}

/* SPINNER CANVAS */

.spinner {
  position: fixed;
  opacity: .2;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  right: 0px;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%) scale(2);
  display: block;
  pointer-events: none;
  z-index: 1;
}

/* COUNTDOWN TIMER */

.time-container {
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
.time-container h3 {
  margin-top: 0;
  margin-bottom: -.1rem;
  color: var(--primary);
  font-size: 3.75rem;
  font-family: digital-clock;
  font-weight: lighter;
}
.time-container p {
  margin-bottom: 1.25rem !important;
  font-size: .75rem !important;
  color: var(--primary);
  font-family: headline;
}
.time-container .separator {
  font-family: body-text !important;
}
#countdownEnded {
  display: none;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* VIDEO BACKGROUND */

.video-bg {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0px;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

/* HEADER PARTS */

.header-content {
  width: 100%;
  height: 100%;
  color: white;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 4rem;
  z-index: 2;
}
.header-logo {
  max-width: 100%;
  max-height: 12rem;
  margin-bottom: 1rem;
}

/* SIGN-UP HEADER */

.signup-header {
  width: 100%;
  min-height: 100vh;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: black;
  overflow: hidden !important;
}
.signup-header::before {
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
}
.signup-header .details h1 {
	font-size: 3.5rem;
}
.signup-header .details h5 {
	margin-bottom: 1rem;
}
.signup-header .details h4 {
	margin-bottom: 0;
}
.signup-header .details span {
  color: var(--primary);
}
.signup-header .details p {
  margin-bottom: 0;
}
.signup-header .signup {
  background-image: linear-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, 0));
  padding: 2rem;
  border-radius: .5rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.signup-header .signup p {
  font-size: .9rem;
  line-height: .8rem;
  margin-bottom: 1rem;
}
.signup-header .signup .faded {
  opacity: .75;
  font-size: .75rem;
  margin-bottom: .75rem;
}
.signup-header .signup form {
  margin-bottom: 1rem;
}
.signup-header .signup .input-group {
  margin-bottom: .75rem;
}
.signup-header .signup .form-check {
  margin-bottom: .75rem;
}
.signup-header .signup .form-check-label {
  font-size: .9rem;
  line-height: .9rem;
}
.signup-header .signup .input-group .form-control:focus, .signup-header .signup .form-check .form-check-input:focus {
  border: 1px solid #ced4da;
  box-shadow: none;
}
.signup-header .signup .form-check .form-check-input:checked {
  background-color: var(--primary)!important;
  border: 0;
}
.signup-header .signup .input-group .form-control, .signup-header .signup .input-group span {
  font-size: .9rem;
  line-height: 1rem;
  height: 3rem;
}
.signup-header .signup .input-group .form-control::placeholder {
  opacity: .66;
}
.signup-header .signup .input-group span {
  width: 4.75rem;
  color: #666666;
}
.signup-header .signup .CTA {
  width: 100%;
}
#signup-form {
  display: block;
}
#altSubmit {
  display: none;
  margin-bottom: 2rem;
}
.signup-header .signup .poweredby {
  max-height: 1.5rem;
  margin-top: .5rem;
}
.signup-header .head-down {
  position: absolute;
  width: 100%;
  bottom: 2rem;
  text-align: center;
  color: white;
  opacity: .5;
  transition: all .25s ease-in-out;
}
.signup-header .head-down:hover {
  opacity: 1;
}
.signup-header .head-down h6 {
  font-size: .55rem;
	font-weight: lighter;
  margin-bottom: -.25rem;
	line-height: .55rem;
}
.signup-header .head-down a {
  text-decoration: none;
  color: white;
}

/* BODY SECTION */

.body-section {
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  padding-top: 12rem;
  padding-bottom: 0;
  background-color: var(--sectionbg);
  z-index: 2;
}
.body-section-content {
  width: 100%;
  height: 100%;
  color: white;
  padding-top: 0;
  padding-bottom: 12rem;
  position: relative;
}
.bg-paragraph {
  background-color: black;
  min-height: 100vh;
  width: 100%;
}
.bg-paragraph::before {
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.body-section h1 {
  margin-bottom: 1rem;
}

/* NFT DETAILS */

.nft-details h2 {
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: var(--primary);
}
.nft-details span {
  font-family: headline;
}
.nft-details p {
  line-height: 1.2rem;
  margin-bottom: .5rem;
}
.image-paragraph .inset-row img {
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 1rem;
}
.image-paragraph .inset-row h6 {
  margin-bottom: 1rem;
}
.ticket {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  position: relative;
}
.ticket-back {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.ticket-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateZ(30px);
}

/* TEXT BANNER */

.text-banner {
  background-color: var(--primary);
  padding-top: 4rem;
  padding-bottom: 0;
}
.text-banner .body-section-content {
  padding-top: 0;
  padding-bottom: 4rem;
}
.text-banner a {
  color: white;
  text-decoration: underline;
  transition: all .25s ease-in-out;
}
.text-banner a:hover {
  color: var(--secondary);
}
.text-banner .CTA {
  background-color: white;
  border-radius: .5rem;
  padding: .775rem 1.5rem .6rem;
  font-family: headline;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary);
  transition: all .25s ease-in-out;
}
.text-banner .CTA:hover {
  background-color: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}

/* MOBILE STACKER */

.stacker-icon {
  padding-left: 3rem;
  padding-right: 3rem;
}
.stacker-icon .image-container {
  height: 12rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: center;
  display: flex;
}
.stacker-icon img {
  max-width: 100%;
  max-height: 12rem;
  border-radius: .5rem;
}

/* CAROUSEL */

.carousel {
  overflow: hidden !important;
  background-color: black;
  z-index: 2;
}
.carousel-item::before {
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  position: absolute;
  z-index: 0;
}
.carousel-slide-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
  min-height: 80vh !important;
  color: white;
  position: relative;
  z-index: 2;
}
.carousel-indicators {
  z-index: 3;
}
.carousel-indicators [data-bs-target] {
  background-color: var(--primary);
}
.carousel-control-prev, .carousel-control-next {
  color: var(--primary) !important;
  z-index: 3;
}

/* IMAGE PARAGRAPH */

.image-paragraph img {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: .5rem;
}

/* DARK PARAGRAPH */

.dark-container {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 3rem 3rem 3.5rem;
  border-radius: .5rem;
}

/* BACKLESS BOX */

.backless-box {
	padding-top: 8rem;
  background: none;
  }
  .backless-box .body-section-content {
	padding-bottom: 8rem;
  }
  .backless-box strong {
    font-family: headline;
  }

/* LOGO ARRAY */

.logo-array {
	padding-top: 6rem;
	padding-bottom: 0;
}
.logo-array .body-section-content {
	padding-top: 0;
	padding-bottom: 6rem;
}
.logo-array h1 {
  margin-bottom: 2rem;
}
.logo-array img {
  width: 100%;
  margin: 1rem 0;
  border-radius: .5rem;
}

/* FOOTER */

.footer {
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: #111111;
  border-top: 2px var(--primary) solid;
  z-index: 2;
}
.footer-content {
  width: 100%;
  height: 100%;
  color: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
}
.footer img {
  max-width: 80%;
  max-height: 2rem;
  margin: 0 1rem 1.5rem;
  display: inline;
}
.footer p {
  font-size: .75rem;
  opacity: .33;
  margin-bottom: 1rem;
}
.footer .social-icon {
  max-height: 2rem;
  max-width: 2rem;
  margin-bottom: 0;
  margin-left: .5rem;
  margin-right: .5rem;
  opacity: .33;
  display: inline;
  transition: all .25s ease-in-out;
}
.footer .social-icon:hover {
  opacity: 1;
}
.footer hr {
  max-width: 18rem;
}
img.animated-footer {
  max-width: 100%;
  max-height: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* MODAL */

.modal {
  backdrop-filter: blur(5px);
}
.modal-content {
  background-color: var(--sectionbg);
  color: white;
  border: 1px var(--primary) solid;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25), 0 10px 20px 0 rgba(0, 0, 0, 0.25);
}
.modal-header {
  border-bottom: 0;
  padding: 1.5rem 2rem 1rem;
  color: var(--primary);
}
.modal .btn-close:focus {
  outline: none;
  box-shadow: none;
}
.modal-body {
  padding: 0 2rem 1rem;
}
.modal-body p {
  margin-bottom: 1rem;;
  font-size: .9rem;
  line-height: 1.5rem;
}
.modal-body p strong {
  font-family: headline;
}
.modal-footer {
  border-top: 0;
  padding: 1rem 2rem;
  justify-content: flex-start;
}
.modal-footer p {
  font-size: .75rem;
  color: white;
  opacity: .5;
  line-height: .75rem;
  margin-left: 0;
}

/* CUSTOMIZATIONS */

#signup-header::before {
  background-image: url("../img/new-bg.png");
  background-position: center center;
  opacity: .2;
}
#signup-header .video-bg {
  opacity: 0;
}
#carousel-slide-1::before {
  background-image: url("../img/sample-2.jpg");
  background-position: center center;
  opacity: .5;
}
#carousel-slide-1 .video-bg {
  opacity: 0;
}
#carousel-slide-2::before {
  background-image: url("../img/sample-4.jpeg");
  background-position: center center;
  opacity: .5;
}
#carousel-slide-2 .video-bg {
  opacity: 0;
}
#carousel-slide-3::before {
  background-image: url("../img/sample-5.webp");
  background-position: center center;
  opacity: .5;
}
#carousel-slide-3 .video-bg {
  opacity: 0;
}
#paragraph-1::before {
  background-image: url("../img/bio-bg.jpeg");
  background-position: center center;
  opacity: 1;
  background-attachment: fixed;
}
#paragraph-1 .video-bg {
  opacity: 0;
}
#paragraph-2::before {
  background-image: url("../img/sample-1.jpeg");
  background-position: center center;
  opacity: .5;
  background-attachment: fixed;
}
#paragraph-2 .video-bg {
  opacity: 0;
}

/* MOBILE ADJUSTMENTS */

@media only screen and (max-width: 1199px) {  /* XL BREAKPOINT */
  .footer-copyright {
    text-align: center !important;
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 991px) { /* LG BREAKPOINT */
  .container, .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .header-content {
    padding-bottom: 2rem;
  }
  .signup-header .details {
    text-align: center !important;
    padding-top: 2rem;
  }
  .signup-header .signup {
    background: none;
    padding-bottom: 2rem;
  }
  .signup-header .head-down {
    display: none;
  }
  .carousel-slide-content {
    min-height: inherit !important;
  }
  .body-section {
    padding-top: 6rem;
  }
  .body-section-content {
    padding-bottom: 6rem;
  }
  .nft-details {
    text-align: center!important;
  }
  .text-banner {
    padding-top: 4rem;
  }
 #paragraph-1::before, #paragraph-2::before {
    background-attachment: initial;
  }
  .backless-box {
	padding-top: 6rem;
  }
  .backless-box .body-section-content {
	padding-bottom: 6rem;
  }
}

@media only screen and (max-width: 575px) { /* SM BREAKPOINT */
  .body-section {
    padding-top: 4rem;
  }
  .body-section-content {
    padding-bottom: 4rem;
  }
  .backless-box {
	padding-top: 4rem;
  }
  .backless-box .body-section-content {
	padding-bottom: 4rem;
  }
}

@media only screen and (max-width: 400px) {  /* TINY BREAKPOINT */
  .time-container h3 {
	font-size: 3.25rem;
  }
  .time-container p {
	font-size: .6rem !important;
  }
}