
/******commom css******/
:root {
    --white: #ffffff;
    --black: #000;
    --graybg: #f2fafd;
    --blue: #0590c9;
    --darkblue: #101123;
    --green: #07c9a7;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; /* Chrome, Safari */
    text-rendering: optimizeLegibility; /* Firefox */
    font-weight: 400;
    color: var(--black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 46px;
    font-weight: 700;
    margin: 0;
}

h2 {
    font-weight: 600;
    font-size: 38px;
}

h3 {
    font-weight: 600;
    font-size: 30px;
}

h4 {
    font-weight: 600;
    font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: break-word;
    line-height: 1.4;
    margin: 0;
}

p {
    word-break: break-word;
    margin: 10px 0;
    line-height: 1.4;
    display: inline-block;
    width: 100%;
}

button,
input,
optgroup,
select,
textarea {
    font-family: Poppins, sans-serif;
}

    button:focus {
        outline: none !important;
    }

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a, a:hover {
    text-decoration: none;
}

.btn {
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 0;
    font-size: 16px;
    min-width: 120px;
}

.btn-primary {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    border-width: 2px;
}

    .btn-primary:hover {
        background: #11db74;
        border-color: #11db74;
        color: var(--white);
    }

    .btn-primary:focus, .btn-primary:active {
        box-shadow: none !IMPORTANT;
        background: #11db74;
        border-color: #11db74;
        color: var(--white);
    }

.btn-secondary {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    border-width: 2px;
}


    .btn-secondary:hover {
        background: #0f88b5;
        border-color: #0f88b5;
        color: var(--white);
    }

    .btn-secondary:focus, .btn-secondary:active {
        box-shadow: none !IMPORTANT;
        background: #0f88b5;
        border-color: #0f88b5;
        color: var(--white);
    }





/* header */

header {
    z-index: 999;
    width: 100%;
    padding: 0px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0e1d24;
    transition: all 0.2s ease-in-out 0.2s;
}

    header:before {
        content: "";
        background: #0e1d24;
        height: 0;
        transition: all 0.5s ease-in-out;
        top: 0;
        position: absolute;
        width: 100%;
        z-index: -1;
    }

    header:hover:before {
        height: 72px;
    }

    header.fixed {
        -webkit-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        -moz-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        position: fixed;
        background: #0e1d24;
    }

    header .container {
        max-width: 1280px;
    }

    header .nav-left {
        display: flex;
        align-items: center;
        grid-gap: 30px;
    }

    header .logo {
        display: flex;
        text-transform: capitalize;
        font-weight: 900;
        color: var(--green);
        font-size: 24px;
        align-items: center;
        gap: 20px;
        margin: 0;
        line-height: 24px;
    }


        header .logo img {
            max-width: 150px;
            margin: 0;
            display: block;
        }




.NavBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

header .mainNav {
    display: flex;
    align-items: center;
}

    header .mainNav li {
        display: block;
        list-style-type: none;
        font-size: 16px;
        padding: 24px 8px;
    }


        header .mainNav li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 400;
            display: flex;
            width: 100%;
            align-items: center;
            text-transform: none;
            font-size: 14px;
        }



            header .mainNav li a:hover {
                color: var(--green);
            }

        header .mainNav li.active a {
            color: var(--green);
        }



        header .mainNav li .subMenu {
            transition: all 0.5s ease-in-out;
            padding: 50px;
            position: absolute;
            background:#0e1d24;
            min-width: 240px;
            top: -100%;
            max-width: 100%;
            display: flex;
            flex-wrap: wrap;
            left: 0;
            width: 100%;
            opacity: 0;
            height: 0;
            overflow: hidden;
            transform-origin: top;
            z-index: -1;
        }

            header .mainNav li .subMenu li {
                width: 25%;
                display: inline-block;
                padding: 0;
                margin-right: 0;
            }


                header .mainNav li .subMenu li a {
                    padding: 8px 10px;
                    border-radius: 0;
                    color: var(--white);
                    display: block;
                }

                    header .mainNav li .subMenu li a h4 {
                        font-weight: 500;
                        margin: 0 0 5px;
                        font-size: 16px;
                        min-height: 45px;
                        text-overflow: ellipsis;
                        overflow: hidden;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        display: -webkit-box;
                        color:var(--blue);
                    }

                    header .mainNav li .subMenu li a p {
                        margin: 0;
                        font-size: 14px;
                        text-overflow: ellipsis;
                        overflow: hidden;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        display: -webkit-box;
                        min-height: 40px;
                    }


                    header .mainNav li .subMenu li a span svg {
                        width: 25px;
                        
                    }

                    header .mainNav li .subMenu li a:hover {
                        background: none;
                        color: var(--green);
                    }
                    header .mainNav li .subMenu li a:hover h4 {
                        color: var(--green);
                    }

                    header .mainNav li .subMenu li a svg polyline, header .mainNav li .subMenu li a svg line {
                            stroke: var(--blue);
                        }
                        header .mainNav li .subMenu li a:hover svg polyline, header .mainNav li .subMenu li a:hover svg line {
                            stroke: var(--green);
                        }

        header .mainNav li:hover .subMenu {
            top: 100%;
            opacity: 1;
            height: auto;
            overflow: auto;
            max-height: 90dvh;
        }

