.section__testimonials {
  padding: 60px 0;
  position: relative;
  background-image: url(../img/testimonials_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.section__testimonials::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-40%, -50%);
  transform: translate(-40%, -50%);
  border-radius: 342px;
  background: rgba(47, 193, 109, 0.15);
  -webkit-filter: blur(72px);
  filter: blur(72px);
  width: 342px;
  height: 342px;
  flex-shrink: 0;
  z-index: -1;
}
.section__testimonials::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(40%, -50%);
  transform: translate(40%, -50%);
  border-radius: 342px;
  background: rgba(47, 193, 109, 0.15);
  -webkit-filter: blur(72px);
  filter: blur(72px);
  width: 342px;
  height: 342px;
  flex-shrink: 0;
  z-index: -1;
}
.section__testimonials__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.section__testimonials__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.section__testimonials__decor {
  margin-top: 0;
}
.section__testimonials__slider {
  width: 100%;
}
.section__testimonials__slide {
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid #e9f0fb;
  background: #fff;
}
.section__testimonials__slide hr {
  width: 100%;
  height: 1px;
  background: #e9f0fb;
}
.section__testimonials__item__date {
  display: flex;
  height: 30px;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 144px;
  border: 1px solid #cfdbef;
  background: #f5f7ff;
  color: #8899b4;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
.section__testimonials__item__text {
  color: #717184;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}
.section__testimonials__item__foot {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}
.section__testimonials__item__foot__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.section__testimonials__item__foot__name {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.08px;
}
.section__testimonials__item__foot__rating {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #717184;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.section__testimonials__decor {
  margin-top: 70px;
  display: flex;
  gap: 13px;
  align-items: center;
}
.section__testimonials__decor__text {
  color: #000;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  line-height: 26px;
}
.section__testimonials__decor__text span {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .section__testimonials {
    padding: 32px 0;
  }
  .section__testimonials::before {
    content: none;
  }
  .section__testimonials::after {
    content: none;
  }
}
@media (max-width: 600px) {
  .section__testimonials__body {
    gap: 16px;
  }
  .section__testimonials__head {
    gap: 12px;
  }
  .section__testimonials__slider {
    margin-right: -15px;
  }
  .section__testimonials__item__date {
    font-size: 10px;
    padding: 3px 12px;
    height: 20px;
  }
  .section__testimonials__item__text {
    font-size: 12px;
  }
  .section__testimonials__item__foot__name {
    font-size: 12px;
    letter-spacing: 0.06px;
  }
  .section__testimonials__item__foot__rating {
    font-size: 12px;
  }
  .section__testimonials__decor__text {
    font-size: 10px;
  }
}
