.wow {
	animation: fadeIn 1.5s both;
	-webkit-animation: fadeIn 1.5s both;
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
}

.delay1 {
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
}

.delay2 {
	animation-delay: 1.0s;
	-webkit-animation-delay: 1.0s;
}

.delay3 {
	animation-delay: 1.5s;
	-webkit-animation-delay: 1.5s;
}

#twoo_box {
	position: relative;
	display: flex;
}

#twoo_box .tooleft_box {
	display: flex;
	flex-direction: column;
	width: 50%;
	align-items: center;
	justify-content: center;
}

#twoo_box .tooleft_box video {
	width: 100%;
	height: 100%;
}

#twoo_box .tooright_box {
	display: flex;
	width: 50%;
	flex-direction: column;
	align-items: center;
	padding: 0 10px;
}

@media screen and (max-width: 768px) {
	#twoo_box {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#twoo_box .tooleft_box {
		width: 100%;
		margin-bottom: 15px;
	}

	#twoo_box .tooright_box {
		width: 100%;
		padding: 0;
	}
}