body {
	overflow-x: hidden !important;
}

.hero {
	min-height: 100vh;
	background-image: url("../image/2.png");
	background-size: cover;
	background-position: center;
}

.hero::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.75);
	z-index: 0;
	top: 0;
	left: 0;
}

p {
	text-align: justify;
}

.hero a.btn {
	background-color: transparent;
	transition: 1s;
}

.hero a.btn:hover {
	background-color: white;
}

.product .card img {
	filter: blur(10px);
	transition: .5s;
}

.product .card:hover img {
	filter: blur(0);
}

.hero h1 {
	animation: heroh1 2s ease-in infinite;
}

@keyframes heroh1 {
	0%{
		transform: translateY(-20px);
		color: black;
	}
	50%{
		transform: translateY(0);
		color: blue;
	}
	100%{
		transform: translateY(-20px);
		color: black;
	}
}