#header:not(.sticky-header) li.menu-item a.menu-link div {
    color: #000000 !important;
}

#header:not(.sticky-header) li.menu-item a.menu-link:hover div {
    color: #D25534 !important;
}

#header:not(.sticky-header) li.menu-item.current a.menu-link div {
    color: #D25534 !important;
}

#header:not(.sticky-header) li.menu-item.sub-menu .sub-menu-container a.menu-link div {
    color: #D25534 !important;
}

#header:not(.sticky-header) ul.top-links-container {
    color: #000000 !important;
}

#header:not(.sticky-header) ul.top-links-container:hover {
    color: #D25534 !important;
}

@media (min-width: 768px) {
    #header:not(.sticky-header) li.menu-item a.menu-link div {
        color: #ffffff !important;
    }

    #header:not(.sticky-header) ul.top-links-container {
        color: #ffffff !important;
    }
}

#hero-image {
    position: relative;
    width: 100%;
    height: auto;
}

#hero-image .content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
    gap: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#hero-image .overlay-bg {
    position: absolute;
    background-color: #000000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.8;
}

#hero-image .wrapper-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    padding:  0 30px 0 20px;
}

#hero-image .custom-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.082);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.459);
    border-radius: 16px;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    width: 100%;
}


#hero-image .custom-card .title {
    font-size: 18px;
    font-weight: 600;
    color: #FF9559;
    margin: 0;
    width: 100%;
    text-transform: capitalize;
    /* white-space: nowrap; */
}

#hero-image .custom-card .value {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    /* white-space: nowrap; */
}

#hero-image .custom-card .subtitle {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 0;
    /* white-space: nowrap; */
}

#wrapper .wrapper-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#wrapper .wrapper-content .chart-container {
    width: 100%;
    display: flex;
    gap: 30px;
    flex-direction: column;
}

#wrapper .wrapper-content .chart-container .highcharts-figure {
    width: 100%;
}

#wrapper .wrapper-content .card-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#wrapper .wrapper-content .card-container .custom-card {
    flex: 1;
}

/* Bootstrap 5 Breakpoints */
@media (min-width: 576px) {
     /* SM */ 
}

@media (min-width: 768px) {
    /* MD */ 
    #wrapper .wrapper-content .card-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (min-width: 992px) {
    /* LG */ 
    #hero-image .wrapper-content {
        padding-top: 80px;
    }
}

@media (min-width: 1200px) {
    /* XL */ 
    #wrapper .wrapper-content .chart-container {
        flex-direction: row;
        gap: 20px;
    }
}

@media (min-width: 1400px) {
     /* XXL */ 
}