.nav-link {
  position: relative;
  color: black;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: #285e61;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

.swiper-slide {
    height: auto;
    display: flex;
  }
  .swiper-slide a {
    width: 100%;
  }
