@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Didact+Gothic:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=PT+Sans:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Gugi:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Sofia:400');
                

html,
body {
    margin: 0; /* html by default has some margin */
    height: 100%;
    width: 100%;
}

body {
    background-color: white;
    color: #333;
    font-family: 'Montserrat';
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

h1 {
    font-family: 'Lato';
    text-transform: none;
    font-size: 3rem;
    font-size: min(3rem, 6vw);
    font-weight: 400;
    color: black;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    font-size: min(2.5rem, 5vw);
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    font-size: min(2.5rem, 5vw);
}

p {
    text-indent: 25px;
}

#top-bar {
    display: flex;
    align-items: center;
    background-color: #05445f;
    padding: 10px 20px;
    height: 50px;
    width: -webkit-calc(100% - 40px);
    width:    -moz-calc(100% - 40px);
    width:         calc(100% - 40px);
}

#top-bar p {
    font-family: 'Sofia';
    font-weight: 400;
    font-size: 1.7rem;
    font-size: min(1.7rem, 3.4vw);
    color: white;
    text-indent: 0;
}


#top-links {
    list-style: none;
    margin-left: auto;
}
#top-links li {
    display: inline;
    margin-right: 50px;
    margin-right: min(50px, 5vw);
}
#top-links a {
    font-weight: 400;
    font-size: 1.2rem;
    font-size: min(1.2rem, 2.4vw);
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}
#top-links .selected a {
    color: #777;
}


#img-southBay {
    margin-left: 5%; 
    width: 50%; 
    max-width: 700px; 
    min-width: 300px;
}

.icon {
    width: 100%; 
    max-width: 160px; 
    min-width: 20px;
}


footer {
    background-color: aliceblue;
    height: 50px;
    margin-top: auto;
    flex-shrink: 0;
}

section {
    display: flex !important;
    background-color: rgba(250, 250, 250, .8);
    width: 100%;
    min-width: 300px;
    margin: 0 auto;
}


@media (max-width: 750px) {
    .collapse {
        flex: 0 !important;
        padding: 0 !important;
    }
    .expand {
        width: 100% !important;
    }
}

.col {
    padding-top: min(15px, 1.5%);
    padding-right: min(50px, 5%);
    padding-bottom: min(35px, 3.5%);
    padding-left: min(50px, 5%);
    box-sizing: border-box;
}

.col-5 {
    flex: 5%;
}

.col-10 {
    flex: 10%;
}

.col-15 {
    flex: 15%;
}

.col-20 {
    flex: 20%;
}

.col-25 {
    flex: 25%;
}

.col-30 {
    flex: 30%;
}

.col-35 {
    flex: 35%;
}

.col-40 {
    flex: 40%;
}

.col-45 {
    flex: 45%;
}

.col-50 {
    flex: 50%;
}

.col-55 {
    flex: 55%;
}

.col-60 {
    flex: 60%;
}

.col-65 {
    flex: 65%;
}

.col-70 {
    flex: 70%;
}

.col-75 {
    flex: 75%;
}

.col-80 {
    flex: 80%;
}

.col-85 {
    flex: 85%;
}

.col-90 {
    flex: 90%;
}

.col-95 {
    flex: 95%;
}

.col-100 {
    flex: 100%;
}

.center-align {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-align {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* For older browsers. */
header, footer, aside, nav, main, article, figure { display: block;}
section { display: flex;}