@keyframes sectionFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes sectionFadeInUp {
	from {
		opacity: 0;
		transform: translateY(100%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade {
	animation: sectionFadeIn 0.8s ease-in-out both;
}

.animate-fade-up {
	animation: sectionFadeInUp 0.8s ease-in-out both;
}

.hover-grow {
	transition: transform 0.3s ease;
}

.hover-grow:hover,
.hover-grow:focus,
.hover-grow:active {
	transform: scale(1.05);
}
