.main-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-desc {
  padding: 10px 0;
  backdrop-filter: blur(4px);
  background: #000c2c;

  p {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 128%;
    text-align: center;
    color: #eee;
  }
}

.header-nav {
  display: none;
}

.page-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.page-nav-link {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 113%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  transition:
    text-shadow 0.3s ease,
    transform 0.3s ease;
}

.page-nav-link:hover {
  text-shadow: 5px 5px 10px #000;
  transform: translateY(-3px);
}

@media screen and (min-width: 1440px) {
  .header-nav {
    display: block;
    padding: 20px 0;
    background: #0034b8;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }

  .header-desc {
    p {
      font-size: 12px;
      text-align: center;
    }
  }
}

/* popup */

.page-popup {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  width: 500px;
  max-width: 100%;
  left: 50%;
  border: 4px solid #fff;
  border-radius: 12px;
  padding: 18px;
  background: #0034b8;
  transform: translateX(-50%);
  transition: transform 0.4s ease;
}

.popup-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #eee;
  margin-bottom: 22px;
}

.popup-btn {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 122%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #040401;

  display: block;
  width: fit-content;
  border-radius: 12px;
  padding: 11px 21px;
  box-shadow: 0 4px 10px 0 rgba(13, 16, 21, 0.6);
  background: #fff;
  text-align: center;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.popup-btn:hover {
  color: #0034b8;
  text-shadow: 5px 5px 10px #000;
}

.popup-wrap {
  display: flex;
  justify-content: center;
  gap: 17px;
}

@media screen and (min-width: 1440px) {
  .page-popup {
    padding: 18px;
  }

  .popup-text {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .popup-btn {
    font-size: 18px;
  }
}

/* hero  */

.hero-wrapper {
  background-image: url(../img/home.jpg);
  background-size: cover;
  background-position: center;
}

.dashboard {
  padding-top: 111px;
  padding-bottom: 0;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product {
  height: 100%;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 22px 32px;
  background: linear-gradient(90deg, #000c2c 0%, #002a99 100%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition:
    background-image 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.product:hover {
  box-shadow: 0 0 26px 0 #fff;
  background: #0034b8;

  .product-link {
    box-shadow: 0 0 26px 0 #fff;
  }
}

.product-logo {
  border: 1px solid #04f2f7;
  border-radius: 8px;
  width: 225px;
  height: 120px;
  padding: 8px;
  background: linear-gradient(90deg, #000 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.number {
  width: 79px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.product-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;

  img {
    width: 24px;
  }

  h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: #fff;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: #fff;
  }

  span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: #fff;
  }
}

.product-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 167%;
  text-align: center;
  color: #fff;
}

.product-link {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 18px;
  line-height: 117%;
  text-transform: uppercase;
  text-align: center;
  color: #000c2c;

  flex-shrink: 0;
  display: block;
  width: fit-content;
  border-radius: 12px;

  border: 1px solid #04f2f7;
  border-radius: 12px;
  background: #fff;
  padding: 24px 30px;
  transition:
    color 0.3s ease,
    box-shadow 0.3s ease;
}

@media screen and (min-width: 768px) {
  .products-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: normal;
    gap: 22px;
  }

  .products-list > div {
    width: calc((100% - 22px) / 2);
  }
}

@media screen and (min-width: 1440px) {
  .dashboard {
    padding-top: 180px;
  }

  .products-list {
    flex-direction: column;
  }

  .products-list > div {
    width: 100%;
  }

  .product {
    flex-direction: row;
    padding: 12px 32px;
  }

  .product-logo {
    flex-shrink: 0;
    padding: 12px;
  }

  .numder-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .number {
    width: 88px;
  }

  .product-link {
    flex-shrink: 0;
  }
}

/* best  */

#best {
  padding-top: 0;
}

.best-wheel {
  margin: 0 auto;
}

.best-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 1440px) {
}

/* faq  */

#faq {
  background-image: url(../img/faq.jpg);
  background-position: center;
  background-size: cover;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.faq-item {
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 18px 32px;
  background-color: #0034b8;
  background-image: linear-gradient(90deg, #000c2c 0%, #002a99 100%);
  transition:
    box-shadow 0.4s ease,
    background-image 0.4s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 0 26px 0 #fff;
  background-image: none;
}

.faq-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 12px;
  border-bottom: 1px solid #fff;
  margin-bottom: 12px;
}

.faq-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #fff;
}

@media screen and (min-width: 1440px) {
  .faq-item {
    border-radius: 8px;
    padding: 18px 32px;
  }
}

/* disclaimer  */

#disclaimer {
  background-image: url(../img/home.jpg);
  background-position: center;
  background-size: cover;
  padding: 69px 0;
}

.disclaimer-content {
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 26px 17px;
  background: #000c2c;
  background-color: #0034b8;
  background-image: linear-gradient(90deg, #000c2c 0%, #002a99 100%);
  transition:
    box-shadow 0.4s ease,
    background-image 0.4s ease;
  cursor: pointer;

  h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 133%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: 12px;
  }

  p {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    margin-bottom: 32px;
  }
}

.disclaimer-content:hover {
  box-shadow: 0 0 26px 0 #fff;
  background-image: none;
}

.pay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;

  img {
    width: calc((100% - 30px) / 3);
    max-width: max-content;
  }
}

@media screen and (min-width: 768px) {
  .pay {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (min-width: 1440px) {
  #disclaimer {
    padding: 160px 0;
  }

  .disclaimer-content {
    border-radius: 12px;
    padding: 29px 64px;

    h2 {
      font-size: 36px;
      margin-bottom: 12px;
    }

    p {
      font-size: 16px;
      margin-bottom: 32px;
    }
  }
}

/* footer */

.footer {
  padding: 36px 0px;
  border-top: 2px solid #fff;
  backdrop-filter: blur(14px);
  background: #000c2c;
}

.footer-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;

  a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #fff;
    transition:
      color 0.4s ease,
      text-shadow 0.4s ease;
  }

  a:hover {
    color: #0034b8;
    text-shadow: 5px 5px 10px #fff;
  }
}

.footer-desc {
  h3 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    text-align: center;
    color: #fff;
  }

  h4 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    text-align: center;
    color: #fff;
    margin-bottom: 12px;
  }

  a:hover {
    color: #0034b8;
    text-shadow: 5px 5px 10px #fff;
  }
}

.footer-text {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 1440px) {
  .footer {
    padding: 51px 0;
  }

  .footer-list {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;

    a {
      font-size: 16px;
    }
  }

  .footer-desc {
    h3 {
      font-size: 16px;
    }

    h4 {
      font-size: 16px;
      margin-bottom: 20px;
    }
  }

  .footer-text {
    font-size: 16px;
  }
}

/* ********************* */

.hidden {
  display: none;
}

.menu-transform {
  transform: translateY(0);
}

.click {
  transform: rotate(180deg);
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
