/* ===== Próg / Przedmowa ===== */

.nav-threshold{
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    line-height:1.1;
    text-transform:none;
    text-decoration:none !important;
}

.nav-threshold-main{
    font-size:12px;
    letter-spacing:2.2px;
    text-transform:uppercase;

    color:inherit;
    transition:color .3s;
}

.nav-threshold-sub{
    font-family:'Cormorant Garamond', serif;
    font-size:9px;
    font-style:italic;
    font-weight:400;

    letter-spacing:0.3px;
    color:rgba(255,255,255,.50);

    margin-top:1px;

    text-transform:none;
    transition:color .3s;
}

.nav-threshold:hover .nav-threshold-main{
    color:#fff;
}

.nav-threshold:hover .nav-threshold-sub{
    color:rgba(255,255,255,.75);
}


/* ===== Mobile ===== */

@media (max-width:767px){

    .nav-threshold-main{
        font-size:20px;
        letter-spacing:4px;
    }

    .nav-threshold-sub{
        font-size:11px;
        margin-top:2px;
        color:rgba(255,255,255,.55);
    }

}