<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* misc */
.scroll-y-auto {
    overflow-y: auto;
    padding-right: 2rem;
}

    .scroll-y-auto::-webkit-scrollbar {
        width: 10px;
    }

    .scroll-y-auto::-webkit-scrollbar-track {
        background-color: #f1f1f1;
    }

    .scroll-y-auto::-webkit-scrollbar-thumb {
        background-color: #ccc;
        outline: 1px solid slategrey;
    }

/* bios */
.modal-content &gt; button.btn-close {
    position: absolute;
    top: 0;
    right: 0;
    background: white url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2315284a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 1;
    width: 2em;
    height: 2em;
}

@media (min-width: 992px) {
    .bio {
        max-height: 15vw;
    }
}

/* utilities */
section {
  position: relative;
}
.section__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
a.no-style, a.no-style:hover {
    color: inherit;
    text-decoration: none;
}

/* tool at https://codepen.io/sosuke/pen/Pjoqqp */
img.text-blue, img.text-primary {
    filter: invert(27%) sepia(85%) saturate(6691%) hue-rotate(195deg) brightness(95%) contrast(88%);
}

img.text-light-blue {
    filter: invert(77%) sepia(9%) saturate(2860%) hue-rotate(166deg) brightness(98%) contrast(89%);
}

img.text-gray-blue {
    filter: invert(92%) sepia(9%) saturate(1451%) hue-rotate(167deg) brightness(94%) contrast(83%);
}

img.text-green {
    filter: invert(60%) sepia(66%) saturate(353%) hue-rotate(30deg) brightness(90%) contrast(99%);
}

img.text-light-green {
    filter: invert(90%) sepia(29%) saturate(459%) hue-rotate(17deg) brightness(86%) contrast(85%);
}

img.text-orange {
    filter: invert(55%) sepia(87%) saturate(2015%) hue-rotate(329deg) brightness(99%) contrast(92%);
}

img.text-light-orange {
    filter: invert(82%) sepia(15%) saturate(2152%) hue-rotate(315deg) brightness(97%) contrast(101%);
}

img.text-navy {
    filter: invert(12%) sepia(11%) saturate(6468%) hue-rotate(192deg) brightness(95%) contrast(94%);
}

img.text-white {
    filter: brightness(0) invert(1);
}

img.text-dark-gray {
    filter: invert(38%) sepia(10%) saturate(17%) hue-rotate(325deg) brightness(91%) contrast(91%);
}

ol.list-big-numbers {
    counter-reset: item;
    list-style-type: none;
    padding: 0;
    margin: 2rem 0 0;
}

    ol.list-big-numbers &gt; li {
        display: block;
        position: relative;
        margin-bottom: 2rem;
        padding-left: 7rem;
        min-height: 80px;
    }

        ol.list-big-numbers &gt; li:before {
            content: counter(item) "  ";
            counter-increment: item;
            font-size: 80px;
            font-family: var(--primary-font);
            color: white;
            position: absolute;
            left: 0;
            top: 6px;
            line-height: 1;
            background: var(--primary-color);
            width: 80px;
            text-align: center;
        }

/* team member isotope.js filter */
.element-item {
    max-width: 100%;
}

.team-member {
    text-align: center;
    width: 576px;
    max-width: 100%;
}
.filters-button-group .btn.is-checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.filters-button-group .btn:focus {
    box-shadow: none;
}
@media (min-width: 768px) {
    .team-member {
        width: 690px
    }
}

@media (min-width: 1200px) {
    .team-member {
        width: 540px;
        margin-right: 1rem;
    }
}

@media (min-width: 1400px) {
    .team-member {
        width: 300px;
        margin-right: 1rem;
    }
}





/* calculators */
.calculator-buttons &gt; button {
    padding: 1.5rem;
    width: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem 1rem 0;
    border: none;
}</pre></body></html>