.hero-section .swiper-button-prev,
.hero-section .swiper-button-next {
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 20;
}

.hero-section .swiper-button-prev {
  left: 10px;
  transform: translateX(-20px);
}

.hero-section .swiper-button-next {
  right: 10px;
  transform: translateX(20px);
}

.hero-section:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
  left: 35px;
  transform: translateX(0);
}

.hero-section:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  right: 35px;
  transform: translateX(0);
}
/* =================================
   HERO SECTION
================================= */

.hero-section {
  position: relative;
  height: 820px;
  overflow: hidden;
}

/* =================================
   SWIPER
================================= */

.heroSwiper {
  width: 100%;
  height: 100%;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =================================
   OVERLAY
================================= */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;

  /* IMPORTANT */
  pointer-events: none;
}

/* =================================
   CONTENT
================================= */
.hero-content .container {
  max-width: 1140px;
}
.hero-content {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;

  z-index: 5;

  /* IMPORTANT */
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
}

.hero-inner h1 {
  color: #fff;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-buttons {
  margin-top: 35px;

  /* IMPORTANT */
  pointer-events: auto;
}

.hero-buttons a {
  pointer-events: auto;
}

/* =================================
   BUTTONS
================================= */

.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
}

.btn-donate {
  background: #28c7d9;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  margin-left: 15px;
}

/* =================================
   SWIPER NAVIGATION
================================= */

.swiper-button-prev,
.swiper-button-next {
  width: 60px !important;
  height: 60px !important;

  border-radius: 50%;

  background: #649913;

  backdrop-filter: blur(10px);

  color: #fff !important;

  z-index: 999 !important;

  pointer-events: auto !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #649913;
}

/* =================================
   PAGINATION
================================= */

.swiper-pagination {
  z-index: 999 !important;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #28c7d9;
}

/* =================================
   MOBILE
================================= */

@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    min-height: 700px;
  }

  .hero-inner h1 {
    font-size: 42px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
