@charset "utf-8";

/* card ----------------------------- */
.card {
    position: relative;
}

.card-head {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    /* display: none; */
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: .3s;
}

.card:hover .card-head {
    opacity: 1;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.card-title {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.3;
    width: 80%;
}


.card-img {
    max-width: 100%;
    height: auto;
}