/*$color-palette: (
        "orange": #FF6B35,
        "light-orange": #F7C59F,
        "lightest-orange": #EFEFD0,
        "blue": #004E89,
        "light-blue": #1A659E,
) !default;

$gradients: (
        "orange": (
                "start": #FF6B35,
                "end": #F7C59F
        ),
        "blue": (
                "start": #004E89,
                "end": #1A659E
        ),
) !default;

$orange: map-get($color-palette, "orange") !default;
$light-orange: map-get($color-palette, "light-orange") !default;
$lightest-orange: map-get($color-palette, "lightest-orange") !default;
$blue: map-get($color-palette, "blue") !default;
$light-blue: map-get($color-palette, "light-blue") !default;*/
.block--banner {
  --min-height: var(--hero-min-height, var(--banner-min-height, 400px));
  position: relative;
  min-height: calc(var(--min-height) * 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .block--banner {
    min-height: calc(var(--min-height) * 0.75);
  }
}
@media (min-width: 992px) {
  .block--banner {
    min-height: var(--min-height);
  }
}
.block--banner.--overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 42.72%, rgba(0, 0, 0, 0.75) 95.86%);
}

.block--banner .banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

@media (min-width: 992px) {
  .block--banner .banner-background {
    -o-object-fit: var(--background-image-fit, cover);
       object-fit: var(--background-image-fit, cover);
    -o-object-position: var(--background-image-alignment, center);
       object-position: var(--background-image-alignment, center);
  }
}
.block--banner .banner-content--wrapper {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .block--banner .banner-content {
    max-width: var(--lg-max-width, 100%);
  }
}
.block--banner.swiper-slide {
  height: initial;
  align-self: stretch;
}

.editor-styles-wrapper .banner-background {
  opacity: 0.25;
}

.editor-styles-wrapper .banner-schedule {
  z-index: 9;
}
