.filab-lp-header {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    pointer-events: none;
    color: #fff;
    font-family: var(--e-global-typography-cd740a4-font-family, "Inter"), "Inter", sans-serif;
    transition: color .25s ease;
}

body.admin-bar .filab-lp-header {
    top: 32px;
}

.filab-lp-header__inner,
.filab-lp-header__mobile {
    width: min(100% - 32px, 1220px);
    margin: 12px auto 0;
    pointer-events: auto;
}

.filab-lp-header__inner {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 8px 18px;
    transition: min-height .25s ease, background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.filab-lp-header.is-scrolled .filab-lp-header__inner {
    min-height: 62px;
    border-color: rgba(255, 255, 255, .12);
    background: rgba(7, 15, 36, .68);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.filab-lp-header.is-light.is-scrolled {
    color: #071b4a;
}

.filab-lp-header.is-light.is-scrolled .filab-lp-header__inner {
    border-color: rgba(7, 27, 74, .12);
    background: rgba(255, 255, 255, .78);
}

.filab-lp-header__brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.filab-lp-header__logo {
    width: auto;
    height: 45px;
    transition: height .25s ease, filter .25s ease;
}

.filab-lp-header.is-scrolled .filab-lp-header__logo {
    height: 34px;
}

.filab-lp-header.is-light.is-scrolled .filab-lp-header__logo {
    filter: brightness(0);
}

.filab-lp-header__service {
    overflow: hidden;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filab-lp-header.is-light.is-scrolled .filab-lp-header__service {
    color: rgba(7, 27, 74, .72);
}

.filab-lp-header__desktop {
    display: flex;
    align-items: center;
    gap: 14px;
}

.filab-lp-header__nav {
    display: flex;
    align-items: center;
    gap: 26px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.filab-lp-header.is-scrolled .filab-lp-header__nav {
    opacity: 1;
    pointer-events: auto;
}

.filab-lp-header__nav a {
    color: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.filab-lp-header__nav a:hover {
    color: #fb8127;
}

.filab-lp-header__phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    padding: 9px 20px;
    color: inherit;
    background: rgba(255, 255, 255, .06);
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease, padding .25s ease;
}

.filab-lp-header.is-light.is-scrolled .filab-lp-header__phone {
    border-color: rgba(7, 27, 74, .15);
    background: rgba(255, 255, 255, .42);
}

.filab-lp-header__phone span,
.filab-lp-header__phone strong {
    display: block;
}

.filab-lp-header__phone span {
    color: currentColor;
    opacity: .58;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.filab-lp-header__phone strong {
    font-size: 15px;
    line-height: 1.1;
}

.filab-lp-header__cta,
.filab-lp-header__mobile-cta {
    display: inline-flex;
    max-width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 0 20px;
    color: #fff;
    background: linear-gradient(90deg, #fb8127 0%, #c83d08 100%);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 14px 28px -18px rgba(251, 129, 39, .75);
}

.filab-lp-header__cta > span:first-child,
.filab-lp-header__mobile-cta > span:first-child {
    white-space: nowrap;
}

.filab-lp-header__cta br,
.filab-lp-header__mobile-cta br {
    display: none;
}

.filab-lp-header__cta:hover,
.filab-lp-header__cta:focus,
.filab-lp-header__mobile-cta:hover,
.filab-lp-header__mobile-cta:focus {
    color: #fff!important;
    background: linear-gradient(90deg, #fb8127 0%, #c83d08 100%);
    text-decoration: none;
}

.filab-lp-header__cta-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    background: currentColor;
    -webkit-mask: url('../assets/icons/icon-arrow-up-right.svg') center / contain no-repeat;
    mask: url('../assets/icons/icon-arrow-up-right.svg') center / contain no-repeat;
}

.filab-lp-header__cta {
    overflow: hidden;
    max-width: 0;
    padding-right: 0;
    padding-left: 0;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: max-width .25s ease, opacity .25s ease, padding .25s ease;
}

.filab-lp-header.is-scrolled .filab-lp-header__cta {
    max-width: 260px;
    padding-right: 20px;
    padding-left: 20px;
    opacity: 1;
    pointer-events: auto;
}

.filab-lp-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 999px;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.filab-lp-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
}

.filab-lp-header.is-menu-open .filab-lp-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.filab-lp-header.is-menu-open .filab-lp-header__toggle span:nth-child(2) {
    opacity: 0;
}

.filab-lp-header.is-menu-open .filab-lp-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.filab-lp-header__mobile {
    display: none;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 18px;
    background: rgba(7, 15, 36, .86);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.filab-lp-header.is-light.is-scrolled .filab-lp-header__mobile {
    border-color: rgba(7, 27, 74, .12);
    background: rgba(255, 255, 255, .9);
}

.filab-lp-header.is-menu-open .filab-lp-header__mobile {
    display: block;
}

.filab-lp-header__mobile-nav {
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
}

.filab-lp-header__mobile-nav a {
    color: inherit;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.filab-lp-header__mobile-cta {
    width: 100%;
}

header.elementor-location-header {
    height: 0!important;
}

@media (max-width: 1024px) {
    .filab-lp-header__nav {
        gap: 18px;
    }

    .filab-lp-header__phone {
        display: none;
    }
}

@media (max-width: 780px) {
    body.admin-bar .filab-lp-header {
        top: 46px;
    }

    .filab-lp-header__desktop {
        display: none;
    }

    .filab-lp-header__toggle {
        display: inline-flex;
    }

    .filab-lp-header__service {
        max-width: 190px;
        font-size: 13px;
    }

    .filab-lp-header__inner {
        min-height: 64px;
        background: rgba(7, 15, 36, .42);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }
}

@media (max-width: 480px) {
    .filab-lp-header__inner,
    .filab-lp-header__mobile {
        width: calc(100% - 20px);
    }

    .filab-lp-header__service {
        display: none;
    }

    .filab-lp-header__mobile-cta > span:first-child {
        white-space: normal;
    }
}
