body
{
    padding: 0;
    margin: 0;
    background: var(--body);
}


header 
{
    width: 100%;
    height: 80px;
    position: relative;
    background-color: var(--header);
    display: flex;
    align-items: center;
    border-bottom: 1px #0f1114 solid;
    /* background: linear-gradient(to top , rgb(10, 10, 10) , rgb(25,25,25)); */
}


header  #logo 
{
    padding: 20px;
    position: relative;
    padding-right: 60px;
    height: 20%;
    display: flex;
    align-items: center;
    margin-left: 15px;
    transition: 0.2s;
    cursor: pointer;
    border-radius: 2px;
    z-index: 1;
    border-radius: 5px;

    border: 1px transparent solid;
}



/* 
header #left #logo::before
{
    width: 0.5;
    content: '';
    height: 100%;
    background: linear-gradient(to top , var(--gyrenblue) , var(--gyrensky));
    position: absolute;
    left: 0;
    animation: line forwards 1.5s;
    
} */


header  #logo:hover
{
    background-color: var(--logohover);
}

header  #logo img 
{
    position: absolute;
    left: 0;
    width: 60px;
    transition: all 0.5s;
}

header  #logo h1 
{
    text-align: center;
    color: var(--logoh1);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    left: 38px;
    bottom: 4px;
}

header  #logo h1 hr 
{
    position: absolute;
    bottom: -12px;
    animation: forwards groupline 2s;
    margin-left: 1.5px;
    height: 1px;
    outline: none;
    border: none;
    background: linear-gradient(to left , var(--gyrenblue) , var(--gyrensky));
    border-radius: 3px;
}

