.testimonials {
  width: 100%;
}

.testimonials__swiper {
  position: relative;
  width: 100%;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: auto;
  flex-shrink: 0;
  height: auto;
}

.testimonials__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 30px;
  background: #fff;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media only screen and (min-width: 768px) {
  .testimonials__card {
    padding: 30px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonials__card {
    gap: 20px;
    width: 530px;
    padding: 40px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }
}

.testimonials__stars {
  display: flex;
  gap: 0;
}

.testimonials__star {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  .testimonials__star {
    width: 30px;
    height: 30px;
  }
}

.testimonials__quote {
  padding-bottom: 10px;
}
.testimonials__quote > p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}
@media only screen and (min-width: 1200px) {
  .testimonials__quote > p {
    font-size: 18px;
    line-height: 26px;
  }
}

.testimonials__byline {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: auto;
}
@media only screen and (min-width: 1200px) {
  .testimonials__byline {
    gap: 15px;
  }
}

.testimonials__headshot {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .testimonials__headshot {
    width: 60px;
    height: 60px;
  }
}
.testimonials__headshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonials__reviewer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.testimonials__line {
  width: 100%;
  height: 4px;
  background: #F8AE43;
}
@media only screen and (min-width: 1200px) {
  .testimonials__line {
    height: 6px;
  }
}

.testimonials__name {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (min-width: 1200px) {
  .testimonials__name {
    font-size: 18px;
    line-height: 24px;
  }
}

.testimonials__pagination {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.testimonials__pagination.swiper-pagination-bullets {
  position: relative;
  bottom: auto;
}

.testimonials__pagination .swiper-pagination-bullet {
  width: 48px;
  height: 6px;
  margin: 0;
  background: #d9d9d9;
  border-radius: 10px;
  opacity: 1;
  transition: all 0.25s ease-out;
  cursor: pointer;
}
.testimonials__pagination .swiper-pagination-bullet:hover {
  background: #c0c0c0;
}

.testimonials__pagination .swiper-pagination-bullet-active {
  background: #F8AE43;
}

/*# sourceMappingURL=testimonials.css.map */