header .nav-right div {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.nav-right .btn {
    padding: 10px 5px;
    font-size: 15px;
    min-width: 180px;
}

header .mainNav li.mobile-btn {
    display: none;
}

header .header-top-left .menu-toggle {
    display: none;
}

header .mainNav li.mobile-top {
    display: none;
}

header span.submenu-icon {
    display: none;
}
header a.btn.btn-secondary {
    background: #0590c9 url(../images/btn-bg-blue.jpg);
    background-repeat: no-repeat;
	background-position:center;
}
header a.btn.btn-primary {
    background: #07c9a7 url(../images/btn-bg-green.jpg);
    background-repeat: no-repeat;
	background-position:center;
}

@media (min-width:1200px) {
    header a.btn.btn-secondary {
    background-position:74px center;
}
header a.btn.btn-primary {
    background-position:30px center;
}
}

/******header end********/


.full-width > .container {
    max-width: 100%;
    padding: 0;
}

.full-width .container > .row {
    margin: 0;
}

    .full-width .container > .row .col-md-12, .full-width .container > .row .col-lg-12 {
        padding: 0;
    }



/********************** content css start****************************/

.main-banner {
    position: relative;
    margin-bottom: -6px;
}

    .main-banner video {
        object-fit: cover;
        width: 100%;
        height: 110%;
    }


    .main-banner h1 {
        color: var(--white);
        margin: 0;
        font-size: 55px;
        font-weight: 700;
    }



    .main-banner .banner-content {
        position: absolute;
        z-index: 1;
        text-align: center;
        top: 40%;
        width: 100%;
        left: 50%;
        transform: translate(-50%, -40%);
        max-width: 80%;
    }

.client-logo {
    position: absolute;
    z-index: 9;
    bottom: 0;
    width: 100%;
    padding: 50px 0;
    display:none;
}

    .client-logo .client-block {
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .client-logo .client-block img {
            filter: brightness(0) invert(1);
        }

            .client-logo .client-block img:hover {
                filter: none;
                cursor: pointer;
            }

    .client-logo .owl-carousel {
        padding: 0 70px;
    }

        .client-logo .owl-carousel .owl-stage-outer {
            z-index: 1;
        }

    .client-logo .owl-nav {
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translate(0, -50%);
        left: 0;
    }

        .client-logo .owl-nav button span {
            display: none;
        }

        .client-logo .owl-nav button {
            width: 60px;
            height: 60px;
        }

            .client-logo .owl-nav button.owl-prev {
                background: url(../images/left-arrow.png) no-repeat;
                background-size: 100% 100%;
            }

            .client-logo .owl-nav button.owl-next {
                background: url(../images/right-arrow.png) no-repeat;
                background-size: 100% 100%;
                float: right;
            }

.ContentSection {
    padding: 80px 0;
    overflow: hidden;
}


.BlockSection {
    background: var(--darkblue);
    color: var(--white);
}

    .BlockSection h2 {
        margin: 0 0 30px;
    }

    .BlockSection .col-lg-8 p {
        margin: 0 0 30px;
    }

    .BlockSection .block {
        border: 1px solid var(--green);
        padding: 0 25px 25px;
        position: relative;
        margin-top: 80px;
    }

        .BlockSection .block .icon {
            background: var(--green);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -40px 0 30px;
            padding: 8px;
        }

        .BlockSection .block h4 {
            font-size: 20px;
            font-weight: 600;
            margin: 0 0 20px;
            min-height: 56px;
        }

        .BlockSection .block p {
            text-overflow: ellipsis;
            -webkit-line-clamp: 3;
            overflow: hidden;
            display: box;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            white-space: normal;
            max-height: 65px;
            margin-bottom: 20px;
        }

        .BlockSection .block a {
            color: var(--white);
            display: flex;
            align-items: center;
        }

            .BlockSection .block a span {
                color: var(--blue);
                margin-left: 10px;
            }

            .BlockSection .block a svg {
                width: 25px;
                position: relative;
                top: 3px;
            }

        .BlockSection .block:hover {
            box-shadow: 0 0 15px rgba(50,235,141,0.5);
        }

            .BlockSection .block:hover a span {
                color: var(--green);
            }

        .BlockSection .block a svg {
            transition: ease-in-out 0.3s;
        }

        .BlockSection .block:hover a svg {
            margin-left: 5px;
        }

            .BlockSection .block:hover a svg polyline, .BlockSection .block:hover a svg line {
                stroke: var(--green);
            }

.ai-technology {
    background: url(../images/ai0technology-bg.jpg) no-repeat;
    background-size: cover;
    color: var(--white);
}

    .ai-technology h2 {
        margin: 0 auto 30px;
        max-width: 570px;
    }

    .ai-technology .inner-block p {
        margin-bottom: 30px;
    }

        .ai-technology .inner-block p b {
            font-weight: 600;
        }

    .ai-technology .inner-block a {
        font-size: 20px;
        min-width: 200px;
    }


.our-service {
    background: url(../images/ai-service-bg.jpg) no-repeat;
    background-size: cover;
    color: var(--white);
}

    .our-service .BlockSection {
        background: none;
    }

        .our-service .BlockSection h2 {
            margin-top: 100px;
        }

        .our-service .BlockSection .block {
            border: 1px solid var(--blue);
        }

            .our-service .BlockSection .block .icon {
                background: var(--blue);
            }

            .our-service .BlockSection .block:hover {
                box-shadow: 0 0 15px rgba(50,186,236,0.5);
            }


/**************************content css end***********************************/








/***********************Footer css***********************/

.Footer {
    background: var(--black);
    color: var(--white);
}

.footer-top {
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    padding: 50px 0;
}

.f-form .form-control {
    border-radius: 0;
    background: none;
    border-color: var(--white);
    color: var(--white);
}

    .f-form .form-control:focus {
        outline: none;
        box-shadow: none;
        border-color: var(--blue);
    }

/*.f-form .form-check {
    padding-left: 0;
}

    .f-form .form-check input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }*/

    .f-form .form-check label {
        position: relative;
        padding-left: 24px;
    }

        .f-form .form-check label:before {
            content: '';
            -webkit-appearance: none;
            background-color: transparent;
            border: 1px solid var(--white);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
            padding: 7px;
            display: inline-block;
            position: absolute;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 5px;
            left: 0;
            top: 5px;
        }

    .f-form .form-check input:checked + label:after {
        content: '';
        display: block;
        position: absolute;
        top: 7px;
        left: 6px;
        width: 5px;
        height: 10px;
        border: solid var(--white);
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

.footer-sec h5 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;
}

.footer-sec > div {
    margin-bottom: 25px;
}
.footer-logo-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid;
    margin-bottom: 40px;
    padding-bottom: 30px;
}
.footer-logo-sec .social-icon {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.footer-logo-sec .social-icon li a {
    border: 2px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition:all 0.5s;
}
.footer-logo-sec .social-icon li a:hover {
    color: var(--green);
    border-color: var(--green);
}
.footer-logo img {
    max-width: 220px;
    display: block;
}

.footer-logo > div {
    margin-bottom: 0;
}

.footer-middle {
    padding: 50px 0;
}

.f-menu h5 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;
}

.f-menu ul li {
    padding: 3px 0;
}

    .f-menu ul li a {
        color: var(--white);
        font-size: 13px;
    }

        .f-menu ul li a:hover {
            color: var(--green);
        }

.footer-middle .f-text {
    display: flex;
    align-items: flex-start;
    grid-gap: 20px;
}

    .footer-middle .f-text img {
        max-width: 70px;
    }

    .footer-middle .f-text p a {
        color: var(--green);
    }

.footer-bottom {
    border-top: 1px solid var(--white);
    padding: 25px 0;
    font-size: 13px;
}
.footer-bottom p {
    margin: 5px 0;
}

.scrollTop {
    background: var(--green);
    position: fixed;
    right: 15px;
    bottom: 90px;
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    right: -100%;
    cursor: pointer;
    transition: all 1s;
    z-index: 99;
    opacity: 0.7;
}

    .scrollTop i {
        font-size: 30px;
    }

    .scrollTop:hover {
        opacity: 1;
        transition: all 0.2s;
    }


/***********************Footer css end***********************/




/************************Inner Static Page ****************************/
.header-inner header {
    background: #f7f7f7;
}

.InnerContent {
    color: var(--black);
}

    .InnerContent p, .InnerContent ul li {
        font-size: 15px;
    }

.InnerContentSec {
    padding: 20px 0 0;
}

    .InnerContentSec > div {
        margin-top: 20px;
    }

        .InnerContentSec > div img {
            margin: 10px 0;
            width: 100%;
        }

        .InnerContentSec > div ul {
            margin: 15px 0;
            display: inline-block;
        }

            .InnerContentSec > div ul li {
                list-style: disc;
                padding-bottom: 10px;
            }

        .InnerContentSec > div ul {
            padding-left: 20px;
        }



/**************/

.career-sec {
    background: #ffffff;
    padding-top: 110px;
}

    .career-sec h2 {
        margin-bottom: 50px;
    }

    .career-sec .block {
        /*border: 1px solid #32baec;*/
        padding: 25px;
        margin-bottom: 30px;
        background: #fff;
        box-shadow:0 0 10px rgba(0,0,0,0.3);
    }

        .career-sec .block h4 {
            font-weight: 500;
            margin: 0 0 10px;
        }

        .career-sec .block .job-details {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0 15px;
        }

            .career-sec .block .job-details span {
                position: relative;
                font-weight: 500;
                font-size: 12px;
                padding-left: 25px;
                padding-top: 4px;
                padding-bottom: 4px;
            }

                .career-sec .block .job-details span:after {
                    content: "";
                    position: absolute;
                    background: url(../images/sprite-icons.png) no-repeat;
                    width: 22px;
                    height: 25px;
                    left: 0;
                }

                .career-sec .block .job-details span.location:after {
                    background-position: -6px -4px;
                }

                .career-sec .block .job-details span.job-type {
                    padding-left: 30px;
                }

                    .career-sec .block .job-details span.job-type:after {
                        background-position: -41px -6px;
                        top: 2px;
                    }

                .career-sec .block .job-details span.salary {
                    padding-left: 37px;
                }

                    .career-sec .block .job-details span.salary:after {
                        background-position: -78px -5px;
                        width: 40px;
                    }

                .career-sec .block .job-details span.date {
                    padding-left: 35px;
                }

                    .career-sec .block .job-details span.date:after {
                        background-position: -117px -5px;
                        width: 30px;
                    }

        .career-sec .block > a {
            background: var(--blue);
            font-weight: 500;
            font-size: 13px;
            color: #fff;
            display: inline-block;
            padding: 6px 25px;
            text-decoration: underline;
        }

            .career-sec .block > a:hover {
                background: #0f88b5;
            }



        .career-sec .block .content p {
            font-weight: normal;
            font-size: 15px;
            margin: 0 0 16px;
        }

        .career-sec .block .content a {
            color: var(--green);
            font-weight: normal;
            font-size: 15px;
            margin-left: 5px;
        }

    .career-sec .owl-carousel .owl-nav {
        margin: 10px 0 0;
    }

.read-more-popup .modal-dialog {
    max-width: 800px;
}

.read-more-popup .modal-content {
    border-radius: 10px;
}

.read-more-popup .modal-header {
    border: none;
    justify-content: flex-start;
}

    .read-more-popup .modal-header h4.modal-title {
        font-weight: 500;
        text-transform: uppercase;
        color: var(--green);
        margin: 0;
        padding-left: 15px;
        font-size: 20px;
    }

    .read-more-popup .modal-header .close {
        padding: 0;
        margin: 0;
        position: absolute;
        right: 10px;
        top: 7px;
        opacity: 1;
        font-weight: 400;
    }

.read-more-popup .modal-body {
    padding-top: 0;
}

.read-more-popup .block {
    border: none;
    padding: 0 15px 0;
    margin-bottom: 0;
}

    .read-more-popup .block .content {
        max-height: 300px;
        overflow: auto;
        margin-bottom: 10px;
    }

.apply-job-popup .modal-dialog {
    max-width: 650px;
}

.apply-job-popup .modal-content {
    border-radius: 10px;
    padding: 0 120px;
}

.apply-job-popup .modal-header {
    border: none;
    justify-content: center;
    padding-bottom: 0;
}

    .apply-job-popup .modal-header h4.modal-title {
        font-weight: 500;
        text-transform: uppercase;
        color: var(--green);
        margin: 0;
        font-size: 20px;
    }

    .apply-job-popup .modal-header .close {
        padding: 0;
        margin: 0;
        position: absolute;
        right: 10px;
        top: 7px;
        opacity: 1;
        font-weight: 400;
    }

.apply-job-popup .modal-body {
    padding-top: 0;
}

    .apply-job-popup .modal-body h6 {
        margin: 5px 0 10px;
        font-size: 16px;
    }

    .apply-job-popup .modal-body .form-group {
        margin-bottom: 0.5rem;
    }

        .apply-job-popup .modal-body .form-group .g-recaptcha-contact {
            transform: scale(0.82);
            transform-origin: 0 0;
        }

        .apply-job-popup .modal-body .form-group label {
            margin: 0;
            font-size: 14px;
            font-weight: 500;
        }

            .apply-job-popup .modal-body .form-group label em {
                color: red;
            }

            .apply-job-popup .modal-body .form-group label span {
                color: var(--green);
            }

    .apply-job-popup .modal-body .btn {
        padding: 5px 25px;
        width: 100%;
    }

    .apply-job-popup .modal-body .custom-file-label {
        display: flex;
        align-items: center;
        border-radius: 0;
        color: var(--green);
        border-color: var(--green);
        height: auto;
        padding: 6px;
        text-align: center;
        justify-content: center;
        grid-gap: 5px;
        cursor: pointer;
    }

        .apply-job-popup .modal-body .custom-file-label:after {
            display: none;
        }

.block-box {
    box-shadow: 0 0 8px #ddd;
    transition: box-shadow 0.2s ease-in-out;
    margin: 0 0 30px;
    display:block;
}

.InnerContentSec .block-box img {
    margin: 0;
    height: 200px;
    object-fit: cover;
}

.block-box > div {
    padding: 20px;
}

.block-box p {
    margin: 0;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    max-height: 58px;
    min-height: 58px;
    color: var(--black);
    font-size: 14px;  
}

.block-box h4 {
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--black);
}

