
.container-review{
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 20px;
}
.content .content-1{
    display: flex;
    justify-content: space-around;
}
.content .content-1  img{
    width: 20px;
}
.content .content-2{
    display: flex;
    justify-content: space-around;
}
.container-review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(343px, 1fr));
    gap: 20px;
}
.container-review .box-container .box{
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    display: none;
}
.container-review .box-container .box:nth-child(1),
.container-review .box-container .box:nth-child(2),
.container-review .box-container .box:nth-child(3){
    display: inline-block;
}

.container-review .box-container .box .image{
    margin-bottom: 20px;
    overflow: hidden;
    height: 150px;
    border-radius: 5px;
}
.container-review .box-container .box .image img{
    height: 100%;
}
.container-review .box-container .box:hover .image img{
    transform: scale(1.1);
    transition: 1s;
}
.container-review .box-container .box .content .content-1 p{
    /* font-size: 15px; */
    color: #777;
}
.container-review .box-container .box .content .content-2 h3, p{
    /* font-size: 20px; */
    color: #777;
    line-height: 2;
}
#load-more{
    margin-top: 20px;
    display: inline-block;
    padding: 13px 30px;
    border: 1px solid #334;
    color: #334;
    /* font-size: 16px; */
    background-color: white;
    cursor: pointer;
    transition: .5s;
}
#load-more:hover{
    background-color: rgb(0, 73, 184);
    border-color: rgb(0, 67, 168);
    color: white;
}

@media(max-width: 450px){
    .container-review{
        /* font-size: 25px; */
    }
    .container-review .box-container{
        grid-template-columns: 1fr;
    }
    .container-review .box-container .box .image{
        height: 200px;
    }
    .container-review .box-container .box .content .content-1 p{
        font-size: 12px;
    }
    .container-review .box-container .box .content-2 h3, p{
        font-size: 12px;
    }
}
