
/*

font-family: 'Poppins', sans-serif;

*/


/*
linear-gradient(5deg, #C93D40 20%, #067DCE 100%)
linear-gradient(15deg, #C93D40 50%, #067DCE 100%)
*/
:root {
    --black: #000000;
    --red: #0f67f6;
   /* --orange : #067DCE; */
   --orange : linear-gradient(15deg, #081E67 10%, #067DCE 100%);
    --darkRed: #0f67f6;
    --orangegradiant:linear-gradient(15deg, #081E67 10%, #067DCE 100%);
}

button:focus, input:focus {
    outline: none;
}

body {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: var(--black);
}

h1, h2, h3, h4 {
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 500;
}

img {
    max-width: 100%;
}

.wrapper {
    position: relative;
}

.container {
    max-width: 1300px;
}

.logo {
    max-width: 250px;
}

    .logo a {
        display: inline-block;
        max-width: 100%;
    }
/*.header {position: relative; z-index: 5; }*/

.topBg {
    text-align: center;
    padding: 9px 0px;
    color: rgb(239 239 239 / 56%);
    background: linear-gradient(to right, #0f67f6 -10%, #000000, #0f67f6 110%);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
}

.headerBg {
    padding: 15px 0px;
    background-color: #ffffff;
    transition: 0.2s linear;
    top: 0px;
    width: 100%;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.header {
    position: sticky;
    top: 0px;
    z-index: 12;
}

.headerFix .headerBg {
    padding: 5px 0px; /*position: fixed; left: 0px; */
}

.headerBg .container { /*max-width: inherit;*/
}

.redBtn {
    background: var(--orange);
    color: #ffffff;
    padding: 18px 30px;
    text-align: center;
    border-radius: 0px;
    font-weight: 500;
    border: none;
    display: inline-block;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

    .redBtn:hover {
        background: var(--red);
        color: #ffffff;
        text-decoration: none;
    }

.WhiteBtn {
    background: #fff;
    color: var(--red);
    padding: 18px 30px;
    text-align: center;
    border-radius: 0px;
    font-weight: 500;
    border: none;
    display: inline-block;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

    .WhiteBtn:hover {
        background: #fff;
        color: var(--red);
        text-decoration: none;
    }

    .redBtn .txt, .WhiteBtn .txt {
        display: inherit;
        transition: transform 0.2s linear;
    }

    .redBtn:hover .txt, .WhiteBtn:hover .txt {
        transform: translate(-170%, 0px);
    }

    .redBtn.rightArrow:after, .WhiteBtn.rightArrow:after {
        position: relative;
    }

    .redBtn.rightArrow:after, .WhiteBtn.rightArrow:after {
        content: "";
        width: 26px;
        height: 14px;
        background: url(assets/images/sprite.svg) no-repeat -4px -7px;
        display: inline-block;
        vertical-align: -3px;
        margin-left: 15px;
        position: relative;
        left: 1px;
        transition: left 0.2s linear;
    }

    .WhiteBtn.rightArrow:after {
        background-position: -84px -7px;
    }

    .redBtn.rightArrow:hover:after, .WhiteBtn.rightArrow:hover:after {
        left: calc(-50% + 10px);
    }


.seeMore {
    font-weight: 700;
    border: none;
    display: inline-block;
    color: var(--red);
}

    .seeMore:hover {
        text-decoration: none;
        color: var(--darkRed);
    }

    .seeMore.rightArrow:after {
        position: relative;
    }

    .seeMore.rightArrow:after {
        content: "";
        width: 26px;
        height: 14px;
        background: url(assets/images/sprite.svg) no-repeat -84px -6px;
        display: inline-block;
        vertical-align: -3px;
        margin-left: 15px;
        position: relative;
        left: 1px;
        transition: left 0.3s linear;
    }

    .seeMore.rightArrow:hover:after {
        left: -7px;
    }

.mainNav {
    position: relative;
    text-align: right;
}

.mobileNavBtn:focus {
    outline: none;
    box-shadow: none;
}

.mobileNavBtn {
    display: none;
    border: none;
    cursor: pointer;
    margin-top: 1px;
    float: right;
    width: 22px;
    height: 18px;
    border-radius: 0px;
    background: none;
    position: relative;
    z-index: 101;
    transition: right .3s linear;
    margin-right: 0px;
}

    .mobileNavBtn span {
        width: 100%;
        left: 0px;
        top: 7px;
        height: 2px;
        background: var(--red);
        position: absolute;
        transition: all 0.3s linear;
    }

        .mobileNavBtn span:nth-child(2) {
            top: 0px;
        }

        .mobileNavBtn span:nth-child(3) {
            top: 14px;
        }

.openNav {
    overflow: hidden;
}

    .openNav .mobileNavBtn span {
        background: var(--red);
    }

        .openNav .mobileNavBtn span:nth-child(2) {
            display: none;
        }

        .openNav .mobileNavBtn span:nth-child(1) {
            transform: rotate(45deg)
        }

        .openNav .mobileNavBtn span:nth-child(3) {
            transform: rotate(-45deg);
            top: 7px;
        }

/*Drop-Down-Menu-Start*/
li.dropdown {
    position: relative;
}

.headerBg {
    position: relative;
}

    .headerBg .col-auto, .headerBg .col, .headerBg .mainNav {
        position: static;
    }

.service_item {
    position: relative;
}

    .service_item .clickable {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
/*Drop-Down-Menu-END*/

@media (min-width: 1026px) {
    .dropdown_menu {
        position: absolute;
        top: 100%;
        left: -15px;
        background: #fff;
        min-width: 180px;
        box-shadow: 0px 2px 4px rgba(0,0,0,0.08);
        padding: 0px;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
    }

        .dropdown_menu li {
            list-style: none;
            text-align: left;
        }

            .dropdown_menu li a {
                color: #000;
                font-weight: 600;
                font-size: 14px;
                display: block;
                padding: 12px 15px;
                border-bottom: 1px solid #f0f0f0;
            }

                .dropdown_menu li a:hover {
                    background: #f7f7f7;
                    text-decoration: none;
                }

    li.dropdown:hover .dropdown_menu {
        opacity: 1;
        visibility: visible;
        top: calc(100% + 15px);
    }

    .dropdown_item .menu-dropdown {
        position: absolute;
        left: 0px;
        width: 100%;
        background: #fff;
        top: 150%;
        border-top: 1px solid #edeff3;
        text-align: left;
        padding: 25px 0px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
    }

    .service_item .h4 {
        font-size: 1.2rem !important;
        padding-bottom: 2px;
        position: relative;
    }

        .service_item .h4 span {
            display: inline;
            padding-bottom: 2px;
            -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
            background-image: -webkit-gradient(linear,left top,left bottom,from(#343a40),to(#343a40));
            background-image: linear-gradient(#343a40,#343a40);
            background-position: 0 100%;
            background-size: 0 2px;
            background-repeat: no-repeat;
            -webkit-transition: background-size .3s ease;
            transition: background-size .3s ease;
        }

    .service_item:hover h4 span {
        background-size: 100% 2px;
    }

    .service_item .text-link span {
        color: var(--red);
    }

        .service_item .text-link span:after {
            content: "";
            width: 26px;
            height: 14px;
            background: url(assets/images/sprite.svg) no-repeat -84px -6px;
            display: inline-block;
            vertical-align: -3px;
            margin-left: 5px;
            position: relative;
            left: 1px;
            transition: all 0.5s ease;
        }

    .service_item:hover .text-link span:after {
        margin-left: 10px;
    }

    .navigation > ul {
        padding: 0px;
        margin: 0px;
        list-style: none;
    }

        .navigation > ul > li {
            display: inline-block;
            margin: 0px 20px;
            vertical-align: middle;
        }

            .navigation > ul > li:last-child {
                margin-right: 0px;
            }

            .navigation > ul > li > a {
                color: #000;
                display: inline-block;
                vertical-align: middle;
                position: relative;
                font-weight: 600;
                padding: 21px 0px;
                position: relative;
            }

                .navigation > ul > li > a:before {
                    content: "";
                    background: var(--red);
                    width: 0px;
                    height: 2px;
                    bottom: -15px;
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    -webkit-transform: translateX(-50%);
                    transition: all 0.5s ease;
                }

    .headerFix .navigation > ul > li > a:before {
        bottom: -5px;
    }

    .navigation > ul > li:hover > a:before {
        width: 100%;
    }

    .navigation > ul > li:hover > a {
        color: var(--red);
    }

    .navigation > ul > li > a:hover {
        color: var(--red);
        text-decoration: none;
    }

    .overLay {
        display: none;
    }

    .navigation > ul > li > .redBtn {
        color: #ffffff;
        padding: 18px 30px;
    }

        .navigation > ul > li > .redBtn:hover {
            color: #ffffff;
        }

    .navigation > ul > li.dropdown_item:hover .menu-dropdown {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    span.fl {
        display: none;
    }

    .blog_menu .redBtn {
        display: flex;
        align-items: center;
    }

    .menuBlogItem .imagebox {
        max-width: 115px;
        margin-bottom: 15px;
    }

    .menuBlogItem .small-text {
        color: #535a68;
        font-weight: bold;
    }

    .menuBlogItem .h5 {
        color: #000;
        font-weight: bold;
        margin-bottom: 10px;
    }

        .menuBlogItem .h5 span {
            display: inline;
            padding-bottom: 2px;
            -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
            background-image: -webkit-gradient(linear,left top,left bottom,from(#343a40),to(#343a40));
            background-image: linear-gradient(#343a40,#343a40);
            background-position: 0 100%;
            background-size: 0 2px;
            background-repeat: no-repeat;
            -webkit-transition: background-size .3s ease;
            transition: background-size .3s ease;
        }

    .menuBlogItem:hover h5 span {
        background-size: 100% 2px;
    }

    .menuBlogItem .text-link span:after {
        content: "";
        width: 26px;
        height: 14px;
        background: url(assets/images/sprite.svg) no-repeat -44px -6px;
        display: inline-block;
        vertical-align: -3px;
        margin-left: 5px;
        position: relative;
        left: 1px;
        transition: all 0.5s ease;
    }

    .menuBlogItem:hover .text-link span:after {
        margin-left: 15px;
    }
}

.overLay {
    transition: all 0.3s linear;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    z-index: 11;
    display: none;
}

@media (max-width: 1025px) {
    .headerBg {
        padding: 5px 0px;
    }

    .mobileNavBtn {
        display: inline-block;
    }

    .navMain {
        text-align: right;
        position: relative;
        margin: 7px 15px 3px 0px;
        display: inline-block;
        width: 100%;
    }

    .navigation {
        position: fixed;
        top: -100%;
        width: 100%;
        z-index: 100;
        max-height: 100%;
        overflow-y: auto;
        left: 0;
        transition: all .2s linear;
        height: 100%;
        display: flex;
        background: #fff;
        overflow: hidden;
    }

    .openNav .navigation {
        height: calc(100% - 57px);
        top: 57px;
    }

    .navigation > ul {
        margin: 0px auto;
        padding: 0;
        list-style: none;
        max-height: 100%;
        overflow-x: auto;
        text-align: left;
        width: 100%;
    }

        .navigation > ul > li {
            font-size: 16px;
            border-top: solid 1px rgba(0,0,0,0.08);
        }

            .navigation > ul > li > a {
                padding: 12px 20px 12px 20px;
                display: block;
                position: relative;
                color: #000;
            }

                .navigation > ul > li > a:hover {
                    text-decoration: none;
                }

            .navigation > ul > li > .pinkBtn {
                display: block;
                color: #ffffff;
            }
            /*.openNav .overLay {display: block; }*/
            .navigation > ul > li .redBtn .txt {
                display: inline-block;
                color: #fff;
            }

            .navigation > ul > li .redBtn.rightArrow:after {
                background-position: -4px -7px;
            }

            .navigation > ul > li .redBtn.rightArrow:hover .txt {
                transform: translate(0px, 0px);
            }

            .navigation > ul > li .redBtn.rightArrow:hover:after {
                left: 0px;
            }


    .dropdown_item .menu-dropdown {
        display: none;
        background: #f8f9fb;
    }

    .menu-dropdown .container, .menu-dropdown .col-lg-9 {
        padding: 0px !important;
    }

    .service_item .h4 {
        color: #141d34;
        font-size: 15px;
        padding: 15px 20px;
        border-top: solid 1px rgba(0,0,0,0.05);
    }

    .menu-dropdown .container .row {
        margin: 0px;
    }

    .dropdown_item {
        position: relative;
    }

        .dropdown_item .fl, li.dropdown .fl {
            position: absolute;
            right: 0px;
            top: 0px;
            width: 100%;
            height: 48px;
            cursor: pointer;
        }

            .dropdown_item .fl:before, li.dropdown .fl:before {
                position: absolute;
                top: 16px;
                right: 20px;
                content: "";
                width: 10px;
                height: 10px;
                border-top: 2px solid #000;
                border-right: 2px solid #000;
                transform: rotate(135deg);
            }

    .desktop_element {
        display: none;
    }

    .service_item {
        margin: 0px !important;
        padding: 0px !important;
    }

        .service_item .h4 {
            margin: 0px !important;
        }

    .blog_menu .col-lg-3 {
        display: none !important;
    }

    .menuBlogItem {
        padding: 10px 15px;
    }

        .menuBlogItem .imagebox {
            max-width: 115px;
            margin-bottom: 10px;
        }

        .menuBlogItem .small-text {
            color: #141d34;
            font-size: 14px;
        }

        .menuBlogItem .h5 {
            font-size: 18px;
        }

            .menuBlogItem .h5 span {
                color: #141d34;
            }

        .menuBlogItem .text-link span {
            font-size: 0px;
        }

            .menuBlogItem .text-link span:after {
                content: "";
                width: 26px;
                height: 14px;
                background: url(assets/images/sprite.svg) no-repeat -84px -6px;
                display: inline-block;
                vertical-align: -3px;
                margin-left: 0px;
                position: relative;
                left: 1px;
                transition: all 0.5s ease;
            }

    .dropdown_menu {
        position: relative;
        padding: 0px;
        background: #f8f9fb;
        display: none;
    }

        .dropdown_menu li {
            list-style: none;
        }

            .dropdown_menu li a {
                color: #141d34;
                font-size: 15px;
                font-weight: 500;
                display: block;
                padding: 12px 20px;
                border-top: solid 1px rgba(0,0,0,0.05);
            }
}

.owlNav.owl-carousel .owl-dots {
    display: block;
    text-align: center;
    position: absolute;
    left: 0px;
    bottom: -40px;
    left: 0px;
    width: 100%;
}

.owlNav.owl-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: #e5e5e5;
    border-radius: 50%;
    margin: 5px 7px;
}

    .owlNav.owl-carousel .owl-dot.active {
        background: #000;
    }

    .owlNav.owl-carousel .owl-dot:focus {
        outline: none;
    }

    .owlNav.owl-carousel .owl-dot:focus {
        outline: none;
    }

.owlNav.owl-carousel .owl-nav {
}

    .owlNav.owl-carousel .owl-nav button.owl-prev, .owlNav.owl-carousel .owl-nav button.owl-next {
        width: 52px;
        height: 52px;
        background: #ffffff;
        margin: 0px 5px;
        border: solid 1px #ccc;
        opacity: 1;
        position: relative;
    }

    .owlNav.owl-carousel .owl-nav button.owl-next {
    }

    .owlNav.owl-carousel .owl-nav button.owl-prev {
        transform: rotate(180deg);
    }

    .owlNav.owl-carousel .owl-nav button span {
        background: url(assets/images/sprite.svg) no-repeat -38px -1px;
        width: 36px;
        height: 20px;
        position: absolute;
        left: 6px;
        top: 14px;
        font-size: 0px;
    }

    .owlNav.owl-carousel .owl-nav button.disabled {
        display: none;
    }

    .owlNav.owl-carousel .owl-nav button:hover {
        background: var(--red) !important;
        border-color: var(--red) !important;
    }

        .owlNav.owl-carousel .owl-nav button:hover span {
            background-position: 2px -1px;
        }

.homeHeading {
    padding: 0px 0px 10px 0px;
}

    .homeHeading h2 {
        font-weight: 800;
        font-size: 46px;
        line-height: 0.9;
        margin: 0px 0px 20px 0px;
        letter-spacing: -2px;
    }

    .homeHeading .desc {
        font-size: 22px;
        line-height: 1.3;
        margin: 0px 0px 15px 0px;
    }

.homeBannerBg {
    background: #000 url(assets/images/home-banner-01.jpg) no-repeat center;
    background-attachment: fixed;
}

.homeBannerText {
    padding: 100px 0px;
}

    .homeBannerText .textA {
        color: #ffffff;
        font-size: 72px;
        line-height: 0.88;
        padding: 0px 0px 10px 0px;
        max-width: 650px;
        letter-spacing: -3px;
        font-weight: 800;
    }

        .homeBannerText .textA span {
            color: var(--red);
        }

    .homeBannerText .textB {
        font-size: 22px;
        color: #ffffff;
        padding: 0px 0px 50px 0px;
        max-width: 530px;
    }

.cutomerRevBlock {
    padding: 0px 0px 60px 0px;
}

    .cutomerRevBlock .textA {
        color: #ffffff;
        padding: 0px 0px 25px 0px;
        line-height: 1;
        font-size: 20px;
    }

    .cutomerRevBlock .cl {
        vertical-align: top;
        margin: 0px 5px;
    }

    .cutomerRevBlock .rt {
        vertical-align: top;
        margin: 2px 5px 0px 5px;
    }

    .cutomerRevBlock .textA strong {
        font-weight: 400;
    }

    .cutomerRevBlock .textA span {
        font-weight: 300;
    }

    .cutomerRevBlock .textB img {
        filter: grayscale(1);
        transition: all 0.2s linear;
    }
    /*.cutomerRevBlock .textB .logo3 {max-width: 160px;}*/
    .cutomerRevBlock .hAaHXe:hover img {
        filter: grayscale(0);
    }



.homeSecB {
    padding: 100px 0px 30px 0px;
}

    .homeSecB .homeHeading {
        max-width: 730px;
    }

.homeSecC {
    padding: 20px 0px;
}

.homeMobileAppBlock {
    margin-bottom: 100px;
}

    .homeMobileAppBlock .textA {
        font-weight: 700;
        font-size: 16px;
        padding: 0px 0px 5px 0px;
        text-transform: uppercase;
    }

    .homeMobileAppBlock .textB {
        font-size: 24px;
        padding: 0px 0px 15px 0px;
        position: relative;
        margin-bottom: 30px;
    }

        .homeMobileAppBlock .textB:before {
            content: "";
            height: 3px;
            width: 40px;
            background: var(--red);
            position: absolute;
            left: 0px;
            bottom: 0px;
        }

    .homeMobileAppBlock .textC {
        font-weight: 800;
        font-size: 36px;
        padding: 0px 0px 15px 0px;
        line-height: 0.9;
        letter-spacing: -2px;
        max-width: 500px;
    }

    .homeMobileAppBlock .textD {
        font-size: 18px;
        padding: 0px 0px 25px 0px;
    }

    .homeMobileAppBlock .textE {
        padding: 0px 0px 15px 0px;
    }

        .homeMobileAppBlock .textE .col {
            border-right: solid 1px rgb(12 55 113 / 12%);
            line-height: 1.2;
        }

            .homeMobileAppBlock .textE .col:last-child {
                border-right: none;
                text-align: center;
            }

        .homeMobileAppBlock .textE strong {
            font-size: 48px;
            font-weight: 800;
            color: var(--red);
        }

        .homeMobileAppBlock .textE span {
            font-size: 13px;
            display: block;
            text-transform: uppercase;
        }

.hAaHXe {
    display: inline-block;
    margin: 0px 40px 5px 0px;
    width: 130px;
    position: relative;
    height: 30px;
    transform: scale(1.1);
    transform-origin: left;
}

    .hAaHXe img {
        position: absolute;
        top: 0px;
        opacity: 0;
    }

    .hAaHXe .animate_in {
        animation: ggta-DA 1.1s;
        animation-fill-mode: both;
    }

    .hAaHXe .animate_out {
        animation: kcemLF 0.9s;
        animation-fill-mode: both;
    }

@keyframes kcemLF {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-50px);
    }

    0% {
        opacity: 1;
    }

    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}

@keyframes ggta-DA {
    from {
        transform: translateY(50px);
    }

    to {
        transform: translateY(0);
    }

    0% {
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}


.portImgBlock {
    position: relative;
    padding: 25px 0px 0px 0px;
}

.portBgImg {
    position: absolute;
    top: 0px;
    right: 200px;
    bottom: 0px;
    width: 130%;
    background: #fff;
    z-index: -1;
    overflow: hidden;
}

    .portBgImg img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 0px 0px 200px 0px;
    }

.porImgFrame {
    text-align: right;
}

.owl-carousel .porImgFrame .portImg {
    width: 700px;
    height: 700px;
    object-fit: cover;
    position: relative;
    top: 30px;
    display: inline-block;
}
/*.portBgImg:before {content: ""; position: absolute; left: 0px; top: 0px; height: 100%; width: 100%; background: #ffffff;transition: transform 750ms cubic-bezier(0.215, 0.610, 0.355, 1.000) 0.2s;}
.owl-item.active .portBgImg:before {transform: translateX(-100%);}*/
.portSlider .owl-item {
    overflow: hidden;
    padding-bottom: 50px;
}

.portSlider .owlNav.owl-carousel .owl-nav {
    position: absolute;
    bottom: 170px;
    left: calc(50% + 129px);
}

@media (max-width: 1360px) {
    .portBgImg {
        right: 10px;
    }

    .owl-carousel .porImgFrame .portImg {
        width: 500px;
        height: 500px;
        top: 10px;
    }

    .portSlider .owlNav.owl-carousel .owl-nav {
        bottom: 0px;
    }

    .homeMobileAppBlock {
        margin-bottom: 0px;
    }
}



.homeSecD {
    padding: 100px 0px 30px 0px;
}

.homeIndusiRow {
    padding-top: 20px;
}

.homeIndusiBox {
    position: relative;
}

    .homeIndusiBox .img {
        position: relative;
        overflow: hidden;
        text-align: center; /*background-color: #f1ede9;*/
        margin: 0px 0px 25px 0px;
    }

        .homeIndusiBox .img img {
            transition: transform 0.4s linear;
        }

    .homeIndusiBox h3 {
        font-size: 32px;
        font-weight: 800;
        margin: 0px 0px 0px 0px;
        line-height: 1.2;
    }

    .homeIndusiBox .desc {
        font-size: 18px;
        padding-bottom: 60px;
    }

    .homeIndusiBox .img:hover img {
        transform: scale(1.1);
    }

    .homeIndusiBox .img:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: linear-gradient(180deg,rgba(21,21,21,0) 0,rgba(21,21,21,.8) 75%);
        transform: translate3d(0,50%,0);
        opacity: 0;
        transition: all 0.2s linear;
    }

    .homeIndusiBox .img:hover:before {
        opacity: 1;
    }

.homeSecE {
    padding: 80px 0px 80px 0px;
}

    .homeSecE .homeHeading { /*max-width: 580px;*/
    }

.techTabNav {
    margin: 25px 0px 45px 0px;
    border-bottom: solid 1px #efefef;
}

    .techTabNav a {
        padding: 12px 15px;
        display: inline-block;
        color: #000;
        font-size: 18px;
        position: relative;
        margin-right: 20px;
        height: 50px;
        line-height: 20px;
    }

        .techTabNav a:hover {
            text-decoration: none;
        }

    .techTabNav .active {
        font-weight: 800;
        font-size: 22px;
    }

        .techTabNav .active:before {
            content: "";
            width: 100%;
            bottom: -1px;
            left: 0px;
            height: 3px;
            position: absolute;
            background-color: var(--red);
        }

/*.techTabBlock img {margin:0px 30px 10px 0px; transition: transform 0.2s linear;}
.techTabBlock img:hover {transform: scale(0.9);}*/

.techTabBlock {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.techLogoCol {
    flex: 0 0 200px;
    padding: 40px 15px 5px 15px;
    height: 160px;
}

    .techLogoCol svg {
        height: 50px;
        transform: scale(1.3);
    }

    .techLogoCol h5 {
        margin: 20px 0px 10px 0px;
        font-size: 16px;
        color: var(--black);
    }

    .techLogoCol:hover {
        background: #fafafa;
        text-decoration: none;
    }


.homeSecF {
    padding: 100px 0px 60px 0px;
    background: #000 url(assets/images/pattern-01.png) no-repeat top -5px right -10px;
    color: #ffffff;
    position: relative;
}

    .homeSecF:before {
        content: "";
        width: 125px;
        height: 710px;
        position: absolute;
        left: 0px;
        bottom: 0px;
        background: url(assets/images/pattern-01.png) no-repeat top -5px right -10px;
        transform: rotate(180deg);
    }

    .homeSecF .homeHeading {
        max-width: 600px;
    }

        .homeSecF .homeHeading .desc {
            color: rgb(255 255 255 / 60%);
        }

.homeServiceRow {
    padding-top: 30px;
}

.homeServiceBox {
    padding-top: 30px;
    display: block;
}

    .homeServiceBox .img {
        margin: 0px 0px 20px 0px;
        position: relative;
    }

        .homeServiceBox .img:before {
            content: "";
            width: 26px;
            height: 26px;
            border-radius: 50%;
            position: absolute;
            left: -10px;
            top: -10px;
            background-color: var(--red);
            transition: transform 0.15s linear;
            transform: scale(0.9);
        }

        .homeServiceBox .img img {
            position: relative;
            max-width: 50px;
            max-height: 50px;
        }

    .homeServiceBox h3 {
        font-size: 32px;
         font-weight: 800;
        margin: 0px 0px 15px 0px;
        color: #ffffff;
    }

a.homeServiceBox:hover h3 {
    color: #ffffff;
    text-decoration: underline;
}

.homeServiceBox .desc {
    font-size: 18px;
    margin: 0px 0px 45px 0px;
    color: rgb(255 255 255 / 60%);
}

.homeServiceBox:hover .img:before {
    transform: scale(1.3);
}

.homeServiceBox:hover {
    text-decoration: none;
}

.homeSecF .redBtn {
    margin: 10px 0px;
}

.homeSecG {
    padding: 100px 0px 100px 0px;
    position: relative;
}

    .homeSecG .homeHeading {
        padding-bottom: 30px;
        max-width: 600px;
    }

.homeInduTabNav {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

    .homeInduTabNav li {
        display: block;
        padding: 14px 0px;
    }

        .homeInduTabNav li a {
            color: #000;
            line-height: 1;
            font-size: 20px;
            position: relative;
            padding: 0px 15px;
            display: inline-block;
            text-decoration: none;
        }

        .homeInduTabNav li .active {
            font-weight: 800;
            font-size: 24px;
        }

            .homeInduTabNav li .active:before, .homeInduTabNav li a:hover:before {
                content: "";
                height: 100%;
                width: 3px;
                background-color: var(--red);
                position: absolute;
                left: 0px;
                top: 0px;
            }

.induStikey {
    position: inherit;
}

    .induStikey .homeInduTabNav {
        position: sticky;
        top: 80px;
    }

.homeInduTabBlock {
    display: none;
}

    .homeInduTabBlock .desc {
        font-size: 18px;
    }

    .homeInduTabBlock h3 {
        font-size: 32px;
         font-weight: 500;
        margin: 0px 0px 20px 0px;
    }

    .homeInduTabBlock .points {
        padding: 10px 0px 30px 0px;
        margin: 0px;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
    }

        .homeInduTabBlock .points li {
            flex: 0 0 33.33%;
            position: relative;
            padding: 0px 0px 10px 37px;
            font-size: 24px;
           font-weight: 600;
        }

            .homeInduTabBlock .points li:before {
                content: "";
                width: 28px;
                height: 28px;
                position: absolute;
                left: 0px;
                top: 2px;
                background: url(assets/images/sprite.svg) no-repeat -2px -26px;
            }

.roundCorner {
    border-radius: 20px;
}

.homeSecH {
    padding: 70px 0px;
    background-color: #c4081a;
}

    .homeSecH .homeHeading {
        color: #ffffff;
        max-width: 580px;
    }

    .homeSecH .img {
        text-align: right;
        margin: 0px;
    }

.trustedLogos {
    text-align: center;
}

    .trustedLogos img {
        display: inline-block;
        margin: 0px 15px 35px 15px;
        width: 170px;
        transition: transform 0.3s linear;
    }

        .trustedLogos img:hover {
            transform: scale(0.85);
        }

.homeSecI {
    padding: 100px 0px 100px 0px;
}

.homeTesimonialSlider {
    position: relative;
}

.videoImg {
    position: relative;
}
/*.videoImg img {border-radius: 0px 0px 120px 0px;}*/
/*.videoImg .playBtn {position: absolute; left:calc(50% - 48px); top: calc(50% - 48px); width: 96px; height: 96px; border-radius: 50%;background-color:rgb(196 8 26 / 70%); cursor: pointer; transition: background 0.1s linear; }
.videoImg .playBtn:before {content: "";position: absolute; left:calc(50% - 5px); top:calc(50% - 10px); width: 0px; height: 0px;border:solid 10px transparent; border-left-color: #ffffff;}
.videoImg .playBtn:hover {background-color:rgb(196 8 26 / 100%);}*/

@keyframes videomodule-anim {
    0% {
        transform: scale(0.68);
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.videoImg .playBtn:after, .videoImg .playBtn:before {
    border-color: #373c40;
    content: '';
    border: 1px solid;
    border-color: inherit;
    width: 150%;
    height: 150%;
    border-radius: 100px;
    position: absolute;
    left: -25%;
    top: -25%;
    opacity: 1;
    animation: 1s videomodule-anim linear infinite;
}

.videoImg .playBtn {
    color: #373c40;
    border-color: #fff;
    background: #fff;
    width: 85px;
    border: 1px solid #eee;
    border-radius: 100px;
    text-align: center;
    line-height: 60px;
    font-size: 27px;
    outline: 0;
    cursor: pointer;
    display: inline-block;
    transition: .15s ease-in-out;
    transition-property: color, background, border-color;
    position: absolute;
    left: calc(50% - 42px);
    top: calc(50% - 42px);
}

    .videoImg .playBtn:before {
        animation-delay: .5s;
    }

.homeTesimonialSlider .owl-carousel .videoImg img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.homeTesimonialSlider .owl-carousel .owl-item .homeTesiText img {
    width: 250px;
    display: inherit;
}

.homeTesimonialSlider .owlNav.owl-carousel .owl-nav {
    position: absolute;
    right: 0px;
    width: 130px;
    top: 0px;
    text-align: right;
}

.homeTesimonialSlider .owlNav.owl-carousel .owl-dots {
    left: 51%;
    width: 49%;
    bottom: 10px;
    text-align: left;
}

.homeTesimonialSlider .seeMore {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 1;
    font-size: 18px;
}

.homeTesiText {
    padding: 0px 0px 0px 0px;
    overflow: auto;
    height: 340px;
    border-bottom: solid 1px #efefef;
}

    .homeTesiText .textA {
        padding: 20px 0px 15px 0px;
        font-size: 26px;
        line-height: 1.2;
        font-weight: 600;
    }

    .homeTesiText .textB {
        font-size: 16px;
        opacity: 0.7;
    }

.homeTesimonialSlider .fadeIn {
    animation-delay: 0.6s;
}

.homeSecJ {
    background-color: #f1f1f1;
    padding: 70px 0px;
}

    .homeSecJ .homeHeading {
        max-width: 600px;
    }

.contactItems {
    position: relative;
    margin: 30px 0px;
    max-width: 430px;
}

.contactItem {
    position: relative;
    background-color: #ffffff;
    padding: 15px 15px 15px 65px;
    line-height: 1.2;
    margin-bottom: 15px;
}

    .contactItem .title {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: block;
    }

    .contactItem a {
        color: #000;
        font-size: 24px;
        font-weight: 800;
    }

    .contactItem:before {
        content: "";
        height: 32px;
        width: 32px;
        position: absolute;
        left: 20px;
        top: 15px;
        background: url(assets/images/sprite.svg) no-repeat -1px -59px;
    }

    .contactItem.tel:before {
        background-position: -1px -90px;
    }

.contactPoints {
    padding: 20px 0px 20px 0px;
}

    .contactPoints h3 {
        font-size: 24px;
        font-weight: 800;
        margin: 0px 0px 10px 0px;
    }

    .contactPoints ul {
        padding: 0px;
        margin: 0px;
        list-style: none;
    }

        .contactPoints ul li {
            position: relative;
            padding: 0px 0px 0px 36px;
            font-size: 18px;
            margin-bottom: 8px;
        }

            .contactPoints ul li:before {
                content: "";
                height: 30px;
                width: 30px;
                position: absolute;
                left: 0px;
                top: -1px;
                background: url(assets/images/sprite.svg) no-repeat -1px -28px;
                transform: scale(0.8);
            }


.contactBox {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 18px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

    .contactBox h3 {
        font-size: 32px;
        font-weight: 800;
        margin: 0px 0px 25px 0px;
        padding-bottom: 15px;
        position: relative;
    }

        .contactBox h3:before {
            content: "";
            width: 50px;
            height: 4px;
            position: absolute;
            left: 0px;
            bottom: 0px;
            background: var(--orange);
        }

.inputfield {
    position: relative;
    margin: 10px 0px 25px 0px;
    display: inline-block;
    width: 100%;
}

    .inputfield label {
        position: absolute;
        pointer-events: none;
        left: 0px;
        top: 10px;
        transition: all 0.2s linear;
        margin: 0px;
    }

    .inputfield .input {
        background: none;
        border: none;
        border-bottom: 1px solid #ccc;
        border-radius: 0px;
        padding: 2px 0px 0px 0px;
        height: 44px;
        width: 100%;
        transition: all 0.3s linear;
        font-size: 20px;
    }

        .inputfield .input:focus {
            border-bottom-color: var(--red);
            outline: none;
        }

            .inputfield .input:focus ~ label {
                top: -8px;
                font-size: 14px;
            }

    .inputfield label.active {
        top: -8px;
        font-size: 14px;
    }

    .inputfield .error {
        position: absolute;
        top: -24px;
        right: 0;
        font-size: 12px;
        color: red;
        top: -16px;
        font-size: 11px;
        display: none;
    }

    .inputfield select.input option:first-child {
        display: none;
    }

    .inputfield select.input {
        padding-right: 30px;
        appearance: none;
        -webkit-appearance: none;
        background: transparent url('assets/images/drop-down.html') no-repeat right 16px top 18px;
    }

    .inputfield textarea.input {
        padding-top: 10px;
        height: 80px;
        resize: none;
    }

.footer {
   /* background: #000;
    padding: 70px 0px 5px 0px; */
    background: #232730;
    padding: 100px 0px 60px;
}

.footerLogo {
    margin: 0px 0px 30px 0px;
}

    .footerLogo a {
        display: inline-block;
        max-width: 100%;
    }

.footer h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 0px 0px 20px 0px;
    font-weight: 800;
}

.footerLink {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

    .footerLink li {
        display: block;
        padding-bottom: 10px;
    }

        .footerLink li a {
            color: #9c9c9c;
            font-size: 16px;
            position: relative;
            transition: all 0.2s linear;
            overflow: hidden;
            display: inline-block;
        }

            .footerLink li a:hover {
                color: var(--red);
                text-decoration: none;
                padding-left: 16px;
            }

            .footerLink li a:before {
                content: "";
                width: 8px;
                height: 8px;
                border-bottom: solid 2px var(--red);
                border-left: solid 2px var(--red);
                transform: rotate(-135deg);
                position: absolute;
                left: -10px;
                top: 7px;
                transition: all 0.2s linear;
            }

            .footerLink li a:hover:before {
                left: 0px;
            }

.copyRight {
    color: #9c9c9c;
    margin: 0px 0px 20px 0px;
    font-size: 14px;
}

.footerSocial {
    margin: 0px 0px 10px 0px;
}

    .footerSocial a {
        display: inline-block;
        width: 32px;
        height: 32px;
        margin: 0px 5px 5px 0px;
        text-align: center;
    }

        .footerSocial a svg {
            padding-top: 2px;
            width: 20px;
            height: auto;
        }

        .footerSocial a:hover path {
            fill: #9c9c9c;
        }

    .footerSocial .facebook:hover path {
        fill: #1b80e4;
    }

    .footerSocial .linked:hover path {
        fill: #007bcd;
    }

    .footerSocial .twitter:hover path {
        fill: #1da1f3;
    }

    .footerSocial .rss:hover rect {
        fill: #e04d93;
    }

    .footerSocial .youtube:hover path {
        fill: #e02f2f;
    }

.footerSocialBlock {
    padding-bottom: 20px;
}

    .footerSocialBlock .clutch-widget {
        display: inline-block;
    }

    .footerSocialBlock .goodfirm-widget {
        display: inline-block;
        background: #ffffff;
    }

.yelloBgEffect {
    position: relative;
}

    .yelloBgEffect:before {
        content: "";
        position: absolute;
        left: 0px;
        width: 0px;
        bottom: 5px;
        height: 14px;
        background-color: #ffcd1c;
        z-index: -1;
        transition: all 0.9s linear 0.5s;
    }

.ani .yelloBgEffect:before {
    width: 100%;
}

#videoPopUp .modal-dialog {
    max-width: 1000px;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
}

.modal-dialog {
    opacity: 0;
    visibility: hidden;
}

.modal.show .modal-dialog {
    opacity: 1;
    visibility: visible;
}

#videoPopUp .modal-body {
    padding: 0px;
}

#videoPopUp .modal-content {
    background: none;
    border: none;
    border-radius: 0px;
}

#videoPopUp .close {
    position: absolute;
    right: -12px;
    top: -12px;
    background: var(--red);
    color: #ffffff;
    z-index: 1;
    width: 30px;
    height: 30px;
    line-height: 28px;
    z-index: 11;
    opacity: 1;
    border-radius: 100%;
}

#videoPopUp video {
    height: auto;
    width: 100%;
}

#videoPopUp ~ .modal-backdrop.show {
    opacity: 0.8 !important;
}

.contactPopUp .modal-dialog {
    max-width: 1300px;
}

.contactPopUp .modal-content {
    border: none;
    border-radius: 0px;
    position: relative;
}

.contactPopUp .contactBox {
    box-shadow: none;
    padding: 90px 120px 80px 60px;
}

.popUpRightBg {
    background: #000;
    padding: 90px 60px 80px 110px;
    height: 100%;
}

.popSlideItem {
    padding: 0px 0px 0px 70px;
    background: url(assets/images/quote-icon.html) no-repeat left top 50%;
    color: #ffffff;
}

    .popSlideItem .img {
        margin: 0px 0px 30px 0px;
        display: inline-block;
        background: #3f352c;
        width: 200px;
        height: 200px;
        text-align: center;
        line-height: 200px;
    }

        .popSlideItem .img img {
            max-width: 100%;
            max-height: 100%;
            padding: 15px;
            display: inherit;
        }

    .popSlideItem .textB {
        opacity: 0.7;
        padding: 15px 0px 5px 0px;
    }

.contactPopUp .btnRow .redBtn {
    width: 100%;
}

.contactPopUp .redBtn.rightArrow:hover:after {
    left: calc(-50% + 60px);
}

.formBottomText {
    color: #000;
    opacity: 0.5;
    text-align: center;
    padding: 15px 0px 0px 0px;
}

.popUpSocial {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .popUpSocial ul {
        line-height: normal;
        padding: 0px;
        margin: 0px;
        max-width: 104px;
    }

        .popUpSocial ul li {
            display: inline-block;
            margin: 10px;
        }

            .popUpSocial ul li a {
                width: 84px;
                height: 84px;
                background: #ffffff;
                border-radius: 50%;
                box-shadow: 0px 42px 51px 0px rgba(0, 0, 0, 0.1);
                text-align: center;
                display: block;
            }

                .popUpSocial ul li a:hover {
                    background: #efefef;
                }

                .popUpSocial ul li a:before {
                    content: "";
                    width: 32px;
                    height: 32px;
                    background: url(assets/images/sprite.png) no-repeat -364px -4px;
                    display: inline-block;
                    vertical-align: top;
                    margin-top: 24px;
                }

            .popUpSocial ul li .email:before {
                background-position: -364px -45px;
            }

            .popUpSocial ul li .skype:before {
                background-position: -364px -93px;
            }

.popUpRightBg .owlNav.owl-carousel .owl-dot {
    width: 7px;
    height: 7px;
    background: #808080;
}

    .popUpRightBg .owlNav.owl-carousel .owl-dot.active {
        background: #fff;
    }

.popUpRightBg .owlNav.owl-carousel .owl-dots {
    text-align: left;
    padding-left: 62px;
}

.popUpReview {
    padding: 100px 0px 0px 67px;
}

.contactPopUp {
    transform: translateX(100%);
    transition: transform .4s;
    transition-timing-function: cubic-bezier(.55,.085,.68,.53);
}

    .contactPopUp.show {
        transform: translateX(0);
    }

    .contactPopUp .close {
        position: absolute;
        right: 20px;
        top: 15px;
        height: 30px;
        width: 50px;
        opacity: 1;
        z-index: 1;
    }

        .contactPopUp .close:before {
            content: "";
            position: absolute;
            left: 0px;
            top: 12px;
            height: 4px;
            width: 100%;
            background: #ffffff;
        }

.contactPageBlock {
    margin: 0px 0px 50px 0px;
    position: relative;
}

.contactPage{padding-top: 150px;}
@media (max-width: 767px) {
	.contactPage {padding-top: 50px;}
}

    .contactPageBlock .contactBox {
        box-shadow: none;
        padding: 90px 120px 80px 60px;
    }

.contactSecE {
    background-color: #f1f1f1;
    padding: 50px 0px;
}

.contactAddBox {
    position: relative;
    background: #ffffff;
}

    .contactAddBox .text {
        margin-right: 120px;
        padding: 15px 15px 15px 25px;
        border-right: solid 2px #f1f1f1;
    }

    .contactAddBox .textA {
        font-size: 32px;
        font-weight: 500;
        margin: 0px 0px 20px 0px;
    }

    .contactAddBox .textB {
        font-size: 20px;
        line-height: 1.3;
        margin: 0px 0px 15px 0px;
    }

        .contactAddBox .textB a {
            color: var(--black);
        }

    .contactAddBox .img {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 80px;
    }

.contactinfoBox {
    padding: 25px 15px 15px 15px;
}

    .contactinfoBox .contactItem {
        padding: 6px 5px 5px 45px;
        margin-bottom: 10px;
    }

        .contactinfoBox .contactItem a {
            font-weight: 500;
        }

        .contactinfoBox .contactItem:before {
            left: 0px;
            top: 6px;
            background-image: url(assets/images/sprite.png);
        }

        .contactinfoBox .contactItem.skype:before {
            background-position: -364px -93px;
        }

.contactinfoBox {
    background: #ffffff;
    height: 100%;
}

.animation {
    opacity: 0;
    transform: translate(0px,20px);
    transition: all 0.5s linear;
}

    .animation.ani {
        opacity: 1;
        transform: translate(0px,0px);
    }

@media (min-width: 1500px) {
    .navigation > ul > li {
        margin: 0px 26px;
    }

    .container {
        max-width: 1400px;
    }

    .homeBannerBg {
        min-height: calc(100vh - 133px);
        background-size: cover;
        display: flex;
        align-items: center;
    }
}

.visM {
    display: none;
}


/*Extra-Css*/
.badges_box {
    max-width: 200px;
    margin: 0px auto;
}


@media (max-width: 767px) {
    
    .visM {
        display: block;
    }

    .visD {
        display: none;
    }

    body {
        font-size: 16px;
    }

    .topBg {
        letter-spacing: 1px;
    }

    .container {
        padding: 0px 20px;
    }

    .headerBg .container {
        padding: 0px 15px;
    }

    .homeBannerText {
        padding: 50px 0px 25px 0px;
    }

        .homeBannerText .textA {
            font-size: 48px;
            letter-spacing: -2px;
        }

        .homeBannerText .textB {
            font-size: 18px;
            padding: 0px 0px 30px 0px;
        }

    .cutomerRevBlock {
        padding: 0px 0px 30px 0px;
    }

        .cutomerRevBlock .textA {
            line-height: 1.4;
            font-size: 16px;
        }

            .cutomerRevBlock .textA span:first-child {
                display: block;
                margin-bottom: 25px;
            }

        .cutomerRevBlock .rt {
            margin: 3px 5px 0px 5px;
            display: inline-block;
            vertical-align: top;
        }

        .cutomerRevBlock .cl {
            margin: 0px 5px 0px 0px;
            display: inline-block;
            vertical-align: top;
        }

        .cutomerRevBlock .textA strong {
        }

        .cutomerRevBlock .textB {
            overflow: hidden; /*white-space: nowrap;*/
        }

    .hAaHXe {
        height: 33px;
        margin: 0px 10px 10px 0px;
        overflow: hidden;
        transform: scale(1);
    }

    .homeHeading h2 {
        font-size: 34px;
        margin: 0px 0px 15px 0px;
        letter-spacing: -1.5px;
        line-height: 1.1;
    }

    .homeHeading .desc {
        font-size: 20px;
        padding-top: 0px;
    }

    .homeSecB {
        padding: 45px 0px 30px 0px;
    }

    .homeSecC {
        padding: 0px 0px 15px 0px;
    }

    .homeIndusiRow {
        padding-top: 10px;
    }

    .homeMobileAppBlock .textA {
        font-size: 16px;
        padding: 0px;
    }

    .homeMobileAppBlock .textB {
        font-size: 18px;
        padding: 0px 0px 10px 0px;
        margin-bottom: 20px;
    }

    .homeMobileAppBlock .textC {
        font-size: 30px;
        letter-spacing: -1.5px;
    }

    .homeMobileAppBlock .textD {
        font-size: 18px;
        padding: 0px 0px 15px 0px;
    }

    .homeMobileAppBlock .textE {
        padding: 10px 0px 10px 0px;
    }

        .homeMobileAppBlock .textE .col {
            border-right: none;
        }
            /*.homeMobileAppBlock .textE strong {font-size: 24px;}
  .homeMobileAppBlock .textE span {font-size: 12px;}*/
            .homeMobileAppBlock .textE .col:last-child {
                text-align: left;
                padding-top: 20px;
                flex: 0 0 100%;
            }

    .porImgFrame {
        text-align: center;
        margin-bottom: 25px;
    }

    .portImgBlock {
        padding: 10px 0px 0px 0px;
    }

    .portItem .portBgImg {
        left: 0px !important;
        right: 0px !important;
        top: inherit;
        width: 100%;
    }

    .portBgImg:before {
        display: none;
    }

    .owl-carousel .porImgFrame .portImg {
        border-radius: 0px;
        height: auto;
        width: auto;
    }

    .portBgImg img {
        border-radius: 0px;
    }

    .portSlider .owlNav.owl-carousel .owl-nav {
        left: 10px;
        bottom: 20px;
    }

    .portSlider .owl-item {
        padding-bottom: 80px;
    }

    .homeSecD {
        padding: 20px 0px 35px 0px;
    }

        .homeSecD .text-right {
            text-align: center !important;
        }

    .homeIndusiBox .img {
        margin: 0px 0px 10px 0px;
    }

    .homeIndusiBox h3 {
        font-size: 22px;
        margin-bottom: 1px;
    }

    .homeIndusiBox .desc {
        font-size: 16px;
        padding-bottom: 15px;
    }

    .homeSecD .redBtn {
        margin-top: 1px;
    }

    .homeSecE {
        padding: 80px 0px 40px 0px;
    }

        .homeSecE .homeHeading h2 {
            margin: 0px;
        }

    .techTabNav {
        margin: 5px 0px 15px 0px;
        padding-bottom: 0px;
        overflow-x: auto;
        white-space: nowrap;
    }

        .techTabNav a {
            font-size: 16px;
            padding: 5px 10px;
            height: auto;
            line-height: inherit;
        }

        .techTabNav .active {
            font-size: 20px;
        }
    /*.techTabBlock {text-align: center;}
  .techTabBlock img {max-width: 100px; max-height: 50px; margin: 0px 10px 10px 10px; }*/
    .techLogoCol {
        flex: 0 0 33.33%;
        padding: 25px 15px 5px 15px;
        height: 140px;
    }

        .techLogoCol svg {
            transform: scale(1);
        }

    .homeSecF {
        padding: 50px 0px 30px 0px;
        background: #000;
    }

        .homeSecF:before {
            display: none;
        }

        .homeSecF .text-right {
            text-align: center !important;
        }

    .homeServiceRow {
        padding-top: 15px;
    }

    .homeServiceBox {
        padding-top: 20px;
    }

        .homeServiceBox .img {
            margin: 0px 0px 15px 0px;
        }

            .homeServiceBox .img:before {
            }

        .homeServiceBox h3 {
            font-size: 28px;
            line-height: 1;
        }

        .homeServiceBox .desc {
            font-size: 18px;
            margin: 0px 0px 20px 0px;
        }

    .homeSecG {
        padding: 45px 0px 40px 0px;
    }

        .homeSecG .homeHeading {
            padding-bottom: 5px;
        }

    .homeInduTabNav {
        margin-bottom: 20px;
    }

        .homeInduTabNav li {
            padding: 5px 0px;
        }

            .homeInduTabNav li .active {
                font-size: 18px;
            }

    .homeInduTabBlock .text-right {
        text-align: left !important;
        padding-bottom: 15px;
    }

    .homeInduTabNav li a {
        font-size: 16px;
    }

    select.homeInduTabNav {
        display: block;
        padding: 9px 10px;
        width: 100%;
        border: solid 1px #ccc;
        border-radius: 5px;
        background: #ffffff;
        margin-bottom: 10px;
    }

        select.homeInduTabNav:focus {
            outline: none;
            box-shadow: none;
        }

    .homeSecG .row {
        position: relative;
        z-index: 11px;
    }

    .induStikey {
        position: sticky;
        top: 60px;
        padding-bottom: 1px;
        z-index: 11;
        background: #ffffff;
    }

    .homeInduTabBlock h3 {
        font-size: 28px;
        margin: 10px 0px 10px 0px;
    }

    .homeInduTabBlock .points {
        padding: 5px 0px 10px 0px;
    }

        .homeInduTabBlock .points li {
            flex: 0 0 100%;
            font-size: 20px;
            padding-left: 35px;
        }

            .homeInduTabBlock .points li:before {
                transform: scale(0.9);
                top: -1px;
            }

    .homeSecG .redBtn {
        margin-top: 25px;
    }

    .homeSecH {
        padding: 50px 0px 30px 0px;
    }

    .yelloBgEffect:before {
        bottom: 3px;
    }

    .trustedLogos img {
        margin: 0px 5px 15px 5px;
        width: 100px;
    }

    .homeSecI {
        padding: 20px 0px 30px 0px;
    }

        .homeSecI .offset-lg-1 {
            order: -1;
        }

    .videoImg {
        margin-bottom: 20px;
    }

        .videoImg .playBtn {
            left: calc(50% - 28px);
            top: calc(50% - 28px);
            width: 56px;
            height: 56px;
        }

    .homeTesiText {
        padding: 20px 0px 10px 0px;
        min-height: 360px;
    }

    .homeSecI .item {
        padding-bottom: 40px;
    }

    .homeTesiText .textA {
        font-size: 20px;
        padding: 10px 0px;
    }

    .homeTesiText .textB {
        font-size: 16px;
    }

    .homeSecJ {
        padding: 45px 0px 20px 0px;
    }

        .homeSecJ .orderNum {
            order: -1;
            margin-bottom: 30px;
        }

    .contactItems {
        margin: 0px 0px 30px 0px;
    }

    .contactItem a {
        font-size: 20px;
    }

    .contactPoints {
        padding: 0px 0px 10px 0px;
    }

        .contactPoints h3 {
            font-size: 18px;
        }

        .contactPoints ul li {
            font-size: 16px;
        }

            .contactPoints ul li:before {
                top: -3px;
            }

    .homeTesimonialSlider .owlNav.owl-carousel .owl-nav {
        left: 0px;
        width: 100%;
        padding-bottom: 14px;
        display: none;
    }

    .homeTesimonialSlider .owlNav.owl-carousel .owl-dots {
        left: 0px;
        width: 100%;
    }

    .homeTesimonialSlider .seeMore {
        font-size: 16px;
    }

    .contactBox {
        padding: 25px;
    }

        .contactBox h3 {
            font-size: 22px;
            margin: 0px 0px 15px 0px;
        }

    .inputfield {
        margin: 10px 0px 15px 0px;
    }

    .footer {
        padding: 30px 0px 0px 0px;
    }

        .footer h3 {
            margin: 0px 0px 20px 0px;
            font-size: 18px;
            font-weight: 500;
        }

        .footer .colA {
          /*  order: 1; */
            padding-top: 20px;
        }

    .footerLink li {
        padding-bottom: 5px;
    }

        .footerLink li a {
            font-size: 14px;
        }

    .footerLink {
        padding-bottom: 5px;
    }

    .footBlock {
        display: none;
        position: relative;
        top: -10px;
        padding: 0px 0px 10px 0px;
    }

    .footBlockHead {
        position: relative;
    }

    .footBlockHead:after {
        content: '';
        width: 20px;
        height: 20px;
        position: absolute;
        right: 5px;
        top: 0px;
        background: transparent url(assets/images/slider-arrow.png) no-repeat 3px 2px;
        transition: all 0.1s linear;
    }

    .openTab.footBlockHead:after {
        transform: rotate(90deg);
        top: -2px;
    }


    .contactPopUp .contactBox {
        padding: 15px;
    }

    .popUpRightBg {
        padding: 15px;
    }

    .popSlideItem {
        padding: 0px 0px 0px 50px;
        background-size: 25px auto;
    }

    .popUpReview {
        padding: 80px 0px 10px 47px;
    }

    .popUpSocial {
        position: initial;
        background: #dedede;
        transform: inherit;
    }

        .popUpSocial ul {
            max-width: initial;
            padding-left: 40px;
        }

            .popUpSocial ul li a {
                width: 44px;
                height: 44px;
            }

                .popUpSocial ul li a:before {
                    margin-top: 5px;
                    transform: scale(0.8);
                }

    .contactPopUp .close {
        background: #efefef;
        width: 40px;
        height: 40px;
        right: 10px;
        top: 10px;
    }

        .contactPopUp .close:before {
            background: red;
            top: 18px;
            height: 2px;
            left: 6px;
            width: calc(100% - 12px);
        }


    .contactPageBlock {
        margin: 0px 0px 20px 0px;
    }

        .contactPageBlock .contactBox {
            padding: 15px;
        }

    .badges_box {
        margin: 20px auto;
    }
}
/*footer Css contact form start*/

.contactBox {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 18px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

    .contactBox h3 {
        font-size: 32px;
        font-weight: 800;
        margin: 0px 0px 25px 0px;
        padding-bottom: 15px;
        position: relative;
    }

        .contactBox h3:before {
            content: "";
            width: 50px;
            height: 4px;
            position: absolute;
            left: 0px;
            bottom: 0px;
            background: var(--orange);
        }

.inputfield {
    position: relative;
    margin: 10px 0px 25px 0px;
    display: inline-block;
    width: 100%;
}

    .inputfield label {
        position: absolute;
        pointer-events: none;
        left: 35px;
        top: 10px;
        transition: all 0.2s linear;
        margin: 0px;
        color: #505050;
    }

    .inputfield .input {
        background: none;
        border: none;
        border-bottom: 1px solid #ccc;
        border-radius: 0px;
        padding: 2px 0px 0px 35px;
        height: 44px;
        width: 100%;
        transition: all 0.3s linear;
        font-size: 18px;
        color: #505050;
    }

        .inputfield .input:focus {
            border-bottom-color: var(--red);
            outline: none;
        }

            .inputfield .input:focus ~ label {
                top: -12px;
                font-size: 12px;
            }

    .inputfield label.active {
        top: -12px;
        font-size: 12px;
    }

    .inputfield .error {
        position: absolute;
        top: -24px;
        right: 0;
        font-size: 12px;
        color: red;
        top: -16px;
        font-size: 11px;
        display: none;
    }

    .inputfield select.input option:first-child {
        display: none;
    }

    /* .inputfield select.input:focus option:first-child {
    display: inherit;
}*/


    .inputfield select.input {
        appearance: none;
        -webkit-appearance: none;
        background: transparent;
    }

    /* .inputfield textarea.input {
    padding-top: 10px;
    height: 80px;
    resize: none;
}*/


    .inputfield .svgicon {
        height: 24px;
        width: 24px;
        position: absolute;
        left: 0px;
        top: 9px;
    }


.inputfieldNew {
    position: relative;
    margin: 10px 0px 25px 0px;
    display: inline-block;
    width: 100%;
}

    .inputfieldNew label {
        margin: 0px 0px 6px 0px;
        color: #505050;
        position: relative;
        padding-left: 35px;
    }

    .inputfieldNew textarea.input {
        border: 1px solid #ccc;
        width: 100%;
        resize: none;
        height: 100px;
        padding: 5px;
    }

        .inputfieldNew textarea.input:focus {
            border-color: var(--red);
            outline: none;
        }

    .inputfieldNew .svgicon {
        height: 24px;
        width: 24px;
        position: absolute;
        left: 0px;
        top: -2px;
    }
.contactBox .wpcf7-quiz {width:100px;}
/*footer Css contact form end*/

/*29-05-2022*-Start*/
.bottom_info {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

    .bottom_info li {
        list-style: none;
        padding: 25px 15px 50px;
        position: relative;
        width: 31.3%;
        margin-left: 3%;
        background: #fff;
        border-radius: 5px;
        border: 1px solid #edeaea;
        box-shadow: 0px 2px 15px rgba(0,0,0,0.08);
        text-align: center;
    }

        .bottom_info li:first-of-type {
            margin-left: 0px;
        }

        .bottom_info li span.icon {
            width: 70px;
            display: inline-block;
            margin-bottom: 25px;
        }

        .bottom_info li p {
            margin-bottom: 10px;
        }

            .bottom_info li p a {
                color: var(--black);
            }

            .bottom_info li p strong.block {
                margin-bottom: 20px;
                display: block;
            }

        .bottom_info li .txt {
            color: #fff;
        }

        .bottom_info li .btn {
            background: var(--red);
            padding: 12px 10px;
            color: #fff;
            font-weight: bold;
            border-radius: 0px 0px 5px 5px;
            position: absolute;
            left: 0px;
            bottom: 0px;
            width: 100%;
        }

/*testimonial*/
.testimonial_top {
    padding: 50px 15px;
}

.textblock .topline {
    color: #000;
    position: relative;
    font-weight: 800;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

    .textblock .topline:before {
        width: 30px;
        height: 3px;
        content: "";
        background: var(--red);
        position: absolute;
        left: 0px;
        bottom: 0px;
    }

.testimonial_top h1 {
    font-size: 55px;
    font-weight: 800;
}

.btngroup {
    display: inline-block;
    margin-top: 15px;
    background: #fff;
    border: 1px solid var(--red);
}

    .btngroup a {
        padding: 10px 15px;
        display: inline-block;
        text-transform: uppercase;
        font-weight: 600;
        text-decoration: none;
    }

        .btngroup a.white-btn {
            color: var(--red);
        }

        .btngroup a.red-btn {
            background: var(--red);
            color: #fff;
        }

.testi_list {
    max-width: 1140px;
    margin: 30px auto;
    padding: 0px;
}

    .testi_list li {
        list-style: none;
        display: flex;
        align-items: center;
        margin-bottom: 40px;
    }

    .testi_list .left {
        width: 375px;
        display: flex;
        align-items: center;
        padding-right: 15px;
    }

        .testi_list .left span {
            width: 80px;
            height: 80px;
            border-radius: 100%;
            overflow: hidden;
        }

            .testi_list .left span img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .testi_list .left h5 {
            width: calc(100% - 80px);
            padding-left: 15px;
            color: rgba(0,0,0,0.5);
            font-weight: normal;
            font-size: 16px;
        }

            .testi_list .left h5 strong {
                font-weight: 800;
                font-weight: bold;
                font-size: 20px;
                display: block;
                color: #000;
            }

    .testi_list .right {
        width: calc(100% - 375px);
        padding: 10px 20px;
    }

        .testi_list .right p {
            position: relative;
            font-weight: 300;
            font-size: 22px;
            line-height: 32px;
            margin-bottom: 0px;
            padding-left: 35px;
        }

            .testi_list .right p:before {
                content: "";
                background: url(assets/images/quate_red.svg) no-repeat;
                width: 24px;
                height: 24px;
                background-size: contain;
                position: absolute;
                left: 0px;
                top: 5px;
            }

.video_testi {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .video_testi:before {
        content: "";
        background: #000;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.45;
        pointer-events: none;
    }

    .video_testi video {
        width: 100%;
        height: 620px;
        object-fit: cover;
        vertical-align: middle;
    }

.testi_caption {
    position: absolute;
    z-index: 1;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    width: 50%;
}

    .testi_caption p.large_text {
        font-size: 36px;
        line-height: 42px;
        font-weight: normal;
        font-weight: 600;
        color: #fff;
        position: relative;
    }

        .testi_caption p.large_text:before {
            content: "";
            background: url(assets/images/quate_red.svg) no-repeat;
            width: 24px;
            height: 24px;
            background-size: contain;
            position: absolute;
            left: -35px;
            top: 5px;
        }

    .testi_caption p {
        color: #fff;
        font-size: 18px;
    }

    .testi_caption .videoImg {
        display: inline-block;
        color: #fff;
        font-size: 20px;
    }

        .testi_caption .videoImg .playBtn {
            position: relative;
            left: auto;
            top: auto;
            margin-top: 25px;
            width: 60px;
            line-height: 50px;
            margin-right: 25px;
        }

@media (max-width:1024px) {
    .testi_caption {
        width: 80%;
    }

    .video_testi video {
        height: 480px;
    }

    .testi_list .left {
        width: 250px;
    }

    .testi_list .right {
        width: calc(100% - 250px);
        padding-right: 0px;
    }
}

@media (max-width:767px) {
    .bottom_info li {
        margin: 15px auto;
        width: 100%;
        max-width: 400px;
    }

        .bottom_info li:first-of-type {
            margin-left: auto;
        }

    .testi_list li {
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .testi_list .left {
        width: 100%;
        padding-right: 0px;
    }

    .testi_list .right {
        width: 100%;
        padding-left: 0px;
    }

        .testi_list .right p {
            font-size: 18px;
            line-height: 28px;
        }

    .testi_list .left span {
        width: 50px;
        height: 50px;
    }

    .testi_list .left h5 {
        width: calc(100% - 50px);
    }

    .testi_caption {
        width: 100%;
        padding: 10px 10px 10px 40px;
    }

        .testi_caption p.large_text {
            font-size: 28px;
            line-height: 36px;
        }

        .testi_caption p, .testi_caption .videoImg {
            font-size: 16px;
        }

    .testimonial_top .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .testimonial_top .imageblock {
        max-width: 450px;
        margin: 25px auto 0px;
    }

    .testimonial_top h1 {
        font-size: 35px;
    }

    .textblock .topline {
        font-size: 16px;
    }
}

@media (max-width:479px) {
    .testi_caption p.large_text {
        font-size: 24px;
        line-height: 30px;
    }

    .btngroup a {
        padding: 8px 10px;
        font-size: 14px;
    }

    .testi_caption .videoImg .playBtn {
        margin-top: 10px;
        width: 40px;
        line-height: 27px;
        margin-right: 15px;
        height: 40px;
    }
}
.service_menu .menu-dropdown {max-width: 700px; margin: 0px auto; right: 0px;box-shadow: 0px 5px 10px #ccc;padding-left: 20px;}
.service_menu .menu-dropdown .h6 {color: #000;}
.service_menu .links {list-style: none; padding: 0px; margin: 0px;}
.service_menu .links li {display: block; font-size: 14px; padding: 5px 0px; font-weight: 500;}
.service_menu .links li a { color: #333; border-bottom: solid 2px #ccc; padding-bottom: 2px;}
.service_menu .links li a:hover { text-decoration:none; border-bottom-color: var(--red);}
.service_menu .menu-dropdown .redBtn {margin: 30px 0px 0px 0px; min-width:120px;padding: 10px 20px;background: #14151b; color: #ffffff;}
.service_menu .menu-dropdown .redBtn:hover {background: #000;}
@media (max-width: 1025px) {
    .service_menu .menu-dropdown  {box-shadow: none;}
}




/***********************portfolio for css**********************/
.portfolio_wrap {background: #000; padding: 3px;  margin: 0px -15px;}
.portfolio_wrap .overlay_div { background:rgba(0, 0, 0, 0.68); position: absolute; top:0; left:0; width:100%; height:100%; display: flex; align-items:flex-end; justify-content:flex-start; padding:40px; opacity:0; visibility: hidden; transition:all 0.5s ease; text-decoration: none;color:#fff;}
.portfolio_wrap .overText span { background:#000; color:#fff; font-size:12px; text-transform: uppercase; letter-spacing:0.8px; display: inline-block; padding:3px 7px; }
.portfolio_wrap .overText p { background:#fff; color:#000; margin-bottom:0px; font-family: 'proxima_novablack'; font-size:30px; line-height:40px; padding:0px 7px; }

.portfolio_wrap .logoImg { width:calc(100% - 6px); margin: 3px; height:420px;  overflow: hidden; position: relative;}
.portfolio_wrap .logoImg img { width:100%; height:100%; object-fit:cover; transition:all 0.5s ease; transform: scale(1); }
.portfolio_wrap .logoImg:hover img { transform: scale(1.1); }
.portfolio_wrap .logoImg:hover .overlay_div { opacity:1; visibility: visible; }


@media (min-width: 1400px) {
    .logoTabNav {margin: 25px auto 45px auto; max-width: 1400px; display: block;}
}
@media (max-width:1399px) {
    .portfolio_wrap .logoImg {  height:350px; }
}
@media (max-width:1199px) {
    .portfolio_wrap .logoImg {  height:250px; }
}
@media (max-width:667px) {
    .portfolio_wrap .logoImg {  height:280px; }
}
/********************end here*********************************/

/********* Footer End **********/
.footer_bottom {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #7f88a6;
    padding: 27px 0;
}
.f_social_icon_two a {
    font-size: 14px;
    color: #969db4;
    margin: 0 8px;
}

    .copyright-text {
        margin: 0;
        padding: 0;
    }
