#logo-title {
    font-size: 20px;
    line-height: 1.2em;
}

#logo-image {
    width: 67.938px;
}

#top-banner {
    justify-content: space-between;
    padding: 12px;
}

#video-banner {
    max-height: 55vh;
}

#main-nav {
    position: fixed;
    height: 100vh;
    top: 0;
    left: -100%;
    width: min(400px, 100%);
    background-color: var(--accent-color);
    overflow: auto;
    z-index: 999999;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
    border-top: 4px solid var(--accent-color);
    transition: left .5s ease-in-out;
}
#main-nav.open {
    left: 0;
    z-index: 999999;
}
#main-nav::-webkit-scrollbar
{
    width: 0;
    background-color: transparent;
}

#main-nav > header {
    display: flex;
    justify-content: space-between;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background: var(--black-color);
}

#main-nav > header > * {
    color: var(--white-color);
    text-transform: uppercase;
    margin: 0;
    padding: 10px;
    font-size: 24px;
    display: inline-block;
}

#main-nav > ul {
    border-bottom: 40px solid transparent;
}

#main-nav ul a {
    padding: 8px 10px 8px 15px;
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
}

#main-nav ul ul a {
    padding: 8px 10px 8px 35px;
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: none;
}

#menu-switcher {
    height: 80px;
    justify-content: center;
    align-items: center;
    display: flex;
}

#menu-switcher-button {
    background-color: var(--black-color-lighter);
    padding: 10px 10px;
    font-weight: bold;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
}

#menu-switcher-bars {
    line-height: 1em;
    text-align: center;
    font-size: 20px;
}

#menu-switcher-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1em;
    margin-top: 5px;
}

#about-parish {
    padding: 0 20px;
}

.about-parish-icon {
    height: 48px;
}

.about-parish-entry {
    width: 100px;
}

main,
#main-wrapper aside {
    padding: 20px;
}