#navigation-bar {
    position: fixed;
    top: 0;
    z-index: 2000;
    width: 100vw;
    height: 130px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    height: 0;
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #000000e9;
    overflow-y: hidden;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    text-align: center;
}

.overlay-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 36px;
    color: #9b9b9b;
    display: block;
    transition: 0.3s;
}

.overlay-content a:hover {
    color: #fff;
}

#nav-contents {
    width: 88%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav-contents a {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: none;
}

.logo {
    z-index: 1500;
    height: 14px;
    width: 124px;
}

#navmenu {
    background: url("../Images/Menu/MenuIcon_Inactive.svg") center no-repeat;
    height: 38.88px;
    width: 34px;
    background-size: contain;
    z-index: 1100;
    position: relative;
}

.closebtn {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 38.88px;
    background: url("../Images/Menu/MenuIcon_Active.svg") center no-repeat;
    background-size: contain;
    transition: 0.3s;
}

.closebtn:hover {
    background: url("../Images/Menu/MenuIcon_Active.svg") center no-repeat;
    background-size: contain;
}

.icon-container {
    height: 30%;
    width: 37px;
}

.menu-icon {
    width: 37px;
    height: 4px;
    background-color: transparent;
    position: absolute;
    top: 50%;
    box-shadow: 0 2px 5px #00000022;
    transition: 0.6s;
    border-radius: 20px;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 37px;
    height: 4px;
    background-color: #fff;
    position: absolute;
    box-shadow: 0 2px 5px #00000022;
    transition: 0.6s;
    border-radius: 20px;
}

.menu-icon::before {
    top: -6px;
}
.menu-icon::after{
    top: 6px;
}

.icon-container.active .menu-icon {
    background-color: #00000019;
    box-shadow: 0 2px 5px #00000022;
}

.icon-container.active .menu-icon::before {
    top: 0%;
    transform: rotate(45deg);
}

.icon-container.active .menu-icon::after {
    top: 0%;
    transform: rotate(135deg);
}
