nav.sth-page-breadcrumbs {
    margin-top: 128px !important;
    margin-bottom: 20px;
}


.breadcrumb-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    list-style: none;
    padding: 0;
    margin: 0;

    li {
        display: flex;
        align-items: center;

        :not(:last-child)::after {
            content: "/";
            margin: 0 8px;
            color: var(--sth-yellow);
        }
    }

        li:not(:last-child)::after {
            content: "/";
            margin: 0 8px;
            color: black;
        }

    a {
        font-weight: 600;
        color: var(--sth-yellow);
        text-decoration: none;
        transition: 0.2s ease;
    }

        a:hover {
            color: var(--sth-yellow);
        }

    .active {
        color: var(--sth-light-blue);
        font-weight: bold;
    }
}

#StaticPageContent {
    *:not(i) {
        color: black;
    }

    h1, h2 {
        color: var(--sth-blue);
    }

    h3 {
        color: var(--sth-light-blue);
    }

    strong {
        color: var(--sth-light-blue);
    }

    div.accordion__button {
        .accordion__icon {
            background: var(--sth-yellow) !important;
        }

        i.icon-plus {
            color:white;
        }

        .button.text-dark-1 {
            color: var(--sth-blue);
            font-weight:bold
        }
    }
}
