/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
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;
}

/* --- layout --- */
html {box-sizing: border-box;}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
	font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: #333;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

/* --- header --- */
.main-header {min-height: 80px;}

.main-header .ce-logo {
    max-height: 60px;
    margin: 10px 0 0 30px;
}

/* --- banner section --- */
.banner-wrapper {
    background: transparent url(../images/landing-bg-01_md.jpg) no-repeat center center;
    background-size: cover;
    min-height: 385px;
    color: white;
}

.banner-wrapper .container {padding: 0 30px 40px 30px;}

.banner-wrapper h1 {
    max-width: 480px;
    font-size: 40px;
    font-weight: 500;
    padding-top: 85px;
    text-shadow: 0 0 5px black, 0 0 5px black;
}

@media only screen and (max-width: 500px) {
    .banner-wrapper h1 {padding-top: 50px;}
}

.banner-wrapper h3 {
    max-width: 480px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 22px;
    padding: 10px 0 44px 0;
    text-shadow: 0 0 5px black, 0 0 5px black;
}

.banner-wrapper .input-txt {
    height: 56px;
    width: 200px;
    padding: 0 14px;
    font-weight: 500;
    color: #3776A8;
    margin: 0 11px 10px 0;
    border: none;
    vertical-align: top;
}

.banner-wrapper ::-webkit-input-placeholder {color: #3776A8;} /* WebKit, Blink, Edge */
.banner-wrapper ::-moz-placeholder {color: #3776A8; opacity: 1;} /* Mozilla Firefox 19+ */
.banner-wrapper :-ms-input-placeholder {color: #3776A8;} /* Internet Explorer 10-11 */
.banner-wrapper ::placeholder {color: #3776A8;}

.banner-wrapper .btn-compare {
    background-color: #3775A7;
    height: 56px;
    width: 200px;
    padding: 0 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    color: white;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    vertical-align: top;
}

.banner-wrapper .btn-compare:hover {background-color: #316996;}

.banner-wrapper .btn-compare span {margin-left: 5px;}

/* --- infographic section --- */
.infographic-wrapper {
    padding: 0 20px;
    text-align: center;
}

.infographic-wrapper h2 {
    font-size: 30px;
    font-weight: 500;
    padding: 36px 0;
}

.infographic-step-item {
    display: inline-block;
    width: 240px;
    padding-bottom: 45px;
}

.infographic-step-item span {
    display: inline-block;
    font-size: 96px;
    font-weight: 500;
    padding: 5px 0 17px 0;
}

.infographic-step-item p {
    font-size: 24px;
    font-weight: 500;
}

.infographic-step-circle {
    background-color: #131D25;
    width: 136px;
    height: 136px;
    color: white;
    text-align: center;
    margin: 0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.infographic-step-circle .fa {line-height: 136px;}

@media only screen and (max-width: 700px) {
    .infographic-step-item {padding-bottom: 50px;}
    .infographic-step-item span {
        padding-bottom: 5px;
        line-height: 96px;
    }
}

/* --- footer --- */
.main-footer {
    background-color: #333;
    min-height: 88px;
    padding: 0 30px;
}

.main-footer .logo-img {
    margin: 17px 22px 0 0;
    vertical-align: middle;
}

.main-footer .footer-links {
    padding-top: 25px;
    font-size: 12px;
    font-weight: 500;
    color: #ACAAA0;
    text-align: right;
    float: right;
}

.main-footer .footer-links p {padding-bottom: 5px;}

.main-footer .footer-links span {
    display: inline-block;
    margin: 0 8px;
    vertical-align: top;
}

.main-footer .footer-links a {
    font-family: 'Oswald', sans-serif;
    color: #ACAAA0;
    text-decoration: none;
    text-transform: uppercase;
}

.main-footer .footer-links a:hover {text-decoration: underline;}

@media only screen and (max-width: 600px) {
    .main-footer {text-align: center;}
    .main-footer .footer-links {
        padding-bottom: 25px;
        text-align: center;
        float: none;
    }

}

@media only screen and (max-width: 472px) {
    .banner-wrapper {
      background-position: -400px;
    }
