
@import url('../fonts/oswald/stylesheet.css');
@import url('../fonts/poppins/stylesheet.css');

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

:root {
    --primary-color: #0D45A2;
    --primarylight-color: #a6c8ff;
    --secondary-color: #14214E;
    --darkgrey-color: #3d3d3d;
    --grey-color: #9C9C9C;
    --grey-lightcolor: #F1F1F1;
}

body {
    width: 100%;
    font-family: "Poppins";
}

h1, h2, h3, h4, h5, h6, .btn, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: Oswald;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: #000;
}

    a:hover {
        color: #000;
    }

.text-primery {
    color: var(--secondary-color);
}

.back-primary {
    background: var(--primarylight-color);
    color: #000;
}


/* The Loader */
/* Loader Overlay */
#loader-wrapper {
    display: none; /* Change to flex to show loader */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
}


/* Main Loader Circle */
#loader {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #16a085;
    animation: spin 1.7s linear infinite;
    position: relative;
}

    /* Second Ring */
    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;
        animation: spin-reverse 0.6s linear infinite;
    }

    /* Third Ring */
    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;
        animation: spin 1s linear infinite;
    }

/* Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes spin-reverse {
    0% {
        transform: rotate(360deg);
    }

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

#loader-wrapper.show {
    display: flex;
    justify-content: center;
    align-items: center;
}


.wrapper {
    width: 100%;
}

.banner-section {
    width: 100%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    transition: 0.5s ease-in-out;
}

    header .header-right-section {
        width: calc(100% - 260px);
    }

    header .top-section {
        background: var(--primary-color);
        padding: 6px 0;
    }

        header .top-section .contact, header .top-section .social-icons {
            padding-inline: 20px;
            display: flex;
            gap: 15px;
        }

            header .top-section .social-icons a {
                color: #fff;
                font-size: 1.4rem;
                border-radius: 50%;
            }

            header .top-section .contact a {
                font-size: 1rem;
                color: #fff;
                text-decoration: none;
            }



                header .top-section .contact a i {
                    margin-right: 6px;
                }

    header .logo {
        background: #fff;
    }

        header .logo .logo-img {
            width: 300px;
        }

            header .logo .logo-img img {
                width: 100%;
            }

    header .right-nav-section {
        width: 100%;
    }

.navigation-menu {
    width: 100%;
}

header .navigation-menu ul {
    display: flex;
    margin-bottom: 0;
}

    header .navigation-menu ul li a {
        text-decoration: none;
        color: #000;
        font-size: 1rem;
        padding: 15px 16px;
        display: block;
        transition: 0.5s ease;
        position: relative;
    }

        header .navigation-menu ul li a:after {
            content: "";
            width: 0;
            height: 4px;
            background: var(--secondary-color);
            position: absolute;
            bottom: 0;
            left: 0;
            transition: 0.5s ease;
        }

        header .navigation-menu ul li a.active:after {
            content: "";
            width: 100%;
        }

        header .navigation-menu ul li a:hover:after {
            content: "";
            width: 100%;
        }

    header .navigation-menu ul li.drop-link {
        position: relative;
    }



        header .navigation-menu ul li.drop-link .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 250px;
            background: #fff;
            box-shadow: 2px 3px 10px -3px rgba(0, 0, 0, 0.28);
            color: #000;
        }

            header .navigation-menu ul li.drop-link .dropdown ul {
                display: block;
                padding-left: 0;
            }

                header .navigation-menu ul li.drop-link .dropdown ul li {
                    list-style: none;
                }

                    header .navigation-menu ul li.drop-link .dropdown ul li a {
                        color: #000;
                        padding: 10px 18px;
                    }

                    header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down {
                        display: none;
                        position: absolute;
                        top: 0;
                        left: 100%;
                        width: 250px;
                        background: #fff;
                        color: #000;
                        box-shadow: 2px 3px 10px -3px rgba(0, 0, 0, 0.28);
                    }

                        header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down ul {
                            display: block;
                            padding-left: 0;
                        }

                            header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down ul li {
                                list-style: none;
                            }

                                header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down ul li a {
                                    color: #000;
                                }

                        header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down.left-drop {
                            left: -100%;
                        }

                        header .navigation-menu ul li.drop-link .dropdown ul li.subdrop:hover .subdrop-down, header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down.show {
                            display: block;
                        }

            header .navigation-menu ul li.drop-link:hover .dropdown, header .navigation-menu ul li.drop-link .dropdown.show {
                display: block;
            }


header.scroll-down {
    /*transform: translate3d(0, -100%, 0);*/
    top: -100% !important;
}

