

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
    font-family: 'visby_cfbold';
    src: url('/assets/vendor/font-awesome/fonts/visbycf-bold-webfont.woff2') format('woff2'), url('/assets/vendor/font-awesome/fonts/visbycf-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'visby_cfdemi_bold';
    src: url('/assets/vendor/font-awesome/fonts/visbycf-demibold-webfont.woff2') format('woff2'), url('/assets/vendor/font-awesome/fonts/visbycf-demibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'visby_cfextra_bold';
    src: url('/assets/vendor/font-awesome/fonts/visbycf-extrabold-webfont.woff2') format('woff2'), url('/assets/vendor/font-awesome/fonts/visbycf-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'visby_cfheavy';
    src: url('/assets/vendor/font-awesome/fonts/visbycf-heavy-webfont.woff2') format('woff2'), url('/assets/vendor/font-awesome/fonts/visbycf-heavy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'visby_cfmedium';
    src: url('/assets/vendor/font-awesome/fonts/visbycf-medium-webfont.woff2') format('woff2'), url('/assets/vendor/font-awesome/fonts/visbycf-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'visby_cfregular';
    src: url('/assets/vendor/font-awesome/fonts/visbycf-regular-webfont.woff2') format('woff2'), url('/assets/vendor/font-awesome/fonts/visbycf-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #fff;
    color: #203563;
    font-family: "Open Sans", sans-serif;
}



@media (min-width: 1200px) {

    .container {
        max-width: 100%;
    }
}

@media (min-width: 768px) {

    .container {
        max-width: 100%;
    }
}

@media (min-width: 576px) {

    .container, .container-sm {
        max-width: 100%;
    }
}

a {
    color: #007bff;
    transition: 0.5s;
}

    a:hover, a:active, a:focus {
        color: #0b6bd3;
        outline: none;
        text-decoration: none;
    }

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    /*font-family: 'visby_cfextra_bold';*/
    font-family: 'visby_cfextra_bold';
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

.cen {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.cen-text {
    text-align: center;
}

.sep-small {
    height: 40px;
}

.sep-small- {
    height: 50px;
}

.sep-medium {
    height: 60px;
}

.sep-large {
    height: 120px;
}

.sep-large- {
    height: 160px;
}

.sep-xlarge {
    height: 250px;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    top: 85%;
    display: none;
    background: #007bff;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

    .back-to-top i {
        padding-top: 12px;
        color: #fff;
    }

@media (max-width: 768px) {
    /*.back-to-top {
        bottom: 15px;
    }*/

    .back-to-top {
        top: 83%;
    }
}

@media (max-width: 500px) {

    .back-to-top {
        display: none!important;
    }
}

/* Prelaoder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #f2f2f2;
        border-top: 6px solid #007bff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 130px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 20px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

    #header.header-scrolled, #header.header-pages {
        height: 60px;
        padding: 10px 0;
    }

@media (max-width: 991px) {
    #header {
        height: 130px;
        padding: 10px 0;
    }
}

#header .logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    #header .logo h1 {
        font-size: 28px;
        padding: 8px 0;
    }
}

@media (max-width: 768px) {
    #header .float-right {
        display: none;
    }

    .mobile-nav-toggle {
        top: 30px !important;
    }
}

#header .logo h1 a, #header .logo h1 a:hover {
    color: #00366f;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 7px 0;
    max-height: 100px;
}

.main-pages {
    margin-top: 60px;
}

#header .btn-policy {
    font-family: 'visby_cfextra_bold';
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 16px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 0 20px 20px 0;
    color: #00a3b4;
}

#header .btn-policy {
    background: #00a3b4;
    border: 2px solid #00a3b4;
    color: #fff;
}

    #header .btn-policy:hover {
        background: none;
        border-color: #00a3b4;
        color: #00a3b4;
    }

#header .btn-help {
    background: #203564;
    border: 2px solid #203564;
    color: #fff;
}

    #header .btn-help:hover {
        background: none;
        border-color: #203564;
        color: #203564;
    }

#header .btn-help {
    font-family: 'visby_cfextra_bold';
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 16px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 0 20px 20px 0;
    color: #fff;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.main-nav {
    /*margin-right: -280px !important;*/
    margin-right: -330px !important;
}

.main-nav, .main-nav {
    margin: 10px;
    padding: 0;
    list-style: none;
}

    .main-nav > ul > li {
        position: relative;
        white-space: nowrap;
        float: left;
        list-style: none;
    }

    .main-nav a {
        display: block;
        position: relative;
        color: #333333;
        padding: 10px 20px;
        transition: 0.3s;
        font-size: 14px;
        font-family: 'visby_cfextra_bold';
        font-weight: 600;
    }


        .main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
            /*color: #007bff;
            text-decoration: none;*/
        }

    .main-nav .drop-down ul {
        display: block;
        position: absolute;
        left: 0;
        top: calc(100% + 30px);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        padding: 10px 0;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: ease all 0.3s;
    }

    .main-nav .drop-down:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .main-nav .drop-down li {
        min-width: 180px;
        position: relative;
    }

    .main-nav .drop-down ul a {
        padding: 10px 20px;
        font-size: 13px;
        color: #004289;
    }

        .main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
            color: #007bff;
        }

    .main-nav .drop-down > a:after {
        content: "\f107";
        font-family: FontAwesome;
        padding-left: 10px;
    }

    .main-nav .drop-down .drop-down ul {
        top: 0;
        left: calc(100% - 30px);
    }

    .main-nav .drop-down .drop-down:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
    }

    .main-nav .drop-down .drop-down > a {
        padding-right: 35px;
    }

        .main-nav .drop-down .drop-down > a:after {
            content: "\f105";
            position: absolute;
            right: 15px;
        }

@media (max-width: 1190px) {
    .main-nav {
        margin: -10px -34px 0 !important;
        padding: unset !important;
        margin-right: unset !important;
    }
}

@media (min-width:992px) and (max-width:1194px) {

    .main-nav a {
        padding: 10px 12px !important;
    }
}


@media (min-width:1024px) and (max-width:1024px) {
    .main-nav {
        /*margin: -60px -34px 0 !important;*/
        padding: unset !important;
        /*margin-right: unset !important;*/
        margin-right: -20px !important;
    }

    .container, .container-sm {
        max-width: 98% !important;
    }

    #about .intro-info .btn-get-started {
        margin: 0 -70px 10px 0 !important;
    }

    #about .intro-info .btn-help {
        margin: 0 -70px 10px 0 !important;
    }
}

@media (max-width: 1016px) {
    .main-nav {
        margin: -10px -34px 0 !important;
        
    }
}

@media (min-width: 769px) {
    .main-nav .manage-policy {
        display: none;
    }

    .main-nav .help-centre {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(19, 39, 57, 0.8);
    transition: 0.4s;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #fff;
        padding: 10px 20px;
        font-weight: 500;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: #74b5fc;
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\f078";
        font-family: FontAwesome;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\f077";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-toggle {
    position: fixed;
    /*right: 0;
    top: 0;*/
    right: 10px;
    top: 50px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        margin: 18px 18px 0 0;
        color: #000;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(19, 39, 57, 0.8);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        left: 0;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        about .btn color: #fff;
    }

@media (max-width: 412px) {

    .mobile-nav-toggle {
        right: 30px;
    }
}

@media (max-width: 320px) {

    .mobile-nav-toggle {
        right: -10px;
    }
}

/*#footer {
        background: #203564;
        /*padding: 0 0 30px 0;
        color: #eee;
        font-size: 14px;
        /*margin-left: 20px !important;
    margin-right: 20px !important;
    padding-left: 50px;
    padding-right: 50px;
        clip-path: ellipse(100% 100% at 50% 100%);
        /*margin-top: 100%;
    }*/

@media (min-width: 1650px) {
    #footer {
        
        height: 530px!important;
        
    }
}

#footer {
    width: 100%;
    position: relative;
    background: url("../img/bg-footer-sm.png") center bottom no-repeat;
    background-size: cover;
    height: 500px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

    #footer .footer-top {
        /*background: #203564;
        padding: 60px 0 30px 0;*/
        /*padding: 200px 0 30px 0;*/
    }

