


/*-------------------CONTACT CONTENT----------------------*/

.wrapper{
	min-height:100%;
	overflow:hidden;
	display:flex;
	flex-direction:column;
}
.contact{
	flex:1 1 auto;
}
.contact-container{
	max-width:830px;
	margin:0 auto;
	padding-left:15px;
	padding-right:15px;
}
.contact-title{
	font-family: 'Merriweather Sans', sans-serif;
	font-size:1.4em;
	font-weight:600;
	color:#038ece;
	line-height:30px;
	max-width:1300px;
	margin:0 auto;
	margin-bottom:30px;
	margin-top:50px;
}
.contact-text{
	font-family: 'Nunito', sans-serif;
	font-size:1.1em;
	font-weight:400;
	color: #453931;
	line-height:20px;
}
.form-container{
	font-family: 'Nunito', sans-serif;
	background-color:#f1f1f0;
	border-radius:5px;
	max-width:830px;
	margin:0 auto;
	padding:20px;
	margin-bottom:80px;
	margin-top:50px;
	color:#453931;
}
input[type=text], select, textarea{
	width:100%;
	padding:12px;
	border:1px solid #ccc;
	border-radius:4px;
	box-sizing:border-box;
	margin-top:6px;
	margin-bottom:16px;
	resize:vertical;
}

button[type=submit]{
	background-color:#d5d3cd;
	font-size:1em;
	padding:10px 40px;
	border:none;
	border-radius:4px;
	cursor:pointer;
	font-family: 'Nunito', sans-serif;
	font-size:1.1em;
	font-weight:600;
	color: #453931;
	letter-spacing: 0.5px;
}
button[type=submit]:hover{
	background-color:#c5c3bd;
}


@media (max-width:768px){
	.contact-title{
	margin-bottom:15px;
	margin-top:25px;
}
	.form-container{
	margin-bottom:30px;
	margin-top:25px;
}
}


textarea{
	height:200px;
	resize:  none;
}

