:root {
    --fc-height: 350px;
    --fc-speed: 0.6s;
}

.fc-card-scene {
    width: 100%;
    height: var(--fc-height);
    perspective: 1000px;
}

.fc-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform var(--fc-speed);
    transform-style: preserve-3d;
    cursor: pointer;
}

.fc-card-inner.is-flipped {
    transform: rotateY(180deg);
}

.fc-card-front, .fc-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.fc-card-back {
    transform: rotateY(180deg);
}

#fc-front-content, #fc-back-content {
    width: 100%;
}
.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
    transition: all 0.3s ease;
}
.transition {
    transition: all 0.3s ease;
}