.block-box:hover h4 {
    color: var(--blue);
}

.cookies-sec {
    background: #131631;
    position: fixed;
    z-index: 999;
    color: #fff;
    display: flex;
    grid-gap: 30px;
    padding: 18px 40px;
    line-height: 1.2;
    font-weight: 400;
    align-items: center;
    bottom: 0;
    width:100%;
}

    .cookies-sec a {
        text-decoration: underline;
    }
.cookies-sec .cookies-btn{
    display:flex;
    white-space: nowrap;
    grid-gap: 15px;
}
    .cookies-sec .btn {
        min-width: inherit;
        text-decoration: none;
        padding: 5px 15px;
    }

button.close-btn {
    background: none;
    border: none;
    color: #fff;
    stroke: #fff;
    border-radius: 50%;
    border-style: solid;
    border-width: 2px;
    box-sizing: content-box;
    cursor: pointer;
    height: 20px;
    margin: .5em;
    min-height: 20px;
    min-width: 20px;
    order: 0;
    outline: none;
    overflow: hidden;
    padding: 0;
    width: 20px;
    stroke-width: 1px;
    justify-content: center;
    line-height: normal;
    text-decoration: none;
    transform: rotate(0deg);
    transition-duration: .2s;
    transition-property: transform, color, background-color, stroke, stroke-width;
    transition-timing-function: ease-out;
    z-index: 2;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    background-color: transparent;
    border-color: transparent;
}

    button.close-btn:hover {
        transform: rotate(90deg);
        stroke-width: 2px;
        color: #ebebeb;
    }

    button.close-btn:focus {
        background-color: #fff;
        border-color: #fff;
        stroke: #131631;
    }

