/* Table of Content
==================================================
	#Font-Face
	#Site Styles
	#Media Queries */

/* #Font-Face
================================================== */


/* #Site Styles
================================================== */

/* ### general ### */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #000;
}

body {
    background: #f0f3f6;
}

input,
select,
textarea {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #000;
}

img {
    display: block;
    max-width: 100%;
    border: 0;
}

ul,
li {
    list-style: none;
}

:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: #212f4a;
}

h1,
.h1 {
    font-size: 55px;
    line-height: 1;
}

h2 {
    font-size: 45px;
    line-height: 1.2;
}

h5 {
    font-size: 18px;
    line-height: 1.2;
}

.card-text {
    font-size: 15px;
}

a {
    color: #4e9eef;
}

/* ### global classes ### */
.clear {
    visibility: hidden;
    clear: both;
    height: 0;
    line-height: 0;
}

.center {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
}

.container {
    padding-right: calc((100% - 1120px) / 2);
    padding-left: calc((100% - 1120px) / 2);
    max-width: 100%;
}

.container-xl {
    padding-right: calc((100% - 1680px) / 2);
    padding-left: calc((100% - 1680px) / 2);
    max-width: 100%;
}

.sub-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #ee666f;
}

p {
    line-height: 1.35;
    color: #6c7b91;
}

label {
    margin-bottom: 1px;
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #374051;
}

.form-check {
    padding: 0;
}

.form-check-input {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    width: 0;
    height: 100%;
    cursor: pointer;
}

label.form-check-label {
    padding: 0 0 0 25px;
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: #374051;
    cursor: pointer;
}

    label.form-check-label a {
        text-decoration: underline;
    }

.form-check-input:hover + label.form-check-label a:hover {
    text-decoration: none;
}

label.form-check-label:before {
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 14px;
    height: 14px;
    border: 1px solid #dce1e8;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #fff;
    content: '';
}

label.form-check-label:after {
    position: absolute;
    top: 7px;
    left: 2px;
    display: block;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #4e9eef;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms;
    transition: all 350ms;
    content: '';
}

.form-check-input:checked + label.form-check-label:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form-row {
    margin: 0 0 6px;
}

    .form-row .row {
        width: calc(100% + 30px);
    }

.form-control {
    height: 49px;
    font-size: 16px;
    font-weight: 400;
    line-height: inherit;
    border-color: #dce1e8;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

select.form-control {
    background-image: url('../images/dropdown-down-arrow.png');
    background-repeat: no-repeat;
    background-position: top 50% right 20px;
    background-size: 15px auto;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.submit-row {
    padding-top: 2px;
}

    .submit-row .btn {
        min-width: 200px;
    }

.btn {
    padding: 0.55rem 1.5rem;
}

.btn-primary {
    border-color: #ee666f;
    border-radius: 2px;
    background: #ee666f;
}

    .btn-primary:not(:disabled):not(.disabled).active,
    .btn-primary:not(:disabled):not(.disabled):active,
    .show > .btn-primary.dropdown-toggle,
    .btn-primary:hover,
    .btn-primary.focus,
    .btn-primary:focus {
        border-color: #bf5058;
        background: #bf5058;
    }

.btn-secondary {
    color: #212f4a;
    border-color: #fff;
    border-radius: 2px;
    background: #fff;
}

    .btn-secondary:not(:disabled):not(.disabled).active,
    .btn-secondary:not(:disabled):not(.disabled):active,
    .show > .btn-secondary.dropdown-toggle,
    .btn-secondary:hover,
    .btn-secondary.focus,
    .btn-secondary:focus {
        color: #fff;
        border-color: #212f4a;
        background: #212f4a;
    }

.btn-color-blue {
    border-color: #4e9eef;
    border-radius: 2px;
    background: #4e9eef;
}

    .btn-color-blue:not(:disabled):not(.disabled).active,
    .btn-color-blue:not(:disabled):not(.disabled):active,
    .show > .btn-color-blue.dropdown-toggle,
    .btn-color-blue:hover,
    .btn-color-blue.focus,
    .btn-color-blue:focus {
        border-color: #4181c1;
        background: #4181c1;
    }

.card {
    border-color: #dce1e8;
    border-radius: 2px;
}

.card-title {
    margin-bottom: 25px;
}

.slick-arrow {
    position: absolute;
    top: -60px;
    right: 15px;
    z-index: 9;
    width: 38px;
    height: 40px;
    text-indent: -9999px;
    border: 1px solid #dce1e8;
    border-radius: 2px;
    background: #fff url('../images/slider-next.png') center center no-repeat;
    background-size: 7px auto;
    cursor: pointer;
}

    .slick-arrow:focus {
        outline: none;
    }

    .slick-arrow.slick-prev {
        right: 65px;
        background-image: url('../images/slider-prev.png');
    }

#back-to-top {
    position: fixed;
    right: 15px;
    bottom: 155px;
    z-index: -1;
    display: none;
    opacity: 0;
    width: 34px;
    height: 34px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #1f304c url('../images/back-top-arrow.png') center center no-repeat;
    background-size: 18px auto;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    cursor: pointer;
}

    #back-to-top.show {
        z-index: 9999;
        opacity: 1;
    }

