.contact_us{
	color: white;
	width: 100vw;
	background-color: #2d5883;
	padding: 50px 100px 50px 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;	
}

.contact_us .title{
	font-size: 23px;
	margin-bottom: 25px;
}

.contact_us .subtitle{
	font-size: 35px;
	margin-bottom: 50px;

}


.contact_us form{
	width: 90vw;
}

.contact_us form .form-group{
	margin: 15px 0 15px 0;
}

.contact_us form input{
	color: #3d3d3d;
	width: 100%;
	height: 40px;
	padding: 0 10px 0 10px;
	font-size: 18px;
	border: 0;
	
}

.contact_us form .text-zone{
	background-color: white;
}

.contact_us form textarea{
	min-width: 100%;
	max-width: 100%;
	min-height: 200px;
	max-height: 200px;
	padding: 10px;
	font-size: 18px;
	background-color: white;
	color: #3d3d3d;
}

.contact_us form .submit{
	color: white;
	background-color: #ec4e4f;
	cursor: pointer;
}

@media (max-width:768px)
{
	.contact_us{
		padding: 20px;
		align-items: normal;
		
	}
	
	.contact_us .title{
		font-size: 20px;
	}
	
	.contact_us .subtitle{
		font-size: 25px;
		margin-bottom: 30px;
	}
	
	.contact_us form{
		margin: auto;
		width: 90vw;
	}
	
	.contact_us form input{
		font-size: 16px;
		background-color: white;
	}
	
	.contact_us form textarea{
		font-size: 16px;
		background-color: white;
	}
}