<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

* {
    box-sizing: border-box;
}



.dirs .dirwrapper {
    margin: 5em auto;
    max-width: 1000px;
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
}

.dirs .dirheader {
    padding: 30px 30px 0;
    text-align: center;
}

.dirs .dirheader__title {
    margin: 0;
    text-transform: uppercase;
    font-size: 2.5em;
    font-weight: 500;
    line-height: 1.1;
}

.dirs .dirheader__subtitle {
    margin: 0;
    font-size: 1.5em;
    color: #949fb0;
    font-family: "Yesteryear", cursive;
    font-weight: 500;
    line-height: 1.1;
}

.dirs .cards {
    padding: 15px;
    display: flex;
    flex-flow: row wrap;
}

.dirs .dircard {
    margin: 15px;
    width: calc((100% / 3) - 30px);
    transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 991px) {
    .dirs .dircard {
        width: calc((100% / 2) - 30px);
    }
}

@media screen and (max-width: 767px) {
    .dirs .dircard {
        width: 100%;
    }
}

.dirs .dircard:hover .dircard__inner {
    background-color: #1abc9c;
    transform: scale(1.05);
}

.dirs .dircard__inner {
    width: 100%;
    padding: 30px;
    position: relative;
    cursor: pointer;
    background-color: #949fb0;
    color: #eceef1;
    font-size: 1.5em;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.dirs .dircard__inner:after {
    transition: all 0.3s ease-in-out;
}

.dirs .dircard__inner .fa {
    width: 100%;
    margin-top: 0.25em;
}

.dirs .dircard__expander {
    transition: all 0.2s ease-in-out;
    background-color: #333a45;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #eceef1;
    font-size: 1.5em;
}

.dirs .dircard__expander .fa {
    font-size: 0.75em;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.dirs .dircard__expander .fa:hover {
    opacity: 0.9;
}

.dirs .dircard.is-collapsed .dircard__inner:after {
    content: "";
    opacity: 0;
}

.dirs .dircard.is-collapsed .dircard__expander {
    max-height: 0;
    min-height: 0;
    overflow: hidden;
    margin-top: 0;
    opacity: 0;
}

.dirs .dircard.is-expanded .dircard__inner {
    background-color: #1abc9c;
}

.dirs .dircard.is-expanded .dircard__inner:after {
    content: "";
    opacity: 1;
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    bottom: -30px;
    left: calc(50% - 15px);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #333a45;
}

.dirs .dircard.is-expanded .dircard__inner .fa:before {
    content: "";
}

.dirs .dircard.is-expanded .dircard__expander {
    max-height: 1000px;
    min-height: 200px;
    overflow: visible;
    margin-top: 30px;
    opacity: 1;
}

.dirs .dircard.is-expanded:hover .dircard__inner {
    transform: scale(1);
}

.dirs .dircard.is-inactive .dircard__inner {
    pointer-events: none;
    opacity: 0.5;
}

.dirs .dircard.is-inactive:hover .dircard__inner {
    background-color: #949fb0;
    transform: scale(1);
}

@media screen and (min-width: 992px) {
    .dirs .dircard:nth-of-type(3n+2) .dircard__expander {
        margin-left: calc(-100% - 30px);
    }

    .dirs .dircard:nth-of-type(3n+3) .dircard__expander {
        margin-left: calc(-200% - 60px);
    }

    .dirs .dircard:nth-of-type(3n+4) {
        clear: left;
    }

    .dirs .dircard__expander {
        width: calc(300% + 60px);
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .dirs .dircard:nth-of-type(2n+2) .dircard__expander {
        margin-left: calc(-100% - 30px);
    }

    .dirs .dircard:nth-of-type(2n+3) {
        clear: left;
    }

    .dirs .dircard__expander {
        width: calc(200% + 30px);
    }
}</pre></body></html>