﻿

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #fff;
}

a {
    color: #0d6efd;
    text-decoration: underline;
}

a:hover {
    color: #d9ba85;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: #0066A4 !important;
}

/*--------------------------------------------------------------
# loader
--------------------------------------------------------------*/
#loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #1a1814;
    opacity: 0.85;
}

    #loader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #1a1814;
        border-top-color: #eee;
        border-bottom-color: #eee;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-loader 1s linear infinite;
        animation: animate-loader 1s linear infinite;
    }

@-webkit-keyframes animate-loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #1a1814;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #1a1814;
        border-top-color: #eee;
        border-bottom-color: #eee;
        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);
    }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 2px solid #eee;
    background: #0056A3;
}

    .back-to-top i {
        font-size: 28px;
        color: #eee;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #eee;
        color: #1a1814;
    }

        .back-to-top:hover i {
            color: #444444;
        }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #001A31;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
}

    #topbar.topbar-scrolled {
        top: -40px;
    }

    #topbar .contact-info i {
        font-style: normal;
        color: #fff;
    }

        #topbar .contact-info i span {
            padding-left: 5px;
            color: #fff;
        }

    #topbar .languages ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        color: #eee;
    }

        #topbar .languages ul a {
            color: white;
            text-decoration: none;
        }

        #topbar .languages ul li + li {
            padding-left: 10px;
        }

            #topbar .languages ul li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: rgba(255, 255, 255, 0.5);
                content: "/";
            }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #30569F;
    border-bottom: 1px solid rgba(12, 11, 9, 0.6);
    transition: all 0.5s;
    z-index: 997;
    top: 40px;
}

    #header.header-scrolled {
        top: 0;
        background: rgba(0, 86, 163, 0.85);
        border-bottom: 1px solid #37332a;
    }
    #header p {
        color: #fff;
        font-size: 12px;
    }

.cropped {
    height: 100px; /* height of container */
    overflow: hidden;
    border: 2px solid black;
}

    .cropped img {
        margin: -57px 0px -1px -5px;
    }

.cropped1 {
    width: 200px; /* width of container */
    height: 200px; /* height of container */
    object-fit: cover;
    border: 5px solid black;
}

.cropped2 {
    width: 200px; /* width of container */
    height: 88px; /* height of container */
    object-fit: cover;
    object-position: 55% 45%; /* try 20px 10px */
}
/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
    margin: 0 0 0 15px;
    border: 2px solid #eee;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

    .book-a-table-btn:hover {
        background: #eee;
        color: #fff;
    }

@media (max-width: 992px) {
    .book-a-table-btn {
        margin: 0 15px 0 0;
        padding: 8px 20px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        color: #eee;
        justify-content: space-between;
        width: 100%;
    }


    .navbar li {
        position: relative;
    }

    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
        font-size: 17px;
    }

        .navbar a i, .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
            color: #eee;
            text-decoration: underline;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            color: #444444;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
                color: #eee;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 6px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a, .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #1a1814;
    }

        .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
            color: #eee;
        }

    .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
                color: #eee;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 10px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #FFFFFF;
}

.section-title {
    padding-bottom: 15px;
}

    .section-title h2 {
        font-size: 17px;
        font-weight: bold;
        padding: 0;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #000;
    }

    .section-title p {
        margin: 0;
        font-size: 36px;
        font-weight: 700;
        color: #eee;
    }

