/*Makes the nav container section invisible to the mouse*/
.nav {
    pointer-events: none;
}
/*Makes the nav bar logo and menu section visible to the mouse*/
.nav-menu,
.nav-bar-logo,
.nav-bar-menu {
    pointer-events: auto;
}
/*Adds 50px to all sides of the menu photo images*/
.nav-menu-photo-image {
    width: calc(100% + 50px);
    max-width: calc(100% + 50px);
    height: calc(100% + 50px);
}


.line{
    background-color: transparent;
    outline: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: solid #cccccc 1px;
    transition: 0.5s;
}
.line:focus{
    border-bottom: solid #0094B6 1px;
    transition: 0.5s;
    background-color: white;
}

.menu-2{
    display: none !important;
}