@charset "utf-8";

/* CSS Document */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

:root {
	--primary: #d00009;
	--secondary: #002359;
	--secondary-dark: #00122f;
	--white: #ffffff;
	--black: #353535;
	--fonts-title: "Open Sans", serif;
	--fonts: "Heebo", serif;
}

.order1{
	order: 1;
}

.order2{
	order: 2;
}

.order3{
	order: 3;
}

.btn-primary-dual {
	background: rgb(208,0,9);
	background: linear-gradient(90deg, rgba(208,0,9,1) 0%, rgba(0,35,89,1) 100%);
	color: var(--white);
	font-size: 15px;
	height: 45px;
	line-height: 45px;
	font-weight: 600;
	padding: 0 20px;
	letter-spacing: 0.5px;
	text-transform: capitalize;
	border: 0;
	border-radius: 4px;
	position: relative;
	z-index: 1;
	transition: all 0.6s ease 0s;
	overflow: hidden;
}

.btn-primary-dual:hover {
	color: #fff;
}

.btn-primary-dual::after {
	background: linear-gradient(90deg, rgba(0,35,89,1) 0%, rgba(208,0,9,1) 100%);
	content: "";
	height: 1000px;
	left: 50%;
	opacity: 1;
	position: absolute;
	top: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transition: all 0.5s linear 0s;
	width: 0;
	z-index: -1;
}

.btn-primary-dual:hover::after {
	opacity: 1;
	width: 100%;
}



.product-name{
	font-size: 30px;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 15px;
	line-height: 40px;
	text-transform: uppercase;
	font-family: var(--fonts-title);
}

.saperator-line{
	width: 100%;
	height: 1px;
	background-color: #dbbabf;
	content: " ";
	margin: 30px 0;
}

.product-div{
	margin-bottom: 50px;
}

.product-div-img{
	width: 100%;
	height: 350px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1) !important;
	padding: 15px;	
	position: relative;
	margin-bottom: 25px;
	border: 15px solid #fff;
	overflow: hidden !important;
}

.product-div-img .overlay{
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 0;
	z-index: 1000;
	position: absolute;
	border-radius: 5px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.2s;
}

.product-div:hover .product-div-img .overlay{
	width: 100%;
	height: 350px;
	transition: all 0.2s;
}

.product-img{
	max-width: 100%;
	max-height: 320px;
	width: auto;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;	
	transition: all 0.2s;
	z-index: 0;
	overflow: hidden;
	
}

.product-div:hover .product-img{
	transform: scale(1.06);
	transition: all 0.2s;
}

.product-div i{
	background-color: var(--white);
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	color: var(--primary);
	display: block;
	position: absolute;
	top : 50%;
	left : 50%;
	transform: translate(-50%, -50%);
	font-size: 25px;
	z-index: 1000;
	text-align: center;
	display: none;
}

.product-div:hover i{
	display: block;
}

.product-div h5{
	font-size: 16px;
	text-transform: uppercase;
	text-align: center;
	color: var(--black);
	font-weight: 600;
	line-height: 24px;
	height: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-div:hover h5{
	color: var(--primary);
	transition: all 0.3s;
}

.product-div h4{
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	color: var(--primary);
	font-weight: 500;
	line-height: 24px;
	height: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-div:hover h4{
	color: var(--black);
	transition: all 0.3s;
}

.product-list-content{
	width: 100%;
	height: 100%;
	background-color: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2) !important;
	padding: 30px 70px 10px 30px;
	border-radius: 7px;
}

.product-list-content h4{
	color: var(--secondary);
	font-family: var(--fonts);
	font-weight: 600;
	font-size: 18px;
	border-bottom: 1px solid var(--primary);
	text-transform: uppercase;
	line-height: 48px;
	display: inline-block;
	margin-bottom: 30px;
}

.product-list-content h5{
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 10px;
	color: var(--black);
}

.product-list-content p{
	text-align: justify;
}





/* Responsive */

@media only screen and (max-width: 1700px) {}

@media only screen and (max-width: 1600px) {}

@media only screen and (max-width: 1500px) {}

@media only screen and (max-width: 1450px) {
	.product-div-img{
		height: 250px;
	}

	.product-div:hover .product-div-img .overlay{
		height: 220px;
	}

	.product-img{
		max-height: 220px;
	}
}

@media only screen and (max-width: 1300px) {}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 1100px) {
	.product-name{
		font-size: 24px;
		line-height: 32px;
		padding-right: 15px;
	}
	.product-div-img{
		height: 200px;
	}

	.product-div:hover .product-div-img .overlay{
		height: 180px;
	}

	.product-img{
		max-height: 180px;
	}
}

@media only screen and (max-width: 992px) {
	.order1{
		order: 1;
	}
	
	.order2{
		order: 3;
	}
	
	.order3{
		order: 2;
	}

	.product-div-img{
		height: 300px;
	}

	.product-div:hover .product-div-img .overlay{
		height: 270px;
	}

	.product-img{
		max-height: 270px;
	}

	.product-list-content{
		padding: 20px;
	}

	.product-list-content h4{
		line-height: 24px;
		padding-bottom: 15px;
		font-size: 16px;
	}
}

@media only screen and (max-width: 767px) {
	.order1{
		order: 1;
	}
	
	.order2{
		order: 3;
	}
	
	.order3{
		order: 2;
	}

	.filter-btn{
		display: none;
	}
}

@media only screen and (max-width: 640px) {}

@media only screen and (max-width: 600px) {}

@media only screen and (max-width: 568px) {}

@media only screen and (max-width: 400px) {}

@media only screen and (max-width: 320px) {}