.hero-area {
  position: relative;
  z-index: 1;
}

.hero-area .owl-prev, .hero-area .owl-next {
  position: absolute;
  top: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  left: 50px;
  text-transform: uppercase;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .owl-prev, .hero-area .owl-next {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-area .owl-prev, .hero-area .owl-next {
    left: 20px;
    font-size: 16px;
  }
}

.hero-area .owl-prev:hover, .hero-area .owl-next:hover {
  color: #ff7902;
}

.hero-area .owl-next {
  left: auto;
  right: 50px;
}

@media only screen and (max-width: 767px) {
  .hero-area .owl-next {
    right: 20px;
  }
}

.hero-area:hover .owl-next, .hero-area:hover .owl-prev {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 300px) {
  .single-slide {
    position: relative;
    z-index: 99;
    width: 100%;
    height: 250px;
    background-color: #ffffff;
    overflow: hidden;
  }
}

.single-slide {
  position: relative;
  z-index: 99;
  width: 100%;
  height: 900px;
  background-color: #ffffff;
  overflow: hidden;
}

.single-slide .slide-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -12;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-animation: slide-bg linear 10000ms infinite;
  animation: slide-bg linear 10000ms infinite;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 474px) {
  .single-slide .slide-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -12;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-animation: slide-bg linear 10000ms infinite;
    animation: slide-bg linear 10000ms infinite;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media (min-width: 1200px) {
  .single-slide .slide-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -12;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-animation: slide-bg linear 10000ms infinite;
    animation: slide-bg linear 10000ms infinite;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.single-slide .welcome-text {
  position: relative;
  z-index: 1;
}

.single-slide .welcome-text h2 {
  font-size: 72px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.single-slide .welcome-text h2 span {
  color: #ffffff;
  font-weight: 300;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-slide .welcome-text h2 {
    font-size: 48px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slide .welcome-text h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {
  .single-slide .welcome-text h2 {
    font-size: 24px;
  }
}

.single-slide .welcome-text h4 {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .single-slide .welcome-text h4 {
    font-size: 18px;
  }
}

.single-slide .welcome-text h4 span {
  font-weight: 300;
}

@media (min-width: 300px) {
  .single-slide {
    height: 300px;
  }
}

@media (min-width: 576px) {
  .single-slide {
    height: 400px;
  }
}

@media (min-width: 768px) {
  .single-slide {
    height: 500px;
  }
}

@media (min-width: 992px) {
  .single-slide {
    height: 600px;
  }
}

@media (min-width: 1200px) {
  .single-slide {
    height: 1200px;
  }
}

@keyframes slide-bg {
  30% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
  50% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

