body {
  font-family: "Barlow Semi Condensed", sans-serif;
  background-color: hsl(214, 17%, 92%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 30px;
  box-sizing: border-box;
}
.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  max-width: 1200px;
  width: 90%;
}
.card1 {
  background: url(./images/bg-pattern-quotation.svg), hsl(263, 55%, 52%);
  background-repeat: no-repeat;
  background-position: top 2% right 20%;
  grid-area: 1 / span 2;
  padding: 30px 20px 30px 20px;
  border-radius: 10px;
}
.profile {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.profile-img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 3px solid hsl(264, 82%, 80%);
}
.name {
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  margin-bottom: 0;
}
.card1,
.position {
  color: hsl(0, 0%, 100%);
  font-weight: 300;
  margin-top: 0;
  font-size: 13px;
}
.testimonial-header {
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  font-size: 22px;
  margin: 5px;
}
.testimonial-content {
  color: hsl(0, 0%, 100%);
  font-weight: 500;
}
.card2 {
  background-color: hsl(217, 19%, 35%);
  padding: 30px;
  border-radius: 10px;
  grid-column: 3 / span 1;
}
.card2 .profile-img {
  border: 2px solid hsl(0, 0%, 81%);
}
.card2,
.position {
  color: hsl(0, 0%, 100%);
  font-weight: 300;
  margin-top: 0;
  font-size: 13px;
}
.card3 {
  background-color: hsl(0, 0%, 100%);
  grid-column: 5;
  grid-row: 1 / span 2;
  grid-column: 4 / span 1;
  padding: 30px;
  border-radius: 10px;
}
.card3 .profile-img {
  border: none;
}
.card3 .name,
.position {
  color: hsl(217, 19%, 35%);
}
.card3 .testimonial-header {
  color: hsl(217, 19%, 35%);
}
.card3 .testimonial-content {
  color: hsl(224, 10%, 45%);
  font-weight: 500;
}
.card3 .position {
  color: hsl(217, 19%, 35%);
}
.card4 {
  background-color: hsl(0, 0%, 100%);
  padding: 30px;
  border-radius: 10px;
  grid-column: 1 / span 1;
}
.card4 .profile-img {
  border: none;
}
.card4 .name {
  color: hsl(217, 19%, 35%);
}
.card4 .position {
  color: hsl(217, 19%, 35%);
}
.card4 .testimonial-header {
  color: hsl(217, 19%, 35%);
}
.card4 .testimonial-content {
  color: hsl(224, 10%, 45%);
  font-weight: 500;
}
.card5 {
  background-color: hsl(219, 29%, 14%);
  padding: 30px;
  border-radius: 10px;
  grid-column: 2 / span 2;
}
.card5,
.position {
  color: hsl(0, 0%, 100%);
  font-weight: 300;
  margin-top: 0;
  font-size: 13px;
}
