* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Helvetica Neue,
    Lucida Grande, Segoe UI;
  font-style: normal;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #212936;
  margin: 0;
  padding: 0;
}
a {
  color: #42e8e0;
  transition: 0.3s all;
}
a:hover {
  text-decoration: none;
  color: #29c2ba;
  cursor: pointer;
}
.spinup-header {
  width: 100%;
  position: static;
  min-height: 100px;
  align-items: center;
  display: flex;
}
.su-container {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}
.spinup-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}
.spinup-logo {
  height: 36px;
  width: auto;
}
.spinup-logo img {
  height: 36px;
  width: auto;
}

.spinup-bg {
  position: absolute;
  bottom: auto;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1000px;
  height: 450px;
  transform-origin: 0% 100%;
  transform: skewY(-10deg);
  overflow: hidden;
  border: none;
  z-index: -1;
}

.spinup-bg:after {
  content: "";
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #121826;
}

.spinup-landing {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
}

nav {
  display: grid;
  column-gap: 10px;
  grid-auto-flow: column;
}

.btn-sm {
  padding: 8px 12px;
}

.btn-lg {
  padding: 15px 20px;
}

.btn-primary {
  color: #06071d;
  background: #42e8e0;
  font-weight: 500;
  transition: 0.3s ease;
  line-height: 1;
  font-size: 16px;
  border-radius: 0;
}

.btn-primary:hover {
  cursor: pointer;
  background: #0f524e;
  color: #fff;
}

.btn-secondary {
  color: #fff;
  border: 1px solid #42e8e0;
  font-weight: 500;
  transition: 0.3s ease;
  line-height: 1;
  font-size: 14px;
  border-radius: 0;
}

.btn-secondary:hover {
  cursor: pointer;
  background: #42e8e0;
  color: #06071d;
}

.btn-link {
  font-weight: 500;
  transition: 0.3s ease;
  line-height: 1;
  font-size: 14px;
  border-radius: 0;
  color: #8693a9;
}

.btn-link:hover {
  cursor: pointer;
  color: #42e8e0;
}

.btn-link-lg {
  font-weight: 500;
  transition: 0.3s ease;
  line-height: 1;
  font-size: 16px;
  border-radius: 0;
  color: #8693a9;
  text-decoration: none;
}

.btn-link-lg i {
  font-size: 18px;
}

.btn-link-lg:hover {
  cursor: pointer;
  color: #42e8e0;
}
.spinup-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 100px 0;
}
.spinup-banner-text {
  width: 40%;
}
.spinup-hero-img {
  width: 45%;
}

.spinup-hero-img img {
  width: 100%;
}

.spinup-banner-text h1 {
  font-size: 60px;
  line-height: 72px;
  margin: 0;
  margin-bottom: 10px;
}

.spinup-banner-text h2 {
  font-size: 48px;
  line-height: 60px;
  margin: 0;
  margin-bottom: 10px;
}

.spinup-banner-text p {
  font-size: 15px;
  line-height: 25px;
  margin: 0;
  color: #dcdce5;
}

.btn-container {
  display: grid;
  column-gap: 10px;
  grid-auto-flow: column;
  margin-top: 60px;
  width: fit-content;
}

.su-feature img {
  border-radius: 5px;
  filter: drop-shadow(1px 1px 1px #a6b3be);
}

.highlight {
  color: #42e8e0;
}

@media screen and (max-width: 991px) {
  .spinup-landing {
    height: 100%;
  }
  .spinup-header {
    min-height: 80px;
  }

  .spinup-signin {
    display: none;
  }

  .spinup-banner {
    margin: 50px 0;
    flex-direction: column;
  }
  .btn-container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .spinup-banner-text {
    width: 100%;
    margin-bottom: 60px;
  }
  .spinup-hero-img {
    width: 100%;
  }
  .spinup-bg {
    min-width: auto;
  }
  .spinup-banner-text h1 {
    font-size: 48px;
  }
  .su-container {
    width: 100%;
    padding: 0 30px;
  }
}
