.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	gap: 2%;
    margin: 25px auto 0px;
    max-width: 1240px;
    width: 95%;
    align-items: stretch;
}
.newcontent .grid{
    margin: 0px auto 0px;
}
#loadmoregrid{
    margin: 0px auto 25px !important;
}
.column {
    display: flex;
    flex-direction: column;
}
.review-box{
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: center;
    padding: 25px 15px 15px 15px;
    box-sizing: border-box;
    overflow: hidden;
	animation: fadein 0.6s;
	cursor: pointer;
    font-size: 14px;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    margin-bottom: 20px;
    border: 1px solid rgb(250, 250, 250);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px 0px;
    flex-grow: 3;
}
.profile-row3-cont .reviews-starrating .starrating img{
    width: 38px;
}
.profile-row3-cont .rl-comment{
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: italic;
    padding-top: 10px;
}
.profile-row3-cont .rl-date{
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}
.profile-row3-cont .rl-name{
    font-family: 'Lato', sans-serif;
    color: grey;
}
.reviewsgrid .grid .column .review-box a, .reviewsgrid .grid .column .review-box a:hover, .reviewsgrid .grid .column .review-box a:focus{
    color: #000;
    text-decoration:none;
}
.ctap-search-icon{
    margin: 0px auto 0px;
}
#loadmorebtn{
    cursor: pointer;
}
@media screen and (max-width:980px){
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
	    gap: 0%;
        width: 90%;
    }
}