* {
    box-sizing: border-box;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.25;
    letter-spacing: calc(1em * (5 / 200));
    word-spacing: calc(1em * (5 / 100));
}

ul {
    list-style-type: square;
    font-size: 14px;
}

.attention {
    color: #6883BA;
}

.outer {
    margin: auto;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    width: 60%;
    max-width: 300px;
}

.inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.wordmark-svg {
    display: block;
    margin: auto;
    cursor: pointer;
}

.main-content {
    visibility: hidden;
    position: relative;
    background-color: white;
    width: 80%;
    margin: auto auto auto auto;
    padding: 0px 20px 0px 20px;
    max-height: 0vh;
    overflow: hidden;
}

.column {
    margin: 0px auto 10px auto;
    position: relative;
    float: left;
    width: 50%;
    padding: 10px;
    color: #6f6f6f;
    border: 2px solid transparent;
    -webkit-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
    transition: color 0.4s ease-in-out;
}

.column:hover {
    color: #000000;
}

.column:hover .highlight {
    opacity: 1;
    background-size: 100% 100%;
}


.row:after {
    content: "";
    display: table;
    clear: both;
}

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

.collapsible {
    background-color: transparent;
    color: inherit;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    padding: 0px;
}

.collapsible:hover {
    font-weight: bold;
    color: inherit;
}

.active {
    font-weight: bold;
}

.expanded-content {
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 1s ease-in-out;
    -moz-transition: max-height 1s ease-in-out;
    -o-transition: max-height 1s ease-in-out;
    transition: max-height 1s ease-in-out;
}

.column:hover .bar:before {
    width: 100%;
}

.bar {
    position: relative;
    display: block;
    width: 33%;
}

.bar:before {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: #000000;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    left: 0%;
}

.chevron-btn {
    background-color: transparent;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 0px;
}

.chevron-svg {
    overflow: visible;
}

.contact {
    visibility: hidden;
    position: relative;
    background-color: transparent;
    width: 70%;
    margin: auto;
    padding: 0;
    max-height: 0vh;
    text-align: center;
    overflow: hidden;
}

.copyright {
    position: fixed;
    bottom: 0px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    width: auto;
    opacity: 0;
    overflow: visible;
}

.nav-logo {
    visibility: hidden;
    z-index: 1001;
    position: fixed;
    margin: 15px;
    width: auto;
    opacity: 0;
    cursor: pointer;
}