/*--------------------------------------------------------------
# Brooker
--------------------------------------------------------------*/
.broker {
    background: url("../img/blueesh.jpg") center center;
    background-size: cover;
    position: relative;
    padding: 0;
    margin-top: 0;
}
.hero-btn:hover {
    background-color: #0056A3 !important;
}
.broker:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

    .broker .broker-img {
        position: relative;
        transition: 0.5s;
    }



        .broker .broker-img img {
            max-width: 100%;
            border: 4px solid rgba(255, 255, 255, 0.2);
            position: relative;
        }

        .broker .broker-img::before {
            position: absolute;
            left: 20px;
            top: 20px;
            width: 60px;
            height: 60px;
            z-index: 1;
            content: "";
            border-left: 5px solid #eee;
            border-top: 5px solid #eee;
            transition: 0.5s;
        }

        .broker .broker-img::after {
            position: absolute;
            right: 20px;
            bottom: 20px;
            width: 60px;
            height: 60px;
            z-index: 2;
            content: "";
            border-right: 5px solid #eee;
            border-bottom: 5px solid #eee;
            transition: 0.5s;
        }

        .broker .broker-img:hover {
            transform: scale(1.03);
        }

            .broker .broker-img:hover::before {
                left: 10px;
                top: 10px;
            }

            .broker .broker-img:hover::after {
                right: 10px;
                bottom: 10px;
            }
    .broker .content {
        height:120px;
    }
        .broker .content .brokerheading {
            font-size: 45px;
            font-weight: 400;
        }

        .broker .content .brokersubheading {
            font-size: 35px;
            font-weight: 400;
        }

    .broker .content h6 {
        font-size: 14px;
    }

    .broker .content ul {
        list-style: none;
        padding: 0;
    }

        .broker .content ul li {
            padding-bottom: 10px;
        }

        .broker .content ul i {
            font-size: 20px;
            padding-right: 4px;
            color: #fff;
        }

    .broker .content p:last-child {
        margin-bottom: 0;
    }

    .broker button[type=submit] {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .broker button[type=submit]:hover {
            background: #0056A3;
        }

@media (min-width: 1024px) {
    .broker {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# Game
--------------------------------------------------------------*/
.game {
    background: #FFFFFF;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

    .game:before {
        content: "";
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .game .game-img {
        position: relative;
        transition: 0.5s;
    }



        .game .game-img img {
            max-width: 100%;
            border: 4px solid #1384e9;
            position: relative;
        }



    .game .content {
        background: #0056A3;
    }

        .game .content h3 {
            font-weight: 600;
            font-size: 26px;
            margin-left: 10px;
            margin-top: 20px;
        }

        .game .content p {
            margin-left: 10px;
            margin-top: 20px;
        }

        .game .content ul {
            list-style: none;
            padding: 0;
        }

            .game .content ul li {
                padding-bottom: 10px;
            }

            .game .content ul i {
                font-size: 20px;
                padding-right: 4px;
                color: #eee;
            }

        .game .content p:last-child {
            margin-bottom: 0;
        }

    .game button[type=submit] {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .game button[type=submit]:hover {
            background: #0056A3;
        }

    .game .contentthree {
        color: #000;
        font-weight: bold;
        font-size: 3vw;
    }

@media (min-width: 1024px) {
    .game {
        background-attachment: fixed;
    }
}



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    background: #FFFFFF;
}

    .why-us .box {
        padding: 50px 30px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        transition: all ease-in-out 0.3s;
        background: #1a1814;
    }

        .why-us .box span {
            display: block;
            font-size: 28px;
            font-weight: 700;
            color: #eee;
        }

        .why-us .box h4 {
            font-size: 24px;
            font-weight: 600;
            padding: 0;
            margin: 20px 0;
            color: rgba(255, 255, 255, 0.8);
        }

        .why-us .box p {
            color: #aaaaaa;
            font-size: 15px;
            margin: 0;
            padding: 0;
        }

        .why-us .box:hover {
            background: #eee;
            padding: 30px 30px 70px 30px;
            box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
        }

            .why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
                color: #fff;
            }

    .why-us .card-header {
        font-size: 30px;
        color: #fff;
    }

/*--------------------------------------------------------------
# GetCopy
--------------------------------------------------------------*/
.getcopy {
    background: url(/img/gray-bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

    .getcopy:before {
        content: "";
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .getcopy .content h3 {
        font-weight: 600;
        font-size: 26px;
        color: #000000;
    }

        .getcopy .content h3 span {
            color: #0055a5;
        }

    .getcopy .content ul {
        list-style: none;
        padding: 0;
    }

.icon-ok-sign {
    background: url(/img/sec-4-li.png);
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: left top;
    padding-left: 20px;
    color: #000000;
}

.getcopy .content ul li {
    background: url(/img/blue-right-tick.png);
    background-repeat: no-repeat;
    background-position: left top;
    line-height: 40px;
    padding-left: 50px;
    padding-bottom: 20px;
    color: #000000;
}

        .getcopy .content ul i {
            font-size: 40px;
            font-weight: bold;
            padding-right: 4px;
            color: #0055a5;
}

    .getcopy .content p:last-child {
        margin-bottom: 0;
    }



    .getcopy button {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .getcopy button:hover {
            background: #0056A3;
        }

@media (min-width: 1024px) {
    .getcopy {
        background-attachment: fixed;
    }
}
/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
    background: url(../img/gray-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.4s;
    border-radius: 10px;
}

    .events .section-title h2 {
        color: #000000;
    }

    .events .section-title p {
        color: #000000;
    }

    .events .container {
        position: relative;
    }

@media (min-width: 1024px) {
    .events {
        background-attachment: fixed;
    }
}

.events .events-carousel {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
}

.events .event-item {
    color: #000000;
}

    .events .event-item h3 {
        font-weight: 600;
        font-size: 26px;
        color: #0055a5;
    }

    .events .event-item .price {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 15px;
    }

        .events .event-item .price span {
            border-bottom: 2px solid #eee;
        }

    .events .event-item ul {
        list-style: none;
        padding: 0;
    }

        .events .event-item ul li {
            padding-bottom: 10px;
        }

        .events .event-item ul i {
            font-size: 20px;
            padding-right: 4px;
            color: #eee;
        }

    .events .event-item p:last-child {
        margin-bottom: 0;
    }

.events .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

    .events .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.4);
        opacity: 1;
    }

    .events .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #eee;
    }


/*--------------------------------------------------------------
# peoplesaying
--------------------------------------------------------------*/
.peoplesaying {
    background:#FFFFFF;
    background-size: cover;
    position: relative;
    transition: 0.4s;
    border-radius: 10px;
}

    .peoplesaying .section-title h1 {
        color: #000000;
        font-size: 20px;
        font-weight: bold;
    }


    .peoplesaying .section-title p {
        color: #000000;
      
    }

    .peoplesaying .container {
        position: relative;
    }

    .peoplesaying .accordion-button {
        color: #0c63e4;
    }
        .peoplesaying .accordion-button:not(.collapsed) {
            font-weight: bold;
        }

    @media (min-width: 1024px) {
        .peoplesaying {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# AboutUs
--------------------------------------------------------------*/
.aboutus {
    background: url(../img/gray-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.4s;
    border-radius: 10px;
}

    .aboutus .section-title h2 {
        color: #000000;
       
    }

    .aboutus .section-title p {
        color: #000000;
    }

    .aboutus .container {
        position: relative;
    }

    .aboutus .popupmodal {
        background: transparent;
        background-size: cover;
        position: relative;
        padding: 10px 5px;
    }



    .aboutus .popupmodal .popupmodal-img {
        position: relative;
        transition: 0.5s;
    }



    .aboutus .popupmodal .popupmodal-img img {
        max-width: 100%;
        border: 4px solid #C9C9C9;
        position: relative;
    }

    .aboutus button {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 5px;
        margin-bottom: 10px;
    }


        .aboutus button:hover {
            background: #0056A3;
        }

    .aboutus .div-discounted-interest-rates {
        background-color: #003366;
        color: white;
        padding: 25px;
        border-radius: 25px;
        font-size: 20px
    }

    .aboutus .linkbutton a {
        background: #e9c400;
        border: 0;
        padding: 10px 35px;
        color: #000000;
        text-transform: uppercase;
        transition: 0.4s;
        border-radius: 50px;
    }

        .aboutus .linkbutton a:hover {
            background: #0055a5;
            color: #ffffff;
        }

    .aboutus .yellowbutton button {
        background: #e9c400;
        border: 0;
        padding: 10px 35px;
        color: #000000;
        text-transform: uppercase;
        transition: 0.4s;
        border-radius: 50px;
    }

        .aboutus .yellowbutton button:hover {
            background: #0055a5;
            color: #ffffff;
        }

/*--------------------------------------------------------------
# Chart
--------------------------------------------------------------*/
section .chart {
    padding: 2px 0;
    overflow: hidden;
}
    .chart {
    background: url(../img/gray-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.4s;
    border-radius: 10px;
    margin-top: 2px;
}
.mort-calulatorinner .section-title p {
    color: #FFFFFF;
}

.chart .section-title {
    padding-bottom: 2px;
}
.chart .section-title h2 {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
  
   
}

    .chart .section-title p {
        color: #000000;
    }

    .chart .container {
        position: relative;
    }
/*--------------------------------------------------------------
# AboutUs
--------------------------------------------------------------*/
.signup {
    background: url(../img/gray-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.4s;
    border-radius: 10px;
}
    .signup .section-title h2 {
        color: #000000;
        font-size: 20px;
        font-weight: bold;
    }
    .signup .section-title p {
       
        color: #000000;
     
    }
/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.mortgage-calculator {
    background: #0056A3;
}

    .mortgage-calculator .section-title p {
        color: #FFFFFF;
    }

    .mortgage-calculator .section-title h2 {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: bold;
    }



    .mortgage-calculator button[type=submit] {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .mortgage-calculator button[type=submit]:hover {
            background: #0056A3;
        }

    .mortgage-calculator .linkbutton a {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .mortgage-calculator .linkbutton a:hover {
            background: #0056A3;
        }


/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.mort-calulatorinner {
    background: #0056A3;
    background-size: cover;
    color: #FFFFFF;
    transition: 0.4s;
    border-radius: 10px;
}

    .mort-calulatorinner .section-title h2 {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: bold;
    }



    .mort-calulatorinner button[type=submit] {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .mort-calulatorinner button[type=submit]:hover {
            background: #0056A3;
        }

    .mort-calulatorinner .linkbutton a {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .mort-calulatorinner .linkbutton a:hover {
            background: #0056A3;
        }

.mort-calulatorinner-buttons .linkbutton a {
    background: #001A31;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

    .mort-calulatorinner-buttons .linkbutton a:hover {
        background: #0056A3;
    }


.book-a-table {
    color: #3A2D3F;
    background: #FFFFFF;
}

    .book-a-table .section-title p {
        color: #001A31;
    }

    .book-a-table .section-title h2 {
        color: #392A3D;
        font-size: 20px;
        font-weight: bold;
    }


    .book-a-table .linkbutton a {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .book-a-table .linkbutton a:hover {
            background: #0056A3;
        }



.withoutfocus:focus {
    box-shadow: none;
    border-color: #0056A3;
}

.withoutfocuscalulator:focus {
    box-shadow: none;
    border-color: #F3F3F3;
}

.center {
    text-align: center;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .swiper {
    width: 100%;
    height: 100%;
    color: blue;
}

.testimonials .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .testimonials .swiper-slide img {
        display: block;
        width: 70%;
        height: 70%;
        object-fit: contain;
    }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/


.contact {
    background: url(../img/gray-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.4s;
    border-radius: 10px;
}

    .contact .section-title h2 {
        color: #000000;
        font-size: 20px;
        font-weight: bold;
    }
.contact .info {
    width: 100%;
}

.contact .section-title p {
    color: #001A31;
    font-weight:normal;
    font-size:20px;
}



.contact .info i {
    font-size: 20px;
    float: left;
    width: 44px;
    height: 44px;
    background: #001A31;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #001A31;
}

.contact .info .open-hours, .contact .info .email, .contact .info .phone {
    margin-top: 40px;
}

.contact .php-email-form {
    width: 100%;
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #eee;
            border-top-color: #1a1814;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input, .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        background: #0056A3;
        border-color: #625b4b;
        color: white;
    }

        .contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
            color: #fff;
        }

        .contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
            color: #fff;
        }

        .contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
            color: #fff;
        }

        .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
            border-color: #eee;
        }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    .contact .php-email-form button[type=submit] {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: #0056A3;
        }


@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #0056A3;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

    #footer .footer-top {
        background: #001A31;
        border-top: 1px solid #37332a;
        border-bottom: 1px solid #28251f;
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 24px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 300;
                text-transform: uppercase;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                color: #fff;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #001A31;
            color: #0056A3;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            border: 1px solid #0056A3;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #eee;
                color: #fff;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            color: #0056A3;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #eee;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                    text-decoration: none; 
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #eee;
                    }

        #footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            background: #28251f;
            padding: 6px 10px;
            position: relative;
            border-radius: 50px;
            border: 1px solid #454035;
        }

            #footer .footer-top .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
                background: #28251f;
                color: white;
            }

            #footer .footer-top .footer-newsletter form input[type=submit] {
                position: absolute;
                top: -1px;
                right: -1px;
                bottom: -1px;
                border: 0;
                font-size: 16px;
                padding: 0 20px 2px 20px;
                background: #eee;
                color: #fff;
                transition: 0.3s;
                border-radius: 50px;
            }

                #footer .footer-top .footer-newsletter form input[type=submit]:hover {
                    background: #0056A3;
                }

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

.footer-newsletter i {
    font-size: 20px;
    padding-right: 4px;
    color: #fff;
}
/*--------------------------------------------------------------
# FAQs
--------------------------------------------------------------*/


.faqs {
    background: url(../img/gray-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.4s;
    border-radius: 10px;
}

    .faqs .section-title h2 {
        color: #000000;
        font-size:20px;
        font-weight:bold;
    }

/*--------------------------------------------------------------
# BookAChat
--------------------------------------------------------------*/


.bookchat {
    background: url(../img/gray-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.4s;
    border-radius: 10px;
}

    .bookchat .section-title h1 {
        color: #000000;
        font-size: 20px;
        font-weight: bold;
    }


/*--------------------------------------------------------------
# BookAChat
--------------------------------------------------------------*/


.loanservices {
    background: #0056A3;
    background-size: cover;
    position: relative;
    padding: 80px 0;
    margin-bottom: 50px;
    transition: 0.4s;
    border-radius: 10px;
    color: #FFFFFF;
}

    .loanservices .section-title h1 {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: bold;
    }

.readytostart {
    background: #0056A3;
    background-size: cover;
    position: relative;
    padding: 80px 0;
    margin-top: 50px;
    margin-bottom: 50px;
    transition: 0.4s;
    border-radius: 10px;
    color: #FFFFFF;
}

    .readytostart .section-title h2 {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: bold;
        text-transform: capitalize;
    }

    .readytostart .linkbutton a {
        background: #FFD700;
        border: 0;
        padding: 10px 35px;
        color: #000000;
        transition: 0.4s;
        border-radius: 50px;
    }

        .readytostart .linkbutton a:hover {
            background: #FFFFFF;
        }


.bookchatdemo {
    background: url(../img/blue-bg.jpg) center center repeat;
    position: relative;
    padding: 80px 0;
    margin-top: 50px;
    margin-bottom: 50px;
    transition: 0.4s;
    border-radius: 10px;
    color: #FFFFFF;
}

    .bookchatdemo .section-title h2 {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: bold;
        text-transform: capitalize;
    }

    .bookchatdemo .linkbutton a {
        background: #FFD700;
        border: 0;
        padding: 10px 35px;
        color: #000000;
        transition: 0.4s;
        border-radius: 50px;
    }

        .bookchatdemo .linkbutton a:hover {
            background: #FFFFFF;
        }


.loanserviceslast {
    background: #0056A3;
    background-size: cover;
    position: relative;
    padding: 80px 0;
    margin-top: 50px;
    margin-bottom: 50px;
    transition: 0.4s;
    border-radius: 10px;
    color: #FFFFFF;
}

    .loanserviceslast .section-title h2 {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: bold;
    }
/*--------------------------------------------------------------
# BookAChat
--------------------------------------------------------------*/


.home-mortgage-calculator {
    background: url(../img/gray-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.4s;
    border-radius: 10px;
}

    .home-mortgage-calculator .section-title h2 {
        color: #000000;
        font-size: 20px;
        font-weight: bold;
    }



    .home-mortgage-calculator .linkbutton a {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .home-mortgage-calculator .linkbutton a:hover {
            background: #0056A3;
        }

    .home-mortgage-calculator .div-discounted-interest-rates {
        background-color: #003366;
        color: white;
        padding: 25px;
        border-radius: 25px;
        font-size: 20px
    }


.home-mortgage-calculator .yellowbutton button {
    background: #e9c400;
    border: 0;
    padding: 10px 35px;
    color: #000000;
    text-transform: uppercase;
    transition: 0.4s;
    border-radius: 50px;
}

    .home-mortgage-calculator .yellowbutton button:hover {
        background: #0055a5;
        color: #ffffff;
    }
/*--------------------------------------------------------------
# Program
--------------------------------------------------------------*/
.program {
    background: #0056A3;
    background-size: cover;
    position: relative;
    padding: 80px 0;
    margin-bottom: 50px;
    transition: 0.4s;
    border-radius: 10px;
    color: #FFFFFF;
}



.imgPortrait {
    border: 10px solid #ffffff;
    -ms-transform: rotate(-10deg); /* IE 9 */
    -webkit-transform: rotate(-10deg); /* Safari 3-8 */
    transform: rotate(-10deg);
}


/*--------------------------------------------------------------
# Program
--------------------------------------------------------------*/
.programreason {
    background: url(../img/gray-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.4s;
    border-radius: 10px;
}

    .programreason .section-title {
        padding-bottom: 20px;
    }
    .programreason .section-title h2 {
        color: #000000;
        font-size: 20px;
        font-weight: bold;
    }
    .programreason a {
        color: #0275d8;
        text-decoration: underline;
    }

    .programreason a:hover {
        text-decoration: none;
    }
    /*--------------------------------------------------------------
# Inner Page
--------------------------------------------------------------*/
    .inner-page {
    background: #FFFFFF;
    color: #000;
    margin-top: 120px;
    position: relative;
    padding: 10px 0 30px;
}

    .inner-page:before {
        content: "";
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }
.inner-page-calculator {
    background: #FFFFFF;
    color: #000;
    margin-top: 140px;
    position: relative;
    padding: 5px 0;
}

    .inner-page-calculator:before {
        content: "";
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }
/*--------------------------------------------------------------
# Popupmodel
--------------------------------------------------------------*/
.popupmodal {
    background: #FFFFFF;
    background-size: cover;
    position: relative;
    padding: 10px 5px;
}



    .popupmodal .popupmodal-img {
        position: relative;
        transition: 0.5s;
    }



        .popupmodal .popupmodal-img img {
            max-width: 100%;
            border: 4px solid #1384e9;
            position: relative;
        }


    .popupmodal .content {
        background: #0056A3;
    }

        .popupmodal .content h3 {
            font-weight: 600;
            font-size: 26px;
            margin-left: 10px;
            margin-top: 20px;
        }

        .popupmodal .content p {
            margin-left: 10px;
            margin-top: 20px;
        }

        .popupmodal .content ul {
            list-style: none;
            padding: 0;
        }

            .popupmodal .content ul li {
                padding-bottom: 10px;
            }

            .popupmodal .content ul i {
                font-size: 20px;
                padding-right: 4px;
                color: #eee;
            }

        .popupmodal .content p:last-child {
            margin-bottom: 0;
        }

    .popupmodal button {
        background: #001A31;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .popupmodal button:hover {
            background: #0056A3;
        }

.popupmodalalert {
    color: #000;
    background: #FFFFFF;
}

.card-header {
    background: #0056A3;
}

.card-text {
    color: black;
}

.paragraphtext {
    color: #443748;
    font-weight: bold;
    font-size: xx-large;
}

.inputgrouptext {
    background: #0056A3;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-color: #0056A3;
    color: #fff;
}

.checked {
    color: orange;
}

.bluespan {
    background: #0056A3;
    padding: 10px;
    font-size: 50px;
    font-weight: bolder;
    color: #fff;
}

.bluespanstar {
    background: #0056A3;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 17px;
    font-weight: bolder;
}

#rating {
    text-align: center;
    top: 30%;
    width: 100%;
    animation-duration: 3s;
}

    #rating .whitediv {
        font-size: 50px;
        padding: 0;
        color: #fff;
        opacity: 1;
        transition: all 150ms;
        display: inline-block;
        transform: rotateX(25deg);
        transform-origin: center center;
    }

    #rating .goldendiv {
        font-size: 50px;
        padding: 0;
        color: #ff0;
        opacity: 1;
        transition: all 150ms;
        display: inline-block;
        transform: rotateX(0deg);
        text-shadow: 0 0 30px #ffc;
    }

    #rating span.hover {
        color: #ff0;
        opacity: 1;
        transform: rotateX(0deg);
        text-shadow: 0 0 30px #ffc;
    }

.divclass {
    display: none;
}

.modal-title {
    color: #0056A3;
}

.notsurelink a, .notsurelink a:focus {
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
    text-decoration: underline;
    color: #443748;
}

    .notsurelink a:hover {
        color: #0056A3;
        text-decoration: none;
        font-weight: bold;
    }

#myDIV {
    border: 1px solid black;
    animation: mymove 5s ease;
}

@keyframes mymove {
    50% {
        font-size: 30px;
        color: gold;
    }
}

.sec-4-right-content {
    background: #ffffff;
    border: 1px solid #b0b0b0;
    box-shadow: -2px 2px 10px 1px #B0B0B2;
    color: #025ad2;
    float: right;
    margin-right: 10%;
    width: 70%;
    padding: 20px;
    text-align: center;
    transform: rotate(10deg);
}

    .sec-4-right-content h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .sec-4-right-content p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .sec-4-right-content img {
        width: 100%;
        height: 100%;
        margin-bottom: 20px;
        object-fit: cover;
    }

.sec-4-center-content {
    clear: both;
    float: left;
    margin-top: 80px;
    width: 100%;
}


.visible-div {
    display: block;
    
}

.hidden-div {
    display: none;
}


.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive-4by3 {
    padding-bottom: 75%
}

.checkedMark {
    background: url(/img/sec-4-li.png);
    background-repeat: no-repeat;
    background-position: left top;
    line-height: 40px;
    padding-left: 50px;
    padding-bottom: 20px;
    color: #ffffff;
}

.white-checkedMark {
    background: url(/img/li-white-checkmark.png);
    background-repeat: no-repeat;
    background-position: left top;
    line-height: 40px;
    padding-left: 50px;
    padding-bottom: 20px;
    color: #ffffff;
}

.black-checkedMark {
    background: url(/img/li-black-checkmark.png);
    background-repeat: no-repeat;
    background-position: left top;
    line-height: 40px;
    padding-left: 50px;
    padding-bottom: 20px;
    color: #ffffff;
}




/*---------Ajay Mahajan----------*/

/*Font Colors*/
.GreenColor, .tab-pane.active .GreenColor, #ULUpperTabMenu a span.GreenColor {
    color: green;
}

.RedColor, .tab-pane.active .RedColor, #ULUpperTabMenu a span.RedColor, .control-label.RedColor, #divPnlReview .control-label.RedColor {
    color: red;
}

.active .GreenColor, .active .RedColor, .topheading .GreenColor, .topheading .RedColor,
#ULUpperTabMenu .active a span.GreenColor, #ULUpperTabMenu .active a span.RedColor,
.topheading span.GreenColor, .topheading span.RedColor,
.topheading span.menuicon.GreenColor, .topheading span.menuicon.RedColor {
    color: white;
}
/*Font Colors*/


/*Menu Icons*/
#ULUpperTabMenu .menuicon {
    padding-top: 2px;
}
/*Menu Icons*/


/* Menu Tab of App Page */
.navbar-collapse {
    padding-left: 0px;
    padding-right: 0px;
}

#ULUpperTabMenu {
    margin-top: 5px;
}

    #ULUpperTabMenu.nav > li > a {
        padding: 10px 6px;
        text-align: left;
    }

    #ULUpperTabMenu.nav-pills > li {
        margin-right: 5px;
    }

        #ULUpperTabMenu.nav-pills > li:first-child a {
            margin-left: 10px;
        }

        #ULUpperTabMenu.nav-pills > li:last-child a {
            margin-right: 10px;
        }

        #ULUpperTabMenu.nav-pills > li a {
            background-color: #eee;
            margin-right: 5px;
            margin-left: 5px;
        }

        #ULUpperTabMenu.nav-pills > li.active a {
            background-color: #0055A5;
            outline: none;
            margin-left: 10px;
        }

