/* stylelint-disable */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.wp-block .hero-home-block,
.hero-home-block {
  min-height: 100dvh;
  overflow: hidden;
  position: relative;
}
.wp-block .hero-home-block .sk-container,
.hero-home-block .sk-container {
  height: inherit;
}
.wp-block .hero-home-block .bg-left,
.hero-home-block .bg-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  left: 0;
  height: 90%;
  width: auto;
  z-index: -1;
}
.wp-block .hero-home-block .bg-left img,
.hero-home-block .bg-left img {
  display: block;
  height: 100%;
  width: auto;
}
@media (max-width: 768px) {
  .wp-block .hero-home-block .bg-left,
  .hero-home-block .bg-left {
    left: -120px;
  }
}
.wp-block .hero-home-block .bg-right,
.hero-home-block .bg-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  left: 0;
  height: 90%;
  width: auto;
  z-index: -1;
}
.wp-block .hero-home-block .bg-right img,
.hero-home-block .bg-right img {
  display: block;
  height: 100%;
  width: auto;
}
.wp-block .hero-home-block .inner-wrapper,
.hero-home-block .inner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100dvh;
  padding: 100px 0;
  gap: 25px;
}
.wp-block .hero-home-block .inner-wrapper .pre-title,
.hero-home-block .inner-wrapper .pre-title {
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--sk-font-secondary);
  line-height: 1.1;
  letter-spacing: 0.8px;
  text-align: center;
  margin-top: 10px;
}
.wp-block .hero-home-block .inner-wrapper h1.title,
.hero-home-block .inner-wrapper h1.title {
  text-align: center;
}
@media (max-width: 768px) {
  .wp-block .hero-home-block .inner-wrapper,
  .hero-home-block .inner-wrapper {
    gap: 10px;
  }
}
.wp-block .hero-home-block__description,
.hero-home-block__description {
  width: 600px;
  max-width: 100%;
  text-align: center;
  font-size: clamp(20px, 19.2571428571px + 0.0019047619 * 100vw, 22px);
  margin: 0 auto;
}
