.flip-box {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.em-flip-box-front-img-bg {
    width: 100%;
    height: 100%;
    background-color: #e1e1e1;
    background-size: cover;
    background-position: center;
}

.flip-box-back {
    background-color: #F8931F;
    color: #ffffff;
    transform: rotateY(180deg);
}

.em-flip-box-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: capitalize;
    color: #ffffff;
}

.em-flip-box-content p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 24px;
    font-weight: 400;
}

.em-flip-box-content {
    padding: 25px;
}

.em-flip-box-content a.em-flipbox-readmore-btn {
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
}

a.em-flipbox-readmore-btn span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

@media all and (max-width: 767px) {
    .em-flip-box-content h2 {
        font-size: 18px;
    }
}