#navbar {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 70px;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    color: var(--gold1);
    box-shadow: 0 0 8px 0 var(--grey1);
    position: relative;
    z-index: 3;
}

#navbar-bkg {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 70px;
    width: 100%;
    background-color: var(--grey1);
}

.item-navbar {
    opacity: 0.68;
}

.item-navbar:hover {
    opacity: 1.2;
    cursor: pointer;
}

.any-item {
    font-weight: 500;
    color: var(--navbartext);
    padding: 25px 0px 0px;
    margin: 0px 25px;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.bold-navbar {
    font-weight: 700;
    cursor: default;
}

#current {
    cursor: pointer;
}

#home-wrap .home-logo {
    left: 0px !important;
}

.home-logo {
    order: 1;
    width: 24px;
    height: 24px;
    margin: 0px;
    position: absolute;
    left: 20px;
    top: -3px;
}

.home-name {
    order: 1;
    height: 28px;
    margin: 0px;
    position: absolute;
    margin-left: 35px;
    font-weight: 700;
    color: var(--navbartext);
}

#home-wrap {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 70px;
    width: 87px;
    left: 20px;
}

#slider {
    top: 50px;
    width: 6px;
    height: 2px;
    position: absolute;
    background-color: var(--gold1);
    display: none;
}

#col {
    display: block;
}

#hamburger-par {
    width: calc(100% - 20px);
    padding: 10px;
    display: none;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -webkit-flex-direction: column;
    position: absolute;
    align-items: center;
    z-index: 2;
    background-color: var(--grey2);
}

.hamburger-icon {
    display: none;
    width: 24px;
    opacity: 0.68;
    margin-top: -25px;
}

.hamburger-icon:hover {
    opacity: 1;
}

.hamburger-item {
    position: relative;
    width: 100%;
    text-align: center;
    font-weight: 500;
    color: var(--navbartext);
    text-decoration: none;
    padding: 5px 0px;
    opacity: 0.68;
}

.hamburger-bold {
    position: relative;
    width: 100%;
    text-align: center;
    font-weight: 700;
    color: var(--navbartext);
    text-decoration: none;
    padding: 5px 0px;
    opacity: 0.68;
}

.hamburger-item:hover {
    opacity: 1;
}

@media screen and (max-width: 800px) {
    #col {
        display: none;
    }
    .hamburger-icon {
        display: block;
    }
}