.kt-hero-slider{
  position:relative;
  width:100%;
  height:700px;
  overflow:hidden;
}

.kt-hero-slider__track{
  position:relative;
  width:100%;
  height:100%;
}

.kt-hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .7s ease, transform .9s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.kt-hero-slide.is-active{
  opacity:1;
  transform:scale(1);
  z-index:1;
}

.kt-hero-slide__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(0deg, rgba(16,41,67,.55), rgba(16,41,67,.35));
}

.kt-hero-slide__inner{
  position:relative;
  z-index:2;
  max-width:1100px;
  width:100%;
  text-align:center;
}

.kt-hero-slide__title{
  margin:0 0 12px;
  color:#fff;
  font-weight:800;
  line-height:1.2;
  font-size:44px;
  text-shadow:0 8px 25px rgba(0,0,0,.25);
}

.kt-hero-slide__subtitle{
  margin:0 0 22px;
  color:#fff;
  font-weight:400;
  font-size:18px;
  line-height:1.5;
  opacity:.95;
  text-shadow:0 8px 25px rgba(0,0,0,.18);
}

.kt-hero-slide__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 28px;
  border:2px solid #fff;
  color:#fff;
  border-radius:5px;
  text-decoration:none !important;
  background:transparent;
  transition:all .25s ease;
  font-weight:700;
}

.kt-hero-slide__btn:hover{
  background:#0f2942;
  border-color:#0f2942;
  color:#fff;
}

/* Nav arrows - hidden until hover */
.kt-hero-slider__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:56px;
  border:2px solid rgba(255,255,255,.9);
  color:#fff;
  background:rgba(0,0,0,.0);
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, background .25s ease;
  z-index:3;
}

.kt-hero-slider:hover .kt-hero-slider__nav{
  opacity:1;
  pointer-events:auto;
}

.kt-hero-slider__nav:hover{
  background:rgba(16,41,67,.35);
}

.kt-hero-slider__nav--prev{ left:18px; }
.kt-hero-slider__nav--next{ right:18px; }

.kt-hero-slider__nav-icon{
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Dots */
.kt-hero-slider__dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}

.kt-hero-slider__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.9);
  background:transparent;
  cursor:pointer;
  padding:0;
  transition:all .25s ease;
}

.kt-hero-slider__dot.is-active{
  background:#fe8601;
  border-color:#fe8601;
}

@media (max-width: 1024px){
  .kt-hero-slide__title{ font-size:34px; }
  .kt-hero-slide__subtitle{ font-size:16px; }
}

@media (max-width: 767px){
  .kt-hero-slider{ height:420px; }
  .kt-hero-slide__title{ font-size:24px; }
  .kt-hero-slide__subtitle{ font-size:14px; margin-bottom:16px; }
  .kt-hero-slide__btn{ padding:10px 20px; }
  .kt-hero-slider__nav{ width:40px; height:52px; }
  .kt-hero-slider__nav--prev{ left:10px; }
  .kt-hero-slider__nav--next{ right:10px; }
}
