header {
    width: 100%;
    text-align: center;
    display: inline-block;
    position: fixed;
    background: white;
    z-index: 9;
}

    header.small {
        -webkit-transition: all 2s;
        transition: all 2s;
    }

.preheader {
    width: 100%;
    display: inline-block;
    background-color: black;
    padding: .5em 0;
}

header.small .preheader {
    display: none;
}

#VDP {
    float: left;
    line-height: 1.3;
    margin: 0;
    font-size: 14.5px;
    color: white;
}

#phoneNumber {
    float: right;
    line-height: 1.4;
    margin: 0;
    font-size: 14.5px;
    color: white;
}


.main-header {
    padding: .5em 0;
}

header.small .main-header {
    padding: .5em 0;
}

.brand img {
    width: auto;
    height: 100%;
    float: left;
}

.menu {
    height: 100%;
    float: right;
    margin-top: .5em;
}

    .menu ul {
        width: 100%;
        height: inherit;
        margin: 0;
        padding: 0;
        display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox; /* TWEENER - IE 10 */
        display: -webkit-flex; /* NEW - Chrome */
        display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    }

        .menu ul li {
            list-style: none;
        }

            .menu ul li a {
                height: inherit;
                line-height: 1.7em;
                display: inline-block;
                color: black;
                font-size: 17px;
                font-weight: 600;
                padding: 0 15px;
            }

                .menu ul li a:hover {
                    text-decoration: none;
                    color: #444;
                }

#donate {
background: #0d43a0;
    border-radius: 5px;
    color: white;
    padding: 10px 16px;
    display: inline;
}

#menuToggle {
    display: none;
}

.menu-icon {
    display: none;
}

@media only screen and (max-width: 847px) {

    .top-logo img {
        float: left;
        position: relative;
    }
}


@media screen and (max-width: 768px) {

    header {
        height: auto
    }

    .menu {
        width: 100%;
        height: auto;
        float: none;
    }

        .menu ul {
            display: block;
            max-height: 0;
            overflow: hidden;
            -webkit-transition: max-height 0.3s;
            -moz-transition: max-height 0.3s;
            -ms-transition: max-height 0.3s;
            -o-transition: max-height 0.3s;
            transition: max-height 0.3s;
        }

            .menu ul li a {
                text-align: left;
                width: 100%;
                font-size: 13px;
                text-transform: uppercase;
                /* height: 50px; */
                line-height: 1.8;
                border-bottom: 1px solid #ededed;
                padding: 10px 0px 10px 5%;
                color: #0d43a0;
                font-weight:800;
            }

    #donate {
        display: block;
        background-color: transparent;
        color: #0d43a0;
        padding: 10px 0px 10px 5%;
    }

    .menu-icon {
        width: 60px;
        height: inherit;
        display: block;
        float: right;
    }

    #menuToggle:checked ~ ul {
        max-height: 350px;
        padding-top: 4em;
        background-color: white;
    }

    .menu-icon i {
        font-size: 1.7em;
        color: var(--mainColor);
    }
}




@media screen and (max-width: 580px) {

    #VDP, #phoneNumber {
        float: none;
        width: 100%;
        display: inline-block;
    }
}