.online-form{
	margin-top: 80px;
	width: 100vw;
	color: #12365E;	
	padding-bottom: 50px;
	
	
}

.online-form .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;
}

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

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

.online-form .form-block{
	width: 100vw;
	margin-top: 50px;
}

.online-form .form-block form{
	width: 90vw;
	margin: auto;
	background-color: white;
	padding: 50px;
}

.online-form .form-block form .form-group{
	margin: 30px 0 30px 0;
	display: flex;
	flex-direction: column;
}

.online-form .form-block form .form-group label{
	font-weight: bold;
	font-size: 18px;
}

.online-form .form-block form .form-group label span{
	font-size: 14px;
	font-style: italic;
}

.online-form .form-block form input, .online-form .form-block form select{
	width: 100%;
	height: 45px;
	padding: 10px;
	font-size: 18px;
}

.online-form .form-block form textarea{
	min-width: 100%;
	max-width: 100%;
	min-height: 200px;
	max-height: 200px;
	padding: 10px;
	font-size: 18px;
	
}

.online-form .form-block form .submit{
	color: white;
	border: 0;
	border-radius: 0;
	background-color: #ec4e4f;
	cursor: pointer;
	
}


@media (max-width:768px)
{
	.online-form{
		margin-top: 0;
		
	}
	
	.online-form .title{
		padding-left: 5px;
		height: 200px;	
	}

	.online-form .title h1{
		font-size: 30px;
		text-align: center;
	}
	
	.online-form .subtitle{
		font-size: 20px;
		margin-bottom: 30px;
	}
	
	.online-form .form-block{
		margin-top: 25px;
	}
	
	.online-form .form-block form{
		width: 95vw;
		padding: 10px;
	}
	
	
}