@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@200;300;400;700&display=swap");

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

body {
  background: #edf2f8;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  line-height: 1.7;
  font-size: 13px;
}

.testimonials {
  max-width: 1440px;
  margin: 100px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  margin-bottom: 10px;
}

.card__header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.card__header h3 {
  font-size: 15px;
}
.card__header p {
  opacity: 50%;
}

.card__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #996ed9;
  margin-right: 10px;
}
.card__lead {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
}
.card__quote {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 70%;
  font-weight: 500;
}
.card--bg-purple {
  background: hsl(263, 55%, 52%);
  color: #fff;
  background-image: url("./images/bg-pattern-quotation.svg");
  background-repeat: no-repeat;
  background-position: top 10px right 100px;
  grid-column: 1/3;
}
.card--bg-gray-blue {
  background: hsl(217, 19%, 35%);
  color: #fff;
}
.card--bg-black-blue {
  background: hsl(219, 29%, 14%);
  color: #fff;
  grid-column: 2/4;
  grid-row: 2;
}

footer {
  text-align: center;
}

.card:nth-of-type(5) {
  grid-column: 4;
  grid-row: 1/3;
}

@media (max-width: 1050px) {
  .testimonials {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .card--bg-purple {
    background: hsl(263, 55%, 52%);
    color: #fff;
    background-image: url("./images/bg-pattern-quotation.svg");
    background-repeat: no-repeat;
    background-position: top 10px right 100px;
    grid-column: 1/2;
  }
  .card--bg-black-blue {
    background: hsl(219, 29%, 14%);
    color: #fff;
    grid-column: 2;
    grid-row: 2;
  }
  .card:nth-of-type(5) {
    grid-column: 1/3;
    grid-row: 3;
  }
  .card--bg-gray-blue {
    background: hsl(217, 19%, 35%);
    color: #fff;
    grid-column: 2/3;
  }
}

@media (max-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .card--bg-purple {
    background: hsl(263, 55%, 52%);
    color: #fff;
    background-image: url("./images/bg-pattern-quotation.svg");
    background-repeat: no-repeat;
    background-position: top 10px right 100px;
    grid-column: 1;
  }
  .card--bg-black-blue {
    background: hsl(219, 29%, 14%);
    color: #fff;
    grid-column: 1;
    grid-row: 2;
  }
  .card:nth-of-type(5) {
    grid-column: 1;
  }
  .card--bg-gray-blue {
    background: hsl(217, 19%, 35%);
    color: #fff;
    grid-column: 1;
  }
}
