html, body {
    background: #fff;
    height: 100%;
}

@font-face {
    font-family: 'Roboto';
    src: url(fonts/Roboto/Roboto-Regular.ttf);
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url(fonts/Roboto/Roboto-Bold.ttf);
}

@font-face {
    font-family: 'Roboto-Black';
    src: url(fonts/Roboto/Roboto-Black.ttf);
}


@font-face {
    font-family: Darwin;
    src: url(fonts/Darwin/darwin.ttf);
}

@font-face {
    font-family: Darwin-Light;
    src: url(fonts/Darwin/darwin-light.ttf);
}

@font-face {
    font-family: Darwin-Bold;
    src: url(fonts/Darwin/darwin-bold.ttf);
}

@font-face {
    font-family: Gotham;
    src: url(fonts/Gotham/gothamhtf-medium.ttf);
}

@font-face {
    font-family: Gotham-light;
    src: url(fonts/Gotham/gothamhtf-book.ttf);
}

@font-face {
    font-family: Gotham-bold;
    src: url(fonts/Gotham/gothamhtf-bold.ttf);
}

/*html, body, p, li, span, h1, h2, h3, h4, h5, input, select, div, label {
   font-family: 'Gotham', sans-serif;
   color:#53585a;
}*/
h1, h2, h3, h4 {
    font-weight: 500;
    font-family: Roboto, sans-serif;
    line-height: 1.0em;
}

h1 {
    font-size: 76px;
    color: #2167bf;
}

    h1.int {
        font-size: 48px;
        color: #2167bf;
    }

        h1.int + p {
            font-size: 20px;
            width: 100%;
            max-width: 700px;
            margin: 40px auto;
        }

h2 {
    font-size: 48px;
}

    h2.white-onblue {
        font-size: 48px;
        font-weight: 300;
        font-family: Roboto, sans-serif;
        color: #fff;
    }

h3 {
    font-size: 24px;
}

h4 {
    font-size: 24px;
    color: #2167bf;
}

p, span, li, input, select, th, td, a {
    font-size: 14px;
    line-height: 1.4em;
    font-family: Roboto, sans-serif;
}

    p.big {
        font-size: 18px;
        padding: 10px 0;
    }

    p.medium {
        font-size: 16px;
        font-weight: 100;
        padding: 10px 0;
    }

a {
    transition: all .3s;
    cursor: pointer;
    color: #2167bf;
}

    a:hover {
        text-decoration: none;
        color: #fd4500;
    }

img {
    max-width: 100%;
}

section {
}

