/* sticky button styling */
.book_consult_sticky {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 15px 50px;
    text-align: center;
    font-family: var(--poppinsLight);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    max-width: 501px;
    width: 100%;
    height: 80px;
    align-items: center;
    display: flex;
    justify-content: center;
}
/* sticky button styling end */

@media (max-width: 575px) {
    /* Keep the sticky consultation button responsive in the base stylesheet. */
    .book_consult_sticky {
        left: 20px;
        right: 20px;
        transform: none;
        bottom: 20px;
        padding: 15px 20px;
        font-size: 12px;
        height: auto;
        width: auto;
        max-width: none;
    }
}
