* {
  font-family: "Roboto", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-wrapper {
  max-width: 1100px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
}

.card-list {
  list-style: none;
}

.card-link {
  user-select: none;
  display: block;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.card-link:active {
  cursor: grabbing;
}

.card-link:hover {
  border-color: #000000;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.badge {
  color: #000000;
  margin: 16px 0 18px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  background: #dde4ff;
  width: fit-content;
  border-radius: 50px;
}

.card-title {
  font-size: 16px;
  color: #000;
  font-weight: 100;
}

.card-button {
  height: 35px;
  width: 35px;
  color: #000000;
  border-radius: 50%;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  transform: rotate(-45deg);
  border: 1px solid #000000;
  transition: 0.4s ease;
}

.card-link:hover .card-button {
  color: #fff;
  background: #000000;
}

.swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #000000;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-slide-button {
  color: #000000;
  margin-top: -35px;
}

@media screen and (max-width: 768px) {
  .card-wrapper {
    margin: 0 10px 25px;
  }

  .swiper-slide-button {
    display: none;
  }
}

/* Testimonials */
.carousel-testimonials {
  height: 410px;
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  padding: 10px 0;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.item-left p:nth-child(1) {
  font-weight: 500;
  color: #000080;
}

.item-right img {
  width: 90px;
  margin-top: -12px;
}

.item-testimonials {
  padding: 25px 22px;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.item-testimonial p {
  white-space: normal;
  text-align: justify;
  overflow: auto;
  scrollbar-width: none;
  height: 246px;
  color: #52616b;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 22px;
}

.item-testimonial a {
  text-decoration: none;
}

.item-left img {
  width: 80px;
}

.item-right {
  display: flex;
  align-items: center;
  justify-content: center;
}


.swiper-button-next,
.swiper-button-prev {
  display: block !important;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: block !important;
  }
}
