﻿
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

.testimonial-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 20px auto;
}

.testimonial-video {
    flex: 1;
    min-width: 320px;
    max-width: 36%;
    height: 600px;
}

    .testimonial-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.testimonial-text {
    flex: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

    .testimonial-text .quote {
        font-size: 50px;
        line-height: 60px;
        font-weight: 500;
        margin-bottom: 40px;
        color: #000;
    }

    .testimonial-text .name {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #000;
    }

    .testimonial-text .designation {
        font-size: 18px;
        color: #666;
    }

.testimonial-title-text {
    margin: 15px 0px 15px;
    margin-top: auto;
}





.comparison-card {
    max-width: 1000px;
    margin: 30px auto;
    border-radius: 15px;
    overflow: hidden;
}

.top-section {
    display: flex;
    background: #fff;
    padding: 40px;
}

.left-box {
    flex: 1;
    padding-right: 20px;
    padding-top: 50px;
}

    .left-box h5 {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 10px;
        color: #000;
    }

    .left-box h2 {
        font-size: 42px;
        line-height: 50px;
        color: #000;
    }

.right-box {
    flex: 1;
}

.portfolio-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.portfolio-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.percentage {
    font-size: 18px;
    font-weight: bold;
}

    .percentage .up {
        color: green;
        font-size: 14px;
    }

.opportunity {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.rebalance-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

    .rebalance-info div p {
        font-size: 12px;
        color: #555;
    }

.rebalance-btn {
    background: #1da889;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.note {
    font-size: 11px;
    color: #888;
    margin-top: 8px;
}

.bottom-section {
    display: flex;
    align-items: center;
    background: #111;
    color: #fff;
    padding: 20px;
    position: relative;
}

.vs-circle {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border-radius: 50%;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #fff;
}

.traditional h4 {
    margin: 0;
    font-size: 16px;
}

.traditional p {
    margin: 5px 0 0;
    color: #bbb;
}



.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
/*.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 65%), rgb(0 0 0 / 0%));
}*/


.services {
    background: #000;
    color: #fff;
    padding: 50px 20px;
    text-align: left;
}

.service-cards {
    display: flex;
    flex-wrap: wrap; /* ✅ allow wrapping */
    gap: 20px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    flex: 1;
    min-width: 300px; /* ✅ prevents card from shrinking too small */
    overflow: hidden;
    transition: all 0.4s ease;
}

    .service-card:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        outline: 1px solid #fff;
        outline-offset: -20px;
        top: 0;
    }

    .service-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
        transform: scale(1);
        transition: all 0.5s ease;
    }

    .service-card .card-content {
        position: absolute;
        bottom: -100%;
        left: 0;
        width: 100%;
        padding: 40px;
        color: #fff;
        background: linear-gradient(to bottom, transparent 0%, black 100%);
        transition: bottom 0.5s ease;
    }

    .service-card:hover:after {
        outline-color: #c78909;
    }

    .service-card h3 {
        margin: 0;
        font-size: 28px;
        font-weight: bold;
    }

    .service-card p {
        margin: 10px 0 0;
        font-size: 20px;
        color: #fff;
        line-height: 24px;
    }

    .service-card:hover {
        border-color: #ffcc00;
    }

        .service-card:hover img {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .service-card:hover .card-content {
            bottom: 0;
        }

/* 🔥 Responsive Breakpoints */
@media (max-width: 1024px) {
    .service-card {
        flex: 1 1 calc(50% - 20px); /* 2 per row on tablets */
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%; /* full width on mobile */
        min-width: auto;
    }

        .service-card .card-content {
            padding: 30px;
        }

        .service-card h3 {
            font-size: 24px;
        }

        .service-card p {
            font-size: 16px;
        }
}


.sub-heading {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 50px;
}

.aboutus {
    position: relative;
    padding: 100px 0px;
    margin-bottom: 100px;
}

.about-text {
    margin-bottom: 50px;
}



/*------------------------------------header menu-----------------------------*/


.mxd-nav .menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
    margin-left: 45px;
}

