/*** CMS - Carrusel Index ***/
#index-carousel {
  height: 70vh;
}

#index-carousel .splide__track img {
  height: 70vh;
}

#index-carousel .splide__slide {
  padding: 0 !important;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 700px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.slide-bg img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  filter: brightness(0.8);
}

.slide-content h1 {
  margin-bottom: .5rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.slide-content h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}

.slide-content p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  #index-carousel {
    height: 87vh !important;
  }

  #index-carousel .splide__track img {
    height: 87vh !important;
  }

  .slide-content {
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .slide-content h1 {
    font-size: .925rem;
  }

  .slide-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .slide-content p {
    display: none;
  }
}