/* =========================
   Font families
========================= */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&display=swap");
/* =========================
   CSS Reset
   ========================= */
/* 1. Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margins */
* {
  margin: 0;
}

/* 3. Body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 4. Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 5. Form elements inherit typography */
input,
button,
textarea,
select {
  font: inherit;
}

/* =========================
   Typography tokens (Testimonials Grid)
========================= */
/* =========================
   Helper functions
========================= */
/* =========================
   Primary colors
========================= */
/* =========================
   Neutral colors
========================= */
/* =========================
   Spacing scale
========================= */
html {
  font-size: 100%;
}

body {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-weight: 500;
  background: linear-gradient(to right, white 0%, white 5%, rgb(233, 233, 233) 15%, lightgrey 100%);
}

@media (min-width: 64rem) {
  .wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, white 0%, white 15%, rgb(250, 250, 250) 20%, rgb(250, 250, 250) 100%);
  }
}
.wrapper .testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}
@media (min-width: 48rem) {
  .wrapper .testimonials-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "daniel daniel" "jonathan jeanette" "patrick patrick" "kira kira";
  }
}
@media (min-width: 64rem) {
  .wrapper .testimonials-grid {
    max-width: 75rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "daniel daniel jonathan kira" "jeanette patrick patrick kira";
  }
}
.wrapper .testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 0.5rem;
}
.wrapper .testimonial--purple {
  background-color: hsl(263, 55%, 52%);
  color: hsl(0, 0%, 100%);
}
.wrapper .testimonial--purple .testimonial__status {
  color: hsl(260, 100%, 95%);
}
.wrapper .testimonial--purple .testimonial__body {
  color: hsl(260, 100%, 95%);
}
.wrapper .testimonial--purple .testimonial__subject {
  z-index: 1;
}
.wrapper .testimonial--grey {
  background-color: hsl(217, 19%, 35%);
  color: hsl(0, 0%, 100%);
}
.wrapper .testimonial--grey .testimonial__status {
  color: hsl(224, 10%, 45%);
}
.wrapper .testimonial--grey .testimonial__body {
  color: hsl(214, 17%, 92%);
}
.wrapper .testimonial--white {
  background-color: hsl(0, 0%, 100%);
  color: hsl(217, 19%, 35%);
}
.wrapper .testimonial--white .testimonial__name {
  color: hsl(217, 19%, 35%);
}
.wrapper .testimonial--white .testimonial__status {
  color: hsl(0, 0%, 81%);
}
.wrapper .testimonial--white .testimonial__body {
  color: hsl(224, 10%, 45%);
}
.wrapper .testimonial--dark-blue {
  background-color: hsl(219, 29%, 14%);
  color: hsl(0, 0%, 81%);
}
.wrapper .testimonial--dark-blue .testimonial__body {
  color: hsl(214, 17%, 92%);
}
.wrapper .testimonial--daniel {
  grid-area: daniel;
}
.wrapper .testimonial--jonathan {
  grid-area: jonathan;
}
.wrapper .testimonial--jeanette {
  grid-area: jeanette;
}
.wrapper .testimonial--patrick {
  grid-area: patrick;
}
.wrapper .testimonial--kira {
  grid-area: kira;
}
.wrapper .testimonial--daniel, .wrapper .testimonial--jonathan, .wrapper .testimonial--jeanette, .wrapper .testimonial--patrick, .wrapper .testimonial--kira {
  box-shadow: 0px 30px 35px 15px rgba(89, 89, 89, 0.3);
}
.wrapper .testimonial__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.wrapper .testimonial__quote {
  display: none;
}
@media (min-width: 48rem) {
  .wrapper .testimonial__quote {
    display: block;
    position: absolute;
    top: -60%;
    right: 15%;
  }
}
@media (min-width: 64rem) {
  .wrapper .testimonial__quote {
    right: 10%;
  }
}
.wrapper .testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.wrapper .testimonial__name {
  font-size: 0.8125rem;
  line-height: 1.1;
  font-weight: 500;
}
.wrapper .testimonial__status {
  font-size: 0.6875rem;
  line-height: 1.1;
  font-weight: 500;
}
.wrapper .testimonial__subject {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
}
.wrapper .testimonial__body {
  font-size: 0.8125rem;
  line-height: 1.4;
  font-weight: 500;
}

/*# sourceMappingURL=main.css.map */