header.scroll-up {
    /*transform: none;*/
    top: 0 !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.scroll-down .logo-section img {
    width: 60px;
}

main {
    margin-top: 88px;
}

.banner-content {
    width: 100%;
    /*height: 900px;*/
    position: relative;
}

    .banner-content video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .banner-content .banner-data {
        position: absolute;
        width: 60%;
        top: 0;
        left: 0;
        padding: 40px 70px;
        padding-right: 240px;
        z-index: 3;
        color: #fff;
        background: rgba(0, 0, 0, 0.78);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        clip-path: polygon(0 0, 76% 0, 100% 100%, 0% 100%);
    }

        .banner-content .banner-data h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .banner-content .banner-data p {
            font-size: 1rem;
            margin-bottom: 2.5rem;
        }

        .banner-content .banner-data .btn {
            background: var(--primary-color);
            color: #fff;
            font-size: 1.2rem;
            width: 160px;
        }

            .banner-content .banner-data .btn:hover {
                background: var(--secondary-color);
            }

    .banner-content .banner-button-section {
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 6;
        display: flex;
        gap: 5px;
    }

        .banner-content .banner-button-section button {
            width: 100%;
        }

        .banner-content .banner-button-section .carousel-control-prev, .banner-content .banner-button-section .carousel-control-next {
            width: 50px;
            height: 50px;
            background: #fff;
            color: #000;
            position: relative;
        }

.icon-img {
    width: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
}

    .icon-img img {
        width: 100%;
    }

.banner-bottom-section {
    background: var(--grey-lightcolor);
    padding-block: 25px;
    position: relative;
}

    .banner-bottom-section .banner-bot-slide .banner-slide-box {
        margin-inline: 5px;
    }

    .banner-bottom-section .banner-bot-slide .slick-track {
        padding: 8px 0;
    }

    .banner-bottom-section .main-service-box {
        width: 100%;
        border: none;
        padding: 12px 6px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.35s ease;
        border: 1px solid var(--grey-color);
    }

        .banner-bottom-section .main-service-box:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 30px rgba(0,0,0,0.18);
        }

        .banner-bottom-section .main-service-box a {
            color: #000;
        }

        .banner-bottom-section .main-service-box .icon-img {
            width: 50px;
            height: 50px;
            margin: 0 auto;
            margin-bottom: 20px;
            transition: 0.5s ease;
        }

            .banner-bottom-section .main-service-box .icon-img img {
                width: 100%;
            }

        .banner-bottom-section .main-service-box h4 {
            font-size: 1rem;
            text-align: center;
            transition: 0.5s ease;
            color: var(--primary-color);
        }

        .banner-bottom-section .main-service-box:hover .icon-img {
            transform: scale(1.1);
        }

        .banner-bottom-section .main-service-box:hover h4 {
            color: var(--secondary-color);
        }

    .banner-bottom-section .tabs-data-section {
        position: relative;
        min-height: 220px;
    }

        .banner-bottom-section .tabs-data-section .tab-content {
            border: solid 1px var(--primary-color);
            /*opacity: 0;*/
            /*transform: translateY(15px);*/
            /*transition: all 0.45s ease-in-out;*/
            background:#fff;
            padding: 10px;
            border-radius: 6px;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transform: translateY(5px);
            transition: opacity 0.3s ease, transform 0.8s ease;
        }



            .banner-bottom-section .tabs-data-section .tab-content .tab-image-section {
                width: 250px;
            }

            .banner-bottom-section .tabs-data-section .tab-content.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                position: relative;
            }

    .banner-bottom-section .main-service-box.active {
        border: solid 1px var(--primary-color);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    }


