body {
	font-family: "Poppins", sans-serif !important;
	font-size: 1.2rem;
	color: #363636;
	overflow-x: hidden;
}
section {
	padding: 100px 0;
}
img {
	max-width: 100%;
}
a {
	color: #3ca6db;
}
a:hover {
	color: #3ca6db;
	text-decoration: none;
	opacity: 0.9;
}

.hero {
	padding: 20px 20px 100px 20px;
	background: rgb(105, 100, 159);
	background: linear-gradient(
		170deg,
		rgba(105, 100, 159, 1) 0%,
		rgba(179, 124, 178, 1) 100%
	);
	color: #fff;
	font-family: "Quicksand", sans-serif;
}
.hero h1 {
	font-size: 3.75rem;
}
header {
	margin-bottom: 100px;
}
.menu-item {
	font-family: "Quicksand", sans-serif;
	font-size: 1.1rem;
	color: #e2f2fc;
}
.menu-item:hover {
	opacity: 0.8;
	color: #e2f2fc;
	text-decoration: none;
}

.section-title {
	font-size: 2.25rem;
	text-transform: uppercase;
	color: #636a96;
	text-align: center;
	font-weight: 500;
	margin-bottom: 4rem;
}
.section-title-blue {
	color: #3080a9;
}

.product-box {
	color: #636a96;
	margin-bottom: 3rem;
	transition: all 0.3s ease-in-out;
	height: 90%;
	display: flex;
	flex-direction: column;
}
.product-box:hover {
	text-decoration: none;
	color: #636a96;
	transform: scale(1.03);
}
.product-box img {
	width: 100%;
}
.product-name {
	margin-top: 1rem;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	font-weight: 600;
	line-height: normal;
	min-height: 4rem;
}
.product-description {
	margin-bottom: 1.5rem;
	min-height: 7.5rem;
	font-size: 1rem;
}
.product-box > div {
	margin-top: auto;
}

.btn {
	border-radius: 0;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 1.25rem;
	padding: 0.75rem;
}
.btn-primary {
	background-color: #b35e93;
	border: none;
}
.btn-primary:hover {
	opacity: 0.9;
	background-color: #b35e93;
}

footer {
	padding: 100px 0;
	background-color: #69649f;
}
footer p {
	color: #c3e4fa;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1rem;
}
.footer-menu-item {
	color: #c3e4fa;
	font-weight: 700;
	text-transform: uppercase;
}

.btn-more-offers {
	/* background: linear-gradient(270deg, #654ea3, #eaafc8); */
	background: linear-gradient(270deg, #70b35e, #5eb3b1);
	background-size: 400% 400%;
	-webkit-animation: MoreOffers 3s ease infinite;
	-moz-animation: MoreOffers 3s ease infinite;
	animation: MoreOffers 3s ease infinite;
}

@-webkit-keyframes MoreOffers {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@-moz-keyframes MoreOffers {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes MoreOffers {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@media (max-width: 768px) {
	header {
		margin-bottom: 25px;
	}
	.hero {
		padding: 20px;
	}
	.hero h1 {
		font-size: 2rem;
	}
}
