/* CSS RESET START */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clearfix {
    display: inline-block;
}

/* start commented backslash hack \*/
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

/* close commented backslash hack */
/* CSS RESET END */

body {
    font-family: Tahoma, Verdana, Segoe, sans-serif;
}

body * {
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
}

header {
    height: 150px;
    position: absolute;
    width: 100%;
}

header .logo {
    height: 100px;
    width: 100%;
}

header .logo img {
    margin-top: 28px;
    margin-left: 28px;
}

header .line {
    background-color: #00395a;
    border-top: 1px solid #bfcdd6;
    height: 50px;
    width: 100%;
}

main {
    width: 100%;
    min-height: 100%;
    padding: 185px 30px 85px;
    height: auto;
	max-width: 1280px;
margin: 0 auto;
}

main h1 {
    text-transform: uppercase;
    font-weight: bold;
    color: #00395A;
    font-size: 24px;
    margin-bottom: 9px;
    line-height: 30px;
}

main h2 {
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    margin-top: 20px;
}

main .text {
    line-height: 18px;
}

main .steps {
    display: inline-block;
}

main .steps .step {
    float: left;
    width: 32%;
    margin: 0 1%;
}

main .steps .step:first-child {
    margin-left: 0;
}

main .steps .step:last-child {
    margin-right: 0;
}

main .steps .step .number {
    background-color: #f89628;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    width: 35px;
    height: 33px;
    display: block;
    text-align: center;
    line-height: 33px;
    float: left;
}

main .steps .step .text {
    display: block;
    padding-left: 55px;
}

main .form-row {
    margin-top: 30px;
    margin-bottom: 30px;
}

	main .form-row .form-column {
		color: #00395A;
		width: 32%;
		display: block;
		float: left;
		margin: 0 1.0%;
	}

	main .form-row .form-column.double{
		width: 66%;
		margin: 0 1.0%;
	}
main .form-row .form-column.disabled {
    color: #EBEFF1;
}

main .form-row .form-column:first-child {
    margin-left: 0;
}

main .form-row .form-column:last-child {
    margin-right: 0;
}

main .form-row .form-column input {
    border: 1px solid #00395A;
    color: #00395A;
    height: 40px;
    width: 100%;
    padding-left: 12px;
    margin-top: 8px;
    margin-bottom: 5px;
    outline: none;
    background: none;
}

main .form-row .form-column input.input-validation-error {
	border-color: #E30613;
    color: #E30613;
}

main .form-row .form-column input:disabled {
    border: 1px solid #EBEFF1;
    color: #EBEFF1;
}

main .form-row .form-column .description {
    font-size: 10.5px;
    outline: none;
}

main form input[type=submit] , a.btn{
    width: 23%;
    height: 40px;
    border: none;
    background-color: #00395A;
    color: #fff;
    font-weight: bold;
    /*font-family: Verdana, Segoe, sans-serif;*/
    cursor: pointer;
}

a.btn {
	display: inline-block;
text-align: center;
line-height: 40px;
text-decoration: none;
}

main form input[type=submit]:disabled {
    background-color: #EBEFF1;
    cursor: default;
}

main form .send-confirm-code {
    float: left;
}

main form .send {
    float: right;
}

main .faq {
    margin-top: 50px;
}

footer {
    background-color: #d8d8d8;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    
    text-align: left;
    width: 100%;
    bottom: 0;
    font-size: 12px;
}

.validation-summary-errors {
	margin-top: 30px;
	border: 1px solid #E30613;
	padding: 20px;
	padding-bottom: 10px;
	color: #E30613;
}
.validation-summary-errors ul{}
.validation-summary-errors ul li {
	margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
    main .form-row .form-column {
        width: 100%;
        margin: 10px 0;
    }main .form-row .form-column.double {
        width: 100%;
        margin: 10px 0;
    }
    main form input[type=submit] {
        width: 100%;
        margin: 10px 0;
    }
    main .steps .step {
        width: 100%;
        margin: 10px 0;
    }
    main .steps .step:first-child {
        margin-top: 0;
    }
}