﻿


.card {
    position: relative;
    height: 210px;
    width: 210px;
}

    .card img {
        display: block;
        margin: auto;
        padding: 2px 0;
    }

    .card .info {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        color: white;
        background-color: #808080;
        opacity: 0;
        text-align: center;
        font-size: 12pt;
        transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
    }

    .card:hover .info {
        opacity: 0.8;
    }

.info p {
    margin-top: 45px;
}

.card .info p,
.card .info span {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.card:hover .info p,
.card:hover .info span {
    opacity: 1;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}



.FlowCard {
    position: relative;
    height: 270px;
    width: 210px;
}

    .FlowCard img {
        display: block;
        margin: auto;
        padding: 2px 0;
    }

    .FlowCard .info {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        color: white;
        background-color: #808080;
        opacity: 0;
        text-align: center;
        font-size: 12pt;
        transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
    }

    .FlowCard:hover .info {
        opacity: 0.8;
    }

    .FlowCard p {
        margin-top: 45px;
    }

    .FlowCard .info p,
    .FlowCard .info span {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        -o-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .FlowCard:hover .info p,
    .FlowCard:hover .info span {
        opacity: 1;
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
