.contact{
	margin-top: 80px;
	width: 100vw;
	color: #12365E;	
	padding-bottom: 150px;
}

.contact .title{
	background: url('../image/team.jpg'), rgba(0,0,0,0.6);
	background-size: cover;
	background-position: center;
	width: 100vw;
	height: 300px;	
	display: flex;
	align-items: center;
	padding-left: 100px;
}

.contact .title h1{
	color: white;
	font-size: 35px;
}

.contact .subtitle{
	text-align: center;
	margin: 50px 0 80px 0; 
	font-size: 25px;
}

.contact .addr-form{
	display: flex;
	justify-content: space-around;
	
}

.contact .addr-form .case{
	width: 30vw;
	background-color: white;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	padding: 30px;
}

.contact .addr-form h3{
	text-align: center;
	text-decoration: underline;
	margin-bottom: 30px;
}

.contact .addr-form .addr p{
	font-size: 16px;
	display: flex;
	align-items: center;
	margin: 10px 0 10px 0;
}

.contact .addr-form .addr p img{
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.contact .addr-form .contact-form form .form-group{
	margin: 10px 0 10px 0;
}

.contact .addr-form .contact-form form input{
	width: 100%;
	height: 35px;
	padding: 5px;
	font-size: 16px;
}

.contact .addr-form .contact-form form textarea{
	min-width: 100%;
	max-width: 100%;
	min-height: 100px;
	max-height: 100px;
	padding: 5px;
	font-size: 16px;
}

.contact .addr-form .contact-form form .submit{
	border: 0;
	cursor: pointer;
	color: white;
	background-color: #ec4e4f;
}

@media (max-width:768px)
{
	.contact{
		margin-top: 0;
		padding-bottom: 100px;
	}
	
	.contact .title{
		padding-left: 20px;
		height: 200px;	
	}
	
	.contact .title h1{
		font-size: 30px;
		text-align: center;
	}
	
	.contact .subtitle{
		font-size: 20px;
		margin-bottom: 30px;
	}
	
	.contact .addr-form{
		flex-direction: column;
		align-items: center;
	}
	
	.contact .addr-form .case{
		width: 90vw;
		margin: 20px 0 20px 0;
	}
	
	.contact .addr-form .addr p{
		font-size: 14px;
	}
	
	.contact .addr-form .addr p img{
		width: 28px;
		height: 28px;
		margin-right: 5px;
	}
	
	.contact .addr-form .contact-form form input{
		height: 50px;
		font-size: 14px;
	}
	
	.contact .addr-form .contact-form form textarea{
		min-height: 150px;
		max-height: 150px;
		font-size: 14px;
	}
	
	
}