.navbar-brand img {
  max-height: 5rem;
}.sidebar-brand img {
  max-height: 5rem;
}
.sec-padding {
  padding-top: 30px;
  padding-bottom: 30px;
  
  /*
@media (max-width: 991px) {
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .row.g-42, .g-42 {
        --bs-gutter-x: 1rem !important; 
        --bs-gutter-y: 1.5rem !important; 
    }

    .col-lg-6, .col-12 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}


html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
    margin: 0;
    padding: 0;
}

header, nav, .navbar {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

header .row, .sidebar-left .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 999;
    background-color: var(--bs-body-bg, #fff);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-left {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 280px !important;
    max-width: 80vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 99999 !important;
    background-color: #ffffff;
    box-sizing: border-box !important;
    overflow-y: auto !important; 
    overflow-x: hidden !important;
    
    transform: translateX(-100%) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.sidebar-left.active {
    transform: translateX(0) !important;
    box-shadow: 5px 0 25px rgba(0,0,0,0.15);
}

.sidebar-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important; 
    height: 100% !important;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99998 !important;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block !important;
    opacity: 1;
}

[data-bs-theme="dark"] .sidebar-left,
body.dark-mode .sidebar-left {
    background-color: #18191a !important;
    color: #fff;
}
*/