<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;700&amp;display=swap');

html {
    position: relative;
    min-height: 100%;
    font-size: 16px;
    scroll-padding-top: 140px;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.wrapper {
    flex-grow: 1;
}

.top-bar {
    background-color: #225777;
    height: 20px;
}

.top-bar2 {
    background-color: #E8E8E8;
    height: 1px;
}

.bottom-bar {
    background-color: #225777;
    padding: 10px;
    color: white;
    font-size: 14px;
    padding-top: 30px;
}

.bottom-section {
    background-color: #E8E8E8;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer {
    top: 0;
}

a, a:hover {
    color: #173054;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1 {
    font-weight: bold;
    font-size: 24px;
    color: #173054;
    width: 100%;
    background-color: #E8E8E8;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}

h2 {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 28px;
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}

h5 {
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 80%;
    color: white;
}

/* headlines with lines */
.decorated {
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
}

.decorated &gt; span {
    position: relative;
    display: inline-block;
}

.decorated &gt; span:before, .decorated &gt; span:after {
    content: '';
    position: absolute;
    top: 50%;
    border-bottom: 1px solid #D0D0D0;
    width: 100vw;
    margin: 0 20px;
}

.decorated &gt; span:before {
    right: 100%;
}

.decorated &gt; span:after {
    left: 100%;
}

@media (min-width: 768px) {

    html {
        font-size: 18px;
    }

    h1 {
        font-size: 32px;
    }

    h5 {
        font-size: 40px;
        left: 50%;
        top: 60%;
    }
}

@media (min-width: 992px) {

/*    html {
        scroll-padding-top: 140px;
    }*/
}

@media (min-width: 1200px) {
    h5 {
        font-size: 48px;
        left: 50%;
        top: 25%;
    }
}
</pre></body></html>