nav
{
    -webkit-backdrop-filter: blur(30px);
    width: 358px;
    margin: 15px auto 5px;
    border-radius: 2px;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0;
    z-index: 99;
    background-color: #02020281;
    backdrop-filter: blur(30px);
}
nav .nav-header
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    font-size: 14px;
    padding: 10px;
}
nav .nav-header .logo
{
    width: 33%;
    text-transform: uppercase;
    color: var(--secondary);
    font-family: hel-bold;
    line-height: 1;
    overflow: hidden;
    cursor: pointer;
}
nav .nav-header .logo span
{
    position: relative;
    transition: .4s;
    bottom: 0;
}
.menu-btn
{
    cursor: pointer;
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 15px;
}
.menu-bar
{
    width: 25px;
    height: 1px;
    background-color: var(--secondary);
    transition: .4s;
}
.menu-bar:not(:last-child)
{
    margin-bottom: 4px;
}
.menu-btn.active .menu-bar
{
    margin: 0;
    width: 15px;
}
.menu-btn.active .menu-bar:nth-child(1)
{
    transform: rotate(45deg);
}
.menu-btn.active .menu-bar:nth-child(2)
{
    margin-top: -0.5px;
    transform: rotate(-45deg);
}
nav .cta
{
    width: 33%;
    text-align: right;
    line-height: 1;
    height: 100%;
    overflow: hidden;
}
nav .cta:hover a
{
    color: #b0b0b0;
}
nav .cta a
{
    text-decoration: none;
    font-family: hel-reg;
    color: var(--secondary);
    border-radius: 2px;
    text-transform: uppercase;
    position: relative;
    transition: .4s;
    bottom: 0;
}
nav .nav-content-wrapper
{
    width: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}
nav .nav-content
{
    width: 100%;
    height: 100%;
    padding: 5px 10px 5px;
    opacity: 0;
    transform: translateY(5px);
    transition: .5s;
}
nav .wrap_active
{
    height: 60vh; 
}
nav .nav-content.active_nav
{
    opacity: 1;
    transform: translateY(0);
}
nav .nav-content form
{
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    position: relative;
    font-size: 14px;
    height: 40%;
    transition: .5s;
}
nav .nav-content form input
{
    outline: none;
    border: none;
    border-bottom: 0.5px solid var(--secondary);
    width: 100%;
    font-family: hel-reg;
    color: var(--secondary);
    background-color: #00000000;
    letter-spacing: 0.5px;
}
nav .nav-content form input::placeholder
{
    letter-spacing: 0.5px;
    color: var(--secondary);
}
nav .nav-content form button
{
    background-color: inherit;
    border: none;
    outline: none;
    position: absolute;    
    right: 0;
    top: -3px;
}
.nav-links
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--secondary);
    height: 40%;
}
.nav-links-col:nth-child(1)
{
    width: 70%;
}
.nav-links-col:nth-child(2)
{
    width: 30%;
}

.nav-links-col.main a
{
    font-family: hel-reg;
    text-decoration: none;
    color: inherit;
    display: block;
    text-transform: uppercase;
    font-size: 18px;
}
.nav-links-col.mis a
{
    font-family: hel-lig;
    text-decoration: none;
    color: inherit;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}
