    /* Headings */
    h1, h2, h3, h4, h5 {
    color: #c56031;
    font-weight: 600;
    letter-spacing: 0.5px;
    }
    
    

/* Global Overflow Fix */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Prevent elements from exceeding screen */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Bootstrap row fix */
.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Images & tables responsive */
img,
table {
    max-width: 100%;
}

/* Cards / containers */
.card,
.container,
.container-fluid {
    overflow-x: hidden;
}

/* Mobile Fix */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .sidebar {
        max-width: 260px;
    }

    .content,
    .main-content {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }
}