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

.front-hero {
  --side-padding: calc((100vw - var(--content-container)) / 2);
  position: relative;
}
.front-hero__slide {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding: 96px var(--side-padding) 180px;
  min-height: 640px;
}
.front-hero__desktop-image, .front-hero__mobile-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.front-hero__text {
  display: flex;
  flex-direction: column;
  padding: 28px;
  gap: 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(197, 50, 23, 0.85) 0%, rgba(199, 64, 25, 0.85) 9%, rgba(207, 101, 31, 0.85) 36%, rgba(212, 128, 36, 0.85) 61%, rgba(215, 145, 39, 0.85) 83%, rgba(217, 151, 40, 0.85) 100%);
  backdrop-filter: blur(20px);
}
.front-hero__text h1, .front-hero__text h2, .front-hero__text h3, .front-hero__text h4, .front-hero__text h5, .front-hero__text h6 {
  display: block;
  color: #FFF;
  font-size: 40px;
  font-weight: 800;
  line-height: 115%;
  text-transform: uppercase;
}
.front-hero__text p {
  display: block;
  color: #FFF;
  font-size: 36px;
  font-weight: 400;
  line-height: 115%;
}
.front-hero__prev, .front-hero__next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 36px);
  width: 72px;
  height: 72px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  z-index: 20;
  transition: 0.3s all ease-in-out;
}
.front-hero__prev:hover, .front-hero__next:hover {
  background: rgba(0, 0, 0, 0.5);
}
.front-hero__prev {
  left: 16px;
}
.front-hero__next {
  right: 16px;
}
.front-hero__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  gap: 28px;
  z-index: 20;
}
.front-hero__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;
}
.front-hero__pagination .swiper-pagination-bullet-active {
  background: #F4F4F6;
}
.front-hero__form {
  display: block;
  position: absolute;
  top: 96px;
  right: var(--side-padding);
  max-width: 350px;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(197, 50, 23, 0.85) 0%, rgba(199, 64, 25, 0.85) 9%, rgba(207, 101, 31, 0.85) 36%, rgba(212, 128, 36, 0.85) 61%, rgba(215, 145, 39, 0.85) 83%, rgba(217, 151, 40, 0.85) 100%);
  backdrop-filter: blur(20px);
  z-index: 10;
}
@media (max-width: 767.99px) {
  .front-hero {
    --side-padding: 4.4444444444vw;
  }
  .front-hero__slide {
    padding: 16.6666666667vw var(--side-padding) 27.7777777778vw;
    height: 100vw;
    min-height: 0;
  }
  .front-hero__text {
    padding: 4.4444444444vw;
    gap: 2.7777777778vw;
    border-radius: 1.6666666667vw;
  }
  .front-hero__text h1, .front-hero__text h2, .front-hero__text h3, .front-hero__text h4, .front-hero__text h5, .front-hero__text h6 {
    font-size: 6.1111111111vw;
  }
  .front-hero__text p {
    font-size: 5vw;
  }
  .front-hero__prev, .front-hero__next {
    display: none !important;
  }
  .front-hero__pagination {
    bottom: auto !important;
    top: 91.6666666667vw !important;
    gap: 4.4444444444vw;
  }
  .front-hero__pagination .swiper-pagination-bullet {
    width: 2.7777777778vw;
    height: 2.7777777778vw;
  }
  .front-hero__form {
    position: relative;
    top: auto;
    right: auto;
    max-width: 100%;
    padding: 4.4444444444vw;
    border-radius: 0 0 2.2222222222vw 2.2222222222vw;
  }
}

.hero-form {
  --input-placeholder-text-color: #999;
  --input-border-color: #fff;
  --input-border-focused-color: #222;
  --checkbox-text-color: #fff;
  --checkbox-background-color: transparent;
  --checkbox-border-color: #fff;
  --checkbox-icon-color: #fff;
  --button-background-color: transparent;
  --button-border-color: #fff;
  --button-hover-background-color: #FC5A0A;
  --button-hover-border-color: #fff;
  --error-color: #fff;
}
.hero-form__heading {
  color: #FFF;
  font-size: 26px;
  font-weight: 800;
  line-height: 115%;
}
.hero-form__fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.hero-form .wpcf7-submit {
  margin-top: 24px;
}
@media (max-width: 767.99px) {
  .hero-form__heading {
    font-size: 5.5555555556vw;
  }
  .hero-form__fields {
    gap: 2.2222222222vw;
    margin-top: 4.4444444444vw;
  }
  .hero-form .wpcf7-submit {
    margin-top: 4.4444444444vw;
  }
}

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