.wpcf7 br{
    display: none;
}
/* --------------------------------
 * HEADER CSS START HERE
 * ------------------------------- */
header#siteHeader .menu-item-has-children .sub-menu {
    max-height: 500px;
    overflow-y: auto;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #087bea #092238;
}

/* Chrome, Edge, Safari */
header#siteHeader .menu-item-has-children .sub-menu::-webkit-scrollbar {
    width: 6px;
}

header#siteHeader .menu-item-has-children .sub-menu::-webkit-scrollbar-track {
    background: #092238;
    border-radius: 10px;
}

header#siteHeader .menu-item-has-children .sub-menu::-webkit-scrollbar-thumb {
    background: #087bea;
    border-radius: 10px;
}

header#siteHeader .menu-item-has-children .sub-menu::-webkit-scrollbar-thumb:hover {
    background: #1590ff;
}
div#mobileMenu img.custom-logo {
    max-width: 130px;
}

/*================================
 *  MOBILE MENU CSS START FROM HERE 
 * =============================== */
.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 55px;
}

.mobile-menu-link {
    flex: 1;
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
}

.mobile-menu-toggle {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


/* Arrow */
.mobile-menu-arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-top: -6px;
}


/* Rotate arrow when submenu is open */
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-arrow {
    transform: rotate(225deg);
    margin-top: 6px;
}


/* Submenu */
.mobile-menu .submenu {
    list-style: none;
    padding: 0 0 10px 20px;
    margin: 0;
}

.mobile-menu .submenu li {
    border: 0;
}

.mobile-menu .submenu .mobile-menu-item-wrapper {
    min-height: auto;
}

.mobile-menu .submenu .mobile-menu-link {
    font-size: 15px;
    padding: 10px 0;
}
/* --------------------------------
 * FOOTER CSS START HERE
 * ------------------------------- */

footer .custom-logo-link img{max-width: 140px; margin-bottom: 20px}

.jasch-global-section{
	padding: 30px 0px; 
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */

.jasch-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #fff;

    border-radius: 50%;
    text-decoration: none;

    font-size: 29px;
    line-height: 1;

    z-index: 9999;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.jasch-whatsapp:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.05);

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.jasch-whatsapp:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.4);
    outline-offset: 4px;
}


/* Tablet */
@media (max-width: 991.98px) {

    .jasch-whatsapp {
        right: 20px;
        bottom: 20px;

        width: 54px;
        height: 54px;

        font-size: 28px;
    }

}


/* Mobile */
@media (max-width: 575.98px) {

    .jasch-whatsapp {
        right: 16px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        font-size: 27px;
    }

}


/* Small mobile */
@media (max-width: 380px) {

    .jasch-whatsapp {
        right: 14px;
        bottom: 16px;

        width: 48px;
        height: 48px;

        font-size: 25px;
    }

}