.testimonials {
  background-color: lightgray;
  height: auto;
}

.testimonials .wrapper {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-auto-flow: column;
}

@media screen and (max-width: 1024px) {
  .testimonials .wrapper {
    grid-auto-flow: row;
  }
}

.swiper-slide {
	margin: 40px 0;
}

.testimonials .wrapper .item {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 25px 75px;
}

@media screen and (max-width: 1024px) {
  	.testimonials .wrapper .item {
	  height: 500px;
	}
}

.testimonials .wrapper .item .picture {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials .wrapper .item .picture picture {
  width: 100%;
  height: 100%;
}

.testimonials .wrapper .item .picture picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .wrapper .item .text {
  text-align: center;
}

.testimonials .wrapper .item .name {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}
