@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
body{
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #333;
	font-family: 'Poppins', sans-serif;
	font-weight: normal;
	font-style: normal;
}
.header {
	background: #275d8c;
	color: #fff;
}
.header-text {
	padding-top: 60px;
	padding-bottom: 90px;
}
.header-text h2 {
	font-size: 60px;
	font-weight: 900;
	margin-bottom: 30px;
}
.header-text h3 {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 16px;
}
.header-text p {
	font-size: 18px;
}
.product-section {
	margin-top: 50px;
	margin-bottom: 100px;
}
.product-item img {
	width: 100%;
	height: 290px !important;
}
.product-item {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 20px;
	background: #333;
	cursor: pointer;
	margin-bottom: 30px;
}
.product-overly {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	background: #c0ffc0e3;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
}
.product-item:hover .product-overly{
	opacity: 1;
	visibility: visible;
}
.product-overly-full h2 {
	font-size: 44px;
	font-weight: 700;
}
.product-overly-full a {
	display: inline-block;
	text-decoration: none;
	text-transform: capitalize;
	padding: 15px 50px;
	background: #fff;
	color: #333;
	font-weight: 500;
	letter-spacing: 1px;
}
@media (max-width: 767px){
	.product-item img {
		height: auto !important;
	}
	.header-text h3 {
		font-size: 16px;
		font-weight: 700;
		margin-bottom: 16px;
	}
	.header-text p {
		font-size: 16px;
	}
}