/* stylelint-disable */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-d: 1023px;
  --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__fixed-area,
.hero-home__fixed-area {
  padding: 192px 0;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  min-height: calc(var(--vh) * 100);
}
@media (min-width: 768px) {
  .wp-block .hero-home__fixed-area,
  .hero-home__fixed-area {
    padding: 196px 0;
  }
}
.wp-block .hero-home__fixed-area .sk-container,
.hero-home__fixed-area .sk-container {
  position: relative;
}
.wp-block .hero-home__bg-img,
.hero-home__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.wp-block .hero-home__bg-img.desktop-only,
.hero-home__bg-img.desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .wp-block .hero-home__bg-img.desktop-only,
  .hero-home__bg-img.desktop-only {
    display: block;
  }
}
.wp-block .hero-home__bg-img.mobile-only,
.hero-home__bg-img.mobile-only {
  display: block;
}
@media (min-width: 768px) {
  .wp-block .hero-home__bg-img.mobile-only,
  .hero-home__bg-img.mobile-only {
    display: none;
  }
}
.wp-block .hero-home__title,
.hero-home__title {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
  font-size: clamp(24px, 15.0857142857px + 0.0228571429 * 100vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .wp-block .hero-home__title,
  .hero-home__title {
    line-height: 1.4;
  }
}
.wp-block .hero-home__scrollable-area,
.hero-home__scrollable-area {
  position: relative;
  z-index: 1;
}
.wp-block .hero-home__scrollable-area-inner,
.hero-home__scrollable-area-inner {
  height: calc(var(--vh) * 100);
  padding: 25px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.wp-block .hero-home__cta-wrap,
.hero-home__cta-wrap {
  padding: 8px 10px;
  border: 0.5px solid var(--sk-color-white);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}
@media (min-width: 768px) {
  .wp-block .hero-home__cta-wrap,
  .hero-home__cta-wrap {
    padding: 8px 22px;
    flex-direction: row;
    gap: 32px;
  }
}
.wp-block .hero-home__cta-wrap .sk-btn,
.hero-home__cta-wrap .sk-btn {
  border-radius: 8px;
  font-size: 14px;
}
.wp-block .hero-home__cta-wrap .sk-btn:hover,
.hero-home__cta-wrap .sk-btn:hover {
  background-color: var(--sk-color-white);
}
.wp-block .hero-home__cta-description,
.hero-home__cta-description {
  font-family: var(--sk-font-primary), sans-serif;
  color: var(--sk-color-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .wp-block .hero-home__cta-description,
  .hero-home__cta-description {
    padding-left: 7px;
  }
}

main:has(.hero-home) {
  position: relative;
  overflow: hidden;
}
main:has(.hero-home)::after {
  content: "";
  position: absolute;
  top: 100vh;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(249, 248, 249, 0.8) 0%, #DDDCDD 90%);
  backdrop-filter: blur(25px);
  z-index: -1;
}
main:has(.hero-home) section:not(.hero-home) {
  background: transparent !important;
}
