/* 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 .image-separator,
.image-separator {
  position: relative;
  margin-top: 100px;
  margin-bottom: 75px;
  min-height: 400px;
  padding: 75px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .wp-block .image-separator,
  .image-separator {
    min-height: 300px;
    margin: 50px 0;
  }
}
.wp-block .image-separator-media,
.image-separator-media {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--sk-base-gradient);
}
.wp-block .image-separator-media picture,
.image-separator-media picture {
  font-size: 0;
  line-height: 0;
}
.wp-block .image-separator__images,
.image-separator__images {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.wp-block .image-separator__img-wrapper,
.image-separator__img-wrapper {
  overflow: hidden;
  height: 100%;
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center center;
  background-blend-mode: multiply;
}
.wp-block .image-separator__img-wrapper:nth-child(2),
.image-separator__img-wrapper:nth-child(2) {
  left: 50%;
}
.wp-block .image-separator__img-wrapper:only-child,
.image-separator__img-wrapper:only-child {
  width: 100%;
}
.wp-block .image-separator-wrapper,
.image-separator-wrapper {
  position: relative;
  text-align: center;
  z-index: 1;
}
.wp-block .image-separator-title,
.image-separator-title {
  font-weight: 700;
  color: var(--sk-color-white);
  font-family: var(--sk-font-secondary);
  font-size: 12px;
  line-height: 1.3334;
  letter-spacing: 0.416667em;
  text-transform: uppercase;
}
