.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}
@media(max-width:767px){
  .hero-slider {
    height: 80vh;
  }
}
@media(min-width:1920px){
  .hero-slider {
    height: 90vh;
  }
}

.hero-slider .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position-x: 75%;
  transform: scale(1);
  transition: transform 1.4s cubic-bezier(.77,0,.18,1);
  z-index: 1;
}
.hero-slider .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(6, 9, 38, 0.7) 0%, rgba(3, 6, 35, 0.3) 50%, rgba(3, 6, 35, 0) 100%);
}

.hero-slider .hero-swiper {
  position: relative;
  height: 100%;
  z-index: 5;
}

.hero-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-slider .slide-pattern {
  position: absolute;
  left: 0;
  top: 0;
  height: 101%;
  width: 40px;
  object-fit: cover;
  object-position: left center;
  z-index: 2;
  pointer-events: none;
}

@media(max-width:1500px){
    .hero-slider .slide-pattern {
        width: 5px;
    }
}

.hero-slider .hero-inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
@media(max-width:1024px){
	.hero-slider .hero-inner{
  padding: 0 30px;
	}
}
@media(max-width:767px){
	.hero-slider .hero-inner{
  padding: 0 25px;
	}
}
.hero-slider .slide-content {
  color: #ffffff;
  max-width: 650px;
}

.hero-slider .slide-wysiwyg{
    margin-bottom: 50px;
}
@media(max-width:767px){
  .hero-slider .slide-wysiwyg{
      margin-bottom: 15px;
  }
}

.hero-slider .slide-wysiwyg h1,
.hero-slider .slide-wysiwyg h2,
.hero-slider .slide-wysiwyg h3,
.hero-slider .slide-wysiwyg h4,
.hero-slider .slide-wysiwyg h5,
.hero-slider .slide-wysiwyg h6 {
    font-family: var(--e-global-typography-primary-font-family);
    font-weight: 700;
    line-height: 120%
}

.hero-slider .slide-wysiwyg p {
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 18px;
}

.hero-slider .btn {
  display: inline-block;
  padding: 10px 25px;
  background: #b4ff00;
  color: #000;
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-slider .slide-content .btn {
    font-family: var(--e-global-typography-primary-font-family);
}

.hero-slider .slide-content .btn:first-of-type {
    background-color: #C2E7DA;
    color: #000;
    margin-right: 20px;
    transition: 0.3s;
}
.hero-slider .slide-content .btn:first-of-type:hover {
    background-color: #00A687;
    color: #fff;
    transition: 0.3s;
}
.hero-slider .slide-content .btn:nth-of-type(2) {
    transition: 0.3s;
}
.hero-slider .slide-content .btn:nth-of-type(2):hover {
    background-color: #C2E7DA;
    transition: 0.3s;
}

.hero-slider .hero-pagination-wrapper {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  padding: 0 40px;
  pointer-events: none;
  z-index: 6;
}
@media(max-width:1024px){
	.hero-slider .hero-pagination-wrapper{
		padding: 0 30px;
	}
}
@media(max-width:767px){
	.hero-slider .hero-pagination-wrapper{
		padding: 0 25px;
	}
}
@media (max-height: 900px) {
  .hero-slider .hero-pagination-wrapper {
    bottom:10px;
  }
}

.hero-slider .hero-pagination {
  pointer-events: auto;
  max-width: 650px;
  margin-top: 30px;
}

.hero-slider .hero-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.75;
  width: 10px;
  height: 10px;
  margin: 12px 0;
}

.hero-slider .hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #b4ff00;
}

/* Arrows */
.hero-slider .hero-arrows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.hero-slider .hero-arrow {
    pointer-events: auto;
    cursor: pointer;
    position: absolute;
    left: 50%; 
    transform: translateX(-50%);
}


.hero-slider .hero-arrow-prev {
    top: 20px;
    transform: translateX(-50%) rotate(180deg); 
    opacity: 0;
}

.hero-slider .hero-arrow-next {
    bottom: 20px; 
    transform: translateX(-50%); 
}

.hero-slider .hero-arrow img {
    width: 40px;
    height: auto;
}