.open-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--content-padding-top);
  padding: 96px calc(var(--content-padding) + 110px) 96px var(--content-padding);
  height: 490px;
  background: #fff url("../../../img/open-form.svg") no-repeat left center/auto 100%;
}
.open-form__title {
  color: #222;
  font-size: 40px;
  font-weight: 800;
  line-height: 115%;
}
.open-form__form-box {
  position: relative;
  width: 540px;
}
.open-form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.open-form .wpcf7-submit {
  margin-top: 32px;
}
@media (max-width: 767.99px) {
  .open-form {
    flex-direction: column;
    align-items: stretch;
    margin-top: 11.1111111111vw;
    padding: 11.1111111111vw 4.4444444444vw;
    height: auto;
    background-size: cover;
  }
  .open-form__title {
    font-size: 6.6666666667vw;
    text-align: center;
  }
  .open-form__form-box {
    width: 100%;
    margin-top: 6.6666666667vw;
  }
  .open-form__fields {
    gap: 3.3333333333vw;
  }
  .open-form .wpcf7-submit {
    margin-top: 5.5555555556vw;
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__item {
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #777;
  transition: 0.3s all ease-in-out;
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
  color: #222;
  font-size: 20px;
  font-weight: 800;
  line-height: 115%;
  cursor: pointer;
}
.faq__q div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #777;
  background: #FFF;
}
.faq__q div svg, .faq__q div img {
  display: block;
  width: 21px;
  height: 12px;
  transition: 0.3s all ease-in-out;
}
.faq__a {
  max-height: 0;
  padding: 0 16px;
  overflow: hidden;
  transition: 0.15s all ease-in-out;
}
.faq__item.open {
  background: #FFF;
}
.faq__item.open .faq__q div svg, .faq__item.open .faq__q div img {
  transform: rotate(180deg);
}
.faq__item.open .faq__a {
  display: block;
  border-top: 1px solid #D9D9D9;
  padding: 16px;
  max-height: 500vw;
}
@media (max-width: 767.99px) {
  .faq {
    gap: 3.3333333333vw;
  }
  .faq__item {
    padding: 0 3.3333333333vw;
    border-radius: 1.6666666667vw;
  }
  .faq__q {
    padding: 2.2222222222vw 0;
    gap: 3.3333333333vw;
    font-size: 4.4444444444vw;
  }
  .faq__q div {
    flex: 0 0 10vw;
    width: 10vw;
    height: 10vw;
    border-radius: 1.6666666667vw;
  }
  .faq__q div svg, .faq__q div img {
    width: 4.4444444444vw;
    height: 2.7777777778vw;
  }
  .faq__item.open .faq__a {
    padding: 3.3333333333vw;
  }
}

.feedbacks-slider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
  gap: 28px;
  z-index: 20;
}
.feedbacks-slider__pagination .swiper-pagination-bullet {
  display: block;
  box-sizing: border-box;
  margin: 0 !important;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: transparent;
  border: 2px solid #7428AE;
  opacity: 1 !important;
  transition: 0.3s all ease-in-out;
}
.feedbacks-slider__pagination .swiper-pagination-bullet-active {
  background: #7428AE;
}

.feedback {
  padding: 0 16px;
  border-radius: 8px;
  background: #FFF;
}
.feedback__head {
  display: block;
  position: relative;
  padding: 32px 0 16px 112px;
  border-bottom: 1px solid #D9D9D9;
}
.feedback__image {
  position: absolute;
  left: 0;
  top: 16px;
  width: 96px;
  height: 96px;
}
.feedback__image img, .feedback__image picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 50%;
}
.feedback__name {
  color: #000;
  font-size: 20px;
  font-weight: 800;
  line-height: 115%;
}
.feedback__status {
  margin-top: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}
