#callnowbutton{
    display:none;
}


.fa_callBtn_menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    bottom: 50px;
    right: 50px;
    z-index: 999;
}

.fa_callBtn_menu .menu-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #4682b4;
    border: none;
    color: white;
    font-size: 7px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s;
    z-index:99999;
}

.fa_callBtn_menu .menu-item:before{
    content: '';
    max-width: 100%;
    background-size: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
}

.fa_callBtn_menu .menu-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #4682b4;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
    transform: translateY(0px);
}

.fa_callBtn_menu.open .menu-item {
    opacity: 1;
    pointer-events: auto;
}

.fa_callBtn_menu.open .menu-item:nth-child(1) { transform: translateY(-40px); }

.fa_callBtn_menu.open .menu-item:nth-child(2) { transform: translateY(-20px); }



@media screen and (max-width: 500px){
    
    .fa_callBtn_menu .menu-button {
        width: 70px;
        height: 70px;
    }
    
    .fa_callBtn_menu {
        bottom: 30px;
        right: 30px;
    }
    

    #callnowbutton:before{
        content: '';
        max-width: 100%;
        background-size: 30px;
        height: 30px;
        display: inline-block;
        vertical-align: middle;
        width: 30px;
        margin-left: 7px;
    }
    #callnowbutton {
        display: block;
        position: fixed;
        margin-bottom: 0;
        margin-right: 0;
        text-decoration: none;
        z-index: 2147483647;
        width: 95%;
        right: 2.5%;
        bottom: 0.5%;
        padding: 0.6rem 0;
        border-radius: 1rem;
        text-align: center;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        overflow: hidden;
        background: #007612;
        text-shadow: 0 1px 0 rgb(0 0 0 / 18%);
    }

}