.headerWrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    padding: 10px 0;
    padding-top: 0 !important;
    transition: all 0.5s;

    .headerInner {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .logoWrap {
            width: 90px;
            height: auto;

            a {
                display: block;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
        }
    }

    .rightWrap {
        display: flex;
        align-items: center;
    }

    .menuWrap {
        >ul {
            display: flex;

            >li {
                margin-right: 25px;
                display: flex;
                align-items: center;
                position: relative;

                &::after {
                    content: "";
                    position: absolute;
                    bottom: 12px;
                    left: 0;
                    width: 0;
                    height: 2px;
                    background-color: #3DC718;
                    transition: .4s;
                }

                >a {
                    display: block;
                    line-height: 50px;
                    font-size: 18px;
                }

                .toggleBtn {
                    font-size: 10px;
                    margin-left: 6px;
                }

                &.megaNav {
                    position: relative;


                    .megaMenuWrap {
                        position: absolute;
                        top: 100%;
                        right: -624px;
                        min-width: 1440px;
                        margin: 0 auto;
                        padding: 0 24px;
                        background-color: #fff;
                        padding: 40px 30px;
                        border-radius: 15px;
                        transform: translateY(50px);
                        visibility: hidden;
                        opacity: 0;
                        transition: .4s;
                        box-shadow: 0px 0px 40px #00000020;

                        .mega-inner {
                            justify-content: center;
                            display: grid;
                            grid-template-columns: repeat(6, 1fr);
                            gap: 0;

                            .mega-col {
                                /* width: calc(16% - 20px); */
                                padding: 0 12px;

                                .mega-col-box {
                                    height: 100%;

                                    .mega-col-title {
                                        color: #048FEA;
                                        font-size: 16px;
                                        font-weight: 700;
                                        padding-bottom: 14px;
                                        border-bottom: 1px solid #00000025;
                                        display: block;
                                    }

                                    ul {
                                        flex-direction: column;
                                        margin-top: 8px;
                                        height: calc(100% - 40px);


                                        li {
                                            position: relative;
                                            transition: .4s;

                                            &:not(:last-child) {
                                                margin-bottom: 18px;
                                            }

                                            &::before {
                                                content: "";
                                                position: absolute;
                                                top: 7px;
                                                left: 0;
                                                width: 0;
                                                height: 1px;
                                                background-color: #000000;
                                                transition: .4s;
                                            }

                                            a {
                                                font-size: 14px;
                                            }

                                            &:hover {
                                                padding-left: 35px;

                                                &::before {
                                                    width: 30px;
                                                    border-radius: 0;
                                                    height: 1px;
                                                }

                                                a {
                                                    color: #048FEA;
                                                }
                                            }
                                        }
                                    }
                                }

                                &:not(:last-child) {
                                    .mega-col-box {
                                        ul {
                                            position: relative;

                                            &::after {
                                                content: "";
                                                position: absolute;
                                                top: 0;
                                                right: -12px;
                                                width: 1px;
                                                height: 100%;
                                                background-color: #00000025;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                &.has_sub_menu {
                    position: relative;

                    >ul {
                        position: absolute;
                        top: 100%;
                        left: 0;
                        min-width: 250px;
                        background-color: #fff;
                        border-radius: 12px;
                        padding: 16px 14px;
                        transform: translateY(50px);
                        transition: .4s;
                        visibility: hidden;
                        opacity: 0;
                        box-shadow: 0px 0px 40px #00000020;


                        >li {
                            position: relative;
                            padding-left: 14px;
                            transition: .4s;

                            &:not(:last-child) {
                                margin-bottom: 14px;
                            }

                            &::before {
                                content: "";
                                position: absolute;
                                top: 3px;
                                left: 0;
                                width: 6px;
                                height: 6px;
                                border-radius: 50%;
                                background-color: #000000;
                                transition: .4s;
                            }

                            >a {
                                font-size: 14px;
                                transition: .4s;
                                display: block;
                            }

                            &:hover {
                                padding-left: 24px;

                                &::before {
                                    width: 18px;
                                    height: 1px;
                                    top: 7px;
                                    border-radius: unset;
                                }

                                >a {
                                    color: #048FEA;
                                }
                            }
                        }
                    }
                }

                &:hover {
                    &.active {
                        &::after {
                            width: 40px;
                        }
                    }

                    &::after {
                        width: 40px;
                    }

                    &.has_sub_menu {
                        >ul {
                            transform: translateY(0);
                            visibility: visible;
                            opacity: 1;
                        }
                    }

                    &.megaNav {
                        .megaMenuWrap {
                            transform: translateY(0);
                            visibility: visible;
                            opacity: 1;
                        }
                    }
                }
            }
        }
    }

    .headerSrch {
        .srchBtn {
            display: flex;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
            background-color: #fff;
            padding: 10px;
            border-radius: 50%;
            transition: 0.5s;
            cursor: pointer;

            &:hover {
                background-color: var(--blue);
            }

            img {
                width: 100%;
            }
        }
    }

    &.isSticky {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
        padding: 6px 0;
        z-index: 9;

        .headerInner {
            .logoWrap {
                width: 60px;
            }
        }

        .menuWrap {
            &>ul {
                &>li {
                    >a {
                        line-height: 35px;
                        font-size: 15px;
                    }

                    &::after {
                        bottom: 5px;
                    }
                }
            }
        }
    }
}

.side_menu {
    display: none;
}

.ResFixedMenu {
    display: none;
}


/*===page_about header start===*/
/*===page_about header start===*/
.page_about {
    &.headerWrap {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);

        .menuWrap {
            >ul {
                >li {
                    >a {
                        color: #1a1a1a;

                        &:hover {
                            color: var(--blue);
                        }
                    }

                    &.is-active {
                        >a {
                            color: var(--blue);
                        }
                    }
                }
            }
        }
    }
}

/*===page_about header end===*/
.headerWrap {
    .menuWrap {
        &>ul {
            &>li {
                &.has_sub_menu {
                    &>ul {
                        >li {
                            &.menuCol_icnBx {
                                padding-left: 0;
                            }
                        }
                    }
                }
            }
        }
    }
}

.menuCol_icnBx {
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 0;

    &::before {
        display: none;
    }

    .menuColIcon {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        padding: 10px;
        background-color: #e9f2fc;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) saturate(100%) invert(32%) sepia(20%) saturate(5793%) hue-rotate(196deg) brightness(91%) contrast(105%);
        }
    }

    a {
        width: calc(100% - 46px);
        padding-left: 10px;
    }
}

/* start responsive */
@media(max-width: 1680px) {
    .headerWrap {
        .menuWrap {
            >ul {
                >li {
                    &.megaNav {
                        .megaMenuWrap {
                            right: -700px;
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 1600px) {
    .headerWrap {
        .menuWrap {
            >ul {
                >li {
                    &.megaNav {
                        .megaMenuWrap {
                            min-width: 1320px;
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 1440px) {
    .headerWrap {
        .logoWrap {
            a {
                img {
                    width: 78px;
                }
            }
        }

        .menuWrap {
            >ul {
                >li {
                    >a {
                        font-size: 16px;
                    }

                    &.megaNav {
                        .megaMenuWrap {
                            min-width: 1260px;
                            right: -670px;
                            padding: 30px 22px;

                            .mega-inner {
                                .mega-col {
                                    .mega-col-box {
                                        .mega-col-title {
                                            padding-bottom: 10px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        .headerSrch {
            .srchBtn {
                width: 30px;
                height: 30px;
                padding: 8px;
            }
        }
    }
}

@media(max-width: 1366px) {
    .headerWrap {
        .logoWrap {
            a {
                img {
                    width: 67px;
                }
            }
        }

        .menuWrap {
            >ul {
                >li {
                    >a {
                        font-size: 14px;
                    }

                    .toggleBtn {
                        font-size: 11px;
                    }

                    &.megaNav {
                        .megaMenuWrap {
                            min-width: 1160px;
                            right: -600px;
                            padding: 24px 20px;

                            .mega-inner {
                                .mega-col {
                                    .mega-col-box {
                                        .mega-col-title {
                                            padding-bottom: 7px;
                                            font-size: 14px;
                                        }

                                        ul {
                                            li {
                                                &:not(:last-child) {
                                                    margin-bottom: 8px;
                                                }

                                                a {
                                                    font-size: 13px;
                                                }

                                                &:hover {
                                                    padding-left: 25px;

                                                    &::before {
                                                        width: 20px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 1280px) {
    .headerWrap {
        .menuWrap {
            >ul {
                >li {
                    &.megaNav {
                        .megaMenuWrap {
                            min-width: 1080px;
                            padding: 20px 16px;
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 1199px) {
    .side_menu {
        display: block;
    }

    .headerWrap {
        .menuWrap {
            display: none;

            >ul {
                >li {
                    &.megaNav {
                        .megaMenuWrap {
                            min-width: 1000px;
                        }
                    }
                }
            }
        }

    }

    .menuTrigger {
        padding: 6px;
        position: relative;
        cursor: pointer;
        float: left;
        transition: all 0.5s;
        background-color: #fff;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;

        .toggle-bar {
            width: 14px;
            margin: 3px 0;
            position: relative;
            border-top: 2px solid #000000;
            display: block;
            transition: all 0.5s;

            &::before {
                content: "";
                display: block;
                background: #000000;
                height: 2px;
                width: 14px;
                position: absolute;
                top: -7px;
                transition: all 0.5s;
            }

            &::after {
                content: "";
                display: block;
                background: #000000;
                height: 2px;
                width: 14px;
                position: absolute;
                top: 3px;
                transition: all 0.5s;
            }
        }
    }

    .headerWrap {
        .menuTrigger {
            width: 40px;
            height: 40px;
        }
    }

    .overflowPage {
        &.sideOverlay {
            position: fixed;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(10px);
            top: 0;
            left: 0;
            opacity: 1;
            visibility: visible;
            z-index: 100;
            background-color: #ffffff63;
            transition: 0.5s;
        }
    }

    .side_menu {
        display: block;
        clip-path: polygon(0 0, 100% 0, 74% 100%, 0% 100%);
        padding: 14px 0;
        left: -100%;
        z-index: 999999999;
        top: 0;
        position: fixed;
        background-color: #0d1240;
        backdrop-filter: blur(10px);
        width: 500px;
        height: 100%;
        transition: 0.5s;

        &.active {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            left: 0;
        }

        .sideMenuTop {
            padding: 0 16px 16px;
            display: flex;
            align-items: center;
            position: relative;
            justify-content: space-between;
            align-items: flex-start;

            .sideLogo {
                width: 70px;
                height: auto;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            .closeIcon {
                cursor: pointer;
                color: #fff;
                font-size: 18px;
                transition: 0.5s;
            }
        }

        .sidebar_lst {
            width: 100%;
            overflow-y: auto;
            max-height: calc(100dvh - 110px);
            border-top: 1px solid #fff;

            ul {
                li {
                    position: relative;

                    &:not(:last-child) {
                        a {
                            border-bottom: 1px solid #ffffff63;
                        }
                    }

                    a {
                        font-size: 16px;
                        color: #fff;
                        padding: 10px 16px;
                        display: block;
                        width: 100%;
                    }

                    .toggleArrow {
                        position: absolute;
                        top: 10px;
                        right: 10px;
                        color: #fff;
                        font-size: 14px;
                        transition: .4s;
                    }

                    &.haschild {
                        a {
                            position: relative;

                            &::before {
                                content: "";
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 0;
                                height: 100%;
                                background-color: #e4f4ff3b;
                                transition: .4s;
                            }
                        }

                        ul {
                            display: none;
                            padding: 10px;
                            border-bottom: 1px solid #ffffff63;

                            li {
                                position: relative;

                                &:not(:last-child) {
                                    margin-bottom: 5px;
                                    border-bottom: unset;
                                }

                                a {
                                    color: #000000;
                                    background-color: #f8fbff;
                                    border-radius: 5px;
                                }

                                .toggleArrow {
                                    color: #000000;
                                }

                                &.haschild {
                                    ul {}
                                }
                            }
                        }

                        &.current {

                            a {
                                &::before {
                                    width: 100%;
                                }
                            }

                            .toggleArrow {
                                transform: rotate(180deg);
                            }

                            ul {
                                li {
                                    .toggleArrow {
                                        transform: rotate(0deg);
                                    }

                                    &.current {
                                        background-color: #fff;
                                        border-radius: 10px;
                                        border-color: transparent;

                                        .toggleArrow {
                                            transform: rotate(180deg);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            ul {
                &.contLst {
                    display: flex;
                    align-items: center;
                    margin-top: 40px;
                    padding: 0 0 0 14px;
                    gap: 10px;

                    li {
                        a {
                            width: 36px;
                            height: 36px;
                            min-width: 36px;
                            border-radius: 50%;
                            background-color: var(--blue);
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            color: #fff;
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 1024px) {}

@media(max-width: 575px) {
    .headerWrap {
        .headerInner {
            .logoWrap {
                width: 70px;
            }

        }

        .menuTrigger {
            display: none;
        }

    }

    .ResFixedMenu {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        /* background-image: linear-gradient(to right, #048FEA, #282C75); */
        background: linear-gradient(90deg, rgba(4, 143, 234, 1) 0%, rgba(40, 44, 117, 1) 50%, rgba(4, 143, 234, 1) 100%);
        box-shadow: 0 0 40px #282c7538;
        backdrop-filter: blur(15px);
        width: 100%;
        height: 60px;
        z-index: 99;
        border-radius: 30px 30px 0 0;
        padding: 12px 26px;

        .mob-bottomBar {
            display: flex;
            justify-content: space-between;
            width: 100%;
            height: 100%;
            align-items: center;

            a {
                span {
                    display: inline-block;
                    width: 34px;
                    height: 34px;
                    border-radius: 50%;
                    color: #000000;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background-color: #fff;
                    font-size: 14px;

                    &.toggle-bar {
                        width: 14px;
                        height: auto;
                    }
                }

                &.mMail {
                    span {
                        font-size: 18px;
                    }
                }
            }
        }
    }

    .side_menu {
        left: auto;
        clip-path: none;
        width: 100%;
        height: 90%;
        right: auto;
        bottom: 0;
        top: auto;
        transform: translate(0, 100%);
        border-radius: 50px 50px 0 0;

        &.active {
            transform: translate(0, 0);
            clip-path: none;
            left: auto;
            border-radius: 10px 10px 0 0;
        }

        .sidebar_lst {
            max-height: calc(90vh - 110px);

            ul {
                &.contLst {
                    display: none;
                }
            }
        }
    }
}