#reviews{
    min-height: calc(100vh - 106px);
    background-color: rgb(119, 96, 33);
    width: 100%;
}

.clients-reviews{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}

#box-client{
    background-color: rgb(119, 96, 33);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

img-client{
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-client > img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20vh;
    width: 20vh;
    border-radius: 50%;
}

#client-depoiment > p{
    text-align: justify;
}

#view{
    text-decoration: underline;
    color: yellow;
}

#view:hover{
    cursor: pointer;
}

#view_more{
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
}

@media screen and (max-width: 750px){
    #box-client{
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
}