* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    
}

body {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    color:#1a3750;
}

.nav-bar{
    width: 100%;
    height: 50px;
    background: #1a3750;
    display: block;
}

nav {
    margin: 0 15%;
    font-size: 16px;
    
}
/*each item in nav*/
nav a {
    height: 50px;
    width: 150px;
    color: white;
    text-decoration: none;
    display: block;
    line-height: 50px;
    text-align: center;
    float: left;
}

nav a:hover {
    background: #2c2c2c;
}

/*container for dropdown*/
.dropdown {
    position: relative;
    display: inline-block;
    float: left;
}

.drop-content {
    list-style: none;
    width: inherit;
    background: #1a3750;
    position: absolute;
    display: none;
    top: 50px;
}
/*shows drop-content on hover*/
.dropdown:hover .drop-content {
    display: block;
}

.active {
    background: #2c2c2c;
}

header {
    position: relative;
    width: 100%;
}

#header-svg {
    width: 100%;
    position: absolute;
    bottom: -2.5vw;
    right: 0;
    z-index: 2;
}

.ribbon-svg {
    width: 25%;
    position: absolute;
    bottom: 5px;
    right: 0;
}

h1 {
    font-family: "Garamond";
    font-size: 4em;
    margin: 0 0 30px;
    padding: 20px;
}

h2 {
    font-family: "Helvetica";
    font-size: 2em;
    
}


hr {
    width: 100%;
    border-top: 10px solid #0d6980;
    position: absolute;
    bottom: 0;
}

main {
    width: 70%;
    height: auto;
    margin: 0 15%;
    padding: 40px 0;
    position: relative;
    background: #c7c7c7;
    text-align: center;
}

p {
    margin: 0 15px;
    font-size: 1.25em;
    padding: 10px;
}

.hoc {
    width: 75%;
}

.jprograms {
    margin: 15px 0;
    padding: 0 5%;
    display: block;
    overflow: hidden;
}

.prog-img-left {
    width: 40%;
    float: left;
    margin-right: 10px;
    
}

.prog-img-right {
    width: 40%;
    float: right;
    margin-left: 10px;
}

.tsa-lead {
    margin-bottom: 20px;
}


.leadership-ribbon {
    width: 50%;
    float: left;
    margin-top: 8.5%;
}

.leadership-pic {
    width: 30%;
    margin: 0 10%;
}


footer {
    width: 100%;
    height: 65px;
    background: #0c1f2f;
    display: block;
    position: relative;
    bottom: 0;
    right: 0;
    left: 0;
}

footer section {
    width: 100%;
    height: 15px;
    background: #0d6980;
}

@media (max-width: 500px) {
    .jprograms {
        margin: 15px 0;
        padding: 0 5%;
        display: block;
        overflow: hidden;
    }

    .prog-img-left {
        width: 80%;
        margin: 0 10%;
        margin-bottom: 10px;
    
    }

    .prog-img-right {
        width: 80%;
        margin: 0 10%;
        margin-bottom: 10px;
    }
}

@media (max-width: 800px) {    
	#mobilenav {
		position: absolute;
		z-index: 10;
        width: 100px;
	}
	
    #mobilenavburger {
        height: 30px;
        margin: 10px;
    }
    
	.mobilenavobject {
		height: 30px;
        width: 100%;
        float: left;
        background: rgba(44, 44, 44, 0.6);
        color: white;
        padding: 2px;
	}
    
    .mobilenavobject:hover {
        background: rgba(44, 44, 44, 0.8);
    }
	
    nav {
        display: none;
    }
    
    
    main {
        width: 100%;
        margin: 0;
        overflow: hidden;
    }
	
	header {
		margin-bottom: 4vw;
	}
    
    h1 {
        font-size: 2em;
        padding: 20px;
    }
    
    h2  {
        font-size: 1.4em;
    }
    
    p {
        font-size: 1em;
    }
    
    .leadership-ribbon {
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
    }

    .leadership-pic {
        width: 50%;
    }
}

@media (min-width: 800px) {
    #mobilenav {
        display: none;
    }
    
}

@media (max-width: 1100px) {
	nav {
		margin: 0;
		
	}
}



















































