.ns-hover-card-title {
  padding-bottom: 100px;
  max-width: 450px;
}
.ns-hover-card-title strong {
  font-size: 50px;
  color: #e6382a;
}
@media screen and (max-width: 767px) {
  .ns-hover-card-title {
    padding-bottom: 40px;
  }
  .ns-hover-card-title strong {
    font-size: 25px;
  }
}

/*NS Image Slider with Text */
/*  Overall Conatiner*/
#ns-slider {
  position: relative;
  /* margin: 20px auto 0 auto; */
  border-radius: 4px;
  width: 100%;
  /*   height: 400px; */
  height: 100vh;
  overflow: hidden;
}

#ns-slider ul.image_slider_ul {
  position: relative;
  margin: 0;
  padding: 0;
  width: 400%;
  height: 100%;
  list-style: none;
}

#ns-slider ul.image_slider_ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 25%;
  height: 100%;
}

#ns-slider ul.image_slider_ul li .bgimage {
  width: 100%;
  height: 100%;
  position: relative;
  /* background-color: #333; */
  background-position: 100% 0%;
  background-size: cover;
  background-repeat: no-repeat;
  /* -webkit-filter: blur(2px); */
}

/*  Indicators*/

#ns-slider .ns-indicator_con {
  width: 100%;
  height: auto;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  bottom: 0;
}

#ns-slider .ns-indicator_con ul.ns-indicator {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}

#ns-slider .ns-indicator_con ul.ns-indicator li {
  position: relative;
  list-style: none;
  width: 20px;
  height: 4px;
  background-color: #fff;
  /* border: 1px solid #fff; */
  display: inline-block;
  margin: 0 3px;
  border-radius: 1.5px;
  transition: 800ms ease-in-out;
}

#ns-slider .ns-indicator_con ul.ns-indicator li.active {
  background-color: #f2b206;
}

/*  Buttons*/

.ns-slide-btn.control_prev,
.ns-slide-btn.control_next {
  position: absolute;
  /* top: 42%; */
  z-index: 999;
  display: block;
  width: 7%;
  height: 100%;
  background: transparent;
  /* background: rgba(0,0,0,0.1); */
  color: #eee;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  border: none;
  outline: none;
  /* opacity: 0.8; */
  cursor: pointer;
}

ns-slide-btn.control_prev:hover,
.ns-slide-btn.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  /* background-color: #fff; */
  color: #fff;
}

.ns-slide-btn.control_prev {
  border-radius: 0 4px 4px 0;
}

.ns-slide-btn.control_next {
  right: 0;
  border-radius: 4px 0 0 4px;
}

.ns-slider-text-area {
  max-width: 40%;
  position: absolute;
  color: #fff;
  top: 200px;
  left: 200px;
}
.ns-slide-title {
  line-height: 1.2;
  font-weight: 700;
  font-size: 65px;
  color: #fff;
}
.ns-slide-text {
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .ns-slider-text-area {
    max-width: 100%;
    top: 130px;
    left: 50px;
  }
  .ns-slide-title {
    font-size: 50px;
  }
  .ns-slide-text {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .ns-slider-text-area {
    max-width: 100%;
    top: 130px;
    left: 50px;
  }
  .ns-slide-title {
    font-size: 38px;
  }
}