<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*, :before, :after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

html {
    font-size: 16px;
}

body {
    color: #404040;
    line-height: 1.75;
    margin: 0;
}

body, button, input, select, textarea {
    font-family: "Lato", sans-serif;
    font-size: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Bitter", sans-serif;
    font-weight: 700;
    line-height: 1;
}

h2 {
    font-size: 36px;
}

@media screen and (max-width: 600px) {
    h2 {
        font-size: 26px;
    }
}

figure {
    margin: 1em 0;
}

.wp-block-separator {
    display: none;
}


/** PAGE **/

.page {
    position: relative;
    min-height: 100vh;
    background-color: white;
    padding-bottom: 50px;
}


/** TOPBAR **/

.topbar {
    position: absolute;
    z-index: 7;
    top: 0; right: 0; left: 0;
    min-height: 300px;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}
.backdrop {
    position: absolute;
    z-index: 5;
    top: 0; left: 0;
    width: 800px;
    height: 600px;
    max-width: 100%;
    background: left top / 800px 600px no-repeat url("../images/logo-backdrop.png");
    pointer-events: none;
}

.topbar .brand {
    position: absolute;
    top: 40px; left: 40px;
    z-index: 6;
}

.topbar .menu,
.topbar .mobile-menu {
    position: absolute;
    top: 47px; right: 50px;
}

.hamburger {
    font-weight: bold;
    line-height: 20px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.8);
}
.hamburger svg {
    vertical-align: middle;
    margin-left: 5px;
    stroke: rgba(0, 0, 0, 0.8);
}


/** MENU **/

.topbar .menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}
.topbar .menu ul li {
    margin-left: 30px;
}
.topbar .menu ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
}
.topbar .menu ul li a:hover,
.topbar .menu ul li.current_page_item a {
    color: #8C181B;
}
.topbar .menu ul li ul {
    display: none;
}


.topbar .mobile-menu {
    display: none;
    top: 30px;
    right: 25px;
}



/** COVER **/

.cover, .cover-caption {
    height: 320px;
}
.cover {
    background-color: #808080;
    background-image: url("../images/cover.jpg");
    background-size: cover;
    background-position: center;
}
.cover.large, .cover-caption.large {
    height: 55vh;
    min-height: 320px;
}

.cover-caption {
    position: absolute;
    top: 0; right: 0; left: 0;
    pointer-events: none;
}
.cover-caption .caption {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 0.8);
    padding-top: 100px;
    position: relative;
    z-index: 100;
    text-align: center;
}
.cover-caption .caption h1 {
    font-size: 48px;
    margin: 0;
}
.cover-caption .caption p {
    font-size: 24px;
    margin: 0.5em 0 0 0;
    color: rgba(0, 0, 0, 0.5);
}


/** CONTENT **/

.content {
    position: relative;
    z-index: 10;
}

.content-top {
    position: absolute;
    top: -33px; right: 0; left: 0;
    height: 33px;
    background: center center / 1430px 33px url("../images/brush-stroke.png");
}

.content a[href] {
    color: #1473e6;
    text-decoration: none;
}


/** SECTION **/

.section {
    padding: 50px 0;
    background-color: white;
}
.section h2.header {
    margin: 0 0 40px 0;
}
.section h2.header a {
    color: inherit;
}

.wp-block-image + h2 {
    margin-top: 16px;
}
.wp-block-image .alignleft {
    margin-top: 0;
    margin-right: 2em;
}

@media screen and (max-width: 1200px) {
    .topbar .menu {
        display: none;
    }
    .topbar .mobile-menu {
        display: block;
    }
    .backdrop {
        width: 400px;
        height: 300px;
        background-size: 400px 300px;
    }
    .topbar .brand {
        top: 20px; left: 20px;
    }
}
@media screen and (max-width: 600px) {
    .wp-block-image .alignleft {
        float: none;
        clear: both;
        margin-right: 0;
        width: 100%;
    }

    .wp-block-image .alignleft img {
        display: block;
        width: 100%;
        height: auto;
    }

    .cover, .cover-caption {
        height: 200px;
    }
    .cover.large, .cover-caption.large {
        height: 40vh;
    }
    .cover-caption .caption {
        padding-top: 50px;
    }
    .cover-caption .caption h1 {
        font-size: 32px;
    }
    .cover-caption .caption p {
        font-size: 16px;
    }

    .section {
        padding: 20px 0;
    }
}


/** CONTAINER **/

.container {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}
.container.wide {
    max-width: 1100px;
}

