.flipbox {
    width: 100%;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

.flipbox .front, .flipbox .back {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
    display: table;
}

.flipbox .front {
    z-index: 1;
    background: #f6f6f6;
    border: 1px solid #ccc;
}

.flipbox .back {
    z-index: 0;
    background-color: #a0ce4e;
}

.flipbox .flipbox-content {
    color: #fff;
    line-height: 150%;
    /*display: block;*/
    /*width: 90%;*/
    /*margin: 0 auto;*/
    text-align: center;
    position: relative;
    /*top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);*/
    display: table-cell;
    vertical-align: middle;
    padding: 0 10px;
    font-size:13px;
}

.flipbox .front h3 {
    font-size: 21px;
    margin-top: 30px;
    color: rgba(0,0,0,0.6) !important;
}
