.flip-box-card {
    position: relative;
    height: 380px;
    perspective: 500px;
}

.flip-box-content {
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 1s;
    transform-style: preserve-3d;
}

.flip-box-card:hover .flip-box-content {
    transform: rotateY(180deg);
    transition: transform 0.5s;
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    height: 100%;
    width: 100%;
    background: white;
    text-align: center;
    border-radius: 5px;
    backface-visibility: hidden;
}

.flip-box-back {
    background: #03446A;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    padding: 30px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}

.flip-box-front {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flip-box-front img {
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

h2.easy-flip-box-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #ffffff;
}

p.easy-flip-box-desc {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #ffffff;
}

.inner-content a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    padding: 15px 30px;
    margin-top: 25px;
    background: #03446A;
    transition: all 0.4s ease 0s;
    position: relative;
    z-index: 1;
    border: 1px solid #fff;
}

.inner-content a.easy-flip-box-link:hover{
    color: #0F172A;
    border: 1px solid transparent;
}

.inner-content a:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #ffffff;
    z-index: -1;
    transition: all 0.4s ease 0s;
}

.inner-content a:hover:before {
    width: 100%;
}
.inner-content {
    padding: 30px;
    text-align: center;
}