:root {
    --midnight: #173d3c;
    --dark-green: #173d3c;
    --dark-green-rgb: "23, 61, 60";
    --turquoise: #87d1c9;
    --pistachio: #cfe57f;
}

html {
    scroll-padding-top: 4rem;
    background: var(--dark-green);
    background-image: url(https://www.claytonutz.com/cfimages/bg-pattern-midnight-transparent.webp/public);
}

*:not(em, i) {
    font-family: "Montserrat", sans-serif !important;
}

body {
    /*min-height: 100vh;*/
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%
}

#page-content {
    /*flex-grow: 1;*/
}

    #page-content > :last-child {
        /*flex-grow:1;*/
    }

.umb-block-list:last-child {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Typography */
.text-body-2 {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.20000000298023224px;
    text-align: left;
}

.text-body-3 {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.20000000298023224px;
    text-align: left;
}
/* end typography */

/* component list colours */
.dark-green {
    color: var(--dark-green);
}

.turquoise-dark {
    color: #3ea39e;
}

.bg-dark-green {
    background: var(--dark-green);
}

.bg-green {
    background: #cfe57f;
}

.bg-blue {
    background: #87d1c9;
}

.bg-grey {
    background: #869898;
}

.bg-white {
    background: #ffffff;
}

.color-dark-green {
    color: var(--dark-green);
}

.color-green {
    color: #cfe57f;
}

.color-blue {
    color: #87d1c9;
}

.color-grey {
    color: #869898;
}

.color-white {
    color: #ffffff;
}

.bg-aqua {
    background: #87d1c9;
}

.bg-aqua-light {
    background: #c3e8e4;
}

.bg-midnight {
    background: var(--dark-green);
}

    .bg-midnight a {
        color: white;
    }

        .bg-midnight a:hover {
            color: var(--turquoise);
        }

.bg-midnight-2 {
    background: #224c4a;
}

.bg-midnight-3 {
    background: #456463;
}

.bg-midnight-dark {
    background: #102828;
}

.bg-pistachio {
    background: #73915d;
}

.color-aqua {
    background: #87d1c9;
}

.color-aqua-light {
    background: #c3e8e4;
}

.color-midnight {
    background: var(--dark-green);
}

.color-midnight-2 {
    background: #224c4a;
}

.color-midnight-3 {
    background: #456463;
}

.color-midnight-dark {
    background: #102828;
}

.color-pistachio {
    background: #73915d;
}

color-neutral-1 {
    color: #f6f6f6;
}

color-neutral-2 {
    color: #eceded;
}

color-neutral-3 {
    color: #e2e4e4;
}

color-neutral-6 {
    color: #cecece;
}

color-neutral-7 {
    color: #666666;
}

color-neutral-8 {
    color: #4d4d4d;
}

color-neutral-9 {
    color: #222222;
}

/* end component list colours */

.breadcrumb a {
    color: var(--dark-green);
}

a,
a.display-7,
a.display-8 {
    color: #318180;
    transition: color 200ms;
}

    a:hover,
    a.display-7:hover,
    a.display-8:hover {
        color: #697f1a;
    }

    a:not(.btn):focus,
    a.display-7:focus,
    a.display-8:focus {
        color: #102828;
    }

    a.dark-green {
        color: var(--dark-green);
    }

#top-nav .nav-link {
    color: var(--dark-green);
    font-size: 0.875rem;
    font-weight: 600;
}

.profiles-button {
    width: 40px;
    height: 40px;
}

.midnight-links a,
a.midnight-links {
    color: var(--dark-green);
}

.line-clamp {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

a {
    text-decoration: none;
}

.z-99 {
    z-index: 99;
}

.case-study {
    border-top-left-radius: 5rem;
}

.case-studies-image {
    width: 100%;
}

    .case-studies-image img {
        width: 100%;
        max-height: 260px;
    }

.case-studies-text {
    height: inherit;
}

p#breadcrumblabel {
    display: none !important;
}

.breadcrumb-item {
    font-family: Montserrat;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.125rem; /* 128.571% */
}

    .breadcrumb-item + .breadcrumb-item::before {
        content: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="17" viewBox="0 0 24 24" fill="none" stroke="rgb(23,61,60)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg>');
    }

footer a {
    color: initial;
}

.two-line-trunc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

