/* Меню */
.link {
    display: none;
}
.navy {
    display: none;
}
.widget {
    text-align: left;
    background-color:  rgba(255,255,255,0);
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    text-shadow: 0 5px 5px black;
}
.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 280px;
}
.widget li {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.widget a {
    text-decoration: none;
    color:  #ffffff;
    display: inline-block;
}
.widget i {
    text-decoration: none;
    color:  #ffffff;
    display: inline-block;
}
/*Mobile*/
@media all and (max-width: 1024px) {
    .link {
        position: absolute;
        top: 30px;
        right: 20px;
        cursor: pointer;
        text-align: center;
    }
    #menu {
        display: block;
        width: auto;
        margin: 10px;
        padding: 1px;
        padding-left: 10px;
        padding-right: 10px;
        border: 1px solid;
        border-radius: 10px;
    }
    .widget {
        padding: 90px 25px 25px 25px;
        text-align: left;
        font-size: 2.5em;
        font-weight: 600;
        text-align: center;
    }
    .widget ul {
        width: 100%;
    }
    .widget li {
        border-bottom: 1px solid;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    navmenu {
        display: none;
    }
    #menu:focus + .navy {
        display: block;
    }
    .navy:hover {
        display: block;
    }
}