/* ===========================================
       ROOT FONT SCALE (em/rem responsive sizing)
    ============================================ */
:root {
    font-size: 1rem; /* 16px default */
}

@media (max-width: 1024px) {
    :root {
        font-size: 0.75rem; /* 12px tablet */
    }
}

@media (min-width: 1440px) {
    :root {
        font-size: 1.25rem; /* 20px large desktop */
    }
}



/*Container */

@media (min-width: 1440px) {
    .container {
        width: 1400px;
    }
}

.container {
    max-widh:1400px;
    padding:0 24px;
    margin:auto;
}

.garnet-logo {
    height: 36px;
    margin: 18px 0;
}

/*Headder top action Buttons*/
.garnetheader .row-top {
    .hd-right-actions {
        background: #7F6E66;
        margin-top: 30px;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        padding: 10px 30px;
        .caret {
            width: 8px;
            height: 8px;
            margin-top: -2px;
            border: 0;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            transform: rotate(45deg);
        }
        .dropdown-menu {
            border: 0;
            border-top: 1px solid #efefee;
            li a {
                background: #7F6E66;
                color: #fff;
            }
        }
    }
    .btn-primary {
        height: auto;
        padding: 0;
        margin: 0;
        border: 0;
        background: none;
    }
    #vertical-line {
        padding-right: 18px;
        padding-left: 18px;
        font-size: 12px;
        font-weight: normal;
    }
}

/*Navigation Bar*/
.menutop {
    background: #474645;
    height: 75px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    .navbar-garnet {
            margin-left: 50px;
            position:relative;
            z-index: 100;
            .navbar-nav {
                display: flex;
                justify-content: space-between;
                list-style: none;
                padding: 0;
                margin: 0;
                li {
                    position:initial;
                    margin-left: 2.3rem;
                    a {
                        color: #ffffff;
                        padding:0.6rem 1.5rem 0.6rem 1rem;
                        font-weight: 700;
                        font-size: 0.8rem;
                        line-height: 100%;
                        text-align: center;
                        font-family:Helvetica;
                        margin:0;
                        position: relative;
                        .caret {
                            content: '';
                            position: absolute;
                            right: 8px;
                            top: 15px;
                            width: 7px;
                            height: 7px;
                            border:0;
                            border-right: 2px solid #fff;
                            border-bottom: 2px solid #fff;
                            transform: rotate(45deg);
                        }
                    }   
                    &.active a {
                        border-top-left-radius: 4px;
                        border-top-right-radius: 4px;
                        background: #7F6E66;
                        color:#fff;

                    }
                    .dropdown-menu {
                        position: absolute;
                        top: calc(100% + 10px);
                        left: 0;
                        width: 100vw; /* full viewport width */
                        margin-left: calc(-50vw + 48%); /* shifts it so it starts from window left */
                        background: #7F6E66;
                        display: none;
                        z-index: 999;
                        justify-content:center;
                        border:0;
                        li {
                            padding:10px;
                            &.divider {
                                display:none;
                            }
                            a {
                                font-weight: 700;
                                font-family:Helvetica;
                                font-size: 0.8rem;
                                text-align: center;
                                color:#fff;
                                &:hover {
                                    background: #0000001A;
                                    border-radius:4px;
                                }
                              }
                           }
                        }
                        &.open {
                            a:hover, a:focus {
                                border-top-left-radius: 4px;
                                border-top-right-radius: 4px;
                                background: #7F6E66;
                                color:#fff;
                            } 
                            .dropdown-menu {
                                display:flex;
                                margin-top: 10px;
                            }
                        }
                    }
            }
        
    } 
}

.garnet-mobile-logo {
    text-align: center;
    height: 75px;
    .img1 {
        height: 24.5px;
        margin: 0.8rem 0 0.5rem 0;
    }
    .img2 {
        height: 17px;
        margin: 0;
    }
}

.navbar-responsive-mb {
    background: #474645;
    .dropdown {
        padding: 1rem 2rem;
        color: #FFFFFF;
        a {
            font-family: Helvetica;
            font-weight: 700;
            font-size: 1.25rem;
            text-align: center;
            color: #FFFFFF;
            padding: 0 0.5rem
        }
    }
}