blockquote .author {
    font-size: .75em;
    opacity: 0.5;
}
blockquote .author:before {
    content: "\2013  ";
    display: inline;
}


/** TEAM **/

.team {
    margin-top: 20px;
}
.team-member {
    display: flex;
    margin-bottom: 20px;
}
.team-member:nth-child(2n) {
    flex-direction: row-reverse;
}

.team-member .photo {
    margin-right: 40px;
}
.team-member .photo img {
    border-radius: 50%;
}
.team-member:nth-child(2n) .photo {
    margin-left: 40px;
    margin-right: 0;
}

.team-member h4 {
    margin: 0;
    font-size: 1.25em;
}
.team-member .meta {
    font-size: 0.85em;
    opacity: 0.75;
}


/** NEWS **/

.news {
    margin-top: 20px;
}
.news-item {
    display: flex;
    margin-bottom: 20px;
}
.news-item + .news-item {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.news-item .photo {
    margin-right: 20px;
}

.news-item h4 {
    margin: 0;
    font-size: 1.25em;
}
.news-item .meta {
    font-size: 0.85em;
    opacity: 0.75;
}

.news-date {
    width: 100px;
    flex-shrink: 0;
}
.news-date .day {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    text-align: center;
}

.news-date .month {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}


/** FORM **/

form .field {
    margin: 1em 0;
}
form .field &gt; label {
    display: block;
    font-weight: 700;
}
form .field &gt; label + br {
    display: none;
}
form .field &gt; input[type="text"],
form .field &gt; input[type="email"],
form .field &gt; textarea {
    -webkit-display: none;
    display: block;
    margin: 0;
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 10px;
    box-shadow: none;
}

form label {
    display: block;
    font-weight: 700;
}
form label + br {
    display: none;
}
form input[type="text"],
form input[type="email"],
form textarea {
    -webkit-display: none;
    display: block;
    margin: 0;
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 10px;
    box-shadow: none;
}

.checkbox-list {
    margin: 1em 0;
    padding: 0;
    list-style: none;
}
.checkbox-list label {
    font-weight: normal;
}


/** BUTTONS **/

button.button, input.button, input.wpcf7-submit, button.wp-block-button__link {
    -webkit-appearance: none;
    margin: 0;
    outline: none;
}
.button, .wpcf7-submit, .wp-block-button__link {
    display: inline-block !important;
    padding: 16px 40px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 29px !important;
    background-color: #404040 !important;
    /*box-shadow: inset 0 0 0 1px #404040 !important;*/
    cursor: pointer !important;
    color: #fff !important;
    border: none  !important;
    transition: background-color .2s;
    margin-bottom: 10px;
    margin-right: 10px;
}
.button:hover, .wpcf7-submit:hover, .wp-block-button__link:hover {
    background-color: #606060 !important;
}


/** OFFCANVAS **/

.offcanvas {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    transform: translateX(100%);
    z-index: -1;
    transition: transform .5s cubic-bezier(.65, 0, 0, 1);
    background-color: white;
    box-shadow: 0 0 24px rgba(0,0,0,0.24);
    padding: 20px 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.offcanvas.visible {
    transform: none;
}
.offcanvas .offcanvas-close {
    position: absolute;
    top: 25px; right: 25px;
}

.offcanvas .header {
    padding: 0 20px;
    font-size: 20px;
    font-family: "Bitter", sans-serif;
    font-weight: 700;
}

.offcanvas .menu ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}
.offcanvas .menu ul li {
    display: block;
}
.offcanvas .menu ul li + li {
    border-top: 1px solid #f0f0f0;
}
.offcanvas .menu ul li a {
    display: block;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    color: inherit;
}
.offcanvas .menu ul li a:hover,
.offcanvas .menu ul li.current_page_item a {
    color: #8C181B;
}
.offcanvas .menu ul li ul {
    display: none;
}

.wp-block-embed__wrapper {
    position: relative;
}
.wp-block-embed__wrapper &gt; .ratio {
    height: 0;
}
.wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
}

.wp-social-link a[href] {
    color: white !important;
}

.layout-columns {
    display: flex;
    flex-wrap: wrap;
}
.layout-columns &gt; .main-column {
    width: 100%;
    padding: 0 1rem;
}
.layout-columns &gt; .side-column {
    width: 100%;
    padding: 0 1rem;
}
.layout-columns &gt; .side-column iframe {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .layout-columns &gt; .main-column {
        width: 66.66667%;
    }
    .layout-columns &gt; .side-column {
        width: 33.33333%;
    }
}
</pre></body></html>