/* ------------------------------------------------------- projects --------------------------------------------*/
body{
    color: var(--c-main);   
}
#top-lane{
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 85%, rgba(0,0,0,0)100%);
    width:100vw;
    height:calc(2.5vw + 60px);
    position:fixed;
    top:0;
    left:0;
}
#bottom-lane{
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 85%, rgba(0,0,0,0) 100%);
    width:100vw;
    height:calc(4vw + 50px);
    position:fixed;
    bottom:0;
    left:0;
}
#backbutton{
    background: var(--c-main) url(../content/logo_black.png);
    background-size: 45px;
    background-position: center;
    height:50px;
    width:50px;
    background-repeat: no-repeat;
    
    position:fixed;
    left:0.5vw;
    top:0.5vw;
    border-radius: 10px 0;
}
#pro-menu{
    position: fixed;
    left:0.5vw;
    top:calc(50vh - 210px);
    width:30px;
    text-align: right;
}
.pro-menu-link{
    display:block;
    line-height:30px;
    font-size: 25px;
    color:var(--c-main);
    text-align:right;
    
    font-family:var(--f-head);
    
    text-decoration:none;
    
    -webkit-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.see-menu{
    color: var(--c-ut-light);
    -webkit-transition-delay: .1s;
    -ms-transition-delay: .1s;
    transition-delay: .1s;
    transform: scale(1.2, 1.2) translateX(5px);
}
.pro-wrap{
    width:calc(98.5vw - 50px);
    padding: 10vw 0.5vw 10vw calc(50px + 1vw);
    
    background: var(--c-ut-dark);

    -webkit-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.see-project{
    -webkit-transition-delay: .1s;
    -ms-transition-delay: .1s;
    transition-delay: .1s;    
}
#pro-head{
    width:calc(98.5vw - 50px);
    margin: 10vw 0.5vw 10vw calc(50px + 1vw);
}
.project{
    column-count: 1;
    column-gap: 25px;
    background-color:none;
    min-height:500px;
    margin: 0 auto 0 auto;
}
.project > p:first-child{
    display:block;
    font-family:var(--f-head);
    font-size:47px;
    font-weight:900;
    margin:0 0 0 10px;
    padding:0;
    position:sticky;
    z-index: 10;
    top:calc(0.5vw + 21px);
}




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

#backbutton::before{content:'.home';
    font-size: 13px;
    position:relative;
    top:40px;
    font-family: var(--f-head);
    color: var(--c-main);
    opacity:0;
    transition: all .2s ease-in-out;
}
#backbutton:hover::before{
    opacity:1;
    top:50px;    

}
.project{
    column-count: 2;
}
.pro-menu-link:hover{
        transform:scale(1.1, 1.1) translateX(5px);
}

}







