@charset "utf-8";
*{
margin:0px;
padding:0px;
}

/* CSS Document */
.col_left_contact{
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	width: 60%;
	display: inline-block;
	float: left;
	padding-right: 2%;
}
.col_right_contact{
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	width: 40%;
	display: inline-block;
	float: right;
}
.form_contact{
	border:thin #d9d9d9 solid;
	width: 100%;
	position: relative;
}
.form_contact .title{
    width: 100%;
    line-height: 30px;
    text-align: center;
    margin-bottom: 10px;
    background: none;
}
.form_contact .title p{
    line-height: 40px;
    height: 40px;
    padding: 0px 10px;
    color: #fff;
    font-size: 16px;
    background: #00b140;
    text-transform: uppercase;
}

.form_contact .col{
	display: inline-block;
	text-align: left;
}
.form_contact .col_1{
	width: 30%;
	padding: 0px 1%;
	text-align: right;
}
.form_contact .col_2{
	width: 100%;
	padding: 0px 3%;
	text-align: left;
}
.form_contact .row{
	width: 100%;
	display: table;
	margin-bottom: 10px;
}
.form_contact .row p{
	font-size: 16px;

}
.form_contact .row p span{
	color: red;
}
.form_contact .row .input{
    min-height: 35px;
    line-height: 35px;
    text-indent: 10px;
    width: 100%;
    background: #f0f0f0;
    border: none;
    border-left: 5px solid #00b140;
}
.form_contact .row .area{
	height: 80px;
}
.form_contact .row .button{
	line-height: 35px;
	height: 35px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	background: #105477;
	text-transform: uppercase;
	padding: 0px 10px;
	border: none;
	cursor: pointer;
}
.form_contact .row label{
	color: red;
	margin-left: 10px;
}

@media screen and (max-width: 750px) {
	.form_contact .row .input,
	.col_left_contact, .col_right_contact{
		width: 100%;
	}
}
@media screen and (max-width: 550px) {
	.form_contact .col_1{
		display: none;
	}
	.form_contact .col_2{
		width: 100%;
	}
}
@media screen and (max-width: 380px) {
	
}