
.roboto-slab {
  font-family: 'Roboto Slab', serif;
}
.roboto {
  font-family: 'Roboto', sans-serif;
}


/* Hamburger Nav
		https://codepen.io/riogrande/pen/gbXxdx/
*/

/*styling open close button*/
.button {
}
.button a {
    text-decoration:none;
}
.btn-open:after {
    color:#333;
    content:"\f0c9";
    font-family:"FontAwesome";
    -webkit-transition-property:all .2s linear 0s;
    transition-property:all .2s linear 0s;
    -moz-transition:all .2s linear 0s;
    -webkit-transition:all .2s linear 0s;
    -o-transition:all .2s linear 0s;
}
.btn-open:hover:after {
    color:#333;
}
.btn-close:after {
    color:#ffffff;
    content:"\f00d";
    font-family:"FontAwesome";
    -webkit-transition-property:all .2s linear 0s;
    transition-property:all .2s linear 0s;
    -moz-transition:all .2s linear 0s;
    -webkit-transition:all .2s linear 0s;
    -o-transition:all .2s linear 0s;
}
.btn-close:hover:after {
    color: #ffffff;
}

.overlay {
		display:none;
    position:fixed;
    top:0;
    height:100%;
    width:100%;
    background:#333;
    overflow:auto;
    z-index:99;
}
.wrap {
    color:#e9e9e9;
}


