/**** Reset CSS ****/
article,  aside,  details,  figcaption,  figure,  footer,  header,  hgroup,  main,  nav,  section,  summary {
    display: block;
    margin: 0;
    padding: 0;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, a {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset, img {
    border: none;
    margin: 0;
    padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
}

ol, ul {
    /*list-style: none;*/
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
}

/**** General/Global CSS ****/
* {
    margin:0;
    padding:0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*:focus {
    outline: 0;
}
body {
    font-size: 16px;
    color: #333333;
    font-weight: normal;
    background:#fff;
    font-family: 'Roboto', sans-serif;
}
p {
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 20px;
}
a{
    color: #e41526;
    outline: none;
    border: none;
    text-decoration:none;
    transition: all 0.3s ease 0.1s;
}
a:hover{
    color: #e41526;
    text-decoration:none;
    outline: none !important;
}

a, img, button, i,
input[type="submit"] {
    transition: all 0.3s ease 0.1s;
}

i, em {
    font-style: italic;
}

b, strong, cite {
    font-weight: bold;
}

small {
    font-size: 10px;
}

h1 {
    font-size: 55px;
    color: #e41526;
    line-height: 1.2em;
    font-weight: normal;
    margin-bottom: 20px;
    text-transform: none;
    word-wrap: break-word;
}
h2 {
    font-size: 45px;
    color: #003684;
    line-height: 1.2em;
    font-weight: normal;
    margin-bottom: 20px;
    text-transform: none;
    word-wrap: break-word;
}
h3 {
    font-size: 24px;
    color: #00bbd3;
    line-height: 1.2em;
    font-weight: normal;
    margin-bottom: 10px;
    text-transform: none;
    word-wrap: break-word;
}
h4 {
    font-size: 18px;
    color: #333333;
    line-height: 1.2em;
    font-weight: normal;
    margin-bottom: 10px;
    text-transform: none;  
    word-wrap: break-word;
}
h5 {
    font-size: 16px;
    color: #333333;
    line-height: 1.2em;
    font-weight: normal;
    margin-bottom: 10px;
    text-transform: none;  
    word-wrap: break-word;
}
h6 {
    font-size: 14px;
    color: #333333;
    line-height: 1.2em;
    font-weight: normal;
    margin-bottom: 10px;
    text-transform: none;
    word-wrap: break-word;  
}

blockquote {
    border-left: 5px solid #e41526;
    font-size: 20px;
    font-weight: normal;
    padding: 0 0 0 20px;
    margin: 25px 0;
    line-height: 1.7em
}

blockquote p {
    font-size: 20px;
    line-height: 1.3em;
    font-weight: normal;
}

hr{
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
.txt-white hr.lg{
    border-bottom: 1px solid #fff;
}
iframe{
    max-width: 100% !important;
}
#wrapper {
    max-width: 100%;
    overflow-x: hidden;
}
.clearfix{
    clear: both;
    overflow: hidden;
}
.padding-sec{
    padding: 40px 0;
}
.txt-white,
.txt-white p, .txt-white a,
.txt-white h1, .txt-white h2,
.txt-white h3, .txt-white h4,
.txt-white h5, .txt-white h6{
    color: #fff !important;
}
.txt-white a:hover{
    color: #e41526 !important;
}
.nolink a,
.nolink a:hover{
    color: #fff !important;
    cursor: text;
}
.content ul{
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.content ul:last-of-type{
    margin-bottom: 0;
}
.content ul li{
    font-size: 16px;
    line-height: 1.7em;
    padding-left: 12px;
    background: url(assets/images/blt.png) 0 11px no-repeat;
}
.content ol{
    /*list-style: decimal outside;*/
    padding: 0 0 0 40px;
    margin: 20px 0;
}
.content ol ol{
    /*padding-left: 27px;*/
    margin: 10px 0;
    /*padding: 0;
    list-style-position: inside;*/
}
.content ol li{
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 5px;
}
.text-center{
    text-align: center;
}

/**** Form CSS ****/
input,
select{
    font-size: 16px;
    color: #787c7e;
    display: block;
    width: 100%;
    height: 46px;
    line-height: 44px;
    padding: 0 10px;
    margin-bottom: 0px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}
select{
    /*-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(assets/images/arrow-down.png) calc(100% - 15px) center no-repeat;*/
}
textarea{
    font-size: 16px;
    color: #787c7e;
    display: block;
    width: 100%;
    height: 120px;
    line-height: 1em;
    padding: 10px;
    margin-bottom: 0px;
    background: #fff;
    border: 1px solid #ccc;
    resize: none;
    border-radius: 5px;
}
input[type="submit"]{
    width: auto;
    min-width: 180px;
    cursor: pointer; 
    text-align: center;
    display: inline-block;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    height: 56px;
    line-height: 54px;
    padding: 0 20px;
    text-transform: uppercase;
    background: #02207a;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border: 1px solid #02207a;
    outline: none;
    margin: 0;
    cursor: pointer;
}
input[type="submit"]:hover{
    color: #fff;
    background: #e41526;
    border-color: #e41526;
}

/**** Button CSS ****/
/*.btn,
.btn:visited{
    text-align: center;
    display: inline-block;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    height: 56px;
    line-height: 54px;
    padding: 0 20px;
    text-transform: none;
    background: #02207a;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border: 1px solid #02207a;
    outline: none;
    margin: 10px 20px 0 0;
    cursor: pointer;
}
.btn:hover{
    color: #fff;
}*/

/**** Header CSS ****/
header{
    /*background: url(assets/images/main-banner.jpg) center top no-repeat;*/
    width: 100%;
    /*height: 100vh;*/
    background: url(assets/images/main-banner.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}
#logo{
    width: 100%;
    text-align: center;
    padding: 40px 0;    
}
.hd-wrap{
    height: 254px;
}
#logo.hd-sticky{
    padding: 5px 0 1px;
    background: #fff;
    position: fixed;
    top: 0;
    box-shadow: 0 1px 10px 1px rgba(216, 223, 223, 0.8);
    z-index: 9;
}
#logo.hd-sticky img{
    height: 120px !important;
}
.banner-caption{
    padding: 96px 0 499px;
}
.banner-caption h1{
    font-size: 80px;
    line-height: 1.2em;
    color: #e41526;
    font-weight: normal;
    margin-bottom: 20px;
    text-shadow: 4px 4px 8px white;
}
.banner-caption h2{
    font-size: 45px;
    line-height: 1.2em;
    color: #003684;
    font-weight: normal;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px white;
}
.box-primary{
    padding: 40px 45px 30px;
    background-color: #f34235;
    margin-bottom: 30px;
    transition: all 0.3s ease 0.1s;
}
.box-bg:hover{
    background-color: #7e868c !important;
}
#content{
    padding: 40px 0 20px;
}