header #logo h1::before
{
    content: 'group';
    animation: forwards grou1 2s;
    position: absolute;
    font-size: 12px;
    background: -webkit-linear-gradient(120deg, var(--gyrenblue) , var(--gyrensky) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    bottom: -8px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


@keyframes grou1
{
    0%
    {   
        right: 20px;
    }

    100%
    {
        right: 0;
    }
}

header  h1::selection , header h1 span::selection
{
    background-color: transparent;
}


header  h1 span
{
    background: -webkit-linear-gradient(120deg, var(--gyrenblue) , var(--gyrensky)
    80%);
    font-weight: 100;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
    font-family: Readex;
}


header  ul
{
    display: flex;
    height: 100%;
    left: -30px;
    position: relative;
    align-items: center;
    color: var(--lowwhite);
    font-family: 'Open Sans',sans-serif;
    font-weight: bolder;
    font-size: 14px;
    
}
header  ul a
{
    text-decoration: none;
    height: 95%;
    color: var(--lowwhite);

}
header  ul li 
{
    letter-spacing: .05em;
    list-style: none;
    height: calc(100% - 20px) ;
    margin: 0 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px 0 0px;
    text-align: center;
    cursor: pointer;
    transition: background 0.5s;
    width: 120px;
    
}



header ul li:hover , #focus 
{
    
    background-color: var(--lihover);
    border-bottom: solid 2px var(--bottomfocus);
    color: var(--bottomfocus);
}

header ul li:hover i 
{
    animation: vibration forwards 0.5s;
}

header  ul li i
{
    position: absolute;
    margin-bottom: 45px;
}


@keyframes line{0%{height: 0;}100%{height: 100%;}}

@keyframes groupline{0%{width: 0%;}100%{width: 50%;}}

header #languages 
{
    width: 120px;
    border-radius: 5px;
    height: 35px;
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
}

header #languages div 
{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

header #languages div span 
{
    background-color: var(--blang);
    height: 94.5%;
    cursor: pointer;
    width: 62%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--sblang);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    border-radius: 5px 0 0 5px;
    transition: 0.2s;
    border: solid 1px var(--bsetlang);
}

header #languages div span:hover 
{
    /* background-color: #cacacae1; */
    background-color: var(--hblang);
    color: var(--lspanhover);
}

header #languages div button
{
    width: 70%;
    z-index: 1;
    color: var(--white);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14;
    background-color: var(--black);
    border: solid 1px var(--bsetlang);
    border-radius: 0 5px 5px 0;
}


#lpanel 
{
    position: absolute;
    right: 10px;
    width: 150px;
    height: 80px;
    top: 85px;
    background-color: var(--lpanel);
    border-top: 3px var(--gyrenblue) solid;
    z-index: 2;
    padding: 0 10px;
    display: none;
    filter:opacity(0%);
}

#lpanel a
{
    text-align: center;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin-top: 5px;
    padding: 5px 0;
    top: 5px;
    position: relative;
    background-color: var(--lihover);
    display: block;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.2s;
}

#lpanel a:hover 
{
    color: var(--gyrensky);
    background-color: var(--alpanel);
}

#darklight
{
    height: 100%;
    display: flex;
    align-items: center;
}

#light ,#moon
{
    color: var(--iconcolor);
    padding: 10px 10px;
    border-radius: 48%;
    position: absolute;
    right: 160px;
    cursor: pointer;
    transition: 0.2s;
}

#light:hover
{
    transform: rotate(60deg);
    background-color: var(--iconhover);
}

#moon:hover
{
    animation: forwards dark 0.5s;
    background-color: var(--iconhover);
}

#moon 
{
    display: none;
}

@keyframes olpanel{0%{filter: opacity(0%);}100%{filter: opacity(100%);}}
@keyframes clpanel{100%{filter: opacity(0%);}0%{filter: opacity(100%);}}
@keyframes dark{0%{transform: rotate(30deg);}50%{transform: rotate(-30deg);}100%{transform: rotate(0deg);}}
@keyframes vibration {0%{transform: rotate(0deg);}25%{transform: rotate(20deg);}50%{transform: rotate(-20deg);}75%{transform: rotate(20deg);}100%{transform: rotate(0deg);}}

#list 
{
    display: none;
}

nav
{
    display: none;
}

#main_under_programming
{
    position: absolute;
    height: 200px;
    width: 90%;
    top: 110px;
    overflow: hidden;
}

#main_under_programming #noti
{
    background-color: rgb(20, 20, 20);
    position: absolute;
    top: 0px;
    border-radius: 5px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    width: 180px;
    height: 40px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: -500px;
    animation: forwards start_noti 1.5s;
}

@keyframes start_noti 
{
    0%
    {
        left : -500px;
    }    

    75%
    {
        left: 50px;
    }
    100% 
    {
        left: 25px;
    }
}

@keyframes close_noti 
{
    0%
    {
        left: 25px;
    }    

    50%
    {
        left: 50px;
    }

    100%
    {
        left: -500px;
        display: none;
    }
}

#main_under_programming #noti::before{
    content: '';
    position: absolute;
    margin-right: 220px;
    border-width: 12px;
    border-radius: 5px;
    top: 0;
    margin-left: 5px;
    transform: rotate(-90deg);
    border-style: solid;
    border-color: transparent rgb(20,20,20) transparent transparent;
}

footer
{
    background-color: var(--header);
    width: 100vw;
    position: absolute;
    bottom: 0;
    height: 6vh;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
}



@media only screen and (max-width: 1050px) {
    header 
    {
    justify-content: center;
    }

    header ul
    {
        display: none;
    }

    #list
    {
        display: block;
        padding: 8px 10px;
        border-radius: 5px;
        font-size: 22px;
        position: absolute;
        left: 15px;
        transition: 0.2s;
        cursor: pointer;
        color: var(--lowwhite);
    }

    #list:hover /*, nav #nlist:hover*/
    {
        background-color: var(--blist);
    }

    #pnav
    {
        width: 100%;
    }

    nav
    {
        background-color: var(--body);
        width: 0%;
        height: 100vh;
        z-index: 5;
        position: fixed;
        top: 0;
        overflow: hidden;
        display: none;
    }

    @keyframes onav {
        0%
        {
            filter: opacity(0%);
        }

        100%
        {
            filter: opacity(100%);
        }
        
    }

    @keyframes cnav {
        0%
        {            
            filter: opacity(100%);
        }

        100%
        {
            filter: opacity(0%);
        }
        
    }

    nav #glist
    {
        color: var(--lowwhite);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        letter-spacing: .2em;
        padding: 5px 7px;
        border-radius: 3px;
        cursor: pointer;
        transition: 0.2s;
    }

    nav #glist:hover
    {
        background-color: var(--blist);
    }

    nav header
    {  
        width: 100%;
        display: flex;
        align-items: center;
    }
    nav header #nlist
    {
        display: block;
        padding: 8px 10px;
        border-radius: 5px;
        font-size: 22px;
        position: absolute;
        left: 15px;
        transition: 0.2s;
        cursor: pointer;
        color: var(--lowwhite);
        background-color: var(--blist);
    }

    
nav header  #nlogo
{
    padding: 20px;
    position: absolute;
    right: 10px;
    padding-right: 60px;
    height: 20%;
    display: flex;
    align-items: center;
    margin-left: 15px;
    transition: 0.2s;
    cursor: pointer;
    border-radius: 2px;
    z-index: 1;
    border: 1px transparent solid;
}

nav header  #nlogo:hover
{
    background-color: var(--logohover);
}

nav header  #nlogo img 
{
    position: absolute;
    left: 0;
    width: 60px;
    transition: all 0.5s;
}

nav header  #nlogo h1 
{
    text-align: center;
    color: var(--logoh1);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    left: 38px;
    bottom: 4px;
}

nav header  #nlogo h1 hr 
{
    position: absolute;
    bottom: -12px;
    animation: forwards groupline 2s;
    margin-left: 1.5px;
    height: 1px;
    outline: none;
    border: none;
    background-color: white;
    background: linear-gradient(to left , var(--gyrenblue) , var(--gyrensky));
    border-radius: 3px;
}

nav header #nlogo h1::before
{
    content: 'group';
    animation: forwards grou1 2s;
    position: absolute;
    font-size: 12px;
    background: -webkit-linear-gradient(120deg, var(--gyrenblue) , var(--gyrensky) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    bottom: -8px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

nav #ubody
{
    width: 100%;
    position: relative;
}

nav #ubody a
{
    width: 100%;
    position: relative;
    text-align: center;
    padding: 15px 0;
    cursor: pointer;
    display: block;
    margin-top: 5px;
    color: var(--acubody);
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--ubody);    
    transition: 0.2s;
    font-size: 15px;
}

nav #ubody a:hover
{
    background-color: var(--aubody);
}}


@media only screen and (max-width: 570px) 
{
header #languages 
    {
        display: none;
    }
    #moon , #light
    {
        position: absolute;
        right: 20px;
    }
}

@media only screen and (max-width: 435px)
{
nav header  #nlogo
    {
        display: none;
    }
}

