#locationbar{
    width: 100%;
    height: 20px;
    font-size: 12px;
    padding: 4px 15px;
}

a{
    color: #ed1c24;
    text-decoration: none;
}

#container{
    display: flex;
    flex-direction: column-reverse;
}

#sidebar{
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

#sidebar div{
    padding: 10px 0 10px 0;
    cursor: pointer;
}

.active{
    color: #ed1c24;
}

#contents, #gallerycontents{
    width: 100%;
    padding: 8px;
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
    background-image: url(../images/internal-bg.png);
    background-position: center;
    background-repeat: no-repeat;
}

#gallerycontents .videos{
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}

h1{
    font-family: Oswald;
    color: #ed1c24;
    font-size: 40px;
    font-weight: 100;
    margin-bottom: 15px;
}

h2{
    font-family: Oswald;
    color: #ed1c24;
    font-size: 30px;
    font-weight: 100;
    margin-top: 30px;
    margin-bottom: 15px;
}

#complcontent li{
    margin-left: 8%;
    line-height: 2;
}

#faqcontent li, #faqcontent p{
    margin-left: 5%;
}

#faqcontent li, .subhead{
    color: #ed1c24;
    font-size: 18;
}

h3{
    color: #ed1c24;
    margin-bottom: 15px;
}

#gallerycontents figure{
    margin-bottom: 20px;
}

.highlights{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.highlight{
    text-align: center;
}

.testimonials{
    margin-left: 40px;
}

.testimonials li{
    margin-bottom: 15px;
}

#missionContent table, #missioncontent td{
    border: 1px solid black; 
    padding: 5px
}

#careerscontent li, #communitycontent li{
    margin-left: 40px;
}

#careerscontent p, #communitycontent p{
    margin-bottom: 15px;
}

@media screen and (min-width: 728px) {
    #container{
        flex-direction: row;
    }

    #sidebar{
        width: 25%;
        min-height: 100vh;
        border-right: solid #333333 2px;
    }

    #contents{
        width: 75%;
    }

    #gallerycontents .videos{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .highlights{
        flex-direction: row;
    }

    .highlight{
        margin: 0 2%;
}

}

@media screen and (min-width: 940px) {
    #gallerycontents .videos{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}