.credits
{
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.credits h3
{
    font-family: hel-blk;
    color: var(--secondary);
    font-size: 62px;
    text-align: center;
    line-height: 0.9;
    margin: 0;
}
.credits .mtext
{
    font-family: hel-lig;
    color: var(--secondary);
    font-size: 10px;
}
.mtext-wrap
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cat_nav
{
    margin: auto;
    top: 55px;
    z-index: 98;
    transition: .3s;
}
.cat-nav-header
{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}
.cat-nav-header h3
{
    font-size: inherit;
    color: var(--secondary);
    font-family: hel-bold;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    overflow: hidden;
    line-height: 1;
    width: 33%;
}
.cat-nav-header h3 span
{
    position: relative;
    bottom: 0;
    transition: .3s;
}
.cat-box a
{
    color: var(--secondary);
}
.cat-nav-header .cat_btn
{
    display: flex;
    align-items: center ;
    justify-content: center;
    transition: .3s;
    width: 33%;
}
.cat-nav-header .cat_btn svg
{
    color: #dadada;
}
.cat-nav-content
{
    height: 0;
    overflow: hidden;
    transition: 0.4s;
}
nav .cat-nav-content.active_cat
{
    height: 40vh;
}
.cats-wrapper
{
    height: 100%;
    overflow: overlay;
    padding: 0 15px;
    font-family: hel-reg;
    opacity: 0;
    transition: 0.4s;
}
.cats-wrapper::-webkit-scrollbar
{
    width: 5px;
}
.cats-wrapper::-webkit-scrollbar-track
{
    background-color: #00000000;
}
.cats-wrapper::-webkit-scrollbar-thumb
{
    background-color: #dadada9a;
    border-radius: 30px;
}
.cat-cont
{
    border-bottom: 1px solid var(--secondary);
}
.cat-cont .cat-box
{
    font-size: 15px;
    color: #dadada;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 5px 0;
}
.cat-box span
{
    line-height: 1;
}
.icon
{
    transition: .4s;
}
.cat-cont .cat-box span:nth-child(1)
{
    display: flex;
    align-items: center;
}
.cat-cont .cat-box span:nth-child(1) svg
{
    margin-left: 5px ;
}
.subcat-box
{
    display: grid;
    grid-template-rows: 0fr;
    transition: .5s;
}
.subcat-wrap
{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.subcat-box span
{
    display: block;
    font-size: 13px;
    color: #dedede;
    font-family: inherit;
    padding: 5px 2px    ;
    line-height: 1;
    transition: .3s;
}
.subcat-box span:hover
{
    background-color: #76767663;
}
.subcat-box span:not(:last-child)
{
    border-bottom: 0.5px solid var(--secondary);
}

.footer
{
    height: fit-content;
    width: 100%;
    padding: 50px 50px 10px;
    background-image: linear-gradient(#090909 20%, #610000);
    display: flex;
    align-items: flex-end;
}
.links-grid
{
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
}
.links-grid ul 
{
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--secondary);
    font-family: hel-med;
    width: fit-content;
}
.links-grid ul li a
{
    text-decoration: none;
    color: #a7a7a7;
    font-family: hel-reg;
}
.f-header h2
{
    color: var(--primary);
    font-size: 265px;
    text-align: center;
    line-height:1;
    font-family: hel-blk;
}
.f-header span
{
    font-family: hel-reg;
    color: var(--secondary);
}
.f-header span a
{
    font-family: hel-bold;
    text-decoration: none;
    color: inherit;
}
@media screen and (max-width: 1030px) 
{
    .footer
    {
        height: fit-content;
    }
    .f-header h2
    {
        font-size: 16vw;
    }
    nav
    {
        width: 500px;
    }
    nav .nav-header
    {
        font-size: 18px;
    }
    .cat-nav-header
    {
        font-size:18px;
    }
    .menu-bar:not(:last-child)
    {
        margin-bottom: 5px;
    }
    nav .nav-content form 
    {
        font-size: 25px;
    }
    .nav-links-col.main a
    {
        font-size: 28px;
    }
    .nav-links-col.mis a
    {
        font-size: 18px;
    }
    .credits h3
    {
        font-size: 90px;
    }
    nav .wrap_active
    {
        height: 50vh;
    }
    .cat-cont .cat-box
    {
        font-size: 23px;
    }
    .subcat-box span
    {
        font-size: 18px;
    }
    nav .cat-nav-content.active_cat
    {
        height: 30vh;
    }
}
@media screen and (max-width: 500px) 
{
    .footer
    {
        padding: 20px 15px;
    }
    .links-grid
    {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .links-grid ul
    {
        width: 100%;
    }
    .links-grid ul:nth-of-type(even)
    {
        text-align: right;
    }
    .f-header
    {
        padding:20px  15px 0;
    }
    nav
    {
        width: calc(100% - 40px);
    }
    .cat-nav-header
    {
        font-size: 15px;
    }
    nav .cat-nav-content.active_cat
    {
        height : 35vh;
    }
    nav .nav-content form 
    {
        font-size: 20px;
    }
    .nav-links-col.main a
    {
        font-size: 20px;
    }
    .nav-links-col.mis a
    {
        font-size: 13px;
    }
    .credits h3
    {
        font-size: 65px;
    }
    nav .nav-content form
    {
        height: 30%;
    }
    nav .nav-links
    {
        height: 40%;
    }
    nav .credits 
    {
        height: 30%;
    }
}
@media screen and (max-width: 400px)
{
    nav .nav-header
    {
        font-size: 15px;
    }
    .cat-nav-header
    {
        font-size: 13px;
    }
    .cat-cont .cat-box
    {
        font-size: 18px;
    }
    .subcat-box span
    {
        font-size: 15px;
    }
    .credits h3
    {
        font-size: 55px;
    }

} 