/*[+] Testimonials carousel. */
.testimonials-carousel {
  width: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  align-items: center;
  justify-content: start;
}
/*[-] Testimonials carousel. */

/*[+] Testimonial layout. */
.testimonial-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.25rem;
  border-bottom-left-radius: 0;
  background: #fff;
  border: 1px solid rgba(220, 231, 248, 1);
  width: 100%;
  box-sizing: border-box;
}
.testimonial-image img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.testimonial-content {
  max-width: 100%;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/*[-] Testimonial layout. */

/*[+] Testimonial data. */
.testimonial-content p {
  margin: 0;
  padding: 0;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 100%;;
  color: rgba(39, 41, 38, 0.7);
  margin: 0 0 1.5rem 0;
}
.testimonial-author {
  font-weight: 700;
  color: rgba(51, 86, 140, 1);
  margin: 0;
}
.testimonial-tags {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.testimonial-tags li {
  color: rgba(39, 41, 38, 0.7);
  font-size: 1rem;
  line-height: 100%;
}
/*[-] Testimonial data. */

/*[+] Swiper slide. */
.swiper-slide {
  padding: 0 1rem;
  width: 100% !important;
  max-width: 50%;
  height: 100%;
  display: flex;
  align-items: stretch;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.swiper-slide:last-child {
  max-width: calc(50% - 33px);
}
@media (max-width: 1024px) {
  .swiper-slide {
    max-width: 100%;
  }
}
/*[+] Swiper slide. */

/*[+] Swiper pagination. */
.swiper-pagination {
  position: relative;
  text-align: center;
  margin-top: 2rem;
}
.swiper-pagination-bullet {
  opacity: 1;
  width: 8px;
  height: 8px;
  background-color: rgba(220, 231, 248, 1);
  border-radius: 50%;
  margin: 0 8px;
  transition: background-color 0.3s ease;
}
.swiper-pagination-bullet-active {
  background-color: rgba(51, 86, 140, 1);
}
/*[*] Swiper pagination. */

/*[+] Mobile resolutions. */
@media screen and (max-width: 990px) {
  .testimonials-carousel {
    max-width: calc(100vw - 2rem);
  }
  .swiper-slide:last-child {
    max-width: 100%;
  }
}
/*[-] Mobile resolutions. */