.main-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-desc {
  padding: 10px 0;
  backdrop-filter: blur(4px);
  background: #1d001f;

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    text-align: center;
    color: #fff;
  }
}

.header-nav {
  display: none;
}

.page-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.page-nav-link {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

.page-nav-link:hover {
  color: #ff5f00;
}

@media screen and (min-width: 1440px) {
  .header-nav {
    display: block;
    padding: 20px 0;
    backdrop-filter: blur(22px);
    background: #400043;
    border-bottom: 1px solid #fff;
  }

  .header-desc {
    p {
      font-size: 12px;
      text-align: center;
    }
  }
}

/* popup */

.page-popup {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  left: 50%;
  border: 4px solid #ff5f00;
  border-radius: 22px;
  padding: 18px;
  background: #400043;
  transform: translateX(-50%);
  transition: transform 0.4s ease;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #eee;
  margin-bottom: 22px;
}

.popup-btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 122%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #1d001f;

  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:
    background-color 0.3s ease,
    color 0.3s ease;
}

.popup-btn:hover {
  background-color: #ff5f00;
  color: #fff;
}

.popup-wrap {
  display: flex;
  justify-content: center;
  gap: 17px;
}

@media screen and (min-width: 1440px) {
  .page-popup {
    width: 600px;
  }

  .popup-text {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .popup-btn {
    font-size: 18px;
  }
}

/* hero  */

.hero-wrapper {
  background-image: url(../img/hero.jpg);
  background-size: cover;
  background-position: center;
}

.dashboard {
  padding-top: 92px;
}

.products-list {
  padding: 20px 10px;
  border-radius: 22px;
  backdrop-filter: blur(12px);
  background: rgba(93, 22, 96, 0.8);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product {
  height: 100%;
  padding: 12px 18px;
  border: 4px solid transparent;
  border-radius: 12px;
  box-shadow: 0 0 26px 0 #400043;
  background: #6b0070;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition:
    background-image 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.product:hover {
  box-shadow: 0 0 26px 0 #ff5f00;
  background: #400043;

  .product-link {
    box-shadow: 0 0 26px 0 #ff5f00;
  }
}

.product-logo {
  border-radius: 12px;
  width: 100%;
  height: 160px;
  background: #59025d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.number {
  display: none;
}

.product-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;

  img {
    width: 24px;
  }

  h2 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    color: #fff;
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    color: #fff;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #fff;
  }
}

.product-link {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 88%;
  text-align: center;
  color: #fff;

  flex-shrink: 0;
  display: block;
  width: fit-content;
  border-radius: 12px;

  padding: 29px 42px;
  background: linear-gradient(180deg, #ff5f00 0%);
  transition:
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.desctop-title {
  display: none;
}

@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: 160px;
  }

  .desctop-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 180px;
    background: #400043;
    border-radius: 30px 30px 0 0;

    p {
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 18px;
      line-height: 100%;
      text-transform: uppercase;
      text-align: center;
      color: #fff;
    }
  }

  .products-list {
    flex-direction: column;
    border-radius: 0 0 30px 30px;
    gap: 43px;
  }

  .products-list > div {
    width: 100%;
  }

  .product {
    flex-direction: row;
    padding: 12px 32px;
  }

  .product-logo {
    border-radius: 12px;
    width: 300px;
    height: 160px;
    flex-shrink: 0;
  }

  .numder-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .number {
    display: block;
  }

  .product-link {
    flex-shrink: 0;
  }
}

/* best  */

#best {
  padding-top: 0;
}

.best-container {
  display: flex;
  flex-direction: column-reverse;
}

.best-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
}

@media screen and (min-width: 1440px) {
  #best {
    padding-bottom: 0;

    .title {
      text-align: start;
    }
  }

  .best-container {
    flex-direction: row;
    align-items: center;
    padding-right: 0;
  }

  .best-text {
    font-size: 20px;
  }

  .best-wheel {
    flex-shrink: 0;
    width: 800px;
  }
}

/* faq  */

#faq {
  background-image: url(../img/faq.jpg);
  background-position: center;
  background-size: cover;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 996px;
}

.faq-item {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 18px 28px;

  background: #6b0070;
  transition: background-color 0.4s ease;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    border-color 0.4s ease,
    background-color 0.4s ease;
}

.faq-item:hover {
  .faq-btn {
    opacity: 1;
  }
}

.faq-item-click {
  box-shadow: 0 0 26px 0 #ff5f00;
}

.faq-btn {
  display: block;
  width: 24px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.4s ease;
}

.faq-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid #fff;
}

.faq-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
  color: #fff;
}

.faq-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .faq-list {
    height: 600px;
  }
}

@media screen and (min-width: 1440px) {
  .faq-list {
    width: 965px;
    margin: 0 auto;
    height: 570px;
  }

  .faq-item {
    border-radius: 12px;
    padding: 18px 28px;
  }
}

/* disclaimer  */

#disclaimer {
  background-image: url(../img/pay.jpg);
  background-position: center;
  background-size: cover;
}

.disclaimer-content {
  border: 4px solid #400043;
  border-radius: 12px;
  padding: 12px 32px;

  box-shadow: 0 0 26px 0 #ff5f00;
  background: #400043;

  h2 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    color: #fff;
    margin-bottom: 20px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
    margin-bottom: 28px;
  }
}

.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-content {
    border-radius: 14px;
    padding: 28px 32px;
    width: 965px;
    margin: 0 auto;

    h2 {
      font-size: 32px;
      text-align: start;
      margin-bottom: 20px;
    }

    p {
      font-size: 18px;
      text-align: start;
    }
  }
}

/* footer */

.footer {
  padding: 32px 0px;
  border-top: 2px solid #fff;
  background: linear-gradient(90deg, #1d001f 0%, #400043 100%);
}

.container-1 {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 2px solid #f1eee4;
}

.footer-desc {
  h3 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #fff;
  }

  h4 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #fff;
    margin-bottom: 12px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
    color: #fff;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
    color: #fff;
  }

  a:hover {
    text-decoration: underline;
  }
}

.footer-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 12px;
  gap: 4px;

  a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #fff;
    transition: color 0.4s ease;
  }

  a:hover {
    color: #ff5f00;
  }
}

.footer-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (min-width: 1440px) {
  .footer {
    padding: 64px 0;
  }

  .footer-desc {
    h3 {
      font-size: 16px;
    }

    p {
      font-size: 14px;
    }
  }

  .footer-list {
    flex-direction: row;
    justify-content: center;
    gap: 64px;
    margin-bottom: 28px;

    a {
      font-size: 14px;
    }
  }

  .footer-text {
    font-size: 12px;
  }
}

/* ********************* */

.hidden {
  display: none;
}

.menu-transform {
  transform: translateY(0);
}

.click {
  transform: rotate(180deg);
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
