* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}


/* NAV BAR START */
.nav-bar {
   
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) );
    color: black;
    padding: 0px 20px;
    /* border-bottom: #EBEBEB solid 3px; */
        position: fixed;
    /* Fix to the top of the page. */
    top: 0;
    /* Make sure we fill the body width. */
    width: 100%;
    /* Make sure this will be above other elements. */
    z-index: 10;
    
 
    
    
}

.nav-bar.red {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.nav-text.red {

    text-decoration: none;
    color: black;
    padding: 1rem;
    display: block;
    /* font-family: 'Oswald', sans-serif; */
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.2rem;

}


.bar.red {
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 10px;
}






.logo {
    /* width: 5rem; */
    /* margin: 10px; */
    font-family: "Iceland";
    font-size: 3.5rem;
    
}
.nav-bar-links ul {
    margin: 0px;
    padding: 0px;
    display: flex;

}

.nav-bar-links li {
    list-style: none;

}
.nav-bar-links li:hover {
    background-color: black;
}
.nav-text {
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: block;
    /* font-family: 'Oswald', sans-serif; */
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.2rem;

}
.nav-bar-links li a:hover {
    color: white;
}

/* NAV BAR TOGGLE BUTTON */
.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}
/* END NAV BAR TOGGLE BUTTON */

@media(max-width:912px) {
    .toggle-button {
        display: flex;
    }
    .nav-bar-links {
        display: none;
       
        width: 100%;
    }
    .nav-bar {
        flex-direction: column;
        align-items: flex-start;
      
    }
    .nav-bar-links ul {
        
        flex-direction: column;
        width: 100%;
       
    }
    .nav-bar-links li {
        text-align: center;
    }

    .nav-bar-links li a {
        padding: .5rem 1rem;
        font-size: 1rem;
    }

    .nav-bar-links.active {
        display: flex;

    }
    .logo {
        width: 5.5rem;
    }
    
 

}


@media(max-width: 500px) {
    .logo {
        width: 2.5rem;
        margin: 10px;
        
    }
    
}
/* END NAV BAR */



/* FOOTER START  */
.footer-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
 
    background-color: #EBEBEB;
}


.footer-contact,.footer-menu {
    

    margin: 50px;
}

.footer-contact h3, .footer-menu h3 {
    font-size: 1.4rem;
    /* font-family: 'Oswald', sans-serif; */
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.2;
    color: black;
    /* margin-top: 50px;
     */
}

 .footer-contact p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Source Sans Pro', sans-serif;
    color: #5C5C5C;
    margin-top: 10px;
}

.nav-bar-links ul {
    margin: 0px;
    padding: 0px;
    display: flex;

}

.footer-links li {
    list-style: none;
    margin-top: 10px;

}

.footer-links li a {
    text-decoration: none;
    color: #5C5C5C;
    
   
    /* font-family: 'Oswald', sans-serif; */
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.2rem;

}

@media(max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        justify-content: center;
    align-items: center
    }
 .footer-contact,.footer-menu {
    
      
        margin: 10px;
    }
    
}


/* FOOTER END */