.bg-grey-pattern {
    background-image: url(https://www.claytonutz.com/cfimages/bg-pattern-grey.webp/public);
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /*margin-bottom: 60px;*/
}

bg-black * {
    color: white;
}

.rounded-bottom-left {
    border-bottom-left-radius: 100%;
}

.rounded-top-right {
    border-top-right-radius: 50rem;
}

.image-overlap-x {
    position: relative;
    height: 100%;
}

    .image-overlap-x div {
        position: absolute;
        padding: 0.25rem 0.5rem;
        background: white;
        width: 40%;
        min-height: 100%;
        max-height: 100%;
        height: 100%;
        border-bottom-left-radius: 5rem;
        border-bottom-right-radius: 5rem;
    }

        .image-overlap-x div:nth-child(1) {
            z-index: 3;
            border-top-left-radius: 1rem;
            position: relative;
        }

            .image-overlap-x div:nth-child(1) img {
                z-index: 3;
                border-top-left-radius: 1rem;
            }

        .image-overlap-x div:nth-child(2) {
            left: 30%; /* Adjust the overlap amount as needed */
            z-index: 2;
            top: 0;
        }

        .image-overlap-x div:nth-child(3) {
            left: 60%; /* Adjust the overlap amount as needed */
            z-index: 1;
            top: 0;
        }

        .image-overlap-x div img {
            width: 100%;
            max-height: 100%;
            border-bottom-left-radius: 5rem;
            border-bottom-right-radius: 5rem;
            object-fit: cover;
            height: 100%;
        }

.corner-top-right-cyan {
    width: 200px;
    height: 200px;
    position: absolute;
    overflow: hidden;
    right: 0;
}

    .corner-top-right-cyan::before {
        content: "";
        position: absolute;
        bottom: -50%;
        left: -50%;
        width: 150%;
        height: 150%;
        border-radius: 30%;
        box-shadow: 0px 50px 0px 300px #87d1c9;
    }

.corner-bottom-right-cyan {
    width: 200px;
    height: 200px;
    position: absolute;
    overflow: hidden;
    right: 0;
    bottom: 0
}

    .corner-bottom-right-cyan::before {
        content: "";
        position: absolute;
        bottom: 0%;
        left: -50%;
        width: 150%;
        height: 150%;
        border-radius: 30%;
        box-shadow: 0 50px 0 300px #87d1c9
    }

.curved-image-top-left {
    border-top-left-radius: 10rem;
}

.curved-image-bottom-right {
    border-bottom-right-radius: 10rem;
}

.curved-image-bottom-left {
    border-bottom-left-radius: 5rem;
}

.staggered-images .curved-image-bottom-left.last {
    border-bottom-left-radius: 10rem;
}

.hill-left {
    height: 100%;
    width: 250px;
    top: 0;
    position: absolute;
    border-top-right-radius: 10rem;
}

#logo-pattern {
    background-image: url(https://www.claytonutz.com/cfimages/Training_707x501px.webp/public);
    background-position: center;
    background-size: auto;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--dark-green);
    --bs-btn-border-color: var(--dark-green);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #697f1a;
    --bs-btn-hover-border-color: #697f1a;
    --bs-btn-focus-shadow-rgb: #cfe57f;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #102828;
    --bs-btn-active-border-color: #cfe57f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--dark-green);
    --bs-btn-disabled-border-color: var(--dark-green);
    border-radius: 2rem;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.125rem; /* 128.571% */
    letter-spacing: 0.05rem;
}

.btn.btn-primary.small {
    padding: 7px;
}

    .btn.btn-primary.small svg {
        height: 20px;
        width: 20px;
    }

    .btn.btn-primary.small .search-spinner {
        height: 18px;
        width: 18px;
    }

.bg-midnight .btn-primary {
    color: var(--dark-green);
    --bs-btn-bg: var(--pistachio);
    --bs-btn-border-color: var(--pistachio);
    --bs-btn-hover-bg: var(--turquoise);
    --bs-btn-hover-border-color: var(--turquoise);
    --bs-btn-focus-shadow-rgb: #cfe57f;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #c3e8e4;
    --bs-btn-active-border-color: #cfe57f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--dark-green);
    --bs-btn-disabled-border-color: var(--dark-green);
}

    .bg-midnight .btn-primary:hover {
        color: var(--dark-green);
    }

.bg-midnight .btn-outline-primary {
    --bs-btn-color: var(--pistachio);
    --bs-btn-border-color: var(--pistachio);
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--turquoise);
    --bs-btn-hover-border-color: var(--turquoise);
    --bs-btn-focus-shadow-rgb: #cfe57f;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #102828;
    --bs-btn-active-border-color: #cfe57f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--dark-green);
    --bs-btn-disabled-border-color: var(--dark-green);
    border-radius: 2rem;
    border-width: 2px;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.125rem; /* 128.571% */
    letter-spacing: 0.05rem;
    color: var(--pistachio);
}

.btn-p1-2 {
    padding: 1rem 2rem !important;
}

.btn-075-2 {
    padding: 0.75rem 2rem !important;
}

