/*============================================================================================
	Start Hero Area
==============================================================================================*/
.hero {
  z-index: 2;
}
.hero-bg {
  padding-top: 130px;
}
.hero-slider {
  padding: 80px 0px;
}
.hero-content {
  position: relative;
}
.hero-title-icon {
  position: absolute;
  top: 51%;
  right: 14%;
  max-width: 70px !important;
}
.hero-content span {
  color: var(--primary-color);
  font-family: var(--font-family-2);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  display: inline-block;
  letter-spacing: -0.48px;
  margin-bottom: 20px;
}
.hero-content h1 {
  color: var(--white-color);
  font-weight: 800;
  line-height: 120%;
  font-size: 70px;
  margin-bottom: 20px;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  margin-right: 124px;
}
.hero-content-btn {
  margin-top: 34px;
}
.hero-img img {
  width: 100% !important;
  height: 580px;
  object-fit: contain;
}
.hero-shapes .shape-1 {
  display: none;
}
.hero-shapes .shape-2 {
  position: absolute;
  right: 5%;
  z-index: -1;
  top: 2%;
}

/* Hero Animations */
.hero .owl-item.active .hero-content span {
  animation: fadeInUp 0.8s both 1s;
}
.hero .owl-item.active .hero-content h1 {
  animation: fadeInUp 1s both 1.2s;
}
.hero .owl-item.active .hero-content p {
  animation: fadeInUp 1.2s both 1.4s;
}
.hero .owl-item.active .hero-content-btn {
  animation: fadeInUp 1.4s both 1.6s;
}
.hero .owl-item.active .hero-img {
  animation: fadeIn 1s both 1s;
}

/* Slider Controls */
.owl-carousel.hero-slider .owl-nav [class*="owl-"] {
  margin: 0px;
  padding: 0 !important;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  border: 2px solid var(--primary-color) !important;
  background: transparent;
  transition: all 0.4s ease;
  font-size: 28px;
  color: var(--primary-color);
  line-height: 64px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
  visibility: hidden;
}
.owl-carousel.hero-slider:hover .owl-nav [class*="owl-"] {
  opacity: 1;
  visibility: visible;
}
.owl-carousel.hero-slider .owl-prev:hover,
.owl-carousel.hero-slider .owl-next:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.owl-carousel.hero-slider .owl-nav .owl-next {
  right: -80px;
}
.owl-carousel.hero-slider .owl-nav .owl-prev {
  left: -80px;
}

.owl-carousel.hero-slider .owl-controls {
  position: absolute;
  width: 100%;
  bottom: 16px;
}
.owl-carousel.hero-slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 40px;
  line-height: 0;
  transform: translate(-50%);
  border-radius: 100%;
}
.owl-carousel.hero-slider .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background: var(--primary-color);
  opacity: 0.5;
  display: block;
  border-radius: 100%;
}
.owl-carousel.hero-slider .owl-dot.active span,
.owl-carousel.hero-slider .owl-dot:hover span {
  background: var(--primary-color);
  opacity: 1;
}

@media only screen and (min-width: 1920px) {
  .hero-shapes .shape-1 {
    position: absolute;
    top: -18%;
    left: 8%;
    display: block;
    z-index: -1;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.99px) {
  .hero-content h1 {
    font-size: 48px;
  }
  .owl-carousel.hero-slider .owl-nav .owl-prev {
    left: -40px;
  }
  .owl-carousel.hero-slider .owl-nav .owl-next {
    right: -40px;
  }
  .hero-slider {
    padding: 56px 0px;
  }
}

@media only screen and (max-width: 991.99px) {
  .hero {
    overflow: hidden;
  }
  .hero-slider {
    padding: 56px 0px 80px;
  }
  .hero-content span {
    font-size: 20px;
  }
  .hero-content h1 {
    font-size: 38px;
    margin-bottom: 16px;
  }
  .hero-content p {
    margin-right: 0;
  }
  .hero-img {
    margin-top: 40px;
  }
  .hero-img img {
    max-height: 380px;
    height: 380px;
  }
  .hero-shapes .shape-1 {
    display: none;
  }
  .hero-shapes .shape-2 {
    top: 0;
  }
  .owl-carousel.hero-slider .owl-nav [class*="owl-"] {
    display: none;
  }
  .hero-bg {
     padding-top: 100px;
  }

}
@media only screen and (min-width: 768px) and (max-width: 991.99px) {
  .hero-content h1 {
    font-size: 54px;
  }


}
/*============================================================================================
	End Hero Area
==============================================================================================*/
