﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Spline+Sans:wght@300..700&family=Stack+Sans+Text:wght@200..700&family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&display=swap');


:root {
    /*    --primary: #00923F;*/
    --primary: #42318A;
    --secondary: #000;
    --tertiary: #31AF36;
    --bg: #ecebf9;
    --footer-bg: #333333;
    --txtcolor: #303030;
}

* {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.div_popup {
    max-width: 65%;
    width: 100%;
    padding: 25px;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    /*display: none;*/
}

    .div_popup .img-fast img {
        height: auto;
    }

    .div_popup .wrapper {
        height: fit-content;
        margin: 0;
    }

        .div_popup .wrapper h2 {
            margin: 0 0 10px;
            padding: 0;
            font-size: 24px;
        }

        .div_popup .wrapper .form-group label {
            font-size: 15px;
            font-weight: 500;
            display: inline;
            text-transform: capitalize;
            color: #303030;
            padding-bottom: 6px;
        }

        .div_popup .wrapper .form-group input {
            height: fit-content;
            padding: 4px 10px 5px;
            border-radius: 5px;
            border: 1px solid #cbcbcb;
            width: 100%;
            font-size: 14px;
            text-transform: capitalize;
        }

        .div_popup .wrapper .form-group {
            margin: 10px 0;
        }

            .div_popup .wrapper .form-group img {
                margin-bottom: 7px;
            }

            .div_popup .wrapper .form-group input[type="submit"] {
                margin-top: 30px;
                background: linear-gradient(to right, #42318a 0%, #6A64DD 100%);
                border: 1px solid var(--primary);
            }

#btnClose {
    width: auto;
    height: 39px;
    position: absolute;
    right: -12%;
    top: -13%;
    background: white;
    border-radius: 50px;
    padding: 0;
    cursor: pointer;
}

.top_header {
    background: linear-gradient(to right, #029340 0%, #217193 100%);
}

.site_content .front_header {
    position: relative;
}

.site_content .bottom_header {
    margin: 15px;
}

.site_content .top_header {
    float: none;
    /*background: linear-gradient(to right, #01923F 0%, #2b3d44 100%);*/
    background: linear-gradient(to right, #42318a 0%, #6A64DD 100%);
    padding: 2px 0 4px;
    width: 100%;
}

    .site_content .top_header .top-hd {
        margin: 0 auto;
        text-align: center;
    }

        .site_content .top_header .top-hd li {
            margin: 10px 0 0;
        }

            .site_content .top_header .top-hd li a {
                color: #fff;
                font-size: 13px;
                text-decoration: none;
            }

.bottom_header .menu-container .menu > ul > li a {
    font-size: 13px;
    font-family: 'Hind', sans-serif !important;
    padding: 0em 1.5em;
    letter-spacing: .5px;
}

.bottom_header .menu-container .menu > ul > li ul li a {
    font-weight: 500;
}

body .bottom_header .menu-container .menu > ul > li > ul > li > a {
    font-weight: 600;
    font-size: 17px;
    color: #000;
    padding-bottom: 5px;
}

.hero-section {
    padding: 60px 0;
    background-size: cover;
    background-image: url('../../images/new/hero.png');
    background-position: center;
}

    .hero-section h2 {
        font-weight: 600;
        line-height: 1.4em;
        padding: 0;
        margin: 0 0 35px;
        font-size: 40px;
        position: relative;
    }

        .hero-section h2::after {
            content: '';
            background-image: url('../../images/new/underline.png');
            background-position: bottom;
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            top: 92%;
            left: 9%;
            width: 190px;
            height: 15px;
        }

        .hero-section h2 span {
            padding-bottom: 10px;
            font-weight: 600;
            color: var(--primary);
            display: inline-block;
            animation: wave 2s ease-in-out infinite;
        }

            .hero-section h2 span:nth-child(1) {
                animation-delay: 0s;
            }

            .hero-section h2 span:nth-child(2) {
                animation-delay: 0.2s;
            }

            .hero-section h2 span:nth-child(3) {
                animation-delay: 0.4s;
            }

            .hero-section h2 span:nth-child(4) {
                animation-delay: 0.6s;
            }

@keyframes wave {
    0%, 100% {
        transform: translateY(3px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-section h4 {
    font-size: 20px;
    line-height: 1.5em;
    font-style: italic;
    text-transform: capitalize;
    margin: 15px 0;
}

    .hero-section h4 span {
        font-weight: 600;
        font-style: italic;
        text-decoration: underline;
        text-underline-offset: 3px;
        color: var(--primary);
    }

.hero-section p {
    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.7em;
}

.hero-section .btns-div {
    padding: 10px 0 0;
}

    .hero-section .btns-div a.btn-outline {
        background-color: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
    }

        .hero-section .btns-div a.btn-outline:hover {
            background-color: var(--primary);
            color: #fff;
        }

    .hero-section .btns-div a.btn-black {
        background-color: #000;
        color: #fff;
        margin-right: 15px;
    }

    .hero-section .btns-div a.btn img {
        height: 30px;
        width: auto;
    }

body .open-button {
    /*background: linear-gradient(to right, #01923F 0%, #2b3d44 100%);*/
    background: linear-gradient(to right, #42318a 0%, #6A64DD 100%);
    color: white;
    padding: 12px 15px;
    border: none;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    height: 50px;
    width: 50px;
    display: inline-block;
    border-radius: 40px;
}

    body .open-button i {
        font-size: 20px;
    }

body #myForm.show {
    display: block;
}

body .form-popup {
    position: fixed;
    bottom: 15%;
    right: 20px;
    border-radius: 20px;
    color: #fff;
    border-radius: 5px;
    background: #fff;
    display: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

    body .form-popup .form-containerr {
        max-width: 300px;
        padding: 20px;
        background-color: #ffffff;
        border-radius: 5px;
        color: #000000;
    }

        body .form-popup .form-containerr h2 {
            margin: 0;
            font-size: 21px;
            padding: 0;
            margin-bottom: 20px;
        }

        body .form-popup .form-containerr input {
            width: 100%;
            padding: 6px 10px;
            margin: 5px 0 22px;
            background: #f1f1f1;
            font-size: 14px;
            border: 1px solid #e5e5e5;
            border-radius: 2px;
        }

            body .form-popup .form-containerr input[type="submit"] {
                width: fit-content;
                background: #000;
                padding: 6px 13px;
                float: right;
                border-radius: 3px;
            }

                body .form-popup .form-containerr input[type="submit"]:hover {
                    color: #fff;
                }

        body .form-popup .form-containerr label {
            font-size: 15px;
            font-weight: 500;
        }

.about-Industry {
    background-size: cover;
    background-attachment: fixed;
    background-image: url('../../images/new/about-industry.png');
    padding: 30px 0 0;
}

    .about-Industry .award-card img {
        max-width: 100px;
        width: 100%;
    }

    .about-Industry .awards-slider {
        max-width: 800px;
        margin: auto;
    }

    .about-Industry .aboutCards {
        display: flex;
        gap: 20px;
        margin: 40px 0 0;
        justify-content: center;
    }

        .about-Industry .aboutCards > div {
            text-align: center;
        }

        .about-Industry .aboutCards .stat-number {
            font-size: 30px;
            font-weight: 600;
        }

        .about-Industry .aboutCards .lead {
            font-size: 16px;
            font-weight: 500;
            margin: 10px 0 0;
            line-height: 1.6em;
            font-family: 'Poppins';
            letter-spacing: .3px;
        }

    .about-Industry .section-title {
        font-size: 28px;
        font-weight: 600;
        position: relative;
    }

        .about-Industry .section-title span {
            font-weight: 700;
            color: var(--primary);
        }

        .about-Industry .section-title:before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            margin: 0 auto;
            height: 3px;
            width: 120px;
            background-color: var(--primary);
            border-radius: 5px;
            top: 100%;
        }


    .about-Industry .slider-section .slider {
        background: transparent;
        height: 100px;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

        .about-Industry .slider-section .slider::before, .slider::after {
            background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
            content: "";
            height: 100px;
            position: absolute;
            width: 200px;
            z-index: 2;
        }

        .about-Industry .slider-section .slider::after {
            right: 0;
            top: 0;
            transform: rotateZ(180deg);
        }

        .about-Industry .slider-section .slider::before {
            left: 0;
            top: 0;
        }

        .about-Industry .slider-section .slider .slide-track {
            animation: scroll 40s linear infinite;
            display: flex;
            width: calc(250px * 14);
        }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.about-Industry .slider-section .slider .slide {
    height: 100px;
    width: 250px;
}

.about-Industry .slider-section {
    margin: 30px 0 40px;
}

.hero-section .hero-img img {
    animation: autoLoop 4s linear infinite alternate;
}

@keyframes autoLoop {
    0% {
        transform: translateY(-15px);
    }

    25% {
        transform: translateX(15px);
    }

    50% {
        transform: translateY(5px);
    }

    0% {
        transform: translateY(-10px);
    }
}

body .menu > ul > li > ul > li img {
    mix-blend-mode: darken;
}

.menu > ul > li:hover {
    background: #fff;
}

body .loan_des h3:hover {
    color: var(--primary);
}

.work_discuss_button ul li:last-child a {
    background: #665ED4;
    text-decoration: none;
}

.site_content.sticky .front_header {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 50px;
    top: 15px;
    transition: all .5s ease-in;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    background: #fff;
}

body .site_content.sticky .front_header .logo img {
    width: auto !important;
    height: 45px;
    margin-top: 8px;
}

.at-right-shape-img .at-common-img img {
    height: 426px;
    margin-right: auto;
    border-radius: 345px 0 0 345px;
}

.at-common-bottom-img img {
    width: 260px;
    height: 260px;
    border-radius: 0 300px 300px 300px;
    object-fit: cover;
}


.at-right-shape-img {
    position: relative;
    margin-top: 0;
}

    .at-right-shape-img .at-common-img img {
        width: 530px;
    }

    .at-right-shape-img .at-common-bottom-img {
        position: absolute;
        right: 0;
        left: auto;
        bottom: -80px;
    }

.at-common-img-shape::after {
    left: 30px;
    top: -80px;
    width: 660px;
    height: 500px;
}

.at-services {
    padding: 50px 0;
}

    .at-services .at-head-60 {
        padding: 10px 0;
        font-size: 28px;
        font-weight: 600;
    }

    .at-services .at-border-head {
        color: #000000;
        font-weight: 400;
    }

.at-border-head .at-border {
    position: relative;
    margin-right: 10px;
    display: inline-block;
}

    .at-border-head .at-border::before, .at-border-head .at-border::after {
        content: "";
        height: 2px;
        margin-left: auto;
        background: #5f57c7;
        display: block;
        width: 50px;
    }

    .at-border-head .at-border::before {
        width: 25px;
        margin-bottom: 7px;
    }

.at-services p {
    margin: 10px 0 0;
    line-height: 1.6em;
    font-family: 'Poppins';
    letter-spacing: .3px;
    font-size: 15px;
    font-weight: 400;
}

.at-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 15px;
    background: rgb(93 83 193 / 11%);
}

    .at-icon img {
        width: 30px !important;
        height: 30px !important;
    }

.at-services .at-service-sub-list .at-service-des .at-head-22 {
    color: #000000;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 17px;
}

.at-services .at-service-sub-list .at-service-des p {
    margin: 12px 0 15px;
    overflow: hidden;
    font-size: 15px;
    font-weight: 400;
}

.at-services .servicesDiv {
    margin-top: 40px;
}

.at-read-link {
    position: relative;
    line-height: 1;
    font-size: 16px;
    color: #132948;
    padding-bottom: 7px;
    font-weight: 500;
    text-transform: capitalize;
}

    .at-read-link::after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        width: 50px;
        height: 2px;
        background: var(--primary);
    }

.at-services .at-service-sub-list .at-service-des {
    margin-bottom: 50px;
}

.at-read-link:hover {
    text-decoration: none;
}

.at-industries .at-industries-list .at-industries-des {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

    .at-industries .at-industries-list .at-industries-des img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

    .at-industries .at-industries-list .at-industries-des .at-industries-overlay {
        left: 10px;
        bottom: 10px;
        position: absolute;
        z-index: 1;
    }

        .at-industries .at-industries-list .at-industries-des .at-industries-overlay .at-icon {
            background: rgba(255, 255, 255, .2);
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 25px;
            color: #fff;
        }


        .at-industries .at-industries-list .at-industries-des .at-industries-overlay .at-head-18 {
            color: #fff;
            font-size: 16px;
            margin: 0;
        }

    .at-industries .at-industries-list .at-industries-des::after {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .4);
    }

.at-industries .at-industries-list .at-industries-des {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.at-industries .at-industries-head h2 {
    margin: 10px 0 0;
    line-height: 1.6em;
    font-family: 'Poppins';
    letter-spacing: .3px;
    font-size: 15px;
    color: #000;
}

.at-industries .at-industries-head p {
    margin: 12px 0 15px;
    overflow: hidden;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7em;
}

.at-industries .at-industries-head ol {
    list-style-type: circle;
}

.at-industries .at-industries-list a {
    text-align: center;
    display: block;
}

.at-industries .at-industries-head ol li {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7em;
    color: #666666;
}

.at-industries .at-industries-head h3 {
    padding: 10px 0;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.at-industries {
    background: var(--bg);
    padding: 40px 0;
}

.web_devlopment_section {
    display: none;
}

.why_love_section {
    display: none;
}

.top_footer {
    /*background: linear-gradient(to right, #01923F 0%, #2b3d44 100%);*/
    background: #222222;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 10px 0 0;
}

footer .bottom_footer {
    padding: 7px 0;
    background: #333333;
}

    footer .bottom_footer .copyright {
        float: none;
    }

        footer .bottom_footer .copyright p {
            padding: 0;
            margin: 0;
            font-size: 14px;
            color: white;
        }

.top_footer .col1.quicklinks, .footer-right, .footer-right-c1 {
    float: none;
    width: 100%;
}

.top_footer .footer-right-txt h3 {
    line-height: 1.3em;
    font-size: 18px;
}

.top_footer .footer-right-txt p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    color: white;
    font-weight: 300;
}

.top_footer .footer_social {
    padding-top: 13px;
}

    .top_footer .footer_social li a {
        color: #222222;
        border-radius: 3px;
        line-height: 1.5;
        padding: 4px 7px 8px;
        background: #fff;
        border: none;
    }

.top_footer .f-address {
    display: flex;
    gap: 15px;
    border: none;
}

    .top_footer .f-address .width_23 {
        flex-basis: 25%;
        flex-grow: 1;
        float: none;
        /*background: linear-gradient(to top, #000000cc, #05893fcc);*/
        background: #fff;
        border-radius: 5px;
        box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
        position: relative;
        overflow: hidden;
        background: var(--footer-bg);
    }

        .top_footer .f-address .width_23::after {
            content: '';
            height: 150px;
            width: 150px;
            border-radius: 50%;
            background: #222222;
            position: absolute;
            right: -46px;
            top: -28px;
            z-index: 1;
        }

    .top_footer .f-address .country_flag {
        justify-content: space-between;
        position: relative;
        z-index: 2;
    }

        .top_footer .f-address .country_flag h6 {
            color: #fff;
            font-size: 16px;
            line-height: 1.3em;
        }

    .top_footer .f-address .detail a {
        text-decoration: none;
        color: #e1e1e1;
        font-family: 'Poppins';
        font-size: 13px;
        letter-spacing: .3px;
        font-weight: 400;
    }

.top_footer .footer-right-txt blockquote {
    font-size: 15px;
    color: #282828;
    line-height: 1.7em;
    background: #fff;
    border-left: 3px solid var(--primary);
    box-shadow: rgb(0 0 0 / 35%) 0px 2px 4px;
}

.top_footer .award-img img {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.top_footer .award-img {
    padding: 40px 0 0;
}


.footer-right {
    padding: 0
}

    .footer-right .footer-right-txt h3 {
        color: #fff;
    }

    .footer-right .footer-right-txt p {
        color: #dddddd;
        margin-bottom: 20px;
    }

.top_footer .footer-right-c1 .copyrighted-image {
    text-align: center;
}

    .top_footer .footer-right-c1 .copyrighted-image img {
        height: 170px;
        max-height: 170px;
        width: auto;
    }

.top_footer .footer-right-txt blockquote h6 {
    background: #ecebf9;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 14px;
    color: var(--primary);
}

.life-cyrus {
    padding: 40px 0;
}

    .life-cyrus h2 {
        padding: 10px 0;
        font-size: 28px;
        font-weight: 600;
        margin-top: 10px;
    }

    .life-cyrus p {
        margin: 12px 0 15px;
        overflow: hidden;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.7em;
    }

    .life-cyrus .imgsec {
        height: 200px;
        width: 100%;
        margin: 15px 0;
    }

        .life-cyrus .imgsec img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            border-radius: 3px;
        }

    .life-cyrus .at-border-head {
        font-size: 15px;
        margin: 0;
    }

.all-in-one {
    padding: 40px 0;
    background-size: contain;
    background-image: url('../../newimg/bg2.webp');
}

    .all-in-one h2 {
        color: #fff;
        font-size: 15px;
    }

    .all-in-one h3 {
        color: #fff;
        font-size: 35px;
        line-height: 1.7em;
    }

        .all-in-one h3 i {
            font-weight: 600;
            font-style: italic;
            background: #141414;
            padding: 0px 15px;
            width: fit-content;
            border-radius: 3px;
            margin: 10px 0;
        }

    .all-in-one a {
        color: #fff;
        background-color: #645bce;
        border-color: #645bce;
        padding: 8px 25px;
        margin-top: 20px;
    }

    .all-in-one .softwareImg img {
        border-radius: 50%;
        height: 400px;
        width: 400px;
        object-fit: cover;
    }

    .all-in-one p {
        margin: 12px 0 15px;
        overflow: hidden;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.7em;
        color: #e3e3e3;
    }

.readMore {
    padding: 15px 0 0;
    text-align: center;
}

    .readMore a {
        color: #000;
        font-weight: 500;
    }

.testimonial-section {
    padding: 30px 0 50px;
    background: #fff;
}

.section-title {
    padding: 10px 0;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.section-subtitle {
    overflow: hidden;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7em;
    margin-bottom: 40px;
}

.testimonial-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ecebf9;
    padding: 40px 30px;
    border-radius: 6px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

.client-role {
    color: #707070;
    font-size: 14px;
}

.carousel-control.left,
.carousel-control.right {
    background-image: none;
    color: #333;
}

#testimonials .carousel-control.left {
    background-image: none;
}

#testimonials .carousel-control.right {
    background-image: none;
}

.testimonial-box img {
    height: 100px;
    width: 100px;
    border-radius: 50px;
    background: #ffff;
}

#testimonials .carousel-indicators {
    bottom: -2px;
}

    #testimonials .carousel-indicators li {
        background-color: #b3b3b3;
    }

        #testimonials .carousel-indicators li.active {
            background-color: var(--primary);
        }

/* our products */
.products {
    padding: 20px 0 30px;
}

    .products h3 {
        padding: 10px 0;
        font-size: 28px;
        font-weight: 600;
        text-align: left;
    }

        .products h3::first-letter {
            color: var(--primary);
        }

    .products p {
        margin: 10px 0 30px;
        line-height: 1.6em;
        font-family: 'Poppins';
        letter-spacing: .3px;
        font-size: 15px;
        font-weight: 400;
    }

    .products .product1 {
        background-color: #ecebf9;
        padding: 30px 0;
    }

        .products .product1.two {
            background-color: #fff;
        }

        .products .product1 img {
            mix-blend-mode: darken;
        }

        .products .product1 ul li {
            font-size: 15px;
            color: var(--txtcolor);
            padding: 3px 0;
        }

        .products .product1 p {
            color: var(--txtcolor);
        }

        .products .product1 ul li:before {
            content: '\279D';
            padding-right: 10px;
            font-size: 18px;
        }

        .products .product1 a {
            color: var(--primary);
            font-size: 15px;
            font-weight: 500;
        }

    .products p b {
        font-weight: 500;
        color: var(--primary);
        font-style: italic;
        text-decoration: underline;
    }

body .android_application_head h1 {
    font-weight: 600;
    line-height: 1.4em;
    padding: 0;
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
}

.android_application_head span {
    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
}

.highly_quality_head h2 {
    font-weight: 600;
}

.highly_quality_head p {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

.business_grow_right ul li {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

.business_grow_head h2 {
    font-weight: 600;
    color: #000;
}

body .company_profile_head h1 {
    font-weight: 600;
    line-height: 1.4em;
    padding: 0;
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
}

.company_profile_head span {
    font-size: 16px;
    line-height: 1.7em 27.2px;
    font-family: "Poppins", sans-serif;
}

body .optimization_des_left.optimization_des_left-2 li {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

.highly_quality_head p b, a, strong {
    color: var(--primary);
    font-weight: 600;
}

body .start_project_section {
    background-image: url('../../images/contact-bg.png');
    background-size: cover;
    background-position: center;
}

body .start_project_head h2 {
    font-size: 26px;
    font-weight: 600;
    text-transform: capitalize;
}

body .start_project_head span {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}

body .contact_button a {
    height: fit-content;
    line-height: 1;
    padding: 15px 40px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-size: 17px;
}

body .first span {
    float: left;
}

body .green-box li {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

body .nbfc_head p {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

body .extra_point_section > li {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

body .easier_within_head p.last {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
    text-align: left;
}

body .easier_within_head p {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
    text-align: left;
}

body .business_philosophy_list ul li p {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
    text-align: left;
}

body .easier_within_head h2 {
    font-size: 26px;
    font-weight: 600;
    text-transform: capitalize;
}

body .panel-body p {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

body .technology_expertise_section p {
    font-size: 15px !important;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222 !important;
}

.GlobalDiv .teamMembers {
    display: flex;
    flex-wrap: wrap;
}

.GlobalDiv .box {
    position: relative;
    flex-basis: 22%;
    background-color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 15px;
    position: relative;
    border-radius: 8px;
}


.GlobalDiv .top-bar {
    width: 50%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0px 0px 10px 10px;
}

.GlobalDiv .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.GlobalDiv .fa-check-circle {
    color: #17b667;
}

.GlobalDiv .heart {
    color: rgba(155,155,155);
}

    .GlobalDiv .heart::before {
        content: '\f004';
        font-family: fontawesome;
        line-height: 30px;
        cursor: pointer;
        z-index: 1;
        transition: all 0.3s;
    }

.GlobalDiv .box .heart-btn:checked ~ .heart::before {
    color: #e41934;
}

.GlobalDiv .heart-btn {
    position: absolute;
    top: 25px;
    right: 20px;
    padding: 1rem;
    display: none;
}

.GlobalDiv .content div {
    width: 130px;
    height: 130px;
    border-radius: 100px;
    overflow: hidden;
    border-top: 3px solid var(--primary);
    position: relative;
}


.GlobalDiv .content img {
    width: 130px;
    height: 130px;
    border-radius: 100px;
    overflow: hidden;
    object-fit: cover;
    object-position: top;
    object-position: center;
    transition: .4s all linear;
    position: relative;
    transition: .3s linear;
}

.GlobalDiv .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .GlobalDiv .content strong {
        font-weight: 600;
        color: #141414;
        margin-top: 15px;
        font-size: 17px;
        letter-spacing: 0.4px;
    }

    .GlobalDiv .content p {
        font-size: 15px;
        color: #4d4d4d;
        margin: 4px 0px 10px 0px;
        text-align: center;
    }

    .GlobalDiv .content img:hover {
        transform: scale(1.1) rotate(5deg);
        object-position: top;
        transition: .3s linear;
        filter: grayscale(1);
    }

body .bg-cnt {
    background: #ebebeb;
}

    body .bg-cnt ul li span {
        color: #000;
        padding-left: 5px;
        font-size: 18px;
        font-weight: 500;
    }

    body .bg-cnt ul li p {
        color: #000;
    }

    body .bg-cnt ul li a {
        color: #181818;
        font-weight: 500;
    }

    body .bg-cnt ul li i {
        color: var(--primary);
    }

body .bg-purple {
    padding: 30px 0;
    background: #ebebeb;
    margin: 25px 0;
}

body .engine_optimization_section {
    filter: grayscale(1);
}

body .easier_within_head h2 {
    filter: grayscale(1);
}

body .highly_quality_head h2 {
    filter: grayscale(1);
}

body .easier_within_head li {
    filter: grayscale(1);
}

body .nav-tabs > li.active > a {
    border-bottom: 3px solid var(--primary);
}

body .nav-tabs > li:hover > a {
    border-bottom: 3px solid var(--primary);
}

body .bg-purple .border-1 a {
    color: #4e4e4e;
}

body .bg-purple > .container > .row {
    margin: 7px 0;
}

body .bg-danger, .bg-warning, .bg-info, .bg_1 {
    background: #fff;
    border: none;
}

body .bg-purple .color_blue {
    font-size: 15px !important;
    color: #000 !important;
    font-weight: 600;
}

.GlobalDiv .teamMembers {
    padding-bottom: 20px;
}

.easier_within_content.form-section {
    max-width: 50%;
    background: #f0f0f0;
    padding: 30px;
    margin: 0 auto;
}

body .easier_within_content.form-section input[type="submit"] {
    background-color: var(--primary);
    padding: 8px 30px;
    color: #fff !important;
    border-radius: 3px;
}

body .bullet-lists p {
    float: left;
    padding-right: 15px;
    background: #f0f0f0;
    margin-right: 20px;
}

    body .bullet-lists p:before {
        content: '\2714';
        color: var(--primary);
        font-size: 20px;
    }

body .demo_form {
    width: 100%;
}

body .bolg_date_right_box h2 {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}

body .blog_des p {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

.milestone-page {
    padding: 30px 0;
}

    .milestone-page h3 {
        color: var(--primary);
        font-size: 20px;
        font-weight: 600;
        margin: 10px 0;
        background: #00923f2e;
        padding: 5px 20px;
        border-radius: 3px;
        text-align: center;
    }

    .milestone-page p {
        font-size: 15px;
        line-height: 1.7em;
        font-family: "Poppins", sans-serif;
        color: #222222;
    }

    .milestone-page ul li {
        font-size: 15px;
        line-height: 1.7em;
        font-family: "Poppins", sans-serif;
        color: #222222;
        padding: 5px 0;
    }

        .milestone-page ul li:before {
            content: '>';
            padding-right: 8px;
            font-size: 18px;
            color: var(--primary);
        }

body .loan_des {
    margin-top: 18px;
}

    body .loan_des h3 {
        padding: 8px 0;
        font-size: 14px;
        color: #000;
    }

body .tab_content li {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

body .industry_knowledge_left ul li {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

body .automobile_companies_right p {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

body .menu > ul > li > ul > li a > i {
    color: var(--primary);
}

body .menu > ul > li:hover {
    color: var(--primary);
}

body .panel-title i {
    color: var(--primary);
}

body .automobile_companies_right ul li {
    font-size: 15px;
    line-height: 1.7em;
    font-family: "Poppins", sans-serif;
    color: #222222;
}

.easier_within_content.form-section input {
    margin-bottom: 0;
    font-size: 15px !important;
    color: black !important;
}

/*    mobile view */

@media only screen and (max-width:768px) {

    .GlobalDiv .box {
        flex-basis: 100%;
    }

    .div_popup {
        max-width: 90%;
    }

    .GlobalDiv > .container > .row {
        margin: auto;
    }

    .div_popup .wrapper h2 {
        font-size: 19px;
        line-height: 1.5;
    }

    .div_popup .img-fast img {
        display: none;
    }

    #btnClose {
        right: -16%;
        top: -8%;
    }

    body .logo img {
        float: left;
        margin: 10px;
    }

    body .site_content.sticky .front_header {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
    }

        body .site_content.sticky .front_header .menu-mobile {
            margin-top: -15px;
            transition: all .3s ease-in;
        }

    body .menu-mobile {
        width: fit-content;
        padding: 3px 10px;
        font-size: 10px;
        background: #eeedf8;
        position: absolute;
        right: 20px;
        top: 20px;
        margin: 0;
        transition: all .3s ease-in;
    }

    body .menu > ul > li {
        border-bottom: 1px solid white;
        padding: 3px 0;
    }

    body .menu-mobile:after {
        font-size: 20px;
        color: #000;
    }

    body .hero-section h2 {
        font-size: 25px;
    }

        body .hero-section h2::after {
            top: 60%;
            left: 38%;
        }

    body .hero-section .btns-div a.btn-black {
        margin-bottom: 20px;
    }

    body .about-Industry .aboutCards {
        flex-direction: column;
    }

    .at-common-bottom-img img {
        display: none;
    }

    .at-right-shape-img .at-common-img img {
        height: 200px;
    }

    .all-in-one h3 {
        font-size: 25px;
    }

    .mobile_silder_section, .count-kbanner {
        display: none;
    }

    .top_footer .f-address {
        flex-direction: column;
    }
}

.latest-projects {
    padding: 30px 0;
}

    .latest-projects h2 {
        font-size: 15px;
        margin: 0;
    }

    .latest-projects h3 {
        padding: 10px 0;
        font-size: 28px;
        font-weight: 600;
        margin-top: 10px;
    }

    .latest-projects .card {
        background-color: #f0f0f0;
        border-radius: 3px;
        margin-top: 25px;
    }

        .latest-projects .card h3 {
            font-size: 18px;
            font-weight: 500;
            margin: 0;
            padding: 6px 10px;
            color: black;
        }

.contact-section {
    padding: 30px 0;
    background-color: #ECEBF9;
}

    .contact-section h2.at-border-head {
        font-size: 15px;
        margin: 0;
    }

    .contact-section p.lead {
        margin: 12px 0 35px;
        overflow: hidden;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.7em;
    }

    .contact-section .formDiv {
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
    }

        .contact-section .formDiv .form-group label {
            margin: 0 0 5px;
            font-weight: 500;
            font-size: 15px;
        }

        .contact-section .formDiv .form-group input {
            height: fit-content;
            font-size: 14px;
            border-radius: 3px;
            padding: 6px 10px;
            border: 1px solid #dddddd;
        }

        .contact-section .formDiv .form-group textarea {
            height: fit-content;
            font-size: 14px;
            border-radius: 3px;
            padding: 6px 10px;
            border: 1px solid #dddddd;
        }

        .contact-section .formDiv .form-group button[type="submit"] {
            background-color: var(--primary);
            color: #fff;
        }

    .contact-section .section-title {
        font-size: 22px;
    }

    .contact-section .contact-info-card {
        background-color: #fff;
        padding: 25px;
        margin: 0 0 25px;
        border-radius: 5px;
    }

        .contact-section .contact-info-card i {
            font-size: 25px;
            background: #ecebf9;
            color: var(--primary);
            display: inline-block;
            height: 50px;
            width: 50px;
            text-align: center;
            line-height: 1.9;
            border-radius: 50px;
        }

        .contact-section .contact-info-card h5 {
            font-size: 16px;
            font-weight: 500;
            margin: 10px 0 10px;
        }

        .contact-section .contact-info-card p {
            margin: 0;
            font-size: 14px;
            word-wrap: anywhere;
        }

.rewards-page {
    background-color: #ECEBF9;
    padding: 40px 0
}

    .rewards-page h2 {
        color: #000;
        font-weight: 700;
        font-size: 25px;
        margin-bottom: 20px;
        position: relative;
        margin-top: 0
    }

    .rewards-page p {
        color: #3a3a3a;
        font-size: 16px;
        line-height: 1.7em;
    }

        .rewards-page p b {
            color: var(--primary);
            text-transform: capitalize
        }

.keyfeatures {
    padding: 30px 0;
}

    .keyfeatures h2 {
        font-size: 29px;
        color: #131516;
        padding-bottom: 15px;
        margin-bottom: 20px;
        background: url(../../images/footer-line.gif) no-repeat bottom;
        font-weight: 600;
        text-align: center;
        filter: grayscale(1);
    }

    .keyfeatures p {
        font-size: 15px;
        line-height: 1.7em;
        font-family: "Poppins", sans-serif;
        color: #222222;
    }

    .keyfeatures ul li {
        font-size: 15px;
        line-height: 1.7em;
        font-family: "Poppins", sans-serif;
        color: #222222;
        float: left;
        padding: 10px 25px 10px 0;
    }

        .keyfeatures ul li b {
            color: var(--primary);
            padding-right: 5px;
        }

        .keyfeatures ul li:before {
            content: '\2713';
            padding-right: 5px;
            color: var(--primary);
        }

    .keyfeatures.whychoose {
        background-color: #ECEBF9;
    }

.faqs-section {
    padding: 30px 0;
}

    .faqs-section h2 {
        font-size: 29px;
        color: #131516;
        padding-bottom: 15px;
        margin-bottom: 20px;
        background: url(../../images/footer-line.gif) no-repeat bottom;
        font-weight: 600;
        filter: grayscale(1);
        text-align: center;
    }

    .faqs-section .panel-default > .panel-heading h4 {
        font-size: 16px;
        font-weight: 500;
    }

        .faqs-section .panel-default > .panel-heading h4 a {
            text-decoration: none;
        }

    .faqs-section .panel-default .panel-body {
        font-size: 15px;
        border: none;
        outline: none;
    }

    .faqs-section .panel-group .panel + .panel {
        margin-top: 10px;
    }
