.btna-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(228, 238, 232, .9);
    box-shadow: 0 8px 24px rgba(7, 24, 50, .045);
    backdrop-filter: blur(14px);
    transition: box-shadow .2s ease, background .2s ease;
}

    .btna-header.fixed {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 12px 30px rgba(7, 24, 50, .12);
    }

    .btna-header:before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 8% 0%, rgba(0, 107, 56, .08), transparent 24%), linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(248, 253, 250, .96));
        opacity: 0;
        transition: opacity .28s ease;
    }

    .btna-header:hover:before {
        opacity: 1;
    }

.btna-header-inner {
    position: relative;
    min-height: 98px;
    display: grid;
    grid-template-columns: 317px minmax(0, 1fr) 162px;
    align-items: end;
    column-gap: 22px;
    padding: 9px 0 10px;
}

.btna-brand {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    text-decoration: none;
    color: var(--btna-green);
}

.btna-brand-mark {
    position: relative;
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    transition: transform .24s ease, box-shadow .24s ease;
}

    .btna-brand-mark:after {
        content: "";
        position: absolute;
        inset: -5px;
        border-radius: inherit;
        border: 1px solid rgba(0, 107, 56, .2);
        opacity: 0;
        transform: scale(.9);
        transition: opacity .24s ease, transform .24s ease;
    }

.btna-brand:hover .btna-brand-mark {
    transform: translateY(-2px) rotate(-2deg);
    box-shadow: 0 12px 28px rgba(0, 107, 56, .16);
}

    .btna-brand:hover .btna-brand-mark:after {
        opacity: 1;
        transform: scale(1);
    }

.btna-brand img {
    width: 86px;
    height: 86px;
    max-height: none;
    display: block;
    border-radius: 50%;
    object-fit: contain;
}

.btna-brand-copy {
    display: grid;
    gap: 1px;
    text-transform: uppercase;
    line-height: 1.05;
    flex: 1 1 0;
}

    .btna-brand-copy span {
        color: #0A6128;
        font-family: 'Inter_24pt-Regular';
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .btna-brand-copy strong {
        color: #0A6128;
        font-family: Inter_24pt-ExtraBold;
        font-size: 17px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
    }

    .btna-brand-copy em {
        text-transform: none;
        color: #0C1A32;
        font-family: 'Inter_24pt-Regular';
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

.btna-nav {
    min-width: 0;
    white-space: nowrap;
}

.btna-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(13px, -1.45vw, 26px);
}

    .btna-menu-list a {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 2px;
        text-decoration: none;
        padding: 11px 0;
        transition: color .2s ease, transform .2s ease;
        color: #182F4D;
        font-family: Inter_24pt-Medium;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

        .btna-menu-list a:before {
            content: "";
            position: absolute;
            left: -8px;
            right: -8px;
            top: 50%;
            height: 30px;
            border-radius: 999px;
            background: rgba(0, 107, 56, .07);
            opacity: 0;
            transform: translateY(-50%) scale(.92);
            transition: opacity .2s ease, transform .2s ease;
            z-index: -1;
        }

        .btna-menu-list a:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 4px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--btna-green), #35a66c);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .2s ease;
        }

        .btna-menu-list a:hover,
        .btna-menu-list a:focus {
            color: var(--btna-green);
            transform: translateY(-1px);
        }

            .btna-menu-list a:hover:before,
            .btna-menu-list a:focus:before {
                opacity: 1;
                transform: translateY(-50%) scale(1);
            }

            .btna-menu-list a:hover:after,
            .btna-menu-list a:focus:after {
                transform: scaleX(1);
            }

        .btna-menu-list a i {
            margin-left: 0;
            font-size: 10px;
            color: #516178;
            transition: transform .2s ease, color .2s ease;
        }

.btna-has-submenu:hover > a i,
.btna-has-submenu:focus-within > a i {
    color: var(--btna-green);
    transform: rotate(180deg);
}

