.homeHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    box-shadow: none;
}

.lineHeading {
    & h2 {
        font-size: 42px !important;
    }
}

.btnWrap {
    background-color: #E31837;
    color: #fff;
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Georama SemiExpanded';
    font-weight: 400;

    &:hover {
        background-color: #000;
        color: #fff;
    }
}

/*===homeSec_1 start===*/
.videoWrap {
    height: 100vh;
    width: 100%;

    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

.secWrap5 {
    position: relative;

    &:before {
        width: 100%;
        left: 0;
        height: 75%;
        background-image: linear-gradient(0deg, transparent 0 25%, #ffffff 70% 100%);
        content: "";
        top: 0;
        position: absolute;
    }
}

.secWrap7 {
    .videoWrap {
        video {
            object-position: right center;
        }
    }
}

.contentPart {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    opacity: 0 !important;
    display: none;
    transition: 2s;
    visibility: hidden;
}

.pp-section {
    &.active {
        .contentPart {
            opacity: 1 !important;
            display: block;
            visibility: visible;
        }
    }
}

.lineHeading {
    & h2 {
        span {
            font-size: 24px !important;
        }
    }
}

.pp-tableCell {
    height: 100vh !important;
}

.secWrap1 {
    .contentPart {
        position: absolute;
        top: 35%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
    }

    .lineHeading {
        &::after {
            left: 323px;
            top: 18px;
        }
    }
}

.section {
    height: 100vh !important;
}

/*===secWrap2 start==*/
.secWrap2 {
    .lineHeading {
        &::before {
            left: 120px;
            bottom: 60px;
        }

        &::after {
            left: 95px;
            top: 53px;
        }
    }

    .contentPart {
        top: 45%;
    }

    .stakeholderWrap {
        ul {
            li {
                &:not(:last-child) {
                    margin-right: 40px;
                }
            }
        }
    }
}

/*===secWrap3 start===*/
.secWrap3 {
    .container-max {
        max-width: 100%;
        padding: 0 40px;
    }

    .contentPart {
        top: 200px;
        transform: none;
    }

    .purposeRightWrap {
        position: absolute;
        right: 100px;
        bottom: 0px;
        width: 45%;

        .categoryCountWrap {
            background-color: #cdcfd0;
            padding: 30px;
            padding-top: 70px;
            margin-top: -70px;
            position: relative;

            &::before {
                width: 70%;
                left: 30px;
                content: "";
                position: absolute;
                border-left: 1px solid #E31837;
                border-top: 1px solid #E31837;
                height: 100%;
                top: 0;
            }
        }

        .categoryHeading {
            position: relative;
            z-index: 1;

            img {
                height: 200px;
            }
        }
    }

    .acceloGroupImg {
        background-color: #4d4d4f;
        padding: 20px;
    }

    .lineHeading {
        &::before {
            width: 300px;
            left: 100px;
            bottom: 66px;
        }

        &::after {
            left: 81px;
            top: 53px;
        }
    }
}

/*===secWrap4 start===*/
.secWrap4 {
    background-color: #fff;

    .container-max {
        max-width: 100%;
        padding: 0 40px;
    }

    .contentPart {
        position: absolute;
        top: 140px;
        left: 0;
        width: 100%;
        transform: none;
    }

    .sidebar {
        width: 100%;
        background-color: #e7e7e9;
        padding-left: 10px;
        padding-bottom: 20px;
        padding-top: 20px;
        position: relative;
        padding-top: 0px;

        &::before {
            width: 100.5%;
            height: 115px;
            position: absolute;
            content: "";
            background: url(../images/home/capitalTabTop.png) no-repeat left bottom;
            background-size: 100%;
            left: 0;
            top: -114px;
        }

        button {
            width: 100%;
            padding: 10px 10px;
            display: flex;
            align-items: center;
            background-color: transparent;
            border-radius: 40px 0 0 40px;
            position: relative;

            &::before {
                width: 40px;
                height: 40px;
                position: absolute;
                top: 0;
                right: 0;
                content: "";
                background: url(../images/home/top-corner.png) no-repeat center center;
                top: -40px;
                opacity: 0;
                transition: 0.2s;
            }

            &::after {
                width: 40px;
                height: 40px;
                position: absolute;
                right: 0;
                content: "";
                background: url(../images/home/bottomCorner.png) no-repeat center center;
                bottom: -40px;
                opacity: 0;
                transition: 0.2s;
            }

            &.active {
                background-color: #fff;

                &::before {
                    opacity: 1;
                }

                &::after {
                    opacity: 1;
                }

                .tab-icon {
                    background-color: #E31837;
                    border: 2px solid #E31837;

                    img {
                        filter: brightness(0) invert(1);
                    }
                }
            }

            .tab-icon {
                width: 50px;
                height: 50px;
                padding: 6px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                border: 2px solid #ccc;
            }

            .capName {
                width: calc(100% - 50px);
                padding-left: 10px;
                display: flex;
                text-align: left;
                color: #4D4D4F;
            }
        }
    }

    .tab-content {
        display: none;

        &.active {
            display: block;
        }
    }

    .mainHead {
        margin-bottom: 5px;
    }

    .lineHeading {
        &::before {
            width: 300px;
            left: 100px;
            bottom: 54px;
            transform: rotate(-19deg) skew(-20deg) translate(-120%, 0);
        }

        &::after {
            content: "";
            position: absolute;
            width: 120px;
            height: 5px;
            background: #e31837;
            left: 250px;
            bottom: auto;
            right: auto;
            top: 53px;
            transform: rotate(-20deg) skew(-20deg) translate(100%, 0%);
        }
    }

    .capitalContent {
        padding-left: 60px;

        .capitalHeading {
            display: flex;
            align-items: center;
            margin-bottom: 20px;

            .capitalIcon {
                width: 70px;
            }

            h3 {
                width: calc(100% - 70px);
                padding-left: 25px;
                color: #4D4D4F;
            }
        }
    }
}

/*===secWrap5 start===*/
.secWrap5 {
    background-color: #fff;

    .container-max {
        max-width: 100%;
        padding: 0 40px;
    }

    .contentPart {
        position: absolute;
        top: 200px;
        left: 0;
        width: 100%;
        transform: none;
    }

    .lineHeading {
        &::before {
            width: 290px;
            left: 140px;
            bottom: 60px;
        }

        &::after {
            left: 134px;
        }
    }

    .mainHead {
        .rightHead {
            &::before {
                height: 100%;
            }
        }
    }
}

/*===secWrap6 start===*/
.secWrap6 {
    &:before {
        width: 100%;
        left: 0;
        height: 100%;
        background-image: linear-gradient(0deg, transparent 0 20%, #ffffffd9 70% 100%);
        content: "";
        top: 0;
        position: absolute;
    }

    .container-max {
        max-width: 100%;
        padding: 0 40px;
    }

    .contentPart {
        top: 200px;
        left: 0;
        width: 100%;
        transform: none;
    }

    .lineHeading {
        &::before {
            width: 320px;
            height: 5px;
            left: 110px;
            bottom: 65px;
        }

        &::after {
            left: 138px;
            top: 40px;
        }
    }
}

/*===secWrap7 start===*/
.secWrap7 {
    &:before {
        width: 100%;
        left: 0;
        height: 75%;
        background-image: linear-gradient(0deg, transparent 0 20%, #ffffffc2 70% 100%);
        content: "";
        top: 0;
        position: absolute;
    }

    .container-max {
        max-width: 100%;
        padding: 0 40px;
    }

    .contentPart {
        top: 200px;
        left: 0;
        width: 100%;
        transform: none;
    }

    .redBorderText {
        h3 {
            span {
                margin-bottom: 5px;
            }
        }
    }

    .lineHeading {
        &::before {
            left: 102px;
            bottom: 45px;
            transform: rotate(-19deg) skew(-20deg) translate(-120%, 0);
        }

        &::after {
            left: 24%;
            top: 45px;
            transform: rotate(-19deg) skew(-20deg) translate(100%, 0%);
        }
    }

    .meBtnWrap {
        ul {
            li {
                width: 100%;

                a {
                    display: inline-block;
                    padding: 7px 30px;
                    padding-right: 40px;
                    font-family: 'Quantum Rise';
                    font-weight: bold;
                    font-size: 40px;
                    clip-path: polygon(0 0, 100% 0%, 78% 100%, 0% 100%);
                    width: 365px;
                    background-color: #fff;
                    color: #E31837;

                    &:hover {
                        background-color: #E31837;
                        color: #fff;
                    }
                }
            }
        }
    }
}

/*==secWrap8 start===*/
.secWrap8 {
    .container-max {
        max-width: 100%;
        padding: 0 40px;
    }

    .contentPart {
        top: 150px;
        left: 0;
        width: 100%;
        transform: none;
    }

    .lineHeading {
        &::before {
            left: 95px;
        }

        &::after {
            left: 86px;
        }
    }
}

/*===secWrap9 start===*/
.msgSec {
    background-color: #fff;

    .container-max {
        max-width: 100%;
        padding: 0 40px;
    }

    .contentPart {
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        padding-top: 200px;
    }

    .lineHeading {
        &::before {
            left: 10px;
            bottom: 64px;
            width: 180px;
        }

        &::after {
            left: 195px;
        }
    }

    .msgBox {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60%;
        padding-right: 100px;

        .msgBoxInner {
            position: relative;
            padding-top: 50px;
            padding-bottom: 50px;

            &:before {
                width: 60px;
                height: 70px;
                background-image: url(../images/home/quoteLeft.png);
                background-repeat: no-repeat;
                background-size: 100%;
                left: 0;
                top: 0;
                content: "";
                position: absolute;
            }

            &:after {
                width: 60px;
                height: 70px;
                background-image: url(../images/message-from-chairman/quoteBottomImg.png);
                background-repeat: no-repeat;
                background-size: 100%;
                right: 20px;
                bottom: 0;
                content: "";
                position: absolute;
            }
        }
    }
}

.mob_1279 {
    display: none !important;
}

/*===secWrap10 start==*/
.secWrap10 {
    &.msgSec {
        .lineHeading {
            &::after {
                left: 150px;
                top: 10px;
            }
        }
    }
}

/*===secWrap11 start==*/
.secWrap11 {
    .container-max {
        max-width: 100%;
        padding: 0 40px;
    }

    .contentPart {
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        padding-top: 130px;
    }

    .numList {
        display: flex;
        flex-wrap: wrap;

        li {
            width: 33%;
        }
    }

    .lineHeading {
        &::before {
            width: 285px;
            left: 80px;
            bottom: 50px;
            transform: rotate(-19deg) skew(-20deg) translate(-120%, 0);
        }

        &::after {
            left: 115px;
            bottom: auto;
            right: auto;
            top: 46px;
            transform: rotate(-19deg) skew(-20deg) translate(100%, 0%);
        }
    }
}

#pp-nav li .active span,
.pp-slidesNav .active span {
    background: #E31837 !important;
    border: 2px solid #fff !important;
}

#pp-nav span,
.pp-slidesNav span {
    width: 12px !important;
    height: 12px !important;
    border: 1px solid #000 !important;
}

.grayBorderBtm {
    border-bottom: 1px solid #ccc;
}

.tabContentRight {
    margin-top: -50px;
}

.mob_991 {
    display: block;
}

.mob_991 {
    display: none;
}

@media(max-width:1800px) {
    .numBlockWrap {
        &.mb_40 {
            margin-bottom: 15px !important;
        }
    }

    .secWrap7 {
        .contentPart {
            top: 140px;
            left: 0;
            width: 100%;
            transform: none;
        }
    }

    .IMgBox {
        width: 95%;
    }

    p.fz_32 {
        font-size: 26px !important;
    }

    ul li {
        font-size: 16px;
    }
}

@media(max-width:1720px) {
    .secWrap4 {
        .contentPart {
            top: 100px;
        }

        .sidebar {
            padding-left: 10px;
        }
    }

    .numBlockWrap {
        &.mb_40 {
            margin-bottom: 15px !important;
        }
    }

    .secWrap11 {
        h3.fz_24 {
            font-size: 20px !important;
        }

        .numList {
            li {
                font-size: 15px;
            }
        }
    }

    p.fz_32 {
        font-size: 24px !important;
    }

    .secWrap4 {
        .sidebar {
            button {
                .tab-icon {
                    width: 40px;
                    height: 40px;
                    padding: 5px;
                }

                .capName {
                    width: calc(100% - 40px);
                    font-size: 15px;
                }
            }
        }
    }

    .numBlock {
        .fz_40 {
            font-size: 30px !important;
        }

        .fz_48 {
            font-size: 40px !important;
        }
    }

    .secWrap3 {
        .purposeRightWrap {
            .categoryCountWrap {
                padding-top: 30px;
            }
        }
    }
}

@media(max-width:1600px) {
    .secWrap4 {
        .sidebar {
            button {
                padding: 7px 10px;

                .capName {
                    font-size: 14px;
                }
            }
        }
    }

    .lineHeading {
        h2 {
            font-size: 36px !important;

            span {
                font-size: 20px !important;
            }
        }
    }

    p {
        font-size: 16px;
    }

    .btnWrap {
        font-size: 14px;
        padding: 10px 25px;
    }

    .fz_28 {
        font-size: 24px !important;
    }

    .redArrowList {
        li {
            font-size: 16px;
        }
    }

    .secWrap3 {
        .purposeRightWrap {
            .categoryHeading {
                img {
                    height: 145px;
                }
            }

            .purposeRightWrap {
                .categoryCountWrap {
                    padding: 20px;
                    padding-top: 40px;
                }
            }
        }
    }

    .secWrap1 {
        .lineHeading {
            &::after {
                left: calc(55% + 30px);
                top: 18px;
            }
        }
    }

    .secWrap2 {
        .lineHeading {
            &::after {
                left: 95px;
                top: 41px;
            }
        }
    }

    .secWrap3 {
        .lineHeading {
            &::after {
                left: 81px;
                top: 41px;
            }
        }
    }

    .secWrap4 {
        .lineHeading {
            &::after {
                left: 195px;
                top: 53px;
            }
        }
    }

    .secWrap5 {
        .lineHeading {
            &::after {
                left: 134px;
                top: 42px;
            }
        }
    }

    .secWrap6 {
        .lineHeading {
            &::after {
                left: 118px;
                top: 40px;
            }
        }
    }

    .secWrap8 {
        .lineHeading {
            &::after {
                left: 86px;
                top: 42px;
            }
        }
    }

    .secWrap10 {
        &.msgSec {
            .lineHeading {
                &::after {
                    left: 122px;
                }
            }
        }
    }

    .secWrap11 {
        .lineHeading {
            &::after {
                left: 115px;
                top: 29px;
            }
        }
    }

    .secWrap9 {
        &.msgSec {
            .lineHeading {
                &::after {
                    top: 32px;
                }
            }
        }
    }

}

@media(max-width: 1536px) {
    .secWrap7 {
        .redBorderText {
            margin-bottom: 10px !important;
        }
    }
}

@media(max-width:1540px) {
    .secWrap4 {
        .lineHeading {
            &::after {
                left: 183px;
            }
        }
    }
}

@media(max-width:1440px) {
    .lineHeading {
        h2 {
            font-size: 30px !important;
        }
    }

    .capitalText {
        &.mb_30 {
            margin-bottom: 10px !important;
        }

        p {
            font-size: 14px !important;
        }
    }

    .secWrap4 {
        .capitalContent {
            .capitalHeading {
                margin-bottom: 10px;

                .capitalIcon {
                    width: 55px;
                }

                h3 {
                    font-size: 20px;
                }
            }
        }

        .numBlock {
            .fz_40 {
                font-size: 24px !important;
            }

            .fz_24 {
                font-size: 16px !important;
            }
        }
    }

    .tabContentRight {
        margin-top: -72px;
    }

    .secWrap2 {
        &:before {
            width: 100%;
            left: 0;
            height: 100%;
            background-image: linear-gradient(0deg, transparent 0 20%, #ffffffd9 70% 100%);
            content: "";
            top: 0;
            position: absolute;
        }

        .stakeholderWrap {
            margin-bottom: 20px;
        }
    }

    .secWrap7 {
        .contentPart {
            top: 130px;
        }

        .redBorderText {
            h3 {
                font-size: 22px !important;
            }
        }
    }

}

@media(max-width:1366px) {
    .headerInner {
        .headerLogo {
            width: 140px;
        }

        .headerRight {
            width: 140px;
        }

        .headerMiddle {
            width: calc(100% - 280px);
        }
    }

    p {
        font-size: 14px;
    }

    .secWrap2 {
        .contentPart {
            .mb_30 {
                margin-bottom: 15px !important;
            }

            p {
                font-size: 14px !important;
            }

            .fz_28 {
                font-size: 20px !important;
            }
        }

        .stakeholderWrap {
            ul {
                li {
                    font-size: 14px;
                }
            }
        }
    }

    ul li {
        font-size: 14px;
    }

    .container-max {
        width: 100%;
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }

    .categoryCountWrap {
        .numBlock {
            h3 {
                font-size: 24px !important;
            }

            .fz_24 {
                font-size: 14px !important;
            }
        }

        .mb_30 {
            margin-bottom: 10px !important;
        }
    }

    .categoryWrap {
        h3.fz_28 {
            font-size: 18px !important;
        }
    }

    .secWrap4 {
        .lineHeading {
            &::after {
                left: 147px;
            }
        }
    }

    .secWrap1 {
        .lineHeading {
            &::after {
                left: 250px;
                top: 18px;
            }
        }
    }

    .secWrap2 {
        .lineHeading {
            &::after {
                left: 103px;
                top: 38px;
                width: 80px;
            }
        }
    }

    .secWrap3 {
        .lineHeading {
            &::after {
                left: 60px;
                top: 46px;
            }
        }
    }

    .secWrap4 {
        .mb_100 {
            margin-bottom: 78px !important;
        }

        .mainHead {
            .rightHead {
                padding-top: 18px;
                padding-left: 20px;
                position: relative;
            }
        }

        .sidebar {
            button {
                .capName {
                    font-size: 13px;
                }
            }
        }
    }

    .secWrap5 {
        .lineHeading {
            &::after {
                left: 108px;
                top: 44px;
            }
        }
    }

    .secWrap6 {
        .lineHeading {
            &::after {
                left: 100px;
                top: 40px;
            }
        }

        .contentPart {
            top: 130px;
        }
    }

    .secWrap7 {
        .contentPart {
            top: 100px;
        }

        .redBorderText {
            margin-bottom: 12px !important;

            h3 {
                font-size: 21px !important;
            }
        }

        .lineHeading {
            &::after {
                left: 93px;
                top: 35px;
                transform: rotate(-19deg) skew(-20deg) translate(100%, 0%);
            }
        }
    }

    .secWrap8 {
        .lineHeading {
            &::after {
                left: 63px;
                top: 44px;
            }
        }
    }

    .msgSec {
        .lineHeading {
            &::after {
                left: 154px;
                top: 32px;
            }
        }

        .msgBox {
            width: 58%;
        }
    }

    .secWrap10 {
        &.msgSec {
            & .lineHeading {
                &::after {
                    left: 100px;
                    top: 20px;
                }
            }
        }
    }

    .secWrap11 {
        .lineHeading {
            &::after {
                left: 63px;
                top: 42px;
            }
        }

        .contentPart {
            padding-top: 100px;
        }

        h3.fz_24 {
            font-size: 17px !important;
        }

        .numList {
            li {
                font-size: 12px;
            }
        }
    }

    .IMgBox {
        width: 88%;
    }

    .secWrap11 {
        .numList {
            li {
                padding-right: 10px;
                margin-bottom: 5px;
            }
        }
    }

    .btnWrap {
        font-size: 13px;
        padding: 5px 20px;
    }
}

@media(max-width:1280px) {
    .secWrap4 {
        & .lineHeading {
            &::after {
                display: none;
            }
        }

        .sidebar {
            &::before {
                display: none;
            }

            padding-top: 20px;

            button {
                padding: 7px;
            }
        }

        .mb_100 {
            margin-bottom: 15px !important;
        }

        .capitalContent {
            .capitalHeading {
                h3 {
                    font-size: 24px;
                }

                .capitalIcon {
                    width: 45px;
                }
            }
        }

        .tabLeft {
            -ms-flex: 0 0 25%;
            flex: 0 0 25%;
            max-width: 25%;
        }

        .tabContentRight {
            -ms-flex: 0 0 75%;
            flex: 0 0 75%;
            max-width: 75%;
        }

        .capitalContent {
            padding-left: 15px;
        }

        .contentPart {
            top: 85px;
        }

        .capitalText.mb_30 {
            margin-bottom: 14px !important;
        }
    }

    .tabContentRight {
        margin-top: 0;
    }

    .lineHeading {
        h2 {
            font-size: 24px !important;
        }

        span {
            font-size: 18px !important;
        }
    }

    .numBlock {
        .fz_40 {
            font-size: 20px !important;
        }

        .fz_24 {
            font-size: 16px !important;
        }
    }

    .secWrap5 {
        .contentPart {
            top: 115px;
        }
    }

    .redBorderText {
        padding-left: 10px;

        .fz_24 {
            font-size: 18px !important;
        }
    }

    .pl_20 {
        padding-left: 10px;
    }

    .secWrap6 {
        .contentPart {
            top: 115px;
        }
    }

    .secWrap7 {
        .redBorderText {
            h3 {
                font-size: 18px !important;
            }
        }

        &:before {
            height: 56%;
        }

        .mb_100 {
            margin-bottom: 30px !important;
        }

        .meBtnWrap {
            ul {
                li {
                    a {
                        font-size: 20px;
                        width: 220px;
                    }
                }
            }
        }

        .contentPart {
            top: 95px;
        }
    }

    #pp-nav span,
    .pp-slidesNav span {
        width: 8px !important;
        height: 8px !important;
    }

    #pp-nav.right {
        right: 0px !important;
    }

    .secWrap8 {
        .fz_40 {
            font-size: 30px !important;
        }

        .contentPart {
            top: 95px;
        }
    }

    .secWrap10 {
        p.fz_32 {
            font-size: 18px !important;
        }
    }

    .secWrap11 {
        .mb_90 {
            margin-bottom: 25px !important;
        }

        h3.fz_24 {
            font-size: 16px !important;
        }

        .fz_22 {
            font-size: 16px !important;
        }

        .mb_20 {
            margin-bottom: 10px !important;
        }

        .numList {
            li {
                font-size: 12px;
                padding-right: 10px;
            }
        }

        .contentPart {
            padding-top: 110px;
        }
    }
}

@media(max-width:1279px) {
    .section {
        height: auto !important;
    }

    .videoWrap {
        height: auto;

        video {
            display: block;
        }
    }

    .desk_1279 {
        display: none;
    }

    .mob_1279 {
        display: block !important;
    }

    .contentPart {
        position: initial !important;
        top: 35% !important;
        left: 0 !important;
        width: 100% !important;
        transform: none !important;
        padding: 110px 0 150px;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .section {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;

        &.secWrap1 {
            height: 500px !important;
        }

        &.secWrap3 {
            height: 600px !important;
        }

        &.secWrap4 {
            .contentPart {
                padding: 110px 0 110px;
            }
        }

        &.secWrap5 {
            height: 600px !important;
        }

        &.secWrap6 {
            height: 700px !important;
        }

        &.secWrap7 {
            height: auto !important;

            .row_1 {
                margin-bottom: 20px;

                .meBtnWrap {
                    margin-bottom: 20px;

                    ul {
                        li {
                            a {
                                background-color: #000;
                            }
                        }
                    }
                }
            }
        }

        &.secWrap9 {
            border-bottom: 1px solid #cecece;
            height: 530px !important;
            background-color: #f7f7f7;

            p.fz_32 {
                font-size: 22px !important;
            }
        }

        &.secWrap10 {
            border-bottom: 1px solid #cecece;
        }

        &.secWrap10 {
            height: 550px !important;

            p.fz_32 {
                font-size: 18px !important;
            }

            .aic {
                flex-direction: row-reverse;
            }
        }
    }

    .msgSec {
        .contentPart {
            padding-top: 90px;
        }
    }

    .secWrap11 {
        .contentPart {
            padding-top: 85px;
            padding-bottom: 90px;
        }
    }

    .homeHeader {
        &.fixHeader {
            background-color: #fff;
            box-shadow: 0 0 10px 0px #6c6c6c8a;
        }
    }
}

@media(max-width:1140px) {
    .secWrap3 {
        .purposeRightWrap {
            position: absolute;
            right: 20px;
            bottom: 0px;
            width: 55%;

            .categoryCountWrap {
                margin-top: -40px;

                &::before {
                    width: 62%;
                }
            }

            .categoryHeading {
                img {
                    height: 87px;
                }
            }
        }
    }
}

@media(max-width:1024px) {
    .secWrap5 {
        background-position: center right;
    }

    .msgSec {
        .msgBox {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60%;
            padding-right: 28px;

            /* .msgBoxInner {
                &:after {
                    bottom: -15px;
                }
            } */
        }
    }
}

@media(max-width:991px) {
    .secWrap2 {
        .contentPart {
            padding: 50px 0 130px;
        }
    }

    .categoryWrap {
        h3.fz_28 {
            font-size: 15px !important;
        }
    }

    .secWrap6 {
        &:before {
            width: 100%;
            left: 0;
            height: 100%;
            background-image: linear-gradient(0deg, transparent 0 20%, #ffffff 50% 100%);
            content: "";
            top: 0;
            position: absolute;
        }
    }

    .numBlockBottom {
        .leftText {
            &::before {
                width: 30px;
                height: 25px;
            }

            padding-left: 40px;
        }
    }

    .secWrap3 {
        .purposeRightWrap {
            .categoryCountWrap {
                padding: 15px;
                margin-top: -40px;

                &::before {
                    width: 67%;
                    left: 15px;
                }
            }
        }
    }

    .homeHeader {
        .container-max {
            padding: 0 20px;
        }
    }

    .desk_991 {
        display: none !important;
    }

    .mob_991 {
        display: block;
    }

    .mobAccHeading {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        border-radius: 10px;

        .tab-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;

            img {
                width: 100%;
            }
        }

        .capName {
            width: calc(100% - 50px);
            padding-left: 10px;
            font-size: 20px;
        }
    }

    .secWrap4 {
        .mobAccItem {
            margin-bottom: 20px;
            background-color: #f1f1f1;
            position: relative;
            border-radius: 10px;

            .mobAccHeading {
                position: relative;

                &::after {
                    content: "\f078";
                    position: absolute;
                    top: 20px;
                    right: 20px;
                    font-family: "FontAwesome";
                    font-size: 20px;
                    transition: 0.5s;
                }
            }

            &.active {
                .mobAccHeading {
                    border-bottom: 1px solid #ccc;

                    &::after {
                        transform: rotate(180deg);
                    }
                }

                .capitalContent {
                    display: block;
                }
            }
        }

        .capitalContent {
            padding-left: 15px;
            padding-top: 20px;
            padding-bottom: 15px;
            display: none;

            .capitalHeading {
                h3 {
                    padding-left: 0px;
                }
            }
        }
    }

    .secWrap4 {
        .container-max {
            padding: 0 20px;
        }
    }

    .section {
        &.secWrap7 {
            height: auto !important;

            .contentPart {
                padding: 70px 0 70px !important;
            }

            .row_1 {
                margin-bottom: 20px;

                .meBtnWrap {
                    margin-bottom: 20px;

                    ul {
                        li {
                            a {
                                background-color: #000;
                            }
                        }
                    }
                }
            }
        }

    }

    .msgSec {
        .contentPart {
            padding-top: 90px;
            padding-bottom: 0px;
        }

        .msgBox {
            position: initial;
            width: 100%;
            padding-right: 0;
            padding: 0 40px;

            .msgBoxInner {
                &:after {
                    height: 45px;
                }
            }

            .row {
                flex-direction: row-reverse;

                .imgBoxMain {
                    width: 100%;

                    img {
                        width: 400px !important;
                    }
                }
            }
        }
    }

    .section {

        &.secWrap9,
        &.secWrap10 {
            height: auto !important;
        }
    }

    .IMgBox {
        width: 100%;
        margin-bottom: 20px;

        &.pr_100 {
            padding-right: 0px !important;
        }
    }

    .secWrap1 {
        &:before {
            width: 100%;
            left: 0;
            height: 47%;
            background-image: linear-gradient(180deg, transparent 0 20%, #ffffffd9 70% 100%);
            bottom: 0;
            position: absolute;
            content: "";
        }

        .contentPart {
            padding: 0;
            padding-bottom: 20px;

            .lineHeading {
                text-align: center;
                display: block;

                h2 {
                    margin-bottom: 10px;
                }
            }
        }
    }
}

@media(max-width:767px) {
    .headerInner {
        .headerMiddle {
            display: none;
        }
    }

    .lineHeading {
        h2 {
            font-size: 20px !important;

            span {
                font-size: 16px;
            }
        }
    }

    .secWrap1 {
        display: flex;
        align-items: flex-end;

        &:before {
            width: 100%;
            left: 0;
            height: 47%;
            background-image: linear-gradient(180deg, transparent 0 20%, #ffffffd9 70% 100%);
            bottom: 0;
            position: absolute;
            content: "";
        }

        .contentPart {
            padding: 0;
            padding-bottom: 20px;

            .lineHeading {
                text-align: center;
                display: block;
            }
        }
    }

    .container-max {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .secWrap2 {
        .contentPart {
            padding: 50px 0 210px;

            .lineHeading {
                margin-bottom: 15px;
            }
        }
    }

    .section {
        &.secWrap3 {
            height: auto !important;
            padding-bottom: 50px;

            .contentPart {
                padding-bottom: 20px;
                padding-top: 50px;
            }

            .purposeRightWrap {
                position: initial;
                width: 100%;
                padding: 0 20px;
                padding-bottom: 20px;

                .categoryCountWrap {
                    padding: 15px;
                    margin-top: -40px;
                    margin-bottom: 20px;

                    &::before {
                        width: 25%;
                        left: 15px;
                    }
                }
            }
        }
    }

    .section {
        &.secWrap4 {
            .contentPart {
                padding: 50px 0 50px;
            }
        }
    }

    .secWrap5 {
        .contentPart {
            padding: 50px 0;
        }

        .mainHead {
            .rightHead {
                &::before {
                    height: 2px;
                }
            }
        }

        .container-max {
            max-width: 100%;
            padding: 0 20px;
        }
    }

    .secWrap6 {
        .contentPart {
            padding: 50px 0;
        }
    }

    .container-max {
        padding: 0 20px !important;
    }

    .pl_20 {
        padding-left: 0px !important;
    }

    .lineHeading {
        h2 {
            margin-bottom: 10px;
        }
    }

    .section {
        &.secWrap7 {
            .contentPart {
                padding: 50px 0 50px !important;
            }
        }

    }

    .secWrap8 {
        .contentPart {
            padding: 50px 0 150px;
        }
    }

    .secWrap6 {
        &:before {
            background-image: linear-gradient(0deg, transparent 0 5%, #ffffffd9 40% 100%);
        }
    }

    .msgSec {
        .contentPart {
            padding-top: 50px;
        }
    }

    .section {
        &.secWrap9 {
            p.fz_32 {
                font-size: 18px !important;
            }
        }
    }

    .secWrap11 {
        .numList {
            li {
                width: 100%;
            }
        }

        .mb_20 {
            margin-bottom: 20px !important;
        }
    }

    .secWrap11 {
        .contentPart {
            padding-top: 50px;
            padding-bottom: 50px;
        }
    }
}

@media(max-width:680px) {
    .section {
        &.secWrap3 {
            .purposeRightWrap {
                .categoryCountWrap {
                    &::before {
                        width: 30%;
                    }
                }
            }
        }
    }

    .msgSec {
        .msgBox {
            .msgBoxInner {
                position: relative;
                padding-top: 20px;
                padding-bottom: 20px;

                &:before {
                    width: 34px;
                    height: 50px;
                }

                &:after {
                    width: 34px;
                    height: 32px;
                    bottom: -15px;
                }
            }
        }
    }
}

@media(max-width:580px) {
    .secWrap2 {
        .contentPart {
            padding: 50px 0 250px;
        }
    }

    .section {
        &.secWrap3 {
            .purposeRightWrap {
                .categoryCountWrap {
                    &::before {
                        width: 35%;
                    }
                }
            }
        }
    }
}

@media(max-width:575px) {
    .msgSec {
        .msgBox {
            padding: 0 20px;

            .btnWrap {
                margin-bottom: 50px;
            }

            .row {
                flex-direction: column-reverse;

                .imgBoxMain {
                    height: 430px;
                    background-color: #fff;
                    margin-bottom: 20px;
                    margin-top: 20px;

                    img {
                        width: 100% !important;
                        height: 100% !important;
                        object-fit: cover !important;
                        object-position: center top !important;
                    }
                }
            }
        }
    }

    .secWrap10.msgSec {
        .msgBox {
            .row {
                .imgBoxMain {
                    background-color: #f3f3f3;
                }
            }
        }
    }

    .secWrap4 {
        .mobAccItem {
            &::after {
                font-size: 17px;
            }
        }
    }

    .mobAccHeading {
        .capName {
            width: calc(100% - 50px);
            padding-left: 10px;
            padding-right: 20px;
            font-size: 18px;
        }
    }
}

@media(max-width:440px) {
    .secWrap2 {
        & .stakeholderWrap {
            & ul {
                li {
                    width: 100%;
                }
            }
        }
    }
}