.wow {
	animation-name: fadeInDown;
	-webkit-animation-name: fadeInDown;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
	animation-duration: 1s;
	-webkit-animation-duration: 1s;	
}

#articleInfo7 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#articleInfo7 .photoBox {
	width: 45%;
	animation-name: fadeInLeft;
	-webkit-animation-name: fadeInLeft;
	border-radius: 55px;
	overflow: hidden;
}

#articleInfo7 .photoBox img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
#articleInfo7 .info {width: 50%;}

#articleInfo7 .info h3 {
	position: relative;
	padding: 0;
	font-size: 55px;
	color: #eee;
	letter-spacing: 3px;
	line-height: 120%;
	margin-bottom: 30px;
}

#articleInfo7 .info:hover h3 {
	animation: animatedIcon 1s;
	-webkit-animation: animatedIcon 1s infinite linear;
	-moz-animation: animatedIcon 1s infinite linear;
	-ms-animation: animatedIcon 1s infinite linear;
	-o-animation: animatedIcon 1s infinite linear;
}

#articleInfo7 .info p {
	font-size: 17px;
	animation-name: fadeInRight;
	-webkit-animation-name: fadeInRight;
	line-height: 200%;
	text-align: justify;
}

#articleInfo7 .info article {
	margin: 30px 0 10px 20px;
	line-height: 180%;
	animation-name: fadeInUp;
	-webkit-animation-name: fadeInUp;
}

@media screen and (max-width: 1024px) {
	#articleInfo7 .photoBox{width:100%;}
	#articleInfo7 .info{width:100%;margin-top: 20px;}
	#articleInfo7 .photoBox iframe{
    height: 300px;
}
}

@media screen and (max-width: 768px) {
	#articleInfo7 .photoBox {
		position: relative;
		width: 100%;
	}
	#articleInfo7 .info {
		position: relative;
		margin-left: 0;
		padding: 0;
		background: none;
	}
	#articleInfo7 .info h3 {
		left: 0;
		text-align: right;
	}
}
@media screen and (max-width: 480px) {
	#articleInfo7 .info {
		margin-top: 0;
	}
	#articleInfo7 .info h3 {
		text-align: left;
		font-size: 30px;
		margin-top: 20px;
		margin-bottom: 10px;
	}
	#articleInfo7 .info article {
		margin-left: 0;
	}
	@keyframes animatedIcon { 
		0%{ padding: 20px 0;}
		50%{ padding: 0 0 40px; }
		100%{ padding: 20px 0; }
	}
	@-o-keyframes animatedIcon { 
		0%{ padding: 20px 0;}
		50%{ padding: 0 0 40px; }
		100%{ padding: 20px 0; }
	}
	@-webkit-keyframes animatedIcon { 
		0%{ padding: 20px 0;}
		50%{ padding: 0 0 40px; }
		100%{ padding: 20px 0; }
	}
	@-moz-keyframes animatedIcon { 
		0%{ padding: 20px 0;}
		50%{ padding: 0 0 40px; }
		100%{ padding: 20px 0; }
	}
	@-ms-keyframes animatedIcon { 
		0%{ padding: 20px 0;}
		50%{ padding: 0 0 40px; }
		100%{ padding: 20px 0; }
	}
}