/*
$grid-breakpoints: (
  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
) !default;
*/
.hero-slider {
  min-height: 100vh;
}
.hero-slider .splide__track,
.hero-slider .splide__list {
  height: 100%;
}
.hero-slider .splide__pagination {
  bottom: 50px;
}
.hero-slider .splide__pagination .splide__pagination__page {
  border: 1px solid #FFFFFF !important;
}
.hero-slider .splide__pagination .splide__pagination__page.is-active {
  background-color: #FFFFFF !important;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slide__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 2rem;
  max-width: 800px;
}
.hero-slide__title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: white;
}
@media only screen and (max-width: 768px) {
  .hero-slide__title {
    font-size: 2rem;
  }
}
.hero-slide__subtitle {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
@media only screen and (max-width: 768px) {
  .hero-slide__subtitle {
    font-size: 1rem;
  }
}
