.HPField {
    display: none; /* or visibility: hidden; */
    position: absolute;
    left: -9999px; /* Move it off-screen just in case */
}

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/



@font-face {
    font-family: 'Mob';
    src: url('../fonts/mob.woff2') format('woff2'), url('../fonts/mob.woff') format('woff'), url('../fonts/mob.eot?') format('embedded-opentype'), url('../fonts/mob.otf') format('opentype'), url('../fonts/mob.ttf') format('truetype'), url('../fonts/Mob.svg#Mob') format('svg');
    font-display: swap; /* Ensures text is visible while the font loads */
}



body {
    font-family: Arial, sans-serif;
}

h1, h2, h3 {
    font-family: 'Mob', Arial, sans-serif;
}

h3 {
    font-size: large;
}

nav {
    font-family: 'Mob', Arial, sans-serif;
}


html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

/* clear fix */
.grid:after {
    content: '';
    display: block;
    clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
    width: 50%;
}

.grid-item {
    float: left;
}

    .grid-item img {
        display: block;
        max-width: 100%;
    }

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
    display: block;
}

* {
    box-sizing: border-box;
}

html, body {
    font-family: sans-serif;
    font-weight: 400;
    background-color: #fff;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0px;
    margin-bottom: 0px;
}

ul {
    margin-bottom: 0px;
}

p {
    font-size: 15px;
    line-height: 30px;
    font-weight: 300;
    color: #666;
    font-size: x-large;
}

img {
    width: 100%;
    overflow: hidden;
}

em {
    color: #428bca;
    font-style: normal;
}
/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
    background: #fff;
    font-family: sans-serif;
}

::selection {
    background: #428bca;
    color: #fff !important;
}

::-moz-selection {
    background: #428bca;
    color: #fff !important;
}

@media (max-width: 991px) {
    html, body {
        overflow-x: hidden;
    }

    .mobile-top-fix {
        margin-top: 30px;
        margin-bottom: 0px;
    }

    .mobile-bottom-fix {
        margin-bottom: 30px;
    }

    .mobile-bottom-fix-big {
        margin-bottom: 60px;
    }
}

.section-heading {
    position: relative;
    z-index: 2;
}

    .section-heading h4 {
        color: #2a2a2a;
        font-size: 30px;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 10px;
    }

        .section-heading h4 em {
            font-style: normal;
            color: #428bca;
        }

    .section-heading img {
        width: 45px;
        height: 2px;
    }

    .section-heading p {
        margin-top: 10px;
    }

.show-up {
    position: relative;
    z-index: 2;
}

.text-button a {
    font-size: 15px;
}

    .text-button a i {
        margin-left: 5px;
        font-size: 14px;
        transition: all .3s;
    }

    .text-button a:hover i {
        margin-left: 8px;
    }




/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
    background-color: white !important;
    height: 100px !important;
    border-bottom: none !important;
    position: fixed !important;
    top: 0px;
    left: 0px;
    right: 0px;
    box-shadow: 0px 5px 8px rgba(0,0,0,0.03);
}


    .background-header .nav li a.active {
        position: relative;
        color: #fff;
    }

        .background-header .nav li a.active:after {
            position: absolute;
            width: 100%;
            height: 4px;
            background-color: #ff8800;
            content: '';
            left: 50%;
            bottom: -5px;
            transform: translateX(-50%);
        }

    .background-header .nav li:last-child a.active:after {
        background-color: transparent;
    }

.header-area {
    background-color: rgba(255,255, 255, 0.3); /*Semi-transparent */
    border-bottom: 1px solid rgba(42,42,42,0.4);
    position: absolute;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 100px;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    }


        .header-area .main-nav {
    min-height: 100px;
    z-index: 999;
}

        .header-area .main-nav .logo {
            float: left;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;

            line-height: 100px;
            float: left;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;

        }


/* for padding of menu when not at top of screen*/
.background-header .main-nav .nav {
    margin-top: 0px !important;
}

.background-header .main-nav img {
    margin-top: 0px !important;
}


.header-area .main-nav .nav {
    float: right;
    margin-top: 30px;
    margin-right: -10px;
    background-color: transparent;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 999;
}

    .header-area .main-nav .nav li {
        padding-left: 20px;
        padding-right: 20px;
    }

        .header-area .main-nav .nav li:nth-child(6) {
            padding-right: 0px;
            padding-left: 40px;
            padding-left: 40px;
        }

        .header-area .main-nav .nav li:last-child a,
            .background-header .main-nav .nav li:last-child a,
            .header-area .main-nav .nav li:nth-child(6) a,
            .background-header .main-nav .nav li:nth-child(6) a {
                /*padding: 0px 20px !important;*/
                font-weight: 400;
            }

                .header-area .main-nav .nav li:last-child a:hover,
                .background-header .main-nav .nav li:last-child a:hover,
                .header-area .main-nav .nav li:nth-child(6) a:hover,
                .background-header .main-nav .nav li:nth-child(6) a:hover {
                    color: #fff !important;
                }
                
        .header-area .main-nav .nav li a {
            display: block;
            font-weight: 500;
            font-size: 15px;
            color: #2a2a2a;
            text-transform: capitalize;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
            height: 40px;
            line-height: 40px;
            border: transparent;
            letter-spacing: 1px;
        }

            .header-area .main-nav .nav li:hover a,
            .header-area .main-nav .nav li a.active {
                color: #428bca;
            }

