﻿
/******commom css******/
:root {
    --white: #ffffff;
    --black: #000;
    --graybg: #f5fafe;
    --blue: #003b78;
    --orange: #ff5a00;
}

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: 500;
    color: var(--black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

h2 {
    font-weight: 600;
    font-size: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: break-word;
    line-height: 1.4;
    margin: 0;
}

p {
    word-break: break-word;
    margin: 0;
}

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: 30px;
    font-size: 16px;
    min-width: 120px;
}

.btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    border-width: 2px;
}

    .btn-primary:hover {
        background: var(--white);
        border-color: var(--orange);
        color: var(--orange);
    }

    .btn-primary:focus, .btn-primary:active {
        box-shadow: none !IMPORTANT;
        background: var(--white);
        border-color: var(--orange);
        color: var(--orange);
    }




/**********common css**********/


/* header */

header {
    z-index: 999;
    width: 100%;
    padding: 0px 0;
    background: #fff;
    transition: all 0.2s ease-in-out 0.2s;
    /*-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: static;
}

    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: var(--white);
    }

    header .logo {
        display: flex;
        text-transform: capitalize;
        font-weight: 900;
        color: var(--orange);
        font-size: 24px;
        align-items: center;
        gap: 20px;
        margin: 0;
        line-height: 24px;
    }


        header .logo img {
            max-width: 200px;
            margin: 0;
            display: block;
        }

        header .logo span {
            display: none;
        }


.NavBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

header .mainNav {
    display: flex;
    align-items: center;
}

    header .mainNav li {
        display: block;
        list-style-type: none;
        font-size: 16px;
        padding: 0 25px;
        position: relative;
    }


        header .mainNav li a {
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            width: 100%;
            align-items: center;
            text-transform: none;
            font-size: 15px;
            background: transparent;
        }

        header .mainNav li .btn {
            background: var(--orange);
            color: var(--white);
            text-align: center;
            justify-content: center;
        }




        header .mainNav li a:hover {
            color: var(--orange);
        }

        header .mainNav li.active a {
            color: var(--orange);
        }

        header .mainNav li .btn:hover {
            background: var(--white);
            color: var(--orange);
        }

        header .mainNav li .subMenu {
            -webkit-transition: all 0.6s;
            -moz-transition: all 0.6s;
            -ms-transition: all 0.6s;
            -o-transition: all 0.6s;
            transition: all 0.6s;
            max-height: 0;
            display: block;
            overflow: hidden;
            padding: 0;
            opacity: 0;
            position: absolute;
            background: #ffffff;
            min-width: 230px;
            border: 1px solid #eee;
            top: 100%;
            z-index: 9;
        }

            header .mainNav li .subMenu li {
                width: 100%;
                display: inline-block;
                padding: 0;
                margin: 0;
                height: inherit;
            }


                header .mainNav li .subMenu li a {
                    padding: 8px 15px;
                    border-radius: 0;
                }

                    header .mainNav li .subMenu li a:hover {
                        background: var(--orange);
                        color: #ffffff;
                    }

        header .mainNav li:hover .subMenu {
            max-height: 400px;
            opacity: 1;
            min-width: 230px;
            top: 100%;
            overflow-y: auto;
        }





header .header-top-left .menu-toggle {
    display: none;
}

header .mainNav li.mobile-top {
    display: none;
}

header span.submenu-icon {
    display: none;
}



/******header end********/



/**********footer start**************/
.Footer {
    background: #010914;
    color: var(--white);
    padding: 60px 0 0;
}


.footer-sec h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
    font-family: Poppins, sans-serif;
}

.footer-sec p {
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}

.footer-sec > p {
    padding-left: 0;
    margin: 8px 0 0;
}

.footer-sec ul {
    display: flex;
    flex-wrap: wrap;
}

    .footer-sec ul li {
        width: 50%;
    }

.footer-sec a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.footer-sec .address p {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}



