@charset "UTF-8";
/* CSS Document */

.form_wrap input, .form_wrap textarea {
	width: 90%;
	margin-bottom: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right:5%;
	padding-left: 5px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 1.15em;
}
.form_wrap select {
	width: 50%;
	margin-bottom: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: #003399;
	font-size: 1.1em;
}
.form_wrap p {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 1.15em;
	padding-left:20px;
}
.form_wrap h2, .form_wrap h3 {
	padding-bottom:10px !important;
}
.form_wrap label {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 1.15em;
}
.form_wrap {
	margin-bottom:10px
}
.form_wrap input[type=submit] {
    padding:10px 15px; 
    background-color: rgba(239,135,70,1.00);
    color: #fff;
    border:0 none;
    cursor:pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px; 
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    text-transform: uppercase;
    letter-spacing: 4px;
	transition: .3s;
}
.form_wrap input[type=submit]:hover{
	background-color: rgba(135,54,26,1.00);
}
.form_wrap input[type=text], .form_wrap input[type=email] {
    border: 0;
	border-bottom: rgba(239,135,70,1.00) solid 2px;
}
.form_wrap textarea:focus, input:focus{
    outline: none;
}



