@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy Bold';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  background-color: #0D0014;
  color: white;
  font-family: 'Gilroy', sans-serif;
}

header {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  width: calc(100% - 32px);
  background-color: #000;
  padding: 16px;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.25);
}

header img {
  height: 60px;
}

.landing {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 104px;
  background: linear-gradient(95deg, rgba(24, 0, 39, 0.18) 2.84%, rgba(24, 0, 39, 0.15) 23.05%, rgba(24, 0, 39, 0.10) 45.41%, rgba(24, 0, 39, 0.00) 66.54%), linear-gradient(100deg, rgba(24, 0, 39, 0.20) 4.09%, rgba(24, 0, 39, 0.18) 55%, rgba(24, 0, 39, 0.00) 100%), url('../img/landing-background.jpg') lightgray 50% / cover no-repeat;
  background-size: cover;
  background-position: center;
}

.landing-content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 15px;
}

.landing-content > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.landing h1 {
  margin: 0 0 15px 0;
  font-size: 64px;
  font-family: 'Gilroy Bold', sans-serif;
  font-weight: 800;
  line-height: 78px;
  color: #FFF;
  letter-spacing: -0.64px;
}

.landing-offer {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.landing-offer h2 {
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 2px #A08E31;
  font-family: 'Gilroy', sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.cta-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  padding: 16px 30px;
  background: #00E99A;
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Gilroy Bold', sans-serif;
  letter-spacing: 0.2px;
  border-radius: 32px;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
}

.cta-link:hover {
  transition: 0.3s;
  background-color: #3dffbe;
}

.tc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: calc(100% - 30px);
  max-width: 1320px;
  height: calc(100vh - 705px);
  margin: 0 auto;
  padding: 60px 15px;
  background-color: #000;
}

.tc .landing-payments-logos {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 450px;
  margin-bottom: 30px;
}

.tc .landing-payments-logos img {
  height: 26px;
}

.tc .terms-info {
  margin: 0px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  font-weight: 400;
  font-family: 'Gilroy', sans-serif;
}

footer {
  background: #140b36;
  color: white;
}

footer section {
  max-width: 1320px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 30px 15px;
}

footer p {
  margin: 0 0 40px 0;
}

footer p a {
  color: white;
}

footer .copyright, footer .warning {
  text-align: center;
}

footer .underline {
  text-decoration: underline;
}

footer div.images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

footer div.images img {
  max-height: 30px;
}

footer div.images:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1600px) {
  .landing h1 {
    font-size: 64px;
  }

  .landing-offer h2 {
    font-size: 30px;
  }
}

@media (max-width: 1200px) {
  .landing h1 {
    font-size: 58px;
  }

  .landing-offer h2 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  header img {
    height: 53px;
  }

  .landing {
    align-items: flex-start;
    margin-top: 84px;
  }

  .landing-content {
    margin-top: 40px;
    padding: 30px 15px;
  }

  .landing-content > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .landing h1 {
    font-size: 50px;
    letter-spacing: -0.50px;
  }

  .landing-offer h2 {
    font-size: 24px;
  }

  .landing-offer p {
    font-size: 14px;
  }

  .cta-link {
    font-size: 20px;
  }

  .tc, .tc .landing-payments-logos {
    justify-content: center;
    align-items: center;
  }

  .tc .landing-payments-logos img {
    height: 34px;
  }

  .tc .terms-info {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  header img {
    height: 48px;
  }

  .landing-content > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .landing h1 {
    text-shadow: none;
    font-size: 36px;
    font-weight: 700;
    line-height: 43px;
    letter-spacing: -0.36px;
  }

  .landing-offer {
    margin-bottom: 15px;
  }

  .landing-offer img {
    display: none;
  }

  .landing-offer h2 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
  }

  .cta-link {
    max-width: 320px;
    width: calc(100% - 60px);
    font-size: 16px;
    font-weight: 800;
    padding: 14px 30px;
  }

  .tc .landing-payments-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tc .landing-payments-logos img {
    height: 21px;
  }

  .tc .terms-info {
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.80);
  }
}