.product-wrap{
    padding-bottom: 60px;
}

.product-wrap a{
    margin-right: 34px;
    display: flex;
    width: 294px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}
.product-wrap a .pic{
    width: 100%;
    height: 392px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-wrap a:nth-child(4n){
    margin-right: 0;
}
.product-wrap a .pic img{
    object-fit: cover;
    display: block;
    width: 100%;
    transition: all ease-in-out .8s;
}
.product-wrap a:hover .pic img{
    transform: scale(1.1);
}
.product-wrap a p{
    width: 100%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    margin-top: 24px;
}
.product-wrap a:nth-last-child(1){
    margin-right: 0;
}
.clients-wrap{
    height: auto;
    overflow: hidden;
    padding-bottom: 30px;
}
.clients-wrap a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 198px;
    height: 100px;
    background: #fff;
    border: 1px solid #E4E7ED;
    margin: 0 20px 20px 0;
    float: left;
}
.clients-wrap a:nth-child(6n){
    margin-right: 0;
}

.clients-wrap a img{
    display: block;
    max-width: 100%;
}


@media (max-width:769px) {

    .product-wrap{
        display: flex;
        
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .product-wrap a{
        width: 48.1%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .product-wrap a .pic{
        height: auto;
    }
    .product-wrap a img{
        width: 100%;
    }
    .product-wrap a p{
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-top: 14px;
    }
    .clients-wrap{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .clients-wrap a{
        margin: 0 0 16px 0;
        width: 47.5%;
    }
    .clients-wrap a img{
        max-width: 100%;
        max-height: 100%;
    }

}




