@charset "UTF-8";
#toWorks{
    position: relative;
    height: 100vh;
    margin-bottom: 50vh;
}
#worksArea{
    position: relative;
    width: 100%;
    height: auto;
    z-index: 10;
}
.workArea{
    width: 100%;
    height: 100vh;
}
#worksBackground{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #222222;
    will-change: transform;
}
#worksWrapper{
    position: absolute;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
    will-change: transform;
}
.work{
    position: relative;
    width: 100vw;
    height: 100vh;
}
.workInner{
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    width: 70vh;
    height: 70vh;
}
.workImg{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    will-change: transform;
}
.workInfo{
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    width: 90%;
    height: 80%;
    pointer-events: none;
}
.workInfo *{
    color: #e5e1df;
    font-size: 14px;
    font-weight: 600;
}
.typeOfInfo{
    font-weight: 600;
    font-size: 0.5em;
    color: #e5e1df;
}
.projectOfworkInfo{
    position: absolute;
    left: 0;
    top: 0%;
}
.categoryOfworkInfo{
    position: absolute;
    left: 0;
    top: 10%;
}
.urlOfworkInfo{
    position: absolute;
    left: 0;
    bottom: 0%;

}
.workImgInner{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
@media screen and (max-width:480px) {
    #workInfo div{
        height: 7vw;
    }
    #workInfo{
        position: absolute;
        font-size: 7vw;
    }
    .work{
        width: 100vw;
    }
}