.header {
    background-color: transparent; /*rgba(21, 11, 49, 0.8);*/
    /* box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);     */
    width: 100%;
    z-index: 3;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.header li a {
    display: inline-block;
    padding: 10px 0 0;
    text-decoration: none;
    font-variant: small-caps;
    letter-spacing: 1px;
    font-size: 1.4rem;
    margin: 0 20px;
    color: #fff;
}

.header li a:hover,
.header .menu-btn:hover {
    color: aquamarine;
}

.header .logo {
    display: block;
    float: left;
    font-size: clamp(1em, 2vw, 1.5em);
    padding: 10px 0 0 4px;
    text-decoration: none;
}

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;    
}

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 24px 20px;
    position: relative;
    user-select: none;
}

.sign-in {
    transform: scale(1.1);
}

.header .menu-icon .navicon {
    background: #ffffff;
    display: block;
    height: 4px;
    position: relative;
    transition: background .2s ease-out;
    width: 30px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #ffffff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 10px;
}

.header .menu-icon .navicon:after {
    top: -10px;
}

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked~.menu {
    max-height: 240px;
    border-top: 1px solid #fff;
    background-color: var(--dlg-alt-bg);
    padding-bottom: 12px;
}

.header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}

.micon {
    vertical-align: middle;
}

@media (min-width: 50em) {
    .header li {
        float: left;
    }

    /* .header li a {
        padding: 10px 30px;
    } */

    .header .menu {
        clear: none;
        float: right;
        max-height: none;
        border-top: none !important;
        background-color: transparent !important;
    }

    /* .header .menu>li:nth-child(-n+4) {
            padding-top: 4px;
        } */

    .header .menu-icon {
        display: none;
    }

    
}

.header .menu li.active a {
    border-bottom: 1px solid aquamarine;
}

.menu > li img {
    height: 32px;
    width: 32px;
}

.logo>span:nth-child(2) {
    vertical-align: bottom;
}

.logo>img:nth-child(1) {
    vertical-align: middle;
}

@media (max-width: 950px) { 
    .header li a {        
        font-size: 1.2em;
        margin: 0 12px;
    }
}