.honeycombs {
  --size: 233px;
  --margin: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 130px;
  padding-bottom: var(--margin);
}
.honeycombs__item {
  width: var(--size);
  margin-bottom: calc(-1 * var(--margin));
}
.honeycombs__number, .honeycombs__description {
  display: block;
  position: relative;
  width: var(--size);
  height: var(--size);
}
.honeycombs__front, .honeycombs__back {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 80px;
  font-weight: 800;
  line-height: 115%;
  text-transform: uppercase;
  backface-visibility: hidden;
}
.honeycombs__front {
  color: #FFF;
}
.honeycombs__back {
  color: #FC5A0A;
  transform: rotateY(180deg);
}
.honeycombs__number {
  position: relative;
  transition: 0.3s transform ease-in-out;
  transform-style: preserve-3d;
  z-index: 3;
}
.honeycombs__description {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -27px;
  z-index: 1;
  color: #222;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 115%;
  transition: 0.3s all ease-in-out;
}
.honeycombs svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.honeycombs__item:hover .honeycombs__number {
  transform: rotateY(180deg);
}
.honeycombs__item:hover .honeycombs__description {
  color: #FC5A0A;
}
@media (max-width: 767.99px) {
  .honeycombs {
    --size: 33.3333333333vw;
    --margin: 10vw;
    column-gap: 16.6666666667vw;
  }
  .honeycombs__front, .honeycombs__back {
    font-size: 10vw;
  }
  .honeycombs__description {
    margin-top: -4.4444444444vw;
    font-size: 3.8888888889vw;
  }
}

.about-the-company__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 100px;
}
.about-the-company__button {
  margin-left: auto;
}
.about-the-company__head + .about-the-company__body {
  margin-top: 40px;
}
.about-the-company__body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
}
.about-the-company__gallery {
  position: relative;
  width: 660px;
  flex: 0 0 660px;
}
.about-the-company__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  gap: 28px;
  z-index: 20;
}
.about-the-company__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 #F4F4F6;
  opacity: 1 !important;
  transition: 0.3s all ease-in-out;
}
.about-the-company__pagination .swiper-pagination-bullet-active {
  background: #F4F4F6;
}
.about-the-company__photo {
  display: block;
  position: relative;
}
.about-the-company__photo:before {
  content: "";
  display: block;
  padding-top: 110%;
}
.about-the-company__photo img, .about-the-company__photo picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 8px;
}
.about-the-company__info {
  width: 100%;
}
.about-the-company__text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-the-company__text h1, .about-the-company__text h2, .about-the-company__text h3, .about-the-company__text h4, .about-the-company__text h5, .about-the-company__text h6 {
  display: block;
  color: #222;
  font-size: 20px;
  font-weight: 800;
  line-height: 140%;
}
.about-the-company__text p {
  display: block;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.about-the-company__years {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}
.about-the-company__years-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid #222;
  gap: 28px;
  padding: 16px 0 16px 48px;
}
.about-the-company__year {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100px;
  height: 100px;
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: 115%;
  text-transform: uppercase;
}
.about-the-company__year svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.about-the-company__year-caption {
  color: #222;
  font-size: 20px;
  font-weight: 800;
  line-height: 115%;
  text-transform: uppercase;
}
@media (max-width: 767.99px) {
  .about-the-company__head {
    flex-direction: column;
    gap: 4.4444444444vw;
  }
  .about-the-company__button {
    margin-left: 0;
  }
  .about-the-company__head + .about-the-company__body {
    margin-top: 6.6666666667vw;
  }
  .about-the-company__body {
    flex-direction: column;
    gap: 6.6666666667vw;
  }
  .about-the-company__gallery {
    width: 100%;
    flex: 0 0 auto;
  }
  .about-the-company__text {
    gap: 4.4444444444vw;
  }
  .about-the-company__text h1, .about-the-company__text h2, .about-the-company__text h3, .about-the-company__text h4, .about-the-company__text h5, .about-the-company__text h6 {
    font-size: 5vw;
  }
  .about-the-company__text p {
    font-size: 4.1666666667vw;
  }
  .about-the-company__years {
    gap: 3.3333333333vw;
    margin-top: 4.4444444444vw;
  }
  .about-the-company__years-item {
    gap: 4.4444444444vw;
    padding: 3.3333333333vw 0 3.3333333333vw 4.4444444444vw;
  }
  .about-the-company__year {
    width: 20vw;
    height: 20vw;
    font-size: 7.7777777778vw;
  }
  .about-the-company__year-caption {
    font-size: 4.4444444444vw;
  }
}

