/* ===== SLIDER ===== */
.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-content {
  position: absolute;
  top: 35%;
  left: 15%;
  transform: translateY(-50%);
  color: white;
}

.slide-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

.slide-subtitle {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 2rem;
}
.slide-slogan {
  font-size: 24px;
}
.slider-track.dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
@media (max-width: 768px) {
  .slide-title {
      font-size: 32px;
      font-weight: 700;
      text-transform: uppercase;
    }
    
    .slide-subtitle {
      font-size: 20px;
      text-transform: uppercase;
      font-weight: normal;
      margin-bottom: 2rem;
    }
    .slide-slogan {
      font-size: 18px;
    }
    .slide-content {
      position: absolute;
      top: 35%;
      left: 5%;
      transform: translateY(-50%);
      color: white;
    }
}
@media (max-width: 768px) {
  .slide-title {
      font-size: 26px;
      font-weight: 700;
      text-transform: uppercase;
    }
    
    .slide-subtitle {
      font-size: 20px;
      text-transform: uppercase;
      font-weight: normal;
      margin-bottom: 2rem;
    }
    .slide-slogan {
      font-size: 15px;
    }
    
}