* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "League Spartan", sans-serif;
}

body {
  background-image: url(./img/bg-pattern-top-desktop.svg), url(./img/bg-pattern-bottom-desktop.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: 0vw 0vh, 30vw 10vh;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

#five-star-reviews {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5rem;
}

.main-heading {
  color: #512051;
  font-size: 56px;
  font-weight: 700;
  line-height: 48px;
  width: 60%;
}

.main-heading-p {
  color: #927B91;
  font-size: 19px;
  font-weight: 500;
  line-height: 25px;
  width: 75%;
  padding-top: 2rem;
}

.review {
  background-color: #F7F2F7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0rem;
  padding: 0rem 2rem;
  width: 455px;
  height: 56px;
}

.five-star-mention-p {
  color: #512051;
  font-size: 17px;
  font-weight: 700;
}

#review-two {
  margin-left: 2rem;
}

#review-three {
  margin-left: 4rem;
}

#review-cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1rem;
  margin-top: 4rem;
}

.review-card {
  border-radius: 8px;
  background: #512051;
  width: 350px;
  height: 234px;
  padding: 1.5rem;
}

.avatar-container {
  display: flex;
  align-items: center;
}

.avatar-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 1rem;
}

.avatar-name {
  color: #FFF;
  font-size: 17px;
  font-weight: 700;
}

.verified-buyer-text {
  color: #EE69A4;
  font-size: 17px;
  font-weight: 400;
  padding-top: 4px;
}

.review-card-text {
  color: #FFF;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  padding-top: 2rem;
}

#review-card-2 {
  margin-top: 2rem;

}

#review-card-3 {
  margin-top: 4rem;
}



/* 




Media Queries




*/

@media screen and (max-width: 1024px) {

  body {
    background-image: url(./img/bg-pattern-top-mobile.svg);
    background-repeat: no-repeat;
    background-position: -20vw -10vh;
  }


  #five-star-reviews {
    flex-direction: column;
    margin-top: 3rem;
  }

  .main-heading {
    font-size: 40px;
    width: 100%;
    text-align: center;
  }

  .main-heading-p {
    width: 100%;
    text-align: center;

  }

  .five-star-mentions {
    margin-top: 1rem;
  }

  .five-star-img {
    margin-bottom: .7rem;
    padding: 0px 2px;
  }

  .review {
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 3rem;
    width: 100%;
    height: 78px;
  }

  #review-two {
    margin-left: 0rem;
  }

  #review-three {
    margin-left: 0rem;
  }

  #review-cards {
    flex-direction: column;
    margin-top: 2rem;
  }

  .review-card {
    width: 100%;
    height: 250px;
  }

  #review-card-2 {
    margin: 1rem 0rem;

  }

  #review-card-3 {
    margin-top: 0rem;
    margin-bottom: 3rem;
  }

}

@media screen and (max-width: 360px) {
  .review {
    padding: 1.5rem 2rem;

  }
}