.testi_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: #f0f0f0;
  }
  .testi_grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    width: calc(355px * 3 + 40px);
    padding: 20px;
    box-sizing: border-box;
  }
  .testi_grid-item {
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* border: 0.5px solid black; */
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* box-shadow: 3px 3px 5px gray; */
  }
  .testi_rating {
    font-size: 18px;
    text-align: start;
    margin-bottom: 10px;
    color: #004D73;
    
  }
  .testi_heading {
    font-weight: 500;
    font-size: 22px;
    color: black;
    margin: 10px 0;
  }
  .testi_paragraph {
    margin: 10px 0;
    font-weight: 100;
    font-size: 16px;
    flex-grow: 1;
  }
  .testi_user-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  .testi_logo {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    object-fit: cover;
    border-radius: 50px;
  }
  .testi_name {
    font-size: 18px;
    margin: 0;
  }
  .testi_designation {
    font-size: 14px;
    margin: 0;
  }
  @media (max-width: 1200px) {
    .testi_grid-container {
      grid-template-columns: repeat(2, 1fr);
      width: calc(355px * 2 + 20px);
    }
  }
  @media (max-width: 768px) {
    .testi_grid-container {
      grid-template-columns: 1fr;
      width: 355px;
    }
  }
  @media (max-width: 480px) {
    .testi_grid-item {
      padding: 10px;
    }
    .testi_rating {
      font-size: 20px;
    }
    .testi_heading {
      font-size: 18px;
    }
    .testi_paragraph {
      font-size: 14px;
    }
    .testi_name {
      font-size: 16px;
    }
    .testi_designation {
      font-size: 12px;
    }
  }
  