.MenuNav2 .tab {
    background-color: #fff;
    color: #1a285f;
    font-size: 16px;
    height: 39px;
    line-height: 19px;
    padding: 10px;
    text-transform: uppercase;
}

.MenuNav2 .tab-right {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #999 #999 #999 -moz-use-text-color;
    border-image: none;
    border-style: solid solid solid none;
    border-width: 1px 1px 1px 0;
}

.MenuNav2 .tab-left-active {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-image: url("../img/tab-arrow-right.png");
    background-position: right center;
    background-repeat: no-repeat;
    border-color: #999 -moz-use-text-color #999 #999;
    border-image: none;
    border-style: solid none solid solid;
    border-width: 1px 0 1px 1px;
}

.MenuNav2 .tab-active {
    background-color: #0055A5;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    text-transform: uppercase;
}

.nav-pills.nav-wizard > li {
    position: relative;
    overflow: visible;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}

    .nav-pills.nav-wizard > li + li {
        margin-left: 0;
    }

    .nav-pills.nav-wizard > li:first-child {
        border-left: 0;
    }

        .nav-pills.nav-wizard > li:first-child a {
            border-radius: 5px 0 0 5px;
        }

    .nav-pills.nav-wizard > li:last-child {
        border-right: 0;
    }

        .nav-pills.nav-wizard > li:last-child a {
            border-radius: 0 5px 5px 0;
        }

    .nav-pills.nav-wizard > li a {
        border-radius: 0;
        background-color: #eee;
    }

    .nav-pills.nav-wizard > li .nav-arrow {
        position: absolute;
        top: 0px;
        right: -20px;
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 25px 0 20px 20px;
        border-color: transparent transparent transparent #eee;
        z-index: 150;
    }

    .nav-pills.nav-wizard > li .nav-wedge {
        position: absolute;
        top: 0px;
        left: -20px;
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 25px 0 20px 20px;
        border-color: #eee #eee #eee transparent;
        z-index: 150;
    }

    .nav-pills.nav-wizard > li:hover .nav-arrow {
        border-color: transparent transparent transparent #aaa;
    }

    .nav-pills.nav-wizard > li:hover .nav-wedge {
        border-color: #aaa #aaa #aaa transparent;
    }

    .nav-pills.nav-wizard > li:hover a {
        background-color: #aaa;
        color: #fff;
    }

    .nav-pills.nav-wizard > li.active .nav-arrow {
        border-color: transparent transparent transparent #0055A5;
    }

    .nav-pills.nav-wizard > li.active .nav-wedge {
        border-color: #0055A5 #0055A5 #0055A5 transparent;
    }

    .nav-pills.nav-wizard > li.active a {
        background-color: #0055A5;
        outline: none;
    }
