/* header */

.header {
    width: 100%;
    height: 88px;
    padding: 12px 0px;
    transition: all 0.5s;
    position: relative;
    z-index: 2;
    background: #fef3e9;
    transition: all 0.5s;

    .logo_wrap {
        width: 110px;
        height: auto;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .rightHead {
        .dwnload {
            width: 45px;
            height: 45px;
            padding: 5px;
            border-radius: 50%;
            background-color: #0057A2;
            display: flex;
            justify-content: center;
            align-items: center;

            img {
                filter: brightness(0) invert(1);
            }

            &:hover{
                background-color: #f58220;
            }
        }

        .menu_btn_area {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;

            .hamburger {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                font-size: 25px;
                color: #fff !important;
                background-color: #0057A2;

                .span {
                    width: 5px;
                    height: 5px;
                    display: block;
                    transition: 0.3s;
                    overflow: hidden;
                    border-radius: 50%;
                    margin-bottom: 4px;
                    position: relative;
                    background-color: #00a74e;

                    &:last-child {
                        margin: 0;
                    }
                }

            }
            &:hover{
                .hamburger {
                    background-color: #f58220;
                }
            }

            &.menu-toggle.active {
                .span:nth-child(1) {
                    border-radius: 0;
                    width: 22px;
                    padding: 0;
                    top: 11px;
                    transform: rotate(45deg);
                }

                .span:nth-child(2) {
                    opacity: 0;
                    visibility: hidden;
                }

                .span:nth-child(3) {
                    border-radius: 0;
                    width: 22px;
                    padding: 0;
                    top: -7px;
                    transform: rotate(-45deg);
                }
            }
        }
    }
}

/* sticky header */
.is-sticky {
    .header {
        height: 51px;
        position: fixed;
        box-shadow: 0px -3px 18px 1px rgba(0, 0, 0, 0.3);
        animation: slideDown 0.35s ease-out;
        z-index: 90;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        padding: 5px 0px;
    }
    .logo_wrap {
        width: 70px;
    }
    .mid_head {
        .reportTitle {
            strong {
                font-size: 18px !important;
            }
        }
    }
    .rightHead {
        .dwnload {
            width: 35px;
            height: 35px;
            margin-right: 15px !important;
        }

        .menu_btn_area {
            width: 35px;
            height: 35px;

            .hamburger {
                font-size: 20px;
            }
        }
    }
}

.sideMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 500px;
    height: 120%;
    z-index: 3;
    /* background-color: #000000; */
    background-color: #001f39;
    box-shadow: 0px 0px 5px 0px #0da752;
    transition: 0.5s;
    z-index: 99;
    height: calc(100vh - 0px);
    overflow-y: auto;
    overflow-x: hidden;
    .menuClose {
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
        z-index: 2;
        span {
            font-size: 40px;
            color: #fff;
        }
    }
    .sideMenuWrap {
        .menuItem {
            border-bottom: 1px solid #ffffff57;
            padding: 25px 15px;
            &.linkMenu {
                a {
                    color: #fff;
                    font-size: 24px;
                }
            }
            h4 {
                color: #fff;
                font-size: 24px !important;
                cursor: pointer;
                position: relative;

                &::after {
                    content: "\f061";
                    position: absolute;
                    top: 4px;
                    font-size: 18px;
                    color: #fff;
                    font-family: "FontAwesome";
                    right: 15px;
                }
            }
        }
    }
    .logoWrap {
        padding: 20px 15px 15px;
        border-bottom: 2px solid #cccccc8f;
        img {
            width: 120px;
        }
    }
    .menuList {
        position: absolute;
        width: 100%;
        right: -100%;
        transition: 0.5s;
        background-color: #001f39;
        height: 100%;
        top: 0;
        h5 {
            font-size: 30px !important;
            font-weight: 700;
            color: #fff;
            padding: 32px 15px;
            padding-right: 40px;
            border-bottom: 2px solid #cecece94;
        }
        .backText {
            padding: 20px 15px;
            border-bottom: 1px solid #ffffff57;
            background: #004986;
            position: relative;
            cursor: pointer;
            &::after {
                content: "\f060";
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                color: #fff;
                font-size: 20px;
                font-family: "FontAwesome";
            }
            h6 {
                font-size: 20px !important;
                margin-bottom: 0px !important;
                padding-bottom: 0px !important;
                color: #fff;
            }
        }
        .menuWrap {
            background-color: #001f39;
            ul {
                li {
                    border-bottom: 1px solid #ffffff57;
                    margin-bottom: 0px !important;
                    a {
                        display: inline-block;
                        padding: 20px 15px;
                        font-size: 20px;
                        color: #fff;

                        &:hover {
                            color: #f28511;
                        }
                    }
                    &.has_menu {
                        ul {
                            padding-left: 25px;
                            li {
                                border-bottom: 0px;
                                &:last-child {
                                    a {
                                        margin-bottom: 10px;
                                    }
                                }
                                a{
                                    padding: 10px 15px;
                                    position: relative;
                                    &::before {
                                        width: 8px;
                                        height: 1px;
                                        content: "";
                                        position: absolute;
                                        left: 0;
                                        top: 35px;
                                        background-color: #fff;
                                    }
                                }
                            }
                        }
                        &.hasMenu_1{
                            ul {
                                li {
                                    a{
                                        &::before {
                                            top: 28px;
                                        }
                                    }
                                }
                            }
                        }

                        &.open {
                            a {
                                padding-bottom: 5px;
                            }

                            ul {
                                li {
                                    a {
                                        padding: 10px 15px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        &.active {
            right: 0;
            z-index: 1;
        }
    }

    &.sideActive {
        right: 0;

        .menuList {
            &.active {
                right: 0;
            }
        }
    }

    .sub_menu,
    .sub_menu_child {
        display: none;
    }

    .has_menu>a,
    .has_menu_child>a {
        position: relative;
        width: auto;

        &:hover {
            &::after {
                color: #249700;
            }
        }
    }

    .has_menu,
    .has_menu_child {
        position: relative;

        .toggleArrow {
            color: #fff;
            position: absolute;
            cursor: pointer;
            top: 23px;
            right: 20px;
            color: #fff;
            font-size: 16px;

            &:hover {
                color: #249700;
            }
        }
    }

    .has_menu_child {
        .toggleArrow {
            top: 9px;
        }
    }
}

.menuOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    background-color: #f4812e4f;
    backdrop-filter: blur(10px);
    top: 0;
    transition: 0.5s;

    &.sideOverlay {
        right: 0;
        z-index: 98;
    }
}

.pdf_lnk {
    a {
        position: relative;
        display: block !important;
        width: 100%;
        padding: 20px 42px 20px 15px !important;

        &::after {
            content: "\f1c1";
            position: absolute;
            top: 50%;
            right: 18px;
            transform: translateY(-50%);
            font-family: fontawesome;
            font-size: 16px;
            color: #fff;
        }
    }
}

.sideMenu {
    & .sideMenuWrap {
        .menuItem {
            &:last-child {
                padding: 0;
            }
        }
    }
}

.bodyActive {
    overflow: hidden;
}

/* ===footer sec=== */

.footer {
    width: 100%;
    height: auto;
    background-color: #FDF2E8;
    padding-top: 100px;

    .footerTop {
        border-bottom: 1px solid rgba(0, 0, 0, 0.25);
        padding-bottom: 40px;

        .footerLogo {
            width: 200px;
            height: auto;
            margin: 0px auto;
            margin-bottom: 10px;

            a {
                width: 100%;
                height: 100%;

                img {
                    width: 100%;
                    height: auto;
                    object-fit: contain;
                }
            }
        }

        .footTopHead {
            color: #000;
            text-align: center;
            font-family: 'Muli';
            font-size: 30px;
            font-style: normal;
            font-weight: 600;
        }
    }

    .footerMid {
        border-bottom: 1px solid rgba(0, 0, 0, 0.25);
        padding: 40px 0px;

        .footMidHead {
            color: #0057A2;
            text-align: center;
            font-family: 'muli';
            font-size: 30px;
            font-style: normal;
            font-weight: 800;
            margin-bottom: 30px;
        }

        .footPdfDiv {
            display: flex;
            justify-content: space-between;
            /* align-items: flex-start; */
            align-items: center;

            .footPdfDivInn {
                width: 25%;
                height: 60px;

                &:not(:last-child) {
                    position: relative;
                    /* padding-right: 50px; */
                    padding: 0px 40px;

                    &::after {
                        content: '';
                        position: absolute;
                        right: 25px;
                        top: 0;
                        width: 1px;
                        height: 60%;
                        background-color: #000;
                    }
                }

                .footPdfLink {
                    display: flex;
                    align-items: center;
                    gap: 10px;

                    .footPdfIcon {
                        width: 30px;
                        height: 30px;
                        transition: 0.3s;
                        border-radius: 50%;
                        /* border: 1px solid #f58220; */
                        border: 1px solid #0057a2;
                        display: flex;
                        overflow: hidden;
                        justify-content: center;
                        align-items: center;

                        img {
                            width: 40px;
                            height: auto;
                            object-fit: contain;
                            object-position: 15px 0px;
                            max-width: inherit;
                            max-height: inherit;
                        }
                    }

                    .footPdfTxt {
                        width: calc(100% - 30px);

                        p {
                            color: #000;
                            font-size: 20px;
                            font-style: normal;
                            font-weight: 400;
                            transition: all 0.5s;
                        }
                    }

                    &:hover {
                        .footPdfIcon {
                            border-color: #f58220;
                            img {
                                object-position: -13px 0px;
                            }
                        }
                        .footPdfTxt {
                            p {
                                color: #f58220;
                            }
                        }
                    }
                }
            }
        }
    }

    .footerBtm {
        padding: 20px 0px;

        .socialIcon {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            a{
                width:45px;
                height:45px;
                border: 2px solid #0057a2;
                color: #0057a2;
                font-size: 20px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50%;
                
                &:hover{
                    border: 3px solid #f58220;
                    color: #f58220;
                }
            }
        }
    }
}


/*===breadcrumbSec start===*/
.breadcrumbSec {
    text-align: center;
    padding: 10px 20px;
    background-image: url(../images/about/aboutBg.jpg);
    /* border-bottom: 2px solid #f4812e75; */
    box-shadow: 0px -1px 9px 0px #f4812e7d;
    background-size: 100%;
    position: relative;
    z-index: 1;

    .bc {
        display: flex;
        text-align: left;

        a {
            color: #000;
            font-weight: 600;

            /* &:hover{
                color: rgb(245, 130, 32);
            } */
            &.active {
                cursor: default;
                color: #005ba8;
                pointer-events: none;
                text-shadow: 0px 0px 0px #00000059;
            }

            &:not(:last-child) {
                padding-right: 20px;
                position: relative;
                margin-right: 15px;

                &::after {
                    position: absolute;
                    right: 0;
                    top: 7px;
                    content: "\f101";
                    font-family: "FontAwesome";
                    font-size: 10px;
                }
            }
        }
    }
}

/* ==scroll to top button== */

.go2Top {
    display: none;
    visibility: hidden;
    opacity: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0057a2 30%, #0057a2 100%);
    color: #fff;
    position: fixed;
    bottom: 30px;
    right: 20px;
    box-shadow: 0px 0px 17px 0px #0000066e;
    cursor: pointer;
    z-index: 80;
    transition: all 0.5s;
    animation: jump 1s ease-in-out infinite;

    &.show {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    i {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
    }
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}


.pageNav {
    position: fixed;
    width: auto;
    margin: 0 auto;
    padding: 0;
    background-color: #95959542;
    z-index: 9;
    backdrop-filter: blur(10px);
    border: 0;
    /* border-bottom: none; */
    transition: 0.5s all;
    top:60%;
    transform: translateY(-50%);
    transition: 0.5s;

    a {
        color: #fff;
        background-color: #0a5ca8;
        display: block;
        padding: 2px 10px;
        border-radius: 0;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        width: auto;
        height: auto;
        font-size: 30px;
    }

    .arrowBtn {
        position: absolute;
        left: 50%;
        top: -25px;
        transform: translateX(-50%);
        cursor: pointer;
        width: 30px;
        height: 25px;
        background-color: #0a5ca8;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #f3853c;
        border-bottom: none;
        color: #fff;
    }

    &.nextNav {
        right: 0;
        border-radius: 10px 0px 0 10px;
        left: auto;
        overflow: hidden;

    }

    &.prevNav {
        right: auto;
        border-radius: 0 10px 10px 0;
        left: 0;
        overflow: hidden;
    }
}







/* Responsive */

@media (max-width: 1600px) {
    .footer {
        .footerTop {
            .footerLogo {
                width: 150px;
            }

            .footTopHead {
                font-size: 24px;
            }
        }

        .footerMid {
            .footMidHead {
                font-size: 25px;
            }

            .footPdfDiv {
                .footPdfDivInn {
                    &:not(:last-child) {
                        padding: 0px 25px;
                    }

                    .footPdfLink {
                        .footPdfTxt {
                            p {
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1440px) {
    .footer {
        .footerMid {
            .footPdfDiv {
                .footPdfDivInn {
                    &:not(:last-child) {
                        padding: 0px;
                        padding-right: 30px;

                        &::after {
                            right: 18px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1366px) {
    .sideMenu {
        .menuList {
            & .menuWrap {
                & ul {
                    & li {
                        &.has_menu {
                            &.hasMenu_1 {
                                & ul {
                                    & li {
                                        & a {
                                            &::before {
                                                top: 24px;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        .menuClose {
            top: 12px;
            span {
                font-size: 28px;
            }
        }
        .logoWrap {
            padding: 15px 15px 15px;
            img {
                width: 70px;
            }
        }
        .sideMenuWrap {
            .menuItem {
                h4 {
                    &::after {
                        right: 10px;
                    }
                }
            }
        }
    }
    /* header */
    .header {
        .logo_wrap {
            width: 90px;
        }

        .mid_head {
            .reportTitle {
                strong {
                    font-size: 20px !important;
                }
            }
        }
    }

    /* footer */

    .footer {
        padding-top: 80px;

        .footerMid {
            padding: 30px 0px;
        }
    }

    .pdf_lnk {
        a {
            padding: 10px 42px 10px 15px !important;
        }
    }
    .sideMenu {
        .menuList {
            .menuWrap {
                ul {
                    li {
                        a{
                            font-size: 16px;
                        }
                        &.has_menu {
                            ul {
                                li {
                                    a {
                                        &::before {
                                            top: 27px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1280px) {

    /* footer */
    .footer {
        .footerMid {
            .footPdfDiv {
                flex-wrap: wrap;
                row-gap: 15px;

                .footPdfDivInn {
                    width: 50%;

                    &:nth-child(2) {
                        &::after {
                            content: normal;
                        }
                    }

                    &:not(:last-child) {
                        &::after {
                            right: 50px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 991px) {
    .header{
        height: 60px;
    }
    .is-sticky {
        .header {
            position: static;
        }
    }
    .footer {
        .footerMid {
            .footPdfDiv {
                .footPdfDivInn {
                    &:not(:last-child) {
                        &::after {
                            right: 20px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 767px) {

    /* header */
    .header {
        .logo_wrap {
            width: 75px;
        }

        .mid_head {
            .reportTitle {
                strong {
                    font-size: 18px !important;
                }
            }
        }

        .rightHead {
            .dwnload {
                width: 40px;
                height: 40px;
                margin-right: 15px !important;
            }

            .menu_btn_area {
                width: 40px;
                height: 40px;

                .hamburger {
                    font-size: 20px;
                }
            }
        }
    }

    .is-sticky {
        .logo_wrap {
            width: 65px;
        }

        .mid_head {
            .reportTitle {
                strong {
                    font-size: 16px !important;
                }
            }
        }

        .rightHead {
            .dwnload {
                width: 32px;
                height: 32px;
                margin-right: 15px !important;

                img {
                    width: 15px;
                    height: auto;
                }
            }

            .menu_btn_area {
                width: 32px;
                height: 32px;

                .hamburger {
                    font-size: 18px;
                }
            }
        }
    }

    .sideMenu {
    & .sideMenuWrap {
        & .menuItem {
            &.linkMenu {
                a {
                    font-size: 18px;
                }
            }
        }
    }
}

    /* footer */
    .footer {
        padding-top: 60px;

        .footerTop {
            padding-bottom: 20px;

            .footerLogo {
                width: 120px;
            }
        }

        .footerMid {
            padding: 20px 0px;

            .footMidHead {
                font-size: 20px !important;
            }
        }

        .footerBtm {
            padding: 15px 0px;

            .socialIcon {
                gap: 10px;

                a {
                    width: 45px;
                    height: 45px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }
            }
        }
    }

    /* sidebar */
    .sideMenu {
        width: 300px;

        .logoWrap {
            img {
                width: 95px;
            }
        }

        .menuClose {
            right: 20px;
            top: 20px;

            span {
                font-size: 30px;
            }
        }

        .sideMenuWrap {
            .menuItem {
                h4 {
                    font-size: 18px !important;
                }
            }
        }

        .menuList {
            h5 {
                font-size: 20px !important;
            }

            .menuWrap {
                ul {
                    li {
                        a {
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }

    .pageNav {
        padding: 0;
        border: 0;
        a {
            color: #fff;
            background-color: #010b14;
            display: block;
            padding: 5px 8px;
            border-radius: 3px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            width: auto;
            height: auto;
            font-size: 14px;
        }
    }
}

@media (max-width: 640px) {

    /* header */
    .header {
        .mid_head {
            .reportTitle {
                display: none;
            }
        }
    }
}

@media (max-width: 575px) {
    .footer {
        .footerMid {
            .footMidHead {
                font-size: 18px !important;
                margin-bottom: 15px;
            }

            .footPdfDiv {
                .footPdfDivInn {
                    width: 100%;
                    height: auto;

                    &:not(:last-child) {
                        &::after {
                            content: normal;
                        }
                    }

                    .footPdfLink {
                        align-items: center;
                    }
                }
            }
        }
    }
}