:root {
    --primary-color: #264577;
    --secondary-color: #f6dd00;
    --bg-color: #E8E8E8;
    --bg-color2: #f3f6f9;
    --white-color: #fff;
    --black-color: #000;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", serif;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

.bg-gray {
    background-color: var(--bg-color2);
}

.bg-light2 {
    background-color: var(--bg-color2);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.fs-1 {
    font-size: 3rem !important;
}

.fs-7 {
    font-size: 0.8rem;
}

.btnMan {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    transition: color 0.5s;
    z-index: 1;
    border-radius: 3rem;
    font-weight: 500;
    color: var(--primary-color);
    background: var(--white-color);
}

.btnMan:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--primary-color);
    height: 150px;
    width: 250px;
    border-radius: 50%;
}

.btnMan:hover {
    color: #fff;
}

.btnMan:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btnMan:hover:before {
    top: -30px;
    left: -30px;
}

.btnMan:active:before {
    background: var(--primary-color);
    transition: background 0s;
}

main {
    position: relative;
}

.titleDivider {
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #dee3e8;
    position: relative;
}

.titleDivider:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -2px;
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.boxShadow {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}

header.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
    background-color: rgb(38, 69, 119, 0.9);
}

.nav-brand img {
    transition: ease.5s all;
    height: 80px;
    margin-top: -40px;
}

.scroll-on .nav-brand img {
    transition: ease.5s all;
    height: 50px;
    margin-top: 0;
}

.scroll-on .navigation {
    padding-right: 0;
    transition: ease.5s all;
}


.hero-section {
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.heroImgSection {
    margin: 0;
    position: absolute;
    width: 100vw;
    left: 50%;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    height: auto;
}

.heroImgSection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}



/* Header Panel */
header {
    position: relative;
    background-color: var(--primary-color);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 80px;
}

.taglogo {
    position: relative;
    width: 100px;
    z-index: 999;
}

.taglogo img {
    position: absolute;
}

.topMenuMain {
    background: var(--bg-color);
}

.topMenu {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0;
    padding: 0.5rem 0;
}

.topMenu li {
    list-style: none;
    margin: 0 0.75rem;
}

.topMenu a {
    color: var(--black-color);
    font-size: 0.8rem;
    font-weight: 500;
}

.topMenu a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


/* Banner Panel */
.bannerPanel {
    position: relative;
    /* background: var(--bg-color); */
    padding: 0;
}

.bannerSlider {
    position: relative;
}

.bannerSlider:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.bannerPanel .slick-next {
    right: calc(5% - 25px);
    z-index: 99;
    background-color: var(--white-color);
    color: var(--black-color);
}

.bannerPanel .slick-prev {
    left: calc(5% - 25px);
    z-index: 99;
    color: var(--black-color);
    background-color: var(--white-color);
}

.bannerContent {
    position: absolute;
    width: 100%;
    bottom: 50px;
    /* display: flex;
    align-items: center;
    text-align: center; */
    z-index: 1;
}

.bannerContent .content {
    position: relative;
    position: relative;
    background-color: rgb(38, 69, 119, 0.9);
    padding: 1.5rem;
}

.bannerContent h2 {
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}


/* Founder */
.founderPanel {
    position: relative;
    padding: 3rem 0;
}

.founderPanel h5 small {
    opacity: 0.8;
    font-size: 1rem;
    display: block;
    font-weight: 600;
    margin-top: 0.25rem;
}

.founderPanel img{
    width: 200px;
}

/*.founderPanel p {*/
/*    text-align: justify;*/
/*}*/

/* Counter Panel */
.counterMain {
    background: url(../images/counter-bg.svg) center no-repeat;
    background-size: cover;
    padding: 3rem 0;
    position: relative;
}

.counterPanel {
    display: flex;
    justify-content: space-between;
}

.counterPanel .itemList {
    background-color: var(--primary-color);
    padding: 1rem;
    text-align: center;
    flex: 1;
    margin: 0.5rem;
    color: #fff;
}

