.products-banner {
	background-image: url(../img/products_banner.jpg);
}

.products-list{
	margin: -15px;
}

.product-item {
	width: 100%;
	max-width: 446px;
	border-radius: 20px;
	overflow: hidden;
	margin: 15px;
}

.product-item .product-img {
	width: 100%;
	height: 328px;
	overflow: hidden;
}

.product-img img {
    transition: all .5s;
}
.product-img:hover img {
    transform: scale(1.1);
}

.product-item .product-name {
	line-height: 65px;
	font-size: 16px;
	color: #333333;
	text-align: center;
	background-color: #efefef;
}


@media screen and (max-width: 1400px) {
	.products-list{
		margin: -10px;
	}
	.product-item{
		max-width: calc(100% / 3 - 20px);
		margin: 10px;
	}
	.product-item .product-img{
		height: calc(100vw / 3 / 1.07 - 20px);
	}
}

@media screen and (max-width: 767px) {
	.products-list{
		margin: -5px;
	}
	.product-item{
		max-width: calc(100% / 2 - 10px);
		margin: 5px;
		
	}
	.product-item .product-img{
		height: calc(100vw / 2 / 1.07 - 10px);
	}
}
