.hero-section-container {
  padding-bottom: 65px;
}
.hero-section-swiper {
  width: 100%;
  position: relative;
}

.hero-section-swiper .swiper-slide {
  background-color: #eff5f5;
  width: 100%;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section-swiper .swiper-pagination.swiper-pagination-bullets {
  align-items: start;
  bottom: 0px;
  width: auto;
}
.hero-section-swiper .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  opacity: 1;
  background: #d9d9d9;
  border-radius: 4px;
  transition: all 0.1s ease;
}

.hero-section-swiper .swiper-pagination-bullet-active {
  width: 50px;
  background: #444444;
}
.hero-section-swiper .left h2 {
  font-size: 3.125rem; /* 50px */
  text-align: left;
  line-height: 1.5;
  overflow: visible;
  padding-top: 0.2em;
}

.hero-section-swiper .left button {
  text-decoration: none;
  color: #fff;
  background-color: #282828;
  border: none;
  font-weight: 500;
  font-size: 1.25rem; /* 20px */
  padding: 14px 34px;
  border-radius: 50px;
  gap: 1rem;
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 60px;
  transition: all 0.2s ease-in;
}
.hero-section-swiper .left button svg {
  margin-right: 10px;
  transition: all 0.2s ease-in;
}
.hero-section-swiper .left button:hover {
  background-color: #138483;
}
.hero-section-swiper .left button:hover svg {
  margin-right: 0px;
}

.custom-pagination {
  height: 60px;
  width: fit-content;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  overflow: hidden;
  color: #484848;
  background-color: #ffffff;
  position: absolute;
  top: 30px;
  left: 8px;
  z-index: 999;
}
.custom-pagination ul {
  list-style-type: none;
  font-weight: 600;
  margin: 0;
  padding-left: 0;
  width: 100%;
  height: 100%;
}
.custom-pagination ul li {
  height: 100%;
  padding: 10px 30px;
  flex: 1;
  min-width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

/* prevent tab labels from wrapping on small screens */
.custom-pagination ul li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-pagination ul li:hover {
  background-color: rgba(218, 240, 236, 0.3);
}
.custom-pagination ul li.active {
  color: #138483;
}

/* progress bar styles */
.custom-progress {
  width: 100%;
  height: 3px;
  background: #e6e6e6;
  /* background: #fff; */
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.custom-progress .progress-bar {
  height: 100%;
  background: #138483;
  width: 0%;
  transition: all 2.5s linear;
}

/* responsive */
@media screen and (max-width: 992px) {
  .hero-section-swiper .left h2 {
    font-size: 3rem; /* 48px */
    margin-top: 120px;
    text-align: center;
    line-height: 1.5;
    overflow: visible;
    padding-top: 0.2em;
  }
  .hero-section-swiper .left button {
    margin-block: 40px;
    margin-inline: auto;
    min-width: 220px;
  }
  .custom-pagination {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    width: 75%;
  }
}
@media screen and (max-width: 576px) {
  .custom-pagination {
    width: 95%;
  }
  .custom-pagination ul li {
    padding: 8px 12px;
    font-size: 13px;
  }
  .hero-section-swiper .swiper-pagination.swiper-pagination-bullets {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .custom-pagination ul li {
    padding: 8px 6px;
    font-size: 13px;
  }
}
