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

body {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 13px;
  background-color: hsl(210, 46%, 95%);
}

.container {
  width: 85vW;
  font-size: 16px;
  margin: 30px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media only screen and (max-width: 900px) {
  .container {
    width: 95vW;
    overflow: auto;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-column-gap: unset;
  }
}

.testimonial-section-1 {
  grid-column: span 2;
  grid-row: 1;
  grid-column-gap: 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
}
@media only screen and (max-width: 900px) {
  .testimonial-section-1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-row-gap: 30px;
  }
}

.testimonial-section-2 {
  grid-column: span 2;
  grid-row: 2;
  grid-column-gap: 30px;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media only screen and (max-width: 900px) {
  .testimonial-section-2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-row-gap: 30px;
  }
}

.testimonial-section-3 {
  grid-column: 3;
  grid-row: span 2;
  grid-column-gap: 30px;
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 900px) {
  .testimonial-section-3 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-column: 1;
    grid-row: auto;
    grid-row-gap: 30px;
  }
}

.testimonial {
  border-radius: 15px;
  padding: 30px;
  box-shadow: 5px 15px 50px rgba(0, 0, 0, 0.15);
}
.testimonial__profile {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 20px;
}
.testimonial__author {
  margin-left: 20px;
}
.testimonial__image img {
  border-radius: 50%;
  object-fit: cover;
  border: solid 2px hsl(210, 46%, 95%);
  width: 45px;
}
.testimonial__highlights {
  margin-bottom: 20px;
  z-index: 1;
}
.testimonial__qualification {
  opacity: 0.7;
}
.testimonial__quote {
  opacity: 0.7;
}
.testimonial__content {
  position: relative;
  z-index: 1;
}
.testimonial.testimonial-1 {
  background-color: hsl(263, 55%, 52%);
  color: hsl(0, 0%, 100%);
  position: relative;
}
.testimonial .testimonial-1__background {
  position: absolute;
  z-index: 0;
  top: 16px;
  right: 25%;
  bottom: 0;
  transform: scale(1.3);
}
.testimonial.testimonial-2 {
  background-color: hsl(217, 19%, 35%);
  color: hsl(0, 0%, 100%);
}
.testimonial.testimonial-3 {
  background-color: hsl(0, 0%, 100%);
  color: rgba(0, 0, 0, 0.7);
  grid-template-columns: 100px;
}
.testimonial.testimonial-4 {
  background-color: hsl(219, 29%, 14%);
  color: hsl(0, 0%, 100%);
}
.testimonial.testimonial-5 {
  background-color: hsl(0, 0%, 100%);
  color: rgba(0, 0, 0, 0.7);
}

.attribution {
  font-size: 11px;
  text-align: center;
  margin: 0 auto;
  grid-column: span 3;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}

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