
.review-section h3{
    margin-left: -50px;
    margin-bottom: 50px;
    border-bottom: 2px solid #222;
    color: #222;
    font-size: 34px;
}
.review-section .client{
    color: #4285f4;
    margin-right: 10px;
}
.review-card{
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 20px 0 #222;
    overflow-y: scroll;
}
.review-card::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.review-inner{
        background: #fff;

    position: relative;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    padding: 25px 25px 0 25px;
    border-bottom: 1px solid rgba(2,2,2,.2);
    transition: all .5s;
    transform-origin: bottom;
}
.review-inner:hover{
    transform: scale(1.05);
    padding: 25px 25px 25px 25px;
    background: #eee;


}

.review-inner:hover i{
    margin-right: 40px;
}
.review-inner i{
    margin-right: 20px;
    font-size: 28px;
    color: #4285f4;
        transition: all .5s;

}