.meta,
.widget-title {
    padding-bottom: 9px;
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #ee666f;
}

.archive-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .archive-list li {
        margin-bottom: 3px;
        padding: 8px 0 12px;
        font-size: 23px;
        font-weight: 600;
        line-height: 30px;
        color: #212f4a;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

        .archive-list li a {
            display: block;
            color: #212f4a;
        }

            .archive-list li a:hover {
                text-decoration: none;
                color: #000;
            }

/* ### wrapper ### */
#wrapper {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
}

/* ### main container ### */
#mainCntr {
    width: 100%;
}

/* Added by BSD*/

.btn-link {
    font-size: 16px;
    color: #212f4a;
}

    .btn-link:focus,
    .btn-link:hover {
        color: #212f4a;
        box-shadow: none;
    }

.dropdown-menu {
    padding: 0;
    min-width: 8rem;
    border-color: #dce1e8;
    border-radius: 2px;
}

.dropdown-item {
    padding: 8px 15px;
    font-size: 14px;
    color: #212f4a;
}

    .dropdown-item.line {
        border-bottom: 1px solid #dce1e8;
    }

    .dropdown-item.is-active {
        font-weight: 600;
    }

.dropdown-toggle {
    display: flex;
    align-content: center;
    align-items: center;
    font-weight: 400;
}

    .dropdown-toggle b {
        font-weight: 600;
    }

    .dropdown-toggle:after {
        margin-left: 10px;
        position: relative;
        top: 2px;
        width: 11px;
        height: 11px;
        border: 0;
        background: url('../images/dropdown-arrow.png') center center no-repeat;
        background-size: 11px auto;
        transform: rotate(180deg);
        content: '';
    }

.show .dropdown-toggle:after {
    transform: none;
}

/* ### header container ### */
#headerCntr {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 70px;
    background: #fff;
}

    #headerCntr.bb-1 {
        border-bottom: 1px solid #dce1e8;
    }

    #headerCntr .logo {
        margin-left: 36px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 2px;
        background: #4e9eef;
    }

        #headerCntr .logo img {
            width: 28px;
            max-width: 100%;
        }

    #headerCntr .mobileMenu {
        margin-right: 25px;
        margin-left: auto;
        padding-left: 36px;
        position: relative;
        z-index: 15;
        display: none;
        text-decoration: none;
        color: #1c2f4d;
        background: url('../images/menu-icon.png') left center no-repeat;
        background-size: 23px auto;
        transition: none;
        cursor: pointer;
        overflow: hidden;
    }

        #headerCntr .mobileMenu span.close-text {
            display: none;
        }

    #headerCntr .mobile_menu {
        width: calc(100% - 83px);
    }

.is-menu-open #headerCntr .mobileMenu {
    background: url('../images/close-icon.png') left center no-repeat;
    background-size: 17px auto;
}

    .is-menu-open #headerCntr .mobileMenu span.open-text {
        display: none;
    }

    .is-menu-open #headerCntr .mobileMenu span.close-text {
        display: inline-block;
    }

/* ### menu box ### */
.menuBox ul {
    overflow: hidden;
    width: auto;
}

    .menuBox ul li {
        margin: 0 20px;
    }

        .menuBox ul li a {
            font-size: 16px;
            color: #212f4a;
        }

            .menuBox ul li.is-active a,
            .menuBox ul li a:hover {
                text-decoration: underline;
            }

/* ### login box ### */
.loginBox {
    padding-right: 12px;
}

    .loginBox ul {
        overflow: hidden;
        width: auto;
    }

        .loginBox ul li {
            margin: 0 20px;
        }

            .loginBox ul li a {
                font-size: 16px;
                color: #212f4a;
            }

                .loginBox ul li.is-active a,
                .loginBox ul li a:hover {
                    text-decoration: underline;
                }