.footer-sec .address a i {
    background: var(--orange);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-sec .f-logo {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 15px;
    display: block;
}

    .footer-sec .f-logo img {
        max-width: 200px;
    }

.footer-sec .social-icon {
    display: flex;
    grid-gap: 10px;
    margin-top: 20px;
}

    .footer-sec .social-icon a {
        color: var(--white);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

.copyright {
    background: #d5d5d5;
    position: relative;
    margin-top: 50px;
}

.copyright-inner {
    display: flex;
    align-items: center;
    padding: 15px 0;
    justify-content: space-between;
    margin-top: 25px;
}

    .copyright-inner p {
        font-size: 12px;
        color: var(--black);
        font-weight: 400;
    }

        .copyright-inner p a {
            color: var(--black);
        }

    .copyright-inner ul {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .copyright-inner ul li a {
            color: var(--white);
            font-weight: 400;
        }

        .copyright-inner ul li a {
            color: var(--white);
            font-weight: 500;
            border: 2px solid var(--white);
            width: 40px;
            height: 40px;
            display: flex;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

            .copyright-inner ul li a:hover {
                color: var(--orange);
            }

/************ footer end****************/



/***************** fixed icons ****************/

.scrollTop {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 10px;
    background-color: var(--orange);
    padding: 6px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 0 7px rgba(0,0,0,0.5);
}

#stop.scrollTop img {
    margin-bottom: 7px;
    max-width: 20px;
}

.mobile-icon-btn {
    position: fixed;
    bottom: 56px;
    right: 20px;
    z-index: 8;
}

    .mobile-icon-btn img {
        aspect-ratio: 1/1;
    }


/********************fixed icons*************************/




/********************** content css start****************************/

.main-banner {
    background: var(--blue);
    position: relative;
    padding: 150px 0 220px;
}

    .main-banner:after {
        background: url(../images/banner-right.png) no-repeat;
        content: "";
        background-size: 100%;
        width: 500px;
        height: 540px;
        position: absolute;
        right: 100px;
        bottom: 0;
    }

    .main-banner h1 {
        color: var(--white);
        margin: 0 0 20px;
        font-size: 40px;
        text-align: left;
        font-weight: 600;
    }



    .main-banner p {
        color: var(--white);
        margin: 20px 0 30px;
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
    }

    .main-banner .banner-content {
        position: relative;
        z-index: 1;
    }


.ContentSection {
    padding: 80px 0;
    overflow: hidden;
}

.about-sec {
    background: var(--graybg);
}


    .about-sec h2 {
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: 600;
        color: var(--black);
    }

    .about-sec img {
        border-radius: 10px;
    }

    .about-sec .about-content > span {
        font-weight: 600;
        color: var(--orange);
        display: block;
        margin-bottom: 20px;
    }

    .about-sec p {
        font-weight: 400;
        margin-bottom: 30px;
    }

    .about-sec ul {
        margin-bottom: 40px;
    }

        .about-sec ul li {
            width: 100%;
            font-weight: 500;
            position: relative;
            padding-left: 40px;
            margin-bottom: 20px;
        }

            .about-sec ul li:before {
                background: url(../images/tick.png) no-repeat;
                content: "";
                width: 24px;
                height: 24px;
                position: absolute;
                left: 0;
                top: -3px;
            }


.testimonial {
    background: url(../images/testimonials-banner.png) no-repeat;
    background-size: cover;
}

    .testimonial h2 {
        margin-bottom: 40px;
        color: var(--white);
    }

    .testimonial .owl-carousel {
        padding: 0 70px;
    }


.testimonialBlock {
    background: var(--white);
    padding: 35px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border-radius: 10px;
}

    .testimonialBlock .top {
        display: flex;
        align-items: flex-start;
        grid-gap: 30px;
    }

    .testimonialBlock img {
        max-width: 60px;
    }

    .testimonialBlock .bottom {
        display: flex;
        align-items: center;
        grid-gap: 30px;
        justify-content: space-between;
        padding-left: 90px;
        margin-top: 20px;
    }

        .testimonialBlock .bottom ul {
            display: flex;
            align-items: center;
            grid-gap: 5px;
        }

            .testimonialBlock .bottom ul li a {
                color: #fabf01;
                font-size: 18px;
            }

    .testimonialBlock h6 {
        font-weight: 600;
        margin: 0;
        font-size: 16px;
    }

    .testimonialBlock p {
        line-height: 24px;
        margin: 0 0 15px;
    }

.key-features {
    margin-top: -150px;
    position: relative;
}

    .key-features:before {
        content: "";
        background: var(--graybg);
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
    }

.key-features-inner {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 50px 20px;
    position: relative;
    margin-top: -150px;
}

    .key-features-inner h2 {
        margin-bottom: 30px;
    }

    .key-features-inner .features-block {
        display: flex;
        justify-content: center;
    }

.features-block .features-box {
    text-align: center;
    border-right: 2px solid var(--orange);
    padding: 0 15px;
    max-width: 200px;
}

    .features-block .features-box:last-child {
        border-right: none;
    }

    .features-block .features-box img {
        max-width: 70px;
    }

    .features-block .features-box h6 {
        font-size: 15px;
        font-weight: 600;
        margin: 20px auto 0;
    }

.our-service {
    background: var(--graybg);
}

    .our-service h2 {
        margin-bottom: 20px;
    }

    .our-service .col-lg-10 p {
        margin-bottom: 40px;
    }

.service-block {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 30px 20px;
    text-align: center;
}

    .service-block img {
        max-width: 100px;
    }

    .service-block h4 {
        font-weight: 600;
        font-size: 22px;
        margin: 10px 0;
    }

    .service-block p {
        margin: 0 0 20px;
    }

.textContent h2 {
    margin-bottom: 30px;
}

.textContent p {
    margin-bottom: 20px;
}

.board-content {
    background: var(--graybg);
}

    .board-content h2 {
        margin-bottom: 30px;
    }

    .board-content .col-lg-10 p {
        margin-bottom: 30px;
    }

    .board-content .board-block {
        background: var(--white);
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        margin: 15px 0;
    }

        .board-content .board-block img {
            max-width: 85px;
        }

        .board-content .board-block h5 {
            color: var(--blue);
            font-size: 18px;
            font-weight: 600;
            margin: 15px 0;
        }

.board-block .mode-sec {
    display: flex;
    padding: 5px 0;
}

    .board-block .mode-sec > div {
        width: 50%;
        text-align: left;
    }

.board-content .board-block .mode-sec img {
    max-width: 21px;
    margin-right: 5px;
}

.board-content .board-block .mode-sec span {
    font-size: 13px;
}

.board-content .board-block > a {
    margin-top: 20px;
}

.board-content.white-bg {
    background: var(--white);
}

    .board-content.white-bg .board-block {
        background: var(--graybg);
    }

.board-bg-content {
    background: url(../images/poly-exams-banner.png) no-repeat;
    background-size: cover;
    color: #fff;
}

    .board-bg-content ul li {
        background: url(../images/polytechnic-icon.png) no-repeat;
        color: var(--black);
        text-align: left;
        padding: 5px 0 5px 30px;
        background-position: 0 3px;
    }

.video-sec {
    background: url(../images/videos-banner.png) no-repeat;
    background-size: cover;
    color: #fff;
}

    .video-sec h2 {
        margin-bottom: 30px;
    }

.video-block img, .video-block iframe {
    border-radius: 10px;
    margin-bottom: 20px;
    max-height: 235px;
}

.owl-nav {
    position: absolute;
    top: 40%;
    transform: translate(0, -40%);
    width: 100%;
    left: 0;
}

    .owl-nav button {
        border: 2px solid var(--orange);
        color: var(--orange);
        width: 40px;
        height: 40px;
    }

        .owl-nav button.owl-next {
            float: right;
        }

    .owl-nav button {
        border: 2px solid var(--orange) !important;
        color: var(--orange) !IMPORTANT;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 44px !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

        .owl-nav button:hover {
            background: var(--orange) !important;
            color: var(--white) !IMPORTANT;
        }


.supportsec h2 {
    margin-bottom: 50px;
}

.supportsec .accordion .card {
    border: none;
    border-radius: 0;
}

    .supportsec .accordion .card .card-header {
        padding: 0;
        background: none;
    }

        .supportsec .accordion .card .card-header button {
            position: relative;
            white-space: normal;
        }

            .supportsec .accordion .card .card-header button.btn-link, .supportsec .accordion .card .card-header button.btn-link.collapsed {
                padding: 12px 40px 12px 20px;
                border-radius: 0;
                color: #000;
                font-weight: 500;
                font-size: 18px;
                background: none;
                border: 1px solid var(--blue);
            }

            .supportsec .accordion .card .card-header button.btn-link {
                background: var(--graybg);
            }

            .supportsec .accordion .card .card-header button:hover, .supportsec .accordion .card .card-header button:focus {
                text-decoration: none;
                outline: none;
                box-shadow: none;
            }

            .supportsec .accordion .card .card-header button:after {
                flex-shrink: 0;
                width: 24px;
                height: 24px;
                margin-left: auto;
                content: "";
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
                background-repeat: no-repeat;
                background-size: 1.25rem;
                transition: transform 0.2s ease-in-out;
                position: absolute;
                right: 15px;
                top: 21px;
            }

            .supportsec .accordion .card .card-header button:not(.collapsed)::after {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
                transform: rotate(-180deg);
                right: 20px;
            }

    .supportsec .accordion .card .card-body {
        background: var(--graybg);
        padding: 30px 20px;
        border: 1px solid var(--blue);
        border-top: none;
        margin-top: -1px;
    }

.g-review-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 50px;
}

.g-review-text h4 {
    font-weight: 600;
    font-size: 22px;
    margin: 0 0 15px;
}

.contact-form-sec .form-group .error {
    font-size: 12px;
    color: red;
    font-weight: 300;
    margin: 3px 0 0;
}

.g-review-text a {
    border: 2px solid var(--orange);
    display: flex;
    border-radius: 40px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
}

    .g-review-text a img {
        max-width: 100px;
    }

    .g-review-text a i {
        color: var(--orange);
        font-size: 24px;
    }




/**************************content css end***********************************/


/********************Popup Css start************************/

.contact-popup {
}

    .contact-popup .modal-dialog {
        max-width: 800px;
    }

    .contact-popup .modal-content {
        border-radius: 20px;
        overflow: hidden;
        border: none;
    }

    .contact-popup .modal-header {
        border: none;
        padding: 0;
    }

        .contact-popup .modal-header button.close {
            position: absolute;
            right: 15px;
            padding: 0;
            margin: 0;
            z-index: 999;
            box-shadow: none;
            text-shadow: none;
            color: #fff;
            opacity: 1 !important;
            font-weight: 400;
            top: 15px;
            font-size: 36px;
        }

    .contact-popup .modal-body {
        padding: 0;
    }

.contact-popup-inner {
    display: flex;
}

    .contact-popup-inner .contact-popup-left {
        width: 60%;
        padding: 25px;
        box-sizing: border-box;
    }

    .contact-popup-inner .contact-popup-right {
        width: 40%;
    }

        .contact-popup-inner .contact-popup-right img {
            width: 100%;
            object-fit: cover;
        }

    .contact-popup-inner .contact-popup-left h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

.contact-form-sec .form-group {
    margin-bottom: 10px;
}

    .contact-form-sec .form-group label {
        display: block;
        margin: 0 0 3px;
        font-size: 14px;
    }

        .contact-form-sec .form-group label em {
            color: red;
        }

    .contact-form-sec .form-group .form-control {
        background: #f5f5f5;
        border: 1px solid #dcdcdc;
        min-height: 40px;
        font-size: 14px;
        border-radius: 5px;
    }

    .contact-form-sec .form-group textarea.form-control {
        min-height: 80px;
    }

.contact-tele-sec {
    display: flex;
}

    .contact-tele-sec.no-flex, .contact-tele-sec .wapp-number-sec {
        display: block;
    }

.uploadHelp {
    color: var(--blue);
    margin-top: 5px !important;
    display: block;
}

.contact-tele-sec .form-control.country-code {
    width: 100px !important;
    margin-right: 10px;
    padding: .375rem 5px;
}

/********************Popup Css end************************/




/*********************************Responsive Css*************************************/
@media (max-width:1199px) {
    header .mainNav li {
        padding: 0 10px;
    }

        header .mainNav li a {
            font-size: 15px;
        }

    header .logo {
        font-size: 16px;
    }

    .about-content h3 {
        font-size: 36px;
    }

    .contact-info-inner > div {
        padding: 0 15px;
    }

    .team-1 .owl-carousel .owl-nav {
        width: 100%;
        left: 0;
    }

    .testimonial .owl-carousel .owl-nav {
        width: 100%;
        left: 0;
    }

    .board-content .board-block {
        padding: 30px 20px;
    }
}

@media (max-width:1024px) {
    .main-banner:after {
        width: 450px;
        height: 500px;
        position: absolute;
        right: 50px;
        bottom: 0;
    }
}

@media (max-width:991px) {

    header {
        padding: 0;
    }

        header .NavBar {
            padding: 10px 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(--orange);
            }

        header.fixed .header-top-left .menu-toggle {
            color: var(--orange);
        }

        header ul.mainNav li.mobile-top {
            display: block;
            padding: 10px;
            position: sticky;
            top: 0;
            z-index: 1;
            background: #fff;
        }

        header .mainNav .mobile-top a.logo {
            color: var(--orange);
        }

            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(--orange);
            }

                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;
            }

        header .mainNav li {
            padding: 15px 20px;
            margin: 0;
            height: auto;
        }

            header .mainNav li a {
                color: #000;
            }

        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;
            overflow: visible;
            opacity: 1;
            max-height: inherit;
            border: none;
            margin-top: 10px;
        }

        header ul.mainNav + ul.mainNav {
            display: none;
        }

        header .mainNav li:before {
            display: none;
        }

    .main-banner h1 {
        font-size: 38px;
    }

    .about-inner-content {
        margin-top: 30px;
    }

    .about-img img {
        margin: 0 auto;
        display: block;
    }

    .copyright .copyright-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .main-banner .banner-content {
        padding: 0;
        z-index: 1;
        position: relative;
    }

        .main-banner .banner-content h1 {
            font-size: 40px;
        }

    .what-we-provide-inner .box span {
        padding: 25px 10px;
        min-width: 130px;
    }

    .what-we-provide-inner .box img {
        max-height: 70px;
    }

    .main-banner .banner-inner .banner-content .shape-img {
        display: none;
    }

    .recent-articles .article-block {
        margin-bottom: 20px;
    }

    .contact-info-inner {
        flex-wrap: wrap;
        grid-gap: 10px;
    }

        .contact-info-inner > div:first-child {
            border-right: none;
        }

    .team-1 .owl-carousel .owl-nav {
        width: 100%;
        left: 0;
    }

    .footer-sec .address a {
        grid-gap: 5px;
        font-size: 14px;
    }

        .footer-sec .address a i {
            justify-content: center;
            font-size: 12px;
            min-width: 25px;
        }

    .our-timing-inner {
        align-items: inherit;
    }

    .timing-content {
        padding: 25px;
    }

    .our-timing-img img {
        height: 100%;
        object-fit: cover;
    }

    .what-we-provide-inner .box {
        flex-wrap: wrap;
        min-width: 180px;
        margin: 0 5px;
    }

    .main-banner {
        padding: 100px 0 200px;
    }

        .main-banner .banner-inner .banner-content {
            position: relative;
            z-index: 1;
        }

    .about-sec {
        background-size: 50% 50%;
    }

        .about-sec ul li {
            width: 100%;
            margin-bottom: 20px;
        }

    .key-features-inner .features-block {
        flex-wrap: wrap;
        grid-gap: 20px;
    }
}


