/* sass:/var/www/html/web/themes/custom/alfred/assets/src/css/carousels.scss */
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  height: 100%;
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  pointer-events: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  display: flex;
}
.splide__pagination li {
  pointer-events: auto;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  display: inline-block;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  visibility: hidden;
  position: relative;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  list-style-type: none !important;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  contain: strict;
  border: 2px solid #999;
  border-left-color: #0000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: auto;
  animation: 1s linear infinite splide-loading;
  display: inline-block;
  position: absolute;
  inset: 0;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  z-index: 0;
  position: relative;
  overflow: hidden;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  opacity: 0;
  z-index: 0;
  margin: 0 !important;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__arrow {
  cursor: pointer;
  opacity: .7;
  z-index: 1;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  padding: 0;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.splide__arrow svg {
  fill: #000;
  width: 1.2em;
  height: 1.2em;
}
.splide__arrow:hover:not(:disabled) {
  opacity: .9;
}
.splide__arrow:disabled {
  opacity: .3;
}
.splide__arrow:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide.is-focus-in .splide__arrow:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}
.splide__pagination {
  z-index: 1;
  padding: 0 1em;
  position: absolute;
  bottom: .5em;
  left: 0;
  right: 0;
}
.splide__pagination__page {
  opacity: .7;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  transition: transform .2s linear;
  display: inline-block;
  position: relative;
}
.splide__pagination__page.is-active {
  z-index: 1;
  background: #fff;
  transform: scale(1.4);
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9;
}
.splide__pagination__page:focus-visible,
.splide.is-focus-in .splide__pagination__page:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: #0000;
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible,
.splide.is-focus-in .splide__toggle:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}
.splide__track--nav > .splide__list > .splide__slide {
  cursor: pointer;
  border: 3px solid #0000;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide__pagination--ttb {
  flex-direction: column;
  padding: 1em 0;
  display: flex;
  inset: 0 .5em 0 auto;
}
carousel-splide {
  display: block;
}
carousel-splide[type=three-up] {
  padding: 2rem 0 0;
}
.callout--full + carousel-splide[type=three-up],
.callout--overlay + carousel-splide[type=three-up],
.footer + carousel-splide[type=three-up],
.bg--blue + carousel-splide[type=three-up],
.callout--block.callout--blue + carousel-splide[type=three-up],
.bg--blue-dark + carousel-splide[type=three-up],
.callout--block.callout--blue-dark + carousel-splide[type=three-up],
.bg--blue-light + carousel-splide[type=three-up],
.callout--block.callout--blue-light + carousel-splide[type=three-up],
.bg--yellow + carousel-splide[type=three-up],
.callout--block.callout--yellow + carousel-splide[type=three-up] {
  padding-block-start: 4rem;
}
carousel-splide[type=three-up]:has(+ .callout--full),
carousel-splide[type=three-up]:has(+ .callout--overlay),
carousel-splide[type=three-up]:has(+ .footer),
carousel-splide[type=three-up]:has(+ .bg--blue),
carousel-splide[type=three-up]:has(+ .callout--block.callout--blue),
carousel-splide[type=three-up]:has(+ .bg--blue-dark),
carousel-splide[type=three-up]:has(+ .callout--block.callout--blue-dark),
carousel-splide[type=three-up]:has(+ .bg--blue-light),
carousel-splide[type=three-up]:has(+ .callout--block.callout--blue-light),
carousel-splide[type=three-up]:has(+ .bg--yellow),
carousel-splide[type=three-up]:has(+ .callout--block.callout--yellow) {
  padding-block-end: 2rem;
}
carousel-splide[type=three-up].bg--blue,
carousel-splide[type=three-up].bg--blue-dark,
carousel-splide[type=three-up].bg--blue-light,
carousel-splide[type=three-up].bg--yellow,
carousel-splide[type=three-up].bg--white {
  padding-block: 4rem;
}
carousel-splide[type=contained] {
  padding: 2rem 0 0;
}
.callout--full + carousel-splide[type=contained],
.callout--overlay + carousel-splide[type=contained],
.footer + carousel-splide[type=contained],
.bg--blue + carousel-splide[type=contained],
.callout--block.callout--blue + carousel-splide[type=contained],
.bg--blue-dark + carousel-splide[type=contained],
.callout--block.callout--blue-dark + carousel-splide[type=contained],
.bg--blue-light + carousel-splide[type=contained],
.callout--block.callout--blue-light + carousel-splide[type=contained],
.bg--yellow + carousel-splide[type=contained],
.callout--block.callout--yellow + carousel-splide[type=contained] {
  padding-block-start: 4rem;
}
carousel-splide[type=contained]:has(+ .callout--full),
carousel-splide[type=contained]:has(+ .callout--overlay),
carousel-splide[type=contained]:has(+ .footer),
carousel-splide[type=contained]:has(+ .bg--blue),
carousel-splide[type=contained]:has(+ .callout--block.callout--blue),
carousel-splide[type=contained]:has(+ .bg--blue-dark),
carousel-splide[type=contained]:has(+ .callout--block.callout--blue-dark),
carousel-splide[type=contained]:has(+ .bg--blue-light),
carousel-splide[type=contained]:has(+ .callout--block.callout--blue-light),
carousel-splide[type=contained]:has(+ .bg--yellow),
carousel-splide[type=contained]:has(+ .callout--block.callout--yellow) {
  padding-block-end: 2rem;
}
carousel-splide[type=contained].bg--blue,
carousel-splide[type=contained].bg--blue-dark,
carousel-splide[type=contained].bg--blue-light,
carousel-splide[type=contained].bg--yellow,
carousel-splide[type=contained].bg--white {
  padding-block: 4rem 2rem;
}
.carousel.is-focus-in :focus {
  outline: .125rem solid var(--primary-color);
  outline-offset: .125rem;
}
.carousel.is-focus-in :focus:not(:focus-visible) {
  outline: none;
}
.carousel.is-focus-in .carousel__arrow:focus {
  outline: .125rem solid var(--primary-color);
  outline-offset: .125rem;
}
.carousel.is-focus-in .carousel__arrow:focus:not(:focus-visible) {
  outline: none;
}
.carousel.is-focus-in .carousel__pagination__page:focus {
  outline: .125rem solid var(--primary-color);
  outline-offset: .125rem;
}
.carousel.is-focus-in .carousel__pagination__page:focus:not(:focus-visible) {
  outline: none;
}
.carousel__container {
  position: relative;
}
.carousel__pagination {
  gap: .438rem;
  padding: .5rem 0 1.5rem;
  display: flex;
  position: relative;
}
.carousel__pagination__page {
  background: var(--primary-color);
  opacity: 1;
  border-radius: 50%;
  width: .938rem;
  height: .938rem;
}
.carousel__pagination__page:focus-visible {
  outline: .125rem solid var(--primary-color);
  outline-offset: .125rem;
}
.carousel__pagination__page:hover {
  opacity: 1;
}
.carousel__pagination__page.is-active {
  background-color: var(--accent-color);
  transform: none;
}
.carousel__arrow {
  border: .125rem solid var(--primary-color);
  opacity: 1;
  background-color: #0000;
  width: 2em;
  height: 2.5em;
}
.carousel__arrow:disabled {
  opacity: 0;
}
.carousel__arrow:focus-visible {
  outline: .125rem solid var(--primary-color);
  outline-offset: .125rem;
}
.carousel__arrow:hover {
  opacity: 1;
}
@container (width >= 57.5rem) {
  .carousel__arrow {
    width: 2.5em;
    height: 2.5em;
  }
  .carousel__arrow--prev {
    left: -4rem;
  }
  .carousel__arrow--next {
    right: -4em;
  }
}
.carousel__arrow svg {
  fill: var(--primary-color);
}
.carousel__toggle {
  color: #fff;
  background-color: #013b72;
  border: none;
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  font-size: 1.25rem;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
.carousel--contained .carousel__container {
  max-width: 75rem;
  margin: 0 auto;
}
.carousel--contained .carousel__intro {
  text-align: center;
  margin-bottom: 4rem;
}
.carousel--contained .carousel__title {
  font-family: Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
}
.carousel--contained .carousel__description {
  font-family: Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.2;
}
.carousel--contained .carousel__item__container {
  height: 100%;
  position: relative;
}
.carousel--contained .carousel__item__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@container (width >= 57.5rem) {
  .carousel--contained .carousel__item__image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    position: relative;
  }
}
.carousel--contained .carousel__item__image--no-text {
  position: relative;
}
.carousel--contained .carousel__item__text {
  --primary-color: #fff;
  --background-color: #000;
  color: #fff;
  background-color: #0009;
  width: 100%;
  height: 100%;
  position: relative;
}
@container (width >= 57.5rem) {
  .carousel--contained .carousel__item__text {
    background-color: #0000;
    background-image: linear-gradient(#0000 0%, #000000bf 100%);
    height: 60%;
    position: absolute;
    bottom: 0;
  }
}
.carousel--contained .carousel__item__text__inner {
  width: 85%;
  height: 100%;
  padding: 2rem 3rem;
  bottom: 0;
  left: 0;
}
@container (width >= 57.5rem) {
  .carousel--contained .carousel__item__text__inner {
    width: 60%;
    height: auto;
    padding: 2rem;
    position: absolute;
  }
}
.carousel--contained .carousel__item__text--no-image {
  background-image: none;
}
@container (width >= 57.5rem) {
  .carousel--contained .carousel__item__text--no-image {
    height: auto;
    position: relative;
  }
  .carousel--contained .carousel__item__text--no-image .splide__slide__text__inner {
    width: 100%;
    padding: 2rem 4rem;
    position: relative;
  }
}
.carousel--contained .carousel__item__title {
  text-shadow: 0 0 .5em #000000bf;
  font-family: Roboto, sans-serif;
  font-size: 1.75rem;
}
.carousel--contained .carousel__item__body {
  text-shadow: 0 0 .5em #000000bf;
  font-family: Roboto, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.carousel--contained .carousel__item__body .wysiwyg {
  font-size: 1.125rem;
}
.carousel--contained .carousel__item__body .wysiwyg p {
  font-size: 1.125rem;
  line-height: 1.5;
}
.carousel--contained .carousel__item__link {
  color: #fff;
  border: 1px solid #fff;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: background-color .15s, color .15s;
}
.carousel--contained .carousel__item__link:hover {
  color: #000;
  text-shadow: none;
  background-color: #fff;
}
.hero--carousel carousel-splide[type=contained] .carousel__pagination {
  position: absolute;
  bottom: 0;
}
.hero--carousel carousel-splide[type=contained] .carousel__pagination__page {
  background: #fff;
}
.hero--carousel carousel-splide[type=contained] .carousel__pagination__page.is-active {
  background: #fecc02;
}
.hero--carousel carousel-splide[type=contained] .carousel__arrow {
  color: #fff;
  background-color: #0282ca;
  border: 0;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 2rem;
}
.hero--carousel carousel-splide[type=contained] .carousel__arrow svg {
  fill: #fff;
}
.hero--carousel carousel-splide[type=contained] .carousel__arrow--prev {
  left: 1.5rem;
}
@media (min-width: 57.5rem) {
  .hero--carousel carousel-splide[type=contained] .carousel__arrow--prev {
    left: 3.625rem;
  }
}
.hero--carousel carousel-splide[type=contained] .carousel__arrow--next {
  right: 1.5rem;
}
@media (min-width: 57.5rem) {
  .hero--carousel carousel-splide[type=contained] .carousel__arrow--next {
    right: 3.625rem;
  }
}
.carousel--image-gallery {
  padding: 2rem 0 6rem;
}
.callout--full + .carousel--image-gallery,
.callout--overlay + .carousel--image-gallery,
.footer + .carousel--image-gallery,
.bg--blue + .carousel--image-gallery,
.callout--block.callout--blue + .carousel--image-gallery,
.bg--blue-dark + .carousel--image-gallery,
.callout--block.callout--blue-dark + .carousel--image-gallery,
.bg--blue-light + .carousel--image-gallery,
.callout--block.callout--blue-light + .carousel--image-gallery,
.bg--yellow + .carousel--image-gallery,
.callout--block.callout--yellow + .carousel--image-gallery {
  padding-block-start: 4rem;
}
.carousel--image-gallery:has(+ .callout--full),
.carousel--image-gallery:has(+ .callout--overlay),
.carousel--image-gallery:has(+ .footer),
.carousel--image-gallery:has(+ .bg--blue),
.carousel--image-gallery:has(+ .callout--block.callout--blue),
.carousel--image-gallery:has(+ .bg--blue-dark),
.carousel--image-gallery:has(+ .callout--block.callout--blue-dark),
.carousel--image-gallery:has(+ .bg--blue-light),
.carousel--image-gallery:has(+ .callout--block.callout--blue-light),
.carousel--image-gallery:has(+ .bg--yellow),
.carousel--image-gallery:has(+ .callout--block.callout--yellow) {
  padding-block-end: 8rem;
}
.carousel--image-gallery .carousel__list {
  align-items: stretch;
}
.carousel--image-gallery .carousel__item__container {
  color: #fff;
  background-color: #000;
  margin: 0;
  position: relative;
}
.carousel--image-gallery .carousel__item__image {
  object-fit: cover;
  width: auto;
  height: min(30rem, 80dvh, 60vw);
}
.carousel--image-gallery .carousel__item__caption {
  color: #fff;
  background-color: #000000b3;
  max-width: min(100% - 1rem, 28rem, 85vw);
  padding: .5rem 1rem;
  font-family: Roboto Slab, serif;
  font-size: 1.125rem;
  position: absolute;
  bottom: .5rem;
  left: .5rem;
}
.carousel--image-gallery .carousel__arrow {
  background-color: var(--background-color);
  color: var(--primary-color);
}
.carousel--image-gallery .carousel__arrow--prev {
  left: .5rem;
}
.carousel--image-gallery .carousel__arrow--next {
  right: .5rem;
}
@container (width >= 57.5rem) {
  .carousel--three-up .carousel__arrow--prev {
    left: .5rem;
  }
  .carousel--three-up .carousel__arrow--next {
    right: .5rem;
  }
}
.carousel--three-up .carousel__container {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 1em;
  display: block;
}
@container (width >= 47.5rem) {
  .carousel--three-up .carousel__container {
    width: 95%;
    padding: 0;
  }
}
@container (width >= 75rem) {
  .carousel--three-up .carousel__container {
    width: 90%;
  }
}
.carousel--three-up .carousel__intro {
  text-align: center;
  margin-bottom: 4rem;
}
.carousel--three-up .carousel__title {
  font-family: Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
}
.carousel--three-up .carousel__description {
  font-family: Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.2;
}
.carousel--three-up .carousel__list {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  display: grid;
}
.carousel--three-up .carousel__item__image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.carousel--three-up .carousel__item__title {
  font-family: Roboto, sans-serif;
  font-size: 1.75rem;
  font-weight: 200;
}
.carousel--three-up .carousel__item__body {
  font-family: Roboto, sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}
.carousel--three-up .carousel__item__body .wysiwyg,
.carousel--three-up .carousel__item__body .wysiwyg p {
  font-size: 1.25rem;
  line-height: 1.2;
}
.carousel--three-up .carousel__item__link {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: .5em;
  text-decoration: none;
  transition: background-color .15s, color .15s;
  display: inline-block;
}
.carousel--three-up .carousel__item__link:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
}
