.galleryTab .galleryTab-item
{
    height: 75vh;
    overflow: hidden;
}

.galleryTab .galleryTab-item .cover_web
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    /* background: linear-gradient(90deg, rgba(0,0,0,0.1) 25%, rgba(0,0,0,0.5) 85%); */
    z-index: 1;
    transform: translateY(110%);
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.galleryTab .galleryTab-item .galleryTab-item-title 
{
        position: absolute;
        top: 50%;
        left: 50%;
        color: #fff;
        font-size: 3.2rem;
        line-height: 3.2rem;
        font-weight: 800;
        z-index: 2;
        width: 75vh;
        
        text-align: left;
        transform: translate(-120%,-50%) rotate(-90deg);
        transform-origin: center;
        padding-left: 25px;

        transition: all 0.6s ease-in-out;
        -moz-transition: all 0.6s ease-in-out;
        -webkit-transition: all 0.6s ease-in-out;
        -o-transition: all 0.6s ease-in-out; 
}

@media screen and (min-width: 1199px) 
{
    .galleryTab .galleryTab-item:hover .cover_web
    {
        transform: translateY(0);
        transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

    .galleryTab .galleryTab-item:hover .galleryTab-item-title 
    {
        transform: translate(-50%,-50%) rotate(-90deg);
        transition: all 0.6s ease-in-out;
        -moz-transition: all 0.6s ease-in-out;
        -webkit-transition: all 0.6s ease-in-out;
        -o-transition: all 0.6s ease-in-out;    
    }
}


 
@media screen and (max-width: 1199px) 
{

    .galleryTab .galleryTab-item .cover_web
    {
        transform: translateY(0);
        background: linear-gradient(180deg, rgba(0,0,0,0.1) 65%, rgba(0,0,0,0.5) 85%, rgba(0,0,0,0.6) 100%);
    }

    .galleryTab .galleryTab-item .galleryTab-item-title {
        transform: none;
        width: 100%;
        top: unset;
        bottom: unset;
        left: unset;
        padding-bottom: 10px;
        font-size: 3rem;
        line-height: 3rem;
        position: relative;
        padding-top: 110px;
        padding-left: 15px;
        text-align: center;
    }
}