.owl-carousel .owl-stage-outer {
    height: 100vh;
    padding-top: 3%;
}

.inactiva {
    transform: scale(0.9);
    transition: all ease-in-out .3s;
    opacity: 0.4;
}

.activa {
    transform: scale(1.1);
    transition: all ease-in-out .3s;
    opacity: 1;
}


.owl-carousel .owl-item {
    transition: all ease-in-out .3s;
}


.no-vis {
    opacity: 0;
    transition: all ease-in-out .4s;

}

.activa .no-vis {
    opacity: 1;
    transition: all ease-in-out .4s;

}

.no-vis {
    position: absolute;
    bottom: -40%;
    width: 100%;
}

@media (max-width: 768px) {
    .no-vis {
        position: absolute;
        bottom: -55%;
        width: 100%;
    }

    .owl-carousel .owl-stage-outer {
        height: 100vh !important;
        padding-top: 3%;
    }

    .no-vis {
        opacity: 1;
        transition: all ease-in-out .4s;
    }


    .mt-mob-vertical {
        margin-top: 15vh;
    }
}