.section-hero-slider {
  width: 100%;
  overflow: hidden;
}
.section-hero-slider .hero-splide .splide__pagination {
  bottom: 18px;
  position: absolute;
  gap: 20px;
  left: 50%;
  padding-left: 0;
  transform: translateX(-50%);
}
.section-hero-slider .hero-splide .splide__pagination li button {
  background: rgba(255, 255, 255, 0.5);
  width: 40px;
  height: 2px;
  border-radius: 2px;
  opacity: 1;
  transition: background 0.3s;
  outline: none;
  border: none;
}
.section-hero-slider .hero-splide .splide__pagination li button.is-active {
  background: #fff;
}
.section-hero-slider .hero-splide .splide__arrows {
  display: none;
}
.section-hero-slider .hero-slide {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.section-hero-slider .hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 30, 48, 0.85) 40%, rgba(20, 30, 48, 0.2) 100%);
}
.section-hero-slider .hero-slide-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 50px;
  width: 100%;
}
.section-hero-slider .hero-slide-title {
  font: 500 70px "Roboto", sans-serif;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 560px;
}
.section-hero-slider .hero-slide-subtitle {
  font: 400 18px "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px;
  max-width: 480px;
}
.section-hero-slider .hero-slide-btn {
  display: inline-block;
  padding: 16px 28px;
  border: 1.5px solid #fff;
  border-radius: 50px;
  color: #fff;
  font: 400 20px "Roboto", sans-serif;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.section-hero-slider .hero-slide-btn:hover {
  background: #fff;
  color: #1a1a2e;
}
@media (max-width: 767px) {
  .section-hero-slider .hero-slide {
    min-height: 300px;
    background-position: center center;
  }
  .section-hero-slider .hero-slide-overlay {
    background: rgba(20, 30, 48, 0.65);
  }
  .section-hero-slider .hero-slide-content {
    padding: 120px 16px 60px;
  }
  .section-hero-slider .hero-slide-title {
    font-size: 40px;
    max-width: 100%;
  }
  .section-hero-slider .hero-slide-subtitle {
    font-size: 20px;
    margin-bottom: 37px;
  }
}