.blogCard { height: 100%; }
.blogCard .imageCont { overflow: hidden }
.blogCard .imageCont img {
    width: 100%;
    height: 212px;
    object-fit: cover;
    object-position: center;
}
.blogCard .textBox {
    background-color: #fff;
    padding: 16px 16px 24px 16px;
    transform: scaleY(0);
    transition: .5s opacity linear, .3s transform linear;
    transform-origin: center top;
    opacity: 0;
    height: 0;
    overflow: auto;
}
.blogCard .textBox .title {
    color: #00205B;
    font-family: "Noto Sans";
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.24px;
}
.blogCard .cardCta {
    color: #005199;
    font-family: "Noto Sans";
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 28px;
    padding: 4px 8px;
    border-radius: 99px;
    border: 1px solid #005199;
    display: block;
    width: fit-content;
}

/* CSS FOT M16 VARIATION */
.M16 .swiper-slide-active .blogCard .textBox { transform: scaleY(1); opacity: 1; height: initial; }

@media screen and (max-width: 800px) {
    .blogCard .textBox { opacity: 1; height: auto; transform: none; }
}