.col-3-area {
    padding: 20px;
}

.hovercard {
    display: flex;
}

.hovercard > div {
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-color: white;
    margin: 0px;
    color: #0E485A;
    text-align: center;
    font-size: 10px;
    border-radius: 20px 20px 0 0;
}

.hovercard h3 {
    padding: 6%;
    margin-bottom: 0px;
    font-size: 25px;
}

.hovercard .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hovercard > div:hover .overlay {
    opacity: 1;
}

.hovercard a.text {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    padding: 20px;
    background-color: rgba(0,0,0,.5);
    color: white !important;
    display: inline-block;
    width: max-content;
    margin: 0 auto;
}

.hovercard-editor .overlay {
    position: relative;
    opacity: 1;
}

.flipcard {
    -webkit-perspective: 150rem;
    perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 675px
}

.flipcard__side {
    height: 675px;
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15)
}

.flipcard__side--front {
    background-color: #ffffff;
    box-shadow: 6px 6px 23px #222222;
}

.flipcard__side--back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}

.flipcard__side--back-1 {
    background-image: -webkit-gradient(linear, left top, right bottom, from(#1D677CFF), to(#90B8C3AA));
    background-image: linear-gradient(to right bottom, #1D677CFF, #90B8C3AA)
}

.flipcard__side--back-2 {
    background-image: -webkit-gradient(linear, left top, right bottom, from(#1D677CFF), to(#90B8C3AA));
    background-image: linear-gradient(to right bottom, #1D677CFF, #90B8C3AA)
}

.flipcard__side--back-3 {
    background-image: -webkit-gradient(linear, left top, right bottom, from(#1D677CFF), to(#90B8C3AA));
    background-image: linear-gradient(to right bottom, #1D677CFF, #90B8C3AA)
}

.flipcard:hover .flipcard__side--front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg)
}

.flipcard:hover .flipcard__side--back {
    -webkit-transform: rotateY(0);
    transform: rotateY(0)
}

.flipcard__picture {
    background-size: cover;
    height: 360px;
    background-blend-mode: screen;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.flipcard__picture--1 img {
    -webkit-clip-path:polygon(0 0, 100% 0, 100% 100%, 0 90%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.flipcard__picture--2 img {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.flipcard__picture--3 img {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.flipcard__heading {
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: right;
    color: #FFFFFF;
    position: absolute;
    top: 30px;
    right: 15px;
    width: 75%;
    text-shadow: 1px 1px 2px #000000;
}

.flipcard__heading-span {
    padding: 16px 24px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    font-size: 32px;
}

.flipcard__heading-span--1 {
    background-image: -webkit-gradient(linear, left top, right bottom, from(#1D677CFF), to(#90B8C3AA));
    background-image: linear-gradient(to right bottom, #1D677CFF, #90B8C3AA)
}

.flipcard__heading-span--2 {
    background-image: -webkit-gradient(linear, left top, right bottom, from(#1D677CFF), to(#90B8C3AA));
    background-image: linear-gradient(to right bottom, #1D677CFF, #90B8C3AA)
}

.flipcard__heading-span--3 {
    background-image: -webkit-gradient(linear, left top, right bottom, from(#1D677CFF), to(#90B8C3AA));
    background-image: linear-gradient(to right bottom, #1D677CFF, #90B8C3AA)
}

.flipcard__details {
    padding: 2rem
}

.flipcard__details ul {
    list-style: none;
    width: 80%;
    margin: 0 auto;
    padding-inline-start:0px;
}

.flipcard__details ul li {
    text-align: center;
    font-size: inherit !important;
    padding: 10px;
    list-style: none !important;
}

.flipcard__details ul li:not(:last-child) {
    border-bottom: 1px solid #eee
}

.flipcard__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center
}

.flipcard__price-box {
    text-align: center;
    color: #fff;
    margin-bottom: 8rem
}

.flipcard__price-box p {
    font-size: 40px;
    text-transform: uppercase
}

@media only screen and (max-width: 56.25em), only screen and (hover: none) {
    .flipcard {
        height: auto;
        border-radius: 3px;
        background-color: #fff;
        -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
        box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15)
    }

    .flipcard__side {
        height: auto;
        position: relative;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .flipcard__side--back {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
        -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%)
    }

    .flipcard:hover .flipcard__side--front {
        -webkit-transform: rotateY(0);
        transform: rotateY(0)
    }

    .flipcard__details {
        padding: 1rem 3rem
    }

    .flipcard__cta {
        position: relative;
        top: 0%;
        left: 0;
        -webkit-transform: translate(0);
        transform: translate(0);
        width: 100%;
        padding: 7rem 4rem 4rem 4rem
    }

    .flipcard__price-box {
        margin-bottom: 3rem
    }

    .flipcard__price-box p {
        font-size: 4rem
    }

    .flipcard__heading {
        font-size: 1.4rem;
        font-weight: 300;
        text-transform: uppercase;
        text-align: right;
        color: #F2DFAE;
        position: absolute;
        top: 15rem;
        right: 2rem;
        width: 75%;
        text-shadow: 2px 2px 3px #000000;
    }
}

.flipcard-editor .flipcard__side--back, .flipcard-editor .flipcard__side--front {
    position: relative;
}

.flipcard-editor .flipcard__side--back {
    transform: rotateY(0deg);
    padding: 10px 0;
}