#formInformationCollection .MenuNav.nav-pills.nav-wizard > li a span {
    padding-left: 3px;
}

/* Menu Tab of App Page */

#divMATab {
    margin-top: 10px;
}

.stickyPosition {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    top: 0;
}

/*Review*/
#divPnlReview .panel a {
    outline: none;
}
/*Review*/

/*Borders*/
.leftBorder {
    border-left: 1px dotted #808080;
}

/*Buttons / Actions */
.divAction {
    padding-top: 10px;
}

.btn-yellow {
    background-color: #ffd700;
    background-image: linear-gradient(to bottom, #fbc500 0%, #ffd700 100%);
    border: 1px solid #fbc500;
    border-radius: 5px;
    color: #a17f00;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    padding: 15px 15px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
}

    .btn-yellow:hover {
        background-color: #fbc500;
        background-image: linear-gradient(to bottom, #ffd700 0%, #fbc500 100%);
    }
/*Buttons / Actions */

/*Fields Minimum Width*/
.lib-col th{
    border: none !important;
    padding-bottom: 0 !important;
}

.lib-col label {
    margin-bottom: 0 !important;
}

.lib-col-td td {
    border-top: none !important;
    border-bottom: none !important;
}

.minWidth150 {
    min-width: 150px;
}

.minWidth200 {
    min-width: 200px;
}

.FutureLumpSumReceipt-col-1, .FutureMajorExpense-col-1 {
    min-width: 150px;
}

.VariableExpense-col-1, .VariableExpense-col-2, .VariableExpense-col-3, .VariableExpense-col-4 {
    min-width: 150px;
}

.VariableReceipt-col-1, .VariableReceipt-col-2, .VariableReceipt-col-3, .VariableReceipt-col-4 {
    min-width: 150px;
}

/*Fields Minimum Width*/

.CapitalizeField {
    text-transform: capitalize;
}
/*Fields Minimum Width*/

.modal-dialog .modal-header {
    padding-bottom: 0px;
    transform: translateY(30%);
    text-align: center;
}

.PleaseWait {
    left: 50% !important;
    transform: translate(-50%);
    -ms-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    top: 40% !important;
}

.strict::before {
    content: '*';
    font-size: 14px;
    font-family: inherit;
    color: #f00;
    padding-right: 2px;
    position: relative;
}

.fieldError {
    border: 1px solid #f51515 !important;
}


/* Tooltip container */
.tooltipCust {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
    .tooltipCust .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1000000000;
    }

/* Show the tooltip text when you mouse over the tooltip container */
    .tooltipCust:hover .tooltiptext {
        visibility: visible;
    }

.h1-header {
    font-size: calc(1.375rem + 1.5vw);
}

.h2-header, #dennesWelcomeMessage h1 {
    font-size: 20px;
}

.h3-header {
    font-size: calc(1.3rem + .6vw);
}

body .container .text-grey {
    font-size: 14px;
    padding: 0;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-weight: normal !important;
}

@media only screen and (min-width: 1200px) {
    .h1-header {
        font-size: 2.5rem;
    }

    .h2-header {
        font-size: 20px;
    }

    .h3-header {
        font-size: 1.75rem;
    }
}
.width162 {
    width: 162px
}

.before-none:before {
    display: none;
}

.hidden {
    display: none !important;
}

.normalFont {
    font-weight: normal !important;
}

#chatoffer-paragraph {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 767px) {
    #chatoffer-paragraph {
        width: 100%;
    }
}