.counterPanel .itemList .counting {
    margin-bottom: 0;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.counterPanel .itemList p {
    margin-bottom: 0;
    text-transform: uppercase;
}

/* Vision Panel */
.visionPanel {
    position: relative;
    color: #08488B;
    font-size: 1.15rem;
}

.visionPanel h2 {
    border-bottom: 5px solid #08488B;
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}

.visionPanel p {
    text-align: justify;
}

/* Emami Glance */
.emamiGlance {
    border-radius: 0 3rem;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    margin: 1rem 0.5rem;
    z-index: 1;
}

.emamiGlanceBox {
    position: relative;
}

.emamiGlanceBox:before {
    border: 2px solid #08488B;
    width: 102%;
    height: 110%;
    left: -1%;
    top: -5%;
    position: absolute;
    content: '';
    border-radius: 0 3.5rem;
}

/*.emamiGlanceBox:after {*/
/*    background: url(../images/arrow-glance.svg) no-repeat;*/
/*    background-size: cover;*/
/*    width: 110%;*/
/*    height: 112%;*/
/*    left: -5%;*/
/*    top: -6%;*/
/*    position: absolute;*/
/*    content: '';*/
/*}*/

.emamiGlance img {
    width: 80px;
}

.emamiGlance h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #08488B;
}

/* Key Highlights */
.keyContent {
    position: absolute;
    width: 100%;
    height: 70%;
    left: 0;
    top: 15%;
    display: grid;
    align-items: center;
    z-index: 1;
}

.keyContent .content {
    position: relative;
    color: var(--primary-color);
    min-height: 180px;
}

.keyContent h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.keyContent h4 {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Home Sustainalbe */
.homeSustain {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, .8);
    border-radius: 0 5rem;
    color: var(--white-color);
}

.homeSustain h3 {
    font-size: 1.5rem;
}

/* Financial Panel */
.financialPanel {
    position: relative;
    padding: 3rem 0;
    min-height: 500px;
    overflow: hidden;
    background-position: left;
    object-position: left;
}

.financeContent {
    position: absolute;
    width: 100%;
    bottom: 3rem;
    z-index: 1;
}

/* 
.financialPanel::before{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    background-color: var(--secondary-color);
} */

.financialPanel::after {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0px;
    width: 65%;
    height: 300px;
    background-color: var(--secondary-color);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    border-radius: 50px 0 0 0;
}


.financialPanel p {
    margin-bottom: 0;
}

/* Work Place */
.workPlacePanel {
    position: relative;
    padding: 4rem 0 3rem;
}

/* Testimonial */
.testimonialPanel {
    position: relative;
    padding: 3rem 0 4rem;
    background: url('../images/bg-pattern.jpg') repeat;
}

.testimonialPanel:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white-color);
}

.testimonialPanel .imgBox:before {
    position: absolute;
    content: '';
    left: 20px;
    top: 20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    z-index: -1;
}

.testimonialPanel .slick-dots {
    bottom: -25px;
}

.sampleRequest {
    float: right;
    direction: ltr;
    writing-mode: vertical-rl;
    text-orientation: initial;
    display: inline-flex;
    transform: rotate(180deg);
    position: fixed;
    right: 0;
    white-space: nowrap;
    top: 30%;
    font-size: 16px;
    color: #fff;
    background-color: var(--primary-color);
    z-index: 999;
    padding: 15px 6px;
    text-transform: uppercase;
    border-radius: 0 0.5rem 0.5rem 0;
    cursor: pointer;
}

