@charset "utf-8";
.site-form {
    width: 100%;
    margin:3.5rem 0 0;
}
.site-form form {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
}
.site-form h2 {
    font-weight: 600;
    text-transform: uppercase;
}
.site-form h3 {
    width: 100%;
    font-size: 1.4em;
    margin: 12px 0 5px;
    text-transform: uppercase;
    font-weight: 700;
}
.site-form h4 {
    width: 100%;
    font-size: 1.3em;
    margin: 12px 0 10px;
    text-align: left !important;
    font-weight: 500;
}
.site-form h5 {
    width: 100%;
    font-size: 1.2em;
    margin: 12px 0 5px;
    text-align: left !important;
    font-weight: 500;
}
.site-form hr {
    width: 90%;
    margin: 12px 0 20px;
    border-top: 1px #c7c7c7 solid;
}
.site-form .red {
    color: #D8090D;
}
.site-form label {
    margin: 0 0 0 8px;
    font-size: 1em;
    font-weight:  500;
    color: #353535;
}
.site-form p {
    margin: 0;
    font-size: 1.05em;
    line-height: 1.5;
    color: #555;
}
.fieldsWrap {
    margin: 0 0.5%;
}
.fieldsFlex {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
}
.singleFields {
    width: 99%;
}
.dualFields {
    width: 49%;
}
.thirdFields {
    width: 32.3%;
}
.site-form .instructions {
    font-size: 12px;
    color: #5b5b5b;
    margin: 6px 0;
}
.site-form .note {
    width: 100%;
    font-size: 12px;
    font-style: italic;
    color: #5b5b5b;
    text-align: center;
    margin: 0;
}
.site-form .disclaimer {
    width: 100%;
    font-size: 20px;
    line-height: 1.5;
    font-style: italic;
    color: #1B1B1B;
    margin: 0 0 18px 28px;
}
.site-form input[type="text"],
.site-form input[type="email"],
.site-form input[type="number"],
.site-form input[type="time"],
.site-form input[type="date"],
.site-form input[type="month"],
.site-form select {
    width: 100%;
    height: 50px;
    margin: 6px 0 20px;
    padding: 15px 20px;
    font-size: 14px;
    color: #555;
    border: 1px #ccc solid;
    background-color: #fbfbfd;
    border-radius:8px;
    box-sizing: border-box;
}
.site-form input[type="date"] {
    padding: 11px 10px;
}
.site-form input[type="text"]:focus,
.site-form input[type="email"]:focus,
.site-form input[type="number"]:focus,
.site-form input[type="time"]:focus,
.site-form input[type="date"]:focus,
.site-form input[type="month"]:focus,
.site-form select:focus {
    border: 1px #ccc solid;
    background-color: #f9f9f9;
}
.site-form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
    height: 180px;
    margin: 6px 0 20px;
    font-size: 15px;
    border: 1px #ccc solid;
    background-color: #fbfbfd;
    border-radius: 8px;
    font-family: roboto, sans-serif;
}
.site-form textarea:focus {
    background-color: #f9f9f9;
}
.site-form .checkFields {
    display: flex;
    flex-flow: row wrap;
    margin: 6px 0 20px;
}
.site-form .checkFields .checkbox {
    margin: 0 8px 8px;
    padding: 0;
    color: #4D4D4D;
}
.site-form .checkFields .checkbox label {
    margin: 0;
    font-size: 0.95em;
    text-transform: none;
}
.site-form input[type="submit"] {
    margin: 20px auto 10px;
    padding: 20px 50px;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
	text-transform:uppercase;
    text-align: center;
    color: #f1f1f1;
    border: none;
    border-radius:20px;
    background: #0a0e2b;
    transition: all 1s;
    -webkit-appearance: none;
}
.site-form input[type="submit"]:hover {
    letter-spacing: 0.5px;
	background:#626577;
    cursor: pointer;
	transform: scale(1.05);
    -webkit-appearance: none;
}

.site-form input[type="submit"]:focus {
	color:#fff;
	background:#000;
}

.CaptchaPanel {width: 100%; margin: 12px auto 0 auto !important; padding: 10px 0 !important;}
.CaptchaImagePanel {padding: 5px 0 10px 0 !important;}
.CaptchaMessagePanel {font-weight: 100;}
img.CaptchaImage {margin: 0 auto;}
.CaptchaWhatsThisPanel a {color: #000;}
.CaptchaAnswerPanel input {padding: 12px 0; text-indent: 12px; box-sizing: border-box; border: 1px #ccc solid; background-color: #fff;}








.quick-search {
    position: relative;
    z-index: 5;
    width:100%;
	max-width:680px;
    margin: 2rem auto 0 0;
	padding:0;
}

form.search-form {
	position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
	border-radius: 15px;;
}
form.search-form::before {
	content: "\f002";
    position: absolute;
    z-index:2;
    top: 29px;
    left: 3.5%;
    font-size: 14px;
   
    color: #141a4c;
	-webkit-appearance: none;
	font-family:FontAwesome;
}


.search-form input[type="text"] {
	z-index:1; 
    width: calc(100% - 133px);
    height: 63px;
    margin: 5px 0;
	padding:15px 8%;
    font-size:16px;
    line-height: 1;
    font-weight: 700;
	text-transform:uppercase; 
    color: #141a4c;
    box-sizing: border-box;
	border-radius: 0;
    border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
    border:0;
	border-bottom:3px #141a4c solid;
    background: #fff;
    font-family: roboto, sans-serif !important;
}

.search-form input[type="text"]:focus{
   border-bottom:3px #626577 solid;
}
.search-form input[type="submit"] {
    position: relative;
    z-index: 1;
    cursor: pointer;
    width: 133px;
    height: 63px;
    margin: 0;
    padding: 0;
    font-size: 14px;
	font-weight: 800;
    color: #fff;
    border: none;
    border-radius: 0;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
    transition: all 0.2s ease-in-out;
    -webkit-appearance: none;
	background:#141a4c;
}
.search-form input[type="submit"]:hover {color:#b8bad0;}
.search-form input[type="submit"]:focus {color:#626577;}


@media screen and (max-width: 1200px) {
    .search-section {
        width: 90%;
    }
	
	

}
@media screen and (max-width: 1024px) {
    .sub-main .site-form {
        width: 100%;
        margin: 4em 0 0;
    }
    .fieldsWrap {
        margin: 0;
    }
    .singleFields {
        width: 100%;
    }
    .dualFields {
        width: 100%;
    }
    .thirdFields {
        width: 100%;
    }
    .site-form .checkFields .checkbox {
        width: calc(100% - 16px);
    }


	
}


@media screen and (max-width: 768px) {

}