@font-face {
    font-family: 'Century Gothic';
    font-style: normal;
    font-weight: normal;
    src: local('Century Gothic Regular'), url('/fonts/centurygothic.ttf') format('truetype');
}

@font-face {
    font-family: 'Century Gothic Bold';
    font-style: normal;
    font-weight: bold;
    src: local('Century Gothic Bold'), url('/fonts/centurygothic_bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Didot';
    font-style: normal;
    font-weight: normal;
    src: local('Didot'), url('/fonts/Didot.otf') format('opentype');
}

@font-face {
    font-family: 'Didot Italic';
    font-style: italic;
    font-weight: normal;
    src: local('Didot Italic'), url('/fonts/Didot Italic.otf') format('opentype');
}

:root {
    --font-heading: 'Century Gothic', sans-serif;
    --font-body: 'Century Gothic', sans-serif;
}

.nb-navigation {
    background-color: var(--clr-accent-3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    font-family: var(--font-body);
}

.nb-navigation-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    height: 0%;
    width: 100%;
    overflow: hidden;
    transition: height 0.25s ease;
    z-index: 1;
    background-color: white;
    color: white;
}

.nb-navigation-container.show {
    height: 100vh;
    font-size: 18px;
}

.nb-navigation-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.right-top-icon {
    border-left: 1px solid white;
}

.left-top-icon {
    border-right: 1px solid white;
}

.nb-navigation-list li {
    width: 100%;
}

.navigation-item {
    font-size: 1.5em;
}
.nb-navigation-link {
    text-decoration: none;
    color: white;
    width: 100%;
    background: var(--clr-accent-1);
    transition: color 0.4s ease 0s;
    padding: 15px;
    border-bottom: 1px solid white;
    font-weight: 600;
}

.quote-nav-link {
    font-size: 18px;
    background: var(--clr-accent-3)!important;
}



.quote-nav-link:hover {
    color: var(--clr-white) !important;
    background: var(--clr-accent-1)!important;
}



.nb-navigation-close {
    color: white;

}
.nb-navigation-toggle {
    color: white;
}

.nb-navigation-sublist {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.nb-navigation-item {
    height: 100%;
    font-size: 1em;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
}


.nb-navigation-item.open .nb-navigation-sublist {
    display: block;
    max-height: 500px; /* Adjust based on the expected height */
    opacity: 1;
}

.nb-navigation-sublink {
    text-decoration: none;
    color: white;
    padding: 10px;
    padding-left: 20px;
    width: 100%;
    background-color: var(--clr-accent-3);
    display: block;
    border-bottom: 1px solid var(--clr-accent-1)
}
.nb-navigation-link:hover, .nb-navigation-sublink:hover {
    color: white;
}

.chevron {
    transition: transform 0.3s ease;
}



    @media only screen and (min-width: 1199px) {
        .nb-navigation-link:hover {
            color: var(--clr-accent-1);
        }
        .nb-navigation-link {
            background: transparent;
            border: none;
        }
        .nb-navigation-sublink {
            background: transparent;
            border: none;
            height: max-content;
            padding: 0;
        }

        .quote-nav-link {
            font-size: 12px;
            color: var(--clr-accent-1) !important;
            background: var(--clr-accent-2) !important;
            padding: 5px 10px !important;
            border-radius: 8px;
            transition: color 1s ease 0s;
        }

        .nb-navigation-container {
            margin: -1rem 0;
            position: relative;
            flex-direction: row;
            width: 100%;
            height: auto;
            justify-content: center;
            background: transparent;
            overflow: visible !important;
        }

        .nb-navigation-list {
            flex-direction: row;
            height: 100%;
            width: auto;
            padding: 20px;
            font-size: 16px !important;
        }

    .nb-navigation-list li {
        padding: 15px;
        width: auto;
    }

    .nb-navigation-item {
        padding: 0 1rem;
        height: 100%;
        font-size: 1em;
        position: relative;
        justify-content: center;
    }



    .nb-navigation-sublist {
        background-color: rgb(64, 141, 143); 
        padding: 5px 10px;
        border-radius: 8px; 
        position: absolute; 
        top: 100%; 
        right: 0;
        height: auto;
        overflow:visible;
        width: max-content; 
        max-height: 500px;
        display: none; 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
        z-index: 20; 
        text-align: right;
    }

    .nb-navigation-sublist li {
        text-align: right!important;
        padding: 5px 10px;
    }

    .nb-navigation-item:hover .nb-navigation-sublist {
        display: block; 
    }

    .nb-navigation-subitem {
        padding: 5px 0; 
    }

    .nb-navigation-sublink {
        color: #fff; 
        text-decoration: none; 
        display: block;
    }

    .nb-navigation-sublink:hover {
        color: var(--clr-accent-1);
    }

    .nb-navigation-item.nb-navigation-active {
    }

    .nb-navigation-active .nb-navigation-link {
        color: #b2d9da; 
    }

    .nb-navigation-link {
        color: white;
        padding: 0;
    }
}

.nb-person {
    height: 340px;
}


.nb-person-card {
    overflow: hidden;
    flex-basis: 100%;
}

.nb-card {
    border: 1px solid var(--clr-accent-1);
    border-radius: 0.75em;
    padding: 1em;
    overflow: hidden;
    flex-basis: 100%;
}
.nb-card__image {
    margin: -1em;
    margin-bottom: 0;
}
.nb-service-node {
    flex-basis: 100%;
}
@media only screen and (min-width: 768px) {
    .nb-person-card {
        margin-left: 2.5em;
        margin-right: 2.5em;
        flex-basis: calc(50% - 5em);
    }

    .nb-card {
        margin-left: 1em;
        margin-right: 1em;
        flex-basis: calc(50% - 2em);
    }
    .nb-service-node {
        flex-basis: calc(50% - 2em);
    }
}
@media only screen and (min-width: 1199px) {
    .nb-person-card {
        margin-left: 1.5em;
        margin-right: 1.5em;
        flex-basis: calc(33% - 3em);
    }

    .nb-navigation-link:hover {
        color: var(--clr-accent-1);
    }

    .nb-card {
        margin-left: 1em;
        margin-right: 1em;
        flex-basis: calc(33% - 2em);
    }
    .nb-service-node {
        flex-basis: calc(25% - 2em);
    }

    .quote-nav-link {
        font-size: 16px;
    }

    .nb-navigation {
        background-color: transparent;
    }
}

@media only screen and (min-width: 1239px) {
    .nb-person-card {
        margin-left: 1.5em;
        margin-right: 1.5em;
        flex-basis: calc(25% - 3em);
    }
}

    @media only screen and (min-width: 1499px) {
        .nb-person-card {
            margin-left: 1.5em;
            margin-right: 1.5em;
            flex-basis: calc(20% - 3em);
        }
    }

    .nb-cookie-consent {
        visibility: hidden;
        display: none;
    }

        .nb-cookie-consent[data-nb-cookies-consent="-1"] {
            position: fixed;
            display: flex;
            visibility: visible;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--clr-white);
            padding: 1rem;
            box-shadow: 0.5rem 0 1rem rgba(0, 0, 0, 0.15);
        }

    .nb-cookie-manage, .nb-cookie-manage-btn {
        display: none;
    }

        .nb-cookie-manage.show {
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        .nb-cookie-manage-btn.show {
            display: flex;
        }

    .no-margin-last-p p:last-child {
        margin-bottom: 0;
    }

    .btn-nb-accent-1 {
        color: var(--clr-white);
        background-color: var(--clr-accent-1);
        border-color: var(--clr-accent-1);
    }

        .btn-nb-accent-1:hover {
            background-color: var(--clr-accent-1-25);
        }

    .nb-invert .btn-nb-accent-1 {
        color: var(--clr-accent-1);
        background-color: var(--clr-white);
        border-color: var(--clr-white);
    }

    .btn-nb-accent-2 {
        color: var(--clr-white);
        background-color: var(--clr-accent-2);
        border-color: var(--clr-accent-2);
    }

    .border-accent-1 {
        border-color: var(--clr-accent-1) !important;
    }

    .text-accent-1 {
        color: var(--clr-accent-1) !important;
    }

    .text-accent-2 {
        color: var(--clr-accent-2) !important;
    }

    .bg-accent-1, .nb-invert {
        background-color: var(--clr-accent-1);
    }

    .bg-green {
        background-color: rgb(131,179,180);
    }

    .nb-invert,
    .nb-invert h1,
    .nb-invert h2,
    .nb-invert h3,
    .nb-invert h4,
    .nb-invert h5,
    .nb-invert h6,
    .nb-invert .text-accent-1 {
        color: var(--clr-white) !important;
    }

    .nb-img-cover {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .nb-bg-overlay {
        background-color: rgba(0, 0, 0, 0.45);
    }

    .bg-accent-1 {
        background-color: var(--clr-accent-1);
    }

    .bg-accent-2 {
        background-color: var(--clr-accent-2);
    }

    .bg-accent-3 {
        background-color: var(--clr-accent-3);
    }

    .bg-accent-4 {
        background-color: #83B3B4;
    }

    .bg-accent-5 {
        background-color: #408d8f;
    }

    .text-accent-5 {
        color: #408d8f;
    }

    .bg-accent-1-25 {
        background-color: var(--clr-accent-1-25);
    }

    .bg-accent-1-50 {
        background-color: var(--clr-accent-1-50);
    }

    .bg-accent-1-75 {
        background-color: var(--clr-accent-1-75);
    }

    .text-accent-1-25 {
        color: #b58eb3;
    }

    .alert p:last-child {
        margin-bottom: 0;
    }

    .list-group-item.active {
        background-color: var(--clr-accent-1);
        border-color: var(--clr-accent-1);
    }

    .accordion-button:not(.collapsed) {
        color: var(--clr-white);
        background-color: var(--clr-accent-1);
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem var(--clr-accent-1-25);
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .nb-footer {
        box-shadow: 0.5rem 0 1rem rgba(0, 0, 0, 0.15);
    }

    /**umb_name:Body Text*/
    .body-text {
        font-family: var(--font-body);
        color: var(--clr-dark);
    }

    /**umb_name:Heading 1*/
    h1.header-1 {
        font-family: var(--font-heading);
        color: var(--clr-accent-1);
    }

    /**umb_name:Heading 2*/
    h2.heading-2 {
        font-family: var(--font-heading);
        color: var(--clr-accent-1);
    }

    /**umb_name:Heading 3*/
    h3.heading-3 {
        font-family: var(--font-heading);
        color: var(--clr-accent-1);
    }

    /**umb_name:Heading 4*/
    h4.heading-4 {
        font-family: var(--font-heading);
        color: var(--clr-accent-1);
    }

    /**umb_name:Heading 5*/
    h5.heading-5 {
        font-family: var(--font-heading);
        color: var(--clr-accent-1);
    }

    /**umb_name:Heading 6*/
    h6.heading-6 {
        font-family: var(--font-heading);
        color: var(--clr-accent-1);
    }

    .nb-splash-overlay--blue {
        background-color: rgba(64, 141, 143, 0.65); /* Semi-transparent blue */
    }

    .nb-splash-overlay--purple {
        background-color: rgba(144, 98, 142, 0.5); /* Semi-transparent purple */
    }

    .nb-splash-overlay--grey {
        background-color: rgba(128, 128, 128, 0.5); /* Semi-transparent grey */
    }