.menu > .menu-item > a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    padding: 8px 0;
    display: inline-block;
    position: relative;
}

    .menu > .menu-item > a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        left: 2px;
        bottom: 2px;
        background: #ffffff;
        transition: 0.3s;
    }

    .menu > .menu-item > a:hover::after {
        width: 100%;
    }

.mxd-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    list-style: none;
    padding: 10px 0;
    /* margin: 10px 0px; */
    display: none;
    min-width: 250px;
    border-radius: 6px;
}

    .mxd-nav .submenu li a {
        color: #fff;
        padding: 8px 0px 8px 20px;
        display: block;
        text-decoration: none;
        font-size: 17px;
    }

        .mxd-nav .submenu li a:hover {
            background: rgba(255,255,255,0.1);
            color: #d4af37;
        }

.menu-item:hover .submenu {
    display: block;
}

.top-links {
    display: flex;
    align-items: center;
}

    .top-links a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        margin-left: 20px;
        transition: color 0.3s;
    }

        .top-links a:hover {
            color: #d4af37;
        }

.search-icon {
    font-size: 16px;
    margin-left: 20px;
    cursor: pointer;
    color: #fff;
}

    .search-icon:hover {
        color: #d4af37;
    }

.mxd-nav .menu-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-left: 6px;
    position: relative;
    text-align: center;
    line-height: 20px;
    /* margin-top: 10px; */
}

    .mxd-nav .menu-arrow::before {
        content: "›";
        font-size: 22px;
        color: #000000;
        transform: rotate(90deg);
        display: block;
        line-height: 30px;
        /* left: 10px; */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: -5px;
        /* margin: 0 auto; */
    }



.marquee__item:hover {
    animation-play-state: paused; /* Stop on hover */
}
/*--------------------------------------end-----------------------------------*/
.mxd-services-stack__title h3 {
    font-size: 6rem;
    font-weight: 600;
}

/*---------------------------------------footer----------------------------------*/
.custom-footer {
    background: #1c1c1c;
    color: #ddd;
    padding: 100px 20px 20px;
}

/* Grid Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

/* Logo */
.footer-logo {
    max-width: 100%;
    margin-bottom: 15px;
}

/* Columns */
.footer-col h4 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

    .footer-col h4::after {
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background: #ffffff; /* Yellow underline */
        margin-top: 6px;
    }

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

    .footer-col ul li {
        margin-bottom: 8px;
    }

        .footer-col ul li a {
            color: #bbb;
            text-decoration: none;
            transition: 0.3s;
            font-size: 22px;
        }

            .footer-col ul li a:hover {
                color: #f4b400;
                padding-left: 5px;
            }

/* Contact Info */
.footer-col p {
    margin: 6px 0;
    font-size: 20px;
    display: flex;
    align-items: baseline;
    word-break: break-all;
    color: #bbb;
}
.footer-col p a{
      color: #bbb;
      display: flex;
      align-items: baseline;
}
.footer-col p i {
    color: #ffffff;
    margin-right: 8px;
    font-size: 20px;
}

/* Social Icons */
.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #2e2e2e;
    color: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

    .footer-social a:hover {
        background: #f4b400;
        color: #111;
    }

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 80px;
    padding-top: 20px;
}

    .footer-bottom p {
        font-size: 18px;
        color: #aaa;
    }

.btn-caption {
    font-size: 22px;
}

.footer-text {
    margin-bottom: 20px;
}


.whatsapp {
    display: inline-block;
    position: fixed;
    right: 17px;
    bottom: 200px;
    background: limegreen;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff !important;
    text-align: center;
    line-height: 60px;
    z-index: 99999999999;
    animation: ripple-out 1.5s ease-in-out infinite;
}

    .whatsapp i {
        font-size: 32px;
    }

@keyframes ripple-out {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}





.hero-section {
    position: relative;
    background: url('../img/services/home-responsibleImg.jpg') no-repeat center center/cover;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50%;
    padding: 60px 0;
    margin-bottom: 40px;
}

