.catalog-sections__title + .catalog-sections__items {
  margin-top: 40px;
}
.catalog-sections__items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 28px;
}
.catalog-sections__item {
  width: calc(25% - 21px);
}
@media (max-width: 767.99px) {
  .catalog-sections__title + .catalog-sections__items {
    margin-top: 6.6666666667vw;
  }
  .catalog-sections__items {
    gap: 3.3333333333vw;
  }
  .catalog-sections__item {
    width: calc(50% - 1.6666666667vw);
  }
}

.section-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  gap: 8px;
  padding: 16px;
  border-radius: 8px;
  background: #FFF;
  text-decoration: none;
}
.section-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  pointer-events: none;
  border-top: 2px solid #7428AE;
  border-right: 2px solid #7428AE;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.section-item__icon {
  display: block;
}
.section-item__icon img, .section-item__icon svg {
  display: block;
  height: 56px;
  width: auto;
}
.section-item__name {
  display: block;
  color: #222;
  font-size: 20px;
  font-weight: 800;
  line-height: 115%;
  transition: 0.3s all ease-in-out;
  transform: translate(0, 0);
}
.section-item:hover:before {
  top: 16px;
  right: 16px;
  opacity: 1;
}
.section-item:hover .section-item__name {
  color: #503F8F;
  transform: translate(8px, 0);
}
@media (max-width: 767.99px) {
  .section-item {
    gap: 1.6666666667vw;
    padding: 3.3333333333vw;
    border-radius: 1.6666666667vw;
  }
  .section-item__icon img, .section-item__icon svg {
    height: 11.1111111111vw;
  }
  .section-item__name {
    font-size: 4.1666666667vw;
    word-break: break-word;
  }
}

.catalog-sections-aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catalog-sections-aside__item {
  display: block;
  position: relative;
  padding: 8px 24px 8px;
  border-radius: 8px;
  color: #222;
  font-size: 15px;
  font-weight: 800;
  line-height: 135%;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.catalog-sections-aside__item:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: calc(100% - 16px);
  background: #FC5A0A;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.catalog-sections-aside__item:hover {
  color: #FC5A0A;
}
.catalog-sections-aside__item.current {
  background: #FFF;
}
.catalog-sections-aside__item.current:after {
  opacity: 1;
}
@media (max-width: 767.99px) {
  .catalog-sections-aside {
    display: none;
    gap: 1.6666666667vw;
  }
  .catalog-sections-aside__item {
    padding: 2.2222222222vw 4.4444444444vw;
    font-size: 3.6111111111vw;
    border-radius: 1.6666666667vw;
  }
  .catalog-sections-aside__item:after {
    top: 1.6666666667vw;
    right: 1.6666666667vw;
    width: 1.6666666667vw;
    height: calc(100% - 3.3333333333vw);
  }
}

.product-card {
  padding: 16px;
  border-radius: 8px;
  background: #FFF;
}
.product-card__cas {
  color: #777;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
}
.product-card__title {
  display: -webkit-box;
  margin-top: 16px;
  height: 92px;
  color: #222;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 115%;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__buttons {
  display: flex;
  margin-top: 32px;
  gap: 28px;
}
.product-card__more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 115%;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  background: #FC5A0A;
  transition: 0.3s all ease-in-out;
}
.product-card__more-btn:hover {
  opacity: 0.7;
}
.product-card__lead-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #222;
  background: none;
  cursor: pointer;
  border: 2px solid #FC5A0A;
  transition: 0.3s all ease-in-out;
}
.product-card__lead-btn:hover {
  color: #FC5A0A;
}
.product-card__lead-btn svg {
  display: block;
  width: 26px;
  height: 23px;
}
@media (max-width: 767.99px) {
  .product-card {
    padding: 3.3333333333vw;
    border-radius: 1.6666666667vw;
  }
  .product-card__cas {
    font-size: 3.3333333333vw;
  }
  .product-card__title {
    margin-top: 3.3333333333vw;
    height: 20vw;
    font-size: 4.4444444444vw;
  }
  .product-card__buttons {
    margin-top: 5.5555555556vw;
    gap: 4.4444444444vw;
  }
  .product-card__more-btn {
    height: 11.6666666667vw;
    font-size: 3.6111111111vw;
    border-radius: 1.6666666667vw;
  }
  .product-card__lead-btn {
    flex: 0 0 11.6666666667vw;
    width: 11.6666666667vw;
    height: 11.6666666667vw;
    border-radius: 1.6666666667vw;
  }
  .product-card__lead-btn svg {
    width: 6.1111111111vw;
    height: 5.2777777778vw;
  }
}

.catalog-products {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 28px;
}
.catalog-products__item {
  width: calc(33.33% - 19px);
}
@media (max-width: 767.99px) {
  .catalog-products {
    gap: 4.4444444444vw;
  }
  .catalog-products__item {
    width: 100%;
  }
}

