/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl-1800: 1800px;
  --breakpoint-xl-1700: 1700px;
  --breakpoint-xl-l: 1600px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

.testimonials {
  padding: 98px 0 100px;
  border-top: 0.5px solid rgba(81, 106, 75, 0.5);
}
@media (max-width: 768px) {
  .testimonials {
    padding: 50px 0;
  }
}
.testimonials .testimonials__header {
  text-align: center;
}
.testimonials .testimonials__subtitle {
  margin-bottom: 27px;
  color: var(--sk-color-sage);
}
.testimonials .testimonials__title {
  margin-top: 0;
  margin-bottom: 70px;
  letter-spacing: -1px;
  color: var(--sk-color-sage);
}
@media (max-width: 1024px) {
  .testimonials .testimonials__title {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .testimonials .testimonials__title {
    margin-bottom: 25px;
  }
}
.testimonials__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.testimonials__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  flex-basis: calc(50% - 5px);
  border: 1px solid rgba(181, 203, 128, 0.25);
  border-radius: 25px;
  padding: 50px 50px 45px;
  overflow: hidden;
  will-change: border-color;
  transition: border-color 0.3s ease-in-out;
}
.testimonials__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(181, 203, 128, 0.1);
  opacity: 0.25;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .testimonials__item {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .testimonials__item {
    padding: 30px;
  }
}
@media (max-width: 512px) {
  .testimonials__item {
    flex-basis: 100%;
    border-radius: 15px;
  }
}
.testimonials__item:hover {
  border-color: rgba(181, 203, 128, 0.5);
}
.testimonials__item:hover::before {
  background-color: rgba(181, 203, 128, 0.5);
}
.testimonials .testimonials__item-content {
  font-style: italic;
  margin-bottom: 18px;
}
.testimonials__item-bottom {
  display: flex;
  justify-content: space-between;
}
.testimonials .testimonials__item-author {
  margin-bottom: 18px;
}
.testimonials .testimonials__item-location, .testimonials .testimonials__item-date {
  margin-bottom: 0;
}
.testimonials .stars {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
}
.testimonials .star {
  display: inline-block;
  width: 15px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_768_21078)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.8632 5.73904L11.275 8.89751L12.2808 13.5169C12.3548 13.8568 11.9851 14.1183 11.6781 13.9449L7.49989 11.581L3.32163 13.9442C3.01469 14.1176 2.64499 13.8561 2.71825 13.5169L3.72411 8.89749L0.136575 5.73902C-0.127803 5.50625 0.0145043 5.08166 0.367471 5.04617L5.16806 4.55468L7.12826 0.239875C7.27056 -0.0734558 7.72117 -0.0877854 7.87325 0.243971L9.8313 4.55475L14.6319 5.04624L14.8586 5.1384C15.0302 5.28243 15.0616 5.56504 14.8635 5.73911L14.8632 5.73904Z' fill='%23FFE6A3'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_768_21078'%3E%3Crect width='15' height='14' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