.btn-outline-primary {
    --bs-btn-color: var(--dark-green);
    --bs-btn-border-color: var(--dark-green);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--dark-green);
    --bs-btn-hover-border-color: #fff;
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #318180;
    --bs-btn-active-border-color: #318180;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #318180;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #318180;
    --bs-gradient: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 2rem;
    border: 2px solid #318180;
    font-weight: 600;
    line-height: 1.25rem; /* 125% */
}

    .btn-outline-primary.active {
        background: var(--dark-green);
        border-color: var(--dark-green);
        color: #fff;
    }

.btn-outline-secondary {
    --bs-btn-color: #318180;
    --bs-btn-border-color: #318180;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #318180;
    --bs-btn-hover-border-color: #318180;
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #318180;
    --bs-btn-active-border-color: #318180;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #318180;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #318180;
    --bs-gradient: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 2rem;
    border: 2px solid #318180;
    font-weight: 600;
    line-height: 1.25rem; /* 125% */
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--dark-green);
}

h1,
.display-1 {
    color: var(--dark-green);
    /* Headings/LG/Heading 1 */
    font-family: Montserrat;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: 3.625rem; /* 120.833% */
}

h2,
.display-2 {
    color: var(--dark-green);
    /* Headings/LG/Heading 2 */
    font-family: Montserrat;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.5rem; /* 125% */
}

h3,
.display-3 {
    color: var(--dark-green);
    /* Headings/MD/Heading 3 */
    font-family: Montserrat;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.5rem; /* 142.857% */
}

h4,
.display-4 {
    color: var(--dark-green);
    /* Headings/SM/Heading 4 */
    font-family: Montserrat;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.125rem; /* 141.667% */
}

h5,
.display-5 {
    color: var(--dark-green);
    /* Headings/XS/Heading 5 */
    font-family: Montserrat;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.875rem; /* 150% */
}

h6,
.display-6 {
    color: var(--dark-green);
    /* Headings/XS/Heading 6 */
    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.625rem; /* 144.444% */
}

h7,
.display-7 {
    color: var(--dark-green);
    /* Headings/MD/Heading 7 */
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25rem; /* 125% */
}

h8,
.display-8 {
    color: var(--dark-green);
    /* Headings/SM/Heading 8 */
    font-family: Montserrat;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.125rem; /* 128.571% */
}

p {
    color: #222;
    /* Body/LG/Body 1 paragraph */
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem; /* 162.5% */
    letter-spacing: -0.0125rem;
}

.dogear-left {
    border-top-left-radius: 100px;
}

.bg-1 {
    background: var(--green-1);
}

.bg-2 {
    background: var(--green-2);
}

.bg-3 {
    background: var(--dark-green);
}

.colour-1 {
    color: var(--green-1);
}

.colour-2 {
    color: var(--green-2);
}

.colour-3 {
    color: var(--dark-green);
}

.alert-info {
    --bs-alert-bg: var(--green-1);
    --bs-alert-border-color: #829d20;
    --bs-alert-color: var(--dark-green);
}

footer {
    background: url("/img/green-3-bg-tile.webp");
    padding-top: 3rem;
    z-index: 1;
}

/*CHECKBOX*/

input[type="checkbox"] {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid #bdc1c6;
    appearance: none;
    outline: 0;
    cursor: pointer;
    transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
    margin-right: 5px;
    flex: 0 0 18px;
}

    input[type="checkbox"]::before {
        position: absolute;
        content: "";
        top: 1px;
        left: 5px;
        width: 6px;
        height: 11px;
        border-style: solid;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        opacity: 0;
        color: var(--dark-green);
    }

    input[type="checkbox"]:checked {
        background: #fff;
        border-color: #869898;
    }

        input[type="checkbox"]:checked::before {
            opacity: 1;
        }

.form-check-input:focus {
    border-width: 3px;
}

    .form-check-input:focus:before {
        top: 0px;
        left: 5px;
        width: 5px;
        height: 10px;
    }

.form-check-label {
    user-select: none; /* Standard syntax */
}
/*END CHECKBOX*/

.btn-secondary {
    --bs-btn-color: #31817d;
    --bs-btn-bg: inherit;
    --bs-btn-border-color: #31817d;
    --bs-btn-hover-color: var(--dark-green);
    --bs-btn-hover-bg: inherit;
    --bs-btn-hover-border-color: var(--dark-green);
    --bs-btn-focus-shadow-rgb: #cfe57f;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--dark-green);
    --bs-btn-active-border-color: #cfe57f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--dark-green);
    --bs-btn-disabled-border-color: var(--dark-green);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.125rem;
    letter-spacing: 0.05rem;
}

