.box {
    position: relative;
    padding: 100px 40px 60px;
    background-color: #b02230;
    height: 100%;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s;
}

.box:hover:before {
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 0.5s;
}

.box h2 {
    position: absolute;
    left: 40px;
    top: 60px;
    font-size: 4em;
    font-weight: 800;
    z-index: 1;
    opacity: 0.5;
    color: #fff;
    transition: 0.5s;
}

.box:hover h2 {
    opacity: 1;
    color: #b02230;
    transform: translateY(-40px);
}

.box h3 {
    position: relative;
    font-size: 1.5em;
    font-weight: 800;
    z-index: 2;
    color: #fff;
    transition: 0.5s;
}


.box p {
    position: relative;
    z-index: 2;
    color: #fff;
    transition: 0.5s;
}

.box:hover h3,
.box:hover p {
    color: #b02230;
}


/* BACKGROUND MOVE */
.button-background-move {
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 13px 20px 13px;
    outline: 0;
    border: 1px solid black;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    color:#fff;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-background-move:after {
    content: "";
    background-color: #b02230;
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
}
.button-background-move:hover{
    color: #fff;
}

.button-background-move:hover:after {
    top: 0px;
    left: 0px;
}

@media (min-width: 768px) {
    .button-background-move {
        padding: 13px 50px 13px;
    }
}