: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: 375px;
}

/* stylelint-disable */
/* 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-section,
.hero-section {
  background-color: var(--sk-color-bg-primary);
  color: var(--sk-color-white);
  padding: 48px 0 16px;
}
.wp-block .hero-section__heading,
.hero-section__heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}
.wp-block .hero-section__title,
.hero-section__title {
  color: inherit;
  max-width: 400px;
}
.wp-block .hero-section__icons,
.hero-section__icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.wp-block .hero-section__icons li,
.hero-section__icons li {
  margin-right: 12px;
  line-height: 1;
}
.wp-block .hero-section__icons li:last-child,
.hero-section__icons li:last-child {
  margin-right: 0;
}
.wp-block .hero-section__icons.list-unstyled,
.hero-section__icons.list-unstyled {
  padding: 0;
  margin: 0;
}
.wp-block .hero-section__text,
.hero-section__text {
  display: flex;
  align-items: flex-end;
}
.wp-block .hero-section__text-wrapper,
.hero-section__text-wrapper {
  padding: 23px 26px;
}
.wp-block .hero-section__text-wrapper p,
.hero-section__text-wrapper p {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 1.5em;
}
.wp-block .hero-section__text-wrapper p:last-child,
.hero-section__text-wrapper p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .wp-block .hero-section,
  .hero-section {
    padding: 48px 0;
  }
  .wp-block .hero-section .sk-column,
  .hero-section .sk-column {
    min-height: 340px;
  }
  .wp-block .hero-section__heading,
  .hero-section__heading {
    margin-bottom: 0;
  }
  .wp-block .hero-section__text-wrapper,
  .hero-section__text-wrapper {
    padding: 23px 30px;
  }
}
