:root {
  --gray: #707070;
  --off-white: #f6f6f6;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: initial;
}
html,
body {
  width: 100%;
  overflow: auto;
  height: auto;
  -ms-touch-action: auto;
  touch-action: auto;
  -webkit-overflow-scrolling: touch;
}
.wrapper {
  height: auto;
  width: 100%;
  overflow: hidden;
}
a {
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
  display: inline-block;
}
img {
  pointer-events: none;
}
nav {
  position: relative;
  width: 100%;
  padding: 24px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 3;
}
nav a {
  font-size: 16px;
  color: #fff;
  letter-spacing: calc(-0.06 * 16px);
  line-height: 1.2;
}
.nav-cta {
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #fff;
  color: black;
  line-height: 1.2;
  display: inline-block;
}
.logo {
  font-size: 24px;
  letter-spacing: calc(-0.06 * 24px);
  text-transform: capitalize;
}
.navlinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
}
footer {
  position: relative;
  padding: 80px 0px;
  width: 100vw;
  height: auto;
  background-color: #000;
}
footer img {
  width: 100%;
  height: auto;
}
.footer-cta {
  -webkit-filter: blur(0.5px);
  filter: blur(0.5px);
  font-size: 16px;
  color: #000;
  background-color: #fff;
  letter-spacing: calc(-0.06 * 16px);
  padding: 16px 24px;
  border-radius: 14px;
  margin-top: 24px;
  margin-right: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 80px;
  background-color: #000;
}
.footer-logo {
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: calc(-0.06 * 20px);
  span {
    color: var(--gray);
    font-size: 14px;
  }
}
.terms {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: calc(-0.06 * 18px);
}
@media (max-width: 1440px) {
  nav {
    padding: 20px 40px;
  }
  .navlinks {
    gap: 32px;
  }
  .footer-cta {
    font-size: 14px;
    letter-spacing: calc(-0.06 * 14px);
    padding: 14px 20px;
    border-radius: 12px;
    -webkit-filter: blur(0.2px);
    filter: blur(0.2px);
  }
  .footer-links {
    padding: 20px 40px;
  }
}
@media (max-width: 1024px) {
  nav {
    padding: 16px 24px;
    .logo {
      font-size: 18px;
      letter-spacing: calc(-0.06 * 18px);
    }
  }
  .footer-links {
    padding: 16px 24px;
    .footer-logo {
      font-size: 18px;
      line-height: 1.2;
      letter-spacing: calc(-0.06 * 18px);
    }
    .terms {
      font-size: 16px;
      line-height: 1.2;
      letter-spacing: calc(-0.06 * 16px);
    }
  }
  .navlinks {
    gap: 24px;
  }
  .footer-cta {
    margin-top: 64px;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
@media (max-width: 420px) {
  .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 4px;
  }
}
@media (max-width: 480px) {
  .footer-cta {
    font-size: 3.333vw;
    letter-spacing: calc(-0.06 * 3.333vw);
    padding: 2.917vw 4.167vw;
    border-radius: 2.5vw;
    margin-top: 12vw;
  }
  .footer-logo {
    font-size: 3.75vw;
    letter-spacing: calc(-0.06 * 3.75vw);
  }
  .terms {
    font-size: 3.75vw;
    letter-spacing: calc(-0.06 * 3.75vw);
  }
}
