.logo{
    width: 3.611rem;
    height: 3rem;
}

.logoname{
    display: none;
    width: 15.625rem;
    height: 3rem;
    margin-top: 0.28rem;
    opacity: 0;
}

ul{
    list-style: none;
}

.logoutForm{
    margin-bottom: 0px;
}

.blurFilterHeader{
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px); 
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.header{
    width: 100%;
    display: block;
    background-color: transparent;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.1);
    border-bottom: #B2B2B244 1px solid;
    position: fixed;
}

.nav{
    height: 7.063rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 3rem;
}

.logo-section,
.nav_toggle{
    display: inline-flex;
    text-align: center;
}

/* .nav_toggle{
    width: 3.611rem;
    height: 3rem;
} */

@media screen and (max-width: 986px){
    .nav_menu{
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: #28212d40;
        box-shadow: 7px 0px 8px #00000013;
        border: 1px solid #B2B2B244;
        transition: .3s;
        z-index: 100;
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px); 
    }
/*     .effect{
        backdrop-filter: blur(15px) saturate(100%);
        -webkit-backdrop-filter: blur(15px) saturate(100%);
        background-color: hsla(0, 0%, 7%, 0.4);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
    } */
}

.scroll-header{
    background-color: var(--second-background);
    animation-name: fadeoutbg;
    animation-duration: 0.7s;
    animation-iteration-count: 1;
}

