.testimonials {
  padding: 80px 0;
  margin-bottom: 140px;
  position: relative;
  overflow-x: clip;
}

.testimonials::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: url("../img/rombs-stats.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.testimonials__title-gradient {
  background: linear-gradient(
    100deg,
    #a77427 6.84%,
    #ddb55f 22.38%,
    #f7e3a8 37.91%,
    #fbefc8 50%,
    #f0d48f 63.81%,
    #c79436 79.35%,
    #a77427 93.16%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials__title {
  text-align: center;
  font-family: "Proxima Nova Bold", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 120px;
  color: rgba(237, 244, 252, 1);
  letter-spacing: -2px;
}

.testimonials__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.testimonials__item {
  position: relative;
  max-width: 980px;
}

.testimonials__item--reverse {
  margin-left: auto;
}

.testimonials__photo {
  position: absolute;
  left: 56px;
  top: -84px;
  bottom: 0;
  width: 230px;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
}

.testimonials__item--reverse .testimonials__photo {
  left: auto;
  right: 56px;
}

.testimonials__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.testimonials__content {
  position: relative;
  z-index: 1;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(
    165deg,
    rgba(20, 58, 105, 0.42) 9.18%,
    rgba(6, 22, 42, 0.62) 90.82%
  );
  padding: 28px 56px 24px 340px;
}

.testimonials__item--reverse .testimonials__content {
  padding: 28px 340px 24px 56px;
}

.testimonials__quote {
  font-family: "Proxima Nova Regular";
  font-weight: 400;
  color: rgba(237, 244, 252, 1);
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 20px;
}

.testimonials__name {
  font-family: "Proxima Nova Regular";
  color: rgba(237, 244, 252, 1);
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

.testimonials__role {
  font-family: "Proxima Nova Regular";
  color: rgba(107, 135, 171, 1);
  font-size: 16px;
  margin: 0;
}

@media (max-width: 768px) {
  .testimonials::after {
    display: none;
  }
  .testimonials {
    padding: 48px 0;
  }

  .testimonials__list {
    gap: 32px;
  }

  .testimonials__item,
  .testimonials__item--reverse {
    max-width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 32px;
    padding: 40px 24px 28px;
    border-radius: 16px;
    background: linear-gradient(
      165deg,
      rgba(20, 58, 105, 0.42) 9.18%,
      rgba(6, 22, 42, 0.62) 90.82%
    );
  }

  .testimonials__content,
  .testimonials__item--reverse .testimonials__content {
    display: contents;
    min-height: 0;
    padding: 0;
    background: none;
    border-radius: 0;
  }

  .testimonials__photo,
  .testimonials__item--reverse .testimonials__photo {
    position: static;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 80px;
    height: 115px;
    margin: 0 0 0 16px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .testimonials__name {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 20px;
    margin: 0;
  }

  .testimonials__role {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    font-size: 15px;
    margin: 6px 0 0;
  }

  .testimonials__quote {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 20px;
    margin: 32px 0 0;
  }
}

@media (max-width: 512px) {
  .testimonials {
    margin-bottom: 40px;
  }
.testimonials__title {
  font-size: 30px;
  line-height: 36px;
}
}