*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

body {
  font-family: "Barlow Semi Condensed", sans-serif;
  background-color: rgb(246, 245, 246);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.testimonials {
  display: grid;
  grid-template-rows: auto;
  gap: 2rem;
}

.testimonial {
  width: 305px;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 40px 60px 50px -47px rgba(72, 85, 106, 0.25);
}
.testimonial--purple {
  background-color: rgb(115, 63, 200);
  color: rgb(255, 255, 255);
}
.testimonial--grey {
  background-color: rgb(72, 85, 106);
  color: rgb(255, 255, 255);
}
.testimonial--white {
  background-color: rgb(255, 255, 255);
  color: rgb(72, 85, 106);
}
.testimonial--darkblue {
  background-color: rgb(25, 32, 45);
  color: rgb(255, 255, 255);
}
.testimonial__header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.testimonial__img {
  border-radius: 50%;
  width: 28px;
  height: 28px;
}
.testimonial--purple .testimonial__img {
  border: solid 2px rgb(167, 117, 241);
}
.testimonial--darkblue .testimonial__img {
  border: solid 2px rgb(115, 63, 200);
}
.testimonial__user {
  padding-left: 17px;
}
.testimonial__name {
  font-size: 13px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 4px;
}
.testimonial__status {
  font-size: 11px;
  font-weight: 500;
  line-height: 110%;
}
.testimonial--purple .testimonial__status, .testimonial--purple .testimonial__content {
  color: rgb(237, 228, 255);
}
.testimonial--grey .testimonial__status, .testimonial--grey .testimonial__content {
  color: rgb(231, 234, 238);
}
.testimonial--white .testimonial__status, .testimonial--white .testimonial__content {
  color: rgb(103, 109, 126);
}
.testimonial__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 1rem;
}
.testimonial--darkblue .testimonial__title {
  color: rgb(207, 207, 207);
}
.testimonial__content {
  font-size: 13px;
  font-weight: 500;
  line-height: 140%;
}
.testimonial--darkblue .testimonial__content {
  color: rgb(231, 234, 238);
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(2, 307px);
  }
  .testimonial {
    width: 100%;
  }
  .testimonial--purple {
    grid-area: 1/1/2/3;
    background-image: url("/images/bg-pattern-quotation.svg");
    background-repeat: no-repeat;
    background-position: top right 170px;
  }
  .testimonial--grey {
    grid-area: 2/1/3/2;
  }
  .testimonial--position-1 {
    grid-area: 2/2/3/3;
  }
  .testimonial--darkblue {
    grid-area: 3/1/4/3;
  }
  .testimonial--position-2 {
    grid-area: 4/1/5/3;
  }
}
@media (min-width: 1440px) {
  .testimonials {
    grid-template-columns: repeat(4, 255px);
  }
  .testimonial {
    width: 100%;
  }
  .testimonial--purple {
    grid-area: 1/1/2/3;
    background-image: url("/images/bg-pattern-quotation.svg");
    background-repeat: no-repeat;
    background-position: top right 170px;
  }
  .testimonial--grey {
    grid-area: 1/3/2/4;
  }
  .testimonial--position-1 {
    grid-area: 2/1/3/2;
  }
  .testimonial--darkblue {
    grid-area: 2/2/3/4;
  }
  .testimonial--position-2 {
    grid-area: 1/4/3/5;
  }
}/*# sourceMappingURL=style.css.map */