/* @import url(https://weloveiconfonts.com/api/?family=fontawesome|typicons); */
[class*="fontawesome-"]:before{
  font-family: 'FontAwesome', sans-serif; }

*{
    margin: 0;
    padding: 0;
    font-family: 'Century Gothic', sans-serif; }

#navbar{
    float: right; }

#navicon{
    float: right;
    margin-right: 15px; }

#navicon img{
    width: 25px;
    margin-left: 5px;
    margin-top: 15px;}

header{
    width: 100%;
    height: auto;
    background: #fff;
    color: #000;
    position: fixed;
    z-index: 100;
    border-bottom: 5px #fff solid;
    border-top: 5px #fff solid;
    box-shadow: 0px 0.2px 0.6em gray; }

#menu-bar{
    display: none; }

header .logo{
    float: left;
    margin-top: 5px;
    margin-left: 3%; }

header label{
    float: right;
    font-size: 28px;
    cursor: pointer;
    margin-right: 15px;
    margin-top: 10px; }

.menu{
    position: absolute;
    top: 53px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255,255,255,1);
    transition: all 0.6s;
    transform: translateX(-100%); }

.menu a{
    display: block;
    color: #5d5d5d;
    font-weight: bold;
    height: auto;
    text-decoration: none;
    padding: 10px;
    border-left: 1px #c6c6c6 solid;
    transition: all 0.5s; }

.menu a:hover{
    background: #d51f28;
    color: #fff; }

#menu-bar:checked ~ .menu{
    margin-top: 5px;
    transform: translateX(0%); }

@media (min-width:1100px){
    .menu{
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        float: right;
        display: flex; }

    header label{
        display: none; }
}
/*
@media screen and (max-width: 1100px){
    a{
        border-bottom: 3px #c6c6c6 solid; }
} */