/* Inner Banner Panel */
.breadcrumb {
    display: flex;
    list-style: none;
    /* padding: 5px 0; */
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li a {
    text-decoration: none;
    color: var(--primary-color);
    padding: 5px 0;
    transition: 0.3s;
    font-size: 0.8rem;
}

.breadcrumb li a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb li::after {
    content: '/';
    margin: 0 10px;
    color: #666;
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb li:last-child a {
    color: var(--black-color);
    pointer-events: none;
}

.innerBanner {
    position: relative;
    /* padding: 3rem 0; */
    padding-bottom: 3rem;
    color: var(--white-color);
    min-height: 450px;
}

.innerBanner2 {
    position: relative;
    padding: 3rem 0;
    min-height: 150px;
    background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rightImgPanel {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 600px;
}

.innerBannerContent {
    background-color: #D4B589;
    padding: 3rem 4rem;
    position: relative;
}

/* Product List */
.productListPanel {
    position: relative;
    padding: 3rem 0;
    background: url(../images/Memphis2.png) no-repeat;
    background-position: left top;
    min-height: 600px;
}

.productList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.productList .productBox {
    margin: 1rem;
    padding: 1rem;
    width: calc(50% - 2rem);
    text-align: center;
    background-color: #bbe2f5;
    border: 1rem solid var(--white-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
}

.productList .productBox:first-child,
.productList .productBox:nth-child(4) {
    background-color: #f5e3d3;
}

.productList .productBox img {
    width: 130px;
    margin-bottom: 1rem;
}

.productList .productBox:hover {
    background-color: #ddd;
    cursor: pointer;
}

/* Packaging Panel */
.packageBox {
    padding: 0.75rem 0.75rem 1.5rem;
    text-align: center;
    background-color: var(--white-color);
    border: 0.35rem solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
}

.packageBox:hover {
    transform: scale(1.03);
}

.product-slider .slick-slide {
    margin: 15px;
    /* Adjust as needed */
}

/* .product-slider .slick-track .slick-slide:nth-child(even) .packageBox {
    border-color: #81cff6;
} */

/* Product Details */
.productDetailsMain {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.productDetailsMain:before {
    position: absolute;
    content: '';
    height: 50%;
    width: 100%;
    top: 25%;
    left: 0;
    background-color: #81cff6;
}

.productDetailsMain .nav-link {
    color: var(--white-color);
    font-size: 1.15rem;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 1px;
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
    /* margin-top: 0.25rem;
    margin-bottom: 0.25rem; */
    border-radius: 0;
    font-weight: 500;
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
}

.productDetailsMain .nav-pills .nav-link.active {
    background-color: var(--white-color);
    color: #0b8dce;
}

.productDetailsMain .tab-content {
    background: var(--white-color);
    padding: 3rem;
    min-height: 400px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.productDetailsMain .tab-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.15rem;
}

/* Happy Client */
.happyClient {
    padding: 0 1.5rem;
    padding-right: 2rem;
    border-right: 1px solid #dfdfdf;
    position: relative;
    margin-right: 1.5rem;
}

.happyClient .topPart {
    display: flex;
    align-items: center;
}

.happyClient img {
    width: 120px;
    margin-right: 1rem;
    border-radius: 0.5rem;
}

.happyClient .topPart h5 small {
    display: block;
    font-size: 1rem;
    margin-top: 0.25rem;
    font-weight: 400;
}

.testimonial-block {
    position: relative;
    /* margin-bottom: 30px */
}

.testimonial-block .inner-box {
    position: relative;
    padding: 70px 15px 15px
}

.testimonial-block .content-box {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 80px 30px 30px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border-radius: 20px;
    min-height: 260px;
}

.testimonial-block .content-box:before {
    position: absolute;
    width: 334px;
    height: 265px;
    right: 0;
    top: 0;
    background-image: url(../images/icons/border-dashed.png);
    background-repeat: no-repeat;
    content: ""
}

.testimonial-block .content-box .thumb {
    position: absolute;
    right: 40px;
    top: -40px;
    height: 100px;
    width: 100px;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    border-radius: 50%
}

.testimonial-block .content-box .thumb img {
    border-radius: 50%;
    width: 100px;
}

.testimonial-block .content-box .text {
    position: relative;
    font-size: 0.9rem;
    margin-bottom: 20px
}

.testimonial-block .info-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.testimonial-block .info-box .name {
    margin-bottom: 2px
}

.testimonial-block .info-box .name small {
    display: block;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* CSR Panel */
.csrPanel {
    position: relative;
    background: url(../images/csr-bg.jpg) right no-repeat;
    background-size: cover;
    min-height: 500px;
    padding-top: 3rem;
    color: #00554B;
}

.csrPanel h4 {
    margin: 1rem 0;
}

.csrtree {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    bottom: 0;
}

.development-slider h5 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #491c01;
}

.development-slider .slick-slide {
    margin: 1rem;
}

.development-slider .packageBox:hover {
    border-color: #00554B;
}

.development-slider .packageBox:hover h5 {
    color: #00554B;
}

.csrCont ul,
.csrCont ol {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    color: #00554B;
}

.csrCont li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
}

.csrCont li:before {
    position: absolute;
    content: '\EA67';
    font-family: "remixicon";
    font-size: 1.15rem;
    left: 0;
    top: 0;
    color: #00554B;
}

.csrCont li:last-child {
    margin-bottom: 0;
}

.csrCont2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.csrCont2 p {
    font-size: 1.15rem;
}

/* Jagannath Temple */
.ritualsPanel {
    position: relative;
    background: url(../images/1145421110.jpg) center no-repeat;
    background-size: cover;
    min-height: 500px;
    padding: 3rem 0 4rem;
}

.ritualsPanel:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(11, 45, 78, 0.9);
}

.ritualBox {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2rem 3rem;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.ritualBox .item {
    width: calc(50% - 2px);
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid #132a43;
    border-right: 1px solid #132a43;
}

.ritualBox .item:nth-child(even) {
    border-right: 0;
}

.ritualBox .item:nth-child(5),
.ritualBox .item:last-child {
    border-bottom: 0;
}

.ritualBox .item h3 {
    font-weight: 600;
    color: #4a4a4a;
}

.ritualBox .item small {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 0.75rem;
}

.groupCompany {
    background-color: #E4E4E4;
    padding: 2rem;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ESG Panel */
.esgPanel {
    position: relative;
    display: flex;
    align-items: center;
}

.esgContent {
    position: absolute;
    width: 100%;
    right: 0;
}

/* .esgImpact {
    background: url(../images/esg-company-impact.jpg) no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: 650px;
} */

.esgborder {
    border: 8px solid #b8e7f7;
    /* padding: 5rem; */
    position: relative;
    display: grid;
    align-items: center;
    min-height: 400px;
}

.esgImpactContent {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.esgImpactContent .iconPnl {
    width: 130px;
    height: 130px;
    position: relative;
    display: inline-block;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    border: 5px solid #16A085;
}

.esgImpactContent h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.esgabout {
    /* background: url(../images/environment.jpg) right bottom no-repeat;
    background-size: contain; */
    position: relative;
    /* padding-top: 3rem;
    padding-bottom: 3rem; */
}

.esgabout:after {
    position: absolute;
    content: '';
    background-color: #f1fad9;
    width: 30%;
    height: 100%;
    right: 0;
    bottom: 0;
}

.esgabout p:last-child {
    margin-bottom: 0;
}

.esgabout .content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.esgobejctive {
    position: relative;
    background: url(../images/objective-bg.jpg) no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
    min-height: 650px;
}

.esgobejctive h2 {
    border-bottom: 5px solid #fff;
    padding-bottom: 1rem;
}

.esgobejctive ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.esgobejctive ul li {
    margin-bottom: 0.75rem;
    color: #fff;
}

.esgobejctive .objectGlobe {
    position: absolute;
    right: -20%;
    top: 0;
    height: 110%;
}

.esgachivement {
    position: relative;
}

.esgachivement:before {
    background-color: rgb(248, 249, 250);
    position: absolute;
    content: '';
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
}

.socialfactor {
    color: #5E3A03;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: url(../images/social-factor.jpg) no-repeat;
    background-size: 100% 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.sustainModel {
    background: url(../images/process-flow-bg.jpg) right no-repeat;
    background-size: 45% 100%;
    position: relative;
    z-index: 1;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.sustainModelSection {
    position: relative;
}

.sustainModelSection:after {
    position: absolute;
    content: '';
    width: 30%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #1a5a49;
}

/* Waste Mangement */
.wastemanagementSection {
    position: relative;
}

.wastemanagementSection:after {
    position: absolute;
    content: '';
    width: 30%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #b3b369;
}

.wastemanagement {
    background: url(../images/background/waste-management-bg.jpg) no-repeat;
    background-size: 50% 100%;
    background-position: right center;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: 550px;
    z-index: 2;
}

.wastemanagement li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Carbon Footprint */

.carbonfootprint .border-success {
    border-color: #D2D168 !important;
}

/* Recycling Solutions */
.imgBorder {
    border: 20px solid #c2d97e;
    border-radius: 100%;
}

/* Contact Us */
.contactForm label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contactForm input,
.contactForm select,
.contactForm textarea {
    min-height: 50px;
    border-radius: 0.5rem;
    /* padding-left: 1.5rem; */
}

.contactDetails {
    border-radius: 0.5rem;
    background: var(--bg-color);
    padding: 0.5rem;
    position: relative;
    margin-left: -4rem;
}

.contactDetails iframe {
    display: block;
}

.innerMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    list-style: none;
}

.innerMenu li {
    margin: 0 0.5rem;
}

.innerMenu a {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1rem 1.75rem;
    /* border-radius: 1rem; */
    transition: all 0.3s ease-out;
    border: 1px solid var(--primary-color);
}

.innerMenu a.active,
.innerMenu a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}


.reportMain .tab-content {
    display: block;
    margin-bottom: 1.5rem;
    /* background: var(--white-color);
    border: 1px solid #A7B8D2; */
    padding: 1.5rem;
    /* box-shadow: 4px 4px 0 #A7B8D2; */
}

.reportMain .tab-content h3 {
    padding: 0.5rem 1rem;
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--white-color);
    margin-bottom: 1rem;
}


/* Left Menu for Investor */
.investorMain{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.investorMain .leftWidget {
    flex: 2;
    padding-right: 1.5rem;
}
.investorMain .investorPanel  {
    flex: 8;
    background: #e3e8f1;
    border-start-end-radius: 0.75rem;
    border-end-end-radius: 0.75rem;
}
.leftWidget ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.leftWidget li {
    margin-bottom: 0.75rem;
}

.leftWidget li:last-child {
    margin-bottom: 0;
}

.leftWidget li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black-color);
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 500;
    transition: all 0.4s;
    background-color: var(--bg-color);
    padding: 1rem 1.5rem;
    position: relative;
    /* border-radius: 4px; */
}

.leftWidget li a:hover,
.leftWidget li a:focus,
.leftWidget li a.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.leftWidget li a.active{
    border-start-start-radius: 0.5rem;
    border-end-start-radius: 0.5rem;
}

.leftWidget li a.active:before{
    position: absolute;
    content: '';
    width: 1.5rem;
    height: 100%;
    right: -1.5rem;
    background-color: var(--primary-color);    
}

.investorPanel .accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.investorPanel .accordion .accordion-item {
    border-radius: 0;
    display: block;
    margin-bottom: 1.5rem;
    background: transparent;
    border: 1px solid transparent;
    padding: 1.5rem;
    /* box-shadow: 4px 4px 0 #A7B8D2; */
}

.investorPanel .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.investorPanel .accordion .accordion-title {
    padding: 0.75rem 1rem;
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.investorPanel .accordion .accordion-title h5{
    margin: 0;
}

.investorPanel .accordion .accordion-title i {
    line-height: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.investorPanel .accordion .accordion-title.active {
    color: var(--white-color);
}

.investorPanel .accordion .accordion-title.active i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.investorPanel .accordion .accordion-content {
    display: none;
    position: relative;
    margin-top: 1rem;
}

.investorPanel .accordion .accordion-content.show {
    display: block;
}


/* About Us Panel */
.independantBox {
    position: relative;
    padding: 2rem;
    background-color: var(--bg-color2);
}

.independantBox:after {
    position: absolute;
    content: '';
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background-color: var(--white-color);
    right: 0;
    bottom: 0;
    width: 80px;
    height: 80px;
}

.btn-close {
    position: absolute;
    right: -0.5em;
    top: -0.5em;
    padding: 0;
    outline: none;
    box-shadow: none;
    border-radius: 2rem;
    opacity: 1;
    background: #ff0000;
    color: var(--white-color);
    line-height: 1;
    font-size: 1.75rem;
    width: 34px;
    height: 34px;
}
.btn-close:hover{
    color: var(--white-color);
    opacity: 1;
}

.aboutCompany{
    background-color: rgba(16, 63, 113, 0.8);
    color: var(--white-color);
    padding: 1.5rem 2.5rem;
}

[class^='imghvr-'],
[class*=' imghvr-'] {
  position: relative;
  display: block;
  margin: 0px;
  max-width: 100%;
  background-color: #f1f1f1;
  color: var(--primary-color);
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
[class^='imghvr-'] > img,
[class*=' imghvr-'] > img {
  vertical-align: top;
  max-width: 100%;
}
[class^='imghvr-'] figcaption,
[class*=' imghvr-'] figcaption {
  background-color: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  right: 0;
}
[class^='imghvr-'] h3,
[class*=' imghvr-'] h3,
[class^='imghvr-'] p,
[class*=' imghvr-'] p {
  margin: 0 0 0.75rem;
  padding: 0;
  color: #fff;
  font-size: 0.9rem;
}
[class^='imghvr-'] a,
[class*=' imghvr-'] a {
  color: var(--secondary-color);
}
[class^='imghvr-'],
[class*=' imghvr-'],
[class^='imghvr-']:before,
[class^='imghvr-']:after,
[class*=' imghvr-']:before,
[class*=' imghvr-']:after,
[class^='imghvr-'] *,
[class*=' imghvr-'] *,
[class^='imghvr-'] *:before,
[class^='imghvr-'] *:after,
[class*=' imghvr-'] *:before,
[class*=' imghvr-'] *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

[class^='imghvr-push-']:hover figcaption,
[class*=' imghvr-push-']:hover figcaption {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.imghvr-push-right figcaption {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.imghvr-push-right:hover > img {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.imghvr-push-right h4{
    min-height: 50px;
    font-size: 0.9rem;
}


.pattern-bg{
    background: var(--bg-color) url(../images/pattern.svg) no-repeat;
    background-position: right bottom;
    background-size: cover;
}


.otherCont ul,
.otherCont ol {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.otherCont li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
}

.otherCont li:before {
    position: absolute;
    content: '\EA67';
    font-family: "remixicon";
    font-size: 1.15rem;
    left: 0;
    top: 0;
}

.otherCont li:last-child {
    margin-bottom: 0;
}



/*Award Panel*/
.awardLeftMenu{
    position: relative;
    height: 400px;
    overflow-y: auto;
    border-left: 1px solid var(--primary-color);
}

/* width */
.awardLeftMenu::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.awardLeftMenu::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.awardLeftMenu::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
.awardLeftMenu::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.awardMain .nav-link {
    color: var(--primary-color);
    font-size: 1.15rem;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 1px;
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
    /* margin-top: 0.25rem;
    margin-bottom: 0.25rem; */
    border-radius: 0;
    font-weight: 500;
    border-left: 5px solid transparent;
}

.awardMain .nav-pills .nav-link.active {
    border-color: var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
}

.awardMain .tab-content {
    position: relative;
    font-size: 1.15rem;
    min-height: 400px;
}

.awardMain .tab-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.15rem;
}
.awardMain .tab-content ul, .awardMain .tab-content ol{
    padding-left: 20px;
}

.awardMain .tab-content li, .awardMain .tab-content p{
    margin-bottom: 1rem;
}

/* Leadership */
.leadershipMain{
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 thumbnails per row */
    gap: 30px;
    margin: auto;
}
.leadershipMain h5{
    font-weight: 600;
    font-size: 1rem;
}
.leadershipMain h5 small{
    font-size: 0.8rem;
}


/* Footer Panel */
footer {
    position: relative;
    background-color: var(--primary-color);
    padding: 3rem 0 2rem;
    color: var(--white-color);
    font-size: 0.9rem;
    /* margin-top: 3rem; */
}

.footerLogo {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9;
}

footer h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer .footerMenu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

footer .footerMenu li {
    list-style: none;
    width: 50%;
}

footer .footerMenu a {
    color: var(--white-color);
    font-size: 0.9rem;
    font-weight: 400;
    padding-bottom: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease-out;
}

footer .footerMenu a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}




/* =============================================== */
/* RESPONSIVE PANEL */
/* =============================================================== */
@media(max-width:3840px) {
    .bannerSlider {
        height: 60vh;
    }

    .hero-section {
        min-height: 650px;
    }
}

@media(max-width:2560px) {
    .bannerSlider {
        height: 70vh;
    }
}

@media(max-width:1920px) {
    .hero-section {
        min-height: 600px;
    }
}

@media(max-width:1600px) {
    .bannerSlider {
        height: calc(100vh - 196px);
    }

    .hero-section {
        min-height: 550px;
    }
}

@media(max-width:1440px) {
    .bannerSlider {
        height: calc(100vh - 196px);
    }

    .hero-section {
        min-height: 500px;
    }
}