/*$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--cta {
  background: linear-gradient(123deg, var(--bs-primary) 0, var(--bs-primary) 5%, var(--bs-white) 5%, var(--bs-white) 100%);
}

.block--cta .cta-wrapper {
  position: relative;
}

.block--cta .cta-wrapper::before {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 20.51%, rgba(0, 0, 0, 0.45) 43.71%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (min-width: 992px) {
  .block--cta .cta-wrapper::before {
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.75) 20.51%, rgba(0, 0, 0, 0) 43.71%);
  }
}
.block--cta .cta-content {
  position: relative;
  z-index: 2;
}