.xxl-font {
    font-size: xx-large !important;
}

.transform-none {
    text-transform: none !important;
}

.pointer {
    cursor: pointer;
}

.swiper-button-prev:after, .swiper-button-next:after {
    cursor: pointer !important;
}

.hover-link:hover {
    color: #d9ba85 !important
}

.scale-on-hover:hover {
    transform: scale(1.1);
}

.required::after {
    content: " *";
    color: red;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    transform: scale(1.1) !important;
}

.yellow-button {
    background: #e9c400 !important;
    border: 0 !important;
    padding: 5px 20px !important;
    color: #000000 !important;
    transition: 0.4s !important;
    border-radius: 50px !important;
}

.yellow-button:hover {
    background: #0055a5 !important;
    color: #ffffff !important;
}

/* Public page hero and requested visual parity fixes */
.fhx-hero-band {
    width: 100%;
    min-height: 300px;
    height: 300px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-top: 0;
}

.home-hero-band {
    min-height: 545px;
    height: 545px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.pay-mortgage-hero {
    background-position: center top;
}

.hero-page-section {
    padding-top: 0;
    margin-top: 0;
}

.inner-page.hero-page-shell {
    margin-top: 0;
    padding-top: 0;
}

.hero-row {
    margin-left: 0;
    margin-right: 0;
}

#specialOfferDiv {
    margin-top: 0 !important;
    min-height: 170px;
    padding: 22px 0 56px;
    background: #ffffff !important;
}

