﻿
@import url('../fonts/inter/inter-stylesheet.css');
@import url('../fonts/javanese/javanese-stylesheet.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0068a7;
    --primary-light-color: #E5F5FC;
    --secondary-color: #4e95c1;
    --darkgrey-color: #3d3d3d;
    --grey-color: #9C9C9C;
    --grey-lightcolor: #F1F1F1;
}

body {
    width: 100%;
    font-family: 'Inter 18pt';
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Javanese Text';
    font-weight: 600;
}

a {
    text-decoration: none;
    color: #000;
}

    a:hover {
        color: #000;
    }

.text-primery {
    color: var(--secondary-color);
}

.wrapper {
    width: 100%;
}

.banner-section {
    width: 100%;
    margin-top: 100px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    transition: 0.7s ease-in-out;
}

.top-section {
    padding: 8px 0;
    background: var(--primary-color);
}

    header .container-fluid {
        width: 85%;
    }


        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;
        padding: 10px 20px;
        width:250px;
        
        position:relative;
    }

        header .logo .logo-img {
            width: 250px;
            position:absolute;
            top: -40px;
        }

            header .logo .logo-img img {
                width: 100%;
            }


.navigation-menu{
    background:#fff;
}

header .navigation-menu ul {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

        header .navigation-menu ul li a {
            text-decoration: none;
            font-size: 1rem;
            padding: 20px 18px;
            display: block;
            transition: 0.5s ease;
            position: relative;
            z-index:1;
        }

            header .navigation-menu ul li a:after {
                content: "";
                width: 100%;
                height: 0;
                background: var(--primary-color);
                position: absolute;
                bottom: 0;
                left: 0;
                transition: 0.2s ease;
                z-index:-1;
            }

            header .navigation-menu ul li a.active:after {
                content: "";
                width: 100%;
            }

            header .navigation-menu ul li a:hover:after{
                content: "";
                height: 100%;
            }

            header .navigation-menu ul li a:hover {
                color: #fff;
            }
        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: 5px 10px;
                        }

                        header .navigation-menu ul li.drop-link .dropdown ul li a:hover {
                            color: #fff;
                        }

                        header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down {
                            display: none;
                            position: absolute;
                            top: 85%;
                            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 {
                            display: block;
                        }

            header .navigation-menu ul li.drop-link:hover .dropdown {
                display: block;
            }

.scroll-down header {
    transform: translate3d(0, -100%, 0);
}

.scroll-up header {
    transform: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.scroll-down .logo-section img {
    width: 60px;
}

main {
    padding-top: 100px;
}

.banner-content {
    width: 100%;
    /*height: 900px;*/
    position: relative;
}

    .banner-content .banner-data {
        position: absolute;
        max-width: 910px;
        top: unset;
        left: 0;
        padding: 40px;
        right: 0;
        z-index: 3;
        color: #fff;
        margin: 0 auto;
        text-align: center;
        bottom: 260px;
    }

        .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(--secondary-color);
            color: #fff;
            font-size: 1.2rem;
            width: 160px;
        }

            .banner-content .banner-data .btn:hover {
                background: var(--primary-color);
            }

.icon-img {
    width: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
}

    .icon-img img {
        width: 100%;
    }

.banner-bottom-section {
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    max-width: 1320px;
    margin: 0 auto;
    background: #fff;
    padding-block: 20px;
    z-index: 4;
    border-radius: 10px;
}

    .banner-bottom-section .main-service-box {
        width: 100%;
        padding: 10px;
    }

        .banner-bottom-section .main-service-box a {
            color: #000;
        }

        .banner-bottom-section .main-service-box .icon-img {
            width: 45px;
            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: 1.1rem;
            text-align: center;
            margin-bottom: 1.2rem;
            transition: 0.5s ease;
        }

        .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);
        }

    


