.elementor-2230 .elementor-element.elementor-element-23b4ad29{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-2230 .elementor-element.elementor-element-23b4ad29{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-6c8ab869 */a {
    color: #222;
    text-decoration: none;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 80px;
}

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
    transition:
        transform 0.28s ease,
        box-shadow 0.2s ease;
}

#site-header.hide {
    transform: translateY(-100%);
}

#site-header.elev {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.header-grid {
    display: grid;
    grid-template-columns: 10% 80% 10%;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    width: 140px;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 100px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: inline-block;
    font-size: 20px;
    height: 80px;
    line-height: 80px;
}

.main-nav a:hover,
.main-nav li:focus-within > a {
    color: #15a8dc;
}

.mobile-submenu {
    display: none !important;
}

.global {
    justify-self: end;
    position: relative;
}

.global-toggle {
    border: 1px solid #15a8dc;
    font-size: 14px;
    font-weight: 400;
    color: #15a8dc;
    background: #fff;
    width: 80px;
    height: 40px;
    padding: 0 14px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.global-toggle .arrow {
    position: relative;
    width: 12px;
    height: 12px;
    display: inline-block;
}

.global-toggle .arrow::before,
.global-toggle .arrow::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 8px;
    background: #15a8dc;
    top: 2px;
}

.global-toggle .arrow::before {
    left: 3px;
    transform: rotate(-45deg);
}

.global-toggle .arrow::after {
    right: 3px;
    transform: rotate(45deg);
}

.global-toggle[aria-expanded="true"] .arrow::before {
    transform: rotate(45deg);
    top: 2px;
}

.global-toggle[aria-expanded="true"] .arrow::after {
    transform: rotate(-45deg);
    top: 2px;
}

.global-dropdown {
    position: absolute;
    right: 0;
    top: 50px;
    background: #fff;
    border: 1px solid #e6e9ee;
    border-radius: 6px;
    min-width: 80px;
    list-style: none;
    margin: 0;
    display: none;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.global-dropdown.open {
    display: block;
}

.global-dropdown li a {
    display: block;
    padding: 6px 0;
    text-align: center;
    font-size: 14px;
    color: #222;
}

.global-dropdown li a:hover {
    background: #f5f7f9;
    color: #15a8dc;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    justify-self: end;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #222;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

#mega-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 900;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        visibility 0.5s ease;
}

#mega-menu.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

#mega-menu .mega-col {
    position: absolute;
    top: 10px;
    width: 160px;
    text-align: left;
    padding: 10px 0;
    border-radius: 10px;
    transition: background-color 0.18s ease;
}

#mega-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mega-menu li a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
}

#mega-menu li a:hover {
    color: #15a8dc;
}

@media (max-width: 1440px) {
    .container {
        padding: 0 20px;
    }

    .header-grid {
        grid-template-columns: auto 1fr auto auto;
    }

    .logo a {
        width: 120px;
    }

    .global-toggle {
        width: 80px;
        height: 36px;
    }

    .hamburger {
        display: flex;
        order: 3;
        margin: 0 0 0 10px;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        order: 4;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav > ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .main-nav > ul > li {
        border-bottom: 1px solid #eee;
    }

    .main-nav > ul > li > a {
        height: auto;
        line-height: normal;
        padding: 16px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav > ul > li > a::after {
        content: "";
        width: 10px;
        height: 10px;
        border-right: 1px solid #999;
        border-bottom: 1px solid #999;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }

    .main-nav > ul > li.open > a::after {
        transform: rotate(-135deg);
    }

    .mobile-submenu {
        display: none !important;
        padding-left: 16px;
        padding-bottom: 8px;
    }

    .main-nav > ul > li.open .mobile-submenu {
        display: block !important;
    }

    .mobile-submenu li a {
        padding-bottom: 20px;
        display: block;
    }

    .mobile-submenu li a:hover {
        color: #15a8dc;
    }

    #mega-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }
}/* End custom CSS */