@charset "utf-8";

a {
    color: #fff;
    text-decoration: none;
}

.p-menu1 {
    height: 100%;
}




/* Hamburger */

.hamburger1 {
    height: 28px;
    float: right;
    margin: 2px 18px 19px 0;
    display: -ms-grid;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    justify-items: center;
    z-index: 120;
}

.hamburger1 span {
    background-color: rgb(61, 61, 61);
    position: relative;
    width: 26px;
    height: 3px;
    margin-top: 7px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#toggle1 {
    display: none;
}

#toggle1:checked + .hamburger1 .top {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 13.5px;
}

#toggle1:checked + .hamburger1 .meat {
    -webkit-transform: rotate(45deg);
    transform: rotate(40deg);
    margin-top: -3px;
}

#toggle1:checked + .hamburger1 .bottom {
    -webkit-transform: scale(0);
    transform: scale(0);
}

#toggle1:checked ~ .menu1 {
    height: 200px;
}


/* Menu */

.menu1 {
    width: 100%;
    background-color: #656464;
    margin: -15px;
/*
    display: -ms-grid;
    display: grid;
*/
    grid-template-rows: 1fr repeat(4, 0.5fr);
    grid-row-gap: 25px;
    padding: 0;
    list-style: none;
    clear: both;
    width: auto;
    text-align: center;
    height: 0px;
    overflow: hidden;
    transition: height .4s ease;
    z-index: 120;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu1 a:first-child {
    margin-top: 24px;
}

.menu1 a:last-child {
    margin-bottom: 40px;
}
.menu1 a{
    margin: 18px 0;
    letter-spacing: 2px;
    display: block;
}
.link1 {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    font: 700 20px 'Oswald', sans-serif;
}

.link1:hover {
    background-color: #fff;
    color: rgb(61, 61, 61);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}