/* ### content container ### */
#contentCntr {
    width: 100%;
}

/* ### banner box ### */
.bannerBox {
    padding-top: 130px;
    padding-bottom: 70px;
    width: 100%;
    min-height: 724px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

    .bannerBox .icon {
        margin: 0 auto 14px;
        display: block;
        max-width: 42px;
    }

    .bannerBox h1 {
        color: #fff;
    }

    .bannerBox .small-title {
        margin-bottom: 30px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: #8ac4ff;
    }

    .bannerBox p {
        padding: 0 60px;
        font-size: 22px;
        line-height: 1.4;
        color: #fff;
    }

    .bannerBox .block {
        margin: 0 auto;
        padding: 24px;
        max-width: 384px;
        border-radius: 2px;
    }

    .bannerBox .block-icon {
        width: 144px;
    }

/* ### slider box ### */
.sliderBox {
    padding-bottom: 80px;
    width: 100%;
    background: linear-gradient(to right, #212f4a 33%, #ee666f 100%);
}

    .sliderBox .slider {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }

    .sliderBox .slide {
        padding: 0 15px;
    }

    .sliderBox .image {
        width: 134px;
    }

    .sliderBox .title {
        margin-bottom: 5px;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.2;
        color: #212f4a;
    }

    .sliderBox .date {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.1em;
        color: #ee666f;
    }

    .sliderBox .block {
        border: 2px solid #dce1e8;
        border-radius: 2px;
        background: #fff;
    }

    .sliderBox .content {
        padding: 15px 15px 15px 30px;
        width: calc(100% - 134px);
    }

/* ### cta box ### */
.ctaBox {
    width: 100%;
}

    .ctaBox .icon {
        margin: 0 auto 25px;
        display: block;
        width: 58px;
    }

        .ctaBox .icon img {
            margin: 0 auto;
            display: block;
            max-height: 118px;
        }

    .ctaBox .item {
        display: block;
        width: 12.222%;
        font-size: 15px;
        text-align: center;
        color: #212f4a;
    }

    .ctaBox .title {
        padding: 0 5px;
    }

/* ### usp box ### */
.uspBox {
    width: 100%;
}

    .uspBox .icon {
        margin: 25px 0 40px;
    }

        .uspBox .icon img {
            margin: 0 auto;
            display: block;
            max-height: 118px;
        }

    .uspBox .card {
        height: 100%;
        min-height: 436px;
    }

/* ### form box ### */
.formBox {
    padding-top: 128px;
    padding-bottom: 82px;
}

    .formBox h1 {
        margin-bottom: 46px;
        font-size: 34px;
        font-weight: 600;
        line-height: 40px;
        text-align: center;
        color: #212f4a;
    }

    .formBox .login {
        margin: 0 auto 24px;
        padding: 42px 41px 32px;
        max-width: 484px;
        border: 1px solid #dce1e8;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        background-color: #fff;
    }

    .formBox .form-logo {
        margin: 0 auto 33px;
        display: block;
        max-width: 77px;
        text-decoration: underline;
    }

    .formBox p {
        font-weight: 400;
        text-align: center;
        color: #374051;
    }

    .formBox a {
        text-decoration: underline;
    }

        .formBox a:hover {
            text-decoration: none;
        }

    .formBox .forgot-password {
        font-size: 14px;
        line-height: 20px;
    }

/* ### signup box ### */
.signupBox {
    padding-top: 128px;
    padding-bottom: 0;
}

    .signupBox h1 {
        margin-bottom: 46px;
        font-size: 34px;
        font-weight: 600;
        line-height: 40px;
        text-align: center;
        color: #212f4a;
    }

    .signupBox .signup {
        margin: 0 auto 20px;
        padding: 42px 39px 32px;
        max-width: 810px;
        border: 1px solid #dce1e8;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        background-color: #fff;
    }

    .signupBox .form-logo {
        margin: 0 auto 33px;
        display: block;
        max-width: 76px;
        text-decoration: underline;
    }

    .signupBox h3 {
        margin-bottom: 19px;
        font-size: 21px;
        font-weight: 600;
        line-height: 24px;
        color: #374051;
    }

    .signupBox .heading {
        padding-top: 28px;
    }

        .signupBox .heading .form-check {
            margin: 2px 0 0 21px;
        }

    .signupBox p {
        font-weight: 400;
        text-align: center;
        color: #374051;
    }

    .signupBox a {
        text-decoration: underline;
    }

        .signupBox a:hover {
            text-decoration: none;
        }

/* ### pagebanner box ### */
.pagebannerBox {
    margin-top: 70px;
    height: 196px;
    background-color: #ee666f;
    background-image: linear-gradient(to right, #212f4a 0%, #212f4a 15%, #ee666f 100%);
}

    .pagebannerBox h1 {
        margin-bottom: 49px;
        font-size: 44px;
        font-weight: 600;
        line-height: 50px;
        color: #fff;
    }

/* ### news box ### */
.newsBox {
    padding-top: 80px;
    padding-bottom: 15px;
}

    .newsBox .blog-tile {
        margin-bottom: 60px;
        padding-bottom: 73px;
        max-width: 770px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

        .newsBox .blog-tile h3 {
            margin-bottom: 16px;
            font-size: 44px;
            font-weight: 600;
            line-height: 50px;
            color: #212f4a;
        }

            .newsBox .blog-tile h3 a {
                color: #212f4a;
            }

                .newsBox .blog-tile h3 a:hover {
                    text-decoration: none;
                    color: #000;
                }

        .newsBox .blog-tile img {
            margin-top: 10px;
        }

    .newsBox p {
        margin-bottom: 0;
        padding-bottom: 25px;
    }

    .newsBox .blog-sidebar {
        padding-left: 40px;
    }

/* ### footer container ### */
#footerCntr {
    overflow: hidden;
    width: 100%;
}

/* ### footer box ### */
.footerBox {
    padding-top: 88px;
    padding-bottom: 80px;
    width: 100%;
    background: #fff;
}

    .footerBox .top {
        margin-bottom: 10px;
        font-size: 22px;
        font-weight: 600;
        color: #212f4a;
    }

        .footerBox .top a {
            text-decoration: underline;
            color: #212f4a;
        }

            .footerBox .top a:hover {
                opacity: 0.8;
            }

    .footerBox .bottom {
        color: #6c7b91;
    }

/* ### copyright box ### */
.copyrightBox {
    padding-top: 45px;
    padding-bottom: 45px;
    width: 100%;
}

    .copyrightBox p {
        font-size: 14px;
        color: #212f4a;
    }

/* #Media Queries
================================================== */

@media only screen and (max-width: 1149px) {
    .container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .formBox {
        padding-top: 110px;
        padding-bottom: 20px;
    }

        .formBox h1 {
            margin-bottom: 28px;
        }

    .signupBox {
        padding-top: 110px;
    }

        .signupBox h1 {
            margin-bottom: 28px;
        }

    .newsBox .blog-sidebar {
        padding-left: 0;
    }
}

@media only screen and (max-width: 991px) {
    .uspBox .card {
        margin-bottom: 20px;
        height: auto;
        min-height: 36px;
    }

    .ctaBox .item {
        margin-bottom: 25px;
        width: 16.666%;
    }

    .formBox h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .signupBox h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .signupBox .signup {
        padding: 42px 30px 32px;
    }

    .pagebannerBox {
        height: 170px;
    }

        .pagebannerBox h1 {
            margin-bottom: 35px;
            font-size: 40px;
            line-height: 46px;
        }

    .newsBox {
        padding-top: 50px;
        padding-bottom: 0;
    }

        .newsBox .blog-tile h3 {
            font-size: 35px;
            line-height: 40px;
        }

        .newsBox .blog-tile img {
            margin-top: 0;
        }

        .newsBox .blog-tile {
            margin-bottom: 45px;
            padding-bottom: 50px;
        }

    .archive-list li {
        font-size: 20px;
        line-height: 25px;
    }
}

@media only screen and (max-width: 767px) {
    body.is-menu-open {
        position: relative;
        overflow: hidden;
    }

    #headerCntr {
        z-index: 9999;
        height: 72px;
    }

        #headerCntr .mobile_menu {
            padding: 70px 47px 45px;
            position: fixed;
            top: 72px;
            align-content: space-between;
            width: calc(100% - 25px);
            height: calc(100vh - 72px);
            background: #1e2f4b;
            transform: translateX(-100%);
            transition: all 0.3s;
            overflow: auto;
        }

    .is-menu-open #headerCntr .mobile_menu {
        transform: none;
    }

    #headerCntr .logo {
        margin-left: 25px;
    }

    #headerCntr .mobileMenu {
        display: block;
    }

    .menuBox {
        width: 100%;
    }

        .menuBox ul li a {
            display: block;
            font-size: 30px;
            color: #fff;
            background: url('../images/menu-arrow.png') right center no-repeat;
            background-size: 14px auto;
        }

        .menuBox ul li {
            margin: 0;
            margin-bottom: 15px;
            width: 100%;
        }

    .loginBox {
        margin-left: 0 !important;
        padding-top: 50px;
        padding-right: 0;
    }

        .loginBox ul li a {
            display: block;
            font-size: 18px;
            color: #fff;
        }

        .loginBox ul li {
            margin: 0;
            margin-bottom: 15px;
            width: 100%;
        }

    .bannerBox {
        padding-top: 105px;
        padding-bottom: 60px;
        min-height: 10px;
    }

        .bannerBox .icon {
            max-width: 60px;
        }

        .bannerBox p {
            padding: 0;
            font-size: 18px;
        }

        .bannerBox .block {
            padding: 0;
            background: transparent !important;
        }

        .bannerBox .button {
            margin-bottom: 0;
        }

        .bannerBox .small-title {
            margin-bottom: 45px;
        }

    .slick-arrow {
        margin-top: -30px;
        top: 50%;
        right: -30px;
        border: 0;
        background-color: transparent;
        background-image: url('../images/slider-next-w.png');
        background-size: 10px auto;
    }

        .slick-arrow.slick-prev {
            right: auto;
            left: -30px;
            background-image: url('../images/slider-prev-w.png');
        }

    .sliderBox .slider {
        margin: 0;
        padding: 0 20px;
        width: 100%;
    }

    .sliderBox .content {
        padding: 25px;
        width: 100%;
    }

    .sliderBox .block {
        flex-wrap: wrap;
    }

    .sliderBox .image {
        width: 100%;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

        .sliderBox .image img {
            opacity: 0;
        }

    .ctaBox .item {
        margin-bottom: 8px;
        padding: 0 15px;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        font-size: 18px;
        text-align: left;
    }

    .ctaBox .icon {
        margin: 0 10px 0 0;
        width: 28px;
    }

        .ctaBox .icon img {
            max-height: 26px;
        }

    .ctaBox .title {
        width: calc(100% - 40px);
    }

    .footerBox {
        padding-top: 35px;
        padding-bottom: 35px;
    }

        .footerBox .top {
            font-size: 14px;
        }

        .footerBox .bottom {
            font-size: 10px;
        }

        .footerBox .title {
            font-size: 18px;
        }

    .copyrightBox {
        padding-top: 15px;
        padding-bottom: 15px;
    }

        .copyrightBox p {
            font-size: 10px;
        }

    #back-to-top {
        display: block;
    }

    .formBox {
        padding-bottom: 0;
    }

        .formBox h1,
        .signupBox h1 {
            margin-bottom: 25px;
            font-size: 27px;
            line-height: 30px;
        }

        .formBox .login,
        .signupBox .signup {
            margin-bottom: 20px;
            padding: 30px 20px 32px;
        }

        .formBox .form-logo,
        .signupBox .form-logo {
            margin-bottom: 20px;
            max-width: 65px;
        }

        .formBox p,
        .signupBox p {
            font-size: 16px;
            line-height: 20px;
        }

    label.form-check-label {
        padding-left: 20px;
    }

    .formBox .forgot-password {
        font-size: 12px;
        line-height: 18px;
    }

    .form-row div[class*='col-'] + div[class*='col-'] {
        margin-top: 6px;
    }

    .signupBox .heading {
        padding-top: 20px;
    }

    .pagebannerBox {
        height: 150px;
    }

        .pagebannerBox h1 {
            margin-bottom: 25px;
            font-size: 36px;
            line-height: 40px;
        }

    .newsBox {
        padding-top: 40px;
        padding-bottom: 30px;
    }

        .newsBox .blog-tile {
            margin-bottom: 35px;
            padding-bottom: 40px;
        }

            .newsBox .blog-tile h3 {
                font-size: 26px;
                line-height: 30px;
            }

    .archive-list li {
        font-size: 18px;
        line-height: 23px;
    }
}

@media only screen and (max-width: 479px) {
    .signupBox .heading .form-check {
        margin: -5px 0 15px;
        width: 100%;
    }
}