.tab-content.slide-in-right {
    transform: translateX(100%);
}

.tab-content.slide-in-left {
    transform: translateX(-100%);
}

.tab-content.slide-active {
    transform: translateX(0);
    opacity: 1;
}

.banner-box {
    height: 110px;
    width: 100%;
    background: var(--grey-lightcolor);
    padding-bottom: 70px;
    clip-path: ellipse(52% 100% at bottom);
    margin-top: -160px;
}



.main-service-box.active .icon-img img {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.headding-section {
    margin-bottom: 50px;
    width: 50%;
    margin-inline: auto;
    position: relative;
}

    .headding-section h3 {
        font-size: 1.6rem;
        color: var(--primary-color);
        font-weight: 600;
    }

    .headding-section h5 {
        font-size: 1.3rem;
        color: var(--darkgrey-color);
        font-weight: 400;
        width: fit-content;
        margin: 0 auto;
        padding: 2px 5px;
        position: relative;
    }

    .headding-section h6 {
        font-size: 1.1rem;
        color: #000;
        font-weight: 300;
    }

    .headding-section.left-heading {
        margin-inline: unset;
        width: 100%;
    }

        .headding-section.left-heading h5 {
            margin: unset;
        }

            .headding-section.left-heading h5:before {
                display: none;
            }

        .headding-section.left-heading:after {
            margin: 0;
            left: 0;
        }

.view-more-btn {
    background: #fff;
    color: var(--secondary-color);
    border: solid 1px var(--secondary-color);
    font-size: 1.1rem;
    padding: 8px 15px;
    white-space: nowrap;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

    .view-more-btn i {
        transition: all 0.6s ease-in-out;
    }

    .view-more-btn:hover {
        background: var(--secondary-color);
        color: #fff;
    }

        .view-more-btn:hover i {
            margin-left: 10px;
        }

    .view-more-btn.fill-button {
        background: var(--secondary-color);
        color: #fff;
        border-color: var(--secondary-color);
    }

        .view-more-btn.fill-button:hover {
            background: var(--secondary-color);
            color: #fff;
            border-color: var(--secondary-color);
        }


.quote-section {
    padding: 10px;
}

.get-quote {
    position: fixed;
    bottom: 5px;
    transition: all 0.3s ease;
    z-index: 999;
}

.quote-body {
    position: absolute;
    bottom: 50px;
    width: 400px;
    background: #fff;
    padding: 15px;
    border: solid 2px var(--primary-color);
    display: none;
    overflow: hidden;
    border-radius: 10px;
    /*height:0;*/
    /*transition:0.7s ease;*/
}

.get-quote-btn {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.quote-body ul li {
    border-bottom: solid 1px var(--primary-color);
    list-style: none;
}

    .quote-body ul li a {
        padding: 10px;
        display: block;
        transition: 0.5s ease;
    }

        .quote-body ul li a:hover {
            background: var(--primary-color);
            color: #fff;
        }

.about-section .my-mission-content {
    border: dashed 2px var(--grey-color);
    padding: 10px 20px;
    margin-top: 50px;
    margin-bottom: 30px;
    max-width: 300px;
}

    .about-section .my-mission-content p {
        color: var(--darkgrey-color);
        margin-bottom: 0;
    }

    .about-section .my-mission-content span {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-right: 15px;
    }

.about-section .abot-img {
    width: 100%;
}

    .about-section .abot-img .left-box {
        width: 80%;
        height: 650px;
    }

        .about-section .abot-img .left-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .about-section .abot-img .left-box-img {
        transition: 1s ease;
    }

        .about-section .abot-img .left-box-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-section .abot-img .left-box-img:hover {
            margin-top: 20px;
        }

    .about-section .abot-img .profile-photo {
        width: 280px;
        height: 300px;
        position: absolute;
        right: 30px;
        top: unset;
        z-index: 9;
        bottom: 20px;
        border: solid 10px #fff;
    }

        .about-section .abot-img .profile-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.about-section .about-card .card-img {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    padding: 12px;
    margin: 0 auto;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.2392156863);
    margin-bottom: 16px;
}

    .about-section .about-card .card-img img {
        width: 100%;
        height: 100%;
    }



.servicess-section .service-card {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

    .servicess-section .service-card h4 {
        font-size: 1.3rem;
        color: var(--primary-color);
    }

    .servicess-section .service-card .card-img {
        width: 100%;
        height: 240px;
        position: relative;
        overflow: hidden;
    }

    .servicess-section .service-card .card-body {
        text-align: center;
    }

.card-img .card-img-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    top: unset;
    width: 100%;
    height: 70px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, #FFF 100%);
}


.servicess-section .service-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.7s ease;
}

.servicess-section .service-card .card-img .card-icon {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: -20px;
    left: unset;
    padding: 15px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.233);
}

    .servicess-section .service-card .card-img .card-icon img {
        width: 90%;
        object-fit: unset;
    }

