@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&display=swap');

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    background-color: #fff;
}

:root {
    --orange: #e2410a;
    --white: #ffffff;
}
.font35 {font-size:34px;}
.orange {
    color: var(--orange);
}

.bg-orange {
    background-color: var(--orange);
}

.p-control {
    color: #515151;
    font-weight: 300;
    font-size: 14px;
}

.heading {
    font-size: 35px;
    padding-bottom: 15px;
}

.btn-outline-danger {
    --bs-btn-color: #E2410A;
    --bs-btn-border-color: #e2410a;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #e2410a;
}

    .btn-outline-danger:hover {
        background-color: linear-gradient(150deg,#E2410A 50%, #E27D0A 100%) !important;
    }

.btn-danger {
    background: linear-gradient(150deg,#E2410A 50%, #E27D0A 100%);
    transition: 0.5s;
}
    .btn-danger:hover {
        background: linear-gradient(210deg, #E2410A 50%, #E27D0A 100%);
    }

    .py-30 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

.text-heading .sm-text {
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
}

.text-heading p.lg-text {
    font-size: 35px;
    font-weight: 600;
    background: linear-gradient(150deg,#E2410A 50%, #E27D0A 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-heading p.text, p.text {
    font-size: 14px;
    font-weight: 300;
}

.img-box-f, .content-f {
    display: flex;
}

.content-f {
    flex-direction: column;
    justify-content: start;
}

/* Header Css */

.navbar.navbar-expand-lg.custom-nav {
    background-color: #fff;
    box-shadow: 0px 10px 40px rgb(0 0 0 / 10%);
}

    .navbar.navbar-expand-lg.custom-nav .navbar-nav li.nav-item a.nav-link {
        font-weight: 500;
        font-size: 14px;
        padding: 25px 20px;
        text-transform: uppercase;
    }
    .navbar.navbar-expand-lg.custom-nav .navbar-nav li.nav-item.service-dropdown:hover .dropdown-menu {
        display: block;
    }
    .navbar.navbar-expand-lg.custom-nav .navbar-nav li.nav-item.active a.nav-link {
        color: #e2410a;
    }
        .navbar.navbar-expand-lg.custom-nav .navbar-nav li.nav-item a.nav-link.get-in-touch-pop span {
            z-index: 2;
            position: relative;
            color: #fff;
            font-size: 16px;
        }
        .navbar.navbar-expand-lg.custom-nav .navbar-nav li.nav-item a.nav-link.get-in-touch-pop:after {
            content: "";
            position: absolute;
            width: 100%;
            top: 16px;
            left: 0px;
            height: 40px;
            background: linear-gradient(150deg, #E2410A 50%, #E27D0A 100%);
            transition: 0.5s;
            border-radius: 10px;
        }
        .navbar.navbar-expand-lg.custom-nav .navbar-nav li.nav-item a.nav-link.get-in-touch-pop:hover:after {
            background: linear-gradient(210deg, #E2410A 50%, #E27D0A 100%);
        }
            .navbar.navbar-expand-lg.custom-nav .navbar-nav li.nav-item a.nav-link:hover, .navbar.navbar-expand-lg.custom-nav .navbar-nav li.nav-item.active a.nav-link {
                color: var(--orange);
            }



.dropdown-menu li a {
    padding: 10px 20px;
    border-bottom: 1px solid #f2f2f2;
    transition: 0.5s;
}

    .dropdown-menu li a:hover {
        background-color: transparent;
        color: var(--orange);
        padding-left: 30px;
    }

.dropdown-menu li:last-child a {
    border-bottom: none;
}

@media screen and (max-width: 991px) {
    .navbar.navbar-expand-lg.custom-nav .navbar-nav li.nav-item a.nav-link {
        padding: 10px 20px 10px;
        text-align: center;
        border-bottom: 1px solid #dddcdc;
    }

    .navbar.navbar-expand-lg.custom-nav .navbar-nav li.nav-item:last-child a.nav-link {
        border-bottom: none;
    }

    .dropdown-menu li a {
        text-align: center;
    }
}
/*END Header Css */

/* hero */
.hero-sec {
    background-image: url(../images/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    width: 100%;
}

    .hero-sec .text-box, .hero-sec .hero-img-box {
        display: flex;
        height: 600px;
    }

        .hero-sec .text-box h1 {
            font-size: 45px;
            margin-bottom: 30px !important;
        }

            .hero-sec .text-box h1 span.agency {
                background: linear-gradient(to right, #E2410A 0%, #E27D0A 100%);
                -webkit-text-fill-color: transparent;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .hero-sec .text-box h1 span.typed-text {
                color: #000;
            }

    .hero-sec .hero-img-box {
        align-items: center;
        justify-content: center;
    }
    /* .hero-sec .hero-img-box img{width: 100%; height: auto;} */
    .hero-sec .text-box {
        flex-direction: column;
        justify-content: center;
    }

        .hero-sec .text-box .btn {
            font-size: 18px;
            font-weight: 500;
            box-shadow: 0px 5px 15px rgb(226 65 10 / 60%);
            width: 170px;
            border-radius: 100px;
            padding-top: 8px !important;
            padding-bottom: 8px !important;
        }

            .hero-sec .text-box .btn:hover {
                box-shadow: 0px 3px 8px rgb(226 65 10 / 60%);
                width: 170px;
                border-radius: 100px;
                padding-top: 8px !important;
                padding-bottom: 8px !important;
            }

@media screen and (max-width: 991px) {
    .hero-sec {
        height: auto;
    }

        .hero-sec .text-box {
            display: block;
            height: auto;
            padding: 0px 0px 30px;
            text-align: center;
        }

        .hero-sec .hero-img-box {
            display: block;
            height: auto;
            padding: 25px 0px;
            text-align: center;
        }

            .hero-sec .hero-img-box img {
                width: 100%;
                height: auto;
            }

        .hero-sec .text-box h1 {
            font-size: 40px;
        }
}
/* hero */

/* Digital Marketing Agency */
.degt-agency {
    background: linear-gradient(175deg,#f4f3f3 50%, #FFFFFF 100%);
    height: 600px;
    border-radius: 50px;
}

    .degt-agency .img-box-f {
        height: 600px;
        align-items: center;
    }

    .degt-agency .content-f {
        height: 600px;
        justify-content: center;
        color: #696969;
    }

    .degt-agency .btn {
        font-size: 18px;
        font-weight: 500;
        width: 170px;
        border-radius: 100px;
    }

@media screen and (max-width: 1199px) {
    .degt-agency .img-box-f img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 991px) {
    .degt-agency {
        height: auto;
        padding:30px 0px;
    }
        .degt-agency .content-f {height:auto;}
        .degt-agency .img-box-f {
            height: auto;
        }
            .degt-agency .img-box-f img {
                width: auto;
                height: 500px;
                margin: auto;
                padding-top: 20px;
                
            }
}

@media screen and (max-width: 420px) {
    .degt-agency .img-box-f img {
        width: 100%;
        height: auto;
        margin: auto;
        padding-top: 20px;
    }
}

    /* Digital Marketing Agency */
    .serv-sec {
        padding: 50px 0px;
    }
        .serv-sec.web-des .card{min-height:400px;}
        .serv-sec.web-dev .card {
            min-height: 390px;
        }

        .serv-sec .card {
            transition: 0.5s;
            border-radius: 15px;
            margin-top: 25px;
        }

        .serv-sec .slick-slide {
            margin: 0px 10px;
        }

        .serv-sec .slick-list {
            padding-bottom: 50px;
        }

        .serv-sec .slick-dots {
            display: flex;
            justify-content: center;
        }

            .serv-sec .slick-dots li {
                list-style: none;
                margin: 0px 3px;
            }

                .serv-sec .slick-dots li button {
                    text-indent: -9999999px;
                    width: 10px;
                    height: 8px;
                    border: none;
                    background-color: #b1b1b1;
                    border-radius: 100px;
                    transition: 0.5s;
                }

                .serv-sec .slick-dots li.slick-active button {
                    width: 30px;
                    height: 8px;
                    background-color: #E2410A;
                }

        .serv-sec .slick-slide.slick-active .card {
            box-shadow: 0px 3px 3px rgb(0 0 0 / 26%);
        }

            .serv-sec .slick-slide.slick-active .card:hover {
                box-shadow: 0px 10px 30px rgb(226 65 10 / 25%);
            }


    .it-going .card {
        border-radius: 10px;
        margin-bottom: 25px;
        transition: 0.5s;
        box-shadow: 0px 3px 3px rgb(187 187 187);
        position: relative;
    }

        .it-going .card .step-sec {
            font-size: 30px;
            position: absolute;
            top: 0px;
            right: 0px;
            color: #ffcfbe;
            width: 35px;
            height: 35px;
            font-weight: 500;
        }


        .it-going .card:hover, .achievements .card:hover, .steps .card:hover, .we-offer .card:hover, .serv-sec .card:hover, .contact-details .card:hover, .why-us .card:hover, .core-values .card:hover, .con-details .card:hover {
            box-shadow: 0px 5px 25px rgb(226 65 10 / 25%);
            border-radius: 10px 35px;
        }

        .it-going .card .card-body .icon {
            width: 70px;
            height: 70px;
            background-color: #E2410A;
            background-image: url(../images/sprit-icon.png);
            background-repeat: no-repeat;
            display: flex;
            border-radius: 100px;
        }

        .it-going .card .card-body .info {
            background-position: 6px 3px;
        }

        .it-going .card .card-body .planning {
            background-position: -67px 3px;
        }

        .it-going .card .card-body .design {
            background-position: -140px 3px;
        }

        .it-going .card .card-body .development {
            background-position: -210px 5px;
        }

        .it-going .card .card-body .testing {
            background-position: -283px 0px;
        }

    .it-going .left-box {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .it-going .img-box-f {
        justify-content: center;
    }

    .achievements {
        background: linear-gradient(355deg,#EEEEEE 50%, #FFFFFF 100%);
        padding: 50px 0px;
        border-radius: 50px;
    }

        .achievements .card, .steps .card, .we-offer .card, .serv-sec .card, .contact-details .card, .why-us .card, .core-values .card, .con-details .card {
            transition: 0.5s;
        }

        .achievements .achiv-no {
            color: #E2410A;
            font-size: 35px;
            font-weight: 600;
            margin-bottom: 0px;
        }

    .red-orange {
        color: #E2410A;
    }

    .achievements .card {
        border-radius: 15px;
    }

.serv-sec.m-aap-dev .card {
    min-height:295px;
}
.serv-sec.s-m-m .card {
    min-height: 395px;
}

.serv-sec.cloud .card {
    min-height:320px;
}
.serv-sec.data-center .card {
    min-height: 412px;
}
.serv-sec.erp .card {
    min-height: 385px;
}

.serv-sec.book-keep .card {
    min-height:470px;
}

@media screen and (max-width: 1399px) {
    .serv-sec.s-m-m .card {
        min-height: 415px;
    }
    .serv-sec.cloud .card {
        min-height: 340px;
    }
    .serv-sec.data-center .card {
        min-height: 435px;
    }
    .serv-sec.erp .card {
        min-height: 410px;
    }
    .serv-sec.book-keep .card {
        min-height: 555px;
    }
}

    @media screen and (max-width: 1199px) {
        .achievements .card {
            min-height: 170px;
        }

        .serv-sec.web-dev .card {
            min-height: 430px;
        }

        .serv-sec.m-aap-dev .card {
            min-height: 295px;
        }

        .serv-sec.m-aap-dev .card {
            min-height: 340px;
        }
        .serv-sec.s-m-m .card {
            min-height: 438px;
        }
        .serv-sec.data-center .card {
            min-height: 495px;
        }
        .serv-sec.erp .card {
            min-height: 430px;
        }

        .serv-sec.book-keep .card {
            min-height: auto;
        }
    }

    @media screen and (max-width: 991px) {
        .serv-sec.web-des .card, .serv-sec.web-dev .card, .serv-sec.m-aap-dev .card, .serv-sec.s-m-m .card, .serv-sec.cloud .card, .serv-sec.data-center .card, .serv-sec.erp .card {
            min-height: auto;
        }




        .achievements .card {
            min-height: auto;
        }
    }

    .sticky {
        position: sticky;
        top: 5rem;
    }

    .testimoinals {
        padding: 50px 0px;
    }

        .testimoinals .card {
            border-radius: 20px;
            transition: 0.5s;
        }

            .testimoinals .card i {
                color: #cbcbcb;
                font-size: 45px;
            }

    .client-box img {
        width: 50px;
        height: 50px;
        border-radius: 100px;
        object-fit: cover;
    }

    .client-box p:last-child {
        font-size: 13px;
        color: #9f9f9f;
    }

    .testimoinals .slick-dots {
        display: flex;
        justify-content: center;
    }

        .testimoinals .slick-dots li {
            list-style: none;
            margin: 0px 3px;
        }

            .testimoinals .slick-dots li button {
                text-indent: -9999999px;
                width: 10px;
                height: 8px;
                border: none;
                background-color: #b1b1b1;
                border-radius: 100px;
                transition: 0.5s;
            }

            .testimoinals .slick-dots li.slick-active button {
                width: 30px;
                height: 8px;
                background-color: #E2410A;
            }

    .testimoinals .slick-slide.slick-active .card {
        box-shadow: 0px 3px 3px rgb(0 0 0 / 26%);
        min-height: 220px;
    }

        .testimoinals .slick-slide.slick-active .card:hover {
            box-shadow: 0px 10px 30px rgb(226 65 10 / 25%);
        }

    .newsletter {
        background: linear-gradient(355deg,#EEEEEE 50%, #FFFFFF 100%);
        padding: 50px 0px;
    }

        .newsletter .form-control, .newsletter .btn-danger {
            border-radius: 100px !important;
        }

        .newsletter .form-control {
            font-size: 14px;
            height: 43px;
        }

            .newsletter .form-control:focus {
                border-color: #ddd;
            }

        .newsletter .btn-danger {
            width: 35px;
            height: 35px;
            position: absolute;
            right: 5px;
            top: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9;
        }


    .term {
        background-image: url(../images/PrivacyPolicybanner.jpg);
    }

    .about {
        background-image: url(../images/about-bg.jpg);
    }

    .faq-bg {
        background-image: url(../images/faq.jpg);
    }

    .request-bg {
        background-image: url(../images/Request.jpg);
    }

    .web-d-banner {
        background-image: url(../images/WebDesigningbanner.jpg);
    }

    .web-dev-banner {
        background-image: url(../images/web-devlopment.jpg);
    }

    .mobile-dev-banner {
        background-image: url(../images/mobile-app-dev.jpg);
    }

    .social-media-banner {
        background-image: url(../images/social-media-banner.jpg);
    }

    .content-writing-banner {
        background-image: url(../images/content-writing.jpg);
    }

    .product-design-banner {
        background-image: url(../images/product-design-banner.jpg);
    }

    .data-center-banner {
        background-image: url(../images/data-center-banner.jpg);
    }

    .ERP-banner {
        background-image: url(../images/ERP-banner.jpg);
    }

    .bookkeeping-banner {
        background-image: url(../images/bookkeeping-banner.jpg);
    }

    .contact-banner {
        background-image: url(../images/contact-banner.jpg);
    }

    .terms-banner {
        background-image: url(../images/terms-banner.jpg);
    }

    .services-banner {
        background-image: url(../images/our-services-banner.jpg);
    }

    .iner-banner {
        height: 300px;
        width: 100%;
        background-size: cover;
        position: relative;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .iner-banner:after {
            content: "";
            position: absolute;
            top: 0px;
            left: 0px;
            height: 100%;
            width: 100%;
            background-color: rgb(0 0 0 / 50%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            color: #fff;
            z-index: 1;
        }

    .about.iner-banner:after {
        display: none;
    }

    .content-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .video-sec .img-box {
        max-width: 406px;
        height: 440px;
        position: relative;
        border-radius: 5px;
        overflow: hidden;
    }

        .video-sec .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .home-vd-btn {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
    }

    .video-play-button {
        position: relative;
        z-index: 10;
        box-sizing: content-box;
        display: block;
        width: 32px;
        height: 44px;
        border-radius: 50%;
        padding: 18px 20px 18px 28px;
    }

        .video-play-button:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 74px;
            height: 74px;
            border-radius: 50%;
            animation: pulse-border 1500ms ease-out infinite;
            background: #D92E00;
        }

        .video-play-button:after {
            content: "";
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 74px;
            height: 74px;
            border-radius: 50%;
            transition: all 200ms;
            background: #D92E00;
        }

        .video-play-button:hover:after {
            background-color: darken(#fa183d, 10%);
        }

        .video-play-button img {
            position: relative;
            z-index: 3;
            max-width: 100%;
            width: auto;
            height: auto;
        }

        .video-play-button span {
            display: block;
            position: absolute;
            z-index: 3;
            width: 0;
            height: 0;
            border-left: 12px solid #fff;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
            left: 50%;
            top: 50%;
            transform: translate(-40%, -50%);
        }

    .modal .video {
        height: 448px;
    }

        .modal .video video {
            width: 100% !important;
            height: auto !important;
        }

.btn-close.custom-close {
    position: absolute;
    right: 0px;
    background-color: #E2410A;
    color: #fff;
    border-radius: 0px 0px 0px 15px;
    padding: 10px 10px;
    z-index: 9999;
    opacity: 1;
}

    @keyframes pulse-border {
        0% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            opacity: 1;
        }

        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            opacity: 0;
        }
    }

    .core-values {
        background: linear-gradient(175deg,#f4f3f3 50%, #FFFFFF 100%);
    }

    .icon-box {
        background-color: #FFF3EF;
        width: 70px;
        height: 70px;
        border-radius: 100px;
        display: flex;
        margin-bottom: 18px;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        color: #e2410a;
    }

    .mid-heading {
        font-size: 18px;
        font-weight: 600;
    }

    .con-details p a {
        color: #686868;
        font-weight: 500;
        text-decoration: none;
    }

    .fw-500 {
        font-weight: 500;
    }

    textarea {
        min-height: 100px !important;
    }

    .con-details .card {
        border-radius: 15px;
        min-height: 235px;
    }

    @media screen and (max-width: 991px) {
        .con-details .card {
            min-height: auto;
            text-align: center;
        }

            .con-details .card .icon-box {
                margin: auto;
            }

        .con-details.py-30 {
            padding-bottom: 5px;
        }

        .con-form .py-30 {
            padding-top: 5px;
        }
    }

    .bg-greay {
        background: linear-gradient(175deg,#f4f3f3 50%, #FFFFFF 100%);
    }

    .steps .step-box {
        display: flex;
        width: 70px;
        height: 70px;
        background-color: #f2f2f2;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        border: 1px solid #e3e3e3;
    }

    .steps .card {
        border-radius: 15px;
        min-height: 230px;
        margin-bottom: 18px;
    }

    .icon-box.offer {
        width: 85px;
        height: 85px;
    }

    .we-do {
        display: inline-block;
        margin: auto;
        width: 85px;
        height: 85px;
        background-image: url(../images/services-sprit.png);
        background-repeat: no-repeat;
        background-size: auto;
    }

    .pue {
        background-position: -10px -7px;
    }

    .latency {
        background-position: -104px -7px
    }

    .customizable {
        background-position: -187px -7px;
    }

    .scalability {
        background-position: -276px -7px;
    }

    .nedundancy {
        background-position: -372px -7px;
    }

    .secure {
        background-position: -455px -12px;
    }

    .audits {
        background-position: -546px -12px;
    }

    .ownership {
        background-position: -630px -12px;
    }

    .blogs {
        background-position: -15px -103px;
    }

    .seo-content {
        background-position: -106px -105px;
    }

    .ebooks {
        background-position: -205px -105px;
    }

    .papers {
        background-position: -300px -110px;
    }

    .copywriting {
        background-position: -392px -110px;
    }

    .guest {
        background-position: -477px -103px;
    }

    .emailers {
        background-position: -566px -103px;
    }

    .news {
        background-position: -656px -103px;
    }

    .website-content {
        background-position: -756px -103px;
    }

    .technical-content {
        background-position: -859px -109px;
    }

    .product-description {
        background-position: -949px -107px;
    }

    .brand-messaging {
        background-position: -1044px -107px;
    }

    .ecommerce {
        background-position: -24px -200px;
    }

    .drinks-product {
        background-position: -122px -207px;
    }

    .hardware {
        background-position: -213px -207px;
    }

    .spitem {
        background-position: -301px -207px;
    }

    .tool-pack {
        background-position: -390px -207px;
    }

    .plastic-pack {
        background-position: -489px -207px;
    }

    .box-design {
        background-position: -577px -207px;
    }

    .skin-care {
        background-position: -680px -207px;
    }

    .hc {
        background-position: -1149px -115px;
    }

    .project {
        background-position: -1233px -115px;
    }

    .worked {
        background-position: -1255px -213px;
    }

    .support-available {
        background-position: -1170px -213px;
    }

    .faq .accordion-button:not(.collapsed) {
        background-color: #e2410a !important;
        color: #fff;
    }

    .faq .accordion-item {
        margin-bottom: 15px;
    }

        .faq .accordion-item .accordion-button {
            background-color: #f1f1f1;
            font-weight: 500;
        }

    .quick {
        background: linear-gradient(355deg, #EEEEEE 50%, #FFFFFF 100%);
    }

        .quick .card {
            border-radius: 15px;
        }
            .quick .card.step-one, .quick .card.step-tow, .quick .card.step-three {
                position: relative;
                border-color: #d2d2d2;
                transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
                z-index:4;
            }

                .quick .card.step-one.active, .quick .card.step-tow.active, .quick .card.step-three.active {
                    border-color: #E2410A;
                }
                .quick .card.step-one:after, .quick .card.step-tow:after, .quick .card.step-three:after, .quick .step-four:after {
                    content: "1";
                    position: absolute;
                    width: 50px;
                    height: 50px;
                    left: -65px;
                    top: 30px;
                    background-color: #dfdfdf;
                    color: #4c4c4c;
                    border-radius: 100px;
                    border: 1px dashed #adadad;
                    font-size: 25px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
                }
                .quick .card.step-tow:after {
                    content: "2";
                    top: 50px;
                }
                .quick .card.step-three:after {
                    content: "3";
                    top: 38px;
                }
        .quick .step-four:after {
            content: "4";
            top: 3px;
        }

        .quick .card.step-one.active:after, .quick .card.step-tow.active:after, .quick .card.step-three.active:after {
            background: linear-gradient(210deg, #E2410A 50%, #E27D0A 100%);
            border-color: #fff;
            color: #fff;
        }

    .form-check-input:checked {
        background-color: #e2410a;
        border-color: #e2410a;
    }

    hr {
        border-color: #ababab;
    }

    .form-check-input:focus {
        box-shadow: 0 0 0 .25rem rgb(255 214 200);
    }

    .contact-details {
        background-color: #FFF3EF;
    }



    .serv-sec.our-serv .services-slider .card {
        min-height: 215px;
    }

    @media screen and (max-width: 991px) {
        .serv-sec.our-serv .services-slider .card {
            min-height: auto;
        }
    }

    /* footer */
    footer {
        background-color: #161616;
        padding-bottom: 0px !important;
    }

        footer p {
            color: #979696;
            font-weight: 300;
            font-size: 12px;
        }

            footer p.heading {
                color: #c7c7c7;
                font-weight: 500;
                font-size: 18px;
                margin-bottom: 0px;
            }

    ul.f-menu {
        margin: 0px;
        padding: 0px 75px 0px 0px;
        list-style: none;
    }

        ul.f-menu li a {
            font-size: 12px;
            color: #979696;
            text-decoration: none;
            font-weight: 500;
            transition: 0.5s;
            padding: 5px 0px;
            display: inline-block;
        }

            ul.f-menu li a:hover {
                color: var(--orange);
                padding-left: 5px;
                text-decoration: underline;
            }

    footer p a {
        color: #979696;
        text-decoration: none;
    }

        footer p a:hover {
            text-decoration: underline;
        }

    .rights {
        margin-top: 20px;
    }

        .rights p {
            border-top: 1px solid #444;
            padding: 15px 0px;
            font-weight: 500;
        }

    .two {
        display: flex;
    }

    .social-icon ul {
        list-style: none;
        padding: 10px 0px;
        margin: 0px;
        display: flex;
    }

    .social-icon li a {
        width: 35px;
        height: 35px;
        background: #3a3a3a;
        border-radius: 100%;
        color: #fff;
        text-align: center;
        line-height: 48px;
        display: flex;
        transition: 0.5s;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }

    .social-icon li {
        margin-right: 10px;
    }

        .social-icon li:last-child {
            margin-right: 0px;
        }

        .social-icon li a:hover {
            background: #D92E00;
            color: #ffffff;
        }

    @media screen and (max-width:991px) {
        footer {
            text-align: center;
        }

        ul.f-menu {
            padding: 0px;
        }

        .two {
            justify-content: center;
            flex-direction: column;
        }

        .social-icon ul {
            justify-content: center;
        }
    }

    /* footer */


    /*Billing Css*/
    .form-box {
        background-color: #fff0f0;
        padding: 25px 25px;
    }

    .billing .form-box {
        background-color: #fff;
        box-shadow: 0px 1px 30px rgb(0 0 0 / 10%);
    }

        .billing .heading h1, .billing .form-box strong {
            color: #000 !important;
        }

        .billing .form-box textarea {
            height: 70px !important;
        }

    .form-box .form-floating label, .form-box .form-floating > .form-control:focus ~ label, .form-box .form-floating > .form-control:not(:placeholder-shown) ~ label {
        top: -8px;
        color: #343434;
        background-color: var(--white);
        padding: 0px 5px;
        margin: 0px;
        height: auto;
        border: none;
        font-size: 10px;
        left: 15px;
        transform: inherit;
        font-weight: 500;
        text-transform: uppercase;
    }

    .form-box .form-floating > .form-control:focus ~ label, .form-box .form-floating > .form-select:focus ~ label {
        color: var(--red);
    }

    .form-box .form-floating .form-control, .form-box .form-floating .form-select {
        padding: 0px 15px;
        height: 35px;
        min-height: 35px;
    }

    .form-box .form-floating textarea {
        padding: 10px 15px !important;
    }

    .form-box .form-floating span {
        font-size: 12px;
    }

    .ui-widget.ui-widget-content {
        z-index: 2 !important;
    }

    .let-talk {
        background-image: url(../images/lets-talk-bg.jpg);
        background-repeat: no-repeat;
        width: 100%;
        height: 600px;
        background-attachment: fixed;
        position: relative;
        padding: 40px 0px 0px;
        background-position: center center;
    }

        .let-talk:after {
            position: absolute;
            width: 100%;
            height: 100%;
            content: "";
            z-index: 1;
            background-color: rgb(0 0 0 / 30%);
            top: 0px;
            left: 0px;
        }

        .let-talk .container {
            position: relative;
            z-index: 2;
        }

        .let-talk .card {
            background-color: rgb(0 0 0 / 40%);
            backdrop-filter: blur(50px);
            border-radius: 15px;
        }


    .breadcrumb {
        padding: 0px;
        background: transparent;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

        .breadcrumb li a {
            color: #fff;
            padding-right: 6px;
            text-decoration: none;
        }

        .breadcrumb li {
            text-transform: capitalize;
            font-size: 18px;
        }

    .tcolor {
        color: #D92E00;
    }

    .breadcrumb li:after {
        content: '>';
        color: #fff;
        padding: 0 7px;
        position: relative;
    }

    .breadcrumb li:last-child:after {
        display: none;
    }

    .site-overview {
        padding: 30px 0px;
    }

    .marq-sec {
        background-color: #e2410a;
        height: 30px;
        width: 100%;
    }

        .marq-sec marquee {
            position: absolute;
            top: 5px;
            color: #fff;
            height: 25px;
        }

.left-fixed {
    position: fixed;
    transition: 0.5s;
    font-size: 18px;
    z-index: 3;
}

        .left-fixed.request {
            right: -135px;
            top: 350px;
        }

        .left-fixed i {
            padding-right: 5px;
        }

        .left-fixed.request:hover {
            right: 0px;
        }

        .left-fixed.services {
            right: -90px;
            top: 400px;
        }

            .left-fixed.services:hover {
                right: 0px;
            }


    .site-overview .site-rank {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .box-shadow {
        box-shadow: 0px 3px 25px rgb(0 0 0 / 8%);
    }

    .site-overview .we-do {
        width: 68px;
        height: 68px;
    }

    .site-overview .counting {
        font-size: 35px;
        font-weight: 500;
        color: #e2410a;
    }

    .line-h28 {
        line-height: 28px;
    }



    @media screen and (max-width:991px) {
        .site-overview .site-rank {
            display: block;
        }

            .site-overview .site-rank .site-rank-item {
                width: 49%;
                display: inline-block;
                margin-bottom: 15px;
                text-align: center;
            }
    }

    .frame-work-section {
        background: #FEF8F5;
        padding: 30px 0px;
    }

        .frame-work-section ul {
            margin: 0px;
            padding: 0px;
            list-style: none;
            display: flex;
            width: 700px;
            margin: auto;
            justify-content: space-between;
        }

            .frame-work-section ul li {
                width: 90px;
                height: 90px;
                background-color: #fff;
                border-radius: 100px;
                display: flex;
                align-items: center;
            }

    .html-icon {
        background-position: -748px -398px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 40%);
        border-radius: 100px;
    }

    .js-icon {
        background-position: -819px -398px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .css-icon {
        background-position: -895px -398px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .xd-icon {
        background-position: -1079px -215px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .ps-icon {
        background-position: -203px -306px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .laravel-icon {
        background-position: -968px -400px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .codeigniter-icon {
        background-position: -1051px -407px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .php-icon {
        background-position: -17px -488px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .shopify-icon {
        background-position: -1138px -407px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .wordpress-icon {
        background-position: -154px -502px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .app-1-icon {
        background-position: -775px -208px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .flutter-icon {
        background-position: -11px -400px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .ios-icon {
        background-position: -87px -400px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .hybrid-icon {
        background-position: -162px -400px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .android-icon {
        background-position: -237px -403px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }


    .smm-fb-icon {
        background-position: -318px -403px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .smm-youtube-icon {
        background-position: -394px -403px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .smm-insta-icon {
        background-position: -490px -403px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .smm-twiter-icon {
        background-position: -580px -398px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .smm-linkdin-icon {
        background-position: -666px -396px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .grammarly-icon {
        background-position: -386px -310px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .ms-doc-icon {
        background-position: -480px -309px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .vertical-icon {
        background-position: -573px -309px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .copyscape-icon {
        background-position: -670px -306px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .png-t-icon {
        background-position: -775px -310px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .ai-icon {
        background-position: -293px -306px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .reclaim-icon {
        background-position: -1191px -10px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .affinty-icon {
        background-position: -1280px -8px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .dc-1-icon {
        background-position: -743px -16px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .dc-2-icon {
        background-position: -828px -14px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }


    .dc-3-icon {
        background-position: -913px -7px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .dc-4-icon {
        background-position: -1001px -11px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }

    .dc-5-icon {
        background-position: -1085px -11px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
        border-radius: 100px;
    }



    @media screen and (max-width:767px) {
        .frame-work-section ul {
            display: block;
            text-align: center;
            width: 100%;
        }

            .frame-work-section ul li {
                display: inline-block;
            }
    }
.info-popup {
    display: flex;
    flex-direction: column;
    min-height: 440px;
    justify-content: center;
}
    .info-popup p:first-child {
        color:#878787;
    }
    .info-popup p:nth-child(2n) {font-size:22px;
    }
.contact-pup .btn-close {font-size:20px;}

/*thankyou css*/
.thankyou-sec {
    height: calc(100vh - 100px);
}

.success i, .danger i {
    font-size: 40px;
}

.success i, .success .pay-successful {
    color: #5db67c;
}

.danger i, .danger .pay-danger {
    color: #dc3545;
}

/*thankyou css*/


/* loader */
.mtt-loading {
    height: 100%;
    width: 100%;
    position: fixed;
    background-color: rgb(0 0 0 / 80%);
    top: 0px;
    z-index: 9999;
}

    .mtt-loading .mtt-loading-content {
        min-height: 100vh;
        width: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

        .mtt-loading .mtt-loading-content .main-loader {
            width: 100%;
            height: auto;
            background-color: #fff;
            padding: 15px 15px;
            border-radius: 15px;
        }

            .mtt-loading .mtt-loading-content .main-loader .loader {
                border: 3px solid #f3f3f3;
                border-radius: 50%;
                border-top: 3px solid #ff7b00;
                width: 40px;
                height: 40px;
                -webkit-animation: spin 2s linear infinite;
                animation: spin 1s linear infinite;
                margin: auto;
                margin-bottom: 15px;
            }

            .mtt-loading .mtt-loading-content .main-loader p.wait {
                font-weight: 700;
            }

            .mtt-loading .mtt-loading-content .main-loader p {
                text-align: center;
                font-size: 14px;
                color: #3a3a3a;
            }

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

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

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

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