@font-face{
	font-family:play;
	src: url(fonts/Play-Regular.ttf);
}

.content .contact{
	width: 100%;
	height: auto;
	line-height: 0px;
	overflow: hidden;
	transition: 2s;
}
.content .contact .contactim{
	height: 300px;
	align-items: center;
	justify-content: center;
	display: flex;
	background-color: white;
	color: black;
	animation: inleft 3s;
}
.content .contact .contactim h2{
	background-color: black;
	border-radius: 10px;
	transform: scale(2.0);
}


.content .contact .form{
	width: 100%;
	height: 1300px;
	opacity: 10%;
}

.content .contact .form.animate{
	animation: inleft 1.5s forwards;
}
@keyframes inleft{
	from{opacity: 0%;}
	to{opacity: 100%;}
}

.content .contact .form iframe{
	width: 100%;
	height: 100%;
	background-color: black;
	line-height: 0px;
	animation: inright 1s;
}
@keyframes inright{
	from{opacity: 0%; left: 1000px}
	to{opacity: 100%; left: 0px}
}