.contact{
	position: relative;
	min-height: 100vh;
	padding: 45px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-size: cover;
	/*background: url(bg.jpeg);*/
	/*background-image: linear-gradient(to bottom right, #bdc3c7 , #2c3e50);*/
	/*background: #659DBD;*/
	/*background-color: #5f6368;*/
}
/*
.contact .content{
	max-width: 800px;
	text-align: center;
}

.contact .content h2{
	font-size: 36px;
	font-weight: 500;
}*/

.contact .container{
	/*width: 80%;
	margin: 50px auto;*/
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
 	/*margin-top: 30px;*/
}

.contact .container .contactInfo{
	width: 40%;
	display: flex;
	flex-direction: column;
}

.contact .container .contactInfo .outerbox .box{
	position: relative;
	padding: 10px 0;
	display: flex;
}

.contact .container .contactInfo .outerbox .box .icon{
	min-width: 60px;
	height: 60px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 22px;
}

.contact .container .contactInfo .outerbox .box .icon:hover{
	background: #00bcd4;
}

.contact .container .contactInfo .outerbox .box .text{
	display: flex;
	flex-direction: column;
	margin-left: 20px;
	font-size: 16px;
	/*color: #fff;*/
	font-weight: 300;
}

.contact .container .contactInfo .outerbox .box .text h3{
	font-weight: 500;
	/*color: #00bcd4;*/
}

.contact .container .contactInfo iframe{
	margin-top: 20px;
	border: 5px solid #00bcd4;
	border-radius: 5px;
	width: 75%;
	height: 280px;
}

.contact .container .contactForm{
	width: 35%;
	padding: 40px;
	background: #fff;
	border-radius: 10px;
}

.contact .container .contactForm h2{
	font-size: 30px;
	/*color: #333;*/
	font-weight: 500;
}

.contact .container .contactForm .inputBox{
	position: relative;
	width: 100%;
	margin-top: 10px;
}

.contact .container .contactForm .inputBox input,
.contact .container .contactForm .inputBox textarea{
	width: 100%;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	border: none;
	border-bottom: 2px solid #333;
	outline: none;
	resize: none;
}

.contact .container .contactForm .inputBox span{
	position: absolute;
	left: 0;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	pointer-events: none;
	transition: 0.5s;
	/*color: #666;*/
}

.contact .container .contactForm .inputBox textarea:focus~ span,
.contact .container .contactForm .inputBox input:focus~ span,
.contact .container .contactForm .inputBox textarea:valid~ span,
.contact .container .contactForm .inputBox input:valid~ span{
	/*color: #e91e63;*/
	font-size: 12px;
	transform: translateY(-20px);
}

.contact .container .contactForm .inputBox input[type="submit"]{
	width: 100px;
	background: #00bcd4;
	color: #fff;
	border: none;
	cursor: pointer;
	padding: 7px;
}

#status2{
	padding: 10px;
	margin: 0 auto;
	text-align: center;
	justify-content: center;
	border-radius: 8px;
}

#status2.success{
	background-color: green;
	color: white;
	animation: status 4s ease forwards;
}

#status2.error{
	background-color: red;
	color: white;
	animation: status 4s ease forwards;
}

@keyframes status{
	0%{
		opacity: 1;
		pointer-events: all;
	}
	90%{
		opacity: 1;
		pointer-events: all;
	}
	100%{
		opacity: 0;
		pointer-events: none;
	}
}

@media(max-width: 1000px){
	.contact .container .contactInfo iframe{
		width: 85%;
	}
	.contact .container .contactForm{
		width: 45%;
	}
}

@media(max-width: 750px){
	.contact .container{
		width: 85%;
		display: flex;
		flex-direction: column;
	}
	.contact .container .contactInfo{
		width: 100%;
		justify-content: center;
		align-items: center;
	}
	.contact .container .contactInfo iframe{
		width: 100%;
	}
	.contact .container .contactForm{
		width: 100%;
		margin-top: 40px;
		/*margin-bottom: 0px;*/
		
	}
}

@media(max-width: 500px){
	.contact{
		padding: 20px 0px;
	}
	.contact .container .contactForm{
		margin-top: 35px;
		padding: 30px;
	}

	.contact .container .contactForm h2{
		font-size: 24px;
	}

	.contact .container .contactForm .inputBox input,
	.contact .container .contactForm .inputBox textarea{
		font-size: 15px;
	}

	.contact .container .contactForm .inputBox span{
		font-size: 15px;
	}
	.contact .container .contactInfo .outerbox .box .icon{
		/*font-size: 13px;*/
		min-width: 50px;
		height: 50px;
	}
}

@media(max-width: 300px){
	.contact{
		padding: 10px 0px;
	}
	.contact .container .contactForm{
		margin-top: 20px;
		padding: 15px;
	}

	.contact .container .contactForm h2{
		font-size: 15px;
	}

	.contact .container .contactForm .inputBox input,
	.contact .container .contactForm .inputBox textarea{
		font-size: 13px;
	}

	.contact .container .contactForm .inputBox span{
		font-size: 13px;
	}
	.contact .container .contactInfo .outerbox .box .text{
		font-size: 13px;
	}
	.contact .container .contactInfo .outerbox .box .icon{
		/*font-size: 13px;*/
		min-width: 30px;
		height: 30px;
	}
}