﻿.effect-btn a {
    color: #333333;
    font-weight: 400;
    outline: none;
    text-decoration: none;
    transition: 0.5s;
}

    .effect-btn a:hover,
    .effect-btn a:active,
    .effect-btn a:focus {
        outline: none;
        text-decoration: none;
    }


.effect-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.effect-column {
    position: relative;
    width: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}


.image-hover {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}



    .image-hover .effect-img img {
        width: 100% !important;
        height: 300px;
    }

    .image-hover .effect-text {
        position: absolute;
        width: 100%;
        height: 100%;
        padding: 30px;
        top: calc(100% - 60px);
        left: 0;
        text-align: center;
        background: rgba(0, 0, 0, .5);
        transition: .5s;
    }


    .image-hover:hover .effect-text {
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .image-hover .effect-text h4 {
        height: 45px;
        color: #ffffff;
        font-size: 24px;
        margin: -15px 0 0 0;
        transition: .5s;
    }

    .image-hover:hover .effect-text h2 {
        margin: 0;
    }

    .image-hover .effect-text p {
        color: #ffffff;
        font-size: 20px;
    }


    .image-hover .effect-btn .btn {
        display: inline-block;
        height: 35px;
        padding: 7px 15px;
        color: #333333;
        background: #ffffff;
    }