@media (max-width:767px) {
    .about-img {
        margin-bottom: 30px;
    }

    .key-features:before {
        display: none;
    }



    .footer-sec {
        margin-bottom: 20px;
    }

    .copyright {
        margin-top: 0;
    }

        .copyright:before {
            display: none;
        }


    .main-banner:after {
        display: none;
    }



    .main-banner {
        padding: 80px 0 60px;
    }



    .about-content {
        margin: 20px 0;
    }

    .key-features {
        margin: 40px 0;
    }

    .key-features-inner {
        margin-top: 0;
    }

    .features-block .features-box {
        padding: 15px;
        max-width: 100%;
        width: 100%;
        border: none;
    }

    .service-block {
        margin: 15px 0;
    }

    .ContentSection {
        padding: 40px 0;
    }

    .testimonialBlock .top {
        display: block;
    }

    .testimonialBlock img {
        margin-bottom: 10px;
    }

    .testimonialBlock .bottom {
        padding-left: 0;
    }

    .testimonial .owl-carousel {
        padding: 0;
    }

    .contact-popup .modal-dialog {
        max-width: 95%;
    }

    .contact-popup-inner {
        flex-wrap: wrap-reverse;
    }

        .contact-popup-inner .contact-popup-right {
            width: 100%;
            display: none;
        }

        .contact-popup-inner .contact-popup-left {
            width: 100%;
        }

    .contact-popup .modal-header button.close {
        right: 10px;
        top: 10px;
        font-size: 24px;
        color: #000;
    }
}

