.flip-card-front h5 {
    position: absolute;
    background: #00000095;
    color: #fff;
    bottom: 0;
    left: 0;
    /* width: 100%; */
    padding: 10px 20px;
    margin: 0px;
    font-weight: 200;
    font-size: 17px;
    border-radius: 0 10px 0 0px;
    }

    .line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    }
    .gallery-card-image-btn {
    position: absolute;
    top: auto;
    left: 0;
    bottom: 15px;
    right: 0;
    }
    .flip-card {
    background-color: rgb(255 255 255);
    height: 320px;
    perspective: 1000px;
    }

    .flip-card-back p {
    font-size: 15px;
    }

    .flip-card-front img {
    border-radius: 0px;
    width: 100%;
    object-fit: cover;
    height: 100%;
    }

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

    .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    cursor: pointer;
    }

    .flip-card-front,
    .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    }

    .flip-card-back {
    color: rgb(255 255 255);
    transform: rotateY(180deg);
    border-radius: 10px;
    padding: 30px 10px;
    background: #0AAAA0;

    }

    .flip-card-back h5 {
    font-size: 20px;
    }
    .flip-card-back h5 b {
    color: orange;
    }
    .flip-card-back p {
    color: #fff !important;
    }
