.testimonies {
  padding: 64px 0;
}

@media screen and (min-width: 1024px) {
  .testimonies {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 0;
  }
}

.testimonies .list-testimonies .card-testimonies {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--main-grey);
}

@media screen and (min-width: 1024px) {
  .testimonies .list-testimonies .card-testimonies {
    gap: 32px;
    padding: 48px;
  }
}

.testimonies .list-testimonies .card-testimonies::before {
  content: '';
  display: flex;
  width: 33px;
  height: 24px;
  -webkit-mask: url('../../images/access/icons/quotes.svg') no-repeat;
  mask: url('../../images/access/icons/quotes.svg') no-repeat;
  background-color: var(--red);
}

.testimonies .list-testimonies .card-testimonies .content {
  color: var(--lack);
  font-family: var(--montserrat);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

@media screen and (min-width: 1024px) {
  .testimonies .list-testimonies .card-testimonies .content {
    font-size: 20px;
  }
}

.testimonies .list-testimonies .card-testimonies .buyer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .testimonies .list-testimonies .card-testimonies .buyer {
    flex-direction: row;
  }
}

.testimonies .list-testimonies .card-testimonies .buyer .name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-family: var(--gotham);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.testimonies .list-testimonies .card-testimonies .buyer .name::after {
  content: '';
  width: 2px;
  height: 2px;
  background-color: var(--red);
}

.testimonies .list-testimonies .card-testimonies .buyer .purchase-date {
  color: var(--red);
  font-family: var(--montserrat);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.testimonies .list-testimonies_navigation {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 32px;
}

@media screen and (min-width: 1024px) {
  .testimonies .list-testimonies_navigation {
    padding-top: 72px;
  }
}

.testimonies .list-testimonies_navigation button {
  display: flex;
  padding: 16px;
  content: '';
  border: 1px solid var(--red) !important;
  background: var(--white) !important;
  cursor: pointer;
}

.testimonies .list-testimonies_navigation button span {
  display: none;
}

.testimonies .list-testimonies_navigation button::after {
  display: flex;
  content: '';
  width: 24px;
  height: 24px;
  padding: 16px;
  -webkit-mask: url('../../images/access/icons/chevron.svg') no-repeat;
  mask: url('../../images/access/icons/chevron.svg') no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--red);
}

.testimonies .list-testimonies_navigation button.owl-prev::after {
  display: flex;
  content: '';
  width: 24px;
  height: 24px;
  -webkit-mask: url('../../images/access/icons/chevron.svg') no-repeat;
  mask: url('../../images/access/icons/chevron.svg') no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--red);
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