.servicess-section .service-card:hover .card-img img {
    transform: scale(1.1);
}

/*protection-section*/

.protection-section {
    background: url('../images/protecting-dreams.jpg') no-repeat top;
    background-size: 100% 80%;
    background-position: center;
    background-attachment: fixed;
}

/*protection-section end*/

.sell-property-section .property-bg {
    background: var(--grey-lightcolor);
    padding-inline: 50px;
    padding-block: 50px;
    display: flex;
    align-items: center;
}

.sell-property-section .property-img {
    height: 100%;
}

    .sell-property-section .property-img img {
        height: 100%;
        object-fit: cover;
    }

.mortagage-add-section {
    width: 100%;
    background: url(../images/mortgage-image.jpg) no-repeat top;
    background-attachment: fixed;
    background-size: cover;
    padding-block: 80px;
}

    .mortagage-add-section .mortagage-add-box {
        background: rgba(39, 59, 86, 0.91);
        padding: 100px;
        color: #fff;
    }

        .mortagage-add-section .mortagage-add-box h3, .mortagage-add-section .mortagage-add-box h6 {
            font-weight: 300;
        }

        .mortagage-add-section .mortagage-add-box h6 {
            margin-bottom: 100px;
        }

.paginator .arrow {
    /*  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;*/
    background: #fff;
    width: 45px;
    height: 45px;
    border: solid 1px var(--primary-color);
    color: #000;
}

    .paginator .arrow.next, .paginator .arrow.next2 {
        /*right: -20px;*/
        left: unset;
    }

    .paginator .arrow:hover {
        background: var(--primary-color);
        color: #fff;
    }

.carol-vilani-slider-section {
    width: 100%;
}

    .carol-vilani-slider-section .slide-box {
        position: relative;
        width: 100%;
        height: 300px;
        margin-inline: 10px;
        overflow: hidden;
    }

        .carol-vilani-slider-section .slide-box iframe {
            width: 100%;
            height: 100%;
        }

        .carol-vilani-slider-section .slide-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .carol-vilani-slider-section .slide-box .video-ic {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9;
            opacity: 0.8;
            font-size: 3rem;
        }

        .carol-vilani-slider-section .slide-box:hover img {
            transform: scale(1.1);
        }

        .carol-vilani-slider-section .slide-box:hover .video-ic {
            opacity: 1;
        }

.recently-sold-section .recently-sold-box {
    overflow: hidden;
}

    .recently-sold-section .recently-sold-box img {
        transition: 0.5s;
    }

    .recently-sold-section .recently-sold-box iframe {
        width: 100%;
        height: 600px;
    }

    .recently-sold-section .recently-sold-box .video-ic {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9;
        opacity: 0.8;
        font-size: 3rem;
    }

    .recently-sold-section .recently-sold-box:hover img {
        transform: scale(1.1);
    }

    .recently-sold-section .recently-sold-box:hover .video-ic {
        opacity: 1;
    }

.services-section .card {
    border: solid 1px var(--grey-color);
}

    .services-section .card h3 {
        font-size: 1.2rem;
    }

    .services-section .card h6 {
        margin-bottom: 2rem;
    }

    .services-section .card:hover {
        border-color: var(--secondary-color);
    }

        .services-section .card:hover h3 {
            color: var(--secondary-color);
        }