.about-container-footer {
    padding-left: 200px;
    padding-right: 100px;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

    #footer .footer-top .footer-info h3 {
        font-size: 34px;
        margin: 0 0 20px 0;
        padding: 2px 0 2px 0;
        line-height: 1;
        font-family: 'visby_cfextra_bold';
        color: #fff;
        font-weight: 400;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    #footer .footer-top .footer-info p {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 0;
        font-family: 'visby_cfextra_bold';
        color: #ecf5ff;
    }

#footer .footer-top .social-links a {
    font-size: 30px;
    display: inline-block;
    /*background: #00a3b4;*/
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 20px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}



#footer .footer-top h4 {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
    margin-top: 100px;
}

    #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #footer .footer-top .footer-links ul li {
            padding: 4px 0;
        }

            #footer .footer-top .footer-links ul li:first-child {
                padding-top: 0;
            }

        #footer .footer-top .footer-links ul a {
            color: #ecf5ff;
        }

            #footer .footer-top .footer-links ul a:hover {
                color: #00a3b4;
            }

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

    #footer .footer-top .footer-contact p {
        line-height: 26px;
    }

#footer .copyright {
    /*text-align: center;*/
    padding-bottom: 50px;
    font-size: 12px;
    padding-left: 200px;
    padding-right: 200px;
    color: #fff;
}

@media (min-width:1024px) and (max-width:1024px) {
    #footer .footer-top .social-links a {
        margin-right: 10px;
    }
}

@media (max-width: 991px) {

    #footer {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

        #footer .copyright {
            padding-left: 0 !important;
            padding-right: 0 !important;
            color: #fff;
        }


    #footer {
        width: 100%;
        position: relative;
        background: url(../img/bg-footer.png) center bottom no-repeat;
        background-size: cover;
        height: 1400px;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
    }

    /*#footer {
            clip-path: ellipse(200% 33% at 50% 100%) !important;
        }*/

    .links {
        margin-top: 200px !important;
    }

    #footer .footer-top .footer-links- {
        margin-top: 200px !important;
    }

    #footer .footer-top .footer-links {
        margin-bottom: -50px !important;
        margin-top: 100px !important;
        top: 100px;
    }

    .about-container-footer {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #footer .footer-top .footer-links-social {
        margin-bottom: 150px !important;
    }
}

@media (max-width: 768px) {

    /*#footer {
            clip-path: ellipse(200% 30% at 50% 100%) !important;
        }*/

}
