/* Hero Slider Pagination & Navigation Style */
.hero-slider .swiper-pagination {
  line-height: 1;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 479px) {
  .hero-slider .swiper-pagination {
    bottom: 20px;
  }
}
.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  opacity: 0.75;
  border: 2px solid #FFFFFF;
  background-color: transparent;
}
.hero-slider .swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  opacity: 1;
  background-color: #FFFFFF;
}
.hero-slider .swiper-button-prev, .hero-slider .swiper-button-next {
  margin: 0 !important;
  transform: translateY(-50%);
  transition: var(--transition);
}
@media only screen and (max-width: 767px) {
  .hero-slider .swiper-button-prev, .hero-slider .swiper-button-next {
    display: none;
  }
}
.hero-slider .swiper-button-prev {
  left: 30px;
}
.hero-slider .swiper-button-next {
  right: 30px;
}

/* Hero Item Style */
.hero-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 770px;
  padding: 16%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-item {
    height: 600px;
    padding: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-item {
    height: 600px;
    padding: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-item {
    height: 500px;
    padding: 60px 15px;
  }
  .hero-item-bg {
    display: none;
  }
  .hero-item-content {
    inline-size: 100% !important; 
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 575px) {
  .hero-item {
    height: 400px;
    padding: 60px 0;
  }
  .hero-item-bg {
    display: none;
  }
  .hero-item-content {
   inline-size:100% !important; 
   padding-right: 0 !important; 
  }
}
.hero-item-bg {
  /*position: absolute;*/
  z-index: -1;
  top: 0;
  left: 0;
  /*width: 100%;
  height: 100%;*/
}
.hero-item-bg img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-item-content {
  padding-right: 80px;
  inline-size: 60%;
}
@media only screen and (max-width: 575px) {
  .hero-item-content {
    padding: 15px;
  }
}
.hero-item-content > span {
  margin: 7% auto;
  display: block;
  line-height: 1.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-item-content > span {
    font-size: 30px !important;
  }
}
.hero-item-content span:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-item-content > span {
    font-size: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .hero-item-content > span {
    font-size: 24px !important;
  }
}
@media only screen and (max-width: 575px) {
  .hero-item-content > span {
    font-size: 20px !important;
  }
}
@media only screen and (max-width: 479px) {
  .hero-item-content > span {
    font-size: 16px !important;
  }
}
.hero-item-content h1 {
  margin-bottom: 20px;
  line-height: 1.25;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-item-content h1 {
    font-size: 95px !important;
  }
}
.hero-item-content h1:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-item-content h1 {
    font-size: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .hero-item-content h1 {
    font-size: 60px !important;
  }
}
@media only screen and (max-width: 575px) {
  .hero-item-content h1 {
    font-size: 50px !important;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 479px) {
  .hero-item-content h1 {
    font-size: 40px !important;
    margin-bottom: 10px;
  }
}
.hero-item-content p {
  font-weight: 600;
  margin-bottom: 55px;
}
.hero-item-content p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-item-content p {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-item-content p {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .hero-item-content p {
    font-size: 14px !important;
  }
}
.hero-item-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.hero-item-buttons a svg {
	width: 10px;
	height: 10px;
}
.hero-item-buttons a svg path {
    stroke: currentColor;
    fill: currentColor;
}
@media only screen and (max-width: 479px) {
  .hero-item-buttons .btn {
    font-size: 13px;
    padding: 10px 15px;
    gap: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-item-buttons {
    gap: 10px;
  }
}

/* Hero Slide Animation */
.swiper-slide .hero-item-content > * {
  visibility: hidden;
  transition: var(--transition);
  transform: translateY(50px);
  opacity: 0;
}
.swiper-slide-active .hero-item-content > * {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.swiper-slide-active .hero-item-content > *:nth-child(1) {
  transition-delay: 0s;
}
.swiper-slide-active .hero-item-content > *:nth-child(2) {
  transition-delay: 0s;
}
.swiper-slide-active .hero-item-content > *:nth-child(4) {
  transition-delay: 0s;
}
.swiper-slide-active .hero-item-content > *:nth-child(3) {
  transition-delay: 0s;
}