.navbar-header {
    .navbar-toggle {
        border: none;
        background: transparent !important;
        margin: 1rem 2rem 0;
        span {
            background: #fff;
            display: block;
            height: 2px;
            margin: 5px 0;
            width: 22px;
        }
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .navbar-responsive-mb {
        .dropdown {
            text-align: right;
        }
    }
}

@media (max-width: 1023px) {
    
    .menutop {
        display: block;
        position: absolute;
        width: 100%;
        height: 0;
        .navbar-garnet {
            margin: 0 -24px;
            position: relative;
            z-index: 100;
            .navbar-nav {
                background: #7F6E66;
                display:block;
                li {
                    margin: 0;
                    padding: 0 0 0 1rem;
                    border-bottom: 1px solid #00000033;
                    a {
                        display: block;
                        text-align: left;
                        padding: 1rem 2rem;
                        .caret {
                            right: 1.5rem;
                        }
                    }
                    .dropdown-menu {
                        position: static;
                        width: 100%;
                        margin: 0;
                        li {
                            padding: 0 0 0 2rem;
                            a {
                                padding: 1rem 2rem;
                            }
                        }
                    }
                    &.open {
                        border-bottom: 0;
                        .dropdown-toggle.top-menu {
                            border-bottom: 1px solid #00000033;
                        }
                        .dropdown-menu {
                            display: block;
                            border-top-left-radius: 0px;
                            border-top-right-radius: 0px;
                            margin: 0;
                        }
                    }
                }
            }
        }
    }
    .navbar-responsive-mb {
        .dropdown {
            position:relative;
            &.open {
                .btn-primary {
                    background: #7F6E66;
                }
            }
            .btn-primary {
                padding: 2px 10px;
                min-width: auto;
                height: auto;
                background: none;
                border: 0;
                width: auto;
                margin: 0;
                border-top-left-radius: 4px;
                border-top-right-radius: 4px;
                background: #7F6E66;
                color: #fff;
                position: absolute;
                right: 20px;
                top: 9px;
                .caret {
                    width: 7px;
                    height: 7px;
                    margin-top: -2px;
                    border: 0;
                    border-right: 2px solid #fff;
                    border-bottom: 2px solid #fff;
                    transform: rotate(45deg);
                }
            }
            .dropdown-menu {
                width: auto;
                min-width: auto;
                background: #7F6E66;
                color: #fff;
                top: 37px;
                border: 0;
                right: 20px;
                border-radius: 5px;
                li a {
                    padding: 0.5rem 1rem;
                    text-align: left;
                    font-size: 1rem;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                }
            }
        }
    }
}

    .banner-container {
        background: url(images/gems.png) left 240px no-repeat #474645;
        padding: 20px;
    }
    /* ===========================================
       HERO SECTION
    ============================================ */
    .hero {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        padding: 0;
        border-radius: 0.6rem;
        overflow: hidden;
        box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1);
    }

    .hero-left {
        flex: 1;
        background-color: #7b5a52;
        color: #fff;
        padding: 2rem;
        position: relative;
        border-radius: 10px;
    }

        .hero-left img {
            position: absolute;
            left: 0;
            top: -40px;
            width: 100%;
            opacity: 0.8;
        }

        .hero-left .img1 {
            width: auto;
            top: 50%;
            left: 40%;
        }

        .hero-left h1 {
            font-size: 2rem;
            line-height: 1.3;
            position: relative;
            z-index: 1;
            color: #FFFFFF;
            font-weight: 300;
        }

    .hero-right {
        flex: 2;
        padding: 2.5rem;
        border-radius: 10px;
        background: #fff;
        color: #474645;
        font-weight: 300;
    }

        .hero-right h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 300;
            color: #474645;
        }

        .hero-right p {
            font-size: 1rem;
            margin-bottom: 0.6rem;
        }

    .rgt-sec-mob {
        display: none;
    }

    @media (max-width: 768px) {
        .banner-container {
            padding: 1.25rem 0;
        }

        .hero-right {
            display: none;
        }

        .hero-left {
            padding: 1.5rem 2rem;
            height: 240px;
            h1 {
            margin: 1.75rem 0 1.25rem;
            font-size: 1.5rem;
            br {
                display: none;
            }
        }
        img {
            position: absolute;
            left: -24px;
            top: 17px;
            width: 100%;
            opacity: 0.8;
        }
        .img1 {
            width: 15%;
            top: 55%;
            left: 7%;
        }
        .rgt-sec-mob {
            display: block;
            padding: 0.5rem 0;
            &.center-align {
                text-align: center;
                font-size: 1.75rem;
            }
            &.right-align {
                text-align: right;
            }
        }
    }
}
    /* ===========================================
       STATS SECTION
    ============================================ */
    .stats {
        background: #fff;
        margin: 1rem 0;
        padding: 2.5rem 1.5rem;
        border-radius: 0.6rem;
        text-align: center;
        box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.05);
    }

    .stats h3 {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .stats-grid {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-item {
        flex: 1 1 200px;
    }

    @media (max-width: 768px) {
        .stat-item {
            flex: 1 1 20%;
        }
    }

    .stat-item i {
        font-size: 2rem;
        color: #b32128;
        margin-bottom: 0.5rem;
        display: block;
    }

    .stat-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .stat-item p {
        font-size: 0.9rem;
        color: #555;
    }

    .loan-section-container {
        background: #F7F4F4;
        padding-bottom: 4rem;
        .service-section {
            margin-top: 1.5rem;
        }
        .assets-slogan {
        font-family: Helvetica;
        font-weight: 300;
        font-size: 2rem;
        line-height: 100%;
        text-align: center;
        margin: 50px auto 40px;
        color: #474645;
    }
    .loan-section-heading {
        font-family: Helvetica;
        font-weight: 700;
        font-size: 1.25rem;
        line-height: 100%;
        letter-spacing: 0px;
        text-align: center;
        text-transform: uppercase;
        color: #474645;
    }
    .assets-card-section {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 2rem;
          max-width: 1200px;
          margin: 0 auto;
        .assets-card
        {
            background-color: #fff;
            border-radius: 0.5rem;
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
            flex: 1 1 calc(25% - 2rem);
            max-width: 16rem;
            text-align: center;
            padding: 2rem 1rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            &:hover
            {
                transform: translateY(-0.3rem);
                box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            }
            .icon {
                  width: 3.5rem;
                  height: 3.5rem;
                  border-radius: 50%;
                  background-color: #b32128;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  margin: 0 auto 1rem;
                  img {
                        width: 70%;
                        height: auto;
                 }
            }
            h3 {
              font-size: 1rem;
              font-weight: 600;
              margin-bottom: 0.5rem;
            }
            p {
              font-size: 0.8rem;
              color: #555;
              margin-bottom: 1.5rem;
            }
            a {
              display: inline-flex;
              align-items: center;
              justify-content: center;
              gap: 0.3rem;
              background-color: transparent;
              color: #b32128;
              border: 0.1rem solid #b32128;
              padding: 0.5rem 1.2rem;
              border-radius: 0.25rem;
              font-weight: 600;
              font-size: 0.8rem;
              cursor: pointer;
              transition: background-color 0.2s ease, color 0.2s ease;
            }
            a:hover {
              background-color: #b32128;
              color: #fff;
            }

        }
        /* =========================================
               RESPONSIVE LAYOUT
            ========================================== */
        @media (max-width: 1024px) {
            .assets-card {
                /* flex: 1 1 calc(50% - 2rem);*/
                width: calc(50% - 2rem);
                max-width: 98%;
            }
            .assets-card-section {
                margin: 0 2rem 0 1rem;
            }
        }

        @media (max-width: 600px) {
            .assets-card {
                flex: 1 1 100%;
                max-width: 94%;
                padding: 2rem 3rem;
            }
        }
    }
    @media (max-width: 1024px) {

        .assets-card-section {
            margin: 0 1.5rem 0 1rem;
        }
        .assets-slogan {
            font-size: 2rem;
            margin: 25px 2rem 20px;
        }
    }
}


/* ======================================
       MEET THE EXPERTS SECTION
    ====================================== */
.experts-section {
    background: url(../../../images/home/gems-middle.png) left bottom no-repeat #7F6E66;
    padding: 2rem 6rem;
    position: relative;
    .experts-header {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 600;
        margin:0;
        margin-bottom: 2rem;
        text-shadow: -2px 2px 2px #00000080;
        color: #fff;
        font-family: Helvetica;
        font-weight: 700;
        font-size: 1.75rem;
        }
        .experts-grid {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            gap: 1.5rem;
    }
        .management-lft-sec {
            display: flex;
            flex: 1 1 100%;
            gap: 0.8rem;
        }
        .expert-card {
            background: #fff;
            border-radius: 0.5rem;
            flex: 1 1 calc(33.333% - 1rem);
            text-align: center;
            overflow: hidden;
            box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
            position: relative;
        }
        .expert-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        .expert-info {
            padding: 1rem;
            text-align: left;
            position:relative;
        }
            .expert-info h3, .expert-info h3 a {
                color: #C41230;
                font-size: 1rem;
                margin-bottom: 0.7rem;
                text-decoration: underline;
            }
        .expert-info p {
            font-size: 0.9rem;
            color: #555;
            margin: 0.2rem 0;
        }
        .expert-arrow-box {
            width: 1.5rem;
            height: 1.5rem;
            background: #fff;
            border: 2px solid #C41230;
            border-radius: 1rem;
            position: absolute;
            top: -0.7rem;
            z-index: 9999;
            right: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .expert-arrow {
            color: #C41230;
            font-size: 1rem;
        }
    }
/* Right-side box (Meet Full Team) */
    .team-cta {
            background: none;
            text-align: center;
            flex: 1 1 40%;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            .inr {
                display: flex;
                width: 90%;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
            }
            p {
                font-size: 1.25rem;
                margin-bottom: 2rem;
                font-family: Helvetica;
                font-weight: 400;
                color:#fff;
                text-shadow: -2px 2px 2px #00000080;
            }
    }

    .btn-red {
        border: 2px solid #C41230;
        background: #fff;
        color: #040404;
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        cursor: pointer;
        transition: background 0.2s ease;
        font-weight: 700;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        svg {
            color:#C41230;
        }
        &:hover {
            background: #C41230;
            color: #fff;
            svg {
                color:#fff;
            }
        }
    }

    /* Slick CSS */
.slick-dots {
    li {
        width: 8px;
        height: 8px;
        border-radius: 8px;
        background: #C4C4C4;
        &.slick-active {
            background: #000;
        }
        button {
            display:none;
        }
    }
}
    .slick-list {
        .slick-track {
            display: flex;
            gap: 1.5rem;
        }
     }

@media (max-width: 1023px) {
    .experts-section {
        .experts-grid {
            display:block;
        }
        .expert-card {
            flex-wrap:wrap;
        }
    }
    .team-cta {
        .inr {
            display: block;
            width: auto;
            padding {
                    margin-bottom: 8px;
            }
        }
    }
}

    /* ======================================
       STAY INFORMED SECTION
    ====================================== */
    .informed-section {
        padding: 2rem;
    }

    .informed-header {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 2rem;
    }

    /*.info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}*/

    .info-card {
        background: #fff;
        border-radius: 0.5rem;
        flex: 1 1 calc(33.333% - 1rem);
        box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
        overflow: hidden;
        transition: transform 0.2s ease;
        .btn-red {
        margin: 0rem 1.2rem 1rem;
    }
}

    .info-card:hover {
        transform: translateY(-0.3rem);
    }

    .info-card img {
        width: 100%;
        height: 10rem;
        object-fit: cover;
    }

.info-content {
    padding: 1rem 1.2rem;
    height: 10rem;
}

    .info-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .info-content p {
        font-size: 0.9rem;
        color: #555;
    }

.btn-outline {
    display: inline-block;
    color: var(--red);
    border: 0.1rem solid var(--red);
    background: transparent;
    padding: 0.5rem 1.2rem;
    border-radius: 0.25rem;
    margin: 1rem 1.2rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .btn-outline:hover {
        background: var(--red);
        color: #fff;
    }

@media (max-width: 1024px) {
    .info-card {
        flex: 1 1 100%;
        max-width: 35%;
        .info-content {
            height: 12rem;
            text-align: left;
        }
    }
    .info-grid {
        .slick-slide {
            text-align: center;
        }
    }
}
@media (max-width: 767px) {
    .info-card {
        max-width: 100%;
    }
}

    /* ====================================================
       CONTACT SECTION WRAPPER
    ==================================================== */
    .contact-section {
        background: #D9D9D9;
        margin: 2rem auto;
        .inr-contact {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2rem;
        justify-content: space-between;
    }


/* ====================================================
       LEFT SIDE - CONTACT INFO
    ==================================================== */
.contact-info {
    flex: 1 1 40%;
    color:#040404;
    font-size:1rem;
    h2 {
           font-size:2rem;
           color:#000;
       }

    p {
        margin: 0.3rem 0 2rem;
    }
    strong {
        font-weight: 700;
        font-size:1.25rem;
        margin-bottom:2rem;
    }
    .info-item {
        display: flex;
        align-items: flex-start;
        margin: 1rem 0;
        gap:1rem;
        i {
            color: #b32128;
            font-size: 1rem;
            margin-top:0.2rem;
        }
        span {
           margin-top: -0.2rem;
        }
    }
    .linkedin-icon {
        margin-top: 1rem;
        display: inline-block;
        background: #0077b5;
        color: #fff;
        font-size: 1.2rem;
        width: 2rem;
        height: 2rem;
        border-radius: 0.25rem;
        text-align: center;
        line-height: 2rem;
        text-decoration: none;
    }
}
/* ====================================================
       RIGHT SIDE - CONTACT FORM
    ==================================================== */
    .contact-form {
        flex: 1 1 50%;
        background: #fff;
        border-radius: 0.5rem;
        border: 1px solid #D9D9D9;
        padding: 1.5rem;
        text-align: center;
        .form-group {
            margin-bottom: 1.2rem;
            label {
                display: block;
                font-size: 0.9rem;
                margin-bottom: 0.4rem;
                font-weight: 500;
                color:#1E1E1E;
                text-align:left;
            }
            input, textarea {
                width: 100%;
                padding: 0.7rem;
                border: 1px solid #ddd;
                border-radius: 0.25rem;
                font-size: 0.9rem;
                font-family: inherit;
                resize: vertical;
            }
            textarea {
                height: 5rem;
            }
        }
    }
    .recaptcha {
        margin: 1rem 0;
    }

    .btn-submit {
        display: inline-block;
        background: transparent;
        color: #b32128;
        border: 1.5px solid #b32128;
        padding: 0.6rem 1.5rem;
        border-radius: 0.25rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .btn-submit:hover {
            background: #b32128;
            color: #fff;
        }
}

/* ====================================================
       RESPONSIVE DESIGN
    ==================================================== */
@media (max-width: 768px) {
    .contact-section .inr-contact {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-info,
    .contact-form {
        flex: 1 1 100%;
    }
}


.bottom-header {
    margin: 0;
    padding-bottom: 2rem;
    h2 {
        font-family: Helvetica;
        font-weight: 700;
        font-size: 1.25rem;
        text-align: center;
        color:#474645;
        margin-top: 0;
    }
    .bottom-area {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
        img {
            width: auto;
            height: 3.2rem;
            }
    }
}
@media (max-width: 767px) {
    .bottom-header {
        .bottom-area {
            img {
                height: 2.5rem;
            }
        }
    }
}
    .footer-bttm {
        background: #474645;
            .footer-image-box {
            height: auto;
            margin: 2rem 0 0.5rem;
            width: 100%;
            text-align:center;
        }
    .footer-col-container {
        display: flex;
        width: 100%;
        justify-content: space-around;
        color: #fff;
        ul {
            margin:0;
            padding:0;
            list-style:none;
            li {
                   text-align: center;
                   font-family: Helvetica;
                   font-weight: 400;
                   font-size: 0.8rem;
                   line-height: 24px;
                   text-align: center;
                   color:#fff;
                   padding: 0.3rem 0;
                   a {
                        color:#fff;
                        text-decoration:none;
                     }
                   h3 {
                        color:#fff;
                        font-family: Helvetica;
                        font-weight: 700;
                        font-size: 1rem;
                        margin-bottom:1rem;
                    }
                
            }
        }
    }
}
@media (max-width: 767px) {
    .footer-bttm {
        .footer-image-box {
            img {
                width: 90%;
            }
        }
        .footer-col-container {
            flex-direction: column;
            align-items: center;
            ul {
                margin-bottom: 0rem;
                ul li {
                    padding-bottom:0;
                }
            }
        }
    }
}


    .required::after {
        content: " *";
        color: red; /* Example styling */
        font-weight: bold; /* Example styling */
    }

    .captcha-handler {
        display: flex;
        justify-content: center;
    }

    .success-msg {
        margin: 0;
        color: green;
    }

/* PreRegister Submit Button */
@media screen and (min-width: 320px) and (max-width: 1024px) {
    .pre-register-submit {
        margin-left: 170px;
        display: block;
    }
}



/* ============= Auction line css ============= */
.currentOfferingheader {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    .auction-header {
        font-family: Helvetica;
        font-weight: 300;
        font-size: 2rem;
        color:#474645;
    }
    .badge {
        display:none;
    }
    
}
.auctionline_detail_container {
    h1.auction-hdr {
        font-family: Helvetica;
        font-weight: 300;
        font-size: 2rem;
        letter-spacing: 0.75%;
        margin: 1.5rem 0;
        color: #474645;
    }
     .currentofferings {   
        border-radius: 10px;
        padding: 2rem;
        box-shadow: 0px 4px 8px 3px #00000026;
        margin-bottom: 2rem;
        table {
            thead {
                th {
                    padding: 12px 20px;
                    background: #7F6E66;
                    font-family: Helvetica;
                    font-weight: 700;
                    font-size: 0.8rem;
                    color: #fff;
                }
            }
            tbody {
                td {
                    color: #474645;
                    font-family: Helvetica;
                    font-weight: 400;
                    font-size: 0.8rem;
                    padding: 28px 20px;
                    button.w3-button {
                        box-shadow: -1px 1px 1px 0px #00000040;
                        border: 1px solid #C41230;
                        color: #040404;
                        padding: 8px 14px;
                        border-radius: 5px;
                        font-family: Helvetica;
                        font-weight: 700;
                        font-size: 0.8rem;
                        .dwnArrow {
                            color: #C41230;
                        }
                        .caret {
                            border: 0;
                            margin: -18px 5px 0;
                        }
                    }
                    div.w3-button, a.w3-button, .w3-dropdown-content {
                        background: #7F6E66;
                        font-weight: 700;
                        font-family: Helvetica;
                        font-size: 0.6rem;
                        color: #fff;
                        right: 3rem;
                        padding: 4px 0.5rem;
                        border-radius: 5px;
                        a {
                            color: #fff;
                            padding: 4px 0.5rem;
                            display: block;
                        }
                       /* .auction-line-action-items {
                            border-bottom: 1px solid #efefef;
                        }
                        .auction-line-action-items:last-child {
                            border: 0;
                        }*/
                    }
                }
            }
            tr:nth-child(odd) {
              background-color: #F7F4F4;
            }
            tr:nth-child(even) {
              background-color: #ffffff;
            }
        }
    }
}

@media (max-width: 1023px) {
    #currentOfferingsMobile {
        .auction-box {
            margin: 0 auto 1rem;
        }
    }
.currentOfferingheader {
    
    .auction-header {
        padding: 1rem 1rem 0;
    }
}
.auctionline-panel-body {
    box-shadow: 0px 6px 20px 6px #0000001a;
    border-radius: 10px;
    background: #fff;
    width: 88%;
    margin: auto;
    padding: 1rem;
    .panel-heading {
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    .panel-body {
        font-size: 1.25rem;
        line-height: 2rem;
        font-weight: 300;
    }
    button.w3-button {
        box-shadow: -1px 1px 1px 0px #00000040;
        border: 1px solid #C41230;
        color: #040404;
        padding: 4px 14px;
        border-radius: 5px;
        font-family: Helvetica;
        font-weight: 700;
        font-size: 1rem;
        margin-top: 1rem;
            .dwnArrow {
                color: #C41230;
            }
            .caret {
                border: 0;
                margin: -20px 5px 0;
            }
        }
        .w3-dropdown-content {
            background: #7F6E66;
            font-weight: 700;
            font-family: Helvetica;
            font-size: 1rem;
            text-align: left;
            color: #fff;
            border-radius: 5px; 
            padding: 4px 0.5rem;
            a {
                color: #fff;
                padding: 0;
            }
        }
    }
    #currentOfferingsMobile {
        h1 {
            font-family: Helvetica;
            font-weight: 300;
            font-size: 2rem;
            margin: 1.5rem 2rem;
            color: #474645;
        }
    }
}

table.dataTable thead th.sorting:after {
    font-family: FontAwesome;
    content: "\f0dc";
    color: #fff;
    font-size: 0.5rem;
    margin-left: 0.4rem;
}

/*Contact Us*/
.contact-us {
    background: #F7F4F4;
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
    .top-section {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 0.8rem;
        color: #474645;
        margin-bottom: 2rem;
        h1 {
            font-weight: 300;
            font-size: 2rem;
            margin: 0 0 1rem;
            color: #474645;
        }
        h2 {
            font-weight: 700;
            font-size: 1rem;
            margin: 0 0 1rem;
            color: #474645;
        }
        p {
            padding: 0;
            margin: 0;
        }
    }
    .contact-section {
        background: #fff;
        margin: 2rem auto;
        border-radius: 0.5rem;
        box-shadow: 0px 4px 8px 3px #00000026;
        padding: 2rem 5rem;
        .contact-info {
            color: #040404;
            font-size: 0.9rem;
            width: 75%;
            p {
                font-size: 0.8rem;
                margin: 0 0 1rem;
            }
        }
    }
}

@media (max-width: 767px) {
    .contact-us {
        .top-section {
            font-size: 1rem;
            padding: 0 1rem;
        }
        .contact-section {
            padding: 2rem 2rem;
            .contact-info {
                font-size: 1rem;
                width: 100%;
                margin-bottom: 2rem;
                p {
                  font-size: 1rem;
                }
            }
        }
    }
}



/*About Us CSS*/

.firmoverview {
    width: 100%;
    background: #474645;
    padding: 1rem 0 0;
    margin-bottom: 2rem;
    .video-box {
        padding: 2rem;
        border-radius: 1rem;
        background: #fff;
        display: flex;
        align-items: center;
        gap: 2rem;
        font-family: Helvetica;
        font-weight: 400;
        font-size: 0.8rem;
        color: #474645;
        h1 {
            font-weight: 300;
            font-size: 2.4rem;
        }
        h1, h2, p {
            margin-bottom: 1rem;
        }
        h2 {
            font-weight: 300;
            font-size: 1.8rem;
        }
        .lft-sec {
            width: 40%;
        }
        .rgt-sec {
            width: 60%;
            img {
                width: 100%
            }
        }
    }
    .chart-two-box {
        display: flex;
        gap: 3rem;
        margin: 2rem 0;
        .bx {
            padding: 2rem 1.5rem;
            border-radius: 8px;
            background: #FFFFFF;
            box-shadow: 0px 1px 2px 0px #0000004D;
            width: 50%;
            h2 {
                color: #474645;
                font-weight: 400;
                font-size: 1.2rem;
                margin-top: 0;
                margin-bottom: 2rem;
            }
        }
    }
    .chart-single-box {
        display: flex;
        margin: 2rem 0;
        .bx {
            padding: 2rem 1.5rem;
            border-radius: 8px;
            background: #FFFFFF;
            box-shadow: 0px 1px 2px 0px #0000004D;
            width: 100%;
            h2 {
                color: #474645;
                font-weight: 400;
                font-size: 1.2rem;
                margin-top: 0;
                margin-bottom: 2rem;
                text-align: center;
            }
        }
    }
    .chart-single-center-box {
        display: flex;
        margin: 2rem 0;
        justify-content: center;
        .bx {
            padding: 2rem 1.5rem;
            border-radius: 8px;
            background: #FFFFFF;
            box-shadow: 0px 1px 2px 0px #0000004D;
            width: 50%;

            h2 {
                color: #474645;
                font-weight: 400;
                font-size: 1.2rem;
                margin-top: 0;
                margin-bottom: 2rem;
                text-align: center;
            }
        }
    }
    .prod-box {
        background: #FFFFFF;
        border-radius: 1rem;
        display: flex;
        padding: 2rem 1.5rem 1rem;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 1rem;
        img {
            width: 2.5rem;
            height: 2.5rem;
        }
        .bx {
            text-align: center;
            font-family: Helvetica;
            font-weight: 700;
            font-size: 0.7rem;
            color: #474645;
            .img-bx {
                display: flex;
                justify-content: center;
            }
            h3, p {
                margin-bottom: 1.5rem;
            }
            h3 {
                font-family: Helvetica;
                font-weight: 400;
                font-size: 1.2rem;
            }
        }
    }
    /*Philosophy section*/
    .phiosophy-sec {
        background: url(../../../images/home/gems.png) left -20% no-repeat #7F6E66;
        padding: 2rem 1rem;
        display: flex;
        gap: 60px;
        h2 {
            font-family: Helvetica;
            font-weight: 700;
            font-size: 1.5rem;
            text-align: center;
            color: #fff;
            text-shadow: 0px 4px 8px #00000026;
            margin: 0 0 2rem;
        }
        .philosophy-bx {
            display: flex;
            gap: 2rem;
            justify-content: center;
            .inr {
                width: 20rem;
                background: #fff;
                padding: 2rem;
                border-radius: 8px;
                font-family: Helvetica;
                font-weight: 700;
                font-size: 0.7rem;
                color: #474645;
                text-align: center;
                h3 {
                    font-weight: 700;
                    font-size: 1rem;
                    text-align: center;
                    margin: 0.5rem 0 1rem;
                    color: #474645;
                }
                li {
                    margin-bottom: 0.5rem;
                    text-align: left;
                }
            }
        }
    }

    .touch-market-sec {
        background: #F7F4F4;
        position: relative;
        z-index: 1;
        &::after {
            z-index: -1;
            content: '';
            position: absolute;
            top: 0%;
            left: 0%;
            width: 100%;
            height: 100%;
            background: url(../../../images/home/gems1.png) center center no-repeat;
            opacity: 0.1;
            background-size: cover;
        }
        .inr {
            padding: 3rem;
            .one-bx {
                display: flex;
                justify-content:center;
            }
            .two-bx {
                display: flex;
                gap: 3rem;
                margin-bottom: 3rem;
            }
        }
        h2 {
            font-weight: 700;
            font-size: 1.8rem;
            text-align: center;
            margin: 0 0 3rem;
            color: #474645;
        }
        .graph-col {
            padding: 2rem;
            border-radius: 8px;
            background: #FFFFFF;
            box-shadow: 0px 4px 8px 3px #00000026;
            color: #474645;
            font-family: Helvetica;
            font-weight: 400;
            font-size: 0.8rem;
            width: 50%;
            h3 {
                font-family: Helvetica;
                font-weight: 700;
                font-size: 1rem;
                margin: 0 0 1rem;
            }
            h6 {
                font-family: Helvetica;
                font-weight: 700;
                font-size: 0.8rem;
                margin: 0 0 1rem;
            }
            p {
                margin: 0 0 2rem;
            }
        }
    }
    /*Buyer trust section*/
    .buyer-trust-sec {
        background: #F7F4F4;
        padding: 1rem;
        .inr {
            background: #FFFFFF;
            border-radius: 1rem;
            padding: 3rem;
            color: #474645;
            font-size: 0.8rem;
            text-align: center;
            h2 {
                font-weight: 300;
                font-size: 1.8rem;
                text-align: center;
                margin: 0 0 1rem;
                color: #474645;
            }
            p {
                margin: 0 0 2rem;
            }
            .listing {
                display: flex;
                gap: 2rem;
                list-style: none;
                margin: 0;
                padding: 0;
                justify-content: center;
                li {
                    font-family: Helvetica;
                    font-weight: 700;
                    font-size: 0.8rem;
                    text-align: center; 
                    .img-bx {
                        margin-bottom: 1.5rem;
                        display:flex;
                        justify-content: center;
                    }
                }
            }
        }
    }
}

@media (max-width: 1023px) {
    .firmoverview {
        .video-box {
            flex-direction: column;
            gap: 0;
            .lft-sec {
                width: 100%;
                order: 2;
            }
            .rgt-sec {
                width: 100%;
                order: 1;
            }
        }
        .chart-two-box, .chart-single-center-box {
            flex-direction: column;
            gap: 1rem;
            .bx {
                width: 100%;
                img {
                    width: 100%;
                }
            }
        }
        .phiosophy-sec .philosophy-bx {
            flex-direction: column;
            gap: 1rem;
            .inr {
                width: 100%;
                ul {
                    margin: 0;
                    padding: 0 0 0 20px;
                }
            }
        }
        .chart-single-box {
            .bx {
                img {
                    width: 100%;
                }
            }
        }
        .prod-box {
            margin-bottom: 3rem;
        }
        .touch-market-sec {
            .inr {
                padding: 2rem 1rem;
                .two-bx, .one-bx {
                    flex-direction: column;
                    gap: 2rem;
                    .graph-col {
                        width: 100%;
                    }
                }
            }
        }
    }
}

/*Team page Css*/
.management_container {
    .main-img {
        padding: 2rem 0;
        color: #474645;
        h1 {
            font-family: Helvetica;
            font-weight: 300;
            font-size: 1.8rem;
            letter-spacing: 0.75px;
            color: #474645;
            margin: 0 0 2rem;
        }
        img {
            width: 100%;
            box-shadow: 0px 4px 8px 3px #00000026;
            border: 1px solid #7F6E66;
            border-radius: 8px;
        }
    }
    .tab-sec {
        background: #474645;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        ul.nav {
            margin: 0.5rem 0;
            padding: 0;
            list-style: none;
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            li {
                border-radius: 4px;
                padding: 0.5rem 1rem;
                font-family: Helvetica;
                font-weight: 700;
                font-size: 1rem;
                text-align: center;
                color: #fff;
                a {
                    color: #fff;
                }
                &.active {
                    background: rgba(0, 0, 0, 0.1);
                }
            }
        }
        .tab-content {
            background: #F7F4F4;
            border-radius: 1rem;
            padding: 3rem 1.5rem;
            color: #474645;
            font-weight: 400;
            font-size: 1rem;
            text-align: center;
            h2 {
                color: #474645;
                font-family: Helvetica;
                font-weight: 700;
                font-size: 1.8rem;
                text-align: center;
                margin: 0 0 1rem;
            }
            .management-sec {
                display: flex;
                flex-wrap: wrap;            /* Allow boxes to go to next row */
                gap: 20px;
                margin-top: 2rem;
                width: 60%;
                margin: auto;
                padding-bottom: 2rem;
                .mang-box {
                  flex: 0 1 calc(33.33% - 20px);  /* 3 boxes per row */
                  font-size: 1rem;
                  background: #fff;
                  img {
                        width: 100%;
                        height: auto;
                        display: block;
                  }
                  .info-bx {
                        padding: 1rem;
                        text-align: left;
                        position:relative;
                  }
                 h3, h3 a {
                        color: #C41230;
                        font-size: 1rem;
                        margin: 0 0 0.7rem;
                        text-decoration: underline;
                 }
                p {
                    font-size: 0.9rem;
                    color: #555;
                    margin: 0.2rem 0;
                }
                .arrow-box {
                    width: 1.5rem;
                    height: 1.5rem;
                    background: #fff;
                    border: 2px solid #C41230;
                    border-radius: 1rem;
                    position: absolute;
                    top: -0.7rem;
                    z-index: 9999;
                    right: 1rem;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
                .arrow {
                    color: #C41230;
                    font-size: 1rem;
                }
                }
            }
            .slick-dots {
                margin: 1rem 0;
                bottom: -10px;
            }
        }
    }
}


@media (max-width: 1023px) {
    .management_container {
        .tab-sec {
            .tab-content {
                .management-sec {
                    width: 100%;
                    gap: 0;
                    /*.slick-list {
                        .slick-track {
                            width: 100% !important;
                        }
                    }*/
                }
            }
            ul.nav {
                li {
                    padding: 0.5rem;
                }
            }
        }
        
    }
}
                                        
/*Philonthrophy css*/
.philanthropy {
    background: #F7F4F4;
    padding: 1rem;
    margin-bottom: 1.5rem;
    .philanthropy_detail_container {
        background: #fff;
        padding: 2rem;
        border-radius: 1rem;
        color: #474645;
        h2 {
            font-family: Helvetica;
            font-weight: 300;
            font-size: 1.8rem;
            color: #474645;
            margin: 0 0 5rem;
        }
        .comp-logo-sec {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            justify-content: center;
            align-items: center;
        }
    }
}


@media (min-width:768px & max-width: 767px) {

}
@media (max-width: 767px) {
    .philanthropy {
        padding: 2rem 0rem;
        .philanthropy_detail_container {
            h2 {
                font-size: 1.9rem;
                margin-bottom: 4rem;
                font-weight: 700;
                line-height: normal;
                text-align: center;
            }
            .comp-logo-sec {
                gap: 4rem;
                img {
                    width: 100%;
                }
            }
        }
    }
}


/*RMAI Page CSS*/
.rmai-page {
    background: #474645;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    .rmai_detail_container {
        padding: 3rem 0rem 1rem 0rem;
        gap: 80px;
        align-items: center;
        justify-content: center;
        display: flex;
        border-radius: 1rem;
        background: #FFFFFF;
        color: #474645;
        font-size: 0.8rem;
        .lft {
            order: 1;
        }
        .rgt {
            order: 2;
        }
        h2 {
            font-family: Helvetica;
            font-weight: 300;
            font-size: 2rem;
            color: #474645;
            margin: 0 0 1rem;
        }
        h5 {
            font-family: Helvetica;
            font-weight: 700;
            font-size: 1rem;
            color: #474645;
            
        }
        p {
            margin: 0 0 2.5rem;
            line-height: 1.2rem;
        }
        a {
            color: #C41230;
        }
    }
}

@media (max-width: 1023px) {
    .rmai-page {
        .rmai_detail_container {
            flex-wrap: wrap;
            padding: 3rem 1rem;
            gap: 0;
            font-size: 1rem;
            h2 {
                font-size: 2.4rem;
            }
            h5 {
                font-size: 1.2rem;
            }
            p {
                line-height: 1.6rem;
            }
            .lft {
                order: 2;
                margin-top: 3rem;
            }
            .rgt {
                order: 1;
                img {
                    width: 70%;
                }
            }
        }
    }
}


/*Bankruptcies Page CSS*/

.assetTypes {
    background: #474645;
    .main-banner {
        background: #FFFFFF;
        padding: 3rem;
        border-radius: 1rem;
        color: #474645;
        font-family: Helvetica;
        font-weight: 400;
        font-size: 0.8rem;
        line-height: 1.2rem;
        margin: 1rem;
        display: flex;
        gap: 3rem;
        h2 {
            font-family: Helvetica;
            font-weight: 300;
            font-size: 2rem;
            color: #474645;
            margin: 0 0 1rem;
        }
        p {
            margin: 0 0 1rem;
            strong {
                color: #185E7E;
            }
        }
        .lft-sec, .rgt-sec {
            width: 50%;
        }
        .rgt-sec {
            text-align: center;
            img {
                width: 100%;
                border-radius: 0.4rem;
            }
        }
    }

    .client-sec {
        background: #F7F4F4;
        padding: 3rem 1rem;
        h1 {
            font-family: Helvetica;
            font-weight: 700;
            font-size: 1.8rem;
            text-align: center;
            margin: 0 0 3rem;
            color: #474645;
        }
        .box-container {
            display: flex;
            gap: 2rem;
            width: 80%;
            justify-content: center;
            margin: auto;
            .box {
                box-shadow: 0px 4px 4px 0px #00000040;
                flex: 1;
                background: #FFFFFF;
                padding: 1.5rem;
                border-radius: 8px;
                text-align: center;
                font-family: Helvetica;
                font-weight: 700;
                font-size: 1rem;
                line-height: normal;
                height: 15rem;
                margin-bottom: 0.5rem;
                .img-sec {
                    margin-bottom: 0.8rem;
                    img {
                        margin: auto;
                    }
                }
                .author-sec {
                    margin-top: 0.8rem;
                    color: #474645;
                    font-size: 0.8rem;
                    font-weight: 400;
                }

            }
        }
    }

    .client-logo-sec {
        background: url(../../../images/home/gems.png) left 80px no-repeat #7F6E66;
        padding: 2rem 0rem;
        .client-logoBox-container {
            display: flex;
            gap: 3rem;
            width: 80%;
            justify-content: center;
            margin: auto;
            .box {
                box-shadow: 0px 4px 8px 3px #00000026;
                background: #474645;
                border-radius: 8px;
                padding: 0.5rem 0.5rem 2rem;
                position: relative;
                flex: 1;
                .box-inside {
                    background: #fff;
                    border-radius: 8px;
                    padding: 2rem 0.5rem 1.5rem;
                    text-align: center;
                    height: 14rem;
                    .img-box {
                        height: 3.5rem;
                        
                        img {
                            width: 70%;
                            height: 100%;
                        }
                    }
                    .logo-symbol img {
                        width: auto;
                        position: absolute;
                        bottom: 0.6rem;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                    h3 {
                        font-family: Helvetica;
                        font-weight: 700;
                        font-size: 1.2rem;
                        margin: 1rem 0;
                        color: #474645;
                    }
                    p {
                        margin-top: 1rem;
                        font-family: Helvetica;
                        font-weight: 300;
                        font-size: 0.8rem;
                        color: #474645;
                    }
                }
            }
        }
        .multiple-transaction-txt {
            text-align: right;
            margin: 1rem 1rem 0;
            font-family: Helvetica;
            font-weight: 400;
            font-size: 0.6rem;
            color: #fff;
        }
    }

    .differentiate-garnet-sec {
        background: #474645;
        padding: 1rem 0;
        margin-bottom: 1.5rem;
        &.mrgnBtm0 {
            margin-bottom: 0;
        }
        .inr {
            padding: 2.5rem 2rem;
            background: #fff;
            border-radius: 1rem;
            color: #474645;
            font-size: 0.8rem;
            font-weight: 400;
            line-height: 1.2rem;
            .inside-box {
                display: flex;
                gap: 1rem;
                justify-content:center;
                width: 80%;
                margin: auto;
                ul {
                    margin: 0 0 0 0rem;
                    padding: 0;
                    li {
                        margin-left: 1.4rem;
                    }
                }
            }
            h2 {
                font-family: Helvetica;
                font-weight: 300;
                font-size: 1.8rem;
                text-align: center;
                margin: 0 0 2rem;
                color: #474645;
            }
            h5 {
                font-family: Helvetica;
                font-weight: 700;
                font-size: 1rem;
                text-align: center;
                margin: 0 0 1rem;
                display: flex;
                align-items: center;
                gap: 0.3rem;
            }

        }
    }

    .critical-sec {
        background: #474645;
        padding: 0 0 1rem;
        .inr {
            padding: 2.5rem 2rem;
            background: #fff;
            border-radius: 1rem;
            color: #474645;
            font-size: 0.8rem;
            font-weight: 400;
            line-height: 1.2rem;
            .inside-box {
                display: flex;
                gap: 2.5rem;
                justify-content:center;
                width: 100%;
                margin: auto;
                ul {
                    margin: 0 0 0 0rem;
                    padding: 0;
                    li {
                        margin-left: 1.4rem;
                    }
                }
                .img-sec {
                    text-align: center;
                    margin-bottom: 1rem;
                    display: flex;
                    justify-content: center;
                    img {
                        height: 2.8rem;
                    }
                }
            }
        }
        h2 {
            font-family: Helvetica;
            font-weight: 300;
            font-size: 1.8rem;
            text-align: center;
            margin: 0 0 2rem;
            color: #474645;
        }
        h5 {
            font-family: Helvetica;
            font-weight: 700;
            font-size: 1rem;
            text-align: center;
            margin: 0 0 1rem;
            color: #474645;
        }
    }

    .case-study-sec {
        background: #F7F4F4;
        padding: 2rem 0rem;
        margin: 0 0 1.5rem;
        z-index: 1;
        position: relative;
        &::before {
            z-index: -1;
            content: '';
            position: absolute;
            bottom: 0%;
            left: 40%;
            width: 100%;
            height: 100%;
            background: url(../../../images/home/gems1.png) left top no-repeat;
            opacity: 0.1;
            background-size: cover;
        }
        h2 {
            color: #474645;
            font-family: Helvetica;
            font-weight: 300;
            font-size: 1.8rem;
            text-align: center;
            margin: 0 0 2rem;
        }
        .client-logoBox-container {
            display: flex;
            gap: 3rem;
            width: 80%;
            justify-content: center;
            margin: auto;
            .box {
                box-shadow: 0px 4px 8px 3px #00000026;
                background: #474645;
                border-radius: 8px;
                padding: 0.5rem 0.5rem 2rem;
                position: relative;
                flex: 1;
                .box-inside {
                    background: #fff;
                    border-radius: 8px;
                    padding: 2rem 0.5rem 1.5rem;
                    text-align: center;
                    height: 16rem;
                    .case-link {
                        box-shadow: -1px 1px 1px 0px #00000040;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        gap: 0.3rem;
                        background-color: transparent;
                        color: #b32128;
                        border: 0.1rem solid #b32128;
                        padding: 0.5rem 1.2rem;
                        border-radius: 0.25rem;
                        font-weight: 600;
                        font-size: 0.8rem;
                        cursor: pointer;
                        transition: background-color 0.2s ease, color 0.2s ease;
                        width: 70%;
                        margin: auto;
                    }
                    .img-box {
                        height: 3.5rem;
                        
                        img {
                            width: 70%;
                            height: 100%;
                        }
                    }
                    .logo-symbol img {
                        width: auto;
                        position: absolute;
                        bottom: 0.6rem;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                    h3 {
                        font-family: Helvetica;
                        font-weight: 700;
                        font-size: 1.2rem;
                        margin: 1rem 0;
                        color: #474645;
                    }
                    p {
                        margin-top: 1rem;
                        font-family: Helvetica;
                        font-weight: 300;
                        font-size: 0.8rem;
                        color: #474645;
                    }
                }
            }
        }
        .multiple-transaction-txt {
            text-align: right;
            margin: 1rem 1rem 0;
            font-family: Helvetica;
            font-weight: 400;
            font-size: 0.6rem;
            color: #fff;
        }
    }
}
@media (max-width: 1023px) {
    .assetTypes {
        .main-banner {
            padding: 2rem 1.5rem;
            font-size: 1rem;
            gap: 0;
            flex-wrap: wrap;
            .lft-sec {
                order: 2;
                margin-top: 1rem;
                width: 100%;
            }
            .rgt-sec {
                order: 1;
                width: 100%;
                text-align: center;
                img, .hero-banner-img {
                    width: 70%;
                    height: auto;
                    border-radius: 0.4rem;
                }
            }
        }

        .differentiate-garnet-sec {
            .inr {
                padding-bottom: 3rem;
                .inside-box {
                    .box h5 {
                        display: flex;
                        align-items: center;
                        gap: 0.5rem;
                    }
                    ul {
                        margin: 0;
                    }
            }
        }
    }

        .client-logo-sec {
            .client-logoBox-container {
                background: url(../../../images/home/gems.png) -20px 40px no-repeat #7F6E66;
                padding: 2rem 0rem 0rem;
                 .box {
                     .box-inside {
                        height: 18rem;
                        .logo-symbol img {
                            bottom: 0.3rem;
                        }
                    }
                }
            }
            .multiple-transaction-txt {
                margin: 2.5rem 0rem 0;
                font-size: 1rem;
            }
        }

        .client-sec {
            .box-container {
                .box {
                    height: 16rem;
                    margin: 1rem 0;
                    .img-sec {
                        img {
                            margin: auto;
                        }
                    }
                }
            }
        }
        .case-study-sec {
            .client-logoBox-container {
                .box {
                    height: 20rem;
                    .box-inside {
                        height: 100%;
                    }
                }
            }
        }

    }
}

/*Services Pages Css */

.services-container {
    background: #474645;
    margin-bottom: 1.5rem;
    .main-banner {
        background: #FFFFFF;
        padding: 3rem;
        border-radius: 1rem;
        color: #474645;
        font-family: Helvetica;
        font-weight: 400;
        font-size: 0.8rem;
        line-height: 1.2rem;
        margin: 1rem;
        display: flex;
        gap: 3rem;
        h2 {
            font-family: Helvetica;
            font-weight: 300;
            font-size: 2rem;
            color: #474645;
            margin: 0 0 1rem;
        }
        h3 {
            font-family: Helvetica;
            font-weight: 300;
            font-size: 1.4rem;
            color: #474645;
            margin: 0 0 1rem;
        }
        h5 {
            font-family: Helvetica;
            font-weight: 700;
            font-size: 1rem;
            color: #474645;
            margin: 0 0 0.8rem;
        }
        p {
            margin: 0 0 1rem;
            strong {
                color: #185E7E;
            }
        }
        .lft-sec, .rgt-sec {
            width: 50%;
        }
        .rgt-sec {
            text-align: center;
            img {
                width: 100%;
                border-radius: 0.4rem;
            }
            &.capital-market-mainBanner-rgt-sec {
                display: flex;
                align-items: center;
                gap: 1rem;
                justify-content: center;
                .box {
                    border-radius: 0.4rem;
                    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
                    background: #F7F4F4;
                    color: #474645;
                    text-align: center;
                    font-size: 0.8rem;
                    min-height: 14rem;
                    padding: 2rem 2rem 0;
                    img {
                        width: auto;
                    }
                    h5 {
                        font-family: Helvetica;
                        font-weight: 700;
                        font-size: 1.2rem;
                        text-align: center;
                        margin: 1rem 0;
                    }
                    ul {
                        margin: 0;
                        padding: 0; 
                        list-style: none;
                    }
                }
            }
        }
    }

     .client-logo-sec {
        background: url(../../../images/home/gems.png) left 80px no-repeat #7F6E66;
        padding: 2rem 0rem;
        .hd-sec {
            width: 80%;
            text-align: center;
            font-size: 1rem;
            color: #fff;
            margin: auto;
            margin-bottom: 2rem;
            h2 {
                font-family: Helvetica;
                font-weight: 700;
                font-size: 1.8rem;
                margin: 0 0 1rem;
                color: #fff;
                text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.55);
            }
            
        }
        .client-logoBox-container {
            display: flex;
            gap: 3rem;
            width: 80%;
            justify-content: center;
            margin: auto;
            .box {
                box-shadow: 0px 4px 8px 3px #00000026;
                background: #474645;
                border-radius: 8px;
                padding: 0.5rem 0.5rem 2rem;
                position: relative;
                flex: 1;
                .box-inside {
                    background: #fff;
                    border-radius: 8px;
                    padding: 2rem 0.5rem 1.5rem;
                    text-align: center;
                    height: 14rem;
                    .img-box {
                        height: 3.5rem;
                        display: flex;
                        justify-content: center;
                        img {
                            width: 70%;
                            height: 100%;
                        }
                    }
                    .logo-symbol img {
                        width: auto;
                        position: absolute;
                        bottom: 0.6rem;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                    h3 {
                        font-family: Helvetica;
                        font-weight: 700;
                        font-size: 1.2rem;
                        margin: 1rem 0;
                        color: #474645;
                    }
                    p {
                        margin-top: 1rem;
                        font-family: Helvetica;
                        font-weight: 300;
                        font-size: 0.8rem;
                        color: #474645;
                    }
                }
            }
        }
        .multiple-transaction-txt {
            text-align: right;
            margin: 1rem 1rem 0;
            font-family: Helvetica;
            font-weight: 400;
            font-size: 0.6rem;
            color: #fff;
        }
    }

    /*Capital Market section*/
    .capital-market-funding-sec {
        background: #F7F4F4;
        padding: 3rem;
        z-index: 1;
        position: relative;
        &::after {
            z-index: -1;
            content: '';
            position: absolute;
            top: 0%;
            left: 40%;
            width: 100%;
            height: 100%;
            background: url(../../../images/home/gems1.png) center center no-repeat;
            opacity: 0.1;
            background-size: cover;
        }
        .inr {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            margin: auto;
            width: 80%;
            .hd-box {
            h2 {
                font-family: Helvetica;
                font-weight: 300;
                font-size: 1.6rem;
                text-align: center;
                margin: 0 0 1rem;
                color: #474645;
            }
            }
            .box {
              width: calc(48% - 10px); /* 2 boxes per row */
              border-radius: 0.4rem;
              font-size: 0.8rem;
              color: #474645;
              display: flex;
              flex-wrap: wrap;
              h5 {
                margin: 0;
                padding: 1rem;
                background: #7F6E66;
                border-top-left-radius: 0.8rem;
                border-top-right-radius: 0.8rem;
                color: #fff;
                box-shadow: 0px 1px 3px 0px #0000004D;
                width: 100%;
                height: 3rem;
                img {
                    height: 1rem; 
                    margin-right: 0.4rem;
                }
              }
              .inr-inside {
                    box-shadow: 0px 1px 3px 0px #0000004D;
                    padding: 1rem;
                    height: 45vh;
                    width: 100%;
              }
              h6 {
                font-family: Helvetica;
                font-weight: 700;
                font-size: 1rem;
                margin: 0 0 1rem;
                color: #474645;
            }
            }
        }
    }

    /*Capital market bottom section*/
    .capital-market-bottom-sec {
        background: #474645;
        padding: 2rem 0rem 1rem;
        margin-bottom: 1.5rem;
        .inr {
            padding: 2rem 2rem;
            background: #fff;
            border-radius: 1rem;
            color: #474645;
            font-size: 0.8rem;
            font-weight: 400;
            line-height: 1.2rem;
            .inside-box {
                display: flex;
                gap: 2.5rem;
                justify-content:center;
                width: 70%;
                margin: auto;
                .box {
                    text-align: center;
                    h5 {
                        font-family: Helvetica;
                        font-weight: 700;
                        font-size: 1rem;
                        text-align: center;
                        margin: 1rem 0;
                        color: #474645; 
                    }
                }
            }
            h2 {
                font-family: Helvetica;
                font-weight: 300;
                font-size: 1.8rem;
                text-align: center;
                margin: 0 0 1rem;
                color: #474645;
            }
        }
    } 
    
    /*Valuation Page css*/

}


@media (max-width: 767px) {
    
.services-container {
    .main-banner {
        flex-wrap:wrap;
        gap: 1rem;
        padding: 1.5rem;
            .lft-sec, .rgt-sec {
                width: 100%;
            }
            .lft-sec {
                order: 2;
            }
            .rgt-sec {
                order: 1;
                &.capital-market-mainBanner-rgt-sec {
                    .box {
                        min-height: 100%;
                        padding: 1rem;
                        img {
                            width: 50%;
                        }
                    }
                }
            }
        }
        .client-logo-sec {
            background: url(../../../images/home/gems.png) -40px 260px no-repeat #7F6E66;
            .client-logoBox-container {
                .slick-list {
                    margin-bottom: 3rem;
                }    
            }
        }

        .capital-market-funding-sec {
            padding: 2rem 1rem;
            .inr {
                width: 100%;
                .box {
                  width: 100%; 
                  .inr-inside {
                        height: auto;
                  }
                }
            }
        }

        .capital-market-bottom-sec {
            .inr {
                .inside-box {
                    gap: 1.5rem;
                    width: 100%;
                }
            }
        } 
    }
}



.tabs {
    background: #474645;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    input {
        display: none;
    }
    label {
        border-radius: 4px;
        padding: 0.5rem 1rem;
        font-family: Helvetica;
        font-weight: 700;
        font-size: 1rem;
        text-align: center;
        color: #fff;
        cursor: pointer;
    }
}

/* Active tab */
#tab1:checked + label,
#tab2:checked + label,
#tab3:checked + label {
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Common content style */
.content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    opacity: 0;
}

/* Show selected content */
#tab1:checked ~ .tab-content .content1,
#tab1:checked + label + .tab-content .content1,
#tab2:checked ~ .tab-content .content2,
#tab2:checked + label + .tab-content .content2,
#tab3:checked ~ .tab-content .content3,
#tab3:checked + label + .tab-content .content3 {
    max-height: 2000px; /* large enough to accommodate content height */
    opacity: 1;
    pointer-events: auto;
}

 