
/*NavBar*/  
.name{
    height: 80px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: .5em;
    display: flex;
    justify-content: end;
    padding-right: 30px;
    z-index: 9999;

    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-variant: all-petite-caps;

}
.nav-logo {
    width: 90px;
    height: auto;
    padding: 0px;
    margin-top: -5px;
    margin-left: 10px;
    z-index: 99;
}
.nav-active {
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 22;
    animation: mymove .3s normal forwards ease-in-out;
}

@keyframes mymove {
    from {
        -webkit-backdrop-filter: saturate(100%) blur(0px);
        backdrop-filter: saturate(100%) blur(0px);
        background: rgba(0, 0, 0, 0.0);
    }

    to {
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
        background: rgba(0, 0, 0, 0.5);
    }
}
.overlay {
    position: absolute;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    /*justify-content: space-between;*/
    justify-content: start;
    padding-right: 30px;
    padding-left: 20px;
    z-index: 9999;
}

.nav-actived {
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 22;
    animation: mymoved .3s normal forwards ease-in-out;
}

@keyframes mymoved {
    from {
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
        background: rgba(0, 0, 0, 0.5);
    }

    to {
        -webkit-backdrop-filter: saturate(100%) blur(0px);
        backdrop-filter: saturate(100%) blur(0px);
        background: rgba(0, 0, 0, 0.0);
    }
}

.nav-colored {
    background-color: #000;
}

.nav-transparent {
    background-color: transparent;
}


.overlay-two {
    display: flex;
    margin-top: 13px;
    height: 22px;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-variant:all-petite-caps ;
}


.overlay-two>a {
    margin: 15px 10px;
    padding: 6px;
    line-height: 11px;
    color: #fff;
    height: 22px;
    font-size: 16px;
    transition: all .2s ease-in-out;
    letter-spacing: .5px;
    height: 20px;
}

.overlay-two>a:hover {
    padding: 6px;
    transform: translateY(-3px);
}

.overlay-two a {
    color: snow;
    text-decoration: none;
}