.ekit-template-content-header {
    display: none !important
}

.mlm-site-header,
.mlm-site-header * {
    box-sizing: border-box
}

.mlm-site-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    width: 100%;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, .94);
    box-shadow: -1px 4px 20px #c9c9c9;
    backdrop-filter: blur(18px);
    font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

.mlm-site-header.is-scrolled {
    border-color: rgba(8, 136, 167, .1);
    box-shadow: 0 4px 16px rgba(12, 55, 66, .08)
}

.mlm-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    min-height: 110px;
    margin: auto;
    padding: 0 16px
}

.mlm-site-header a {
    text-decoration: none
}

.mlm-site-header__brand img {
    display: block;
    width: 176px;
    max-width: 100%;
    height: auto
}

.mlm-site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto
}

.mlm-site-nav>a,
.mlm-site-nav__dropdown-toggle {
    position: relative;
    padding: 8px 0;
    border: 0 !important;
    background: transparent;
    color: #212529;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap
}

.mlm-site-nav>a:hover,
.mlm-site-nav__dropdown-toggle:hover {
    color: #0888a7 !important;
    background: transparent !important;
}

.mlm-site-nav__dropdown {
    position: relative
}

.mlm-site-nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
    width: 260px;
    margin-top: -10px;
    padding: 15px 0;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(12, 55, 66, .15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: .3s ease
}

.mlm-site-nav__dropdown.is-open .mlm-site-nav__dropdown-menu,
.mlm-site-nav__dropdown:hover .mlm-site-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(7px)
}

.mlm-site-nav__dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none
}

.mlm-site-nav__dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #212529;
    font-size: 15px;
    font-weight: 400
}

.mlm-site-nav__dropdown-menu a:hover {
    padding-left: 25px;
    background: rgba(23, 129, 153, .05);
    color: #0888a7
}

.mlm-site-header__contact {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    min-width: 280px;
    padding-left: 16px;
    border-left: 1px solid #ddd
}

.mlm-site-header__tabs {
    display: flex;
    gap: 8px
}

.mlm-site-header__tab {
    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 25px;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4
}

.mlm-site-header__tab.is-active {
    border-color: #d5d8dc;
    /* color: #0888a7 */
}

.mlm-site-header__phone {
    display: none;
    margin-top: 8px;
    padding: 8px 15px;
    border-radius: 25px;
    background: #0888a7;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500
}

.mlm-site-header__phone.is-active {
    display: block
}

.mlm-site-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 45px;
    height: 45px;
    margin-left: auto;
    padding: 11px;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    background: #fff;
    cursor: pointer
}

.mlm-site-header__toggle span {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #0a4d5c;
    transition: .16s ease
}

@media(max-width:1050px) {
    .mlm-site-header__contact {
        display: none
    }
}

@media(max-width:900px) {
    .mlm-site-header__inner {
        min-height: 78px
    }

    .mlm-site-header__brand img {
        width: 157px
    }

    .mlm-site-header__toggle {
        display: inline-flex
    }

    .mlm-site-header__toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .mlm-site-header__toggle.is-active span:nth-child(2) {
        opacity: 0
    }

    .mlm-site-header__toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

    .mlm-site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: grid;
        gap: 5px;
        margin: 0;
        padding: 15px;
        border: 1px solid #e9ecef;
        border-radius: 22px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 12px 32px rgba(12, 55, 66, .15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-7px);
        transition: .18s ease
    }

    .mlm-site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: none
    }

    .mlm-site-nav>a,
    .mlm-site-nav__dropdown-toggle {
        display: block;
        width: 100%;
        padding: 12px 14px;
        border-radius: 14px;
        text-align: left
    }

    .mlm-site-nav__dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 3px 0 0;
        padding: 6px;
        border-radius: 14px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none
    }

    .mlm-site-nav__dropdown:hover .mlm-site-nav__dropdown-menu {
        display: none
    }

    .mlm-site-nav__dropdown.is-open .mlm-site-nav__dropdown-menu {
        display: grid;
        transform: none
    }

    .mlm-site-nav__dropdown-menu a {
        padding: 10px 12px;
        border-radius: 10px;
        white-space: normal
    }
}