.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  overflow: hidden;
}

/* Swiper button hover start */

.hero-slider .btn-next-prev::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.hero-slider .btn-next-prev:hover::before {
  height: 0%;
}

.hero-slider .btn-next-prev {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.hero-slider .btn-next-prev::before {
  background-color: var(--color-primary);
  transition: 0.3s ease-out;
}

.hero-slider .btn-next-prev span {
  color: var(--color-white);
  border: 1px solid transparent;
  transition: 0.2s 0.1s;
}

.hero-slider .btn-next-prev span:hover {
  transition: 0.2s 0.1s;
}

/* Swiper button hover end */

/* Button / Swiper Navigation / Swiper Pagination Style */

.swiper-navigation-style {
  /* rounded */
  /* border-radius: 5px; */

  /* Transparent */

  /* border: 1px solid var(--color-primary) !important;
    background-color: transparent !important; */

  /* Circle and Transparent */
  /* border: 1px solid var(--color-primary) !important;
      background-color: transparent !important;
      border-radius: 50%; */

  /* Rectangle */
  /* border-radius: 0; */

  /* Circle */
  border-radius: 50%;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Swiper Navigation in Mobile */

@media (max-width: 767px) {
  .swiper-navigation {
    display: none;
  }
}
