/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-s: 1200px;
  --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,
.hero {
  position: relative;
}
.wp-block .hero-circle,
.hero-circle {
  top: calc(100% - 5px);
  left: calc(50% - 200px);
  z-index: 1;
}
.wp-block .hero-wrapper,
.hero-wrapper {
  height: 100%;
  position: relative;
  color: var(--sk-color-white);
}
.wp-block .hero-media,
.hero-media {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-bottom-right-radius: 25px;
}
.wp-block .hero-media__overlay,
.hero-media__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  background: var(--sk-base-gradient);
}
.wp-block .hero-media__img,
.hero-media__img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.wp-block .hero-media__video,
.hero-media__video {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.wp-block .hero-media iframe,
.hero-media iframe {
  height: 100%;
  aspect-ratio: 16/9;
}
.wp-block .hero-content,
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 800px;
  color: var(--sk-color-white);
  padding: 155px 100px 100px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .wp-block .hero-content,
  .hero-content {
    padding: 100px 75px;
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .wp-block .hero-content,
  .hero-content {
    padding: 75px 55px;
    min-height: 550px;
  }
}
@media (max-width: 512px) {
  .wp-block .hero-content,
  .hero-content {
    padding: 50px 25px;
    min-height: 525px;
  }
}
.wp-block .hero-title,
.hero-title {
  color: inherit;
  font-family: var(--sk-font-primary);
  position: relative;
  z-index: 1;
}
.wp-block .hero-title-wrapper,
.hero-title-wrapper {
  position: relative;
  margin-bottom: 25px;
}
.wp-block .hero-title-wrapper::after,
.hero-title-wrapper::after {
  content: "";
  height: 1px;
  width: 0;
  position: absolute;
  bottom: 4px;
  left: calc(50% - 50vw);
  background-color: var(--sk-color-blue);
  transition: width 2s linear;
}
@media (max-width: 768px) {
  .wp-block .hero-title-wrapper::after,
  .hero-title-wrapper::after {
    bottom: 5px;
  }
}
.wp-block .hero-text,
.hero-text {
  letter-spacing: -0.023em;
  font-weight: 400;
}
.wp-block .hero-text__wrapper .sk-btn,
.hero-text__wrapper .sk-btn {
  margin-top: 42px;
}
@media (max-width: 512px) {
  .wp-block .hero-text__wrapper .sk-btn,
  .hero-text__wrapper .sk-btn {
    margin-top: 25px;
  }
}
.wp-block .hero.show .hero-title-wrapper::after,
.hero.show .hero-title-wrapper::after {
  width: 100vw;
}
