.d_homeBooks {
	padding: 10px 20px 60px 20px;
	background: white;
	color: black;
	text-align: center;
	margin-top: 80px;
}

.d_homeBooks_title {
	font-size: 22px;
	line-height: 30px;
	color: black;
	font-weight: 700;
	text-transform: uppercase;
	margin: 50px auto 20px auto;
	text-align: center;
	letter-spacing: 1px;
}

.d_homeBooks_text {
	text-align: center;
	padding: 0 20px;
	margin: 0 auto 40px auto;
	max-width: 480px;
}

.d_homeBooks_container {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.d_homeBooks_product {
	position: relative;
	transition: all .3s ease-in-out;
	margin-bottom: 40px;
}

.d_homeBooks_product:not(:last-of-type) {
	margin-bottom: 50px;
}

.d_homeBooks_product::before {
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.2);
}

.d_homeBooks_product:hover {
	transform: scale(1.08);
}

.d_homeBooks_product:hover::before {
	content: "";
}

.d_homeBooks_productImage {
	max-height: 416px;
	margin-bottom: 30px;
	position: relative;
	padding: 0 30px;
}

.d_homeBooks_productImage img {
	max-height: 344px;
}

.d_homeBooks_productTitle {
	font-weight: bold;
	font-size: 24px;
	color: black;
	margin-bottom: 5px;
	letter-spacing: 1px;
}

.d_homeBooks_productPrice {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
}

.d_homeBooks_productPriceOld {
	text-decoration: line-through;
	color: #9b9b9b;
	margin-right: 20px;
}

.d_homeBooks_productPriceNew {
	font-size: 20px;
	color: #568c47;
	letter-spacing: 1px;
	font-weight: 800;
}

.d_homeBooks_more {
	box-shadow: 0 3px 5px 0 rgb(0 0 0 / 10%), inset 0 0 0 transparent;
	font-size: 14px;
	font-weight: 600;
	padding: 14px 25px;
	display: block;
	margin: 15px auto 0 auto;
	max-width: calc(100% - 20px);
}

@media (min-width: 576px) {
	.d_homeBooks_more {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	.d_homeBooks {
		padding: 30px 20px 100px 20px;
	}

	.d_homeBooks_container {
		flex-direction: row;
		justify-content: space-between;
		max-width: 1100px;
		text-align: left;
	}

	.d_homeBooks_title {
		font-size: 36px;
		line-height: 1.364;
	}

	.d_homeBooks_productImage {
		padding: 0;
		margin-bottom: 30px;
	}
}