/* Outsourcea Testimonials */
.os-testimonials{
  --os-testimonial-bg:#F7F7F6;
  --os-testimonial-accent:#00A651;
  --os-testimonial-cards:3;
  width:100%;
  background:var(--os-testimonial-bg);
  padding:88px 0;
  font-family:inherit;
  color:#111;
  overflow:hidden;
}

.os-testimonials,
.os-testimonials *{
  box-sizing:border-box;
}

.os-testimonials-inner{
  width:min(1320px, calc(100% - 64px));
  margin:0 auto;
}

.os-testimonials-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
  margin-bottom:54px;
}

.os-testimonials-title-wrap{
  max-width:900px;
}

.os-testimonials-badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  height:34px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  color:#555;
  font-size:15px;
  line-height:1;
  font-weight:600;
  margin-bottom:22px;
  box-shadow:0 10px 28px rgba(0,0,0,.025);
}

.os-testimonials-badge-icon{
  font-size:15px;
  line-height:1;
}

.os-testimonials h2{
  margin:0;
  color:#111;
  font-size:clamp(34px, 4vw, 58px);
  line-height:1.05;
  letter-spacing:-2px;
  font-weight:400;
}

.os-testimonials-title-wrap > p{
  max-width:700px;
  margin:18px 0 0;
  color:#666;
  font-size:18px;
  line-height:1.55;
}

.os-testimonials-arrows{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
  padding-top:28px;
}

.os-testimonials-arrows button{
  width:54px;
  height:54px;
  border:0;
  border-radius:999px;
  background:#E9F5EE;
  color:#111;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease, background .2s ease;
}

.os-testimonials-arrows button:hover{
  background:#DFF1E7;
  transform:translateY(-2px);
}

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

.os-testimonials-track{
  display:flex;
  gap:24px;
  transition:transform .45s ease;
  will-change:transform;
}

.os-testimonial-card{
  flex:0 0 calc((100% - (24px * (var(--os-testimonial-cards) - 1))) / var(--os-testimonial-cards));
  min-height:250px;
  background:#fff;
  border:1px solid rgba(0,0,0,.035);
  border-radius:20px;
  padding:50px 45px 42px;
  box-shadow:0 18px 44px rgba(0,0,0,.025);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.os-testimonial-person{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:52px;
}

.os-testimonial-person img,
.os-testimonial-avatar{
  width:46px;
  height:46px;
  border-radius:999px;
  object-fit:cover;
  flex:0 0 auto;
}

.os-testimonial-avatar{
  background:var(--os-testimonial-accent);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
  font-weight:700;
  letter-spacing:-.4px;
}

.os-testimonial-person h3{
  margin:0;
  color:#111;
  font-size:16px;
  line-height:1.2;
  font-weight:500;
}

.os-testimonial-person p{
  margin:4px 0 0;
  color:#777;
  font-size:13px;
  line-height:1.25;
}

.os-testimonial-card blockquote{
  margin:0;
  padding:0;
  border:0;
  color:#666;
  font-size:15.5px;
  line-height:1.65;
  font-weight:400;
}

.os-testimonials-empty{
  background:#fff;
  border-radius:18px;
  padding:28px 32px;
  color:#666;
  font-size:16px;
}

@media (max-width: 1024px){
  .os-testimonials{
    padding:72px 0;
  }

  .os-testimonials-inner{
    width:min(100%, calc(100% - 40px));
  }

  .os-testimonials-track{
    gap:18px;
  }

  .os-testimonial-card{
    flex-basis:calc((100% - 18px) / 2);
    padding:38px 32px;
  }
}

@media (max-width: 760px){
  .os-testimonials-head{
    flex-direction:column;
    margin-bottom:34px;
  }

  .os-testimonials-arrows{
    padding-top:0;
  }

  .os-testimonial-card{
    flex-basis:100%;
    min-height:230px;
    padding:34px 26px;
  }

  .os-testimonial-person{
    margin-bottom:36px;
  }

  .os-testimonials h2{
    letter-spacing:-1.2px;
  }
}
