@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&display=swap');
body{
	font-family: 'Work Sans', sans-serif;
	font-weight: 500;
	font-size: 18px;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 600;
}
.banner{
	min-height: 100vh;
	background: url(../img/banner.jpg);
	background-size: cover;
	background-position: center;
}
.main{
	padding: 100px 0px;
}
.main h2{
	font-size: 45px;
}
.main a img{
	margin: 80px 0px 30px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(194,190,194,1);
	-moz-box-shadow: 0px 0px 15px 0px rgba(194,190,194,1);
	box-shadow: 0px 0px 15px 0px rgba(194,190,194,1);
}
.main a{
	text-transform: uppercase;
	color: #000;
	font-size: 32px;
}
.main a:hover img{
	margin-top: 50px;
	transition: 1s;
}
.feature{
	padding: 0px 0px 100px;
}
.feature h2{
	font-size: 45px;
}
.feature .col{
	padding: 30px;
	margin: 20px 10px 0px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(194,190,194,0.5);
	-moz-box-shadow: 0px 0px 15px 0px rgba(194,190,194,0.5);
	box-shadow: 0px 0px 15px 0px rgba(194,190,194,0.5);
	text-transform: capitalize;
}
.feature .col h4{
	font-size: 20px;
	font-weight: 500;
}
.feature .btn{
	margin-top: 50px;
	padding: 15px 70px;
	font-size: 20px;
	text-transform: uppercase;
	background: #111;
	color: #fff;
	font-weight: 600;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(194,190,194,0.8);
	-moz-box-shadow: 0px 0px 15px 0px rgba(194,190,194,0.8);
	box-shadow: 0px 0px 15px 0px rgba(194,190,194,0.8);
}
.popular{
	padding: 0px 0px 120px;
}
.popular h2{
	font-size: 45px;
	text-align: center;
}
.popular a img{
	margin: 40px 0px 30px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(194,190,194,1);
	-moz-box-shadow: 0px 0px 15px 0px rgba(194,190,194,1);
	box-shadow: 0px 0px 15px 0px rgba(194,190,194,1);
}
.popular a:hover img{
	margin-top: 20px;
	transition: 1s;
}
@media only screen and (max-width: 667px) {
	.banner{
		height: 100% !important;
		min-height: 20vh;
	}
	.main{
		padding: 50px 0px;
	}
	.main h2{
		font-size: 25px;
	}
	.main a img{
		margin: 40px 0px 20px;
	}
	.main a:hover img{
		margin-top: 20px;
		transition: 1s;
	}
	.feature{
		padding: 0px 0px 100px;
	}
	.feature h2{
		font-size: 25px;
	}
	.col{
		max-width: 100% !important;
		width: 100% !important;
		flex-grow: 100% !important;
		flex-basis: 100% !important;
	}
	.popular{
		padding-bottom: 50px;
	}
	.popular h2{
		font-size: 25px;
	}
	.popular a img{
		margin: 30px 0px 20px;
	}
}