﻿

.cardx {
    border: none;
    margin-bottom: 1.5em;
    align-items:center;
}

.containerx {

    position: relative;
    display: flex;
    justify-content:space-between;

}

    .containerx .card {
        position: relative;
        
    }

        .containerx .card .face {
            width: 450px;
            height: 422px;
            transition: 0.5s;

        }

            .containerx .card .face.face1 {
                position: relative;
                background: #333;
                display: flex;
                justify-content: center;
                z-index: 1;
                transform: translateY(50px);
                color: aliceblue;
                border-radius: 5px 5px 0 0;
                box-shadow: 10px 0 20px rgba(0,0,0,0.8);
            }

        .containerx .card:hover .face.face1 {
            transform: translateY(0);
            background: #f04b2b;
            color: aliceblue;
        }

        .containerx .card .face.face1 .content {
            opacity: 0.8;
            transition: 0.5s;
        }

        .containerx .card:hover .face.face1 .content {
            opacity: 1;
        }

        .containerx .card .face.face1 .content .title {
            height: 60px;
            
        }

        .containerx .card .face.face1 .content img {
            width: 100%;
            height: 363px;
        }

        .containerx .card .face.face1 .content h3 {
            margin: 10px 0 0;
            padding: 0;
            color: #fff;
            text-align: center;
            font-size: 1.5em;
        }

        .containerx .card .face.face2 {
            position: relative;
            background: #002856;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
            transform: translateY(-350px);
            height: 130px;
            border-radius: 0 0 5px 5px;
        }

        .containerx .card:hover .face.face2 {
            transform: translateY(0);
            box-shadow: 0 20px 50px rgba(0,0,0,0.8);
            
        }

        .containerx .card .face.face2 .content p {
            margin: 0;
            padding: 0;
            
        }

        .containerx .card .face.face2 .content a {
            /*margin: 15px 0 0;*/
            display: inline-block;
            text-decoration: none;
            font-weight: 400;
            /*color: #333;*/
            /*padding: 5px;*/
            /*border: 1px solid #333;*/
            
        }

            .containerx .card .face.face2 .contentx a:hover {
                background: #333;
                color: #fff;
            }


/*
.animado{
    opacity: 0;
    transition:all 0.5s;
}

.mostrarArriba{
    animation: mostrarArriba 1s;
}

@keyframes mostrarArriba{
    0%{
    transform: translateY(60px);
    }
    100%{
    transform: translateY(0);
    }
}*/

.carousel-indicators .radio { /* indicadores redondos del slider*/
    border-radius: 100%;
    height: 15px;
    width: 15px;
    margin-left: 10px;
    
}

.radiob { /*Sombra y radio del slider*/
    border-radius: 8px;
    box-shadow: 10px 0 20px rgba(0,0,0,0.4);
    
}

/*.carousel{
    min-width:450px;   
}
*/