@keyframes fadeoutbg {
    from{background-color: #ffffff00;}
    to{background-color: var(--second-background);}
}

.nav_list{
    display: flex;
    flex-direction: column;
    text-align: center;
    row-gap: 1rem;
    padding-top: 9rem;
    text-shadow: none;
    border-bottom: #B2B2B2 2px solid;
}

@media screen and (max-height: 700px){
    .nav_list{
        row-gap: 1vh;
    }
}

.blur{
    background: transparent;
    border-radius: 10px;
    border: 1px solid rgba(178, 178, 178, 0.14);
    backdrop-filter: blur(8px);
    --webkit-backdrop-filter: blur(8px);
    background-color: rgba(197, 197, 197, 0.03);    
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.nav_list a{
    display: block;
    width: auto;
    padding: 0.625rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--gray-color);
    font-size: clamp(1.250rem, 1.313rem, 1.750rem);
    text-decoration: none;
    transition: 0.3s;
}

.nav_list a:after{
    content: "";
    position: absolute;
    background: linear-gradient(to right, transparent 0%, #8333FF 50%, transparent 100%); 
    height: 3px;
    width: 100%;
    left: 0;
    bottom: -10px;
    transform: scale(0,1);
    transition: transform 0.3s ease;
    box-shadow: 0px 0px 40px var(--main-color);
}

.nav_list a:hover::after{
    transform: scale(1,1);
}

.nav_item{
    position: relative;
}

.nav_list li:last-child{
    margin-bottom: 0.625rem;
}

.nav_item a:hover {
    color: var(--white-color);
    text-shadow: 0px 0px 40px #8333FF;
}

.nav_close{
    position: absolute;
    top: 2.8rem;
    right: 3.2rem;
    cursor: pointer;
}

.nav_toggle{
    cursor: pointer;
}

.show-menu{
    right: 0;
}

.active:after{
    content: "";
    position: absolute;
    background: linear-gradient(to right, transparent 0%, #8333FF 50%, transparent 100%); 
    height: 3px;
    width: 100%;
    left: 0;
    bottom: -10px;
    box-shadow: 0px 0px 40px var(--main-color);
}

.active:hover{
    color: var(--white-color);
}

.active a{
    color: var(--white-color);
}

.lang_mob a{
    width: 100%;
    padding: 0.625rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white-color);
    font-size: clamp(1.250rem, 1.313rem, 1.750rem);
    text-decoration: none;
}

.lang_mob{
    margin-top: 2.5rem;
}

.langmob_nav{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    row-gap: 1.875rem;
    transition: 1s;
}

.lang_mob a:hover{
    color: var(--main-color);
}

.lang_mob a.activeLang{
    color: var(--main-color);
}

.lang_sec{
    display: none;
}

.user_nav a{
    width: 100%;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--gray-color);
    font-size: clamp(1.250rem, 1.313rem, 1.750rem);
    text-decoration: none;
    transition: 0.4s;
}

.user_nav{
    display: none;
    position: absolute;
    top: 3rem;
    left: 0;
    padding: 1rem;
    text-align: center;
/*     background-color: #0F0F0F; */
    border-radius: 8px;
/*     border: 2px solid rgb(44, 44, 44); */
}

.user_nav li{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.user_nav a:hover{
    color: white;
    text-shadow: 0px 0px 10px rgb(255, 255, 255);
}

.user_section:hover .user_nav{
    display: block;
}

.scroll_navhov{
    animation-name: fadeoutop;
    animation-duration: 0.8s;
    animation-iteration-count: 1;
}

@keyframes fadeoutop {
    from{opacity: 0;}
    to{opacity: 1;}
}


.nav_addons{
    position: relative;
    cursor: pointer;
}

.logo_position{
    display: none;
}

@media screen and (min-width: 986px){

    .nav_toggle,
    .nav_close{
        display: none;
    }
    .nav_menu{
        display: flex;
        justify-content: center;
    }

    .nav_list{
        display: flex;
        align-items: center;
        flex-direction: row;
        column-gap: 2rem;
        padding-top: 0.30rem;
        border-bottom: none;
        padding-bottom: 0;
    }

    .nav_menu .nav_close
    .nav_toggle{
        display: none;
    }
    .nav{
        /*         padding: 2.563rem 5rem 3.063rem 5rem; */
        display: grid;
        align-items: center;
        justify-content: space-between;
        grid-auto-columns: 1fr;
        grid-column-gap: 16px;
        grid-template-columns: 0.75fr 6fr 0.75fr;
        border-left: #B2B2B244 1.5px solid;
        border-right: #B2B2B244 1.5px solid;
        border-bottom-left-radius: 13px;
        border-bottom-right-radius: 13px;
    }

    .header{
        border-bottom-left-radius: 13px;
        border-bottom-right-radius: 13px;
        width: 90%;
        top: 0px;
        left: 50%;
        transform: translate(-50%);
/*         border-left: #B2B2B244 1px solid;
        border-right: #B2B2B244 1px solid; */
    }

    .second_nav{
        display: none;
        position: absolute;
    }

    .nav_addons {
        padding-top: 0.30rem;
        order: 3;
        display: flex;
        gap: 1rem;
        justify-self: end;
    }

    .logo-section{
        order: 1;
    }
    .nav_menu{
        order: 2;
    }

    .lang_mob{
        display: none;
    }

    .user_nav{
        left: -6.25rem;
    }

    .nav_list li:last-child{
        margin-bottom: 0rem;
    }

    .lang_sec a{
        display: block;
        width: 100%;
        padding: 0.625rem;
        font-weight: 400;
        text-transform: uppercase;
        color: var(--white-color);
        font-size: clamp(1.250rem, 1.313rem, 1.750rem);
        text-decoration: none;
        transition: 0.4s;
    }

    .lang_sec span{
        display: block;
        width: 100%;
        padding: 0.625rem;
        font-weight: 400;
        text-transform: uppercase;
        color: var(--white-color);
        font-size: clamp(1.250rem, 1.313rem, 1.750rem);
        text-decoration: none;
        transition: 0.4s;
    }

    .lang_sec span:hover{
        color: white;
        text-shadow: 0px 0px 10px rgb(255, 255, 255);
    }
    
    .lang_sec{
        display: block;
        position: relative;
    }
    
    .lang_list{
        display: none;
        position: absolute;
/*         background-color: var(--third-background); */
        padding: 0.5rem;
        left: -8px;
        text-align: center;
/*         border: 2px solid rgb(44, 44, 44); */
    }
    
    .lang_list li{
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .lang_list a:hover{
        color: white;
        text-shadow: 0px 0px 10px rgb(255, 255, 255);
    }
    
    .lang_sec:hover .lang_list{
        display: block;
    }

}

@media screen and (min-width:1280px){
    .logoname{
        display: block;
        position: absolute;
        left: 0.8rem;
        opacity: 0;
        transition: ease-in-out 0.6s;
    }

    .logo_position{
        position: relative;
    }

    .logo-section:hover .logoname{
        display: block;
        opacity: 1;
    }

    .logo-section:hover{
        cursor: pointer;
    }

    .lang_mob{
        display: none;
    }
}




    /* 
    --------------------
          Footer
         Asteago.com
    ----------------------
    */
    
    footer{
        width: 100%;
        background-color: var(--second-background);
        margin-top: 50px;
        padding: 1rem;
        border-top: #B2B2B244 1px solid;
    }
    
    .footer_nav{
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer_nav ul{
        max-width: 250px;
    }
    
    .footer_logo{
        width: 100%;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer_logo img{
        margin-bottom: 1rem;
        max-width: 14.93rem;
    }
    
    
    .footer_nav_item a {
        color: var(--white-color);
        text-decoration: none;
        transition: 0.3s;
    }
    
    .footer_first{
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer_nav_item a:hover{
        color: var(--hover-main-color);
        text-shadow: 0px 0px 8px var(--drop-shadow-color);
    }
    
    .footer_h{
        margin-bottom: 0.5rem;
        font-weight: 700;
        font-size: calc(16pt + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
        margin-bottom: 1rem;
    }
    
    .footer_nav_item{
        margin-bottom: 0.5rem;
    }
    
    /* SECOND FOOTER*/
    
    .footer_sec{
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
    }
    
    .footer_sec p{
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .special{
        color: #b649ff;
        text-decoration: none;
    }
    
    .footer_line{
        background: linear-gradient(to right, transparent 0%, #333333 50%, transparent 100%); 
        height: 3px;
        width: 100%;
    }

@media screen and (min-width:1024px) {

    .footer_first{
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-items: space-between;
        padding: 0 8%;
    }

    .footer_logo{
        text-align: left;
    }

    .footer_nav{
        text-align: left;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .footer_logo{
        align-items: normal;
    }

    
}

.lang_mob .activeLang{
    color: var(--hover-main-color);
    font-weight: 800;
}

.authors {
    font-weight: 700;
    transition: 0.4s;
    color: white;
    text-decoration: none;
}

.authors:hover {
    color: var(--hover-main-color);
}