.products {
	margin-bottom: 40px;
}

.product {
	display: block;
	float: left;
	width: 371px;
	margin-right: 15px;
	text-decoration: none; 
	margin-bottom: 20px;
}

.product img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	object-position: center;
	transition: opacity ease 0.3s;
}

.product .product-name {
	height: 23px;
	font-family: 'Roboto Light';
	color: #000;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.product .product-price {
	height: 23px;
	font-family: 'Roboto Regular';
	color: #000;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

@media (hover:hover) {
	.product:hover img {
		opacity: .8;
	}
}

@media (max-width: 1200px) {
	.products .inner {
		width: calc(100% - 50px);
		padding-inline: 25px;
	}
	.product {
		float: left;
		width: calc(50% - 8px);
	}
	.product:nth-child(even) {
		margin-right: 0;
	}
	.product img {

	}
}

@media (max-width: 920px) {
	.product img {

	}
}

@media (max-width: 800px) {
	.product img {
		height: 400px;
	}
}

@media (max-width: 700px) {
	.product img {
		height: 300px;
	}
}

@media (max-width: 600px) {
	.product img {

	}
}