/********end*********/
.inner-banner {
    background: var(--orange);
    position: relative;
    padding: 70px 0;
}

    .inner-banner:after {
        display: none;
    }

    .inner-banner h1 {
        font-weight: 700;
        font-size: 46px;
        margin: 0;
    }

    .inner-banner h4 {
        color: var(--white);
        font-weight: 600;
        font-size: 28px;
    }

.why-tech .board-block h5 {
    color: var(--black);
    min-height: 51px;
}

.why-tech .board-block p {
    min-height: 147px;
}

.how-it-works-block {
    background: var(--graybg);
    border: 1px solid var(--orange);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    margin: 20px 0 80px;
}

    .how-it-works-block:after {
        content: "";
        background: url(../images/arrow.png) no-repeat;
        width: 42px;
        height: 46px;
        display: block;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
        bottom: -64px;
    }

    .how-it-works-block > div {
        display: flex;
        grid-gap: 10px;
        margin-bottom: 15px;
    }

        .how-it-works-block > div span {
            color: var(--white);
            background: var(--orange);
            width: 35px;
            height: 35px;
            min-width: 35px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .how-it-works-block > div h4 {
            font-size: 20px;
            font-weight: 600;
            margin: 5px 0 0;
        }

    .how-it-works-block:last-child {
        margin-bottom: 0;
    }

        .how-it-works-block:last-child:after {
            display: none;
        }

.apply-bg-content {
    background: url(../images/apply-now-banner.jpg) no-repeat;
    background-size: cover;
    color: #fff;
}

.contact-popup-inner.paymentPopup {
    justify-content: center;
}