/* Hero section */
.ed-hero-swiper {
  width: 100%;
  position: relative;
}

.ed-hero-swiper .swiper-wrapper {
  width: 90%;
}
.ed-hero-swiper .swiper-slide {
  height: auto;
}

/* Navigation arrows */
.ed-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99;
  pointer-events: auto;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

/* Show arrows on hero hover */
.ed-hero-section:hover .ed-hero-nav {
  opacity: 1;
  visibility: visible;
}

/* Brand color hover */
.ed-hero-nav:hover {
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.05);
}

/* Position */
.ed-hero-prev {
  left: 15px;
}

.ed-hero-next {
  right: 15px;
}

.swiper-button-next,
.swiper-button-prev {
  border: 1px solid #ffffff;
  border-radius: 50%;
  font-size: 28px;
  color: #ffffff;
  padding: 10px;
  height: 50px;
  width: 50px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #ffa729;
  color: black;
  font-weight: 600;
  border: 0;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}
@media (max-width: 767px) {
  .ed-hero-nav {
    display: none;
  }
}

.ed-testimonial-section {
  background-color: #d3d4d4;
}
.ed-discount-section {
  padding: 100px 0 70px 0;
}
.accordian-btn .theme-btn {
  min-width: 180px;
  font-size: 18px;
}

