.col{
    background-color:pink;
}

img{
    max-width: 100%;
}

.bg-actividades-blue{
    background-color:#0c4da4;
}

.actividades img{
    transition: 0.3s ease-in-out;
width:100%;
}

.actividades:hover img{
    opacity: 0.5;
    transition: 0.3s ease-in-out;
    width:120%;
}

.actividades:hover{
    cursor: pointer!important;
}

.actividades-titulo{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.actividades-titulo span{
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.actividades-titulo span{
    color:white;
    text-transform: uppercase;
    font-size: 1.5em;
}

.actividades:hover .actividades-titulo span{
    opacity: 1;
}

.actividades:hover .bg-actividades-blue img{
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}

.actividades{
    overflow: hidden;
}

.indicador-actividad{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.indicador-tonificacion-muscular{
    background-color: #ffbc37;
}

.indicador-coreografiadas{
    background-color: #a5cb39;
}

.indicador-body-mind{
    background-color: #c99bfa;
}

.indicador-cardiovascular{
    background-color: #0072ec;
}

.indicador-alto-gasto-calorico{
    background-color: #c82930;
}



.btn-filtro{
    padding: 12px 20px;
    border: none;
    border-radius: 0;
    margin: 0px 10px;
    font-size: 10px;
    font-family: "Futura Book";
    color:white!important;
    text-transform: uppercase;
	transition:0.2s ease-in-out;
}

@media screen and (max-width:767px){
    .vc_column-inner{
        padding:0!important;
    }
}

[data-filtro="tonificacion-muscular"]{
    background-color: #ffbc37;
}

[data-filtro="cardiovascular"]{
    background-color: #0072ec;
}

[data-filtro="alto-gasto-calorico"]{
    background-color: #c82930;
}

[data-filtro="coreografiadas"]{
    background-color: #a5cb39;
}

[data-filtro="body-mind"]{
    background-color: #c99bfa;
}

.todas{
    background-color: black;
}

.btn-filtro:hover{
	opacity:0.8;
	transition:0.2s ease-in-out;
}

@media screen and (max-width:767px){
    .container-pagina-actividades{
        flex-direction: column;
    }
}

.actividades.d-none{
	z-index:10;
	visibility:visible;
	display:inline-block!important;
	opacity:0;
	transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, filter 600ms linear 0s, opacity 600ms linear 0s;
	transform: scale(0.01);
}

.actividades{
	z-index:10;
	visibility:visible;
	transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), filter linear, opacity linear;
	display:inline-block;
    transform: translate(0px, 0px);
	opacity:1;
	filter:none;
}

.actividades.d-none{
    position: absolute;
}

