@-webkit-keyframes BGScroller {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
}
@-moz-keyframes BGScroller {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
}
@keyframes BGScroller {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
}

body {

    font-family: 'Open Sans', sans-serif;
    font-size: 1.4em;
    line-height: 1.5em;
    margin: 2vw;
    margin-top: 10vh;
    text-align: center;
    background-color: #9e0a0a;
    background: linear-gradient(180deg, #9e0a0a, #8c0000, #bf0000);
    background-size: 600% 600%;
    
    -webkit-animation: BGScroller 12s ease infinite;
    -moz-animation: BGScroller 12s ease infinite;
    animation: BGScroller 12s ease infinite;


}

#logo {
    max-width: 300px;
    height: auto;
    text-align: center;
    margin: auto;
}

#main {
    margin: auto;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

section {
    max-width: 40em;
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
    
}

#main section h1 {
    font-size: 2.1em;
    line-height: 1.2em;
    margin-top: 0px;
 
}

#main.privacy {
    background-color: white;
}

table {
    font-size: 0.6em;
    border-collapse: collapse;
}

th {
    font-weight: bold;
    text-align: left;
}

td,th {
    padding: 1em;
    vertical-align: top;
    
    border-right: 1px solid grey;
}

tr {
    border-bottom: 1px solid grey;
}

tbody tr:last-child {
    border-bottom: 0px;
}

th:last-child, td:last-child {
    border-right: 0px;
}

section.intro {
    flex-basis: 30em;
    color: white;
    font-size: 0.9em;

    flex-shrink: 1;
    
}

section.intro a, section.intro a:visited {
    color: white;
}

section.form {
    box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
    background-color: white;
    color: black;
    min-width: 40vw;

}

.breadcrumb {
    font-size: 0.9rem;
}

a,a:visited {
    color: #9e0a0a;
}

#main > section > .hbspt-form {
    position: relative;
}

#main > section > .hbspt-form::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 70px;
    width: 100%;
    background-color: white;
}

.footer {
    color: white;
    margin-top: 1em;
}

.footer a, .footer a:visited {
    color: white;
}


@media screen and (max-width: 550px) {
    body {
        margin-top: 0px;
        font-size: 1.05em;
    }

    #main section.intro h1 {
        text-align: center;
        margin-bottom: 2em;
        font-size: 1.8em;
        
    }

    #main section.intro {
        margin-bottom: 0px;
        margin-top: 0px;
    }


}

.sticky-area {
    position: sticky;
    top: 10vh;
}