.hero-content {
    max-width: 700px;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    background: linear-gradient(19.34deg, rgba(255, 255, 255, .02) .46%, rgba(255, 255, 255, .24) 93.22%);
    border-radius: 6px;
    border: 1px solid hsla(0, 0%, 100%, .2784313725);
    padding: 25px;
}

    .hero-content h5 {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        color: #ddd;
    }

    .hero-content h1 {
        font-size: 44px;
        font-weight: 500;
        line-height: 47px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
        color: #eee;
    }

.hero-link {
    display: inline-block;
    font-size: 16px;
    color: #e6a23c;
    text-decoration: none;
    border-bottom: 1px solid #e6a23c;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

    .hero-link:hover {
        color: #fff;
        border-color: #fff;
    }

/*-----------------------------------------end-----------------------------------*/




@media (min-width: 1200px) and (max-width: 1399.98px) {
    .menu-item {
        margin-left: 30px;
    }

    .menu > .menu-item > a {
        font-size: 16px;
        display: flex;
        align-items: center;
    }

    .mxd-header {
        width: -moz-calc(100% - 11.6rem);
        width: calc(100% - 11.6rem);
        display: flex;
        align-items: center;
    }

    .hero-05-title {
        font-size: 5rem;
        line-height: 55px;
    }

    .sub-heading {
        font-size: 22px;
    }

    .mxd-manifest {
        font-size: 3.4rem;
        line-height: 45px;
    }

    .mxd-stats-simple__inner {
        height: 215px;
    }

    .mxd-stats-number {
        font-size: 6rem;
    }

    .mxd-services-stack__title h3 {
        font-size: 4.5rem;
    }

    .testimonial-video {
        min-width: 220px;
        height: 380px;
    }

    .testimonial-text .quote {
        font-size: 35px;
        line-height: 35px;
    }

    .testimonial-text .name {
        font-size: 20px;
    }

    .testimonial-text .designation {
        font-size: 16px;
    }

    .testimonial-text {
        padding: 26px;
    }

    .footer-col p {
        font-size: 20px;
    }

    .footer-col ul li a {
        font-size: 20px;
    }

    .footer-col h4 {
        font-size: 24px;
    }

    .footer-col ul {
        gap: 0px;
    }

    .services h2 {
        font-size: 5rem;
    }
}



.expertise-section {
    background: #1c1c1c;
    color: #fff;
    padding: 100px 0px;
    margin-bottom: 70px;
}

.expertise-title h2 {
    font-size: 60px;
    font-weight: 500;
    border-top: 3px solid #fff;
    display: inline-block;
    padding-top: 15px;
}

.expertise-accordion {
    margin-top: 20px;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
    padding: 30px 0px;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    padding: 0px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .accordion-header .icon {
        font-size: 28px;
        transition: transform 0.3s ease;
        font-weight: 500;
    }

.accordion-body {
    display: none;
    padding: 10px 0 20px;
    font-size: 16px;
    color: #ddd;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .icon {
    content: "−";
    transform: rotate(180deg);
}

.accordion-body p {
    color: #fff;
    font-size: 19px;
}



/*-----------------------------------------features----------------------------------*/
.features-section {
    /* background: #fff; */
    padding: 60px 20px;
    position: relative;
    margin-top: -150px;
}

.features-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 15px 15px;
    /* text-align: center; */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1 1 220px; /* responsive width */
    max-width: 310px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .feature-card .icon {
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
        /* margin-left: auto; */
        /* margin-right: auto; */
    }

        .feature-card .icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .feature-card h3 {
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #000;
    }

    .feature-card p {
        font-size: 16px;
        color: #7f7e7e;
        line-height: 25px;
        font-weight: 400;
    }

/*------------------------------------------end----------------------------------------*/

.team-section {
    padding: 30px 0px 80px;
    position: relative;
}

.team-member {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
    background-color: #252525;
    padding: 30px;
    border-radius: 30px;
    /* align-items: center; */
}

.member-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #ffffff;
}

.member-info h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
        align-items: center;
    }

    .member-image img {
        width: 100%;
        height: 100%;
    }
}