.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;
  }
}

.search-for-products__box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  gap: 40px;
  border-radius: 8px;
  background: linear-gradient(90deg, #EB0906 0%, #EE5215 40%, #ED8022 100%);
}
.search-for-products__title {
  color: #FFF;
  margin-right: auto;
}
.search-for-products__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 360px;
  max-width: 100%;
  gap: 32px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #FFF;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.search-for-products__btn:hover {
  background: #fff;
}
.search-for-products__icon {
  display: block;
  width: 56px;
  flex: 0 0 56px;
  height: auto;
  transition: 0.3s all ease-in-out;
}
.search-for-products__text {
  width: auto;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 115%;
  transition: 0.3s all ease-in-out;
}
.search-for-products__btn:hover .search-for-products__text {
  color: #FC5A0A;
}
@media (max-width: 767.99px) {
  .search-for-products__box {
    flex-direction: column;
    padding: 6.6666666667vw;
    gap: 5.5555555556vw;
    border-radius: 2.2222222222vw;
  }
  .search-for-products__btn {
    min-width: 0;
    width: 100%;
    gap: 5.5555555556vw;
    padding: 3.8888888889vw;
    border-radius: 2.2222222222vw;
  }
  .search-for-products__icon {
    width: 11.1111111111vw;
    flex: 0 0 11.1111111111vw;
  }
  .search-for-products__text {
    font-size: 4.4444444444vw;
  }
}

.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;
  }
}

.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;
  }
}

.news-and-events__head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.news-and-events__title {
  margin-right: auto;
}
.news-and-events__head + .news-and-events__items {
  margin-top: 40px;
}
.news-and-events__items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 28px;
}
.news-and-events__item {
  width: calc(33.33% - 19px);
}
@media (max-width: 767.99px) {
  .news-and-events__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4.4444444444vw;
  }
  .news-and-events__head + .news-and-events__items {
    margin-top: 6.6666666667vw;
  }
  .news-and-events__items {
    flex-direction: column;
    gap: 4.4444444444vw;
  }
  .news-and-events__item {
    width: 100%;
  }
}

.news-item {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  background: #FFF;
}
.news-item__image {
  display: block;
  position: relative;
  overflow: hidden;
}
.news-item__image:before {
  content: "";
  display: block;
  padding-top: 60%;
}
.news-item__image img, .news-item__image picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 8px 8px 0 0;
  transition: 0.3s all ease-in-out;
}
.news-item__info {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
}
.news-item__date {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.news-item__title {
  display: -webkit-box;
  color: #222;
  font-size: 20px;
  font-weight: 800;
  line-height: 115%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item__excerpt {
  display: -webkit-box;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item:hover .news-item__image img, .news-item:hover .news-item__image picture {
  transform: scale(1.05);
}
@media (max-width: 767.99px) {
  .news-item {
    border-radius: 2.2222222222vw;
  }
  .news-item__image img, .news-item__image picture {
    border-radius: 2.2222222222vw 2.2222222222vw 0 0;
  }
  .news-item__info {
    padding: 3.3333333333vw;
    gap: 2.7777777778vw;
  }
  .news-item__date {
    font-size: 3.3333333333vw;
  }
  .news-item__title {
    font-size: 4.4444444444vw;
  }
  .news-item__excerpt {
    font-size: 3.8888888889vw;
  }
}

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