.btn-primary-dark {
    --bs-btn-color: var(--dark-green);
    --bs-btn-bg: #cfe57f;
    --bs-btn-border-color: #cfe57f;
    --bs-btn-hover-color: var(--dark-green);
    --bs-btn-hover-bg: #87d1c9;
    --bs-btn-hover-border-color: #87d1c9;
    --bs-btn-focus-shadow-rgb: #cfe57f;
    --bs-btn-active-color: var(--dark-green);
    --bs-btn-active-bg: #cfe57f;
    --bs-btn-active-border-color: #87d1c9;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--dark-green);
    --bs-btn-disabled-border-color: var(--dark-green);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.125rem;
    letter-spacing: 0.05rem;
}

.btn-secondary-dark {
    --bs-btn-color: #cfe57f;
    --bs-btn-bg: var(--dark-green);
    --bs-btn-border-color: #cfe57f;
    --bs-btn-hover-color: #87d1c9;
    --bs-btn-hover-bg: var(--dark-green);
    --bs-btn-hover-border-color: #87d1c9;
    --bs-btn-focus-shadow-rgb: #cfe57f;
    --bs-btn-active-color: #cfe57f;
    --bs-btn-active-bg: var(--dark-green);
    --bs-btn-active-border-color: #cfe57f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--dark-green);
    --bs-btn-disabled-border-color: var(--dark-green);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.125rem;
    letter-spacing: 0.05rem;
}

.people-detail-image {
    flex: 0 0 150px;
}

    .people-detail-image img {
        width: 100%;
        border-radius: 50%;
    }

blockquote, .blockquote {
    font-family: "Montserrat";
    padding: 1rem 0 1rem 4rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}

    blockquote:before, .blockquote:before {
        content: "“";
        position: absolute;
        font-weight: 400;
        left: 0px;
        top: 0;
        line-height: 1;
        font-size: 5em;
        color: #87d1c9;
    }

.bg-green blockquote:before, .bg-green .blockquote:before {
    color: var(--dark-green);
}

.row.people-contact > div > * {
    margin: 0.5rem 0;
}

.sidebar h2 {
    font-size: 1.5rem;
}

.sidebar h3 {
    font-size: 1.25rem;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}

label {
    color: #173d3c;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25rem; /* 125% */
}

.bg-midnight label {
    color: white;
}

input.form-control, body .ts-control {
    --bs-border-radius: 0.5rem;
    border-radius: var(--bs-border-radius);
}

.ts-control #ts-placeholder {
    padding: 0;
    margin: 0;
}

input.form-control,
.ts-wrapper.single .ts-control,
.ts-wrapper.single .ts-control input,
.ts-wrapper.multi .ts-control,
body .ts-wrapper.multi.has-items .ts-control {
    border-color: #869898;
    padding: 6px 12px;
}

#footer-padding {
    background: white;
    padding-bottom: 6rem;
}

#page-content .ts-control, .ts-control {
    padding: 6px 10px 6px;
    font-size: 1rem;
    line-height: 24px;
}

select.tom-dropdown {
    padding: 9px 12px;
    display: block;
    height: 36px;
    border-color: #869898;
    width: 100%;
    overflow: hidden;
    color: grey;
}

    select.tom-dropdown.loading {
        opacity: 0.5;
    }

    select.tom-dropdown:after {
        content: "Loading...";
        color: grey;
    }

.tomselect-check .ts-control input {
    width: 5px;
    min-width: 5px;
    font-size: 1rem;
}

.tomselect-check .ts-control {
    padding-right: 35px !important;
}

    .tomselect-check .ts-control > div {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

#page-content .ts-wrapper.multi .ts-control > div {
    background: none;
}

input.rounded-pill {
    border: 2px solid #677979;
    padding: 0.5rem 1rem;
}

[data-bs-target="#advanced-search"]:not(.collapsed) > .feather-chevron-down {
    transform: rotate(180deg);
}

[data-bs-target="#advanced-search"] > .feather-chevron-down {
    transition: transform 200ms;
}

.ts-dropdown-content > div.option {
    color: #222;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem; /* 171.429% */
    letter-spacing: -0.0125rem;
}

.sub-heading {
    color: #222;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem; /* 155.556% */
    letter-spacing: -0.0125rem;
}

.ts-wrapper .ts-dropdown {
    margin: 0;
}

.ts-dropdown .option {
    display: flex;
    align-items: center;
}

.ts-control:focus-visible {
    outline: 1px solid var(--dark-green);
}

.ts-control > div.item {
    font-size: 1rem;
}

.cusearch-autocomplete-results {
    position: absolute;
    border: 1px solid #677979;
    padding: 0.75rem 0rem;
    width: 100%;
    border-radius: 1rem;
    background: #fff;
    margin-top: 1rem;
    top: 100%;
    z-index: 5;
}