.cookies-sec-hidden {
    opacity: 0;
    transition-delay: 0ms,.7s;
    visibility: hidden;
}

.home-list-sec .InnerContentSec {
    padding: 0;
}
.home-list-sec .InnerContentSec h2 {
    text-align: center;
    margin-bottom: 40px;
}
.simplecontent {
    background: url(../images/x-bg-blue.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.simplecontent.green-bg {
    background: url(../images/x-bg-green.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}
.simplecontent span {
    font-style: italic;
    font-size: 18px;
    display: block;
    margin: 5px 0 0;
    font-weight: 500;
	color: #0690ca;
}
.simplecontent.green-bg span {
    color: #2cb16e;
}
.simplecontent p {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0 0;
}
.work-with-us {
    background: url(../images/Work-with-Us.jpg);
    color: #fff;
    text-align: left;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.work-with-us:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}
.work-with-us h2 {
    margin-bottom: 30px;
}
.work-with-us ul li h4 {
    font-size: 24px;
}
.work-with-us ul li p {
    font-size: 18px;
}
.work-with-us ul li {
    margin-bottom: 20px;
}
.home-list-sec {
    background: #e6fff9;
}
.home-list-sec .block-box {
    position: relative;
	margin-bottom: 150px;
}
.home-list-sec .block-box > div {
    padding: 20px;
    position: absolute;
    background:#fff;
    width: 90%;
    margin: -60px 0 0;
    left: 50%;
    transform: translate(-50% , 0);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	min-height:176px;
}
.home-list-sec .block-box > div h4 {
    font-size: 16px;
    color: var(--blue);
    text-overflow: inherit;
    white-space: normal;
    overflow: visible;
}
.home-list-sec .block-box:hover h4 {
    color: var(--green);
}
.Subscribe-form {
    background:#2a86ad;
    color: #fff;
}
.Subscribe-form .f-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #fff;
}
.Subscribe-form button.btn.btn-secondary {
    background: #fff;
    color: #0590c9;
    display:none;
}
.Subscribe-form button.contact-form {
    background: #fff;
    color: #0590c9;
    border:none;
}

.Subscribe-form a {
    color: #fff;
    text-decoration: underline;
}
.Subscribe-form p.small.text-muted {
    color: #f2f2f2 !important;
}
.Subscribe-form .modal-footer {
    border: none;
    justify-content: center;
}
.Subscribe-form .f-form select.form-control option {
    color: #000;
}
.Subscribe-form .form-check {
    padding-left: 0;
}
.Subscribe-form .form-check .form-check-input {
	margin-left: 1px;
	opacity: 0;
	margin-top: 6px;
	cursor: pointer;
	z-index: 1;
}
.home-list-sec .ContentSection {
    padding: 40px 0;
}
.form-check p {
	margin-top: 3px;
	font-size: 12px;
	line-height: 1.2;
}
.text-danger {
	font-size: 12px;
}
.footer-contact {
	padding-bottom: 20px;
}

/***********************Inner Static Page end***************************/



/*********************************Responsive Css*************************************/

@media (max-width:1279px) {
    header .mainNav li {
        padding: 24px 10px;
    }
}

@media (max-width:1199px) {
    header .logo img {
        max-width: 130px;
    }

    .nav-right .btn {
		padding: 10px 5px;
		font-size: 13px;
		min-width: inherit;
	}

    header .mainNav li {
        padding: 24px 4px;
    }

        header .mainNav li a {
            font-size: 13px;
        }

    header .nav-left {
        grid-gap: 20px;
    }

    header .mainNav li .subMenu li a h4 {
        font-size: 15px;
    }

    header .mainNav li .subMenu li a p {
        font-size: 13px;
    }
}

@media (max-width:1023px) {
    header .nav-left {
        grid-gap: 15px;
    }

    header .nav-right div {
        grid-gap: 5px;
    }

    .nav-right .btn {
        padding: 10px 5px;
    }
}

@media (max-width:991px) {

    header {
        padding: 0;
    }

        header .NavBar {
            padding: 7px 0;
        }

        header.fixed {
            position: fixed;
        }

        header .header-top-left {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

            header .header-top-left .menu-toggle {
                display: block;
                background: none;
                width: auto;
                height: 26px;
                margin: 0;
                color: var(--blue);
            }



        header ul.mainNav li.mobile-top {
            display: block;
            padding: 10px;
            position: sticky;
            top: 0;
            z-index: 1;
            background: #0e1d24;
        }

        header .mainNav .mobile-top a.logo {
            color: var(--green);
        }

            header .mainNav .mobile-top a.logo:hover {
                background: none;
            }

        header ul.mainNav li.mobile-top .m-top-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

            header ul.mainNav li.mobile-top .m-top-inner a.close {
                float: none;
                width: auto;
                opacity: 1;
                text-shadow: none;
                color: var(--blue);
            }

                header ul.mainNav li.mobile-top .m-top-inner a.close:hover {
                    background: none;
                }

        header ul.mainNav {
            float: none;
            width: 100%;
            display: block;
            position: fixed;
            top: 0;
            background: #fff;
            z-index: 99;
            max-height: 100vh;
            overflow: auto;
            min-height: 100vh;
            left: -100%;
            -moz-transition-property: all;
            -o-transition-property: all;
            -webkit-transition-property: all;
            transition-property: all;
            -moz-transition-duration: 0.3s;
            -o-transition-duration: 0.3s;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -moz-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            -o-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            -webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
        }

            header ul.mainNav + ul {
                display: none;
            }

            header ul.mainNav.active {
                left: 0;
            }

            header ul.mainNav li {
                font-size: 16px;
                display: block;
                padding: 15px 20px 0;
                position: relative;
            }

        header .mainNav li {
            padding: 15px 20px;
            margin: 0;
            height: auto;
        }

            header .mainNav li a {
                color: var(--black);
                font-size: 16px;
                font-weight: 600;
            }

        header .mainNav > li > a i.material-icons {
            display: none;
        }

        header span.submenu-icon {
            display: block;
            height: 24px;
            position: absolute;
            right: 15px;
            top: 15px;
            cursor: pointer;
            z-index: 1;
        }

        header ul.mainNav ul.subMenu {
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            transition-duration: 0.4s;
            transition-duration: 0.2s;
            display: none;
            opacity: 1;
            max-height: inherit;
            border: none;
            margin-top: 4px;
            background: none;
            top: 100%;
            height: auto;
            overflow: visible;
            padding: 0;
            z-index: 1;
        }

        header .mainNav li .subMenu li {
            width: 100%;
            display: block;
            padding: 0;
            margin-right: 0;
        }

            header .mainNav li .subMenu li a {
                color: var(--black);
                padding: 10px 12px;
                border-bottom: 1px solid #a9afb1;
            }

                header .mainNav li .subMenu li a:hover {
                    color: var(--blue);
                }

                header .mainNav li .subMenu li a p, header .mainNav li .subMenu li a span {
                    display: none;
                }

                header .mainNav li .subMenu li a h4 {
                    font-weight: 400;
                    margin: 0;
                    font-size: 15px;
                    min-height: inherit;
                }

        header .nav-left {
            width: 100%;
        }

        header .nav-right {
            display: none;
        }

        header .mainNav li.mobile-btn {
            display: block;
        }

            header .mainNav li.mobile-btn > div {
                display: flex;
                align-items: center;
                grid-gap: 15px;
                margin: 30px 0 0;
            }

            header .mainNav li.mobile-btn .btn {
                justify-content: center;
                color: var(--white);
            }

                header .mainNav li.mobile-btn .btn.btn-secondary:hover {
                    color: var(--white);
                    background: #0f88b5;
                    border-color: #0f88b5;
                }

                header .mainNav li.mobile-btn .btn.btn-primary:hover {
                    background: #11db74;
                    border-color: #11db74;
                    color: var(--white);
                }

    .main-banner h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .footer-middle .f-menu {
        margin-bottom: 30px;
    }
}

@media (max-width:800px) {

    .client-logo .owl-carousel .client-block img {
        max-width: 180px;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width:767px) {
    .ContentSection {
        padding: 40px 0;
    }
    /*.main-banner {
        margin-bottom: 0;
    }

        .main-banner video {
            height: 70vh;
        }*/

        .main-banner h1 {
            font-size: 36px;
        }

    .client-logo {
        position: static;
        padding: 30px 0;
        background: var(--blue);
        margin: -6px 0 0;
    }
.footer-logo-sec {
    margin-bottom: 20px;
    padding-bottom: 15px;
}
    .footer-top {
        padding: 20px 0;
    }

    .footer-middle {
        padding: 20px 0 0;
    }

        .footer-middle .f-text {
            margin-bottom: 30px;
        }

    .footer-bottom {
        padding: 10px 0;
    }

   

    .career-sec .block .job-details {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .career-sec h2 {
        margin-bottom: 20px;
    }

    .cookies-sec {
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 0;
        text-align: center;
        padding: 0 15px 10px;
        font-size: 12px;
    }

        .cookies-sec .btn {
            padding: 2px 15px;
            font-size: 14px;
        }
}

@media (max-width:500px) {
    .client-logo .owl-carousel .client-block img {
        max-width: 150px;
    }

    header .mainNav li.mobile-btn > div {
        display: block;
    }

    header .mainNav li.mobile-btn .btn {
        margin: 5px 0;
    }
   .footer-logo img {
        max-width: 180px;
    }
    .footer-logo-sec .social-icon {
        grid-gap: 5px;
    }
    .footer-logo-sec .social-icon li a {
        border: 1px solid #fff;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .cookies-sec .cookies-btn {
        grid-gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}



/*********************end********************/
