.fw-services-mega {
    position: fixed;
    z-index: 999999;
width: auto;
max-width: calc(100vw - 40px);
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
       
}

.fw-services-mega.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0);
}



.fw-services-mega__inner {
    display: grid;
}
.fw-services-mega__inner.has-children,
.fw-services-mega__inner.has-areas {
    min-height: 480px;
}

.fw-services-mega__inner.no-children.no-areas {
    min-height: 0;
}
.fw-services-mega__services {
    min-width: 0;
    border-right: 1px solid #e8e8e8;
}

.fw-services-mega__service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 12px 22px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.fw-services-mega__service:hover,
.fw-services-mega__service.is-active {
    background: #20252c;
    color: #fff;
}

.fw-services-mega__arrow {
    flex: 0 0 auto;
    margin-left: 16px;
    font-size: 24px;
    line-height: 1;
}

.fw-services-mega__children {
    min-width: 0;
    padding: 14px 20px;
    border-right: 1px solid #e8e8e8;
}

.fw-services-mega__children-group {
    display: none;
}

.fw-services-mega__children-group.is-active {
    display: block;
}

.fw-services-mega__child {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 50px;
    padding: 14px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ededed;
    transition: color 0.2s ease;
}

.fw-services-mega__child:last-child {
    border-bottom: 0;
}

.fw-services-mega__child-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
}

.fw-services-mega__child-icon img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.fw-services-mega__child-title {
    min-width: 0;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
    color: #333;
}

.fw-services-mega__child:hover .fw-services-mega__child-title,
.fw-services-mega__child.is-active .fw-services-mega__child-title {
    color: #009de0;
}

.fw-services-mega__areas {
    min-width: 0;
    padding: 24px 30px;
}

.fw-services-mega__areas-group {
    display: none;
}

.fw-services-mega__areas-group.is-active {
    display: block;
}

.fw-services-mega__areas-title {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
}

.fw-services-mega__areas-line {
    width: 100%;
    height: 1px;
    margin: 15px 0 5px;
    background: #e5e5e5;
}

.fw-services-mega__area {
    border-bottom: 1px solid #ededed;
}

.fw-services-mega__area-main {
    display: flex;
    align-items: center;
    min-height: 54px;
    color: #075ca8;
    text-decoration: none;
}

.fw-services-mega__area-main:hover {
    color: #009de0;
}

.fw-services-mega__area-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 42px;
    width: 42px;
}

.fw-services-mega__area-icon img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.fw-services-mega__area-title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    text-transform: uppercase;
}

.fw-services-mega__area-arrow,
.fw-services-mega__area-toggle {
    flex: 0 0 auto;
    margin-left: 12px;
}

.fw-services-mega__area-arrow {
    font-size: 22px;
    line-height: 1;
}

.fw-services-mega__area-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.fw-services-mega__area.is-open .fw-services-mega__area-toggle {
    transform: rotate(90deg);
}

.fw-services-mega__area-children {
    display: none;
    padding: 0 0 12px 42px;
}

.fw-services-mega__area.is-open .fw-services-mega__area-children {
    display: block;
}

.fw-services-mega__area-children a {
    display: block;
    padding: 8px 0;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
    border-bottom: 1px solid #eee;
}

.fw-services-mega__area-children a:last-child {
    border-bottom: 0;
}

.fw-services-mega__area-children a:hover {
    color: #009de0;
}

.fw-services-mega__inner.no-children .fw-services-mega__children {
    display: none;
}

.fw-services-mega__inner.no-areas .fw-services-mega__areas {
    display: none;
}



.fw-services-mega__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    min-height: 105px;
    padding: 20px 34px;
    background: #f7faff;
    border-top: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.fw-services-mega__footer-info {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.fw-services-mega__footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    color: #009de0;
}

.fw-services-mega__footer-title {
    margin-bottom: 5px;
    color: #075ca8;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.fw-services-mega__footer-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.fw-services-mega__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 190px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 4px;
    background: #009de0;
    color: #fff !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.fw-services-mega__contact:hover {
    color: #fff !important;
    opacity: 0.85;
}


@media (min-width: 1025px) {

    .elementor-nav-menu--main .menu-item-21 > .sub-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

}

@media (max-width: 1024px) {

    .fw-services-mega {
        display: none !important;
    }

}