.btn-flip {
    display: inline-block;
    width: 120px;
    height: 40px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-flip-inner {
    position: relative;
    width: 100%;
    height: 27px;
    overflow: hidden;
}

.btn-front,
.btn-back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
    backface-visibility: hidden;
    /* font-weight: 500 !important; */
    /* font-family: "Inter Tight", sans-serif !important; */
    /* font-size: 16px !important; */
    letter-spacing: -0.02em !important;
    line-height: 20px !important;
}

.btn-front {
    /* background: linear-gradient(45deg, #667eea, #764ba2); */
    transform: scaleY(1);
    transform-origin: top;
}

.btn-back {
    /* background: linear-gradient(45deg, #f093fb, #f5576c); */
    transform: scaleY(0);
    transform-origin: bottom;
}

.btn-flip:hover .btn-front {
    transform: scaleY(0);
}

.btn-flip:hover .btn-back {
    transform: scaleY(1);
}

@media only screen and (max-width: 324.99px) {
    .btn-flip {
        width: 55px;
    }
}

@media only screen and (max-width: 186.99px) {
    .manu-contact-flip-btn {
        display: none;
    }
}
