﻿
.reasonContainer {
    padding: 1em 0;
    float: left;
    width: 235px;
}

    .reasonContainer .title {
        color: #1a1a1a;
        text-align: center;
        margin-bottom: 10px;
    }

.reasonContent {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: auto;
    overflow: hidden;
}

    .reasonContent .reasonContent-overlay {
        background: rgba(74,88,46,0.8);
        position: absolute;
        height: 99%;
        width: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        opacity: 0;
        -webkit-transition: all 0.4s ease-in-out 0s;
        -moz-transition: all 0.4s ease-in-out 0s;
        transition: all 0.4s ease-in-out 0s;
    }

    .reasonContent:hover .reasonContent-overlay {
        opacity: 1;
    }

.reasonContent-image {
    width: 100%;
}

.reasonContent-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 30%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

    .reasonContent-details h4 {
        color: white;
    }

.reasonContent:hover .reasonContent-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.reasonContent-details h3 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.reasonContent-details p {
    color: #fff;
    font-size: 0.8em;
}


.fadeIn-left {
    left: 20%;
}