.dir-title {
    text-align: left;
    margin-top: 20px;
}

    .dir-title h4 {
        font-size: 20px;
        color: #000000;
        margin-bottom: 6px;
    }

    .dir-title p {
        text-align: left;
        font-size: 14px;
        margin-bottom: 0px !important;
        line-height: 22px;
        color: #fff;
    }






.contact-section {
    position: relative;
    margin-top: 30px;
}

.contact-container {
    max-width: 720px;
}

.contact-title {
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 20px;
}

.contact-row {
    display: flex;
    margin-bottom: 12px;
}

    .contact-row .label {
        width: 180px;
        font-weight: 500;
        color: #fff;
        font-size: 21px;
    }

    .contact-row .text {
        flex: 1;
        color: #fff;
        line-height: 1.5;
        font-size: 21px;
    }

.mxd-section-inner-form {
    padding: 0px 0px 80px;
}


.letter-heading {
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px;
}

.salutation {
    margin: 0 0 20px;
    font-size: 16px;
}

.letter-text {
    margin: 0 0 18px;
    font-size: 17px;
    color: #fff;
}

.letter-container a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}


.csr-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.csr-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 35px;
}

.diamond-img {
    width: 500px;
    height: auto;
    margin: 0 0px;
    /* transform: rotate(45deg); */
    overflow: hidden;
    /* text-align: right; */
    border-radius: 10px;
}

    .diamond-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* transform: rotate(-45deg); */
    }

.csr-text p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.we-do {
    position: relative;
    padding: 50px 0px 80px;
}

.our-invesment {
    position: relative;
    padding: 50px 0px 80px;
}

.our-impact {
    position: relative;
    padding: 50px 0px 80px;
}

.letter-list {
    padding-left: 25px;
    padding-top: 20px;
}

    .letter-list li {
        margin-bottom: 15px;
        list-style: disc;
    }

        .letter-list li h4 {
            font-size: 22px;
            color: #fff;
            margin-bottom: 5px;
        }

        .letter-list li p {
            font-size: 17px;
            color: #fff;
        }

.letter-section h5 {
    font-size: 25px;
    margin-bottom: 5px;
}


/*------------------------------------------bredcrumb-----------------------------*/
.breadcrumb-banner {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    /* padding: 200px 0px; */
}


    .breadcrumb-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }


.banner-text {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}


    .banner-text .subheading {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: -10px;
        display: block;
    }


    .banner-text .heading {
        font-size: 45px;
        font-weight: 600;
        margin: 0;
        display: inline-block;
        position: relative;
    }


        .banner-text .heading::after {
            content: "";
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #f7a325;
        }

/*-------------------------------------------end----------------------------------*/

.milestone{
    position:relative;
   margin-bottom:14rem;
}

.pb-80{
    padding-bottom:80px !important;
}

.section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 0px;
      gap: 40px;
    }
    .text-and-chart {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 85px;
      width: 100%;
    }
    .text-block {
      /* max-width: 30%; */
    }
    .text-block h2 {
      font-size: 4rem;
      font-weight: 600;
      line-height: 1.4;
    }
    .text-block h2 span {
      font-weight: 800;
    }

    .text-block h5{
        font-weight: 300;
        font-size: 45px;
    }
    .cta-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 22px;
      background: #fff;
      color: #000;
      border-radius: 25px;
      font-size: 20px;
      text-decoration: none;
      font-weight: 500;
    }
    .chart-card {
      background: #1a1a1a;
      border-radius: 12px;
      padding: 20px;
      width: 500px;
    }
    .chart-title {
      font-size: 14px;
      margin-bottom: 10px;
      color: #bbb;
    }
    .chart-footer {
      font-size: 12px;
      margin-top: 10px;
      color: #999;
    }
    .disclaimer {
      font-size: 11px;
      color: #666;
      margin-top: 5px;
      text-align: right;
    }


    .timeline-img{
        border-bottom:3px solid #fff;
    }




    /*------------------------founder note--------------------*/
.founder-note-section {
    padding: 80px 0;
    position: relative;
    background-color: #000;
}


