@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@font-face {
  font-family: "NTF-Grand";
  src: url(./fonts/NTF-Grand-Regular.otf);
}

img {
  object-fit: contain;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  max-width: 100%;
  color: #ffffff;
}
body {
  background-color: #0d111b;
}
.header {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(13, 17, 27, 0.32) 0%,
    rgba(13, 17, 27, 0) 100%
  );
}

.logo {
  width: 160px;
  height: 32px;
}
.bannerWrapper {
  position: relative;
  padding-bottom: 30px;
  img {
    object-fit: cover;
  }
}
.content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-inline: 20px;
  left: 0;
}

.title {
  font-family: "NTF-Grand";
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin-bottom: 12px;
}

.normalText {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 12px;
}

.btn {
  border-radius: 8px;
  opacity: 1;
  padding: 10px 16px;
  gap: 8px;
  min-width: 120px;
  width: fit-content;
  margin: 24px auto;
  background-color: #dba300;
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  color: #0d111b;
  text-decoration: none;
  display: block;
}
.whyWrapper,
.offerWrapper,
.brandWrapper {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  max-width: 1312px;
  margin-inline: auto;
}

.subtitle {
  font-family: "NTF-Grand";
  font-weight: 700;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.btnSecondary {
  border-radius: 8px;
  opacity: 1;
  padding: 10px 16px;
  gap: 8px;
  min-width: 120px;
  width: fit-content;
  margin: 24px auto;
  background-color: #dba30014;
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  color: #dba300;
  text-decoration: none;
  display: block;
}

.cards {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}

.card {
  border: 1px solid #ffffff1f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #ffffff05;
  background-repeat: no-repeat;
  background-position: -5% 0%;
  background-size: 15%;
  backdrop-filter: blur(10px);
  overflow: hidden;
  & > img {
    margin: 30px;
  }
}

.card::before {
  content: "";
  width: 100px;
  background-image: var(--background-image);
  position: absolute;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 80% 10%;
  background-size: 200%;
  filter: blur(24px);
  opacity: 0.5;
  z-index: -1;
}
.info {
  padding: 21px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  width: auto;
}

.cardTitle {
  font-family: "NTF-Grand";
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 2%;
  text-transform: uppercase;
  margin-bottom: auto;
  text-align: left;
}
.cardDdescrition {
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  color: #ffffff99;
}

.answersContainer {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  width: 100%;
}

.answersColumn {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.answer {
  border: 1px solid #ffffff1f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #ffffff05;
  background-repeat: no-repeat;
  background-position: -5% 0%;
  background-size: 15%;
  backdrop-filter: blur(10px);
  overflow: hidden;
  & > img {
    margin: 24px;
  }
}

.answer::before {
  content: "";
  width: 100px;
  background-image: var(--background-image);
  position: absolute;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 80% 10%;
  background-size: 200%;
  filter: blur(24px);
  opacity: 0.5;
  z-index: -1;
}
.answerTitle {
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
}

.answerInfo {
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  width: auto;
}

.footerWrapper {
  position: relative;
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}

@media screen and (max-width: 800px) {
  .whyWrapper,
  .offerWrapper,
  .brandWrapper {
    padding-inline: 12px;
  }
  .header {
    padding: 13px;
  }
  .logo {
    width: 136px;
    height: 25px;
  }
  .bannerWrapper {
    padding-bottom: 220px;
    & > img {
      height: 400px;
    }
    .content {
      padding-bottom: 60px;
    }
  }
  .title {
    font-size: 42px;
    margin-bottom: 8px;
  }
  .normalText {
    font-size: 14px;
    line-height: 22px;
  }
  .subtitle {
    font-size: 32px;
  }
  .brandWrapper {
    padding-bottom: 220px;
    & > img {
      width: 100%;
      height: auto;
    }
  }
  .cards {
    flex-direction: column;
  }
  .card {
    & > img {
      width: 64px;
      height: 64px;
      margin: 24px 12px;
    }
  }
  .info {
    padding: 12px;
    gap: 4px;
  }

  .cardDdescrition {
    font-size: 12px;
  }

  .answersContainer {
    flex-direction: column;
  }
  .answerTitle {
    font-size: 16px;
  }
  .footerWrapper {
    padding-bottom: 100px;
    & > img {
      height: 450px;
      width: 100%;
      object-fit: cover;
    }
  }
}