.headding-section {
    margin-bottom: 50px;
    width: 50%;
    margin-inline: auto;
    position: relative;
}

    .headding-section h3 {
        font-size: 2rem;
        color: var(--primary-color);
        font-weight: 400;
        margin-bottom: 0;
        line-height: 20px;
    }

    .headding-section h5 {
        font-size: 1.3rem;
        color: #000;
        font-weight: 400;
        width: fit-content;
        font-family: 'Inter 18pt';
        margin: 0 auto;
        /*background: #fff;*/
        position: relative;
    }

      

    .headding-section h6 {
        font-size: 1.1rem;
        color: #000;
        font-weight: 300;
    }

    .headding-section:after {
        content: "";
        width: 30%;
        height: 1px;
        position: absolute;
        bottom: -6px;
        left: 0;
        right: 0;
        margin: 0 auto;
        background: var(--primary-color);
    }

    .headding-section.left-heading {
        margin-inline: unset;
        width: 100%;
    }

        .headding-section.left-heading h5 {
            margin: unset;
        }

            .headding-section.left-heading h5:before, .headding-section.left-heading h5:after {
                display: none;
            }

        .headding-section.left-heading:after {
            margin: 0;
            left: 0;
        }

.view-more-btn {
    background: var(--primary-color);
    color: #fff;
    border: solid 1px var(--secondary-color);
    font-size: 1.1rem;
    padding: 8px 18px;
    min-width: 160px;
    border-radius:30px;
    white-space: nowrap;
}

    .view-more-btn:hover {
        background: var(--secondary-color);
        color: #fff;
    }

section.about-section img {
    height: 100%;
    object-fit: cover;
}

.about-section .my-mission-content {
    border: dashed 2px var(--grey-color);
    padding: 10px 20px;
    margin-top: 50px;
    margin-bottom: 30px;
    max-width: 400px;
}

    .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-content{
    background:var(--primary-light-color);
}

.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: 330px;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-70%);
        z-index: 9;
        border: solid 20px #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 .card-img {
        width: 100%;
        position: relative;
    }

        .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: 90px;
            height: 90px;
            margin:0 auto;
            left: 10px;
            padding: 20px;
            background: var(--primary-light-color);
            border-radius: 50%;
            box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.233);
            margin-bottom:20px;
        }

            .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);
    }

.hard-mony-loan-section .hard-mony-loan-content {
    background:var(--primary-light-color);
}

.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(--secondary-color);
    color: #000;
}

    .paginator .arrow.next, .paginator .arrow.next2 {
        right: -20px;
        left: unset;
    }

    .paginator .arrow.prev, .paginator .arrow.prev2 {
        left: -20px;
    }

    .paginator .arrow:hover {
        background: var(--secondary-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);
        }

.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;
    }

.testimonial-section .testimonial-slide .slide-box {
    text-align: center;
    margin-inline: 10px;
    padding-inline: 60px;
    padding-block: 45px;
}

    .testimonial-section .testimonial-slide .slide-box .profile-img {
        width: 80px;
        height: 80px;
        margin: 0 auto;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 2rem;
    }

        .testimonial-section .testimonial-slide .slide-box .profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .testimonial-section .testimonial-slide .slide-box p {
        position: relative;
    }

        .testimonial-section .testimonial-slide .slide-box p img {
            width: 40px;
            position: absolute;
            z-index: -1;
        }

            .testimonial-section .testimonial-slide .slide-box p img.top {
                top: -30px;
                left: 0;
            }

            .testimonial-section .testimonial-slide .slide-box p img.bot {
                bottom: -40px;
                top: unset;
                left: unset;
                right: 0;
            }

    .testimonial-section .testimonial-slide .slide-box.slick-active:after {
        border-left: solid 2px var(--grey-color);
    }

.testimonial-section .testimonial-slide .slick-list {
    position: relative;
}

    .testimonial-section .testimonial-slide .slick-list:after {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        background: var(--grey-color);
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

.contact-form-section .contact-form {
    background:var(--primary-light-color);
    padding:30px;
}

.contact-form-section .contact-map {
    width: 100%;
    position: relative;
    height: 79%;
}

    .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 {
    padding-block: 0.9rem;
}

.textarea {
    height: 160px;
}


/*footer section*/


footer {
    background: var(--primary-color);
    color: #fff;
    padding-top: 40px;
}

   

        footer .footer-top .logo-img {
            width: 200px;
            margin-bottom: 20px;
        }

            footer .footer-top .logo-img img {
                width: 100%;
            }

    footer .foot-bot h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    footer .foot-bot ul{
        margin-bottom:20px;
    }

    footer .foot-bot ul li {
        font-size: 0.9rem;
        font-weight: 300;
    }

        footer .foot-bot ul li a {
            text-decoration: none;
            color: #fff;
        }

    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;
}

    .inner-banner-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .inner-banner-content .innertop-header-content {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: 20px;
        width: fit-content;
        text-align: center;
    }

        .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;
        }


