.ps-reviews-slider { position: relative; overflow: hidden; }
.ps-track { display: flex; transition: transform .4s ease; }
.ps-slide { cursor: pointer; }

.ps-prev, .ps-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(36 185 215);
  color: #ffffff;
  border: 0;
  font-size: 50px;
  cursor: pointer;
  padding: 10px 4px;
  transition: .3s ease-in-out;
  z-index: 2;
  display: none;
}

.ps-prev:hover, .ps-next:hover {
  opacity: 0.7;
}

.ps-prev { left: 10px; }
.ps-next { right: 10px; }

.ps-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  justify-content: center;
  align-items: center;
}
.ps-modal.open { display: flex; z-index: 3; }
.ps-modal img { max-width: 90%; max-height: 90%; }
.ps-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.ps-track {
  display: flex;
  transition: transform .4s ease;
}

.ps-slide {
  flex: 0 0 33.3333%;
  padding: 10px;
  width: 32%;
}

.ps-slide img {
    object-fit: contain;
    max-width: 100%;
}
.no-slider .ps-track {
  transform: none !important;
}

.ps-reviews-title {
    margin: 2.5rem 0;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}

/* Tablet */
@media (max-width: 991px) {
  .ps-slide {
    flex: 0 0 50%;
    width: 50%;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .ps-slide {
    flex: 0 0 100%;
    width: 100%;
  }
}