.st-flip-card {
    background-color: transparent;
    -webkit-perspective: 800px;
    perspective: 800px;
    height: 300px;
    width: 300px;
    min-width: 300px;
    margin: 12px;
}

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

/* Do an horizontal flip when you move the mouse over the flip box container */
.st-flip-card:hover .st-flip-card-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/* Position the front and back side */
.st-flip-card-front, .st-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    -webkit-box-shadow: 4px 8px 16px rgb(25,25,25);
    box-shadow: 4px 8px 16px rgb(25,25,25);
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.st-flip-card-front {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #FFFFFF;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.st-flip-card-front h3 {
    color: var(--light);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-shadow: 1px 1px 10px black;
}

.st-flip-card-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #FFFFFF;
    color: black;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 18px;
    overflow-y: scroll
}

.flip-card-back p {
    font-size: 18px;
    color: rgb(50,50,50);
}


.st-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.st-flip-card-back h3 {
    margin-bottom: 6px !important;
}

.st-sub-title {
    font-size: 15px !important;
    line-height: 20px !important;
    font-weight: 600;
    margin-bottom: 8px !important;
}

.st-text {
    font-size: 16px !important;
    line-height: 22px !important;
}

.st-full-width {
    width: 100% !important;
}

@media only screen and (max-width: 1150px) {
    .st-flip-card p {
        font-size: 14px;
        line-height: 18px;
    }
}


@media only screen and (max-width: 920px) {

}


@media only screen and (max-width: 820px) {
    .st-flip-card p {
        font-size: 12px;
        line-height: 16px;
    }
}
