nav
{
    width: 100%;
    padding: 15px 30px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    transition: 0.3s;
}
.scrolled
{
    background-color: #0101016a;
    backdrop-filter: blur(2px);
    border-bottom: #1a1a1a 1px solid ;
}
nav .logo
{
    line-height: 0.5;
    cursor: pointer;
}
nav .logo span:first-child
{
    font-size: 30px;
}
nav .logo span:last-child
{
    font-size: 33px;
}
.links a
{
    text-decoration: none;
    color: var(--secondary);
    font-family: hel-reg;
    font-size: 13px;
    margin: 0;
    position: relative;
}
.links a:not(:last-child)
{
    margin-right: 20px;
}
.links a::before
{
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--accent_2);
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: .3s;
}
.links a:hover:before
{
    width: 80%;
}
.links a.active::before
{
    width: 80%;
}
.links .pr-btn
{
    padding: 5px 15px;
}
.menu-btn
{
    display: none;
}
.menu-btn div
{
    width: 20px;
    height: 1px;
    background-color: var(--secondary);
    transition: .3s;
}
.menu-btn div:last-child
{
    margin-top: 4px;
}
.menu-btn.active div
{
    margin: 0;
}
.menu-btn.active div:first-child
{
    transform: rotate(-45deg);
}
.menu-btn.active div:last-child
{
    margin-top: -1px;
    transform: rotate(45deg);
}
.menu-bg
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    background-color: var(--primary);
    transition: .5s;
    overflow: hidden;
}
.menu-bg .links a
{
    display: block;
    width: fit-content;
    text-align: center;
    opacity: 0;
    filter: blur(100%);
    transition: .3s;
}
.menu-bg .links a:not(:first-child)
{
    margin-top: 10px;
}
.footer
{
    width: 100%;
    border-top: 0.5px solid #414141;
    padding: 100px 50px;
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-gap: 20px;
    background-color: var(--primary);
}
.t-det
{
    place-items: center;
    place-content: center;
}
.t-det span
{
    color: var(--secondary);
    font-family: hel-reg;
    font-size: 1rem;
}
.socials 
{
    display: flex;
    justify-content: center;
}
.list .list-header
{
    font-size: 1.2rem;
    font-family: hel-bold;
    color: var(--secondary);
}
.list a
{
    font-size: 1rem;
    font-family: hel-reg;
    color: var(--sec-text);
    text-decoration: none;
    display: block;
    transition: .3s;
    line-height: 1.2;
}
.list a:hover
{
    color: var(--secondary);
}
.credits
{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);

}
.credits p
{
    font-size: 0.8rem;
    font-family: hel-reg;
    color: var(--sec-text);
    margin: 0;
    letter-spacing: 0.2px;
}
.credits p a
{
    text-decoration: none;
    color: var(--sec-text);
    transition: .3s;
    border-bottom: 0.5px solid #00000000;
}
.credits p a:hover
{
    border-bottom: 0.5px solid var(--secondary);
    color: var(--secondary);
}
@media screen and (max-width: 1200px)
{
    .footer
    {
        grid-template-columns: repeat(2, auto);
    }
    .t-det
    {
        grid-row: 1/5;
    }
    .footer
    {
        padding: 50px;
    }
}
@media screen and (max-width: 600px) 
{
    .t-det
    {
        padding: 0 0 20px;
    }
    .footer
    {
        padding: 20px;
        grid-template-columns: repeat(1, auto);
    }
    .credits
    {
        flex-direction: column;
        align-items: center;
    }
    nav
    {
        padding: 15px 20px;
    }
    nav .links
    {
        display: none;
    }
    nav .cta-wrap
    {
        display: none;
    }
    .menu-btn
    {
        display: block;
    }
    
}