
.card .btn {
    width: 100%;
    display: block;
    color: unset;
    font-size: 14px;
}
.card {
    margin-bottom: 7px;
    border: none;
}
.-bottom-\[9px\] {
    bottom: -9px;
}
.p-20px {
    padding: 20px;
}
.shadow-lg {
    box-shadow: 0px 0rem 1rem rgba(0, 0, 0, 0.175) !important;
}
.flip-card {
    background-color: transparent;
    width: 300px;
    height: 200px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner, .card-container-inner  {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

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

/* Position the front and back side */
.flip-card-front, .flip-card-back, .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}
.show-info:hover {
    background-color: rgb(162, 162, 162);
    border-color: rgb(91, 91, 91);
}

/* Style the front side (fallback if image is missing) */
