*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
header{
    width: 100%;
    height: 60px;
    background: #1e1e1e;
    position: fixed;
    z-index: 100;
    border-bottom: 1px solid #fff;
}
.img-logo{
    width: 40px;
    margin-left: 10%;
    padding: 5px;
    float: left;
}
.icon-facebook{
    margin-top: 14px;
    margin-left: 29%;
    background: #1e1e1e;
    float: left;
    color: #b7b7b7;
    font-size: 30px;
}
.icon-instagram{
    margin-top: 14px;
    float: left;
    background: #1e1e1e;
    color: #b7b7b7;
    font-size: 30px;
}

.icon-facebook:hover, .icon-instagram:hover{
    color: #fff;
    cursor: pointer;
}

.img-logo{
    width: 140px;
    margin-left: 10%;
    padding: 5px;
}
.menu{
    width: auto;
    float:right;
    margin-top: 19px;
    margin-right: 5%;
}

.menu ul{
    display: flex;
}
.menu li{
    list-style: none;
}

.menu li a{
    padding: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: normal;
    color: #b7b7b7;
}

.menu li a:hover{
    color: white;
}

#check{
    display: none;
}
.icon-menu{
    display: none;
}

#check:checked ~ .menu{
    height: 174px;
}

@media screen and (max-width:1060px){
    .icon-menu{
        display: block;
        color: white;
        float: right;
        padding: 5px;
        font-size: 24px;
        border: 1px solid #7a7a7a;
        border-radius: 5px;
        margin-top: 10px;
        margin-right: 16px;
    }
    .img-logo{
        margin-left: 2%;
    }
    .icon-menu:hover{
        background: #3f3f3f;
        cursor: pointer;
    }
    .menu{
        float: left;
        margin-top: 0px;
        margin-left: 85%;
        width:100%;
        height: 0px;
        overflow: hidden;
        background: #ccc;
        transition: all 300ms;
        border-radius: 10px;
    }
    
    .menu ul{
        flex-direction: column;
    }
    .menu li a{
        display: block;
        color: #1e1e1e;
    }
}
@media screen and (max-width:700px){
    .menu{
        margin-left: 75%;
    }
    .icon-facebook{
        margin-left: 10%;
    }
}