/*.header-area .main-nav .nav li:last-child a.active {
            color: #fff !important;
        }*/

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
    color: #428bca !important;
    opacity: 1;
}


.header-area .main-nav .nav li.submenu {
    position: relative;
    padding-right: 30px;
}

    .header-area .main-nav .nav li.submenu:after {
        font-family: FontAwesome;
        content: "\f107";
        font-size: 12px;
        color: #2a2a2a;
        position: absolute;
        right: 18px;
        top: 12px;
    }

.background-header .main-nav .nav li.submenu:after {
    color: #2a2a2a;
}

.header-area .main-nav .nav li.submenu ul {
    position: absolute;
    width: 200px;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
    top: 50px;
    opacity: 0;
    transform: translateY(+2em);
    visibility: hidden;
    z-index: -1;
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

    .header-area .main-nav .nav li.submenu ul li {
        margin-left: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

        .header-area .main-nav .nav li.submenu ul li a {
            opacity: 1;
            display: block;
            /*background: #f7f7f7;*/
            background-color: rgba(255,255,255,0.5);
            color: #2a2a2a !important;
            padding-left: 20px;
            height: 40px;
            line-height: 40px;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
            position: relative;
            font-size: 13px;
            font-weight: 400;
            border-bottom: 1px solid #eee;
        }

            .header-area .main-nav .nav li.submenu ul li a:hover {
                background: #fff;
                color: #428bca !important;
                padding-left: 25px;
            }

                .header-area .main-nav .nav li.submenu ul li a:hover:before {
                    width: 3px;
                }

.header-area .main-nav .nav li.submenu:hover ul {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 33px;
    width: 32px;
    height: 40px;
    text-indent: -9999em;
    z-index: 99;
    right: 40px;
    display: none;
}

.background-header .main-nav .menu-trigger {
    top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #2a2a2a;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
    background-color: #2a2a2a;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #2a2a2a;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
    width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
    background-color: #2a2a2a;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    content: "";
}

.header-area .main-nav .menu-trigger span {
    top: 16px;
}

    .header-area .main-nav .menu-trigger span:before {
        -moz-transform-origin: 33% 100%;
        -ms-transform-origin: 33% 100%;
        -webkit-transform-origin: 33% 100%;
        transform-origin: 33% 100%;
        top: -10px;
        z-index: 10;
    }

    .header-area .main-nav .menu-trigger span:after {
        -moz-transform-origin: 33% 0;
        -ms-transform-origin: 33% 0;
        -webkit-transform-origin: 33% 0;
        transform-origin: 33% 0;
        top: 10px;
    }

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
    background-color: transparent;
    width: 100%;
}

    .header-area .main-nav .menu-trigger.active span:before {
        -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
        -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
        -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
        transform: translateY(6px) translateX(1px) rotate(45deg);
        background-color: #2a2a2a;
    }

.background-header .main-nav .menu-trigger.active span:before {
    background-color: #2a2a2a;
}

.header-area .main-nav .menu-trigger.active span:after {
    -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    transform: translateY(-6px) translateX(1px) rotate(-45deg);
    background-color: #2a2a2a;
}

.background-header .main-nav .menu-trigger.active span:after {
    background-color: #2a2a2a;
}

.header-area.header-sticky {
    min-height: 80px;
}

.header-area .nav {
    margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
    color: #428bca;
}


/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

    .js-preloader.loaded {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #fff;
}

    .preloader-inner .dot {
        position: absolute;
        width: 16px;
        height: 16px;
        top: 12px;
        left: 15px;
        background: #428bca;
        border-radius: 50%;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-animation: dot 2.8s infinite;
        animation: dot 2.8s infinite;
    }

    .preloader-inner .dots {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        margin-top: 12px;
        margin-left: 31px;
        -webkit-animation: dots 2.8s infinite;
        animation: dots 2.8s infinite;
    }

        .preloader-inner .dots span {
            display: block;
            float: left;
            width: 16px;
            height: 16px;
            margin-left: 16px;
            background: #428bca;
            border-radius: 50%;
        }



/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 200px 20px 150px 20px;
    position: relative;
    overflow: hidden;
}

    .main-banner:after {
        content: '';
        background-image: url(../images/logo/logoLarge.png);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        left: 0px;
        top: 270px;
        width: 150px;
        height: 100%;
        z-index: -1;
    }

    .main-banner .left-content {
        margin-right: 15px;
    }

        .main-banner .left-content h2 {
            z-index: 2;
            position: relative;
            font-weight: 700;
            line-height: 70px;
            font-size: 50px;
            margin-bottom: 20px;
        }

        .main-banner .left-content p {
            margin-bottom: 5px;
            color: #2a2a2a;
            font-weight: 400;
        }



    .main-banner .right-image {
        text-align: center;
        position: relative;
        z-index: 20;
    }

        .main-banner .right-image img {
            max-width: 600px;
            height: auto;
        }

    .main-banner .left-content .white-button a {
        background-color: #428bca;
        color: #fff !important;
    }



    .main-banner.PurchAce {
        background: url('../images/AIGenerated/_c078405e-9e3f-4375-be72-a24c9f6192f4BLURRED.jpg') no-repeat center center fixed;
        background-size: cover;
    }

