/* CSS FOR REVIEWS TEMPLATE */
.review-layout {
  display: flex;
  margin: 80px 0 0 0;
}
@media (max-width: 880px) {
  .review-layout {
    flex-wrap: wrap;
  }
}

.testimonial-box {
    z-index: 1;
    max-width: 50%;
    margin: auto 0 auto 10px;
  }
  @media (max-width: 880px) {
    .testimonial-box{
      max-width: 100%;
      margin: 20px 0 auto 0;
    }
  }
   
  .reviewbar {
    text-align: center;
    background-color: #fef7f7;
    max-height: 80%;
    max-width: 50%;
    margin: auto;
  }
  @media (max-width: 880px) {
    .reviewbar {
      max-width: 100%;
      width: 100%;
    }
  }
  
  .reviewbar a {
    color: #333;
    text-decoration: underline;
  }
  .reviewbar p {
    text-align: center !important;
    line-height: 2em;
    font-size: 18px;
    text-align: left;
    margin: 60px 60px;
  }
  @media (min-width: 768px) and (max-width: 980px) {
    .reviewbar p {
      font-size: 18px;
    }
    .fullwidth-testimonial p {
      font-size: 18px;
    }
  }
  @media (max-width: 767px) {
    .reviewbar p {
      font-size: 18px;
    }
    .fullwidth-testimonial p {
      font-size: 18px;
    }
  }

  .fullwidth-testimonial {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin: 50px auto;
  }
  @media (max-width: 880px) {
    .fullwidth-testimonial {
      max-width: 100%;
      width: 100%;
    }
  }
  
  .fullwidth-testimonial a {
    color: #333;
    text-decoration: underline;
  }
  .fullwidth-testimonial p {
    text-align: center !important;
    line-height: 2em;
    font-size: 18px;
    text-align: left;
    margin: 60px 60px;
  }
  
  .review-name {
    font-weight: bold;
    color: black;
  }
  
  .subtext {
    font-size: 12px;
    font-weight: normal;
    font-style: italic;
  }
  
  .thankyou-text {
    text-align: center;
    margin: 5px;
    padding: 5px !important;
    color: #e5adb3;
    font-size: 20px;
  }
  
  .logo-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 0.5rem;
    justify-items: center;
    padding: 45px;
  }
  @media screen and (max-width: 700px) {
    .logo-grid-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 2.5rem;
      justify-items: center;
      padding: 45px;
    }
  }

  .logo-grid-img {
    cursor: pointer;
    transition: all .2s ease-in-out;
  }
  .logo-grid-img:hover {
    transform: scale(1.1); 
  }
  