.container-1300 {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.container-900 {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.container-800 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.container-600 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.header {
    background-color: #fff;
    height: 150px;
    padding-top: 50px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

    .header .logo {
        width: 225px;
        margin-top: 15px;
        float: left;
    }

    .header ul.main {
        float: right;
        list-style: none;
        padding: 0;
        margin: 30px 0 0;
    }

        .header ul.main li {
            display: inline-block;
            text-transform: uppercase;
            padding: 0 20px;
            position: relative;
        }

            .header ul.main li.userlogin {
                border-left: 1px solid #a9a9a7;
                padding-left: 30px;
                margin-left: 10px;
            }

            .header ul.main li:last-child {
                padding-right: 0px;
            }

            .header ul.main li a {
                color: #53585a;
                font-family: Roboto, sans-serif;
                font-size: 14px;
                font-weight: 600;
            }

                .header ul.main li a.active {
                    color: #ccc;
                }

                    .header ul.main li a:hover,
                    .header ul.main li a.active:hover {
                        color: #fd4500;
                    }

    .header .nav {
        float: right;
        font-size: 24px;
        color: #2167bf;
        margin-top: 30px;
        margin-right: 15px;
        cursor: pointer;
        display: none;
    }

        .header .nav:hover {
            color: #fd4500;
        }

    .header.scrolled {
        box-shadow: 0 2px 12px rgba(0,0,0,.2);
    }

    .header ul.main li ul.subnav {
        display: none;
    }

    .header ul.main li:hover ul.subnav {
        display: block;
        position: absolute;
        top: 18px;
        left: 20px;
        width: 250px;
        padding: 0;
        background: #fff;
        box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.15);
        border-radius: 5px;
    }

    .header ul.subnav li {
        display: block;
        text-transform: none;
        padding: 0;
        margin: 0;
        position: relative;
    }

        .header ul.subnav li a {
            color: #53585a;
            font-family: Roboto, sans-serif;
            font-size: 14px;
            font-weight: 400;
            padding: 10px 20px 10px;
            display: block;
        }

            .header ul.subnav li a:hover {
                color: #fd4500;
                background: #f5f5f5;
            }


/* MAIN ------------------------*/
.main {
    min-height: 200px;
    background-position: center top;
    background-repeat: repeat-x;
    margin-top: 150px;
}

    .main h1 {
        color: #2167bf;
        font-family: Roboto, sans-serif;
    }

        .main h1:first-child {
            margin-top: 85px;
        }

        .main h1 b {
            color: #53585a;
            font-family: Roboto-Bold;
            font-weight: 900;
        }

        .main h1 w {
            color: #53585a;
        }

        .main h1.secondline {
            margin-left: 125px;
            padding-bottom: 50px;
        }

.dots {
    position: absolute;
    top: 225px;
    left: 35px;
    z-index: 9px;
    text-align: center;
}

    .dots img {
        width: 77%;
    }

.bg-blue {
    min-height: 650px;
    background-image: url(./images/bg-blue.png);
    background-position: center top;
    background-repeat: repeat-x;
}

    .bg-blue img {
        max-width: 700px;
        margin-top: 25px;
    }

.bg-blue-top {
    min-height: 650px;
    background-image: url(./images/bg-blue-top.png);
    background-position: center top;
    background-repeat: repeat-x;
}


.login {
    background: #fff;
    border-radius: 8px;
    width: 350px;
    height: auto;
    /*position: absolute;*/
    top: 20px;
    right: 0;
    z-index: 99;
    /*margin-top: 70px;*/
    text-align: center;
    padding-top: 15px;
    /*padding-bottom: 30px;*/
    box-shadow: 1px 2px 12px rgba(0,0,0,.2);
}

    .login h3 {
        font-size: 28px;
        font-weight: 300;
        color: #53585a;
        line-height: 1.2em;
        padding: 20px 0;
    }

    .login form {
        text-align: left;
        padding: 20px 30px;
    }

    .login label {
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 500;
        color: #555;
        padding-left: 10px;
    }

    .login input {
        border: none;
        border-bottom: 2px solid #999;
        border-radius: 0 0 0;
        color: #555;
        font-size: 16px;
        font-weight: 400;
    }

        .login input::placeholder {
            color: #ccc;
            font-weight: 300;
        }

    .login a.big {
        font-family: Roboto-Bold;
        font-size: 16px;
        color: #5589f7;
        display: block;
    }

        .login a.big:hover {
            color: #fd4500;
        }

/*.login .btn {
        float: right;
    }*/

.textWrapper {
    max-width: 500px;
}

    .textWrapper p.big {
        font-size: 22px;
        color: #2167bf;
        padding: 10px 20px 20px 0;
    }

    .textWrapper a {
        font-family: 'Gotham-Bold', sans-serif;
        font-size: 18px;
        color: #5589f7;
        padding: 10px 0;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 50px;
    }

        .textWrapper a img {
            width: 13px;
            margin-left: 5px;
            margin-bottom: 8px;
        }

        .textWrapper a:hover {
            color: #fd4500;
        }


.mobile .imgholder {
    text-align: right;
}

    .mobile .imgholder img {
        width: 500px;
        margin-right: 50px;
    }

.mobile .textWrapper {
    margin-left: 65px;
    color: #53585a;
}


.teamwork {
    margin-top: 54px;
}

    .teamwork .imgholder img {
        width: 595px;
        margin-right: 50px;
    }

    .teamwork .textWrapper {
        margin-top: 40px;
        margin-left: 70px;
        color: #53585a;
    }

.everyone {
    margin-top: 150px;
}

    .everyone .textWrapper {
        margin-left: 50px;
        max-width: 530px;
        color: #53585a;
    }

ul.checks {
    list-style: none;
    padding: 0;
    margin: 0 0 0 70px;
}

    ul.checks li {
        font-weight: 600;
        font-size: 22px;
        color: #2167bf;
        padding: 0 0 15px 35px;
        margin: 0;
        background-image: url(./images/check.png);
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 5%;
    }

.bg-blue-bottom {
    min-height: 600px;
    background-image: url(./images/bg-blue-bottom.png);
    background-position: center bottom;
    background-repeat: repeat-x;
    margin-top: 0px;
}

    .bg-blue-bottom h2 {
        color: #fff;
        margin-top: 280px;
    }

    .bg-blue-bottom p.big {
        color: #fff;
        font-size: 22px;
        padding: 10px 20px 20px 0;
    }

    .bg-blue-bottom .btn.orange {
        font-size: 18px;
        margin-top: 35px;
    }


.contact .halves .column {
    padding-right: 70px;
    margin-bottom: 100px;
}

.contact form {
    margin-top: 25px;
}

.contact label {
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #ccc;
    display: block;
    margin-top: 25px;
    padding-bottom: 10px;
}

.contact input {
    border: none;
    border-bottom: 2px solid #999;
    border-radius: 0 0 0;
    color: #555;
    font-size: 16px;
    font-weight: 400;
    padding-left: 0;
}

    .contact input::placeholder {
        color: #ccc;
        font-weight: 300;
        text-transform: uppercase;
    }

.contact textarea {
    border: 2px solid #999;
    width: 100%;
    height: 150px;
}

.contact form .btn {
    float: right;
}


.pricing .priceWrapper {
    background: #fff;
    padding: 40px 30px;
    border: none;
    border-radius: 3px;
    box-shadow: 1px 2px 7px rgba(0,0,0,.33);
    width: 100%;
    max-width: 415px;
    text-align: center;
    z-index: 1;
    position: relative;
}

    .pricing .priceWrapper h4 {
        font-family: Roboto, sans-serif;
        color: #53585a;
        border-bottom: 5px solid #fd4500;
        display: inline-block;
        padding: 0 0 5px;
    }

    .pricing .priceWrapper .pricing-type {
        font-family: Roboto, sans-serif;
        color: #fd4500;
        padding: 10px 0 0;
        font-size: 16px;
    }

    .pricing .priceWrapper .pricing-small {
        color: #53585a;
        padding: 15px 0 0;
        font-size: 11px;
    }

    .pricing .priceWrapper .rate {
        margin: 30px 0 20px;
    }

        .pricing .priceWrapper .rate .percent {
            color: #fd4500;
            font-family: Roboto, sans-serif;
            font-size: 36px;
        }

        .pricing .priceWrapper .rate p {
            color: #fd4500;
            font-family: Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.1em;
        }

    .pricing .priceWrapper ul {
        padding-bottom: 30px;
        margin: 0 20px;
    }

        .pricing .priceWrapper ul li {
            font-family: Roboto, sans-serif;
            font-weight: 600;
            font-size: 16px;
            padding: 6px 0;
        }

            .pricing .priceWrapper ul li i {
                color: #fd4500;
                font-size: 22px;
                display: inline-block;
                margin-right: 5px;
                vertical-align: middle;
                margin-top: -2px;
            }

    .pricing .priceWrapper.custom {
        background: #f2f2f2;
        max-width: 385px;
        z-index: 0;
        position: relative;
    }

        .pricing .priceWrapper.custom h4 {
            border-bottom: 5px solid #5589f7;
        }

        .pricing .priceWrapper.custom ul {
            padding-bottom: 10px;
            margin: 25px 30px;
        }

            .pricing .priceWrapper.custom ul li {
                font-size: 13px;
                font-family: Roboto, sans-serif;
            }

                .pricing .priceWrapper.custom ul li i {
                    color: #5589f7;
                    font-size: 18px;
                }

.pricingIncluded h3 {
    font-family: Roboto, sans-serif;
}

.pricingIncluded ul {
    text-align: left;
    padding: 20px 0px;
    margin: 0;
}

    .pricingIncluded ul li {
        font-size: 18px;
        font-family: Roboto, sans-serif;
        padding-bottom: 12px;
    }

        .pricingIncluded ul li i {
            font-size: 17px;
            color: #ccc;
            margin-right: 6px;
        }

.payment h3 {
    font-family: Roboto, sans-serif;
}

.payment p {
    color: #fff;
}

.payment .info h4 {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    color: #ababab;
}

.payment .info p {
    font-family: Roboto, sans-serif;
    font-size: 13px;
    color: #fff;
    padding: 10px 0;
    max-width: 75%;
}

.payment .numbers .percent {
    font-family: Roboto, sans-serif;
    font-size: 36px;
    color: #ababab;
}

    .payment .numbers .percent span {
        font-family: Roboto, sans-serif;
        font-size: 16px;
        color: #fff;
    }

.payment .numbers p {
    font-family: Roboto, sans-serif;
    font-size: 12px;
    color: #fff;
}

.payment .numbers .quote {
    font-family: Roboto, sans-serif;
    font-size: 20px;
    color: #ababab;
    line-height: 1.1em;
}

.payment .row > div {
    padding: 0 0 20px;
}

.payment .border-bottom {
    border-bottom: 2px solid #f1f1f1 !important;
}

.paymentWhite .info p {
    font-family: Gotham-Light;
    font-size: 13px;
    color: #2167bf;
    padding: 10px 0;
    max-width: 75%;
}

.paymentWhite .numbers .percent {
    font-family: Gotham;
    font-size: 36px;
    color: #2167bf;
}

    .paymentWhite .numbers .percent span {
        font-family: Gotham-Light;
        font-size: 16px;
        color: #2167bf;
    }

.paymentWhite .numbers p {
    font-family: Darwin-Light;
    font-size: 12px;
    color: #2167bf;
}

.paymentWhite .numbers .quote {
    font-family: Gotham;
    font-size: 20px;
    color: #2167bf;
    line-height: 1.1em;
}

.paymentWhite .row > div {
    padding: 0 0 20px;
}

.paymentWhite .border-bottom {
    border-bottom: 2px solid #2167bf !important;
}

.paymentBlue .info h4 {
    font-family: Gotham;
    font-size: 18px;
    color: #fff;
}

.paymentBlue .info p {
    font-family: Gotham-Light;
    font-size: 13px;
    color: #fff;
    padding: 10px 0;
    max-width: 75%;
}

.paymentBlue .numbers {
    text-align: right;
}

    .paymentBlue .numbers .percent {
        font-family: Gotham;
        font-size: 24px;
        color: #fff;
    }

        .paymentBlue .numbers .percent span {
            font-family: Gotham;
            font-size: 18px;
            color: #fff;
        }

    .paymentBlue .numbers .percentSmall {
        font-family: Gotham;
        font-size: 14px;
        color: #fff;
    }

    .paymentBlue .numbers p {
        font-family: Darwin-Light;
        font-size: 12px;
        color: #fff;
    }

    .paymentBlue .numbers .quote {
        font-family: Gotham;
        font-size: 20px;
        color: #fff;
        line-height: 1.1em;
    }

.paymentBlue .row > div {
    padding: 0 0 20px;
}

.paymentBlue .border-bottom {
    border-bottom: 2px solid #fff !important;
}

.legaldoc {
    margin: 0 0 80px;
}

    .legaldoc h4 {
        margin: 20px 0 10px;
    }

    .legaldoc p {
        padding: 10px 0;
    }

    .legaldoc ul {
        padding: 0 30px;
    }

    .legaldoc li {
        padding: 10px 0;
    }

    .legaldoc span {
        padding: 5px 0;
        display: block;
    }

    .legaldoc .highlight {
        color: #2167bf;
        text-transform: uppercase;
        font-family: Gotham-Bold;
    }

.company h3 {
    border-bottom: 5px solid #5589f7;
    display: inline-block;
    padding-bottom: 3px;
}

.company-timeline {
}

    .company-timeline .timeline-date {
        background-image: url(./images/timeline-date.png);
        background-position: 95% top;
        background-repeat: no-repeat;
        height: 143px;
        margin-top: -1px;
    }

    .company-timeline h1 {
        font-family: Darwin-Light;
        font-size: 48px;
        color: #5589f7;
        padding: 45px 60px 0 0;
        float: right;
    }

    .company-timeline p {
        font-size: 16px;
        padding: 43px 30px 0 0;
    }

.bg-blue-company {
    min-height: 650px;
    background-image: url(./images/bg-blue-lg.png);
    background-position: center top;
    background-repeat: repeat-x;
    padding-top: 100px;
}

    .bg-blue-company h3 {
        color: #fff;
        padding-bottom: 25px;
        font-size: 28px;
    }

    .bg-blue-company p {
        color: #fff;
        padding: 15px 0;
        font-size: 16px;
    }

.slogan {
    font-family: 'Darwin', sans-serif;
    font-size: 28px;
    color: #5589f7;
    font-style: italic;
    text-align: center;
    margin-top: 150px;
}

.solutions .row div {
    padding: 0 30px;
    margin: 80px 0;
}

.solutions h4 {
    color: #5589f7;
    font-family: 'Gotham', sans-serif;
    font-size: 24px;
}

.solutions img {
    max-width: 300px;
    margin: 15px 0;
}

.solutions p {
    min-height: 130px;
}


/* FOOTER ------------------------*/
.footer {
    background: #f3f3f3;
    padding: 65px 0 100px;
}

    .footer img {
        width: 50px;
        float: left;
    }

    .footer p {
        float: left;
        font-size: 13px;
        color: #555;
        font-weight: 300;
        width: 220px;
        padding-left: 25px;
        font-family: 'Darwin', sans-serif;
    }

    .footer ul {
        padding: 0;
        margin: 0 20px 0 60px;
        float: left;
        list-style: none;
    }

        .footer ul li h4 {
            color: #53585a;
            padding-bottom: 7px;
        }

        .footer ul li a {
            font-size: 14px;
            font-weight: 300;
            color: #53585a;
        }

            .footer ul li a:hover {
                color: #fd4500;
            }




/* BUTTONS ------------------------*/
.btn {
    /*border: 1px solid #261f65;
      border-radius: 2px;
      background-color: #261f65;
      color: #fff;*/
    background-color: #4e73df;
    border-color: #4e73df;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 4px 18px;
    transition: all .3s;
    display: inline-block;
    width: auto;
}

    .btn:hover {
        border: 1px solid #0548d6;
        background-color: #0548d6;
        color: #fff;
    }

    .btn.secondary {
        border: 1px solid #2167bf;
        border-radius: 3px;
        background-color: transparent;
        color: #2167bf;
    }

        .btn.secondary:hover {
            border: 1px solid #2167bf;
            background-color: #2167bf;
            color: #fff;
        }

    .btn.orange {
        background: #fd4500;
        background: linear-gradient(0deg, rgba(252,1,1,1) 0%, rgba(255,138,0,1) 67%);
        color: #fff;
        border: none;
        font-family: Roboto, sans-serif;
        font-size: 14px;
        font-weight: 800;
        padding: 8px 25px;
    }

        .btn.orange:hover {
            background: linear-gradient(0deg, rgba(252,1,1,1) 100%, rgba(255,138,0,1) 0%);
            border: none;
        }

    .btn.blue {
        background: #1762bf;
        background: linear-gradient(0deg, #5287f4 0%, #1762bf 67%);
        color: #fff;
        border: none;
        font-family: Roboto, sans-serif;
        font-size: 13px;
        font-weight: 600;
        padding: 8px 25px;
    }

        .btn.blue:hover {
            background: #1762bf;
            border: none;
        }


/* GENERAL  */

.blue {
    background-color: #2167bf !important;
}

.blue-light {
    background-color: #5589f7 !important;
}

.orange {
    background-color: #fd4500 !important;
}

.gray-dark {
    background-color: #3c3c3c !important;
}

.gray {
    background-color: #53585a !important;
}

.gray-light {
    background-color: #a9a9a7 !important;
}

.white {
    background-color: #fff !important;
}

.text-blue {
    color: #2167bf !important;
}

.text-blue-light {
    color: #5589f7 !important;
}

.text-orange {
    color: #fd4500 !important;
}

.text-gray-dark {
    color: #3c3c3c !important;
}

.text-gray {
    color: #53585a !important;
}

.text-gray-light {
    color: #a9a9a7 !important;
}

.text-white {
    color: #fff !important;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.small {
    font-size: 11px;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left;
}

.pad0 {
    padding: 0 !important;
}

.padtop0 {
    padding-top: 0 !important;
}

.padbottom0 {
    padding-bottom: 0 !important;
}

.padleft0 {
    padding-left: 0 !important;
}

.padright0 {
    padding-right: 0 !important;
}

.padbot60 {
    padding-bottom: 60px !important;
}

.margin0 {
    margin: 0 !important;
}

.margintop0 {
    margin-top: 0px !important;
}

.margintop10 {
    margin-top: 10px !important;
}

.margintop15 {
    margin-top: 15px !important;
}

.margintop20 {
    margin-top: 20px !important;
}

.margintop30 {
    margin-top: 30px !important;
}

.margintop40 {
    margin-top: 40px !important;
}

.margintop50 {
    margin-top: 150px !important;
}

.margintop60 {
    margin-top: 60px !important;
}

.margintop100 {
    margin-top: 100px !important;
}

.margintop150 {
    margin-top: 150px !important;
}

.margintop165 {
    margin-top: 165px !important;
}

.marginbot0 {
    margin-bottom: 0px !important;
}

.marginbot5 {
    margin-bottom: 5px !important;
}

.marginbot10 {
    margin-bottom: 10px !important;
}

.marginbot15 {
    margin-bottom: 15px !important;
}

.marginbot20 {
    margin-bottom: 20px !important;
}

.marginbot40 {
    margin-bottom: 40px !important;
}

.marginbot50 {
    margin-bottom: 50px !important;
}

.marginbot60 {
    margin-bottom: 60px !important;
}

.marginleft0 {
    margin-left: 0px !important;
}

.marginleft10 {
    margin-left: 10px !important;
}

.marginleft15 {
    margin-left: 15px !important;
}

.marginleft20 {
    margin-left: 20px !important;
}

.marginright0 {
    margin-right: 0px !important;
}

.marginright10 {
    margin-right: 10px !important;
}

.marginright15 {
    margin-right: 15px !important;
}

.marginright20 {
    margin-right: 20px !important;
}

.clickable {
    cursor: pointer
}

@media (max-width:1330px) {
    .header .container-1300 {
        padding: 0 20px;
    }
}

@media (max-width:1280px) {
    .dots {
        display: none;
    }
}

@media (max-width:1100px) {
    .main h1 {
        font-size: 55px;
    }
}

@media (max-width:1050px) {
    .header ul li {
        padding: 0 10px;
    }
}

@media (min-width:920px) {
    .pricing .priceWrapper {
        margin-left: 40px;
    }

        .pricing .priceWrapper.custom {
            margin-left: -32px;
            margin-top: 25px;
        }
}

@media (max-width:920px) {

    .container-900 {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }

    .container-800 {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }

    .container-600 {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }

    .header .logo {
        width: 180px;
        margin-left: 15px;
        margin-top: 20px;
    }

    .header ul.main {
        float: none;
        clear: both;
        margin: 0;
        display: none;
        position: fixed;
        top: 130px;
        bottom: 0;
        left: 0;
        right: 0;
        background: #2167bf;
        z-index: 999;
        opacity: .97;
        padding: 50px 0;
        text-align: center;
    }

        .header ul.main li {
            padding: 10px 0;
            display: block;
        }

            .header ul.main li a {
                font-size: 18px;
                color: #fff;
            }

            .header ul.main li.userlogin {
                border-left: none;
                padding-left: 0px;
                margin-left: 0px;
            }

    .header .btn.secondary {
        color: #2167bf;
        background: #fff;
    }

        .header .btn.secondary:hover {
            background: #fd4500;
            color: #fff;
        }

    .main h1 {
        font-size: 44px;
    }

    .bg-blue img {
        max-width: 650px;
        margin-left: -100px;
    }

    .pricing .col-md-7,
    .pricing .col-md-5 {
        padding: 0 50px;
    }

    .pricing .priceWrapper {
        margin: 30px 0;
        max-width: none;
    }

        .pricing .priceWrapper.custom {
            margin: 0;
            max-width: none;
        }
}

@media (max-width:870px) {
    .main h1.secondline {
        margin-left: 10px;
    }
}

@media (max-width:770px) {
    .header .nav {
        display: block;
    }

    .main {
        text-align: center;
    }

        .main h1 {
            width: 100%;
            margin-left: 0px;
            font-size: 50px;
        }

        .main img {
            width: 90%;
            margin-top: 50px;
        }

    .bg-blue {
        min-height: 500px;
    }

        .bg-blue img {
            max-width: 500px;
            margin-top: 25px;
        }

    .login {
        width: 300px;
        position: static;
        margin: 60px auto 0;
        text-align: center;
        padding-top: 25px;
    }

        .login .btn {
            width: 100%;
        }

        .login .big {
            margin-top: 10px;
        }

    .about {
        text-align: center;
        height: 455px;
    }

        .about img {
            position: static;
            top: 0;
            left: 0;
            width: 94%;
            margin: -25px 0 0 10px;
        }

        .about h2 {
            position: static;
            top: 0;
            left: 0;
            margin-top: 15px;
        }

        .about p {
            position: static;
            top: 0;
            right: 0;
            width: 80%;
            margin: 20px auto 0;
            font-size: 17px;
            font-weight: 300;
        }

    .xpress {
        text-align: center;
    }

        .xpress .align-right,
        .xpress .align-left {
            text-align: center;
        }

        .xpress img {
            width: 200px;
            margin-right: 0;
            text-align: center;
        }

        .xpress p {
            text-align: center;
            width: 80%;
            margin: 20px auto;
        }

    .footer {
        text-align: center;
    }

        .footer img {
            width: 50px;
            float: none;
            display: inline-block;
        }

        .footer p {
            float: none;
            width: 80%;
            padding-left: 0;
            margin: 15px auto;
        }

        .footer ul {
            padding: 0;
            margin: 15px 0 25px;
            float: none;
        }

    .contact .halves {
        padding: 0 20px;
    }

        .contact .halves .column {
            padding-right: 0;
        }

    .payment,
    .paymentWhite,
    .paymentBlue {
        text-align: center;
    }

        .payment .row > div,
        .paymentWhite .row > div,
        .paymentBlue .row > div {
            padding: 0 30px 20px;
        }

        .payment .info p,
        .paymentWhite .info p {
            max-width: 100%;
        }

    .pricingIncluded ul {
        text-align: left;
        padding: 20px 30px;
        margin: 0;
    }

    .paymentBlue .numbers {
        text-align: center;
    }

    .header ul.main li:hover ul.subnav {
        display: block;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        padding: 0;
        background: none;
        box-shadow: 0 0 0;
        border-radius: 5px;
    }

    .header ul.subnav li {
        display: block;
        text-transform: none;
        padding: 0;
        margin: 0;
        position: relative;
    }

        .header ul.subnav li:first-child {
            margin-top: 10px;
        }

        .header ul.subnav li a {
            color: #fff;
            font-family: 'Gotham-light', sans-serif;
            font-size: 14px;
            font-weight: 300;
            padding: 7px 20px 7px;
            display: block;
        }

            .header ul.subnav li a:hover {
                color: #fd4500;
                background: none;
            }

    .company-timeline h1 {
        font-size: 48px;
        padding: 45px 40px 0 0;
        float: right;
    }

    .company-timeline p {
        font-size: 14px;
        padding: 35px 0px 0 0;
    }
}

.validation-summary-errors ul {
    list-style-type: none;
    padding-left: 0px;
}

.disble-anchor {
    color: #6c757d;
    pointer-events: none;
}

.hide-navlink {
    display: none;
}

.xpress-login-btn {
    background-color: white;
    outline: solid 1px #1762bf;
    display: inline-block;
    border-bottom: none !important;
    width: 100%;
    font-family: Roboto, sans-serif;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 8px 25px;
    color: #1762bf !important;
}

.login-other-providers {
    overflow: hidden;
    text-align: center;
    margin: inherit;
}

    .login-other-providers::before,
    .login-other-providers::after {
        background-color: #999;
        content: "";
        display: inline-block;
        height: 1px;
        position: relative;
        vertical-align: middle;
        width: 35%;
    }

    .login-other-providers::before {
        right: 0.5em;
        margin-left: -50%;
    }

    .login-other-providers::after {
        left: 0.5em;
        margin-right: -50%;
    }