.oxy-testimonials {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.oxy-testimonials * {
  box-sizing: border-box;
}

.oxy-testimonials-viewport {
  overflow: hidden;
  width: 100%;
}

.oxy-testimonials-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.oxy-testimonials-slide {
  flex: 0 0 calc((100% - 61px) / 4);
  min-width: 0;
}

.oxy-testimonial-card {
  min-height: 330px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 26px;
  border: 1px solid rgba(38, 100, 174, 0.12);
  border-radius: 30px;
  background: #ffffff;
}

.oxy-testimonial-rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #2bbfce;
}

.oxy-testimonial-star {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.oxy-testimonial-star svg {
  width: 100%;
  height: 100%;
  display: block;
}

.oxy-testimonial-text {
  color: #6f8da0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
}

.oxy-testimonial-text p {
  margin: 0 0 10px;
}

.oxy-testimonial-text p:last-child {
  margin-bottom: 0;
}

.oxy-testimonial-name {
  margin-top: auto;
  padding-top: 26px;
  color: #2bbfce;
  font-family: "Champagne Limousines", sans-serif !important;
  font-size: 19px;
  font-weight: 600;
  line-height: 20px;
}

.oxy-testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 22px;
}

.oxy-testimonials-arrow {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(38, 100, 174, 0.14);
  border-radius: 999px !important;
  background: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.oxy-testimonials-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

.oxy-testimonials-arrow path {
  stroke: #2664ae;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s ease;
}

.oxy-testimonials-arrow:hover,
.oxy-testimonials-arrow:focus,
.oxy-testimonials-arrow:active,
.oxy-testimonials-arrow:visited {
  background: #2664ae !important;
  border-color: #2664ae !important;
  outline: none !important;
  box-shadow: none !important;
  transform: translateY(-1px);
}

.oxy-testimonials-arrow:hover path,
.oxy-testimonials-arrow:focus path,
.oxy-testimonials-arrow:active path,
.oxy-testimonials-arrow:visited path {
  stroke: #ffffff;
}

.oxy-testimonials-arrow:disabled,
.oxy-testimonials-arrow[disabled] {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none !important;
  background: #ffffff !important;
  border-color: rgba(38, 100, 174, 0.12) !important;
}

.oxy-testimonials-arrow:disabled path,
.oxy-testimonials-arrow[disabled] path {
  stroke: #2664ae;
}

@media (max-width: 1024px) {
  .oxy-testimonials-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .oxy-testimonial-card {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .oxy-testimonials-track {
    gap: 18px;
  }

  .oxy-testimonials-slide {
    flex: 0 0 100%;
  }

  .oxy-testimonial-card {
    min-height: 280px;
    padding: 24px 22px 22px;
    border-radius: 24px;
  }

  .oxy-testimonials-controls {
    margin-top: 18px;
  }

  .oxy-testimonials-arrow {
    width: 44px;
    height: 44px;
  }
}
