.review-grid{
  display:grid;
  grid-template-rows:auto auto auto 0px;
  justify-items:center;
  row-gap: 40px;
}
.review{
 width:90%;
 max-width:500px;
 margin: 0 40px;
 background:#fff;
 border-radius: 10px;
}
.review-right{
  display:grid;
  font-size:0.8rem;
  
}
.review-inner{
  padding:10px;
  margin:0 20px;
}
.icon{
 display:grid;
 justify-items: center;
 margin:20px 10px 10px 10px;
  --fa-primary-color:white;
    --fa-secondary-color:rgb(110, 110, 110);

}
.stars{
  color:rgba(255, 217, 0, 0.678);
  text-align: center;
  padding:10px;
}
.time{
  
  color:rgba(0,0,0,0.3);
  font-size:0.7rem;
}
.customer-name{  
    font-weight: bold;
   
    text-align:center;
    margin:0 20px;
    padding:10px;

    border-bottom:2px solid rgba(0,0,0,0.3);
    
    
    
}
@media (min-width:500px) and (max-width:1100px){
  .review{
    display: grid;
    grid-template-columns: 20% 80%;
  }
  .review-inner{
    padding:10px 10px 10px 0px;
  }
  .customer-name{
    text-align:unset;
    padding:10px 10px 10px 0px;
  }
  .stars{
    text-align: unset;
    padding:20px 10px 10px 0px;
    margin:0 20px;
  }
  .time{
    padding-left:20px;
  }
}
@media screen and (min-width:1100px){
  .review-grid{
    display: grid;
    justify-content: center;
    grid-template-columns: auto auto auto;   
    grid-template-rows: auto;
  }
  .review{
    width:300px;
    margin-bottom:20px;
    box-shadow:0px 0px 20px 0px rgba(0,0,0,0.3);
  }
}
@media screen and (min-width:1440px){
	.review-grid{
    column-gap:40px;
  	}
}


/* -------------------------------------------------------------work blog---------------------------------------------------------- */
/* Slideshow container */
.slideshow-container {
  max-width: 1600px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 80%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: grey;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color:#fff;
}
/* -------------------------------------------------------end-------------------------------------------------------------------------------------- */
