.index {
  background-color: rgba(245, 245, 245, 0.65);
}

.products__offer aside {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .products__offer aside {
    max-width: 420px;
  }
}

.products__offer aside h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.products__offer aside h2 span {
  color: var(--color-red);
}

.products__offer form label {
  margin: 0;
  flex-basis: 33.333%;
}

@media (min-width: 768px) {
  .products__offer .form__wrap {
    max-width: 327px;
    margin: 0 auto;
  }
}

.products__offer .form__wrap input#isic_code,
.products__offer .form__wrap input#user_count {
  margin-top: 8px;
}

.products__offer .form__wrap .small {
  color: var(--color-grey);
}

.products__offer .form__wrap .small a {
  font-weight: 700;
  color: var(--color-grey);
}

.products__offer .form__wrap .small a:hover,
.products__offer .form__wrap .small a:focus {
  text-decoration: underline;
}

.products__offer .iban-product {
  font-size: 14px;
  line-height: 16px;
  color: var(--color-grey);
  margin-top: auto;
  display: none;
  align-items: center;
  padding-top: 15px;
  position: relative;
  bottom: -10px;
}

.products__offer .iban-product::before {
  content: '';
  position: absolute;
  left: -20px;
  right: -20px;
  top: 0;
  height: 1px;
  
  background-color: var(--color-border);
}

.products__offer .iban-product.active {
  display: flex;
}

.products__offer .iban-product input {
  width: 16px;
  height: 16px;

  accent-color: var(--color-red);
}

/* Product offer  */
.product__offer {
  border-radius: 8px;
  border: 1px solid #000;
  padding: 25px 19px;
  margin-top: 22px;
  background-color: var(--color-white);
}

.product__offer .title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.47px;
}

.product__offer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product__offer ul li {
  font-size: 15px;
  display: flex;
  margin: 8px 0;
  align-items: center;
}

.product__offer ul li .icon-svg {
  position: relative;
  margin-right: 5px;
}

.product__offer ul li .icon-svg svg {
  height: 32px;
  width: 32px;
}

.product__offer ul li .icon-svg:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: var(--color-green);
  opacity: 0.1;
  border-radius: 50%;
}

.product__offer ul li .text {
  position: relative;
  top: -3px;
}

/* FAQ  */
.faq {
  padding-top: 24px;
}

.faq .small {
  font-size: 12px;
}

.faq .p--title {
  margin-top: 0;
  margin-bottom: 0;
}

.faq .faq__box {
  padding-bottom: 105px;
}

.faq .faq__box .title {
  position: relative;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 14px 0px;
  border-top: 1px solid var(--color-border);
  padding-right: 25px;
  cursor: pointer;
  font-family: "Helvetica", sans-serif, "Sharp Grotesk Bold 15", "-apple-system",
    "BlinkMacSystemFont", "Segoe UI", "Arial", "Apple Color Emoji",
    "Segoe UI Emoji";
}

.faq .faq__box .item p {
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 6px;
  display: none;
  color: var(--color-grey);
}

.faq .faq__box .item.active p {
  display: block;
}

.faq .faq__box .item:nth-of-type(1) .title {
  border-top: 0;
}

.faq .faq__box nav {
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
}

.faq .faq__box nav .icon {
  display: none;
  max-width: 12px;
  max-height: 12px;
}

.faq .faq__box nav .icon.icon--down {
  display: block;
}

.faq .faq__box .item.active nav .icon.icon--down {
  display: none;
}

.faq .faq__box .item.active nav .icon.icon--up {
  display: block;
}

/* Responsive design. */
@media (min-width: 768px) {
  .faq {
    padding: 40px 24px;
  }

  .faq h2 {
    font-size: 28px;
  }

  .faq .faq__box .title {
    font-size: 18px;
  }

  .faq .faq__box nav {
    top: calc(50% - 4px);
  }

  .faq .faq__box nav .icon {
    max-width: 10px;
  }

  .faq .faq__box {
    padding-bottom: 66px;
  }
}

@media (min-width: 1024px) {
  .index .faq {
    max-width: 930px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 0;
  }

  .faq .title {
    margin-top: 16px;
    margin-bottom: 28px;
  }

  .faq .faq__box {
    padding-bottom: 106px;
  }
}

.subscription-active {
  height: 80vh;
  margin: 0 auto;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subscription-active .title span {
  color: var(--color-red);
}

.products__offer .form__wrap .small a.back-to-subscription {
  font-weight: 400;
}

.back-to-subscription::before {
  content: '';
  background-image: url(../images/nav-right-grey.png);
  background-size: 75%;
  background-repeat: no-repeat;
  width: 6px;
  height: 8px;
  display: inline-block;
  margin-right: 7px;
}