@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,400;0,600;1,500&display=swap");
:root {
  --color-black: hsl(0, 0%, 7%);
  --color-dark-blue: hsl(219, 29%, 14%);
  --color-white: hsl(0, 0%, 100%);
  --color-grey-100: hsl(214, 17%, 92%);
  --color-grey-200: hsl(0, 0%, 81%);
  --color-grey-400: hsl(224, 10%, 45%);
  --color-grey-500: hsl(217, 19%, 35%);
  --color-purple-50: hsl(260, 100%, 95%);
  --color-purple-300: hsl(264, 82%, 70%);
  --color-purple-500: hsl(263, 55%, 52%);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  display: block;
  margin: 0;
}
body,
p,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-family: "Barlow Semi Condensed", sans-serif;
}
body {
  background-color: #f6f5f6;
}
.testimonials {
  margin: 73px 32px;
  gap: 32px;
}
.testimonial {
  padding: 32px;
  border-radius: 8px;
  box-shadow: 40px 60px 50px -47px hsla(215, 18%, 35%, 0.24);
}
.testimonial-Header {
  display: flex;
  gap: 17px;
  padding-bottom: 16px;
  align-items: center;
}
.profile-ImgBorder {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-purple-300);
}
.profile-Img {
  border-radius: 50%;
  width: 28px;
  height: 28px;
}
.purple {
  background-color: var(--color-purple-500);
  margin-bottom: 32px;
}

.testimonial-Info {
  line-height: 1.1;
}
.testimonial-Info_Name {
  font-size: 13px;
  padding-bottom: 4px;
  font-weight: 500;
}
.testimonial-Info_Status {
  font-size: 11px;
}
.testimonial-Review {
  font-size: 20px;
  line-height: 1.2;
  padding-bottom: 16px;
  font-weight: 600;
}
.testimonial-Review_Detail {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}
.purple .testimonial-Info_Name,
.purple .testimonial-Review,
.grey .testimonial-Info_Name,
.grey .testimonial-Review,
.dark_Blue .testimonial-Info_Name,
.dark_Blue .testimonial-Info_Status {
  color: var(--color-white);
}
.purple .testimonial-Info_Status,
.purple .testimonial-Review_Detail {
  color: var(--color-purple-50);
}
.grey {
  background-color: var(--color-grey-500);
  margin-bottom: 32px;
}
.grey .testimonial-Info_Status,
.dark_Blue .testimonial-Review {
  color: var(--color-grey-200);
}
.grey .testimonial-Review_Detail,
.dark_Blue .testimonial-Review_Detail {
  color: var(--color-grey-100);
}
.white {
  background-color: var(--color-white);
  margin-bottom: 32px;
}
.white .testimonial-Info_Name,
.white .testimonial-Review {
  color: var(--color-grey-500);
}
.white .testimonial-Info_Status,
.white .testimonial-Review_Detail {
  color: var(--color-grey-400);
}
.dark_Blue {
  background-color: var(--color-dark-blue);
  margin-bottom: 32px;
}

@media (min-width: 500px) {
  .testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .purple {
    grid-column: span 2;
  }
  .dark_Blue {
    grid-column: span 2;
  }
  .white_span {
    grid-column: span 2;
  }
  .grey,
  .purple,
  .white,
  .dark_Blue {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .testimonials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .testimonial:last-child {
    grid-column-start: 4;
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .testimonials > .testimonial:nth-child(3) {
  }
}