.founder-note-content {
    background: url('../img/aboutus/Founder-note.jpg') no-repeat center top;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.88);
    padding: 225px 20px 70px;
    font-size: 16px;
    line-height: 1.8;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.founder-note-section.zoomed {
    background-size: 150% 150% !important;
    background-position: center top !important;
    min-height: 600px !important;
}

.founder-note-content h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
    margin-top: 20px;
}

.founder-img {
    width: 400px;
    max-width: 100%;
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
    margin: 0 auto;
}

.founder-note-content p {
    margin-bottom: 14px;
    color: #000;
}

.signature-img {
    margin-top: 0px;
    max-width: 163px;
    height: auto;
    margin-bottom: 60px;
}

.f-note {
    margin-top: 30px;
}

.letter-text a{
    color:#000;
    font-weight:600;
}
.letter-text a:hover{
    color:#000 !important;
    font-weight:600;
}
/*--------------------------end---------------------------*/


/*---------------------------------------------responsive--------------------------*/
@media (max-width: 767px) {
    .hero-05-title {
        font-size: 34px;
        line-height: 43px;
        margin-bottom: 10px;
    }

    .sub-heading {
        font-size: 18px;
    }

    .mxd-services-stack__title h3 {
        font-size: 30px;
        font-weight: 600;
    }

    .services-stack {
        height: 50vh;
        min-height: 480px;
        margin-top: 30px;
    }

    .mxd-container.grid-container {
        padding: 0px;
    }

    .custom-footer {
        padding: 40px 20px 20px;
    }

    .mxd-container {
        padding: 5px;
    }

    .footer-col p {
        font-size: 17px;
    }

    .footer-col ul li a {
        font-size: 17px;
    }

    .footer-col h4 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .footer-col ul li {
        margin-bottom: 0px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .footer-container {
        gap: 20px;
    }

    .footer-bottom p {
        font-size: 15px;
    }

    .about-text {
        padding: 20px;
        margin-bottom: 10px;
    }

    .aboutus {
        position: relative;
        padding: 40px 0px;
    }

    .mxd-section.padding-pre-grid {
        padding-bottom: 5rem;
    }

    p.t-small-mobile {
        font-size: 20px;
    }

    .expertise-section {
        padding: 100px 20px;
    }

    .expertise-title h2 {
        font-size: 35px;
    }

    .accordion-header {
        font-size: 18px;
    }

    .accordion-item {
        padding: 20px 0px;
    }

    .accordion-body p {
        font-size: 17px;
    }

    .mxd-section.padding-pre-title {
        padding-bottom: 5rem;
    }

    .hero-content h1 {
        font-size: 35px;
        line-height: 43px;
    }

    .banner-text .heading {
        font-size: 30px;
    }

    .breadcrumb-banner {
        min-height: 380px;
    }

    .mxd-section.padding-default {
        padding-bottom: 4rem;
    }

    .holder-head {
        padding: 0px 20px;
    }

    .team-section {
        padding: 30px 0px 30px;
    }

    .inner-headline__title {
        font-size: 3.5rem;
    }

    p.t-large {
        font-size: 2rem;
    }

    .inner-headline__text {
        margin-top: 1.3rem;
    }

    .mxd-section-inner-headline {
        padding-top: 5rem;
        padding-bottom: 5rem !important;
    }

    .letter-heading {
        font-size: 30px;
    }

    .we-do {
        padding: 30px 0px 30px;
    }

    .mxd-page-content.inner-page-content {
        padding-top: 0.6rem;
    }

    .our-impact {
        padding: 30px 10px 30px;
    }

    .diamond-img {
        width: 100%;
        margin: 16px 0px;
    }

    .csr-title {
        font-size: 30px;
    }

    .mxd-section-inner-form {
        padding: 0px 0px 30px;
    }

    .mxd-logo__image {
        width: 18.6rem;
    }
    .mxd-section.padding-stacked-section {
        padding-bottom: 5.1rem;
    }

    .features-section {
        margin-top: -80px;
     
    }
}

/*-------------------------------------------end------------------------------------*/

