/* Minification failed. Returning unminified contents.
(18,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(80,31): run-time error CSS1046: Expect comma, found '0'
(80,35): run-time error CSS1046: Expect comma, found '/'
(100,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(150,49): run-time error CSS1046: Expect comma, found '112'
(150,56): run-time error CSS1046: Expect comma, found ')'
(150,70): run-time error CSS1046: Expect comma, found '183'
(150,76): run-time error CSS1046: Expect comma, found ')'
(150,95): run-time error CSS1046: Expect comma, found '255'
(150,101): run-time error CSS1046: Expect comma, found ')'
(150,119): run-time error CSS1046: Expect comma, found '241'
(150,126): run-time error CSS1046: Expect comma, found ')'
(156,59): run-time error CSS1046: Expect comma, found '112'
(156,66): run-time error CSS1046: Expect comma, found ')'
(156,80): run-time error CSS1046: Expect comma, found '183'
(156,86): run-time error CSS1046: Expect comma, found ')'
(156,105): run-time error CSS1046: Expect comma, found '255'
(156,111): run-time error CSS1046: Expect comma, found ')'
(156,129): run-time error CSS1046: Expect comma, found '241'
(156,136): run-time error CSS1046: Expect comma, found ')'
(381,28): run-time error CSS1046: Expect comma, found '119'
(381,36): run-time error CSS1046: Expect comma, found '/'
(546,10): run-time error CSS1030: Expected identifier, found '.'
(546,45): run-time error CSS1031: Expected selector, found ')'
(546,45): run-time error CSS1025: Expected comma or open brace, found ')'
(802,46): run-time error CSS1046: Expect comma, found '68'
(802,52): run-time error CSS1046: Expect comma, found '/'
(1034,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(1035,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(1036,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(1037,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(1038,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(1064,23): run-time error CSS1046: Expect comma, found '0'
(1064,27): run-time error CSS1046: Expect comma, found '/'
(1435,60): run-time error CSS1046: Expect comma, found '157'
(1435,68): run-time error CSS1046: Expect comma, found '/'
(1441,60): run-time error CSS1046: Expect comma, found '157'
(1441,68): run-time error CSS1046: Expect comma, found '/'
(1445,22): run-time error CSS1039: Token not allowed after unary operator: '-blog-header-bg'
(1463,17): run-time error CSS1039: Token not allowed after unary operator: '-blog-header-color'
(1481,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(1752,22): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(1765,21): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(1770,36): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(2047,16): run-time error CSS1039: Token not allowed after unary operator: '-bs-link-color'
(2051,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-link-hover-color'
(2055,20): run-time error CSS1039: Token not allowed after unary operator: '-bs-link-hover-color'
(2392,41): run-time error CSS1046: Expect comma, found '0'
(2392,45): run-time error CSS1046: Expect comma, found '/'
(2393,33): run-time error CSS1046: Expect comma, found '0'
(2393,37): run-time error CSS1046: Expect comma, found '/'
(2513,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(2568,60): run-time error CSS1046: Expect comma, found '157'
(2568,68): run-time error CSS1046: Expect comma, found '/'
(2695,23): run-time error CSS1046: Expect comma, found '0'
(2695,27): run-time error CSS1046: Expect comma, found '/'
 */
/*==========Fonts==========*/
@import url('../../fonts/poppins/poppins.css'); /*==========Fonts==========*/

* {
    font-family: "Poppins",sans-serif !important;
}


.error-404 {
    text-align: center;
}

    .error-404 h1 {
        font-size: calc(4rem + .9vw);
    }

:root {
    --brand-color: #bd2600;
}

.industry-card .card {
    overflow: hidden;
    border-radius: 30px;
    transition: .3s ease-in-out;
    border: #b9c9d3 1px solid;
    flex-grow: 1;
}

    .industry-card .card:hover .svg::after {
        opacity: 1;
    }

    .industry-card .card:hover .svg:before {
        transform: scale(20);
    }

    .industry-card .card:hover h3, .industry-card .card:hover p {
        color: #fff;
    }

    .industry-card .card .card-body {
        padding: 3rem 2rem;
    }

    .industry-card .card svg {
        width: 46px;
        height: 46px;
        position: relative;
        margin: 0;
        filter: brightness(1) invert(1);
    }

    .industry-card .card .svg {
        transition: .3s ease-in-out;
        position: relative;
        display: inline-block;
        margin-bottom: 2rem;
        padding: 15px;
    }

        .industry-card .card .svg:before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            top: 0;
            border-radius: 50%;
            background: linear-gradient(45deg, #dc8e72, #c13301);
            transition: .3s ease-in-out;
        }

        .industry-card .card .svg:after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            top: 0;
            background: #ffffff21;
            border-radius: 50%;
            box-shadow: rgb(0 0 0 / 20%) 0px 48px 100px 0px;
            transition: .3s ease-in-out;
            opacity: 0;
        }

    .industry-card .card h3 {
        font-size: 1.5rem !important;
        font-weight: 500 !important;
        position: relative;
        transition: .3s ease-in-out;
    }

    .industry-card .card p {
        font-size: 15px;
        position: relative;
        transition: .3s ease-in-out;
    }


.highlighter {
    color: var(--brand-color) !important;
}

.sec-testimonial .card {
    min-height: 288px;
}

.highlight img {
    width: 180px;
    margin: auto;
    margin-bottom: 30px;
}

.highlight .card {
    border: 0;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    padding: 1px;
    background: #b9c9d3;
    transition: .3s ease-in-out;
    flex-grow: 1;
}

.highlight .card-body {
    padding: 30px 0 40px 0;
    text-align: center;
    border-radius: 29px;
    background: #fff;
}

    .highlight .card-body h3, .highlight .card-body p {
        transition: .3s ease-in-out;
    }

.highlight > div .card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.highlight > div:nth-child(1) .card:hover {
    background: linear-gradient(332deg, rgb(255, 255, 196) 0%, rgb(255, 97, 100) 50%, rgb(176, 0, 18) 100%);
}

    .highlight > div:nth-child(1) .card:hover h3, .highlight > div:nth-child(1) .card:hover p {
        color: transparent;
        background-clip: text;
        background-image: linear-gradient(332deg, rgb(255, 255, 196) 0%, rgb(255, 97, 100) 50%, rgb(176, 0, 18) 100%);
    }

.highlight > div:nth-child(2) .card:hover {
    background: linear-gradient(300deg, rgb(255 112 101) 0%, rgb(255 183 53) 33.333%, rgb(178 255 38) 66.667%, rgb(43 241 129) 100%)
}

    .highlight > div:nth-child(2) .card:hover h3, .highlight > div:nth-child(2) .card:hover p {
        color: transparent;
        background-clip: text;
        background-image: linear-gradient(300deg, rgb(255 112 101) 0%, rgb(255 183 53) 33.333%, rgb(178 255 38) 66.667%, rgb(43 241 129) 100%)
    }

.highlight > div:nth-child(3) .card:hover {
    background: linear-gradient(45deg, rgb(252, 142, 197) 0%, rgb(255, 141, 211) 25%, rgb(255, 161, 216) 50%, rgb(255, 193, 210) 75%, rgb(255, 224, 195) 100%);
}

    .highlight > div:nth-child(3) .card:hover h3, .highlight > div:nth-child(3) .card:hover p {
        color: transparent;
        background-clip: text;
        background-image: linear-gradient(45deg, rgb(252, 142, 197) 0%, rgb(255, 141, 211) 25%, rgb(255, 161, 216) 50%, rgb(255, 193, 210) 75%, rgb(255, 224, 195) 100%);
    }

.highlight > div:nth-child(4) .card:hover {
    background: linear-gradient(45deg, rgb(65, 89, 208) 0%, rgb(200, 79, 192) 50%, rgb(255, 205, 112) 100%);
}

    .highlight > div:nth-child(4) .card:hover h3, .highlight > div:nth-child(4) .card:hover p {
        color: transparent;
        background-clip: text;
        background-image: linear-gradient(45deg, rgb(65, 89, 208) 0%, rgb(200, 79, 192) 50%, rgb(255, 205, 112) 100%);
    }

.lh-1-5 {
    line-height: 1.5 !important;
}

.outsource-accordion > .accordion-item {
    border-radius: 12px;
    margin-bottom: 12px;
    border: 2px solid rgba(17,24,39,0.12);
}

