@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.testimonials {
  color: #434343;
  text-align: center;
}
.testimonials__heading {
  font-size: calc(1.375rem + 1.5vw);
}
.testimonials__inner {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 70px 20px 0;
}
.testimonials__border {
  width: 160px;
  height: 5px;
  background: #ff914c;
  margin: 26px auto;
}

.testimonials__row {
  display: flex;
  justify-content: center;
}
.testimonial {
  background: #fff;
  padding: 30px;
  height: 100%;
}
.testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  overflow-clip-margin: unset;
}
.testimonial__name {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-transform: uppercase;
  margin: 20px 0;
}
.testimonial__stars {
  color: #ff914c;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .testimonial {
    width: 400px;
  }
  .testimonials__row {
    flex-wrap: wrap;
  }
}
@media (max-width: 450px) {
  .testimonials{
    padding: 0;
  }
}