* {
  margin: 0;
  padding: 0;
}

h2 {
  color: #fff;
}

#testimonials {
  height: calc(100vh - 92px);
  background-image: linear-gradient(125deg,#08405c,#012e45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonials {
  padding: 40px 0;
  color: #434343;
  text-align: center;
}

.inner {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col {
  flex: 33.33%;
  max-width: 33.33%;
  box-sizing: border-box;
  padding: 15px;
}

.testimonial {
  background: #fff;
  padding: 30px;
}

.testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.name {
  font-size: 20px;
  text-transform: uppercase;
  margin: 20px 0;
}

.stars {
  color: #59c5ff;
  margin-bottom: 20px;
}

@media screen and (max-width:960px)  {
  .col {
    flex: 100%;
    max-width: 80%;
  }
}

@media screen and (max-width:600px)  {
  .col {
    flex: 100%;
    max-width: 100%;
  }
}
