a {
    text-decoration: none;
}

.burger-menu {
    display: none;
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
}

.navigation {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Hamburger */
.hamburger1 {
    height: 24px;
    margin-right: 24px;
    margin-top: 6px;
    display: -ms-grid;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    justify-items: center;
    z-index: 120;
}

.hamburger1 div {
    background-color: #fff;
    position: relative;
    width: 32px;
    height: 4px;
    -webkit-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
}

#toggle1 {
    display: none;
}

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

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

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

#toggle1:checked ~ .menu1 {
    height: 100vh;
    padding: 24px;
}

#toggle1:checked ~ .hamburger1 {
    margin-top: 24px;
}

/* Menu */
.menu1 {
    background-color: #FFF;
    color: #000;
    height: 0px;
    overflow: hidden;
    /* transition: height 0.4s ease;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease; */
    width: 100vw;
    position: absolute;
    left: 0;
    top: 82px;
    z-index: 120;
    display: flex;
    flex-direction: column;
}

.burger-menu__horizontal-line {
    height: 1px;
    width: 100%;
    background-color: #E6EBF0;
    margin: 16px 0;
}

.link1 {
    width: 100%;
    margin: 0;
    font-size: 20px;
    font-weight: 350;
    line-height: 27px;
    color: #000;
}

.link1:hover {
    background-color: #fff;
    color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 998px) {
    .burger-menu {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}