/* 
---------------------------------------------
Features Style
--------------------------------------------- 
*/

.features {
    padding-top: 130px;
    position: relative;
}

    .features .section-heading p {
        margin-top: 10px;
        margin-left: 1%;
        margin-right: 1%;
    }



   /* .features:after {
        content: '';
        background-image: url(../images/AIGenerated/_3b6b6838-6c21-4f2d-b90f-88afa8600012TabletAndMobileWithPurchAceFeathered.png);
        background-repeat: no-repeat;
        position: absolute;
        left: -50px;
        bottom: -30px;
        width: 961px;
        height: 768px;
        z-index: 0;
        transform: translateY(-10%);
    }*/


    .features .box-item {
        margin-top: 15px;
    }

    .features .section-heading {
        margin: 0 auto;
        margin-top: 20px;
        margin-left:30px;
    }

    .features p {
        padding-top: 0px;
    }

    .features .features-container {
        margin-left: 0px;
        padding-left: 0px;
        margin-right: 50px;
        padding-right: 0px;
    }



.service-item {
    position: relative;
    z-index: 1;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    background-color: rgba(255,255,255,.5);
    border-radius: 10px;
    transition: all .3s;
}

    .service-item .icon {
        margin-left: 0px;
        margin-bottom: 30px;
        background-repeat: no-repeat;
        width: 50px;
        height: 50px;
        transition: all .3s;
    }

    .service-item h4 {
        transition: all .3s;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .service-item p {
        transition: all .3s;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .service-item:hover h4,
    .service-item:hover p,
    .service-item:hover .text-button a {
        color: #fff;
    }

.first-service .icon {
    background-image: url(../images/service-icon-01.png);
}

.first-service:hover .icon {
    background-image: url(../images/service-icon-hover-01.png);
}

.second-service .icon {
    background-image: url(../images/service-icon-02.png);
}

.second-service:hover .icon {
    background-image: url(../images/service-icon-hover-02.png);
}


.third-service .icon {
    background-image: url(../images/service-icon-03.png);
}

.third-service:hover .icon {
    background-image: url(../images/service-icon-hover-03.png);
}

.fourth-service .icon {
    background-image: url(../images/service-icon-04.png);
}

.fourth-service:hover .icon {
    background-image: url(../images/service-icon-hover-04.png);
}

.service-item:hover {
    background-image: url(../images/logo/logoLarge.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
}



/*
---------------------------------------------
About Us
---------------------------------------------
*/

.about-us {
    padding-top: 100px;
    position: relative;
}

    .about-us .section-heading {
        margin-bottom: 45px;
    }

    .about-us .section-heading,
    .about-us .box-item,
    .about-us p,
    .about-us .box-item,
    .about-us .box-item span {
        position: relative;
        z-index: 1;
    }

    .about-us .box-item {
        box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
        padding: 10px 30px;
        background-color: #fff;
        border-radius: 20px;
        margin-bottom: 30px;
    }

        .about-us .box-item h4 a {
            font-size: 20px;
            font-weight: 700;
            margin-top: 8px;
            color: #2a2a2a;
            transition: all .3s;
        }



        .about-us .box-item:hover h4 a {
            color: #428bca;
        }



    .about-us span {
        font-size: 14px;
        color: #7a7a7a;
    }

    .about-us .right-image {
        position: relative;
        z-index: 1;
    }




    .about-us .box-item {
        padding-top: 15px;
        background-color: rgba(255,255,255,.6);
    }


        .about-us .box-item p {
            padding-top: 10px;
            transition: all .3s;
            line-height: 1;
        }

        .about-us .box-item h3 {
            padding-top: 0px;
            margin-top: 0px;
        }


    .about-us .about-container {
        margin-left: 50px;
        padding-left: 0px;
        margin-right: 0px;
        padding-right: 0px;
    }

/*
---------------------------------------------
faqs
---------------------------------------------
*/

.faqs {
    padding-top: 130px;
    position: relative;
}

    .faqs .section-heading {
        padding: 25px;
        margin-bottom: 0px;
    }

    .faqs .section-heading,
    .faqs .box-item,
    .faqs p,
    .faqs .box-item,
    .faqs .box-item span {
        position: relative;
        z-index: 1;
    }

    .faqs .box-item {
        margin-top: 20px;
        padding: 10px 30px;
        background-color: rgba(255,255,255,0.75);
        border-radius: 10px;
    }

        .faqs .box-item h4 a {
            font-size: 20px;
            font-weight: 700;
            margin-top: 8px;
            color: #2a2a2a;
            transition: all .3s;
        }

        .faqs .box-item p {
            margin-bottom: 0px;
        }

        .faqs .box-item:hover h4 a {
            color: #428bca;
        }



    .faqs span {
        font-size: 14px;
        color: #7a7a7a;
    }

    .faqs .right-image {
        position: relative;
        z-index: 1;
    }

    /*.faqs:after {
        background-image: url(../images/AIGenerated/_e50b7784-86f9-40cc-9f3b-9f4d49f250c3PurchAceOnMobile.png);
        width: 477px;
        height: 932px;
        content: '';
        position: absolute;
        background-repeat: no-repeat;
        right: 0;
        top: 75%;
        transform: translateY(-30%);
        z-index: 0;
    }*/
.faqs .faqcontainer {
    margin-left: 30px;
    padding-left: 0px;
    margin-right: 25px;
    padding-right: 0px;
}


/*
---------------------------------------------
contact-us
---------------------------------------------
*/

.contact-us {
    padding-top: 130px;
    position: relative;
}

    .contact-us .section-heading {
        margin-bottom: 45px;
    }

    .contact-us .section-heading,
    .contact-us .box-item,
    .contact-us p,
    .contact-us .box-item,
    .contact-us .box-item span {
        position: relative;
        z-index: 1;
    }

.box-item {
    position: relative;
    z-index: 1;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    background-color: rgba(255,255,255,0.75);
    border-radius: 10px;
    transition: all .3s;
}


.contact-us .box-item h4 a {
    font-size: 20px;
    font-weight: 700;
    margin-top: 8px;
    color: #2a2a2a;
    transition: all .3s;
}

.contact-us .box-item p {
    margin-bottom: 0px;
}



.contact-us span {
    font-size: 14px;
    color: #7a7a7a;
}

.contact-us .right-image {
    position: relative;
    z-index: 1;
}

.contact-us h2 {
    padding-top: 10px;
    margin-top: 10px;
}

.contact-us h3 {
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}


.form-group {
    padding-top: 10px;
}

.contact-text {
    font-size: medium;
    font-weight: bold;
}


ul {
    list-style: none; /* Remove default bullets */
    padding: 10px;
}

ul {
    list-style-type: circle; /* Standard bullet points */
}

li {
    margin-left: 20px; /* Add spacing for clarity */
}

.contact-us:after {
    background-image: url(../images/AIGenerated/_2eda934e-0a12-4db7-bdf3-a6426b98d497WithPurchAceLoginScreenFeathered.png);
    width: 577px;
    height: 862px;
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}




/* 
---------------------------------------------
The Clients
---------------------------------------------
*/
.the-clients {
    margin-top: 130px;
}

    .the-clients .section-heading {
        text-align: center;
        margin-bottom: 80px;
    }

        .the-clients .section-heading p {
            margin-top: 10px;
            margin-left: 18%;
            margin-right: 18%;
        }

    .the-clients .naccs {
        position: relative;
    }

.menu .thumb h4 {
    margin-bottom: 0px;
    font-size: 20px;
    color: #2a2a2a;
}

.menu .thumb span.date {
    display: inline-block;
    margin-top: 0px;
    color: #afafaf;
}

.menu .thumb span.category,
.menu .thumb span.rating {
    font-weight: 700;
    color: #afafaf;
}

.menu .thumb i {
    color: #afafaf;
}

.the-clients .naccs .menu div {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
    text-align: left;
    padding: 0px 15px;
    cursor: pointer;
    position: relative;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

    .the-clients .naccs .menu div.active h4,
    .the-clients .naccs .menu div.active i,
    .the-clients .naccs .menu div.active span.rating,
    .the-clients .naccs .menu div.active .thumb {
        color: #428bca;
    }

.the-clients ul.nacc {
    position: relative;
    min-height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

    .the-clients ul.nacc li {
        opacity: 0;
        transform: translateX(-50px);
        position: absolute;
        list-style: none;
        transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
    }

        .the-clients ul.nacc li.active {
            transition-delay: 0.3s;
            position: relative;
            z-index: 2;
            opacity: 1;
            transform: translateX(0px);
        }

    .the-clients ul.nacc li {
        width: 100%;
    }

.the-clients .nacc .thumb .client-content img {
    width: 76px;
    height: 62px;
}


.the-clients .nacc .thumb .client-content p {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    font-style: italic;
    margin-top: 30px;
}

.the-clients .nacc .thumb .down-content {
    margin-top: 30px;
}

    .the-clients .nacc .thumb .down-content img {
        width: 170px;
        height: 170px;
        border-radius: 50%;
        display: inline;
    }

    .the-clients .nacc .thumb .down-content .right-content {
        display: inline-block;
        margin-left: 20px;
    }

        .the-clients .nacc .thumb .down-content .right-content h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .the-clients .nacc .thumb .down-content .right-content span {
            color: #2a2a2a;
        }


/* 
---------------------------------------------
Pricing
---------------------------------------------
*/

.pricing-tables {
    padding-top: 130px;
}


    .pricing-tables .section-heading {
        text-align: center;
        margin-bottom: 20px;
    }

        .pricing-tables .section-heading p {
            margin-top: 10px;
            margin-left: 18%;
            margin-right: 18%;
        }


.pricing .section-heading {
    text-align: center;
}

.pricing-item-pro {
    box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    border-radius: 50px;
    padding: 120px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 450px; /* Adjust as needed */
    margin-top: 40px;
}

    .pricing-item-pro:before {
        position: absolute;
        top: -100px;
        left: -105px;
        background-repeat: no-repeat;
        background-image: url(../images/pro-table-top.png);
        z-index: 0;
        content: '';
        width: 781px;
        height: 751px;
    }

    .pricing-item-pro:after {
        position: absolute;
        bottom: -100px;
        right: -90px;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(../images/pro-table-top.png);
        z-index: 0;
        content: '';
        width: 300px;
        height: 300px;
    }




    .pricing-item-pro h3 {
        font-size: x-large;
        font-weight: 700;
        margin-bottom: 30px;
        margin-top: 10px;
    }

    .pricing-item-pro .icon img {
        width: 120px;
        height: 106px;
        margin-bottom: 30px;
    }

    .pricing-item-pro ul li {
        color: #428bca;
        font-size: x-large;
        margin-bottom: 5px;
    }

        .pricing-item-pro ul li:last-child {
            margin-bottom: 0px;
        }

        .pricing-item-pro ul li.non-function {
            color: #afafaf;
            text-decoration: line-through;
        }

    .pricing-item-pro .border-button {
        position: relative;
        z-index: 1;
        margin-top: 5px;
    }





/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
    background-image: url(../images/AIGenerated/_c078405e-9e3f-4375-be72-a24c9f6192f4BLURRED.jpg );
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 100px;
    padding-top: 20px;
    padding-bottom: 20px;
}

    footer .section-heading {
        margin-bottom: 30px;
    }

        footer .section-heading h4 {
            line-height: 45px;
            color: #fff;
            margin-left: 13%;
            margin-right: 13%;
            text-align: center;
        }



.footer-section .logo img {
    max-width: 150px;
    margin-bottom: 0px;
}

.footer-section h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
}


.footer-section p,
.footer-section p a {
    color: #fff;
    font-size: small;
    margin-top: 7px;
    line-height: 1.25;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}



    .footer-section p a:hover {
        opacity: 0.75;
        color: #ff8800;
    }



.centeredText {
    color: #afafaf;
    text-align: center;
    margin: 20px 0;
    clear: both;
    overflow: hidden;
    text-transform: capitalize;
}



/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (min-width:1300px) {
    .main-banner .logo {
        height: auto;
        width: 300px;
    }
}

@media (max-width: 1300px) {

    .header-area .main-nav .logo h4 {
        font-size: 24px;
    }

        .header-area .main-nav .logo h4 img {
            max-width: 25px;
            margin-left: 0px;
        }

    .header-area .main-nav .nav img {
    }

    .header-area .main-nav .nav  {
        padding-left: 0px;
        padding-right: 0px;
        margin-right: 0px;
    }
    .header-area .main-nav .nav li:last-child {
        padding-right: 10px;
    }

    .main-banner .left-content h2 {
        z-index: 2;
        position: relative;
        font-weight: 700;
        line-height: 70px;
        font-size: 25px;
        margin-bottom: 20px;
        margin-top: 20px;
        line-height: 1.1;
    }

    .main-banner .left-content p {
        margin-bottom: 45px;
    }

    .main-banner .logo {
        height: auto;
        width: 300px;
    }
}

@media (min-width: 1060px) {
}

@media (max-width:1060px) {
    .header-area .main-nav .nav li:last-child,
    .background-header .main-nav .nav li:last-child {
        color: #069;
    }

    .header-area .main-nav .nav li:nth-child(6),
    .background-header .main-nav .nav li:nth-child(6) {
        padding-right: 0px;
    }

    .background-header .nav li a.active:after {
        display: none;
    }

    .header-area .main-nav .nav li {
        padding-left: 0px;
        padding-right: 0px;
        margin-right: 0px;
    }


    .main-banner .logo {
        height: auto;
        width: 300px;
    }
}


@media (max-width: 880px) {



    .main-banner.PurchAce {
        background: url('../images/AIGenerated/_c078405e-9e3f-4375-be72-a24c9f6192f4BLURRED.jpg') no-repeat center center fixed;
        height: contain;
    }



    /*.main-banner.PurchAce {
        background-image: url(../images/AIGenerated/_c078405e-9e3f-4375-be72-a24c9f6192f4BLURRED.jpg );
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 100px;
        padding-top: 20px;
        padding-bottom: 20px;
    }*/





    .header-area {
        /*background-color: #fff;*/
        background-color: rgba(255,255,255,0.5);
    }



    /*.main-banner:after {
        display: none;
    }*/

    .main-nav .nav li {
        padding-left: 0px;
        padding-right: 5px;
        margin-right: 10px;
        margin-left: 10px;
        font-size: x-small !important;
    }


    .main-banner .left-content h2 {
        color: #2a2a2a;
        margin-right: 0;
    }

    .main-banner .left-content p {
        color: #afafaf;
        margin-right: 0;
    }

    .main-banner .left-content .white-button a {
        background-color: #428bca;
        color: #fff !important;
    }

    form#contact {
        overflow: hidden;
    }

    .header-area .main-nav .logo h4 {
        font-size: 20px;
    }

    .main-banner .left-content {
        margin-right: 0px;
    }



    .main-banner:before {
        display: none;
    }

    .main-banner .right-image {
        margin: 30px auto 0px auto;
        text-align: center;
    }


    .features-item {
        margin-bottom: 45px;
    }

    .last-features-item,
    .last-skill-item {
        margin-bottom: 0px !important;
    }

    .skill-item {
        margin-bottom: 30px;
    }

    .about-left-image img {
        margin-right: 0px;
        margin-bottom: 45px;
    }

    .services .naccs .menu div {
        font-size: 15px;
        font-weight: 500;
    }

    .service-item {
        text-align: center;
        margin-bottom: 30px;
    }

    .about-us .box-item {
        text-align: center;
    }

    /*.about-us:after {
        display: none;
    }*/


    .about-us span {
        text-align: center;
        display: block;
    }

    .about-us .right-image {
        margin-top: 30px;
    }

    .service-item .icon {
        margin: 0 auto 30px auto;
    }

    .about-us .section-heading {
        text-align: center;
    }

    .about-us .left-image {
        margin-right: 30px;
        margin-left: 30px;
        margin-bottom: 45px;
    }

    .blog-posts {
        margin-left: 0px;
        margin-top: 30px;
    }

    .post-item {
        margin-bottom: 70px;
    }

    .pricing-item-regular {
        margin-bottom: 30px;
    }

    .our-portfolio .owl-nav {
        display: none !important;
    }

    .contact-info {
        margin-top: 60px;
    }

    form#contact {
        padding: 45px;
    }

    .the-clients .naccs .menu div {
        text-align: center;
    }


    .header-area .main-nav .logo h4 {
        font-size: 30px;
    }

        .header-area .main-nav .logo h4 img {
            max-width: 30px;
            margin-left: 5px;
        }

    .main-banner .info-stat {
        margin-bottom: 15px;
    }

    .menu .thumb span.date {
        margin-bottom: -20px;
        display: block;
    }

    .service-item {
        text-align: center;
        padding: 30px;
    }

    .menu .thumb span.category {
        display: none;
    }

    .about-us .right-image {
        margin-top: 30px;
    }

    .service-item .icon {
        float: none;
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .service-item .right-content {
        display: inline-block;
    }

    .services .naccs .menu div .thumb {
        padding: 5px;
    }

    .services .icon img {
        margin: 0px;
    }

    .the-clients .nacc .thumb .down-content .right-content {
        margin-left: 0px;
        margin-top: 15px;
    }

    .services ul.nacc li.active {
        padding: 45px;
    }

    .services .naccs .menu div {
        font-size: 0px;
    }

    .the-clients .nacc .thumb .down-content {
        text-align: center;
    }

    .services ul.nacc li .right-image img {
        float: none;
    }

    .our-portfolio .section-heading,
    .about-us .section-heading,
    .about-us .about-item,
    .about-us p,
    .about-us .main-green-button {
        text-align: center;
    }

        .our-portfolio .section-heading .line-dec {
            margin: 0 auto;
        }

    .our-services .section-heading {
        margin-left: 15px;
        margin-right: 15px;
    }

    .free-quote form input {
        margin-left: 0px;
        padding: 0px 30px;
    }

    .free-quote form button {
        margin-left: 0px;
        border-bottom-left-radius: 40px;
        border-top-right-radius: 0px;
    }

    .blog-posts {
        margin-left: 0px;
        margin-top: 30px;
    }

    .post-item {
        margin-bottom: 30px;
    }

        .post-item .thumb img {
            max-width: 140px;
        }

        .post-item .right-content p {
            display: none;
        }

    .about-us .about-item {
        margin-top: 15px;
    }

    form#contact {
        padding: 30px;
        padding: 30px;
    }

    .pre-header ul.info li:last-child,
    .pre-header ul.info li:nth-child(6) {
        display: none !important;
    }


    .header-area .main-nav .logo {
        color: #1e1e1e;
    }

    .header-area.header-sticky .nav li a:hover,
    .header-area.header-sticky .nav li a.active {
        color: #428bca !important;
        opacity: 1;
    }

    .header-area.header-sticky .nav li.search-icon a {
        width: 100%;
    }

    .header-area {
        background-color: #fff;
        padding: 0px 15px;
        height: 100px;
        box-shadow: none;
        text-align: center;
        box-shadow: 0px 5px 8px rgba(0,0,0,0.03);
    }

        .header-area .container {
            padding: 0px;
        }

        .header-area .logo {
            margin-left: 30px;
        }

        .header-area .menu-trigger {
            display: block !important;
        }

        .header-area .main-nav {
            overflow: hidden;
        }

            .header-area .main-nav .nav {
                float: none;
                width: 100%;
                display: none;
                -webkit-transition: all 0s ease 0s;
                -moz-transition: all 0s ease 0s;
                -o-transition: all 0s ease 0s;
                transition: all 0s ease 0s;
                margin-left: 0px;
            }

    .background-header .nav {
        margin-top: 80px;
    }

    .header-area .main-nav .nav li:first-child {
        border-top: 1px solid #eee;
    }

    /**/
    .header-area.header-sticky .nav {
        margin-top: -1px;
    }

    .header-area .main-nav .nav li {
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #e7e7e7;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

        .header-area .main-nav .nav li a {
            height: 50px !important;
            line-height: 10px !important;
            
            padding: 20px !important;
            border: none !important;
            /*background: #f7f7f7 !important;*/
            /*color: #191a20 !important;*/
            background-color: rgba(255,255,255,.1);
        }

            .header-area .main-nav .nav li a:hover {
                background: #eee !important;
                color: #428bca !important;
            }

        .header-area .main-nav .nav li.submenu ul {
            position: relative;
            visibility: inherit;
            opacity: 1;
            z-index: 1;
            transform: translateY(0%);
            transition-delay: 0s, 0s, 0.3s;
            top: 0px;
            width: 100%;
            box-shadow: none;
            height: 0px;
        }

            .header-area .main-nav .nav li.submenu ul li a {
                font-size: 12px;
                font-weight: 400;
            }

                .header-area .main-nav .nav li.submenu ul li a:hover:before {
                    width: 0px;
                }

            .header-area .main-nav .nav li.submenu ul.active {
                height: auto !important;
            }

        .header-area .main-nav .nav li.submenu:after {
            color: #3B566E;
            right: 25px;
            font-size: 14px;
            top: 15px;
        }

        .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
            height: 0px;
        }

    .main-nav img {
        z-index: 1 !important;
    }

    .main-banner .logo {
        height: auto;
        width: 250px;
    }






}

@media (min-width: 880px) {


   /* .about-us:after {
        background-image: url(../images/AIGenerated/_2eda934e-0a12-4db7-bdf3-a6426b98d497WithPurchAceLoginScreenFeathered.png);
        width: 577px;
        height: 1132px;
        content: '';
        position: absolute;
        background-repeat: no-repeat;
        right: 0;
        top: 15%;
    
        z-index: 0;
    }*/


  .header-area .main-nav .nav {
    display: flex !important;
  }

    .header-area .main-nav {
        overflow: visible;
    }

        .header-area .main-nav img {
            margin-left: 15px;
            margin-top: 5px;
        }

    h1 {
        font-size: 45px !important;
        margin-top: 10px;
        line-height: 1 !important;
        margin-bottom: 15px
    }

    h2 {
        font-size: 35px !important;
        line-height: 1 !important;
        margin-bottom: 15px
    }
}


@media (min-width:470px) {
    h1 {
        font-size: 40px !important;
        margin-top: 10px;
        line-height: 1 !important;
        margin-bottom: 15px
    }

    h2 {
        font-size: 30px !important;
        line-height: 1 !important;
        margin-bottom: 15px
    }

    h3 {
        font-size: 25px !important;
        margin-top: 10px;
    }
}

@media (max-width: 470px) {
    .header-area {
        background-color: #fff;
        padding: 0px 15px;
        height: 100px;
        box-shadow: none;
        box-shadow: 0px 5px 8px rgba(0,0,0,0.03);
    }

    .main-banner .logo {
        height: auto;
        width: 200px;
    }





    /*.features:after {
        content: '';
        background-image: url(../images/AIGenerated/_3b6b6838-6c21-4f2d-b90f-88afa8600012TabletAndMobileWithPurchAceFeathered.png);
        left: -350px;
        bottom: -30px;
        width: 761px;
        z-index: 0;
        transform: translateY(-10%);
    }*/

    h1 {
        font-size: 35px !important;
        margin-top: 0px;
        line-height: 1 !important;
        margin-bottom: 10px
    }

    h2 {
        font-size: 25px !important;
        margin-bottom: 10px
    }

    h3 {
        font-size: 20px !important;
        margin-bottom: 5px;
    }
}




.header-area .main-nav {
    text-align: left;
}


.main-nav .btnRequestDemoInNav {
    padding: 0px 10px 10px 10px !important;
    background-color: rgb(66, 139, 202,.75) !important;
    color: white !important;
    border: none;
}

    .main-nav .btnRequestDemoInNav:hover {
        background-color: rgb(66, 139, 202) !important;
        /*color: rgb(255, 255, 255,.5) !important;*/
        color: #ff8800 !important;
    }

/* PurchAce Logo blue #428bca orange ff8800*/
.btnRequestDemo {
    padding: 10px 20px 10px 20px !important;
    background-color: rgb(66, 139, 202,.75) !important;
    color: white !important;
    border: none;
    margin-top: 20px;
    z-index: 999;
}

    .btnRequestDemo:hover {
        background-color: rgb(66, 139, 202) !important;
    }

.btnMore {
    padding: 10px 20px 10px 20px !important;
    background-color: rgb(255, 136, 0,.75) !important;
    color: white !important;
    border: none;
    margin-top: 20px;
}

    .btnMore:hover {
        background-color: rgb(255, 136, 0) !important;
    }





.custom-placeholder::placeholder {
    color: gray !important; /* Set your desired color */

    opacity: 0.3; /* Optional: Adjust the transparency */
}

.custom-placeholder::-webkit-input-placeholder { /* Chrome, Safari, Edge */
    color: gray;
}

.custom-placeholder:-moz-placeholder { /* Firefox 18- */
    color: gray;
}

.custom-placeholder::-moz-placeholder { /* Firefox 19+ */
    color: gray;
}

.custom-placeholder:-ms-input-placeholder { /* Internet Explorer */
    color: gray;
}


.btn {
    padding: 10px 20px;
    background: #4b8ef1;
    color: #fff;
    transition: all .3s;
}



a.btn {
    color: #fff;
    text-align: center;
    text-decoration: none;
}






/* HTML: <div class="loader"></div> */
.loader {
    width: 40px;
    height: 40px;
    --c: no-repeat linear-gradient(#428bca 0 0);
    background: var(--c),var(--c),var(--c),var(--c);
    background-size: 21px 21px;
    animation: l5 1.5s infinite cubic-bezier(0.3,1,0,1);
}

@keyframes l5 {
    0% {
        background-position: 0 0,100% 0,100% 100%,0 100%
    }

    33% {
        background-position: 0 0,100% 0,100% 100%,0 100%;
        width: 60px;
        height: 60px
    }

    66% {
        background-position: 100% 0,100% 100%,0 100%,0 0;
        width: 60px;
        height: 60px
    }

    100% {
        background-position: 100% 0,100% 100%,0 100%,0 0
    }
}






.faq-title {
    padding: 10px;
    /*background-color: #f9f9f9;*/
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.indicator {
    margin-right: 10px;
    transition: transform 0.3s ease;
    
    height: 32px !important;
    width: 32px !important;
    min-height: 32px !important;
    min-width: 32px !important
}

.faq-content {
    padding: 10px;
    background-color: #fff;
    display: none;
}




.progress-container {
    width: 100%; /* Adjust as needed */
    height: 30px; /* Height of the box */
    background-color: #e0e0e0; /* Light grey background */
    border: 1px solid #ccc; /* Optional border */
    border-radius: 5px; /* Rounded corners */
    overflow: hidden; /* Ensure no overflow */
}

.progress-bar {
    height: 100%; /* Match the container height */
    background-color: #007bff; /* Blue progress fill */
}