.feedback__body {
  padding: 16px;
}
.feedback__date {
  color: #777;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
}
.feedback__text {
  margin-top: 10px;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.feedback__text a {
  color: #7428AE;
  text-decoration: underline;
}
.feedback__text a:Hover {
  text-decoration: none;
}
@media (max-width: 767.99px) {
  .feedback {
    padding: 0 3.3333333333vw;
    border-radius: 1.6666666667vw;
  }
  .feedback__head {
    padding: 5.5555555556vw 0 3.3333333333vw 22.2222222222vw;
  }
  .feedback__image {
    top: 3.3333333333vw;
    width: 17.7777777778vw;
    height: 17.7777777778vw;
  }
  .feedback__name {
    font-size: 4.4444444444vw;
  }
  .feedback__status {
    margin-top: 1.6666666667vw;
    font-size: 3.8888888889vw;
  }
  .feedback__body {
    padding: 3.3333333333vw;
  }
  .feedback__date {
    font-size: 3.6111111111vw;
  }
  .feedback__text {
    margin-top: 2.2222222222vw;
    font-size: 3.8888888889vw;
  }
}

.faq-feedbacks {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 140px;
}
.faq-feedbacks__questions {
  width: 100%;
}
.faq-feedbacks__cards {
  flex: 0 0 430px;
  width: 430px;
}
.faq-feedbacks__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-feedbacks__head + * {
  margin-top: 40px;
}
@media (max-width: 767.99px) {
  .faq-feedbacks {
    flex-direction: column;
    gap: 11.1111111111vw;
  }
  .faq-feedbacks__cards {
    flex: 0 0 auto;
    width: 100%;
  }
  .faq-feedbacks__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4.4444444444vw;
  }
  .faq-feedbacks__head + * {
    margin-top: 6.6666666667vw;
  }
}

.advantages__title + .advantages__items {
  margin-top: 40px;
}
.advantages__items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 28px;
}
.advantages__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  width: calc(33.33% - 19px);
}
.advantages__icon {
  width: 80px;
  flex: 0 0 80px;
}
.advantages__icon img, .advantages__icon svg {
  display: block;
  width: 100%;
  height: auto;
}
.advantages__text {
  color: #EA5723;
  font-size: 26px;
  font-weight: 800;
  line-height: 115%;
}
@media (max-width: 767.99px) {
  .advantages__title + .advantages__items {
    margin-top: 6.6666666667vw;
  }
  .advantages__items {
    flex-direction: column;
    gap: 5.5555555556vw;
  }
  .advantages__item {
    width: 100%;
    gap: 5.5555555556vw;
  }
  .advantages__icon {
    width: 15.5555555556vw;
    flex: 0 0 15.5555555556vw;
  }
  .advantages__text {
    font-size: 5vw;
  }
}

.product-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-slider__swiper {
  margin-top: 40px;
  position: relative;
}
.product-slider__prev, .product-slider__next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 24px);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #777;
  border: 1px solid #777;
  background: transparent;
  cursor: pointer;
  z-index: 5;
}
.product-slider__prev svg, .product-slider__next svg {
  display: block;
  width: 12px;
  height: auto;
  color: #000;
}
.product-slider__prev {
  right: calc(100% + 16px);
}
.product-slider__next {
  left: calc(100% + 16px);
}
@media (max-width: 767.99px) {
  .product-slider__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4.4444444444vw;
  }
  .product-slider__swiper {
    margin-top: 6.6666666667vw;
  }
  .product-slider__prev, .product-slider__next {
    display: none;
  }
}

.products-table {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.products-table__group {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.products-table__letter {
  color: #FC5A0A;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 115%;
}
.products-table__list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 28px;
}
.products-table__list li {
  width: calc(33.33% - 19px);
}
.products-table__list li a {
  color: #222;
  font-size: 15px;
  font-weight: 800;
  line-height: 115%;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.products-table__list li a:hover {
  color: #FC5A0A;
}
@media (max-width: 767.99px) {
  .products-table {
    gap: 5.5555555556vw;
  }
  .products-table__group {
    gap: 4.4444444444vw;
  }
  .products-table__letter {
    font-size: 7.7777777778vw;
  }
  .products-table__list {
    flex-direction: column;
    gap: 3.3333333333vw;
  }
  .products-table__list li {
    width: 100%;
  }
  .products-table__list li a {
    font-size: 3.8888888889vw;
  }
}

.section-text + .advantages {
  padding-top: 0;
  padding-bottom: var(--content-padding-top);
  background: #FFF;
}
.section-text + .advantages .advantages__title {
  display: none;
}
.section-text + .advantages .advantages__items {
  margin-top: 0;
}

/*# sourceMappingURL=style.css.map */
