.mz-about-section{
	position: relative;
	padding: 77px 0;
	-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);
	overflow: hidden;
}
.mz-about-section .mz-about-text{
	padding: 85px;
	background-color: #000000;
}
.mz-about-section .mz-about-text *{
	color: #FFFFFF;
}
.mz-about-section .mz-about-image{
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50%;
}
.mz-about-section .mz-about-image img{
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translate(0%, -50%);
	max-width: 100%;
	height: auto;
	animation: about-leaf-image var(--about-leaf-image-speed) infinite ease-in-out;
	transform-origin: right center;
}

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

@media only screen and (max-width: 767px) {
	.mz-about-section .row{
		flex-direction: column;
	}
}