.tphoverfullscreen {
    position: relative;
}

.tphoverfullscreen .item {
    height: 90vh;
    padding: 0;
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.tphoverfullscreen .imgholder {
    overflow: hidden;
}

.tphoverfullscreen .imgholder, .tphoverfullscreen .tpimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tphoverfullscreen .info {
    text-align: center;
}

.tphoverfullscreen .imgholder .tpimg.current {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

@media (min-width: 992px) {
    .tphoverfullscreen .item {
        flex-grow: 1;
        flex-basis: 0;
    }

    .tphoverfullscreen > div {
        display: flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.tphoverfullscreen .imgholder .tpimg {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-size: cover;
    background-position: center center;
}

.tphoverfullscreen .item:hover .tpbtn {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.tphoverfullscreen .tpbtn {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
}

.tphoverfullscreen .item:hover .info {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.tphoverfullscreen .item * {
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    -ms-transition-duration: .3s;
}