.reviews {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;

  h2{
    padding-bottom: 1rem;
  }

  .review {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    .reviewBox {
      width: 300px;
      height: 300px;
      border-radius: 10px;
      background-color: var(--l);
      padding: 1rem;

      .title {
        display: flex;
        align-items: center;
        gap: 10px;

        .img {
          background-color: var(--gr);
          width: 30px;
          height: 30px;
          border-radius: 50%;

          img{
            border-radius: 50%;
          }
        }
      }

      p {
        padding-top: 1rem;
        line-height: 2rem;
      }
    }
  }
}

/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
@media (min-width: 568px) {
  .reviews {
    .review {
      flex-direction: row;
    }
  }
}

/* tablet */
/*@media (min-width: 768px) {

} */

/* desktop */
/* @media (min-width: 1024px) {
 
} */