.hbc-iq-wrap {
    display: flex;
    width: 100%;
}

.hbc-iq-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background: #ff7900;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    text-decoration: none;
    border: none;
    transition: color 0.4s;
    z-index: 0;
}

.hbc-iq-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #e56c00;
    border-radius: inherit;
    transition: width 0.4s ease;
    z-index: -1;
}

.hbc-iq-btn:hover::before {
    width: 100%;
}

.hbc-iq-btn-text {
    position: relative;
    z-index: 1;
}