.loader-bars-container {
    width: 2rem;
    height: 2rem;
    display: flex;
    gap: 4px;
}

.bg-midnight .loader-bar {
    background-color: var(--pistachio);
}

@keyframes loader-bar {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    50%, to {
        transform: scale(1);
    }
}

.loader-bar {
    flex: 1 1;
    background: var(--dark-green);
    animation: loader-bar 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    border-radius: calc(0.125rem);
}

    .loader-bar:first-of-type {
        animation-delay: -0.24s;
    }

    .loader-bar:nth-child(2) {
        animation-delay: -0.12s;
    }

.cusearch-autocomplete-results-inner {
    max-height: 352px;
    overflow: auto;
}

.autocomplete-item {
    display: flex;
    padding: 0.75rem 2rem 0.75rem 1.5rem;
    align-items: center;
    align-self: stretch;
    justify-content: space-between;
    color: #222;
    font-family: Montserrat;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1rem; /* 133.333% */
    transition: all 200ms;
    border: 1px solid transparent;
    cursor: pointer;
}

.scrollbar {
    scrollbar-width: auto;
    scrollbar-color: #173d3c #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 19px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: #173d3c;
    border-radius: 10px;
    border: 5px solid #ffffff;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
div.cusearch-autocomplete-results-inner {
    scrollbar-width: auto;
    scrollbar-color: #173d3c;
}

    /* Chrome, Edge, and Safari */
    div.cusearch-autocomplete-results-inner::-webkit-scrollbar {
        width: 16px;
    }

    div.cusearch-autocomplete-results-inner::-webkit-scrollbar-thumb {
        background-color: #173d3c;
        border-radius: 10px;
        border: 5px solid white;
    }

.autocomplete-item span:first-of-type {
    margin-right: 20px;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    border: 1px solid #31817d;
    background: #87d1c9;
    color: black;
}

.autocomplete-item:active {
    border: 1px solid var(--dark-green);
    background: var(--dark-green);
    color: white;
}

.search-spinner {
    width: 24px;
    height: 24px;
}

.hidden {
    display: none;
}

.btn-icon {
    display: flex;
    padding: 0.5rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 2rem;
}

    .btn-icon.small {
        height: 39px;
        padding: 0.5rem 1.5rem;
    }

        .btn-icon.small svg {
            width: 1rem;
            height: 1rem;
        }

.icon-s1 {
    width: 1rem;
    height: 1rem;
}

.icon-s1-25 {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-s2 {
    width: 2rem;
    height: 2rem;
}

.icon-s3 {
    width: 3rem;
    height: 3rem;
}

.icon-s4 {
    width: 4rem;
    height: 4rem;
}

.stroke-1 {
    stroke-width: 1;
}

.stroke-2 {
    stroke-width: 2;
}

.band-text {
    color: var(--dark-green);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem; /* 171.429% */
    letter-spacing: -0.0125rem;
}

ul li p{
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-top: 1rem;
}

.ts-wrapper .option {
    color: #173d3c;
}

    .ts-wrapper .option:hover {
        background-color: #cfe57f;
    }

    .ts-wrapper .option.selected {
        background-color: #173d3c;
        color: white;
    }

ts-wrapper .option:active {
    background-color: #102828;
    color: white;
}

.tom-dropdown .ts-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.search-result img {
    border-top-left-radius: 25px;
}

.search-result .search-result-sub {
    color: #4d4d4d;
    font-weight: 400;
    line-height: 1.625rem; /* 162.5% */
    letter-spacing: -0.0125rem;
}

.hover-dark-green:hover {
    background: var(--dark-green) !important;
    color: white;
}

.bubble-tag {
    background: rgb(248, 249, 250);
    font-weight: 600;
    text-align: center;
    padding: 0.5rem 1rem;
    color: var(--dark-green);
    border-radius: 2rem;
    margin: 5px;
}

    .bubble-tag:hover {
        background: var(--dark-green);
        color: white;
    }

.form-group.clsFormCreator_button {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.form-group.form-actions {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.git-image {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.git-image-container {
    flex: 0 0 108px;
    margin-right: 0.5rem;
}

.text-ellipses {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dot-seperator:before {
    content: "•";
}

.dot-seperator {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.profile-detail {
    border-bottom: 1px solid var(--dark-green);
}

.lh-0 {
    line-height: 0;
}

blockquote p:last-child {
    margin-bottom: 0;
}

.form-group.clsFormCreator_button {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.form-group.form-actions {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.accordion {
}

    .accordion > .card {
        border-radius: 0;
    }

        .accordion > .card > .card-header {
            background: white;
            border-radius: 0;
        }

.sidenav a {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25rem;
    /* 125% */
    color: #31817d;
    display: block;
    padding: 0.5rem 1rem 0.5rem 0;
    width: 100%;
    position: relative;
}

    .sidenav a:hover:after {
        content: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="17" viewBox="0 0 24 24" fill="none" stroke="rgb(200,200,200)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg>');
        right: 0;
        position: absolute;
        top: calc(50% - 8px);
        height: 16px;
    }

    .sidenav a.active:after {
        content: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="17" viewBox="0 0 24 24" fill="none" stroke="rgb(49,129,125)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg>');
        right: 0;
        position: absolute;
        top: calc(50% - 8px);
        height: 16px;
    }

.sidenav > nav.nav {
    padding-left: 1rem;
    border-bottom: 1px solid #cecece;
}

#hero-image {
    max-width: 100%;
    border-top-right-radius: 10rem;
    object-fit: cover;
}

.jump-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

a.jump-tile {
    padding: 0.3rem 0.5rem;
    font-weight: 600;
    color: #173d3c;
    border: 1px solid #cecece;
    transition: all 200ms;
}

    a.jump-tile:hover {
        background: var(--bs-tertiary-bg);
    }


.bg-green a.jump-tile {
    color: #173d3c;
    border: 1px solid #173d3c;
}

    .bg-green a.jump-tile:hover {
        color: #CFE57F;
        background: #173D3C;
    }

.bg-blue6-grey6 {
    background: linear-gradient(to right, #87d1c9 0%, #87d1c9 51%, var(--bs-tertiary-bg) 51%, var(--bs-tertiary-bg) 100%);
}

.bg-blue6-white6 {
    background: linear-gradient(to right, #87d1c9 0%, #87d1c9 51%, white 51%, white 100%);
}

.bg-grey6-white6 {
    background: linear-gradient(to right, var(--bs-tertiary-bg) 0%, var(--bs-tertiary-bg) 51%, white 51%, white 100%);
}

.bg-grey6-blue6 {
    background: var(--bs-tertiary-bg);
}

.bg-grey6-pistachio6 {
    background: linear-gradient(to right, var(--bs-tertiary-bg) 0%, var(--bs-tertiary-bg) 51%, #cfe57f 51%, #cfe57f 100%);
}

.bg-pistachio6-grey6 {
    background: linear-gradient(to right, #cfe57f 0%, #cfe57f 50%, var(--bs-tertiary-bg) 50%, var(--bs-tertiary-bg) 100%);
}

.bg-pistachio6-white6 {
    background: linear-gradient(to right, #cfe57f 0%, #cfe57f 50%, white 50%, white 100%);
}

.bg-grey8-blue4 {
    background: var(--bs-tertiary-bg);
}

.bg-grey8-pistachio4 {
    background: var(--bs-tertiary-bg);
}

.fetch-svg svg {
    fill: currentColor;
}

.midnight-links a:hover {
    color: var(--pistachio);
}

.midnight-links a.focus {
    border-bottom: 2px solid var(--dark-green);
}

.midnight-dividers div:not(:last-child) {
    border-right: 1px solid var(--dark-green);
}

.child-nav:not(.midnight-dividers) div.focus {
    box-shadow: 0px 0px 5px 1px #87d1c9;
}

.child-nav.midnight-dividers div.focus a {
    border-bottom: 2px solid var(--dark-green);
}

@media (min-width: 768px) {
    .bg-grey8-blue4 {
        background: linear-gradient(to right, var(--bs-tertiary-bg) 0%, var(--bs-tertiary-bg) 68%, #87d1c9 68%, #87d1c9 100%);
    }

    .bg-grey8-pistachio4 {
        background: linear-gradient(to right, var(--bs-tertiary-bg) 0%, var(--bs-tertiary-bg) 68%, #cfe57f 68%, #cfe57f 100%);
    }

    .bg-grey6-blue6 {
        background: linear-gradient(to right, var(--bs-tertiary-bg) 0%, var(--bs-tertiary-bg) 51%, #87d1c9 51%, #87d1c9 100%);
    }

    .bg-grey6-white6 {
        background: linear-gradient(to right, var(--bs-tertiary-bg) 0%, var(--bs-tertiary-bg) 51%, white 51%, white 100%);
    }
}

img#hero-icon {
    width: 50px;
    height: 50px;
}

.border-midnight {
    border-color: #73915D !important;
}

.flex-table {
    display: flex;
    flex-direction: column;
}

.flex-table-row {
    display: flex;
}

    .flex-table-row .w-200 {
        flex: 0 0 200px;
    }

    .flex-table-row .w-300 {
        flex: 0 0 300px;
    }

    .flex-table-row > * {
        flex: 1;
        padding: 1rem;
    }

        .flex-table-row > * p:last-of-type {
            margin-bottom: 0;
        }

@media(max-width: 991px) {
    .flex-table-row {
        display: block;
    }
}

.cream-background {
    background: rgba(207, 229, 127, 0.5)
}

.cream-background-light {
    background: rgba(246, 246, 246, 1);
}

.bg-cream {
    background: rgba(246, 246, 246, 1);
}

.bg-cream-light {
    background: rgba(246, 246, 246, 1);
}

.flex-table-header-150 {
    flex: 0 0 150px;
}

.flex-table-header-100 {
    flex: 0 0 100px;
}

@media (min-width: 992px) {
    .d-flex .bg-cream-light.p-3:first-child {
        flex: 0 0 25%;
    }

    .d-flex .bg-cream.p-3 {
        flex: 0 0 25%;
    }

    .flex-table-2 > div.flex-table-header-300 {
        flex: 0 0 300px;
    }

    .flex-table-4 > div {
        flex: 0 0 25%;
    }   

    .flex-table-3 > div {
        flex: 0 0 33.33%;
    }

    flex-table-cell {
        flex: 0 0 auto;
    }
    .flex-table-cell-5 {
        flex: 0 0 20%;
    }
    .flex-table-cell-4 {
        flex: 0 0 25%;
    }
    .flex-table-cell-3 {
        flex: 0 0 33.33%;
    }
    .flex-table-cell-2 {
        flex: 0 0 50%;
    }


    #hero-image {
        height: 100%;
    }
}

@media (max-width: 992px) {
    .flex-table-2 {
        flex-direction: column;
    }

        .flex-table-2 > div {
            flex: 0 0 100%;
        }

    .flex-table-4, .flex-table-3 {
        flex-direction: column;
    }

        .flex-table-4 > div, .flex-table-3 > div {
            flex: 0 0 100%;
        }
    .flex-table-cell {
        flex: 0 0 100%;
    }

    .flex-table-cell-5 {
        flex: 0 0 100%;
    }

    .flex-table-cell-4 {
        flex: 0 0 100%;
    }

    .flex-table-cell-3 {
        flex: 0 0 100%;
    }

    .flex-table-cell-2 {
        flex: 0 0 100%;
    }

   
}

.p-15 {
    padding: 15px;
}

#scrollspy {
    top: 20px;
}

#scrollspy-menu {
    list-style: none;
    padding-left: 0;
}

.sidenav > li > nav {
    display: none;
    padding-left: 1rem;
    border-bottom: 1px solid #cecece;
}

    .sidenav > li > nav.show {
        display: block;
    }

.search-loading-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255, 0.75);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsive-image {
    width: 100%;
}

div#navbarSupportedContent {
    width: 100%;
}

nav#top-nav {
    z-index: 99;
    background: white;
    top: 0;
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    position: sticky;
}

@media (min-width: 768px) {
    .md-mh-330 {
        max-height: 330px;
        overflow: auto;
    }

    input.rounded-pill {
        border: 2px solid #677979;
        padding: 1rem 1.5rem;
        font-size: 1.25rem;
    }

    .btn-icon {
        padding: 1rem 2rem;
    }

    input.form-control.small {
        font-size: 0.875rem;
        padding: 7px 8px 6px;
    }

    .ts-control > div.item {
        font-size: 0.875rem;
    }
}

@media (max-width: 991px) {
    h1, .display-1 {
        font-size: 2.5rem;
        line-height: 3.125rem; /* 125% */
    }

    h2, .display-2 {
        font-size: 1.75rem;
        line-height: 2.5rem; /* 142.857% */
    }

    h3, .display-3 {
        font-size: 1.5rem;
        line-height: 2rem; /* 133.333% */
    }

    h4, .display-4 {
        font-size: 1.375rem;
        line-height: 1.75rem; /* 127.273% */
    }

    h5, .display-5 {
        font-size: 1.25rem;
        line-height: 1.5rem; /* 120% */
    }

    h6, .display-6 {
        font-size: 1.125rem;
        line-height: 1.375rem; /* 111.111% */
    }

    h7, .display-7 {
        font-size: 1rem;
        line-height: 1.25rem; /* 125% */
    }

    h8, .display-8 {
        font-size: 0.875rem;
        line-height: 1.125rem; /* 128% */
    }

    p {
        font-size: 1.125rem;
        line-height: 1.75rem; /* 144% */
    }

    #top-nav .nav-link {
        font-size: 2.5rem;
        line-height: 3.125rem; /* 125% */
        border-bottom: 1px solid #CECECE;
        padding: 1rem;
    }

    .offcanvas ul {
        padding: 1rem;
    }

    .autocomplete-item {
        font-size: 1rem;
    }

    .offcanvas-header {
        border-bottom: 1px solid #CECECE;
        padding: 1rem 2rem;
    }

    #top-nav .card {
        height: calc(100vh - 100px);
        overflow: auto;
    }
}


@media (max-width: 768px) {
    h1, .display-1 {
        font-size: 2rem;
        line-height: 2.5rem; /* 125% */
    }

    h2, .display-2 {
        font-size: 1.5rem;
        line-height: 2rem; /* 133.333% */
    }

    h3, .display-3 {
        font-size: 1.375rem;
        line-height: 1.75rem; /* 142.857% */
    }

    h4, .display-4 {
        font-size: 1.25rem;
        line-height: 1.5rem; /* 120% */
    }

    h5, .display-5 {
        font-size: 1.125rem;
        line-height: 1.375rem; /* 111.111% */
    }

    h6, .display-6 {
        font-size: 1rem;
        line-height: 1.25rem; /* 125% */
    }

    h7, .display-7 {
        font-size: 0.875rem;
        line-height: 1.125rem; /* 128% */
    }

    h8, .display-8 {
        font-size: 0.75rem;
        line-height: 1rem; /* 133.333% */
    }

    p {
        font-size: 1rem;
        line-height: 1.625rem; /* 150% */
    }

    #top-nav .nav-link {
        font-size: 2rem;
        line-height: 2.5rem; /* 125% */
        border-bottom: 1px solid #CECECE;
        padding: 1rem;
    }

    #top-nav .bg-green {
        background: none;
    }

    #top-nav .btn {
        width: 100%;
    }

    .landing-image {
        /* override existing border radius and replace with the target one */
        border-radius: 0;
        border-top-left-radius: 5rem;
        border-bottom-left-radius: 0 !important;
    }




    .responsive-hill .bg-blue.hill-left {
        border-top-right-radius: 2.5em;
    }

    .responsive-hill div.bg-blue {
        width: 90% !important;
    }
}

.offcanvas-header {
    flex: 0 0 57px;
}

footer .footer-icon {
    width: 40px;
}

.ts-wrapper .ts-dropdown-content {
    max-height: 352px;
}

.clsFormCreator input.btn {
    border-radius: 2rem;
}

.clsFormCreator legend.clsFieldsetLegend {
    color: var(--dark-green);
    /* Headings/MD/Heading 3 */
    font-family: Montserrat;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.5rem; /* 142.857% */
}

@media screen and (max-width: 992px) {
    #top-nav .collapse .card-body {
        padding-bottom: 3rem;
    }
}

.px-0 > .py-5 > .hill-left ~ div {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

li.breadcrumb-item.breadcrumb-no-click a {
    cursor: default !important;
}

.hero-image-container {
    flex: 0 0 350px;
}


#modal-background {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.75);
    z-index: 900 !important;
}

.modal-youtube {
    position: fixed !important;
    z-index: 901 !important;
}

.d-flex .bg-cream.p-3 {
    flex: 0 0 35%;
}

.d-flex .bg-cream-light.p-3:first-child {
    flex: 0 0 35%;
}

.side-list-item {
    font-weight: 600;
    padding: 0.5rem 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.left-hill-turquoise {
    background: linear-gradient( to right, #87D1C9 0%, #87D1C9 50%, #ffffff 50%, #ffffff 100% );
}

.green-bar p:last-child {
    margin-bottom: 0;
}

.tile-long {
    border-radius: 6px;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 0.8px solid rgb(222, 226, 230);
}

.tile.tile-long .display-6 {
    color: var(--dark-green);
}

.tile .display-6 {
    color: #318180;
}

.tile:hover .display-6 {
    color: #697f1a;
}

.accordion .card-header {
    cursor: pointer;
}

.accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.card-header.collapsed svg {
    transform: rotate(270deg);
}

.card-header svg {
    transition: transform 200ms;
    transform: rotate(360deg);
}

/*li.breadcrumb-item:last-child {
    display: none;
}*/

.accordion-header {
    padding: 8px 16px;
    border-bottom: 0.8px solid rgba(0, 0, 0, 0.176);
}

    .accordion-header > .accordion-button {
        background: #fff;
        border-radius: 0;
        padding: 6px 12px;
        box-shadow: none;
    }

.accordion .accordion-item {
    margin-bottom: 4px;
    margin-top: 4px;
    border: 0.8px solid rgba(0, 0, 0, 0.176);
    border-radius: 0;
}


td {
    padding: 1rem;
    border: 1px solid #eee;
}

#accordion-picker-container {
    margin-top: 1rem;
    margin-bottom: 2rem;
}
