.elementor-widget-widget-flipbox2 {
    position: relative;
    height: 100%;
}

.flipbox2 {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    color: #fff;
    /*background-color: #4496e980;*/
    padding: 1.38889rem;
    transition: 400ms;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    min-height: 360px;

}

.flipbox2:after {
    content: '';
    background: rgba(22, 92, 162, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
}

.flipbox2 h2 {
    margin-bottom: 1.94444rem;
    text-transform: uppercase;
    /*transform: translateY(0);*/
    z-index: 90;
    display: flex;
    flex-flow: column;
    align-items: center;
    color: #fff;
    font-weight: 400;
    position: relative;

}

.flipbox2:hover h2 {
    /*transform: translateY(-75%);*/

}

.flipbox2 p {
    transform: scale(0);
    transform-origin: bottom;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.7s;
    z-index: 90;
    height:0;
}

.flipbox2:hover p {
    transform: scale(1);

    visibility: visible;
    overflow: visible;
    height: 100%;
}
