.action-card {
    position: relative;
    width: 100%;
    text-align: center;
    padding-bottom: 100%;
}

.action-card .card-front,
.action-card .card-back {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: 0.7s;
}

.action-card:hover .card-front {
    transform: rotateY(-180deg);
}

.action-card:hover .card-back {
    transform: rotateY(0);
}

.action-card .card-back {
    overflow: hidden;
    transform: rotateY(-180deg);
}

.flip-icon svg {
    width: auto;
    height: 80px;
}

.card-back,
.card-front {
    display: flex;
    flex-wrap: wrap !important;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.action-content {
    line-height: 1.5;
    text-align: left;
}

.action-button {
    margin-top: 30px;
}

h2.action-title {
    width: 100%;
    margin-bottom: 0;
}

.card-arrow {
    position: absolute;
    right: 30px;
    bottom: 20px;
    width: 30px;
    height: 30px;
    text-align: center;
}

.card-arrow:before {
    content: '\e87d';
    font-family: entypo-fontello;
    left: 6px;
    font-size: 16px;
    line-height: 1.8;
    transition: .6s;
}

@media (min-width: 1251px) {
    .action-card {
        padding-bottom: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1250px) {
    .action-card {
        padding-bottom: 150%;
    }
}

@media (max-width: 989px) {
    .flip-icon svg {
        height: 55px;
    }
}