.single-product-hero {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 140px;
}
.single-product-hero__gallery {
  flex: 0 0 430px;
  width: 430px;
}
.single-product-hero__gallery-slider {
  position: relative;
}
.single-product-hero__gallery-image, .single-product-hero__thumbnail-gallery-image {
  display: block;
  position: relative;
}
.single-product-hero__gallery-image:before, .single-product-hero__thumbnail-gallery-image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.single-product-hero__gallery-image img, .single-product-hero__gallery-image picture, .single-product-hero__thumbnail-gallery-image img, .single-product-hero__thumbnail-gallery-image picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 8px;
}
.single-product-hero__gallery-prev, .single-product-hero__gallery-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: #FFF;
  cursor: pointer;
  z-index: 5;
}
.single-product-hero__gallery-prev svg, .single-product-hero__gallery-next svg {
  display: block;
  color: #000;
  width: 12px;
  height: auto;
}
.single-product-hero__gallery-prev {
  left: 16px;
}
.single-product-hero__gallery-next {
  right: 16px;
}
.single-product-hero__thumbnail-gallery-slider {
  margin-top: 28px;
}
.single-product-hero__thumbnail-gallery-slider .swiper-slide {
  width: 86px;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.single-product-hero__thumbnail-gallery-slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.single-product-hero__info {
  width: 100%;
}
.single-product-hero__lead {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 40px;
  gap: 28px;
}
.single-product-hero__lead-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 115%;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  background: #FC5A0A;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.single-product-hero__lead-button:hover {
  opacity: 0.7;
}
.single-product-hero__manager {
  flex: 0 0 430px;
  width: 430px;
  padding: 16px;
  border-radius: 8px;
  background: #FFF;
}
.single-product-hero__manager-caption {
  display: block;
  padding-bottom: 16px;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  border-bottom: 1px solid #D9D9D9;
}
.single-product-hero__manager-name {
  margin-top: 16px;
  color: #000;
  font-size: 20px;
  font-weight: 800;
  line-height: 115%;
}
.single-product-hero__manager-contact {
  margin-top: 16px;
  color: #000;
}
.single-product-hero__params {
  margin-top: 40px;
  border-left: 1px solid #D9D9D9;
  border-right: 1px solid #D9D9D9;
}
.single-product-hero__params-item {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border-bottom: 1px solid #D9D9D9;
}
.single-product-hero__params-item div:first-child {
  width: 220px;
  flex: 0 0 220px;
  padding: 16px;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
}
.single-product-hero__params-item div:last-child {
  width: 100%;
  padding: 16px;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.single-product-hero__params-item div:last-child svg, .single-product-hero__params-item div:last-child img {
  display: inline-flex;
  margin-right: 8px;
  color: #777;
}
.single-product-hero__params-item:first-child {
  border-top: 1px solid #D9D9D9;
}
@media (max-width: 767.99px) {
  .single-product-hero {
    flex-direction: column;
    gap: 8.8888888889vw;
  }
  .single-product-hero__gallery {
    flex: 0 0 auto;
    width: 100%;
  }
  .single-product-hero__gallery-prev, .single-product-hero__gallery-next {
    width: 10vw;
    height: 10vw;
    top: calc(50% - 5vw);
    border-radius: 1.6666666667vw;
  }
  .single-product-hero__gallery-prev svg, .single-product-hero__gallery-next svg {
    width: 2.7777777778vw;
  }
  .single-product-hero__gallery-prev {
    left: 2.2222222222vw;
  }
  .single-product-hero__gallery-next {
    right: 2.2222222222vw;
  }
  .single-product-hero__thumbnail-gallery-slider {
    margin-top: 4.4444444444vw;
  }
  .single-product-hero__thumbnail-gallery-slider .swiper-slide {
    width: 17.7777777778vw;
  }
  .single-product-hero__lead {
    flex-direction: column;
    margin-top: 6.6666666667vw;
    gap: 4.4444444444vw;
  }
  .single-product-hero__lead-button {
    height: 12.2222222222vw;
    font-size: 3.6111111111vw;
    border-radius: 1.6666666667vw;
  }
  .single-product-hero__manager {
    flex: 0 0 auto;
    width: 100%;
    padding: 3.3333333333vw;
    border-radius: 1.6666666667vw;
  }
  .single-product-hero__manager-caption {
    padding-bottom: 3.3333333333vw;
    font-size: 3.8888888889vw;
  }
  .single-product-hero__manager-name {
    margin-top: 3.3333333333vw;
    font-size: 4.4444444444vw;
  }
  .single-product-hero__manager-contact {
    margin-top: 3.3333333333vw;
  }
  .single-product-hero__params {
    margin-top: 6.6666666667vw;
  }
  .single-product-hero__params-item {
    flex-direction: column;
  }
  .single-product-hero__params-item div:first-child {
    width: 100%;
    flex: 0 0 auto;
    padding: 2.7777777778vw 3.3333333333vw;
    font-size: 3.8888888889vw;
    background: #fafafa;
  }
  .single-product-hero__params-item div:last-child {
    padding: 2.7777777778vw 3.3333333333vw;
    font-size: 3.8888888889vw;
  }
}

.product-tabs {
  width: 100%;
}
.product-tabs__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
  border-bottom: 1px solid #D9D9D9;
}
.product-tabs__button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #777;
  font-size: 20px;
  font-weight: 400;
  line-height: 115%;
  background: none;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0 0 14px 0;
  margin: 0 0 -2px 0 0;
  border-bottom: 2px solid transparent;
  transition: 0.3s all ease-in-out;
}
.product-tabs__button:hover {
  color: #222222;
}
.product-tabs__button.active {
  color: #222222;
  font-weight: 700;
  border-color: #FC5A0A;
}
.product-tabs__content {
  display: none;
  padding-top: 40px;
}
.product-tabs__content.active {
  display: block;
}
@media (max-width: 767.99px) {
  .product-tabs__head {
    gap: 6.6666666667vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-tabs__head::-webkit-scrollbar {
    display: none;
  }
  .product-tabs__button {
    font-size: 4.4444444444vw;
    padding: 0 0 2.7777777778vw 0;
    white-space: nowrap;
  }
  .product-tabs__content {
    padding-top: 6.6666666667vw;
  }
}

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