.mz-top-banner{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	overflow: hidden;
	padding-bottom: 70px;
	-webkit-box-shadow: inset 0px -20px 10px -10px rgba(0,0,0,0.10);
	-moz-box-shadow: inset 0px -20px 10px -10px rgba(0,0,0,0.10);
	box-shadow: inset 0px -20px 10px -10px rgba(0,0,0,0.10);
}
.mz-top-banner img{
	height: auto;
}
.mz-top-banner.top-added{
	padding-top: 342px;
	margin-top: -342px;
}
.mz-top-banner .top_banner_leaf_image{
	position: absolute;
}
.mz-top-banner.top-added .top_banner_leaf_image{
	top: -350px;
	animation: top-leaf-image var(--top-leaf-image-speed) infinite ease-in-out;
	transform-origin: 0 0;
}
.mz-top-banner .top_banner_leaf_image.leaf-left{
	left: 0;
}
.mz-top-banner .top_banner_leaf_image img{
	max-width: 100%;
	height: auto;
}

@keyframes top-leaf-image {
	0% {
		transform: rotate(-10deg);
	}
	50% {
		transform: rotate(10deg);
	}
	100% {
		transform: rotate(-10deg);
	}
}

@media only screen and (max-width: 767px) {
	.mz-top-banner{
		padding-bottom: 0;
	}
}