#specialOfferMarquee {
    display: block;
    background: transparent !important;
    color: #0056A3;
    opacity: 1;
    transform: translateX(0);
}

#specialOfferMarquee.is-running {
    animation: specialOfferSlideIn 1.2s ease-out forwards;
}

#specialOfferMarquee.is-paused {
    animation-play-state: paused;
}

@keyframes specialOfferSlideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#specialOfferMarquee h2 {
    color: #0056A3 !important;
    margin: 0 0 18px;
}

#specialOfferMarquee p {
    margin-bottom: 18px;
}

#specialOfferMarquee .yellow-button {
    display: inline-block;
    margin-bottom: 36px;
}

.why-us .metric-card-body {
    justify-content: flex-start !important;
    gap: 4px;
    padding-top: 16px;
}

.why-us .metric-card-body .card-text {
    margin-bottom: 0;
}

.why-us .trustedamount,
.why-us #rating {
    margin-top: 0;
}

.why-us .trustedamount {
    padding-top: 10px;
    padding-bottom: 10px;
}

.contact-us-form {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .fhx-hero-band {
        min-height: 220px;
        height: 220px;
    }

    .home-hero-band {
        min-height: 500px;
        height: 500px;
    }

    .contact-us-form {
        max-width: 100%;
    }
}
