.home-h1 {
	font-weight: 600;
	font-size: 20px;
	color: #000;
	margin-bottom: 15px;
}
.home-subtitle {
	font-weight: 400;
	font-size: 13px;
	color: #000;
	margin-bottom: 0;
}
.home-top-cont {
	margin-top: 24px;
	margin-bottom: 30px;
}

.popular-cats {
	display: flex;
	justify-content: space-between;
}
.popular-cats a {
	padding: 20px;
	width: 16%;
	color: #EA7490;
	border: 0.5px solid #E2E2E2;
	border-radius: 4px;
	font-size: 15px;
  	font-weight: 700;
}
.pop-cats-h {
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: 600;
}
.popular-categories {
	margin-top: 45px;
	margin-bottom: 45px;
}

.highlighted-product {
	display: flex;
	gap: 10px;
	margin-bottom: 45px;
}
.product-data {
	display: flex;
	gap: 55px;
	padding: 0 17px 0;
	border: 1px solid #e6e6e6;
	border-radius: 4px;
}
.product-data .product-img img {
	max-width: unset;
}
.product-data .product-content {
	align-self: center;
	padding-top: 15px;
}
.product-data .product-content .brand-title {
	font-weight: 700;
	font-size: 14px;
	color: #000;
	margin-bottom: 10px;
}
.product-data .product-content .product-title {
	font-weight: 400;
	font-size: 15px;
	color: #000;
}
.product-data .product-content .product-excerpt {
	font-weight: 400;
	font-size: 13px;
	color: rgba(0, 0, 0, 0.6);
	margin-bottom: 75px;
}
.price-add {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 28px;
}
.price-add p {
	font-weight: 700;
	font-size: 19px;
	color: #000;
	margin-bottom: 0;
}
.price-add a {
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	padding: 17px 28px;
	border-radius: 4px;
	background-color: #000;
	text-transform: uppercase;
}
.brand-banner img {
	height: 100%;
}

.home-products-second-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.home-products-second-inner .home_slider_second {
	flex: 0 0 60%;
	max-width: 60%;
}
.home-products-second-inner .new-banner {
	flex: 0 0 39%;
}
.home-products-second-inner .new-banner img {
	height: 100%;
}



/*responsive*/
@media screen and (max-width: 991px) {
	.home-h1 {
		font-size: 15px;
		margin-bottom: 10px;
	}
	.home-subtitle {
		font-size: 12px;
	}
	.home-top-cont {
		margin-top: 15px;
		margin-bottom: 20px;
	}
	
	.popular-cats {
		flex-wrap: wrap;
		row-gap: 10px;
	}
	.popular-cats a {
		padding: 10px;
		width: 32%;
		font-size: 10px;
	}
	.pop-cats-h {
		margin-bottom: 18px;
  		font-size: 15px;
	}
	.popular-categories {
		margin-top: 30px;
  		margin-bottom: 30px;
	}
	
	.highlighted-product {
	    margin-bottom: 30px;
	}
	.highlighted-product, .product-data, .price-add {
		flex-direction: column;
	}
	.product-data {
		padding: 20px;
		gap: 20px;
	}
	.product-data .product-content .product-excerpt {
		margin-bottom: 25px;
	}
	.product-data .product-img {
		text-align: center;
	}
	.product-data .product-img img {
		max-width: 330px;
	}
	.price-add {
		margin-bottom: 0;
		gap: 25px;
		align-items: flex-start;
	}
	.price-add a {
		width: 100%;
		text-align: center;
	}
	
	.home-products-second-inner {
		flex-direction: column;
	}
	.home-products-second-inner .home_slider_second {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.brand-banner img,
	.new-banner img {
		width: 100%;
	}
	.home_slider_second ul {
		display: flex!important;
		flex-wrap: wrap;
		row-gap: 15px;
	}
	.home_slider_second ul#tns6 > .tns-item {
		width: calc(48%);
	}
}