.testimonials {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  position: relative;
}
.testimonials__content {
  position: relative;
  padding-bottom: 80px;
}
.testimonials__header {
  align-items: center;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials__grid .testimonials__item-wrapper:last-child {
    display: none;
  }
  .testimonials__grid .testimonials__item-wrapper {
    height: 100%;
  }
  .testimonials__grid .testimonials__item-wrapper .testimonials__item {
    height: 100%;
    padding: 40px 16px;
  }
}
@media (max-width: 767.98px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
  .testimonials__grid .testimonials__item-wrapper:not(:first-child) {
    display: none;
  }
}
.testimonials__item-wrapper {
  position: relative;
  max-width: 379px;
  width: 100%;
  margin: 0 auto;
  height: fit-content;
}
.testimonials__item-wrapper--coral {
  position: relative;
  margin-top: 0;
}
.testimonials__item-wrapper--coral .testimonials__border {
  border-color: #ff6f61;
  --border-color: #ff6f61;
}
.testimonials__item-wrapper--green {
  margin-top: 64px;
}
.testimonials__item-wrapper--green .testimonials__border {
  border-color: #4caf50;
  --border-color: #4caf50;
}
.testimonials__item-wrapper--orange {
  margin-top: 130px;
}
.testimonials__item-wrapper--orange .testimonials__border {
  border-color: #f9901c;
  --border-color: #f9901c;
}
@media (max-width: 1199.98px) {
  .testimonials__item-wrapper {
    width: 100%;
    max-width: 379px;
  }
  .testimonials__item-wrapper--green {
    margin-top: 0;
  }
}
.testimonials__border {
  position: absolute;
  inset: 0;
  border: 5px solid;
  border-radius: 16px;
}
.testimonials__border::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 45px;
  bottom: -34px;
  border-style: solid;
  border-width: 0 50px 30px 0;
  border-color: transparent var(--border-color) transparent transparent;
}
.testimonials__border::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 49px;
  bottom: -26px;
  border-style: solid;
  border-width: 0 45px 27px 0;
  border-color: transparent #ffffff transparent transparent;
}
.testimonials__item {
  position: relative;
  padding: 80px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1199.98px) {
  .testimonials__item {
    padding: 40px 16px;
  }
}
.testimonials__quote {
  text-align: center;
  color: #142532;
}
.testimonials__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.testimonials__author-profile {
  border-radius: 40px;
  border: 0px solid #142532;
  background: #142532;
  display: flex;
  padding-right: 16px;
  align-items: center;
  gap: 8px;
}
.testimonials__author-profile img {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  border: 3px solid #142532;
}
.testimonials__author-name {
  font-weight: 600;
  color: #ffffff;
}
.testimonials__more {
  position: absolute;
  left: 14px;
  bottom: -30%;
}
@media (max-width: 1199.98px) {
  .testimonials__more {
    bottom: -15%;
  }
}
@media (max-width: 767.98px) {
  .testimonials__more {
    left: auto;
  }
}