.slider-height {
    min-height: 500px !important;
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .slider-height {
        min-height:200px !important;
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .slider-height {
        min-height:200px !important;
    }
}

@media only screen and (min-width: 576px) and(max-width: 767px) {
    .slider-height {
        min-height:200px !important;
    }
}

@media (max-width: 575px) {
    .slider-height {
        min-height:200px !important;
    }
}

.single-slider {
  position: relative; /* Karartı katmanının konumlanması için gerekli */
  background: url('../img/hero/h1_hero.jpg') center/cover no-repeat; /* Arka plan resmin */
}

.single-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Siyah, %40 opak */
  z-index: 1;
}

.single-slider .container {
  position: relative;
  z-index: 2; /* Yazının karartının üzerinde görünmesi için */
}