body,
html {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(-28deg, #222, #333);
  color: white;
  overflow-x: hidden;
}

#content-wrapper,
html {
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  #content-wrapper,
html {
    scroll-behavior: auto;
  }
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  z-index: 10;
}
#nav .container {
  position: relative;
  height: 100%;
}
#nav a {
  text-decoration: none;
  color: white;
}
#nav a img {
  position: absolute;
  left: 14px;
  top: 15%;
  height: 70%;
}
#nav #menu-toggle {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (min-width: 721px) {
  #nav #menu-toggle {
    display: none;
  }
}
#nav #menu-toggle.open .menu-line:nth-child(2) {
  width: 0;
}
#nav #menu-toggle.open .menu-line:first-child {
  transform: translate(-50%, -10px) rotate(45deg);
}
#nav #menu-toggle.open .menu-line:last-child {
  transform: translate(-50%, 9px) rotate(-45deg);
}
#nav #menu-toggle .menu-line {
  transform-origin: left center;
  transition: transform 0.2s ease, width 0.1s ease;
  width: 66%;
  position: absolute;
  height: 2px;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}
#nav #menu-toggle .menu-line:first-child {
  transform: translate(-50%, -10px) rotate(0deg);
}
#nav #menu-toggle .menu-line:last-child {
  transform: translate(-50%, 9px) rotate(0deg);
}
#nav #nav-links {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 720px) {
  #nav #nav-links {
    right: -100%;
    top: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateX(0%);
    text-align: center;
  }
}
#nav #nav-links.open {
  transform: translateX(-100%);
}
#nav #nav-links .nav-link {
  padding: 7px 14px;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.7s ease;
}
@media screen and (max-width: 720px) {
  #nav #nav-links .nav-link {
    display: block;
    width: 100%;
    padding: 21px;
  }
}
#nav #nav-links .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.splash-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

#content-wrapper {
  position: fixed;
  top: 84px;
  left: 0;
  height: calc(100vh - 84px);
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

#coming-soon {
  width: 100%;
  height: 100%;
  position: relative;
}
#coming-soon .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#software-info .screenshot {
  text-align: center;
}
#software-info .screenshot img {
  filter: drop-shadow(0px 0px 14px black);
}
#software-info .content {
  margin-top: 21px;
}
#software-info img {
  width: 91%;
}

#device .content {
  padding-top: 14px;
}
#device .float-container {
  position: relative;
}
#device .float-container::after {
  content: "";
  position: absolute;
  width: 50%;
  left: 25%;
  bottom: 7px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 28px 7px rgba(0, 0, 0, 0.5);
  z-index: -1;
  -webkit-animation: floatShadow 4s ease-in-out infinite forwards;
          animation: floatShadow 4s ease-in-out infinite forwards;
}
#device .device-container {
  position: relative;
  filter: drop-shadow(0px 5px 5px black);
  -webkit-animation: float 4s ease-in-out infinite forwards;
          animation: float 4s ease-in-out infinite forwards;
}
#device .device-container img {
  width: 100%;
}
#device .row {
  margin-bottom: 21px;
}
#device .button-container {
  margin-top: 14px;
}

#videos-wrapper h4 {
  margin-top: 14px;
}
#videos-wrapper .video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 14px;
}
#videos-wrapper .video-container::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
#videos-wrapper .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button-container {
  text-align: center;
}
.button-container .button-wrapper {
  display: inline-block;
}
.button-container .button-wrapper p {
  font-weight: bold;
  margin-bottom: 7px;
}

.cta-btn {
  position: relative;
}
.cta-btn:hover::after {
  background-size: 200% 200%;
  -webkit-animation: gradientanim 5s ease infinite forwards;
          animation: gradientanim 5s ease infinite forwards;
}
.cta-btn::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff2400, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3, #ff2400);
  background-size: 400% 200%;
  -webkit-animation: gradientanim 30s linear infinite forwards;
          animation: gradientanim 30s linear infinite forwards;
}

button.btn {
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  color: #DDD;
  border: none;
  padding: 14px 21px;
  font-size: 21px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0px 14px;
  margin-top: 14px;
}
button.btn:hover {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
}
button.btn:hover::after {
  -webkit-animation: rainbow 3s linear infinite forwards;
          animation: rainbow 3s linear infinite forwards;
}
button.btn:hover #order-bg {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
}
button.btn:hover #order-bg::after {
  -webkit-animation: rainbow 3s linear infinite forwards;
          animation: rainbow 3s linear infinite forwards;
}
button #order-bg {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
button #order-bg:hover {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
}
button #order-bg:hover::after {
  -webkit-animation: rainbow 3s linear infinite forwards;
          animation: rainbow 3s linear infinite forwards;
}
button #order-bg::after {
  content: "";
  position: absolute;
  width: 103%;
  height: 103%;
  top: 0;
  left: 0;
  background: conic-gradient(#ff2400, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3, #ff2400);
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 3px 100%, 3px 3px, calc(100% - 3px) 3px, calc(100% - 3px) calc(100% - 3px), 3px calc(100% - 3px), 3px 100%, 100% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 3px 100%, 3px 3px, calc(100% - 3px) 3px, calc(100% - 3px) calc(100% - 3px), 3px calc(100% - 3px), 3px 100%, 100% 100%, 100% 0%);
}

#modal {
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  display: block;
}
#modal .modal-content {
  color: white;
  background: linear-gradient(-28deg, #222, #333) !important;
  opacity: 0.9;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
#modal #close-modal {
  background: none;
  border: none;
  font-size: 21px;
  padding: 3px;
  color: white;
}
#modal.show {
  pointer-events: all;
  opacity: 1;
}

section {
  width: 100vw;
  min-height: 80vh;
}

#backdrop {
  pointer-events: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0%;
  left: 0%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}
#backdrop.show {
  background-color: rgba(0, 0, 0, 0.3);
}

#footer {
  width: 100vw;
  height: 105px;
  text-align: center;
  padding-top: 35px;
}
#footer a {
  color: white;
}

@-webkit-keyframes gradientanim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientanim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes rainbow {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(-360deg);
  }
}
@keyframes rainbow {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(-360deg);
  }
}
@-webkit-keyframes blur {
  0% {
    filter: blur(0px);
  }
  50% {
    filter: blur(2px);
  }
  100% {
    filter: blur(0px);
  }
}
@keyframes blur {
  0% {
    filter: blur(0px);
  }
  50% {
    filter: blur(2px);
  }
  100% {
    filter: blur(0px);
  }
}
@-webkit-keyframes float {
  0% {
    transform: translateY(-7px);
  }
  60% {
    transform: translateY(21px);
  }
  100% {
    transform: translateY(-7px);
  }
}
@keyframes float {
  0% {
    transform: translateY(-7px);
  }
  60% {
    transform: translateY(21px);
  }
  100% {
    transform: translateY(-7px);
  }
}
@-webkit-keyframes floatShadow {
  0% {
    transform: scale(0.77);
  }
  60% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(0.77);
  }
}
@keyframes floatShadow {
  0% {
    transform: scale(0.77);
  }
  60% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(0.77);
  }
}/*# sourceMappingURL=styles.css.map */