.outsource-accordion .accordion-button {
    background-color: transparent;
    padding: 1.3rem calc(1.5rem + 36px) 1.3rem 1.5rem;
    border: 0;
    box-shadow: none;
    font-weight: 500;
    line-height: 1.5;
}

    .outsource-accordion .accordion-button::before, .outsource-accordion .accordion-button::after {
        all: unset;
        content: '';
        width: 32px;
        height: 32px;
        background-size: 24px 24px;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        right: 24px;
        background-color: #e9e9e9;
        border-radius: 50px;
        transition: ease-in-out .3s;
    }

    .outsource-accordion .accordion-button::before {
        opacity: 1;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>');
    }

    .outsource-accordion .accordion-button[aria-expanded="true"]::before {
        opacity: 0;
    }

    .outsource-accordion .accordion-button::after {
        opacity: 0;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-dash" viewBox="0 0 16 16"><path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8"/></svg>');
        transform: rotate(90deg);
    }

    .outsource-accordion .accordion-button[aria-expanded="true"]::after {
        opacity: 0.9;
        transform: rotate(0deg);
    }

.outsource-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.outsource-accordion .ul-check > li {
    color: #525252;
}

.contact-bg {
    background-image: url('/Content/Images/new-images/contact-information-bg-img.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

    .contact-bg:before {
        content: '';
        position: absolute;
        inset: 0 0 0 0;
        background-image: linear-gradient(182deg,#000000a6,#00000096,#00000075,#0000006b);
    }

.read-more-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

    .read-more-text.open {
        display: block;
        -webkit-line-clamp: initial;
        overflow: visible;
        -webkit-box-orient: initial;
    }

.z-1 {
    position: relative;
    z-index: 1 !important;
}

.jot-bg:before {
    content: '';
    background-image: url('/Content/Images/new-images/abstract-jot-1.webp');
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    opacity: .5;
    background-position: left,top;
    z-index: 0;
}

.jot-bg:after {
    content: '';
    background-image: url('/Content/Images/new-images/abstract-jot-2.webp');
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    opacity: .5;
    background-position: right,bottom;
    z-index: 0;
}

.card-title-new {
    font-size: 1.25em !important;
    font-weight: 400 !important;
}

.sec-cs h3.text-start {
    font-size: 1.25em;
    font-weight: 400;
}

.bg-f5f5f7 {
    background: #f5f5f7 !important;
}

.linkedin-embed {
    height: 300px;
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-radius: 5px;
}

.mvv > .mvv-card {
    background-image: linear-gradient(to right,#fff,#f5f5f7);
}

.height-auto {
    min-height: auto !important;
    height: auto !important;
}

.yt-video > iframe {
    height: 480px;
    border-radius: 7px;
    width: 100%;
}

.fs-18 {
    font-size: 18px !important;
}

.text-primary-main {
    color: #D83002 !important;
}

.p-none-contact > .contact-card > div > p {
    display: none !important;
}

.last-child-hidden > *:last-child {
    display: none !important;
}

.head-1-lg {
    font-size: 3rem;
}

.fs-14 {
    font-size: 14px !important;
}

.lh-1-point-7 {
    line-height: 1.7 !important;
}

.lh-30 {
    line-height: 30px !important;
}

.sm-icons a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    transition: ease-in-out .3s;
}

    .sm-icons a:hover {
        background: rgb(37 119 238 / 25%);
        border-radius: 10px;
    }

.sm-icons img {
    height: 17px;
    position: relative;
    z-index: 1;
    transition: ease-in-out .3s;
}

.thankyou-bg:before {
    content: '';
    background-image: url('/Content/Images/new-images/abstract-bg-1.webp') !important;
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    opacity: 0.2;
    background-position: center;
}

.thankyou-form-margin {
    margin: -60px 0 0 0;
    position: relative;
    z-index: 1;
}

.thankyou-form {
    background: #f5f6fa;
    padding: 35px 30px 40px;
    background-image: linear-gradient(134deg,#EBEDF6,#E6E8F0);
}

    .thankyou-form .form-control {
        border-radius: 0;
    }

.map-location {
    width: 100%;
    height: 100%;
    border: 0;
}

.navbar .nav-item .nav-link {
    font-weight: 500;
    font-size: 15px;
    color: #434343;
}

.navbar .nav-item .dropdown-item {
    font-weight: 400;
    font-size: 15px;
    color: #525252;
}

.contact-card .form-control {
    border-radius: 0;
    min-height: 44px;
    border: #dadde9 1px solid;
    font-size: 15px;
}

.contact-card .form-label {
    font-size: 15px;
}

.list-card {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 15px;
}

    .list-card small {
        font-size: 0.775em;
    }

.sec-primary {
    position: relative;
    padding: 80px 0;
}

.contact-card {
    width: 100%;
    background: rgb(245,246,250);
    border: 1px solid #fdfdfd;
    padding: 35px 30px;
}

.p-text {
    margin: 0;
    font-size: 15px;
}

.sec-main {
    margin-top: 81px;
}

.sec-secondary-banner {
    background: rgb(245,246,250);
    padding: 100px 0;
    position: relative;
    z-index: 0;
}

.lh-2 {
    line-height: 2 !important;
}

.head-1 {
    font-size: calc(1.925rem + .9vw);
    font-weight: 600;
    line-height: 1.3;
}

.head-2 {
    font-size: calc(1.325rem + .9vw);
    font-weight: 600;
    line-height: 1.3;
}

.head-3 {
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.3;
}

.outsource-sec {
    background-color: #f5f5f9;
}

.outsource-card > div .col-xl-2 {
    position: relative;
    display: flex;
}

    .outsource-card > div .col-xl-2 > div {
        position: relative;
        display: grid;
        place-content: center;
        width: 100%;
        background: #5e6584;
    }

        .outsource-card > div .col-xl-2 > div > span {
            position: relative;
            display: grid;
            place-content: center;
            border-radius: 8px;
            font-weight: 600;
            font-size: 2.5em;
            color: #fff;
        }

.outsource-sec .card {
    border-color: #dfdfdf !important;
}

.outsource-card p {
    margin: 0;
    font-size: 15px;
}
/*===============Hiring banner css start===============*/

body:has(.h-banner-1,.h-banner-2,.h-banner-3) header > nav {
    border-bottom: 1px solid #e5e5e5;
}

.h-banner-1, .h-banner-3 {
    position: relative;
    margin-top: 81px;
    padding: 80px 0 !important;
    background: #f9fbff;
    z-index: 0;
    overflow: hidden;
}

    .h-banner-1 .h-img {
        position: relative;
    }

        .h-banner-1 .h-img > img {
            border-radius: 50px;
            box-shadow: rgba(0,0,0,0.1) 0px 20px 25px -5px,rgba(0,0,0,0.04) 0px 10px 10px -5px;
        }

        .h-banner-1 .h-img:before {
            content: '';
            position: absolute;
            background: #e94b6b;
            width: 70px;
            height: 70px;
            z-index: -1;
            top: 0;
            right: 0;
            opacity: .5;
            filter: blur(66px);
        }

        .h-banner-1 .h-img:after {
            content: '';
            position: absolute;
            background: #4146e3;
            width: 70px;
            height: 70px;
            z-index: -1;
            bottom: 0;
            left: 0;
            opacity: .5;
            filter: blur(66px);
        }

    .h-banner-1 ul, .h-banner-2 ul, .h-banner-3 ul, .h-banner-4 ul, .ul-check {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

        .h-banner-1 ul > li, .h-banner-2 ul > li, .h-banner-3 ul > li, .h-banner-4 ul > li, .ul-check > li {
            position: relative;
            padding: 0 0 0 24px;
            font-size: 15px;
        }

            .h-banner-1 ul > li > img, .h-banner-2 ul > li > img, .h-banner-3 ul > li > img, .h-banner-4 ul > li > img, .ul-check > li > img {
                position: absolute;
                left: 0;
                top: 2px;
                width: 18px;
            }

.h-banner-2 {
    position: relative;
    margin-top: 81px;
    padding: 80px 0 !important;
    background: #f9fbff;
    z-index: 0;
    overflow: hidden;
}

    .h-banner-2 .h-img {
        position: relative;
    }

        .h-banner-2 .h-img > img.object {
            position: absolute;
            left: -153px;
            top: 50px;
            transform: rotate(90deg);
        }

    .h-banner-2 .object-wrapper {
        position: relative;
    }

        .h-banner-2 .object-wrapper > .object {
            position: absolute;
            right: -140px;
            bottom: 30px;
            z-index: -1;
            transform: rotate(90deg);
        }

    .h-banner-1 strong, .h-banner-2 strong, .h-banner-3 strong, .h-banner-4 strong {
        font-weight: 600;
    }

    .h-banner-1 .brand, .h-banner-2 .brand, .h-banner-3 .brand, .h-banner-4 .brand {
        color: #0048AD;
    }

.h-banner-1 > .h-imgs > .h-img-5 {
    position: absolute;
    inset: 0;
    margin: auto;
    left: inherit;
    transform: translate(50%,50%);
}

.h-banner-4 {
    position: relative;
}

    .h-banner-4 > .h-main {
        position: relative;
        margin-top: 81px;
        padding: 80px 0 310px 0;
        z-index: 0;
        overflow: hidden;
    }

        .h-banner-4 > .h-main:before {
            content: '';
            position: absolute;
            top: -220px;
            right: 0px;
            bottom: 79px;
            left: 0px;
            z-index: -1;
            transform: skewY(355deg);
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
            background-color: #b7f598;
            background-image: url('/Content/Images/new-images/hero-bg-1.webp');
            background-repeat: no-repeat;
            background-size: cover;
        }

        .h-banner-4 > .h-main:after {
            content: '';
            position: absolute;
            background: #ffffff;
            width: 570px;
            height: 570px;
            z-index: -1;
            inset: 0;
            margin: auto;
            opacity: .8;
            filter: blur(170px);
            border-radius: 50%;
        }

    .h-banner-4 > .h-main-imgs {
        margin-top: -260px;
        position: relative;
        margin-bottom: 50px;
    }

        .h-banner-4 > .h-main-imgs img {
            border-radius: 50px;
            width: 100%;
        }

    .h-banner-4 .timing {
        position: absolute;
        font-size: 12px;
        font-weight: 500;
        margin-top: 8px;
    }

@media only screen and (max-width:991px) {
    .h-banner-4 > .h-main {
        padding-bottom: 80px;
        margin-bottom: 80px;
    }

        .h-banner-4 > .h-main:before {
            top: 0;
            bottom: 0;
            transform: skewY(0deg);
        }

    .h-banner-2 .h-img > img.object {
        left: -53px;
    }
}

.h-banner-3 {
    background: url(/Content/Images/new-images/hero-bg-2.webp) no-repeat center center !important;
    background-size: cover !important;
}

    .h-banner-3 .dots > .dot-1 {
        position: absolute;
        bottom: 20px;
        left: 65px;
        z-index: -1;
    }

    .h-banner-3 .dots > .dot-2 {
        position: absolute;
        top: 115px;
        right: 25px;
        z-index: -1;
    }

    .h-banner-3 .bubble > .bubble-1 {
        position: absolute;
        border-radius: 50%;
        height: 160px;
        width: 160px;
        background-color: #175cff;
        left: 0;
        bottom: 10%;
    }

    .h-banner-3 .bubble > .bubble-2 {
        position: absolute;
        border-radius: 50%;
        height: 85px;
        width: 85px;
        background-color: #fff;
        right: 0;
        top: 30%;
        -webkit-box-shadow: 10px 10px 20px rgba(0,0,0,.1);
        box-shadow: 10px 10px 20px rgba(0,0,0,.1);
    }
/*===============Hiring banner css end===============*/

.sec-pd {
    padding: 80px 0px;
}
/*===============blog pages css start===============*/

.blog-filter {
    border-radius: 50px !important;
    border: 3px solid #e1e1e1;
}

    .blog-filter input.form-control {
        border-radius: 50px !important;
        padding: 19px 25px;
        font-size: 18px;
        border: 0;
    }

        .blog-filter input.form-control:focus {
            box-shadow: 0 0 0 .25rem rgb(210 68 19 / 57%);
        }

    .blog-filter button.btn {
        border-radius: 50px !important;
        padding: 14px 25px;
        font-size: 18px;
        position: absolute;
        top: 5px;
        right: 5px;
        z-index: 6;
    }

.blog-detail-body * { /* font-family:"Jost",sans-serif !important;*/
    font-optical-sizing: auto;
    color: #444444;
    line-height: normal;
}

.blog-detail-body h1, .blog-detail-body h2, .blog-detail-body h4 {
    font-family: Roboto,Arial,Helvetica,sans-serif !important;
    font-weight: 600;
    text-transform: capitalize;
}

.blog-detail-body h1, .blog-detail-body h2 {
    color: #333333;
}

.blog-detail-body hr {
    border-color: #9d9d9d;
}

.blog-detail-body.bg-light {
    background: linear-gradient(145deg,rgba(242,250,254,1) 0%,rgba(255,246,242,1) 100%) !important;
}

.blog-list-body h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.6rem;
    line-height: 36px;
}

.blog-list-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-list-banner {
    background: linear-gradient(145deg,rgba(242,250,254,1) 0%,rgba(255,246,242,1) 100%);
    padding: 80px 0;
    text-align: center;
}

.blog-detail-body .head-line {
    position: relative;
}

    .blog-detail-body .head-line:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -12px;
        height: 5px;
        width: 90px;
        background: #ef511c;
        border-radius: 50px;
    }

.fw-500 {
    font-weight: 500;
}

.no-pseudo:before, .no-pseudo:after {
    content: none !important;
}

.btn-blog-d {
    padding: 15px 0;
    background: linear-gradient(145deg,#cf3701 0%,#d34a1a 100%);
    border-radius: 50px;
    position: relative;
    border: 0px solid #da6942 !important;
    overflow: hidden;
    z-index: 1;
}

    .btn-blog-d:hover:before {
        transform-origin: 0% 50%;
        transform: scale3d(1,1,1);
    }

    .btn-blog-d:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 30px;
        background: #000000;
        top: 0;
        left: 0;
        pointer-events: none;
        transform-origin: 100% 50%;
        transform: scale3d(0,1,1);
        transition: transform 0.3s;
        z-index: -1;
    }

.blog-detail-body p, .blog-detail-body label, .blog-detail-body a, .blog-detail-body li { /* font-family:"Jost",sans-serif !important;*/
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

.blog-detail-body .bd-content a {
    color: #0D6EFD;
    text-decoration: underline;
}

.blog-detail-body h1 {
    font-weight: 600;
}

.img-blog, .blog-detail-body .bd-content img {
    width: 100%;
    border-radius: 10px;
    height: auto;
    box-shadow: rgba(17,17,26,0.1) 0px 8px 24px,rgba(17,17,26,0.1) 0px 16px 56px,rgba(17,17,26,0.1) 0px 24px 80px;
}

.list-style-none {
    list-style: none !important;
}

.blog-detail-body {
    margin-top: 81px;
    padding: 60px 0;
}

    .blog-detail-body aside {
        position: sticky;
        top: 100px;
    }

    .blog-detail-body .rmb {
        margin: 0;
        background: linear-gradient(145deg,rgba(242,250,254,1) 0%,rgba(255,246,242,1) 100%);
        padding: 30px 30px;
        border-radius: 10px;
    }

    .blog-detail-body aside ul a {
        display: block;
        margin-bottom: 0;
        border-bottom: 1px solid #e7e7e7;
        padding: 10px 0;
        opacity: .8;
    }

    .blog-detail-body aside ul li:last-child a {
        border-bottom: none;
    }

.btn-np {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width:991px) {
    .blog-detail-body aside {
        position: relative;
        top: 0;
    }

    .moblie-cta .head-line:after {
        right: 0;
        margin: auto;
    }
}

@media only screen and (max-width:767px) {
    .blog-list-body h2, .blog-list-body p {
        display: block;
        -webkit-line-clamp: initial;
        -webkit-box-orient: initial;
        overflow: initial;
    }
}

@media only screen and (max-width:575px) {
    .blog-detail-body {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/*===============blog pages css end===============*/

@font-face {
    font-family: Roboto;
    src: url('/fonts/Roboto-Regular.ttf') format('truetype');
    font-display: swap;
}

.great-vibes-regular {
    font-family: "Great Vibes",cursive;
    font-weight: 400;
    font-style: normal;
}

.spl-font, .spl-font-light {
    font-size: 1.5em;
}

.spl-font-light {
    font-weight: normal;
}

.spl-font.grad {
    padding: 10px;
    background: -webkit-linear-gradient(#fb6039,#bd2600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

:root {
    --brand-color: #BC3F51;
    --bs-navbar-color: #000;
    --bg-width: 1400px;
    --blog-header-bg: #fbfbfb;
    --blog-header-color: #000;
}

html {
    scroll-behavior: smooth;
    scroll-padding: 81px 0 0 0px;
}

    html body {
        color: #333333;
        font-family: Roboto,Arial,Helvetica,sans-serif;
    }

body {
    font-size: 1em;
}

a {
    text-decoration: none;
}

.fixed-top {
    background: #fffffff7;
    top: 0;
    font-size: 14pt;
    font-weight: bold;
    box-shadow: rgb(0 0 0 / 14%) 0px 1px 2px 0px;
}

.top-contact {
    position: fixed;
    top: 0px;
    height: 40px;
    left: 0px;
    right: 0px;
    background: #1c1a1a;
    color: #fff;
    z-index: 1031;
    border-bottom: 6px solid #bd2600;
}

    .top-contact a {
        color: #fff;
        display: inline-block;
        margin-top: 4px;
    }

.topbar {
    padding: 5px 0px;
    clear: both;
}

.footer {
    min-height: 200px;
    background: #e7e8ea url(/Content/Images/map.webp) repeat-x right;
    background-size: contain;
    padding: 40px 0px;
    color: #333333;
    font-size: .85em;
}

    .footer a {
        color: #333333;
    }

        .footer a:hover {
            text-decoration: underline;
        }

.f-menu h2 {
    color: #000;
    font-size: 1.25em;
    margin-bottom: 20px;
}

.f-menu h3 {
    color: #333333;
    font-size: 1.25em;
}

.f-menu a {
    margin-bottom: 10px;
    display: inline-block;
}

.footer hr {
    border: solid 1px #9f9c9c;
}
/*contact info start*/ /*#inner_text{margin-top:7px;}*/

.tag_infos {
    font-size: 15px;
    display: block;
    width: 70%;
    text-align: center; /* margin:0 auto;*/
    margin: -20px auto auto 121px;
}

.num_conkats {
    margin-left: 37px;
    color: #000000;
    font-size: 2.8rem;
    margin-top: 65px
}

.divideds {
    width: 442px;
    border-right: 1px solid #C5C5C5;
    margin-top: -2px;
    height: 101px;
    line-height: 54px;
    padding-top: 14px;
    padding-right: 16px;
}

#wtsappINfo {
    z-index: 9999;
}

.call-icon-lgs {
    width: 48px;
    height: 48px;
}

.middleontents {
    width: 77%;
    display: inline-block;
}

.sepraters {
    margin-right: 15px;
}

#wtsups {
    margin-top: 14px;
    width: 20%;
    height: auto;
    float: right;
    margin-right: -2px;
}

#seprts {
    height: 15px;
}

.stretched-links {
    float: right;
    top: 1px;
    position: absolute;
    right: -4px;
    margin-right: 26px;
}

#tag_indentitys {
    font-size: 0.8rem;
    word-spacing: 0.2em;
    color: #000;
    font-weight: 570;
}

.telph-imgs {
    margin-top: 12px;
}

.spsetext {
    margin-top: -48px;
    margin-left: 24px;
}

.tag_infos {
    margin: -38px auto auto 130px;
}
/*contact info close*/ /*contactus code start*/

.btn-custom > .btn:first-child {
    padding-left: 20px;
    border-radius: 45px;
    font-size: 2em;
    position: relative;
    text-align: right;
    background: linear-gradient(to bottom,#ffffff,#DADADA);
    border: none;
    padding-top: 2%;
    padding-bottom: 2%;
    font-weight: 650;
    border-right: 1px solid #C5C5C5;
}

.btn-custom > .btn:last-child {
    padding-right: 20px;
    border-top-right-radius: 45px;
    border-bottom-right-radius: 45px;
    border: none;
    border-left: 1px solid #C5C5C5;
    background: linear-gradient(to bottom,#ffffff,#DADADA);
}

    .btn-custom > .btn:last-child:hover {
        background: #fafafa;
    }

.btn-custom > .btn:first-child svg {
    fill: black;
    margin-top: 4px;
}

.btn-custom > .btn:last-child svg {
    fill: green;
    margin-top: 3px;
    margin-bottom: 4px;
}

.helptext {
    position: absolute;
    width: 100%;
    bottom: 5px;
    font-size: 0.35em;
    text-align: right;
    padding-top: 10px;
    right: 12px;
    font-weight: 500;
}

    .helptext sup {
        font-size: 1.9em;
        top: 3px;
    }
/*contact us code end*/ /*new tags start*/

.phoneicon {
    float: left;
}

.outr_div {
}

.formatbtn {
    padding: 1px;
    border-radius: 50px;
    background: linear-gradient(to bottom,#FFFFFF,#FFFFFF,#DADADA);
    cursor: pointer;
    font-size: 45PX;
    border: 1px solid #C5C5C5;
    box-shadow: 6px 9px 10px rgba(68,68,68,0.2);
}

.middle_text h4 {
    color: #000000;
    font-size: 2.5em;
    font-weight: 600;
}

.unit-wrapper {
    position: relative;
}

.unit-link {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.cta-links {
    position: relative;
    z-index: 4;
}

.newphone_teli {
    width: 27%;
    height: 27%; /* margin-left:10px;*/
    float: left;
}
/*Section Styles*/

.sec {
    min-height: 100vh;
    padding: 5% 0px;
}

    .sec h1 {
        color: #fff;
        font-size: 1.5em;
        margin-bottom: 2%;
        font-weight: 600;
        margin-top: 70px;
        letter-spacing: 2px;
    }

        .sec h1.non-banner {
            color: #000;
            font-size: 2em;
            margin-bottom: 30px !important;
            margin-top: 30px;
        }

        .sec h1.h1-sm {
            font-size: 1.5em;
        }

    .sec p.subhead {
        color: #3f3f3f;
        font-size: 1.5em;
        margin-top: 0px;
        margin-bottom: 30px;
    }

.subhead-primary-bg {
    background-color: #BC3F51;
    color: #fff !important;
    padding: 20px;
    border-radius: 15px;
}

.call-head {
    color: #3f3f3f;
    font-size: 2em !important;
    margin-top: 0px;
    margin-bottom: 5px;
}

.call-head-help {
    font-size: 1em !important;
    margin-bottom: 10px;
}

.nomar {
    margin: 0 !important;
}

.sec p.subhead-lg {
    margin-top: 0px;
    color: #000;
    font-size: 1.5em !important;
    margin-bottom: 50px;
}

.sec h2 {
    font-size: 2.15em;
    font-weight: 600;
    margin: 0px 0px 20px 0px;
    letter-spacing: 2px;
    line-height: 1.5em;
}

.secondary-h2 {
    color: #c13301;
}

.sec h3 {
    font-size: 1.5em;
    margin: 0px 0px 20px 0px;
}

.sec hr {
    margin-bottom: 2%;
}

.sec p, .sec ul {
    font-size: 1.15em;
    color: #000;
}

.sec h1.dark {
    color: #000;
}

.sec h1.brand {
    color: #bd2600;
}

.sec-gray {
    background: #f5f5f7;
}

    .sec-gray h3 {
        color: #666;
    }

.sec-banner {
    background: linear-gradient(to bottom,#0f2942 50%,#172e46 );
    color: #f5f5f5;
}

.sec-banner-home {
    background: #395a71 url(/Content/Images/Banner_Graphic.webp) center bottom no-repeat;
    background-size: cover;
}

.sec-banner-team {
    background: #395a71 url(/Content/Images/Banner_Graphic.webp) center bottom no-repeat;
    background-size: cover;
}

.sec-banner-about {
    background-image: linear-gradient(to top,#FFFFFF,rgb(0 157 213 / 22%),#009dd538);
    min-height: unset !important;
    padding-bottom: unset !important;
}

.sec-banner-contact {
    background-image: linear-gradient(to top,#FFFFFF,rgb(0 157 213 / 22%),#009dd538);
}

.sec-blog {
    background: var(--blog-header-bg);
    padding: 100px 0px 10px 0px;
    border-bottom: solid 1px #ddd;
}

    .sec-blog h1 {
        font-size: 2.5em;
        margin: 0;
        padding: 0;
        text-align: center;
    }

.ext-form-small {
    max-width: 768px;
    margin: auto;
}

.sec-blog h1, .sec-blog p {
    color: var(--blog-header-color) !important;
    text-align: center;
}

.sec-blog-content p {
    font-size: 1.25em;
    font-family: Roboto;
}

.more-blogs {
    background: #f5f5f5;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 2%;
}

.more-blog-head {
    font-size: 1.5em;
    color: var(--brand-color) !important;
}

.more-blogs ul {
    margin: 0;
    padding: 0;
}

    .more-blogs ul li {
        margin-bottom: 10px;
        list-style: none;
        list-style-type: none;
        border-bottom: dashed 1px #aaa;
        text-indent: 0;
        padding: 5px 0px;
    }

        .more-blogs ul li:last-child {
            border-bottom: none !important;
        }

.sec-lead .card:hover {
    box-shadow: 0px 0px 10px #888;
    transition: box-shadow linear .25s;
}

.sec-banner h2 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 2%;
}

.sec-banner p {
    color: #e5e5e5;
    max-width: 450px;
}

.sec-industry svg {
    max-width: 50px;
    max-height: 50px;
}

.sec-industry p {
    color: #555;
}

.sec-benefits .card {
    min-height: 575px;
}

    .sec-benefits .card h3 {
        margin: 10px 0px;
    }

    .sec-benefits .card p {
        color: #555;
    }

.sec-promo {
    background: #e7e8ea;
}

.sec-contact-cta {
    background-image: linear-gradient(45deg,#FF0000,#990000);
    padding: 80px 0px;
    position: relative;
}

    .sec-contact-cta::before {
        content: '';
        background-image: url('/Content/images/bg-cta-patter.webp');
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 800px;
        background-size: cover,cover;
        background-position: center;
        opacity: 0.3;
    }

    .sec-contact-cta::after {
        content: '';
        background-image: url('../images/contact-cta-face.png');
    }

    .sec-contact-cta h2, .sec-contact-cta p, .sec-contact-cta hr {
        color: #fff;
    }

    .sec-contact-cta .contact-cta-face-img {
        position: absolute;
        right: 0;
        bottom: -80px;
        height: 330px;
        margin: auto;
    }

    .sec-contact-cta h2 {
        line-height: 1.5;
    }

    .sec-contact-cta .container {
        position: relative;
    }

.sec-contact {
    background: #6e7171;
}

    .sec-contact h2 {
        color: #fff;
    }

.sec-cta {
    background: #BC3F51;
    min-height: unset;
    color: #fff;
    padding: 5% 0px;
}

    .sec-cta h2 {
        color: #fff;
    }

    .sec-cta p {
        color: #fff;
    }

    .sec-cta .call-panel a {
        color: #fff;
    }

        .sec-cta .call-panel a svg {
            fill: #fff;
        }

.sec-cs {
    min-height: 100vh;
}

    .sec-cs h3 {
        font-size: 2.5em;
        font-weight: 300;
        color: #000;
        margin-top: 3%;
        text-shadow: 0px 0px 10px #fff;
    }

.sec-contact-info h3 {
    font-size: 1.5em;
}

.sec-highlight {
    background: transparent url(/Content/Images/hl-bg-fill.webp);
    color: #fff;
    padding: 20px 0px;
    min-height: fit-content;
}

.sec-normal-pad {
    padding: 5% 0px;
}

.sec-highlight h2 {
    font-size: 2em !important;
    margin: 20px 0px 0px 0px;
}

.sec-highlight .subhead {
    color: #fff !important;
    font-size: 1.75em !important;
    margin: 0;
}

.sec-call {
    background: #f5f5f5;
    padding-bottom: 20px;
}

.sec-cs-dark h3 {
    color: #fff;
    text-shadow: 0px 0px 10px #000;
}

.sec-cs .cs-desc {
    display: none;
}

@media (orientation:portrait) {
    .sec {
        min-height: unset !important;
    }
}

@media (max-width:576px) {
    .whatappicon {
        display: none;
    }

    .sec {
        min-height: unset;
    }

    .sec-banner-home {
        background-position: left center;
    }

    .sec-banner h1 {
        color: #fff;
        font-size: 2.25em;
        margin-bottom: 2%;
        font-weight: 300;
        margin-top: 70px;
        max-width: 450px;
    }

    .sec-banner hr {
        margin-bottom: 2%;
    }

    .sec-banner p {
        font-size: 1.15em;
        padding: 10px;
    }

    .sec-benefits .card h3 {
        font-size: 1.5em;
        margin: 10px 0px;
    }

    .sec-cs h3 {
        font-size: 1.5em;
        font-weight: 300;
        color: #000;
        margin-top: 3%;
        text-shadow: 0px 0px 10px #fff;
    }

    .num_conkats {
        font-size: 1.8rem;
    }

    #wtsups {
        margin-right: -7px;
    }
}

.h3points {
    max-height: 700px;
    overflow: auto;
}

@media (max-width:768px) {
    .h3points {
        max-height: unset;
    }
}
/* width */

.h3points::-webkit-scrollbar {
    width: 5px;
}
/* Track */

.h3points::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */

.h3points::-webkit-scrollbar-thumb {
    background: var(--brand-color);
}
    /* Handle on hover */

    .h3points::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.h3points h3 {
    font-weight: 600;
}

    .h3points h3 span {
        color: var(--brand-color);
        font-weight: bold;
    }

.point-sep {
    border-bottom: dashed 1px var(--brand-color);
    margin-bottom: 20px;
}

    .point-sep:last-child {
        border-bottom: none;
    }

@media (min-width:576px) {
    .sec-banner {
        color: #f5f5f5;
        min-height: 100vh;
        padding: 10% 0px;
    }

    .sec h1.non-banner {
        color: #000;
        font-size: 2em;
        margin-bottom: unset;
    }

    .sec-banner h1 {
        color: #fff;
        font-size: 2em;
        margin-bottom: 2%;
        font-weight: 300;
        margin-top: 70px;
    }

    .sec-banner hr {
        margin-bottom: 2%;
    }

    .sec-banner p {
        font-size: 1.15em;
        color: #fff;
        padding: 10px;
    }

    .sec-benefits .card h3 {
        font-size: 1.5em;
        margin: 10px 0px;
    }
}

@media (min-width:768px) {
    .sec-banner {
        color: #f5f5f5;
        min-height: 100vh;
        padding: 10% 0px;
    }

        .sec-banner h1 {
            color: #fff;
            font-size: 2em;
            margin-bottom: 2%;
            font-weight: 300;
            margin-top: 70px;
            max-width: 450px;
        }

        .sec-banner hr {
            margin-bottom: 2%;
        }

        .sec-banner p {
            font-size: 1.15em;
            color: #fff;
            padding: 10px;
            max-width: 450px;
        }

    .sec-cs h3 {
        font-size: 1.5em;
        font-weight: 300;
        margin-top: 3%;
        text-shadow: 0px 0px 10px #fff;
    }
}

@media (min-width:992px) {
    .sec-banner {
        color: #f5f5f5;
        min-height: 100vh;
        padding: 10% 0px;
    }

        .sec-banner h1 {
            color: #fff;
            font-size: 2.25em;
            margin-bottom: 2%;
            font-weight: 300;
            margin-top: 70px;
            max-width: 500px;
        }

        .sec-banner hr {
            margin-bottom: 2%;
        }

        .sec-banner p {
            font-size: 1.25em;
            color: #fff;
            padding: 10px;
            max-width: 500px;
        }

    .sec-benefits .card h3 {
        font-size: 1.5em;
        margin: 10px 0px;
    }

    .sec {
        min-height: unset;
    }

    .sec-cs h3 {
        font-size: 1.75em;
        font-weight: 300;
        margin-top: 3%;
        text-shadow: 0px 0px 10px #fff;
    }
}

@media (min-width:1200px) {
    .sec p.subhead {
        font-size: 2em;
    }

    .sec h2 {
        font-size: 2.5em;
    }

    .sec-benefits .card h3 {
        font-size: 2em;
        margin: 10px 0px;
    }

    .sec-banner {
        color: #f5f5f5;
        min-height: 100vh;
        padding: 10% 0px;
    }

        .sec-banner h1 {
            color: #fff;
            font-size: 2.75em;
            margin-bottom: 2%;
            font-weight: 600;
            margin-top: 30px;
            max-width: unset;
        }

    .sec h1.non-banner {
        color: #000;
        font-size: 2.75em;
        margin-bottom: unset;
        margin-top: 20px;
    }

    .sec-banner hr {
        margin-bottom: 2%;
    }

    .sec-banner p {
        font-size: 1.5em;
        color: #fff;
        padding: 10px;
        max-width: unset;
    }

    .sec-cs h3 {
        font-size: 1.75em;
        font-weight: 300;
        margin-top: 3%;
        text-shadow: 0px 0px 10px #fff;
    }
}

@media (min-width:1400px) {
    .sec h2 {
        font-size: 2.5em;
    }

    .sec h1.non-banner {
        color: #000;
        font-size: 2.75em;
        margin-bottom: unset;
        margin-top: 20px;
    }

    .sec-banner {
        color: #f5f5f5;
        min-height: 100vh;
        padding: 10% 0px;
    }

        .sec-banner h1 {
            color: #fff;
            font-size: 4em;
            margin-bottom: 2%;
            font-weight: 600;
            margin-top: 20px;
            max-width: unset;
        }

        .sec-banner hr {
            margin-bottom: 2%;
        }

        .sec-banner p {
            font-size: 1.75em;
            color: #fff;
            padding: 10px;
            max-width: unset;
        }
}
/*Section Styles End*/

.call-panel {
    font-size: 0.8em;
    display: none;
}

    .call-panel a {
        display: inline-block;
        font-size: 1.5em;
        color: #0048AD;
        padding: 2px;
        transition: background-color linear .25s;
        border-radius: 5px;
    }

        .call-panel a:hover {
            background: #4f96ff;
            color: #fff;
            transition: background-color linear .25s;
        }

.call-lg {
    font-size: 2em;
}

.border-2px {
    border-width: 2px;
}

.text-decoration-underline-hover:hover {
    text-decoration: underline !important;
}

.call-icon {
    width: 24px;
    height: 24px;
    fill: #4f96ff;
}

.fill-white {
    fill: #fff !important;
}

.rounded {
    border-radius: 50px;
}

.call-panel a:hover .call-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.call-icon-lg {
    width: 48px;
    height: 48px;
}

.call-lg .call-icon {
    fill: var(--bs-link-color);
}

.call-lg:hover {
    color: var(--bs-link-hover-color);
}

    .call-lg:hover .call-icon {
        fill: var(--bs-link-hover-color);
    }

.sec-icon {
    max-width: 96px;
    max-height: 96px;
    fill: #BC3F51;
}

.sec-banner .call-panel a {
    color: #419eff;
}

u.brand {
    text-decoration: underline;
    text-decoration-color: #bd2600;
    text-underline-position: under;
}

h6.brand {
    color: #bd2600;
}

.sec-contact h3 {
    color: #fff;
}

.sec-contact .form-control {
    background: transparent;
    border: solid 1px #fff;
    color: #fff;
}

    .sec-contact .form-control:focus {
        background: transparent;
    }

.sec-contact label {
    color: #fff;
}

.contact-addr h5 {
    border-bottom: solid 1px #000;
    margin-bottom: 10px;
}

.card-light {
    color: #000;
}

    .card-light .subhead {
        font-family: Roboto;
        color: #000 !important;
        font-weight: bold;
        margin-bottom: 0 !important;
    }

    .card-dark p, .card-light p {
        text-shadow: 0px 0px 5px #fff;
    }

.card-dark {
    color: #fff;
}

    .card-dark .subhead, .card-dark p {
        color: #fff !important;
        margin-bottom: 0 !important;
        text-shadow: 0px 0px 5px #fff;
    }

.card figure {
    width: 100%;
    height: 443px;
    margin: 0;
}

.ad-erp {
    background: url(/Content/Images/erp-solution-xs.webp) no-repeat;
    background-position: center bottom;
}

.ad-crm {
    background: url(/Content/Images/crm-solutions-xs.webp) no-repeat;
    background-position: center bottom;
}

.ad-ecom {
    background: url(/Content/Images/ecommerce-solution-xs.webp) no-repeat;
    background-position: center bottom;
}

.ad-cus {
    background: url(/Content/Images/bespoke-software-xs.webp) no-repeat;
    background-position: center bottom;
}

@media (max-width:576px) {
    .card figure {
        height: 400px;
    }
}

@media (min-width:768px) {
    .card figure {
        height: 442px;
    }

    .ad-erp {
        background: url(/Content/Images/erp-solution.webp) no-repeat;
        background-position: center bottom;
    }

    .ad-crm {
        background: url(/Content/Images/crm-solutions.webp) no-repeat;
        background-position: center bottom;
    }

    .ad-ecom {
        background: url(/Content/Images/ecommerce-solution.webp) no-repeat;
        background-position: center bottom;
    }

    .ad-cus {
        background: url(/Content/Images/bespoke-software.webp) no-repeat;
        background-position: center bottom;
    }
}

.m-icon {
    display: inline-block;
    border: solid 2px #aaa;
    border-radius: 50px;
    fill: #c13301;
}

.m-icon-24 {
    width: 100px;
    height: 100px;
}

.m-icon-social {
    fill: #0a66c2;
    width: 36px;
    height: 36px;
}

.m-icon-pad {
    padding: 5px;
}

.m-icon-download {
    fill: #bd2600;
    width: 24px;
    height: 24px;
}

.btn-outline-primary:hover .m-icon-download {
    fill: #ffffff !important;
}

.m-icon-call {
    fill: #fff;
    width: 21px;
    height: 21px;
}

.feat-point {
    border-bottom: dashed 1px #a5a5a5;
    margin-bottom: 10px;
}

    .feat-point:nth-child(7) {
        border-bottom: none;
    }

.case-stud {
    border: solid 1px #fff;
    padding: 20px;
    background: #cfd7df;
}

.btn-outline-primary {
    border-color: #bd2600;
    color: #bd2600;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #bd2600;
        border-color: #bd2600;
    }

.btn-primary {
    color: #fff;
    background-color: #bd2600;
    border-color: #bd2600;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #e03206;
        border-color: #e03206;
    }

.social-links a {
    display: inline-block;
    width: 32px;
    height: 32px;
}

    .social-links a svg {
        width: 100%;
        height: 100%;
        fill: #333333;
    }

    .social-links a:hover svg {
        width: 100%;
        height: 100%;
        fill: #bd2600;
    }

.feat {
    background-color: #e7e8ea;
    overflow: hidden;
    margin-bottom: 20px;
}

    .feat > div:first-child {
        background: #e7e8ea;
    }

    .feat > div:last-child {
        background: #e7e8ea;
    }

    .feat h3 {
        margin-top: 20px;
    }

    .feat h4 {
        color: #bd2600;
    }

        .feat h4 + p {
            border-bottom: solid 1px #d2d2d2;
            padding-bottom: 10px;
        }

            .feat h4 + p:last-child {
                border-bottom: none;
            }

.shade {
    color: #bd2600;
    background: #fff;
    font-family: -apple-system,BlinkMacSystemFont,'montserratextralight','Segoe UI';
    padding: 10px;
    font-size: 33px;
    display: inline-block;
    text-transform: uppercase;
    font-display: swap;
}

.w-100 {
    width: 100%;
}

.hl {
    background-color: #ffe800;
    padding: 5px 10px;
}

.tech-doc {
    background-color: #7f7f7f !important;
}

.nopad {
    padding-left: -15px;
    padding-right: -15px;
}

.pm {
    background: url(/Content/Images/pm_bg.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff !important;
}

@media (max-width:1024px) and (orientation:portrait) {
    .pm {
        background-size: cover;
    }
}

@media (max-width:1024px) and (orientation:landscape) {
    .pm {
        background-size: contain;
    }
}

.hl-list {
    background-color: #efefef;
    padding: 15px 20px;
    margin-top: 20px;
    box-shadow: 0 0.125rem 0.625rem 0 rgba(0,0,0,0.2);
}

    .hl-list li {
        list-style: none;
        color: #333;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: solid 1px #d0cfcf;
    }

        .hl-list li:first-child {
            font-size: 24px;
            border-bottom: none;
            padding-bottom: 5px;
        }

        .hl-list li:last-child {
            border-bottom: none;
        }

.field-validation-error {
    color: red;
}

.contact-panel {
    border: solid 1px #ddd;
    border-left: solid 2px #bd2600;
    padding: 20px 20px 20px 20px;
    margin-bottom: 10px;
    background: #f5f5f5;
    -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
}

.nav-link.active {
    border-bottom: solid 2px #bd2600 !important;
}

.nav-link:hover {
    color: #bd2600 !important;
}

.card-offers {
    background: #ffffffd1;
    margin-bottom: 20px;
    box-shadow: 10px 10px 5px #9595952e;
    display: block;
}

    .card-offers h3 {
        color: #bd2600;
        margin: 0px 20px;
        font-size: 1em;
        padding: 5px;
    }

    .card-offers h4 {
        background: #bd2600;
        color: #ffffff;
        margin: 0px 20px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
        font-size: 1.25em;
        padding: 5px 7px;
        display: inline;
    }

@media (min-width:768px) {
    .card-offers {
        min-height: 200px;
    }
}

.carousel {
    color: #fff;
    box-shadow: 0px 0px 10px #c9c9c9e8;
    border-radius: 5px;
}

.carousel-caption {
    position: absolute;
    right: 5%;
    bottom: 1rem;
    left: 5%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

.carousel-inner > .carousel-item {
    min-height: 400px;
}

.carousel-item h1 {
    color: #fff;
    font-size: 2em;
    text-shadow: 2px 2px #12121261;
}

.carousel-item h2 {
    font-size: 1.75em;
    padding: 7px;
    background: #bd2600d1;
    color: #fff;
    display: inline-block;
}

.carousel-item p {
    font-size: 1em;
    color: #000;
}

.carousel-item-first {
    background: url(/Content/Images/outsourcing-benefits.webp) no-repeat;
}

.carousel-item-second {
    background: url(/Content/Images/outsourcing-services.webp) no-repeat;
    background-size: auto;
}

.carousel-services {
    padding: 20px;
}

@media (min-width:768px) {
    .carousel-item-first {
        background: url(/Content/Images/outsourcing-benefits-sm.webp) no-repeat;
        background-position: center center;
    }

    .carousel-item-second {
        background: url(/Content/Images/outsourcing-services-sm.webp) no-repeat;
        background-position: center center;
    }
}

@media (min-width:992px) {
    .carousel-item-first {
        background: url(/Content/Images/outsourcing-benefits-lg.webp) no-repeat;
        background-position: center center;
    }

    .carousel-item-second {
        background: url(/Content/Images/outsourcing-services-lg.webp) no-repeat;
        background-position: center center;
    }
}

.carousel h4 {
    color: var(--brand-color);
}

.carousel-sm {
    background: #fff;
    color: #666;
}

.cs-desc {
    margin: 40px;
}

.carousel-sm h3 {
    font-size: 2em;
}

.carousel-sm h4 {
    color: #666 !important;
    font-size: 1.5em;
}

.carousel-sm p {
    font-size: 1em;
}

.ca-pvs {
    background-color: #f7d7b0;
}

.ca-ai {
    background-color: #6dd7e8;
}

.ca-edu {
    background-color: #f2f3f3;
}

.ca-pvs h3, .ca-pvs h4 {
    color: #93642c !important;
}

.ca-ai h3, .ca-ai h4 {
    color: #19354d !important;
}

.text-justify {
    text-align: justify;
}

.sec-about {
    background: #fff url(/Content/Images/company-bg.webp) no-repeat left bottom;
    background-size: contain;
}

.sec-other {
    background-image: linear-gradient(to top,#FFFFFF,rgb(0 157 213 / 22%),#009dd538);
}

    .sec-about h1, .sec-other h1 {
        background: -webkit-linear-gradient(#fb6039,#bd2600);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.bes-card > div {
    display: flex;
}

.bes-card .card {
    border: 0;
    width: 100%;
}

    .bes-card .card:hover .card-body:before {
        transform: scale(1);
    }

    .bes-card .card:hover .c-name, .bes-card .card:hover p {
        text-decoration: underline;
    }

    .bes-card .card:hover .card-body:after {
        opacity: 1;
    }

    .bes-card .card .card-body {
        background: #fff;
        border-radius: 7px;
        padding: 30px;
        transition: ease-in-out .3s;
        text-align: center;
        box-shadow: 0 0.325rem 0rem 2px #0b91b3 !important;
    }

        .bes-card .card .card-body:before {
            content: '';
            position: absolute;
            background: linear-gradient(to left, #03b1dd, #0097BD);
            transition: ease-in-out .3s;
            z-index: 0;
            border-radius: 20px;
            transform: scale(0);
            top: 20px;
            left: 20px;
            width: 15px;
            height: 15px;
        }

        .bes-card .card .card-body:after {
            content: '';
            position: absolute;
            background: #ffffff;
            width: 80px;
            height: 80px;
            left: 0;
            right: 0;
            margin: auto;
            top: 20px;
            border-radius: 50px;
            filter: blur(38px);
            transition: ease-in-out .3s;
            z-index: 0;
            opacity: 0;
        }

    .bes-card .card .img {
        position: relative;
        width: 50px;
        margin-bottom: 1.8rem;
        z-index: 1;
    }

    .bes-card .card .c-name {
        position: relative;
        color: #333333;
        transition: ease-in-out .3s;
    }

    .bes-card .card p {
        position: relative;
        font-size: 12px;
        transition: ease-in-out .3s;
        margin: 0;
    }


.b-form .contact-card {
    background: #f5f5f7;
    border-radius: 7px;
    border: 0;
    box-shadow: 0 0.325rem 0rem 2px #0b91b3 !important;
    text-align: left;
}

    .b-form p.text-black, .b-form .contact-card .form-label {
        display: none;
    }

    .b-form .contact-card .form-control {
        border-radius: 7px;
        font-size: 14px;
        border: #d7d7d7 1px solid;
        background: #ffffff;
    }

    .b-form .contact-card h6 {
        font-size: 14px !important;
    }

.b-form .tiles > div {
}

.b-form .tiles .tiles-body {
    text-align: center;
    padding: 20px 0 10px 0;
    transition: ease-in-out .3s;
    display: block;
    width: 100%;
    background: transparent;
}

.b-form .tiles .col-md-4:hover {
    background: rgb(0 0 0 / 8%);
}

    .b-form .tiles.col-md-4 :hover h6 {
        text-decoration: underline;
    }

.b-form .tiles > div:nth-child(1) .icon {
    width: 44px;
}

.b-form .tiles > div:nth-child(2) .icon {
    width: 57px;
}

.b-form .tiles > div .icon {
    width: 40px;
}

.b-form .tiles .tiles-body h6 {
    margin-top: 9px;
    font-size: 15px;
    color: #333333;
}

.b-form .tiles .tiles-body p {
    font-size: 11px;
    opacity: .8;
}

.b-form .field-validation-error {
    font-size: 14px;
}

.sec-new-banner {
    position: relative;
}

    .sec-new-banner:before {
        content: '';
        background-image: url(/Content/Images/new-images/star-background-header.png);
        position: absolute;
        width: 300px;
        height: 453px;
        z-index: 0;
        background-size: contain;
        right: 0;
        top: 0;
        background-repeat: no-repeat;
    }

.sec-new-banner {
    background: #e53935;
    background: url(/Content/Images/new-images/slider-pattern-1536x761.png), linear-gradient(to left, #03b1dd, #0097BD);
}

    .sec-new-banner h1 {
        background: none;
        -webkit-text-fill-color: white !important;
    }

    .sec-new-banner h2, .sec-new-banner h1 {
        font-weight: 500;
    }

    .sec-new-banner u.brand {
        text-decoration-color: transparent;
        position: relative;
    }

        .sec-new-banner u.brand span {
            position: relative;
            display: inline-block;
        }

            .sec-new-banner u.brand span:before {
                content: '';
                position: absolute;
                bottom: -1px;
                left: 0;
                right: 0;
                height: 4px;
                background: #fff;
                border-radius: 2px;
            }

.sec-lead {
    background: #f5f5f7 url(/Content/Images/map.png) repeat-x right;
}

.sec-dev {
    background: #233e59;
}

.sec-lead h3 {
    margin: 0;
    padding: 0;
}

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 4px !important;
}

    .grecaptcha-badge:hover {
        width: 256px !important;
    }

.whatappicon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    box-shadow: 0px 0px 10px #888;
    border-radius: 25px;
}

    .whatappicon svg {
        width: 48px;
        height: 48px;
    }

.brand-name {
    font-family: Arial,'Open Sans',sans-serif;
    background: #D16843;
    background: linear-gradient(to bottom,#D16843 0%,#C13301 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3em !important;
    margin-top: 70px !important;
    text-transform: uppercase;
}

.stats-block {
    background: #225d89;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    color: #fff !important;
}

    .stats-block h2 {
        font-size: 2em;
        margin: 0px;
    }

    .stats-block p {
        color: #fff !important;
        margin-bottom: 0px !important;
    }

.img-show {
    border: solid 1px #cccccc;
    box-shadow: 0px 0px 6px #888;
}

.block-cta {
    position: relative;
}

    .block-cta a {
        position: static;
        z-index: 999;
    }

a.sec-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 998;
}

.no-border {
    box-shadow: unset;
}

    .no-border .carousel-item {
        min-height: unset;
    }

.testi {
    font-size: 1.25em !important;
    font-style: italic;
    color: #fff !important;
    padding: 10px;
    text-align: justify;
}

    .testi:before {
        content: open-quote;
    }

    .testi::after {
        content: close-quote;
    }

.client {
    font-size: 1.25em !important;
    color: #fff !important;
    font-weight: bold;
    letter-spacing: 1px;
}

.sec-center {
    max-width: 992px;
    margin: auto;
}

.sec-svg .img-holder {
    display: inline-block;
    max-width: 200px;
    background: #fff;
    text-align: center;
    border-radius: 100px;
    padding: 25px 10px;
    margin: 0px auto 20px auto;
    box-shadow: 0px 0px 5px #888;
}

.sec-svg svg {
    width: 60%;
    height: 60%;
}

.sec-svg-sm svg {
    width: 40%;
    height: 40%;
}

.sec-svg-sm .img-holder {
    display: inline-block;
    width: 150px;
    background: #fff;
    text-align: center;
    border-radius: 100px;
    margin: 0px 0 20px auto;
    box-shadow: 0px 0px 5px #888;
}

.sec-svg-sm h3 {
    margin-top: 5px;
    font-size: 1.25em;
    font-weight: bold;
}

.sec-circle {
    position: relative;
    overflow: hidden;
    padding: 0px 0px 5% 0px;
}

    .sec-circle .sec-curve h2 {
        padding-top: 100px !important;
    }

    .sec-circle svg {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }

    .sec-circle .sec-curve h3 {
        font-size: 1.15em;
        font-weight: bold;
    }

    .sec-circle .sec-curve:before {
        background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#f8f9fa),to(#fff));
        background: linear-gradient(180deg,#f8f9fa,#fff);
        border-radius: 100%;
        content: "";
        height: 676px;
        left: 50%;
        overflow: hidden;
        position: absolute;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 768px;
        z-index: -1;
    }

@media (max-width:576px) {
    .sec-circle .sec-curve h2 {
        padding-top: 8% !important;
    }

    .sec-circle .sec-curve:before {
        width: 110%;
        height: 600px;
    }
}

@media (max-width:768px) {
    .sec-circle .sec-curve h2 {
        padding-top: 8% !important;
    }

    .sec-circle .sec-curve:before {
        width: 800px;
        height: 450px;
    }
}

@media (max-width:767px) {
    .sec-contact-cta {
        padding: 80px 0 0 0;
    }

        .sec-contact-cta .contact-cta-face-img {
            position: relative;
            left: 0;
            top: 0;
            bottom: 0;
            margin-top: 20px;
        }
}

@media (max-width:992px) {
    .sec-circle .sec-curve h2 {
        padding-top: 8% !important;
    }

    .sec-circle .sec-curve:before {
        width: 1100px;
        height: 600px;
    }
}

@media (max-width:1200px) {
    .sec-circle .sec-curve h2 {
        padding-top: 8% !important;
    }

    .sec-circle .sec-curve:before {
        width: 1400px;
        height: 800px;
    }
}

@media (max-width:1400px) {
    .sec-circle .sec-curve h2 {
        padding-top: 8% !important;
    }

    .sec-circle .sec-curve:before {
        width: 1800px;
        height: 1000px;
    }
}

@media (min-width:1400px) {
    .sec-circle .sec-curve h2 {
        padding-top: 8% !important;
    }

    .sec-circle .sec-curve:before {
        width: 2000px;
        height: 1200px;
    }
}

.cookie-note {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 5px 10px;
    background: #dbdbdb;
    z-index: 99999;
    display: none;
}

    .cookie-note.active {
        display: block;
    }

.sec-img-box {
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#f8f9fa),to(#fff));
    background: linear-gradient(180deg,#f8f9fa,#fff);
}

    .sec-img-box img, .sec-img-box figure {
        box-shadow: 0px 0px 10px #999;
        border-radius: 5px;
    }

.img-react {
    background: #fff url(/Content/Images/react_native_development.webp) no-repeat;
    background-position: top center;
    background-size: contain;
    width: 100%;
}

@media (max-width:576px) {
    .img-react {
        height: 250px;
        background-size: 200%;
    }

    .grad1 {
        width: 100%;
    }

    .wtsappover {
        display: block;
        margin-top: 14px;
    }

    .num_conkats {
        margin-left: -20px;
    }

    .mainBtns {
        width: 100%;
    }

    .divideds {
        width: 97%;
        font-size: 27px;
        border-right: none;
        line-height: 2;
        margin-top: -6px;
    }

    #tag_indentitys {
        font-size: 39%;
    }

    .telph-imgs {
        margin-top: 12px;
        width: 74%;
    }

    .tag_infos {
        margin: -10px auto auto -6px;
        width: 100%;
    }

    #wtsups {
        width: 17%;
        margin-left: 27px;
        margin-top: 18px;
    }

    .mainBtns a:nth-child(1) {
        padding-left: 4px;
    }

    .num_conkats {
        font-size: 2.6rem;
    }

    .btn-custom > .btn:first-child {
        text-align: left;
        font-size: 1.2em;
    }

    .helptext {
        bottom: 16px;
    }
}

@media (min-width:576px) {
    .img-react {
        height: 344px;
        background-size: 200%;
    }

    .spsetext {
        margin-top: -47px;
    }
}

@media (min-width:445px) and (max-width:575px) {
    .num_conkats {
        font-size: 2.5rem;
    }

    #wtsups {
        width: 21%;
    }

    #tag_indentitys {
        font-size: 0.9rem;
    }

    .tag_infos {
        margin: -36px auto auto 35px;
    }

    #wtsups {
        margin-top: 10px;
    }

    .divideds {
        width: 82%;
        border-right: 1px solid #C5C5C5;
        margin-top: -1px;
        padding-top: 3px;
    }

    .num_conkats {
        margin-left: 38px;
    }

    .tag_infos {
        margin: -10px auto auto 24px;
        width: 100%;
    }

    .tag_infos {
        margin: -22px auto auto 30px;
    }

    #inner_text {
        margin-top: 9px;
    }
}

@media (min-width:380px) and (max-width:430px) {
    .num_conkats {
        font-size: 1.8rem;
    }

    .mainBtns a:nth-child(1) {
        padding-top: 10px;
    }

    .divideds {
        width: 79%;
        margin-top: -8px;
        border-right: 1px solid #C5C5C5;
        margin-top: -1px;
        padding-top: 11px;
    }

    .num_conkats {
        margin-left: 35px;
    }

    .tag_infos {
        width: 100%;
        margin: -35px auto auto 33px;
    }

    #inner_text {
        margin-top: 9px;
    }

    .spsetext {
        margin-top: -45px;
    }

    .btn-custom > .btn:first-child {
        font-size: 1.5em;
        text-align: left;
    }

    .helptext {
        bottom: 10px;
    }
}

@media (min-width:768px) {
    .img-react {
        height: 226px;
        background-size: 100%;
    }
}

@media (min-width:344px) and (max-width:360px) {
    .divideds {
        width: 82%;
    }

    #tag_indentitys {
        font-size: 0.5rem;
    }

    .divideds {
        border-right: 1px solid #C5C5C5;
        width: 78%;
        margin-top: -2px;
    }

    .num_conkats {
        margin-left: 35px;
    }

    .tag_infos {
        margin: -14px auto auto 30px;
    }

    .divideds #inner_text {
        margin-top: 9px;
    }

    .spsetext {
        margin-top: -47px;
    }

    .num_conkats {
        font-size: 1.3rem;
    }
}

@media (min-width:200px) and (max-width:375px) {
    .divideds {
        width: 76%;
        border-right: 1px solid #C5C5C5;
        margin-top: -2px;
    }

    .num_conkats {
        margin-left: 33PX;
    }

    .tag_infos {
        margin: -10px auto auto 27px;
        width: 100%;
    }

    #tag_indentitys {
        font-size: 33%;
        margin-top: -15px;
    }

    #tag_indentitys {
        margin-left: 28px;
        font-size: 33%;
        margin-top: -31px;
    }

    num_conkats {
        font-size: 1.6rem;
    }

    .num_conkats {
        font-size: 1.4rem;
    }

    inner_text {
        margin-top: 9px;
    }

    .spsetext {
        margin-top: -49px;
    }

    .helptext {
        bottom: 14px;
        font-size: 0.45em;
        padding-top: 10px;
        right: 11px;
    }
}

@media (min-width:992px) {
    .img-react {
        height: 306px;
        background-size: 100%;
    }
}

@media (min-width:992px) {
    .img-react {
        height: 366px;
        background-size: cover;
    }
}

@media (min-width:1200px) {
    .img-react {
        height: 440px;
        background-size: cover;
    }
}

.icon-fix img {
    max-width: 100px;
}

.offer-line {
    background-color: #f5cc0c;
}

    .offer-line p {
        margin: 0;
        padding: 2px 0px;
    }

@media (min-width:200px) and (max-width:320px) {
    .btn-custom > .btn:first-child {
        font-size: 0.9em;
    }
}

.sec-banner .call-panel a:hover {
    color: #fff;
}

.verification-panel {
    display: none;
}

    .verification-panel.active {
        display: block;
    }

/*Important: Do not add any styles to this file during development, it is meant to be changed online. Any changes to    this file will overwrite online changes.*/
