.title_contact {
	text-align: center;
	color: #333;
	text-transform: capitalize;
	font-family: RobotoBold;
	font-size: 25px;
	padding: 0 0 5px 0;
	margin: 15px 0 20px;
	position: relative;
}
.title_contact:after{
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: #ccc;
	border-radius: 30px;
}
.form_contact{
	width: 60%;
	position: relative;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 30px 0;
}

.form_contact_flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.form_contact input, .form_contact textarea {
	display: block;
	box-sizing: border-box;
	margin-bottom: 10px;
	padding: 4px;
	width: calc(50% - 5px);
	height: 40px;
	border: 1px solid #ccc;
	font-weight: 400;
	transition: 0.2s ease;
	background: #ebf9ff;
	border-radius: 25px;
	text-indent: 10px;
	font-family: 'RobotoRegular';
	font-size: 13px;
	color: #000;
	box-shadow: 2px 2px 1px #0091CF;
}
.form_contact input::-webkit-input-placeholder, .form_contact textarea::-webkit-input-placeholder{
	font-size: 13px;
	color: #000;
}
.form_contact input:focus, .form_contact textarea:focus {
	outline: 0;
	border: none;
	box-shadow: 2px 2px 1px #1282fc;
}
.form_contact_flex input:focus{
	box-shadow: 2px 2px 1px #1282fc;
}
.form_contact textarea {
	width: 100%;
	height: 100px;
	resize: none;
	border-radius: 10px;
}
.btn_form_contact {
	text-align: center;
	justify-content: center;
	margin: 10px 0 ;
}
.btn_form_contact input[type='submit']{
    width: 130px;
    height: 40px;
    margin: 0 5px;
    text-indent: 0;
    background: #83D30C;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    border: none;
    box-shadow: 2px 2px 1px #8a8a8a;
}
.btn_form_contact input[type='button']{
    width: 130px;
    height: 40px;
    margin: 0 5px;
    text-indent: 0;
    background: #0091CF;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    border: none;
    box-shadow: 2px 2px 1px #8a8a8a;
}

.btn_form_contact input:hover{
	transform: translateY(-5px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}