/* Spaceweek Overrides */
html {
  scroll-behavior: smooth;
}
:root {
  --canaveral-blue: #459cd1;
  --canaveral-light-blue: #8fc4e3;
  --canaveral-dark-blue: #377da7;
}
.bg-primary {
  background-color: var(--canaveral-blue) !important;
}

.text-primary {
  color: var(--canaveral-blue) !important;
}
.hr-primary {
  border-color: var(--canaveral-blue) !important;
}

.font-weight-ultra {
  font-weight: 900;
}

.kicker {
  text-transform: uppercase;
  font-weight: bold;
  color: #333;
  margin-bottom: 0;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 3px;
  vertical-align: middle;
  background-color: var(--canaveral-blue);
  margin-right: 0.5rem;
}

.kicker + h2 {
  line-height: 1;
}

.kicker + h2::after {
  content: "";
  display: block;
  max-width: 8rem;
  height: 0.5rem;
  vertical-align: middle;
  background-color: var(--canaveral-blue);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.kicker + h2 .highlight {
  color: var(--canaveral-blue);
}

/* header */
.spacevideo {
  margin-bottom: -8rem;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.underline-removed a {
  text-decoration: none;
}

.future-img {
  margin-top: -10vh;
}

.star-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.stars {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ecf0f1;
  box-shadow: 0 0 2px #ecf0f1, 0 0 4px #ecf0f1, 0 0 8px #ecf0f1;
  border-radius: 50%;
  animation: twinkle 5s infinite;
  opacity: 0.5;
}

.banner-bg {
  background: radial-gradient(
    ellipse at bottom,
    #1b2735 0%,
    #090a0f 100%
  ) !important;
}

.cstar {
  display: none;
}

.astar {
  display: none;
}

.ostar {
  display: none;
}

.pstar {
  display: none;
}

.kstar {
  display: none;
}

@media (min-width: 992px) {
  .spaceu-logo {
    margin-left: -15vw;
  }

  .cstar {
    display: block;
  }

  .astar {
    display: block;
  }

  .ostar {
    display: block;
  }

  .pstar {
    display: block;
  }

  .kstar {
    display: block;
  }
}

/* hero */
.spaceweek-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 16% 20%,
      rgba(255, 255, 255, 0.75) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 78% 16%,
      rgba(255, 255, 255, 0.6) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 68% 68%,
      rgba(255, 255, 255, 0.55) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 30% 80%,
      rgba(255, 255, 255, 0.45) 0 1px,
      transparent 2px
    ),
    radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  background-size: 180px 180px, 230px 230px, 280px 280px, 340px 340px, auto;
}

.spaceweek-hero .container {
  position: relative;
  z-index: 1;
}

.spaceweek-hero-brand {
  width: 180px;
  height: auto;
}

.spaceweek-hero-eyebrow {
  color: #8fc4e3;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spaceweek-hero-video {
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
}

.spaceweek-hero .btn-space {
  color: #fff;
  border-color: #4c9bd2;
  background-color: #4c9bd2;
}

.spaceweek-hero .btn-space:hover,
.spaceweek-hero .btn-space:focus {
  color: #fff;
  border-color: #397aaa;
  background-color: #397aaa;
}

@media (max-width: 767.98px) {
  .spaceweek-hero .display-3 {
    font-size: 2.75rem;
  }
}

/* space week buttons */
.btn-space {
  color: #fff;
  background-color: #4c9bd2;
  border-color: #4c9bd2;
  display: inline-block;
}

.btn-space:hover {
  color: #fff !important;
  background-color: #397aaa !important;
  /* ~10% darker */
  border-color: #397aaa !important;
}

.btn-space:focus {
  color: #fff !important;
  background-color: #3e8ac0 !important;
  border-color: #3e8ac0 !important;
  box-shadow: 0 0 0 0.25rem rgba(76, 155, 210, 0.5);
}

.btn-space:active,
.btn-space.active {
  color: #fff;
  background-color: #397aaa;
  /* ~20% darker */
  border-color: #397aaa;
}

.btn-space:active:focus,
.btn-space.active:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 155, 210, 0.5);
}

.btn-space:disabled,
.btn-space.disabled {
  color: #fff;
  background-color: #4c9bd2;
  border-color: #4c9bd2;
  opacity: 0.65;
  pointer-events: none;
}

.btn-space-outline {
  color: #4c9bd2;
  background-color: transparent;
  border: 3px solid #4c9bd2;
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
}

.btn-space-outline:hover {
  color: #fff;
  background-color: #4c9bd2;
  border-color: #4c9bd2;
}

.btn-space-outline:focus {
  color: #fff;
  background-color: #4c9bd2;
  border-color: #4c9bd2;
  box-shadow: 0 0 0 0.25rem rgba(76, 155, 210, 0.5);
}

.btn-space-outline:active,
.btn-space-outline.active {
  color: #fff;
  background-color: #397aaa;
  border-color: #336e9a;
}

.btn-space-outline:active:focus,
.btn-space-outline.active:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 155, 210, 0.5);
}

.btn-space-outline:disabled,
.btn-space-outline.disabled {
  color: #4c9bd2;
  background-color: transparent;
  border-color: #4c9bd2;
  opacity: 0.65;
  pointer-events: none;
}