@charset "utf-8";

* {
	margin: 0px;
	padding: 0px;
}

/* CSS Document */
.col_left_contact,
.col_right_contact {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	width: 100%;
	display: inline-block;
	float: left;
}

.form_contact {
	border: thin #d9d9d9 solid;
	width: 100%;
	padding: 1%;
	position: relative;
	margin: 20px 0px;
}

.form_contact .title {
	width: 100%;
	line-height: 30px;
	text-align: center;
	margin-bottom: 10px;
}

.form_contact .title p {
	line-height: 30px;
	height: 30px;
	padding: 0px 10px;
	color: #fff;
	font-size: 16px;
	background: #ef0232;
	text-transform: uppercase;
}

.form_contact .col {
	display: table-cell;
	text-align: left;
}

.form_contact .col_1 {
	width: 30%;
	padding: 0px 1%;
	text-align: right;
}

.form_contact .col_2 {
	width: 70%;
	padding: 0px 1%;
	text-align: left;
}

.form_contact .row {
	width: 100%;
	line-height: 40px;
	min-height: 40px;
	display: table;
}

.form_contact .row p {
	font-size: 16px;

}

.form_contact .row p span {
	color: red;
}

.form_contact .row .input {
	min-height: 30px;
	line-height: 30px;
	text-indent: 10px;
	width: 100%;
	border-radius: 5px;
	border: thin solid #ccc;
}

.form_contact .row .area {
	height: 80px;
}

.form_contact .row .button {
	line-height: 35px;
	height: 35px;
	text-align: center;
	color: #fff;
	font-size: 15px;
	background: #ef0232;
	padding: 0px 10px;
	border: none;
	border-radius: 5px;
}

.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) {}