header {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2%;
    z-index: 2;
}

#nav-cnt {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.menu-header-menu-container {
    width: 80%;
}

.menu-header-menu-container ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-header-menu-container ul li {
    display: inline-flex;
    align-items: center;
}

.menu-header-menu-container ul li:first-child {
    padding-right: 2%;
}

.menu-header-menu-container ul li:not(:first-child):not(:last-child) {
    padding: 0 2%;
}

.menu-header-menu-container ul li:last-child {
    padding-left: 2%;
}

header a {
    font-size: 1.39vw;
    text-decoration: none;
    color: white;
    font-weight: 300;
}

.current-menu-item a {
    font-weight: bold;
}

#mobile-nav-cnt {
    width: 100%;
    background-color: #8b8f9a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-mobile-menu-container {
    display: flex;
    width: 90%;
    max-height: 0;
    overflow: hidden;
}

#nav-menu-btn {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    font-size: 30px;
}


@media (max-width: 727px)  {

    header a {
        font-size: 22px;
    }
    .menu-header-menu-container {
        display: none;
    }

    #nav-menu-btn {
        display: block;
    }

    #mobile-nav-cnt {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #menu-mobile-menu {
        list-style-type: none;
        padding: 0;
    }

    #menu-mobile-menu li {
        margin-bottom: 16px;
    }
}

