/*============================================================================================
	Hero Area
==============================================================================================*/
.hero-area .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%);
  line-height: 16px;
}
.hero-area .owl-theme .owl-dots .owl-dot span {
  width: 56px;
  height: 4px;
  margin: 0;
  margin-right: 6px;
  background: var(--white-color);
  display: block;
  transition: all 0.4s ease;
  border-radius: 0;
}
.hero-area .owl-theme .owl-dots .owl-dot.active span,
.hero-area .owl-theme .owl-dots .owl-dot span:hover {
  background: var(--primary-color) !important;
}

@media only screen and (max-width: 767px) {
  .hero-area .owl-theme .owl-dots .owl-dot span {
    width: 28px;
  }
  .hero-area .owl-dots {
    bottom: -24px;
  }
  .hero-area .owl-theme .owl-dots .owl-dot span {
    background: var(--primary-color);
    opacity: 0.5;
  }
  .hero-area .owl-theme .owl-dots .owl-dot.active span,
  .hero-area .owl-theme .owl-dots .owl-dot span:hover {
    background: var(--primary-color) !important;
    opacity: 1;
  }
}

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