/*============================================================================================
	Hero Area
==============================================================================================*/
.hero-area {
  background: #f8f8f8;
  padding-bottom: 40px;
}
.hero-slider {
  margin-top: 24px;
}
.hero-single-slider {
  height: 480px;
  border-radius: 8px;
  position: relative;
}
.hero-single-slider .row.justify-content-center {
  height: 480px;
}
.hero-single-slider::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 51, 51, 0) 0%,
    rgba(44, 51, 51, 0) 41.46%,
    #20262e 100%
  );
  border-radius: 8px;
}
.hero-content {
  z-index: 2;
  position: relative;
  margin-bottom: 48px;
  text-align: center;
}
.hero-content-title {
  color: var(--white-color);
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.hero-area .owl-item.active .hero-content-title {
  animation: fadeInUp 1s both 1.2s;
}

/* Slider Control */
.hero-area .owl-controls {
  position: absolute;
  width: 100%;
  bottom: 16px;
}
.hero-area .owl-nav {
  position: absolute;
  right: 16px;
  bottom: 0;
}
.hero-area .owl-dots {
  position: absolute;
  left: 14px;
  bottom: 0;
}
.hero-area .owl-theme .owl-nav [class*="owl-"] {
  border-radius: 4px;
  padding: 0;
  margin: 0;
  width: 32px;
  height: 32px;
  line-height: 35px;
  background: #ffffff4f;
  color: var(--white-color);
  font-size: 20px;
  transition: all 0.4s ease;
}
.hero-area .owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--secondary-color);
}
.hero-area .owl-prev {
  margin-right: 12px !important;
}
.hero-area .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0 2px;
      background: #ffffff4f;
  transition: all 0.4s ease;
}
.hero-area .owl-theme .owl-dots .owl-dot.active span,
.hero-area .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--secondary-color);
}

@media only screen and (max-width: 767px) {
  .hero-single-slider {
    height: 320px;
  }
  .hero-single-slider .align-self-end {
    align-self: initial !important;
  }
  .hero-content-title {
    font-size: 24px;
    margin-top: 60%;
  }
  .hero-content {
    margin-bottom: 0;
    padding: 0px 16px;
  }
  .hero-area .owl-theme .owl-nav [class*="owl-"] {
    width: 28px;
    height: 28px;
    line-height: 32px;
  }
  .hero-single-slider::before {
    background: linear-gradient(
      180deg,
      rgba(44, 51, 51, 0) 0%,
      rgba(44, 51, 51, 0.27) 41.46%,
      #20262e 100%
    );
  }
  .hero-area .owl-nav {
    bottom: -3px;
  }
}

/*============================================================================================
	End Hero Area
==============================================================================================*/
