.review {
  h3 {
    text-align: center;
    color: var(--dp);
  }

  .box {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    .card {
      border-radius: 20px;
      border: 1px solid var(--dp);
      padding: 1rem;

      .img-box {
        width: 100%;
        height: 30px;
        margin-bottom: 10px;

        img {
          object-fit: contain;
          width: 100%;
          height: 100%;
        }
      }

      p {
        text-align: center;
      }

      .person {
        display: flex;
        align-items: center;
        gap: 10px;

        .img-box {
          width: 40px;
          height: 40px;
          margin-bottom: 0;
          border-radius: 50%;
          overflow: hidden;
        }

        p {
          padding: 0;
          margin-bottom: 0;
          font-weight: bold;
          text-transform: capitalize;
        }
      }
    }
  }
}

@media (min-width: 768px) {
  .review {
    h3 {
      text-align: center;
      color: var(--dp);
    }

    .box {
      padding: 1rem 0;
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 1rem;

      .card {
        border-radius: 20px;
        width: 300px;
        border: 1px solid var(--dp);
        padding: 1rem;

        .img-box {
          width: 100%;
          height: 30px;
          margin-bottom: 10px;

          img {
            object-fit: contain;
            width: 100%;
            height: 100%;
          }
        }

        p {
          text-align: center;
        }

        .person {
          display: flex;
          align-items: center;
          gap: 10px;

          .img-box {
            width: 40px;
            height: 40px;
            margin-bottom: 0;
            border-radius: 50%;
            overflow: hidden;
          }

          p {
            padding: 0;
            margin-bottom: 0;
            font-weight: bold;
            text-transform: capitalize;
          }
        }
      }
    }
  }
}