/*thead advantage color-profile working*/
.advantages-section {
    /*background: #f2f2f2;*/
    padding: 60px 0;
}

/* Left Image */
.insurance-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Right Panel */
.advantages-box {
    background: #1d2b5f;
    color: #fff;
    padding: 40px;
    height: 100%;
}

/* Cards */
.adv-card {
    background: #fff;
    color: #333;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: start;
    margin-bottom: 15px;
}

    .adv-card h6 {
        font-weight: 600;
        color: #1d2b5f;
    }

.adv-icon {
    font-size: 22px;
    color: #1d2b5f;
}

.adv-icon img{
   width:45px;
}

/*thead advantage end*/


.what-weserve-section .what-weserv-image {
    width: 100%;
    height: 100%;
}

    .what-weserve-section .what-weserv-image video {
        width: 100%;
        height: 100%;
    }

    .what-weserve-section .what-weserv-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.what-weserve-section .what-weserv-content {
    height: 100%;
}

    .what-weserve-section .what-weserv-content .row {
        height: 100% !important;
    }

    .what-weserve-section .what-weserv-content .what-weserve-inner-box {
        background: var(--grey-lightcolor);
        padding: 20px;
        height: 100%;
        padding-bottom: 40px;
    }

.inner-contact {
    background: var(--primarylight-color);
}




.testimonial-section .testimonial-slide .slick-list {
    padding-block: 16px !important;
    padding-inline: 0 !important;
    padding-top: 100px !important;
}

.testimonial-section .testimonial-slide .testimonial-content {
    text-align: center;
    margin-inline: 10px;
    padding-inline: 20px;
    padding-block: 30px;
    box-shadow: 0px 2px 3px -2px #000;
    border-radius: 10px;
    transition: 1s ease-in-out;
    position: relative;
}

.testimonial-section .testimonial-slide .testimonial-content p{
    font-size:1rem;
}
    .testimonial-section .testimonial-slide .testimonial-content:after {
        content: '';
        width: 70%;
        height: 4px;
        border-radius: 10px;
        background: var(--secondary-color);
        position: absolute;
        bottom: 0;
        z-index: 9;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .testimonial-section .testimonial-slide .testimonial-content.slick-center {
        margin-top: -70px;
    }

    .testimonial-section .testimonial-slide .testimonial-content p {
        position: relative;
    }

        .testimonial-section .testimonial-slide .testimonial-content p img {
            width: 40px;
            position: absolute;
            z-index: -1;
        }

            .testimonial-section .testimonial-slide .testimonial-content p img.top {
                top: -30px;
                left: 0;
            }

            .testimonial-section .testimonial-slide .testimonial-content p img.bot {
                bottom: -40px;
                top: unset;
                left: unset;
                right: 0;
            }

.testimonial-section .testimonial-slide .slick-list {
    position: relative;
}

.testimonial-section .testimonial-slide .slick-track {
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) !important;
}


/* Left & Right Slides */
.slick-active .z-card {
    transform: scale(0.85) translateZ(-50px);
    opacity: 0.6;
}

/* Center Slide (TOP) */
.slick-center .z-card {
    transform: scale(1) translateZ(0);
    opacity: 1;
    z-index: 5;
}

.contact-form-section {
    background: url(../Images/cantactus-bg.jpg) no-repeat left;
    background-size: 60% 100%;
    width: 100%;
    height: 100%;
}


    .contact-form-section .card .h4 {
        color: var(--primary-color);
    }

    .contact-form-section .contact-card {
        background: rgba(255, 255, 255, 0.7);
    }

    .contact-form-section .contact-map {
        width: 100%;
        position: relative;
        height: 100%;
    }

        .contact-form-section .contact-map iframe {
            width: 100%;
            height: 100%;
        }

        .contact-form-section .contact-map .map-content {
            position: absolute;
            width: 100%;
            padding: 20px;
            bottom: 10px;
            left: 0;
            background: var(--primary-color);
            color: #fff;
        }

            .contact-form-section .contact-map .map-content a {
                text-decoration: none;
                color: #fff;
                font-size: 1rem;
            }

