/* Local overrides */

[data-fade-in] {
	opacity: 0;
}

.fade-in-anim {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-duration: 0.9s;
	animation-duration: 0.9s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: var(--global-animation-easing-function);
	animation-timing-function: var(--global-animation-easing-function);
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
	}
	1% {
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

#overview-hero-hero-1-2 {
	transform: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 533px;
}

@media only screen and (max-width: 1068px) {
	#overview-hero-hero-1-2 {
		height: 501px;
	}
}

@media only screen and (max-width: 734px) {
	#overview-hero-hero-1-2 {
		height: 275px;
	}
}