.ineer-page-content .h3 {
    font-family: 'Inter 18pt';
}

.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*/
.carrier-section .card {
    border: solid 1px #fff !important;
}

    .carrier-section .card:hover {
        border: solid 1px var(--primary-color) !important;
    }
/*carior section end*/

/*team section*/

.teams-section .card{
    overflow:hidden;
}

.teams-section .team-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    background: #0000009f;
    padding: 10px;
    width: 100%;
    color: #fff;
    transition:0.5s ease;
}

.teams-section .card img {
    transition:0.5s ease;
}

.teams-section .card:hover .team-content {
    bottom:0;
}

.teams-section .card:hover img {
    transform:scale(1.1);
}

.teams-section .team-content p{
    margin-bottom:0;
}

.profile-page .card {
    background:var(--primary-light-color);
}

.profile-page .profile-img {
    width:300px;
    background:#fff;
    padding:15px;
    margin-bottom:10px;
}
/*team section end*/
@media (max-width: 1200px) {
    .banner-content .banner-data {
            bottom: unset;
            top: 20px;
        }

            .banner-content .banner-data h2 {
                font-size: 2.5rem;
            }

        header .navigation-menu ul li a {
            padding: 20px 8px;
        }
    }

    @media (max-width: 1024px) {
        .banner-bottom-section {
            position: relative;
        }
    }


    @media (max-width: 991px) {
        .navigation-menu {
            position: fixed;
            width: 300px;
            height: 100vh;
            overflow: auto;
            top: 0;
            right: 0;
            left:0;
            background: #fff;
            padding: 10px;
            transform: translateX(-110%);
            transition: 0.7s ease;
        }

            .navigation-menu.show {
                transform: translateX(0%);
            }

        header .logo-section .logo-img img {
            width: 190px;
        }

        header .container-fluid {
            width: 100%;
        }

        .hamburg-menu .hamburg-btn {
            font-size: 2rem;
            color: #000;
        }

        header .navigation-menu ul {
            display: block;
        }

            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: var(--grey-color);
        }

        .banner-content .banner-data {
            top: 10px;
            bottom: unset;
            left: 0;
            width: 90%;
            padding: 40px;
            right: 0;
            margin: 0 auto;
        }

            .banner-content .banner-data h2 {
                font-size: 2.2rem;
            }

            .banner-content .banner-data p {
                font-size: 1rem;
            }

        .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;
        }

        header .logo {
            width: auto;
        }

            header .logo .logo-img {
                width: 180px;
                top: 0;
            }

        header .navigation-menu ul li a {
            padding: 10px 8px;
        }
    }

    @media (max-width: 768px) {
        .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%;
        }

        .banner-bottom-section .main-service-box {
            border-right: none;
        }

        header .logo .logo-img {
            width: 180px;
        }

        .banner-content .banner-data h2 {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 576px) {

        .hamburg-menu .hamburg-btn {
            color: #fff;
        }

        .what-weserve-section .what-weserv-content .row {
            height: auto !important;
        }

        main {
            padding-top: 72px;
        }

        header {
            background: var(--primary-color);
        }

        .banner-section { 
            margin-top: 71px;
        }
    }
/*capcha*/

.captchaField {
    border: 1px solid var(--darkGrey-color);
    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: #000;
    padding: 8px;
    border: solid 1px #000;
}

    .ReloadBtn:hover img {
        transform:rotate(180deg);
    }

    .ReloadBtn img {
        width: 100%;
        transition:0.5s ease-in-out;
    }

.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: 17px;
    /*display: none;*/
}

.captchaField .success {
    color: green;
    font-size: 18px;
    margin-bottom: 15px;
    display: none;
}


/*endcapcha*/


/* The Loader */
#loader-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: hidden;
    background: rgb(0 0 0 / 70%);
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #16a085;
    -webkit-animation: spin 1.7s linear infinite;
    animation: spin 1.7s linear infinite;
    z-index: 11;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;
        -webkit-animation: spin-reverse 0.6s linear infinite;
        animation: spin-reverse 0.6s linear infinite;
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;
        -webkit-animation: spin 1s linear infinite;
        animation: spin 1s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.show {
    display: block !important;
}