.list-portfolio {
    width: 100vw;
    height: 100vh;
}

.list-portfolio .list-items .item{
    display: inline-block;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
}

.list-portfolio .list-items .item h2{
  float: left;  
    font-size: calc(1rem + 4vw);
    line-height: calc(1rem + 5.4vw);
    margin-right: 60px;
    position: relative;
}

.list-portfolio .list-items .item h2:after{
    content: '/';
    position: absolute;
    right: -45px;
    opacity: .3;
}

.list-portfolio .list-items .item:last-child h2:after{
    display: none;
}

.list-portfolio .hover-images{
    position: absolute;
    width: 70vw;
    height: 100vh;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: -2;
}

.list-portfolio .hover-images .video-wrapper{
    z-index: 0;
}

.list-portfolio .hover-images:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    background: radial-gradient(104% 198.4% at 24.79% 68.11%, rgba(0, 0, 0, 0.0) 0%, #191B1D 66%);
}

.list-portfolio .hover-images .item{
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    background-size: cover;
}


.list-portfolio .hover-images .item.focus{
    opacity: 1;
}

.list-portfolio .scroll-to-explore{
    left: 60px;
    bottom: 60px;
    position: absolute;
}

.list-portfolio .scene{
    z-index: -2;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}