/* Landing Page */

.lp-main {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.lp-sub {
  grid-row-gap: 40px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 960px;
  text-decoration: none;
  display: flex;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.lp-content {
  text-align: center;
}

.lp-logo,
.wip-logo {
  vertical-align: middle;
  width: 135px;
  max-width: 100%;
}

.lp-logo,
.lp-heading,
.lp-btn a:first-child button,
.lp-btn a:last-child button {
  opacity: 0;
  animation: fadeInFull 1s ease-in-out 1s forwards;
}

.lp-heading {
  color: #fff;
  text-align: center;
  margin: 24px 0px;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  padding: 0 1rem;
}

.lp-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.lp-btn button {
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  text-decoration: none;
  display: flex;
  border-radius: 0;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-size: 10px;
  line-height: 16px;
}

.lp-btn a:first-child button {
  background: #9a0000;
  border: 1px solid #9a0000;
  color: #fff;
}

.lp-btn a {
  color: #fff;
  text-decoration: none;
}

.lp-btn a:last-child button {
  background: transparent;
  border: 1px solid #9a0000;
  color: #fff;
}

.lp-bg {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  background-color: black;
}

.lp-bg video {
  object-fit: cover;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.25;
}

/* Work In Progress Page */
.wip-info {
  margin: 3rem 0px 4.5rem;
}

.wip-heading {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  padding: 0 1rem;
  margin: 0.25rem 0 0 0;
}

.wip-heading span {
  opacity: 0;
}

/**
   * ==============================================
   * Dot Pulse
   * ==============================================
   */
.dot-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 4px 0;
  margin: 0 -5%;
  overflow: hidden;
}

.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ff7a7a;
  color: #ff7a7a;
  box-shadow: 9999px 0 0 -5px;
  animation: dot-pulse 1.5s infinite linear;
  animation-delay: 1.25s;
}

.dot-pulse::before,
.dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

.dot-pulse::before {
  right: 2px;
}

.dot-pulse::after {
  left: 2px;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  animation: dot-pulse-before 1.5s infinite linear;
  animation-delay: 1s;
  background-color: #ffd3d3;
  color: #ffd3d3;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  animation: dot-pulse-after 1.5s infinite linear;
  animation-delay: 1.5s;
  background-color: #9a0000;
  color: #9a0000;
}

.wip-btn button {
  border: solid 2px #cd3535;
  border-radius: 2rem;
  padding: 1rem 2rem;
  background: transparent;
  color: #cd3535;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.wip-btn a {
  text-decoration: none;
}

@media (min-width: 767px) {
  .lp-logo,
  .lp-heading,
  .lp-btn a:first-child button,
  .lp-btn a:last-child button {
    opacity: 0;
    animation: fadeInHalf 1s ease-in-out 1s forwards;
    transition: opacity 100ms ease-in-out;
  }

  .lp-logo:hover,
  .lp-heading:hover,
  .lp-btn a:first-child:hover button,
  .lp-btn a:last-child:hover button {
    opacity: 1 !important;
  }

  .lp-logo,
  .wip-logo {
    width: 150px;
  }

  .lp-heading,
  .wip-heading {
    font-size: 28px;
    padding: 0;
  }

  .wip-heading span {
    font-size: 34px;
  }
}

@media (min-width: 991px) {
  .lp-logo,
  .wip-logo {
    width: 165px;
  }

  .lp-heading,
  .wip-heading {
    font-size: 32px;
  }

  .lp-btn button {
    padding: 12px 24px;
    font-size: 12px;
    line-height: 20px;
  }

  .wip-heading span {
    font-size: 36px;
  }
}

@media (min-width: 1439px) {
  .lp-logo,
  .wip-logo {
    width: 180px;
  }

  .lp-heading,
  .wip-heading {
    font-size: 36px;
  }

  .wip-heading span {
    font-size: 38px;
  }
}

/* KEYFRAMES */

/* Landing Page Content */
@keyframes fadeInHalf {
  to {
    opacity: 0.5;
  }
}

/* Work In Progress */
@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px;
  }
}

@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px;
  }
}

@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px;
  }
}