.form-control, .form-select {
    padding-block: 0.9rem;
}

.textarea {
    height: 160px;
}

footer {
    background: var(--secondary-color);
    color: #fff;
    padding-top: 40px;
}

    footer .footer-top {
        margin-bottom: 20px;
    }

        footer .footer-top p {
            font-size: 0.9rem;
        }

        footer .footer-top .logo-img {
            width: 100%;
            background: #fff;
            padding: 10px 20px;
        }

            footer .footer-top .logo-img img {
                width: 100%;
            }

    footer .foot-bot h3 {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        border-bottom: solid 1px #fff;
        padding-bottom: 10px;
    }

    footer .foot-bot ul li {
        font-size: 0.9rem;
        font-weight: 300;
        margin-bottom: 15px;
    }

        footer .foot-bot ul li a {
            text-decoration: none;
            color: #fff;
            font-size: 1rem;
        }

            footer .foot-bot ul li a:hover {
                text-decoration: underline;
            }

    footer .foot-bot ul.company-profile-logo li a {
        width: 150px;
        display: block;
    }

        footer .foot-bot ul.company-profile-logo li a img {
            width: 100%;
        }

    footer .follow-me {
        gap: 20px;
    }

        footer .follow-me li a {
            font-size: 2rem;
            color: #fff;
        }

    footer .foot-end {
        padding-block: 10px;
        border-top: solid 1px #fff;
    }

        footer .foot-end p {
            font-size: 0.9rem;
        }

            footer .foot-end p a {
                color: #fff;
            }

        footer .foot-end ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            padding: 0 10px;
        }

