﻿
.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
    padding: 8px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

 .project-hover {
    position: relative;
    margin-bottom : 30px;
}

.project-hover:hover .text-view {
    top: 0;
    opacity: 1;
    height: 60px;
}


.project-hover .text-view {
    width: 100%;
    position: absolute;
    overflow: hidden;
    background-color: #008CBA;
    -webkit-transition: height 0.7s; /* For Safari 3.1 to 6.0 */
    transition: height 0.7s;
    height: 0;
    border-radius : 5px;
       
}

    .project-hover .text-view h3 {
        /*margin-bottom: 0;*/
        /*font-weight: 600;*/
        margin-top: 10px;
    }

.project-hover:hover .card {
    opacity: 0.7;
}