.btna-submenu {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    min-width: 255px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: rgba(255, 255, 255, .98);
    border: 1px solid #e1efe7;
    border-radius: 8px;
    box-shadow: 0 20px 42px rgba(7, 24, 50, .14);
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

    .btna-submenu:before {
        content: "";
        position: absolute;
        left: 50%;
        top: -6px;
        width: 12px;
        height: 12px;
        background: #fff;
        border-left: 1px solid #e1efe7;
        border-top: 1px solid #e1efe7;
        transform: translateX(-50%) rotate(45deg);
    }

    .btna-submenu li a {
        display: flex;
        width: 100%;
        padding: 11px 13px;
        color: #33435b;
        border-radius: 6px;
        font-size: 15px;
        line-height: 1.5;
        font-weight: normal;
        white-space: normal;
        font-family: 'Inter_24pt-Medium';
        border-bottom: 1px solid #e1efe7;
    }

    .btna-submenu li:last-child a {
        border-bottom: unset;
    }

    .btna-submenu li a:before,
    .btna-submenu li a:after {
        display: none;
    }

    .btna-submenu li a:hover {
        background: #f0faf5;
        color: var(--btna-green);
        transform: translateX(2px);
    }

.btna-header-tools {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btna-lang {
    display: flex;
    align-items: center;
    gap: 7px;
    position: absolute;
    top: 0;
    color: #182F4D;
    font-family: 'Inter_24pt-Medium';
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* 23.928px */
    text-transform: capitalize;
}

    .btna-lang i {
        color: #516178;
        font-size: 13px;
    }

    .btna-lang a {
        color: #526079;
        text-decoration: none;
        transition: color .2s ease;
    }

        .btna-lang a:hover {
            color: var(--btna-green);
        }

    .btna-lang span {
        color: #9aa5b3;
    }

.btna-donate-small {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 121px;
    min-height: 36px;
    padding: 0 15px;
    overflow: hidden;
    border-radius: 5px;
    background: linear-gradient(180deg, #0A6128 0%, #065636 100%);
    color: #fff !important;
    text-decoration: none;
    font-family: 'Inter_24pt-Medium';
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    box-shadow: 0 9px 20px rgba(0, 107, 56, .22);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    margin-top: 8px;
}

    .btna-donate-small:before {
        content: "";
        position: absolute;
        inset: -40% auto -40% -55%;
        width: 45%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
        transform: skewX(-18deg);
        transition: left .45s ease;
    }

    .btna-donate-small i,
    .btna-donate-small span {
        position: relative;
    }

    .btna-donate-small i {
        font-size: 13px;
    }

    .btna-donate-small:hover {
        background: #005d31;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 14px 26px rgba(0, 107, 56, .28);
    }

        .btna-donate-small:hover:before {
            left: 112%;
        }

.btna-menu-button {
    display: none;
    position: relative;
    border: 0;
    background: var(--btna-green);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    box-shadow: 0 9px 18px rgba(0, 107, 56, .18);
}

    .btna-menu-button span {
        position: absolute;
        left: 11px;
        width: 20px;
        height: 2px;
        border-radius: 99px;
        background: #fff;
        transition: transform .22s ease, opacity .18s ease, top .22s ease;
    }

        .btna-menu-button span:nth-child(1) {
            top: 13px;
        }

        .btna-menu-button span:nth-child(2) {
            top: 20px;
        }

        .btna-menu-button span:nth-child(3) {
            top: 27px;
        }

    .btna-menu-button.is-open span:nth-child(1) {
        top: 20px;
        transform: rotate(45deg);
    }

    .btna-menu-button.is-open span:nth-child(2) {
        opacity: 0;
    }

    .btna-menu-button.is-open span:nth-child(3) {
        top: 20px;
        transform: rotate(-45deg);
    }

@media (max-width: 1180px) {
    .btna-header-inner {
        grid-template-columns: 232px minmax(0, 1fr) 148px;
        column-gap: 16px;
    }

    .btna-brand-mark {
        flex-basis: 62px;
        width: 62px;
        height: 62px;
    }

    .btna-brand img {
        width: 55px;
        height: 55px;
    }

    .btna-brand-copy strong {
        font-size: 13px;
    }

    .btna-menu-list {
        gap: 16px;
    }

        .btna-menu-list a {
            font-size: 16px;
        }
}

@media (max-width: 1050px) {
    .btna-header-inner {
        grid-template-columns: minmax(0, 1fr) auto auto;
        min-height: 80px;
        align-items: center;
        padding: 3px 0;
    }

    .btna-brand {
        gap: 8px;
    }

    .btna-brand-mark {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
    }

    .btna-brand img {
        width: 51px;
        height: 51px;
    }

    .btna-header-tools {
        justify-content: center;
        padding-top: 0;
    }

        .btna-header-tools .btna-lang {
            display: none;
        }

    .btna-menu-button {
        display: block;
        justify-self: end;
    }

    .btna-header-tools.none .btna-lang {
        display: block !important;
        position: relative !important;
    }

    .btna-lang i {
        font-size: 14px;
        margin-right: 2px;
    }

    .btna-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 1px);
        display: block;
        max-height: min(75vh, 560px);
        overflow-y: auto;
        padding: 0 10px;
        background: rgba(255, 255, 255, .98);
        border: 1px solid #e1efe7;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 18px 40px rgba(7, 24, 50, .12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

        .btna-nav.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

    .btna-header-tools.none {
        display: flex !important;
        flex-direction: unset;
        justify-content: space-between;
        border-top: 1px solid #edf3ef;
        padding-top: 7px;
        padding-bottom: 7px;
    }

        .btna-header-tools.none .btna-donate-small {
            margin: 0;
            padding: 0 9px;
        }

    .btna-lang span {
        padding: 0 5px;
    }

    .btna-menu-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

        .btna-menu-list li {
            width: 100%;
        }

        .btna-menu-list a {
            display: flex;
            width: 100%;
            justify-content: space-between;
            padding: 13px 10px;
            border-bottom: 1px solid #edf3ef;
            transform: none;
        }

            .btna-menu-list a:before,
            .btna-menu-list a:after {
                display: none;
            }

    .btna-submenu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        padding: 0 0 0 12px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
    }

        .btna-submenu:before {
            display: none;
        }

    .btna-has-submenu.is-submenu-open .btna-submenu {
        display: block;
        transform: none;
    }

    .btna-has-submenu.is-submenu-open > a {
        color: var(--btna-green);
    }

        .btna-has-submenu.is-submenu-open > a i {
            color: var(--btna-green);
            transform: rotate(180deg);
        }

    .btna-submenu li a {
        padding: 10px 12px;
        background: #f6fbf8;
        border-bottom-color: #e7f1eb;
    }
}

@media (max-width: 991px) {
    body.backer {
        overflow: hidden;
    }

        body.backer::before {
            content: "";
            position: fixed;
            inset: 0;
            background: rgba(8, 22, 18, 0.58);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 5;
            opacity: 1;
            pointer-events: auto;
        }

    .btna-menu-button {
        z-index: 1001;
    }

    .btna-nav {
        z-index: 1000;
    }
}

@media (max-width: 820px) {
    .btna-header-inner {
        grid-template-columns: 1fr 42px;
        min-height: 65px;
    }

    .btna-brand-mark {
        flex-basis: 61px;
        width: 61px;
        height: 61px;
    }

    .btna-brand img {
        width: 61px;
        height: 61px;
    }

    .btna-brand-copy span {
        font-size: 11px;
    }

    .btna-brand-copy strong {
        font-size: 14px;
    }

    .btna-brand-copy em {
        font-size: 11px;
    }

    .btna-header-tools {
        display: none;
    }

    .btna-menu-button {
        grid-column: 2;
    }
}

@media (max-width: 430px) {
    .btna-brand-copy {
        max-width: 175px;
    }

        .btna-brand-copy strong {
            line-height: 1.12;
        }
}