.swiper-pagination.progress-bar-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--btn-primary);
}

.custom-nav-button {
  position: unset;
  overflow: hidden;
  margin: 0;
  color: var(--gray-700);
  background: var(--gray-50);
  font-size: var(--text-3xl);
  line-height: var(--leading-base);
  width: 65px;
  height: 65px;
  box-shadow: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-nav-button::after {
  display: none;
}

.custom-nav-button:hover i {
  animation: arrowAnimation .3s ease-in-out forwards;
}

.custom-nav-button.swiper-button-prev:hover i {
  animation: arrowAnimation .3s ease-in-out reverse forwards;
}

@media (max-width: 767px) {
  .swiper-slide {
    max-width: max-content;
  }

  .custom-nav-button {
    width: 40px;
    height: 40px;
    font-size: var(--text-base);
  }
}

@keyframes arrowAnimation {
  0% {
      transform: translateX(0%);
  }

  50% {
      transform: translateX(calc(50% + 10px));
  }
  51% {
      transform: translateX(calc(-50% - 10px));
  }
  100% {
      transform: translateX(0%);
  }
}