.overly {
    display: none;
    background: rgba(0, 0, 0, 0.199);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

    .overly.show {
        display: block;
    }

.inner-banner-content {
    width: 100%;
    height: 400px;
    position: relative;
}

    .inner-banner-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .inner-banner-content .innertop-header-content {
        position: absolute;
        left: 40px;
        bottom: 20px;
        text-align: left;
    }

        .inner-banner-content .innertop-header-content h2 {
            color: #fff;
            font-size: 3.5rem;
        }

        .inner-banner-content .innertop-header-content .breadcrumb li, .inner-banner-content .innertop-header-content .breadcrumb a {
            color: #fff;
        }

.accordion .accordion-item {
    border: none;
    box-shadow: 0px 5px 8px -4px rgba(0, 0, 0, 0.24);
}

    .accordion .accordion-item .accordion-button {
        font-size: 1.4rem;
    }

        .accordion .accordion-item .accordion-button:not(.collapsed) {
            color: var(--primary-color);
            background: none;
        }

.insurence-patch-image .card {
    background: var(--grey-lightcolor);
    border: 0;
    margin-left: -60px;
    position: relative;
    z-index: -1;
    padding-left: 80px;
    padding-block: 20px;
}

.request-quote-section {
    background: var(--grey-lightcolor);
    padding-block: 30px;
}

    .request-quote-section .headding-section h5 {
        background: var(--grey-lightcolor);
        position: relative;
    }

.business-insurance-content .card {
    height: 100%;
}

    .business-insurance-content .card .card-img {
        width: 100%;
        height: 200px;
    }

        .business-insurance-content .card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/*carior section*/
.carriers-section .card {
    border: solid 1px #fff !important;
}

    .carriers-section .card .card-body {
        height: 160px;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.carriers-section .carriers-slide {
    margin-inline: 10px;
}

.carriers-section .card .pay-bill-btn {
    border: solid 1px var(--primary-color);
    padding: 5px 10px;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 110px;
    margin: 0 auto;
    margin-top: 5px;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.5s ease;
}

.carriers-section .card:hover {
    border: solid 1px var(--primary-color) !important;
}

    .carriers-section .card:hover .pay-bill-btn {
        background: var(--primary-color);
        width: 115px;
        color: #fff;
    }

.carriers-section .slick-track {
    padding: 30px 0;
}
/*carior section end*/

.page-heading-section {
    background: var(--secondary-color);
    color: #fff;
}
/*team section*/
.team-section .profile-card {
    transition: all 0.4s ease;
}

    .team-section .profile-card .profile-img {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }

        .team-section .profile-card .profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .team-section .profile-card .card-body {
        text-align: center;
    }

    .team-section .profile-card .review-star li {
        color: #d4bc00;
    }

    .team-section .profile-card .card-body .h4 {
        font-size: 1.2rem;
        display: block;
    }

    .team-section .profile-card .card-body .h6 {
        font-size: 0.9rem;
        display: block;
        font-style: italic;
    }

    .team-section .profile-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    }
/*team section end*/
.insurance-quote-section .card-body {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.insurance-quote-section .card-img {
    width: 100%;
    height: 270px;
    overflow: hidden;
}

    .insurance-quote-section .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s ease;
    }

.insurance-quote-section .service-card:hover img {
    transform: scale(1.1);
}


@media (max-width: 1600px) {
    header .navigation-menu ul li a {
        padding: 24px 9px;
    }

    header .container-fluid {
        width: 90%;
    }
}



@media (max-width: 1400px) {
    .banner-section {
        margin-top: 70px;
    }

    header .navigation-menu ul li a {
        padding: 12px 8px;
        font-size: 0.9rem;
    }

    /* .banner-content{
        height:700px;
    }*/

    .banner-content .carousel, .banner-content .carousel-inner, .banner-content .carousel-item {
        height: 100%;
    }

        .banner-content .carousel-item img {
            height: 100%;
            object-fit: cover;
        }

    header .logo .logo-img {
        width: 260px;
    }

    header .top-section {
        padding: 3px 0;
    }

    main {
        margin-top: 85px;
    }

    .adv-card {
        padding: 12px 12px;
        margin-bottom: 10px;
    }

    .adv-card p{
        font-size:0.9rem;
    }

    .testimonial-section .testimonial-slide .testimonial-content p {
        font-size: 0.9rem;
    }

}


@media (max-width: 991px) {
    .navigation-menu {
        position: fixed;
        width: 300px;
        height: 100vh;
        overflow: auto;
        top: 0;
        left: 0;
        background: #fff;
        padding: 10px;
        transform: translateX(-110%);
        transition: 0.7s ease;
    }

        .navigation-menu.show {
            transform: translateX(0%);
        }

    .menu-header {
        background: #0c55a5;
        padding: 0 10px;
        color: #fff;
    }

    header .logo-section .logo-img img {
        width: 190px;
    }

    header .container-fluid {
        width: 100%;
    }

    .hamburg-menu .hamburg-btn {
        font-size: 2rem;
        color: #000 !important;
    }

    main {
        margin-top: 78px;
    }

    header .right-nav-section {
        width: auto;
    }

    header .navigation-menu ul {
        display: block;
        padding: 10px;
    }

        header .navigation-menu ul li.drop-link .dropdown {
            position: relative;
            width: 100%;
            top: 0;
            box-shadow: none;
        }

            header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down {
                position: relative;
                width: 100%;
                top: 0;
                left: 0;
                box-shadow: none;
            }

    .navigation-menu .menu-close {
        font-size: 1.6rem;
        color: #fff;
    }

    .banner-content .banner-data {
        padding: 12px 22px;
        padding-right: 140px;
    }

        .banner-content .banner-data h2 {
            font-size: 1.5rem;
        }

        .banner-content .banner-data p {
            font-size: 0.8rem;
        }

    .banner-bottom-section .row .col-6:nth-child(2) .main-service-box {
        border-right: 0;
    }

    .about-section .abot-img .left-box {
        width: 100%;
    }

    .about-section .abot-img .profile-photo {
        width: 200px;
        height: 240px;
        position: relative;
        right: 0;
        top: 50%;
        left: 0;
        transform: translateY(-30%);
        z-index: 9;
        border: solid 20px #fff;
    }

    .testimonial-section .testimonial-slide .slick-list:after {
        display: none;
    }

    .mortagage-add-section .mortagage-add-box {
        padding: 40px;
    }

    .services-section .card {
        margin-bottom: 15px;
    }

    .contact-form-section .contact-form {
        width: 100%;
        /*padding: 20px 20px;*/
    }

    .headding-section {
        width: 90%;
    }

    header .navigation-menu ul li a {
        color: #000;
        padding: 12px 9px;
    }

    .banner-box {
        display: none;
    }

    .banner-bottom-section {
        margin-top: 0;
    }

    /* .banner-content {
            height: 360px;
        }*/

    .banner-content .carousel, .banner-content .carousel-inner, .banner-content .carousel-item {
        height: 100%;
    }

        .banner-content .carousel-item img {
            height: auto;
            object-fit: contain;
        }


    header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down.left-drop {
        left: 0;
    }

    header .right-nav-section {
        width: auto;
        justify-content: end;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {

    .contact-form-section{
        background-size:100% 100%;
    }

    .banner-content .banner-data {
        padding: 12px 22px;
        padding-right: 80px;
        width: 70%;
    }

    .contact-form-section .contact-map {
        height: 450px;
    }

    .sell-property-section .property-bg {
        padding-block: 20px;
    }

    .paginator .arrow.prev, .paginator .arrow.prev2 {
        left: 0;
    }

    .paginator .arrow.next, .paginator .arrow.next2 {
        right: 0;
        left: unset;
    }

    .headding-section {
        width: 100%;
    }

  

    main {
        margin-top: 68px;
    }

    .banner-section {
        margin-top: 62px;
    }

    .banner-content .banner-data p {
        font-size: 0.9rem;
    }

    .headding-section h3 {
        font-size: 1.3rem;
    }

    .headding-section h5 {
        font-size: 1.1rem;
    }

    .carousel-control-next, .carousel-control-prev {
        z-index: 99;
    }

    .inner-banner-content .innertop-header-content h2 {
        font-size: 2rem;
    }

    .inner-banner-content {
        width: 100%;
        height: 260px;
    }

    .testimonial-section .testimonial-slide .testimonial-content {
        padding-inline: 0;
    }

    header .navigation-menu ul li.drop-link .drop-arrow, header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .drop-arrow {
        width: 30px;
        height: 30px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .what-weserve-section .what-weserv-content .row {
        height: auto !important;
    }

    .carriers-section .row-cols-1 .col {
        width: 50%;
    }

    .banner-content .banner-data {
        padding: 12px 18px;
        padding-right: 22px;
        padding-right: 30px;
        width: 100%;
        clip-path: none;
    }

    .quote-body {
        width: 330px;
    }
}

@media (max-width: 450px) {

    .carriers-section .row-cols-1 .col {
        width: 100%;
    }
}


/*capcha*/

.captchaField {
    border: 1px solid var(--darkGrey-color);
    /*padding: 15px;*/
    max-width: 400px;
    border-radius: 5px;
}



.CaptchaWrap {
    position: relative;
}



.CaptchaTxtField {
    border-radius: 5px;
    border: 1px solid #ccc;
    display: block;
    box-sizing: border-box;
}

#UserCaptchaCode {
    padding: 15px 10px;
    outline: none;
    font-size: 18px;
    width: 100%;
}

#CaptchaImageCode {
    position: relative;
    text-align: center;
    margin-top: 15px;
    padding: 0px 0;
    width: calc(100% - 42px);
    overflow: hidden;
}

.capcode {
    font-size: 46px;
    display: block;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
    letter-spacing: 1px;
    color: #ccc;
    font-family: 'Roboto Slab', serif;
    font-weight: 100;
    font-style: italic;
    width: 100%;
}

.ReloadBtn {
    width: 42px;
    height: 42px;
    border: 0px;
    background: var(--primary-color);
    padding: 8px;
    border: solid 1px var(--primary-color);
}

    .ReloadBtn img {
        width: 100%;
        transition: 0.5s ease;
    }

    .ReloadBtn:hover img {
        transform: rotate(180deg);
    }

.btnSubmit {
    margin-top: 15px;
    border: 0px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.captchaField .error {
    color: red;
    font-size: 12px;
    /*  display: none;*/
}

.captchaField .success {
    color: green;
    font-size: 18px;
    margin-bottom: 15px;
    display: none;
}


/*endcapcha*/
