@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  width: 100vw;
  min-height: 100vh;
  background: #ecf2f8;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.attribution {
  font-size: 0.8125rem;
  text-align: center;
  position: fixed;
  width: 100vw;
  bottom: 0;
  background-color: #fff;
  padding: .25rem;
}

.attribution a {
  color: #3e52a3;
}

.testimonials_container {
  max-width: 69.6875rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media screen and (max-width: 49.1875rem) {
  .testimonials_container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    max-width: 20.625rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}

.testimonials_container .testimonial {
  border-radius: 0.625rem;
  overflow: hidden;
  -webkit-box-shadow: 0.25rem 0.5rem 1.5625rem rgba(0, 0, 0, 0.25);
          box-shadow: 0.25rem 0.5rem 1.5625rem rgba(0, 0, 0, 0.25);
  padding: 1.5rem 2rem;
}

.testimonials_container .testimonial__dark {
  color: #ffffff;
}

.testimonials_container .testimonial__light {
  background: #ffffff;
  color: #19212e;
}

.testimonials_container .testimonial.daniel {
  background: #7541c8;
}

@media screen and (min-width: 49.1875rem) {
  .testimonials_container .testimonial.daniel {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

.testimonials_container .testimonial.jonathan {
  background: #48556a;
}

@media screen and (min-width: 49.1875rem) {
  .testimonials_container .testimonial.jonathan {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / 4;
  }
}

@media screen and (min-width: 49.1875rem) {
  .testimonials_container .testimonial.jeanette {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

.testimonials_container .testimonial.patrick {
  background: #19212e;
}

@media screen and (min-width: 49.1875rem) {
  .testimonials_container .testimonial.patrick {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4;
  }
}

@media screen and (min-width: 49.1875rem) {
  .testimonials_container .testimonial.kira {
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4 / 5;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
  }
}

.testimonials_container .testimonial.bg-img {
  position: relative;
}

.testimonials_container .testimonial.bg-img .pattern {
  position: absolute;
  width: 7.75rem;
  height: 7.75rem;
  top: 0;
  right: 5rem;
  background: url(/images/bg-pattern-quotation.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: .25;
}

.testimonials_container .testimonial.bg-img p {
  z-index: 100;
}

.testimonials_container .testimonial__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials_container .testimonial__header .img-wrapper {
  width: 2.8125rem;
  height: 2.8125rem;
  border: 0.1875rem solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  overflow: hidden;
}

.testimonials_container .testimonial__header .img-wrapper img {
  width: 100%;
  height: 100%;
}

.testimonials_container .testimonial__header .testimonial__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 1.0625rem;
}

.testimonials_container .testimonial__header .testimonial__profile__name {
  font-weight: 600;
  font-size: 0.8125rem;
}

.testimonials_container .testimonial__header .testimonial__profile__desc {
  opacity: .5;
  font-size: 0.8125rem;
}

.testimonials_container .testimonial__content {
  margin-top: 1.5rem;
}

.testimonials_container .testimonial__content__main {
  font-size: 1rem;
}

.testimonials_container .testimonial__content__submain {
  font-size: 0.6875rem;
  opacity: .7;
  margin-top: 1.5rem;
}
/*# sourceMappingURL=style.css.map */