:root {
    --btna-green: #0A6128;
    --btna-green-2: #0A6128;
    --btna-dark: #071832;
    --btna-muted: #536174;
    --btna-soft: #f4faf6;
    --btna-border: #cfe2d5;
}

.btna-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.btna-header,
.btna-header * {
    box-sizing: border-box;
}

.btna-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #edf2ee;
    box-shadow: 0 2px 12px rgba(7, 24, 50, .025);
}

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

.btna-brand {
    align-self: center;
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .btna-brand img {
        width: 224px;
        height: auto;
        max-height: 74px;
        object-fit: contain;
        object-position: left center;
        display: block;
    }

.btna-nav {
    min-width: 0;
    white-space: nowrap;
    padding-bottom: 17px;
}

.btna-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 27px;
}

    .btna-menu-list a {
        position: relative;
        color: #33435b;
        font-size: 14px;
        line-height: 1;
        font-weight: 800;
        text-decoration: none;
        padding: 10px 0;
    }

        .btna-menu-list a:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            background: var(--btna-green);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .18s ease;
        }

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

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

    .btna-menu-list > li {
        position: relative;
    }

    .btna-menu-list a i {
        margin-left: 6px;
        font-size: 10px;
    }

.btna-submenu {
    position: absolute;
    left: 50%;
    top: 100%;
    min-width: 210px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e5efe8;
    border-radius: 6px;
    box-shadow: 0 16px 35px rgba(7, 24, 50, .12);
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.btna-has-submenu:hover .btna-submenu,
.btna-has-submenu:focus-within .btna-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.btna-submenu li a {
    display: block;
    padding: 11px 16px;
    color: #33435b;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
    white-space: normal;
}

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

    .btna-submenu li a:hover {
        background: #f3faf6;
        color: var(--btna-green);
    }

.btna-header-tools {
}

.btna-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #526079;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

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

    .btna-lang a {
        color: #526079;
        text-decoration: none;
    }

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

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

.btna-donate-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 13px;
    background: var(--btna-green);
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 107, 56, .18);
}

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

    .btna-donate-small:hover {
        background: #00572f;
        color: #fff !important;
    }

.btna-menu-button {
    display: none;
    border: 0;
    background: var(--btna-green);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 5px;
}

.btna-dot-pattern {
    position: absolute;
    left: 0;
    top: 86px;
    width: 56px;
    height: 74px;
    opacity: .38;
    background-image: radial-gradient(var(--btna-green) 2px, transparent 2px);
    background-size: 18px 18px;
}

.btna-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 54px;
    padding: 0 34px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 800;
    border: 2px solid transparent;
}

.btna-btn-primary {
    background: var(--btna-green);
    color: #fff !important;
}

.btna-btn-outline {
    color: var(--btna-green) !important;
    border-color: var(--btna-green);
    background: #fff;
}

.btna-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.btna-hero-pagination {
    bottom: 18px !important;
    z-index: 3;
}

    .btna-hero-pagination .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        background: #fff;
        opacity: .72;
    }

    .btna-hero-pagination .swiper-pagination-bullet-active {
        background: var(--btna-green);
        opacity: 1;
    }

.btna-stats {
    background: #fff;
    padding: 18px 0 54px;
}

.btna-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: center;
}

.btna-stats article {
    display: grid;
    grid-template-columns: 95px 1fr;
    column-gap: 13px;
    align-items: center;
    min-width: 0;
}

.btna-stats span {
    grid-row: 1 / span 2;
    width: 94px;
    height: 94px;
    border: 3px solid var(--btna-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--btna-green);
    font-size: 50px;
    line-height: 1;
}

    .btna-stats span svg {
        width: 54px;
        height: 54px;
        fill: none;
        stroke: currentColor;
        stroke-width: 4.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.btna-stat-cert svg path:last-child {
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.5;
}

.btna-stats strong {
    letter-spacing: 0;
    color: #0A6128;
    font-family: 'Inter_24pt-Bold';
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.btna-stats p {
    margin: 3px 0 0;
    color: #1E1E1E;
    font-family: 'Inter_24pt-Regular';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 20.676px */
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

p.count-cer-btn {
    letter-spacing: 0;
    color: #0A6128;
    font-family: 'Inter_24pt-Bold';
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.btna-about {
    padding: 0;
    background: #fff;
}

.btna-about-grid {
    display: grid;
    grid-template-columns: 40.8% 40.9% 13.2%;
    gap: 34px;
    align-items: start;
}

.btna-eyebrow {
    display: block;
    text-transform: uppercase;
    margin: 6px 0 12px;
    color: #0A6128;
    font-family: 'Inter_24pt-Medium';
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btna-about h2,
.btna-location-copy h2 {
    margin: 0;
    letter-spacing: 0;
    color: #061531;
    font-family: 'Inter_24pt-Bold';
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.btna-about-copy > p,
.btna-location-copy p {
    max-width: 560px;
    margin: 12px 0 8px;
    color: #1E1E1E;
    font-family: 'Inter_24pt-Regular';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* 20.676px */
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.btna-about blockquote {
    min-height: 67px;
    margin: 0 0 13px;
    padding: 9px 20px;
    border-radius: 9px;
    background: #F0F1F0;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #1E1E1E;
    font-family: 'Inter_24pt-Regular';
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 137.839%;
    /* 20.676px */
}

    .btna-about blockquote i {
        flex: 0 0 auto;
        color: var(--btna-green);
        font-size: 34px;
        margin: 0;
    }

    .btna-about blockquote span {
        display: block;
        font-size: 16px;
    }

.btna-about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0 0 7px;
}

    .btna-about-values div,
    .btna-location-points div {
        display: grid;
        grid-template-columns: 54px 1fr;
        column-gap: 10px;
        align-items: center;
    }

    .btna-about-values i,
    .btna-location-points i {
        grid-row: 1 / span 2;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, #0A6128 0%, #065636 100%);
        color: #fff;
        font-size: 29px;
    }

    .btna-about-values strong,
    .btna-location-points strong {
        color: #1E1E1E;
        font-family: 'Inter_24pt-Bold';
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 137.839%;
        /* 20.676px */
        text-transform: capitalize;
    }

    .btna-about-values span,
    .btna-location-points span {
        color: #1E1E1E;
        font-family: 'Inter_24pt-Regular';
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 145%;
        /* 17.919px */
    }

.btna-pill-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    text-decoration: none;
    color: #FFF;
    font-family: 'Inter_24pt-Medium';
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 137.839%;
    /* 20.676px */
    width: max-content;
    height: 37px;
    border-radius: 30px;
    background: linear-gradient(180deg, #0A6128 0%, #065636 100%);
}

.btna-about-visual {
    position: relative;
    min-height: 392px;
    padding-top: 0;
}

.btna-about-main {
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    display: block;
    width: 482px;
    height: 354px;
}

.btna-about-small {
    position: absolute;
    right: -14px;
    bottom: -44px;
    width: 313px;
    height: 186px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    border: 3px solid #FFF;
}

.btna-about-card {
    color: #fff;
}

    .btna-about-card img {
        width: 163px;
        height: 163px;
        object-fit: contain;
        border-radius: 50%;
        background: #fff;
        justify-self: center;
    }

    .btna-about-card div {
        width: 100%;
        min-height: 251px;
        padding: 34px 18px 24px;
        border-radius: 15px;
        background: linear-gradient(180deg, #0A6128 0%, #065636 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
        text-align: center;
        font-family: 'Inter_24pt-Medium';
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 151.738%;
        /* 27.313px */
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

.btna-card-hand {
    position: relative;
    z-index: 1;
    justify-self: center;
    width: 58px;
    height: 58px;
    margin-top: -82px;
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btna-about {
    position: relative;
    overflow: hidden;
    padding: 18px 0 15px;
}

    .btna-about:before {
        content: "";
        position: absolute;
        left: -120px;
        top: 18px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(10, 97, 40, .08), rgba(10, 97, 40, 0) 68%);
        pointer-events: none;
    }

.btna-about-copy {
    position: relative;
    z-index: 1;
}

.btna-about .btna-eyebrow {
    position: relative;
    width: max-content;
    padding-left: 26px;
    font-weight: 700;
    letter-spacing: .3px;
}

    .btna-about .btna-eyebrow:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 18px;
        height: 2px;
        border-radius: 99px;
        background: var(--btna-green);
        transform: translateY(-50%);
    }

.btna-about h2 {
    transition: color .22s ease;
}

.btna-about-copy:hover h2 {
    color: #075c31;
}

.btna-about-copy > p {
    color: #344154;
    line-height: 1.62;
}

.btna-about blockquote {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10, 97, 40, .08);
    background: linear-gradient(135deg, #f4f8f5, #eef5f1);
    box-shadow: 0 10px 24px rgba(7, 24, 50, .055);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

    .btna-about blockquote:after {
        content: "";
        position: absolute;
        inset: 0 auto 0 -45%;
        width: 32%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
        transform: skewX(-18deg);
        transition: left .5s ease;
    }

    .btna-about blockquote i {
        position: relative;
        z-index: 1;
        transition: transform .24s ease, color .24s ease;
    }

    .btna-about blockquote span {
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

    .btna-about blockquote:hover {
        transform: translateY(-4px);
        border-color: rgba(10, 97, 40, .18);
        box-shadow: 0 18px 38px rgba(7, 24, 50, .1);
    }

        .btna-about blockquote:hover:after {
            left: 115%;
        }

        .btna-about blockquote:hover i {
            color: #0a7a41;
            transform: translateY(-2px) scale(1.08) rotate(-5deg);
        }

.btna-about-values div {
    position: relative;
    min-height: 76px;
    padding: 11px 12px 11px 0;
    border-radius: 12px;
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

    .btna-about-values div:hover {
        background: #f5fbf7;
        box-shadow: 0 14px 30px rgba(7, 24, 50, .08);
        transform: translateY(-4px);
    }

.btna-about-values i {
    box-shadow: 0 10px 22px rgba(10, 97, 40, .18);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btna-about-values div:hover i {
    background: linear-gradient(180deg, #0e7a42 0%, #006333 100%);
    box-shadow: 0 14px 28px rgba(10, 97, 40, .28);
    transform: scale(1.08) rotate(-4deg);
}

.btna-about-values strong {
    transition: color .22s ease;
}

.btna-about-values div:hover strong {
    color: var(--btna-green);
}

.btna-pill-link {
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

    .btna-pill-link:after {
        content: "\f061";
        font-family: "Font Awesome 7 Free", "Font Awesome 6 Free";
        font-weight: 900;
        margin-left: 0;
        max-width: 0;
        opacity: 0;
        transform: translateX(-6px);
        transition: max-width .22s ease, margin-left .22s ease, opacity .22s ease, transform .22s ease;
    }

    .btna-pill-link:hover,
    .btna-pill-link:focus {
        color: #fff;
        background: linear-gradient(180deg, #0d7a42 0%, #006333 100%);
        transform: translateY(-3px);
    }

        .btna-pill-link:hover:after,
        .btna-pill-link:focus:after {
            max-width: 18px;
            margin-left: 10px;
            opacity: 1;
            transform: translateX(0);
        }

.btna-about-visual {
    isolation: isolate;
}

.btna-about-main,
.btna-about-small {
    transition: transform .32s ease, box-shadow .32s ease, filter .32s ease;
}

.btna-about-main {
    box-shadow: 0 16px 34px rgba(7, 24, 50, .1);
}

.btna-about-visual:hover:before {
    opacity: .8;
    transform: translate(12px, -8px) scale(1.08);
}

.btna-about-visual:hover .btna-about-main {
    filter: saturate(1.07) contrast(1.02);
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(7, 24, 50, .16);
}

.btna-about-visual:hover .btna-about-small {
    filter: saturate(1.08);
    transform: translate(-8px, -8px) rotate(-1deg);
}

.btna-about-card {
    display: grid;
    gap: 16px;
    perspective: 900px;
}

    .btna-about-card img {
        box-shadow: 0 12px 26px rgba(7, 24, 50, .1);
        transition: transform .3s ease, box-shadow .3s ease;
    }

    .btna-about-card div {
        position: relative;
        overflow: hidden;
        transition: transform .28s ease, box-shadow .28s ease;
    }

        .btna-about-card div:before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 24% 8%, rgba(255, 255, 255, .2), transparent 30%), linear-gradient(160deg, rgba(255, 255, 255, .08), transparent 42%);
            opacity: .85;
            pointer-events: none;
        }

        .btna-about-card div svg {
            position: relative;
            z-index: 1;
            transition: transform .28s ease;
        }

    .btna-about-card:hover img {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 18px 36px rgba(7, 24, 50, .16);
    }

    .btna-about-card:hover div {
        transform: translateY(-5px) rotateX(2deg);
    }

        .btna-about-card:hover div svg {
            transform: translateY(4px) scale(1.08);
        }

.btna-programs {
    padding: 7px 0 42px;
    background: #fff;
}

.btna-center {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 30px;
}

.btna-section-head h2,
.btna-news-head h2 {
    margin: 0;
    color: #061531;
    text-align: center;
    font-family: 'Inter_24pt-Medium';
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.btna-programs .btna-eyebrow {
    margin-bottom: 8px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #0A6128;
    font-family: 'Inter_24pt-Medium';
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btna-programs .btna-section-head h2 {
}

.btna-section-head p {
    margin: 14px auto 0;
    color: #526071;
    font-size: 15px;
    line-height: normal;
    font-weight: 600;
}

.btna-programs .btna-section-head p {
    margin-top: 18px;
    color: #1E1E1E;
    text-align: center;
    font-family: 'Inter_24pt-Regular';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    /* 20.676px */
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.btna-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.btna-program-card {
    position: relative;
    display: flex;
    min-height: 520px;
    padding: 13px 12px 23px;
    overflow: hidden;
    flex-direction: column;
    border-radius: 20px;
    background: linear-gradient(180deg, #0A6128 0%, #065636 100%);
    color: #fff;
    transform: translateY(0);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

    .btna-program-card:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(145deg, rgba(255, 255, 255, .11), transparent 45%);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }

    .btna-program-card:hover {
        background: #006433;
        transform: translateY(-8px);
    }

        .btna-program-card:hover:before {
            opacity: 1;
        }

.btna-program-media {
    display: block;
    height: 245px;
    overflow: hidden;
    background: #0a5d35;
    border-radius: 20px;
}

    .btna-program-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: transform .45s ease, filter .35s ease;
    }

.btna-program-card:hover .btna-program-media img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.06);
}

.btna-program-body {
    display: flex;
    flex: 1;
    padding: 18px 22px 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .btna-program-body h3 {
        max-width: 430px;
        margin: 0 auto 20px;
        color: #FFF;
        text-align: center;
        font-family: 'Inter_24pt-SemiBold';
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 145%;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

    .btna-program-body p {
        max-width: 420px;
        margin: 0 auto 24px;
        color: #FFF;
        text-align: center;
        font-family: 'Inter_24pt-Regular';
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 137.839%;
        /* 20.676px */
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

.btna-program-link {
    display: inline-flex;
    min-width: 180px;
    min-height: 37px;
    margin-top: auto;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .1);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
    color: #061531;
    font-family: 'Inter_24pt-Medium';
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 137.839%;
    /* 20.676px */
}

    .btna-program-link:hover {
        background: #f4faf6;
        box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
        color: var(--btna-green) !important;
        transform: translateY(-2px);
    }

.btna-programs {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

    .btna-programs:before {
        content: "";
        position: absolute;
        right: -140px;
        top: 12px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(10, 97, 40, .08), rgba(10, 97, 40, 0) 68%);
        pointer-events: none;
        z-index: -1;
    }

    .btna-programs .btna-section-head {
        position: relative;
    }

    .btna-programs .btna-eyebrow {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        letter-spacing: .3px;
    }

        .btna-programs .btna-eyebrow:before,
        .btna-programs .btna-eyebrow:after {
            content: "";
            width: 28px;
            height: 2px;
            border-radius: 99px;
            background: rgba(10, 97, 40, .48);
        }

    .btna-programs .btna-section-head h2 {
        transition: color .22s ease;
    }

    .btna-programs .btna-section-head:hover h2 {
        color: #075c31;
    }

    .btna-programs .btna-section-head p {
        max-width: 780px;
    }

.btna-program-card {
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 16px 34px rgba(7, 24, 50, .08);
}

    .btna-program-card:after {
        content: "";
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
        opacity: 0;
        transform: scaleX(.7);
        transition: opacity .24s ease, transform .24s ease;
    }

    .btna-program-card:hover,
    .btna-program-card:focus-within {
        background: linear-gradient(180deg, #0d7440 0%, #005b31 100%);
        border-color: rgba(255, 255, 255, .28);
    }

        .btna-program-card:hover:after,
        .btna-program-card:focus-within:after {
            opacity: 1;
            transform: scaleX(1);
        }

.btna-program-media {
    position: relative;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .14);
}

    .btna-program-media:before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 61, 32, .28)), radial-gradient(circle at 20% 12%, rgba(255, 255, 255, .28), transparent 34%);
        opacity: .72;
        transition: opacity .28s ease;
        pointer-events: none;
    }

    .btna-program-media:after {
        content: "";
        position: absolute;
        inset: -45% auto -45% -55%;
        z-index: 2;
        width: 38%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
        transform: skewX(-18deg);
        transition: left .55s ease;
        pointer-events: none;
    }

.btna-program-card:hover .btna-program-media:before,
.btna-program-card:focus-within .btna-program-media:before {
    opacity: .42;
}

.btna-program-card:hover .btna-program-media:after,
.btna-program-card:focus-within .btna-program-media:after {
    left: 120%;
}

.btna-program-card:hover .btna-program-media img,
.btna-program-card:focus-within .btna-program-media img {
    filter: saturate(1.12) contrast(1.04);
    transform: scale(1.08);
}

.btna-program-body {
    position: relative;
    z-index: 1;
}

    .btna-program-body h3 {
        transition: transform .22s ease, text-shadow .22s ease;
    }

    .btna-program-body p {
        color: rgba(255, 255, 255, .9);
        transition: color .22s ease;
    }

.btna-program-card:hover .btna-program-body h3,
.btna-program-card:focus-within .btna-program-body h3 {
    transform: translateY(-2px);
    text-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}

.btna-program-card:hover .btna-program-body p,
.btna-program-card:focus-within .btna-program-body p {
    color: rgba(255, 255, 255, .96);
}

.btna-program-link {
    position: relative;
    overflow: hidden;
}

    .btna-program-link:after {
        content: "\f061";
        font-family: "Font Awesome 7 Free", "Font Awesome 6 Free";
        font-weight: 900;
        margin-left: 0;
        max-width: 0;
        opacity: 0;
        transform: translateX(-6px);
        transition: max-width .22s ease, margin-left .22s ease, opacity .22s ease, transform .22s ease;
    }

    .btna-program-link:hover:after,
    .btna-program-link:focus:after {
        max-width: 18px;
        margin-left: 10px;
        opacity: 1;
        transform: translateX(0);
    }

    .btna-program-link:focus-visible,
    .btna-program-media:focus-visible {
        outline: 3px solid rgba(255, 255, 255, .75);
        outline-offset: 4px;
    }

.btna-locations {
    padding: 18px 0 32px;
}

.btna-location-grid {
    display: grid;
    grid-template-columns: 34% 64%;
    gap: 24px;
    align-items: start;
}

.btna-location-copy {
    padding-top: 18px;
}

    .btna-location-copy .btna-pill-link {
        margin: 12px 0 20px;
    }

.btna-location-points {
    display: grid;
    gap: 9px;
}

.btna-map-card {
    height: 373px;
    border-radius: 26px;
    border: 1px solid #0A6128;
}

.btna-map {
    position: relative;
}

.img-decor-map {
    width: 100%;
    height: 371px;
    border-radius: 26px;
}

    .img-decor-map img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 26px;
    }

.btna-map .pin {
    position: absolute;
    color: var(--btna-green);
    font-size: 31px;
}

.pin-a {
    left: 29%;
    top: 34px;
}

.pin-b {
    left: 33%;
    top: 128px;
}

.pin-c {
    left: 30%;
    top: 200px;
}

.btna-country-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    position: relative;
    z-index: 1;
    width: 90%;
    margin: auto;
    margin-top: -87px;
}

    .btna-country-row article {
        padding: 16px 18px;
        border-radius: 11px;
        border: 0.5px solid #0A6128;
        background: #FFF;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    }

    .btna-country-row strong {
        margin-bottom: 9px;
        color: #061531;
        font-family: 'Inter_24pt-SemiBold';
        font-size: 19px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .btna-country-row p {
        margin: 0;
        color: #061531;
        font-family: 'Inter_24pt-Regular';
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 145%;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

    .btna-country-row a {
        color: #0A6128;
        font-family: 'Inter_24pt-Medium';
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 137.839%;
        /* 17.919px */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

.btna-locations {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 0px 0 35px;
}

.btna-location-copy {
    position: relative;
    z-index: 2;
}

    .btna-location-copy .btna-eyebrow {
        position: relative;
        width: max-content;
        max-width: 100%;
        padding-left: 26px;
        font-weight: 700;
        letter-spacing: .28px;
    }

        .btna-location-copy .btna-eyebrow:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 18px;
            height: 2px;
            border-radius: 99px;
            background: var(--btna-green);
            transform: translateY(-50%);
        }

    .btna-location-copy h2 {
        transition: color .22s ease;
    }

    .btna-location-copy:hover h2 {
        color: #075c31;
    }

    .btna-location-copy p {
        color: #344154;
        line-height: 1.5;
    }

.btna-location-points div {
    position: relative;
    min-height: 76px;
    padding: 11px 12px 11px 0;
    border-radius: 12px;
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

    .btna-location-points div:hover {
        background: #f5fbf7;
        box-shadow: 0 14px 30px rgba(7, 24, 50, .08);
        transform: translateY(-4px);
    }

.btna-location-points i {
    box-shadow: 0 10px 22px rgba(10, 97, 40, .18);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btna-location-points div:hover i {
    background: linear-gradient(180deg, #0e7a42 0%, #006333 100%);
    box-shadow: 0 14px 28px rgba(10, 97, 40, .28);
    transform: scale(1.08) rotate(-4deg);
}

.btna-location-points strong {
    transition: color .22s ease;
}

.btna-location-points div:hover strong {
    color: var(--btna-green);
}

.btna-map-card {
    position: relative;
    overflow: visible;
    background: #fff;
    box-shadow: 0 18px 42px rgba(7, 24, 50, .08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

    .btna-map-card:hover {
        border-color: rgba(10, 97, 40, .58);
        box-shadow: 0 26px 54px rgba(7, 24, 50, .13);
        transform: translateY(-5px);
    }

.btna-map {
    overflow: hidden;
    border-radius: 26px;
}

    .btna-map:after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 26px;
        background: radial-gradient(circle at 32% 32%, rgba(10, 97, 40, .13), transparent 26%), linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .2));
        pointer-events: none;
        opacity: .7;
        transition: opacity .28s ease;
    }

.img-decor-map img {
    object-fit: cover;
    transition: transform .42s ease, filter .42s ease;
}

.btna-map-card:hover .img-decor-map img {
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.035);
}

.btna-map-card:hover .btna-map:after {
    opacity: .45;
}

.btna-map .pin {
    z-index: 2;
    filter: drop-shadow(0 9px 12px rgba(10, 97, 40, .25));
    transition: transform .24s ease, color .24s ease;
}

    .btna-map .pin:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(10, 97, 40, .16);
        transform: translate(-50%, -50%) scale(.6);
        animation: btna-pin-pulse 2.2s ease-out infinite;
        z-index: -1;
    }

.btna-map .pin-b:before {
    animation-delay: .35s;
}

.btna-map .pin-c:before {
    animation-delay: .7s;
}

.btna-map-card:hover .pin {
    color: #0d7a42;
    transform: translateY(-4px) scale(1.08);
}

.btna-country-row article {
    position: relative;
    overflow: hidden;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

    .btna-country-row article:before {
        content: "";
        position: absolute;
        inset: 0 auto 0 -50%;
        width: 38%;
        background: linear-gradient(90deg, transparent, rgba(10, 97, 40, .08), transparent);
        transform: skewX(-18deg);
        transition: left .46s ease;
    }

    .btna-country-row article:hover {
        border-color: rgba(10, 97, 40, .62);
        box-shadow: 0 16px 32px rgba(7, 24, 50, .13);
        transform: translateY(-7px);
    }

        .btna-country-row article:hover:before {
            left: 120%;
        }

.btna-country-row strong,
.btna-country-row p,
.btna-country-row a {
    position: relative;
    z-index: 1;
}

    .btna-country-row strong svg {
        flex: 0 0 auto;
        border-radius: 4px;
        box-shadow: 0 4px 9px rgba(7, 24, 50, .12);
        transition: transform .22s ease;
    }

.btna-country-row article:hover strong {
    color: var(--btna-green);
}

    .btna-country-row article:hover strong svg {
        transform: translateY(-2px) scale(1.04);
    }

.btna-country-row a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

    .btna-country-row a:after {
        content: "\f061";
        font-family: "Font Awesome 7 Free", "Font Awesome 6 Free";
        font-weight: 900;
        margin-left: 0;
        max-width: 0;
        opacity: 0;
        transform: translateX(-6px);
        transition: max-width .22s ease, margin-left .22s ease, opacity .22s ease, transform .22s ease;
    }

    .btna-country-row a:hover,
    .btna-country-row a:focus {
        color: #005b31;
        transform: translateX(2px);
    }

        .btna-country-row a:hover:after,
        .btna-country-row a:focus:after {
            max-width: 16px;
            margin-left: 8px;
            opacity: 1;
            transform: translateX(0);
        }

    .btna-country-row a:focus-visible {
        outline: 3px solid rgba(10, 97, 40, .22);
        outline-offset: 4px;
        border-radius: 4px;
    }

@keyframes btna-pin-pulse {
    0% {
        opacity: .7;
        transform: translate(-50%, -50%) scale(.58);
    }

    70% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.55);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.55);
    }
}

.btna-donate-band {
    padding: 10px 0 26px;
}

.btna-donate-card {
    display: grid;
    grid-template-columns: 34% 66%;
    min-height: 292px;
    border-radius: 20px;
    overflow: hidden;
}

.btna-donate-copy {
    padding: 37px 38px;
    color: #fff;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(180deg, #0A6128 0%, #065636 100%);
}

    .btna-donate-copy h2 {
        color: #fff;
        margin: 0 0 16px;
        font-family: 'Inter_24pt-Bold';
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

    .btna-donate-copy p {
        color: #FFF;
        font-family: 'Inter_24pt-Regular';
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 137.839%;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

    .btna-donate-copy div {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 27px;
    }

.btna-btn-light {
    min-height: 36px;
    padding: 0 14px;
    background: #fff;
    color: #061531;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btna-btn-ghost {
    min-height: 36px;
    padding: 0 16px;
    background: #eef6f1;
    color: #061531;
    font-family: 'Inter_24pt-Medium';
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btna-donate-card img {
    width: 100%;
    height: 292px;
    object-fit: cover;
    display: block;
    border-radius: 0 20px 20px 0;
}

.btna-donate-band {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 0px 0 38px;
}

    .btna-donate-band:before {
        content: "";
        position: absolute;
        right: 6%;
        top: 50%;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(10, 97, 40, .08), rgba(10, 97, 40, 0) 68%);
        transform: translateY(-50%);
        pointer-events: none;
        z-index: -1;
    }

.btna-donate-card {
    position: relative;
    isolation: isolate;
    transition: transform .28s ease, box-shadow .28s ease;
}

.btna-donate-copy {
    position: relative;
    overflow: hidden;
}

    .btna-donate-copy:before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .2), transparent 30%), linear-gradient(145deg, rgba(255, 255, 255, .1), transparent 48%);
        opacity: .8;
        pointer-events: none;
    }

    .btna-donate-copy:after {
        content: "";
        position: absolute;
        inset: -40% auto -40% -55%;
        width: 38%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
        transform: skewX(-18deg);
        transition: left .55s ease;
        pointer-events: none;
    }

.btna-donate-card:hover .btna-donate-copy:after {
    left: 116%;
}

.btna-donate-copy h2,
.btna-donate-copy p,
.btna-donate-copy div {
    position: relative;
    z-index: 1;
}

.btna-donate-copy h2 {
    transition: transform .22s ease, text-shadow .22s ease;
}

.btna-donate-copy p {
    color: rgba(255, 255, 255, .92);
    transition: color .22s ease;
}

.btna-donate-card:hover .btna-donate-copy h2 {
    text-shadow: 0 10px 22px rgba(0, 0, 0, .16);
    transform: translateY(-2px);
}

.btna-donate-card:hover .btna-donate-copy p {
    color: #fff;
}

.btna-donate-card > img {
    transition: transform .42s ease, filter .42s ease;
}

.btna-donate-card:hover > img {
    filter: saturate(1.1) contrast(1.04);
    transform: scale(1.035);
}

.btna-donate-card .btna-btn {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
}

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

    .btna-donate-card .btna-btn:hover:before,
    .btna-donate-card .btna-btn:focus:before {
        left: 118%;
    }

    .btna-donate-card .btna-btn i,
    .btna-donate-card .btna-btn span {
        position: relative;
        z-index: 1;
    }

.btna-donate-card .btna-btn-light {
    color: #0a6128;
}

    .btna-donate-card .btna-btn-light:hover,
    .btna-donate-card .btna-btn-light:focus {
        background: #fff;
        color: #005b31;
        box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
        transform: translateY(-3px);
    }

    .btna-donate-card .btna-btn-light i {
        transition: transform .22s ease, color .22s ease;
    }

    .btna-donate-card .btna-btn-light:hover i,
    .btna-donate-card .btna-btn-light:focus i {
        color: #df3f53;
        transform: scale(1.18);
    }

.btna-donate-card .btna-btn-ghost:hover,
.btna-donate-card .btna-btn-ghost:focus {
    background: #dff3e8;
    color: #005b31;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
    transform: translateY(-3px);
}

.btna-donate-card .btna-btn-ghost:after {
    content: "\f061";
    position: relative;
    z-index: 1;
    font-family: "Font Awesome 7 Free", "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 0;
    max-width: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: max-width .22s ease, margin-left .22s ease, opacity .22s ease, transform .22s ease;
}

.btna-donate-card .btna-btn-ghost:hover:after,
.btna-donate-card .btna-btn-ghost:focus:after {
    max-width: 16px;
    margin-left: 8px;
    opacity: 1;
    transform: translateX(0);
}

.btna-donate-card .btna-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .72);
    outline-offset: 4px;
}

.btna-news {
    padding: 2px 0 52px;
}

.btna-news-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
}

    .btna-news-head h2 {
        color: #061531;
        font-family: 'Inter_24pt-Bold';
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .btna-news-head a {
        color: #061531;
        font-family: 'Inter_24pt-SemiBold';
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 137.839%;
        /* 20.676px */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

.btna-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 281px;
    gap: 18px;
    align-items: stretch;
}

    .btna-news-grid article {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
    }

        .btna-news-grid article img {
            width: 100%;
            height: 209px;
            object-fit: cover;
            display: block;
            border-radius: 10px;
            overflow: hidden;
        }

    .btna-news-grid h3 {
        color: #061531;
        font-family: 'Inter_24pt-Medium';
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        /* 24.811px */
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

    .btna-news-grid article span {
        color: #061531;
        font-family: 'Inter_24pt-SemiBold';
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 145%;
        /* 20.676px */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .btna-news-grid aside {
        padding: 34px 25px;
        color: #fff;
        background: linear-gradient(rgba(0, 95, 51, .94), rgba(0, 95, 51, .92)), url(/Uploads/images/Slideshow/slider.webp) center/cover;
        border-radius: 10px;
    }

        .btna-news-grid aside p {
            margin: 0;
            color: #FFF;
            font-family: 'Inter_24pt-Medium';
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 137.839%;
            /* 27.568px */
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            display: -webkit-box;
        }

        .btna-news-grid aside a {
            display: inline-flex;
            color: #fff !important;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-family: 'Inter_24pt-Medium';
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            /* 27.568px */
            width: 198px;
            height: 44px;
            border-radius: 5px;
            border: 1px solid #FFF;
        }

.btna-news {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 18px 0 62px;
}

    .btna-news:before {
        content: "";
        position: absolute;
        left: 7%;
        top: 24px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(10, 97, 40, .07), rgba(10, 97, 40, 0) 68%);
        pointer-events: none;
        z-index: -1;
    }

.btna-news-head h2 {
    position: relative;
    transition: color .22s ease;
}

.btna-news-head:hover h2 {
    color: #075c31;
}

    .btna-news-head:hover h2:after {
        width: 86px;
    }

.btna-news-head > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
    font-weight: 600;
    line-height: 137.839%;
    /* 20.676px */
}

    .btna-news-head > a:after {
        content: "\f061";
        font-family: "Font Awesome 7 Free", "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 13px;
        transition: transform .2s ease;
        text-decoration: none;
    }

    .btna-news-head > a:hover,
    .btna-news-head > a:focus {
        color: var(--btna-green);
        transform: translateX(2px);
    }

        .btna-news-head > a:hover:after,
        .btna-news-head > a:focus:after {
            transform: translateX(4px);
        }

.btna-news-grid article {
    position: relative;
    padding-bottom: 4px;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

    .btna-news-grid article:hover {
    }

        .btna-news-grid article:hover:before {
            left: 120%;
        }

    .btna-news-grid article img {
        transition: transform .4s ease, filter .4s ease;
    }

    .btna-news-grid article:hover img {
        transform: scale(1.05);
        border-radius: 10px;
    }

    .btna-news-grid h3, .btna-news-grid article > span {
        position: relative;
        z-index: 1;
    }

.btna-news-grid h3 {
    transition: color .2s ease;
}

.btna-news-grid article:hover h3 {
    color: var(--btna-green);
}

.btna-news-grid article > span {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
    color: #061531;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 137.839%;
    /* 20.676px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.btna-news-grid article > a > span:hover, .btna-news-grid article > a span:focus {
    color: var(--btna-green);
    transform: translateX(2px);
}

.btna-news-grid article > a:hover:after,
.btna-news-grid article > a:focus:after {
    max-width: 16px;
    margin-left: 8px;
    opacity: 1;
    transform: translateX(0);
}

.btna-news-grid aside {
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(7, 24, 50, .12);
    transition: transform .24s ease, box-shadow .24s ease;
}

    .btna-news-grid aside:before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .2), transparent 32%), linear-gradient(145deg, rgba(255, 255, 255, .1), transparent 48%);
        pointer-events: none;
    }

    .btna-news-grid aside:after {
        content: "";
        position: absolute;
        inset: -45% auto -45% -55%;
        width: 38%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
        transform: skewX(-18deg);
        transition: left .55s ease;
        pointer-events: none;
    }

    .btna-news-grid aside:hover {
        box-shadow: 0 24px 48px rgba(7, 24, 50, .18);
        transform: translateY(-7px);
    }

        .btna-news-grid aside:hover:after {
            left: 116%;
        }

    .btna-news-grid aside p,
    .btna-news-grid aside a {
        position: relative;
        z-index: 1;
    }

    .btna-news-grid aside p {
        transition: transform .22s ease, text-shadow .22s ease;
    }

    .btna-news-grid aside:hover p {
        text-shadow: 0 10px 22px rgba(0, 0, 0, .18);
        transform: translateY(-2px);
    }

    .btna-news-grid aside a {
        overflow: hidden;
        transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
    }

        .btna-news-grid aside a:after {
            content: "\f061";
            font-family: "Font Awesome 7 Free", "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 14px;
            margin-left: 0;
            max-width: 0;
            opacity: 0;
            transform: translateX(-6px);
            transition: max-width .22s ease, margin-left .22s ease, opacity .22s ease, transform .22s ease;
        }

        .btna-news-grid aside a:hover,
        .btna-news-grid aside a:focus {
            background: #fff;
            color: var(--btna-green) !important;
            box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
            transform: translateY(-3px);
        }

            .btna-news-grid aside a:hover:after,
            .btna-news-grid aside a:focus:after {
                max-width: 17px;
                margin-left: 9px;
                opacity: 1;
                transform: translateX(0);
            }

        .btna-news-grid article > a:focus-visible,
        .btna-news-head > a:focus-visible,
        .btna-news-grid aside a:focus-visible {
            outline: 3px solid rgba(10, 97, 40, .22);
            outline-offset: 4px;
            border-radius: 5px;
        }

.btna-news-grid article {
    isolation: isolate;
    padding: 0 0 18px;
    border-radius: 12px;
}

    .btna-news-grid article:after {
        content: "";
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 0;
        height: 3px;
        border-radius: 999px 999px 0 0;
        background: linear-gradient(90deg, transparent, #0a6128, #35a66c, transparent);
        opacity: 0;
        transform: scaleX(.35);
        transition: opacity .25s ease, transform .25s ease;
    }

    .btna-news-grid article:hover:after,
    .btna-news-grid article:focus-within:after {
        opacity: 1;
        transform: scaleX(1);
    }

    .btna-news-grid article img {
        position: relative;
        transform-origin: center;
    }

    .btna-news-grid article:hover img,
    .btna-news-grid article:focus-within img {
        border-radius: 10px;
    }

.item-img-news {
    overflow: hidden;
    border-radius: 10px;
}

.btna-news-grid article h3 {
    margin: 0;
    margin-top: 17px;
}

.btna-news-grid article h3 {
    transition: color .22s ease, transform .22s ease;
}

.btna-news-grid article:hover h3,
.btna-news-grid article:focus-within h3 {
}

.btna-news-grid article > a > span {
    display: block;
    padding: 7px 11px;
    background: rgba(10, 97, 40, 0);
    margin-top: 3px;
}

    .btna-news-grid article > a span:hover, .btna-news-grid article > a > span:focus {
        background: rgba(10, 97, 40, .08);
        text-decoration: none;
    }

        .btna-news-grid article > a span:hover:before,
        .btna-news-grid article > a span:focus:before {
            opacity: 1;
            transform: scale(1);
        }

.btna-stat-label {
}

.btna-about-quote {
    line-height: 1.38;
}

.btna-program-card {
    min-height: auto;
}

.btna-program-body {
}

.btna-country-row article {
    display: flex;
    min-height: 151px;
    flex-direction: column;
}

.btna-country-row strong {
    align-items: center;
}

.btna-country-name {
    line-height: 1.18;
}

.btna-country-row a {
    margin-top: 6px;
}

.btna-donate-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .btna-donate-copy div {
        margin-top: 24px;
    }

.btna-news-grid article {
    display: flex;
    flex-direction: column;
}

    .btna-news-grid article:nth-child(4) {
        display: none;
    }

    .btna-news-grid article > a > span {
        width: 100%;
    }

.btna-news-grid aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .btna-news-grid aside a {
        margin-top: 40px;
    }

.mk-footer.charity-footer {
    padding: 38px 0 36px;
    margin-top: 0;
    color: #fff;
}

    .mk-footer.charity-footer:before,
    .mk-footer-cta,
    .mk-footer-bottom-line,
    .mk-footer-hotline {
        display: none !important;
    }

.mk-footer .grid.wide {
    width: min(1130px, calc(100% - 40px));
}

.mk-footer-main {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr .8fr 1.1fr !important;
    gap: 52px !important;
    align-items: start;
}

.mk-footer-school h2 {
    margin: 0 0 20px !important;
    padding-left: 84px;
    min-height: 70px;
    background: url(/Design/img/BanTayNhanAi/Logo.jpg) no-repeat left center/70px auto;
}

    .mk-footer-school h2 span {
        display: block;
        color: #d8efe2 !important;
        font-size: 12px !important;
        text-transform: uppercase;
    }

    .mk-footer-school h2 strong {
        display: block;
        color: #fff !important;
        font-size: 18px !important;
        line-height: 1.15;
    }

        .mk-footer-school h2 strong:after,
        .mk-footer h3:after {
            display: none !important;
        }

.charity-footer-intro {
    color: rgba(255, 255, 255, .86) !important;
    font-size: 14px;
    line-height: 1.7;
}

.mk-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 7px;
}

    .mk-footer-contact-list li {
        color: #fff;
        font-size: 14px;
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

    .mk-footer-contact-list a,
    .mk-footer-contact-list span {
        color: rgba(255, 255, 255, .9) !important;
    }

.mk-footer h3 {
    color: #fff !important;
    font-size: 22px !important;
    margin: 0 0 18px !important;
    text-transform: uppercase;
}

.mk-footer-about p {
    color: rgba(255, 255, 255, .88) !important;
    line-height: 1.7;
}

.mk-footer-about a {
    display: none;
}

.mk-footer-nav ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.mk-footer-nav li a {
    color: rgba(255, 255, 255, .88) !important;
    font-size: 14px;
}

.charity-footer-donate {
    min-height: 155px;
    background: #fff !important;
    border-radius: 5px !important;
    color: #fff;
}

    .charity-footer-donate h3,
    .charity-footer-donate p,
    .charity-footer-donate a {
        display: none !important;
    }

.footer-menu-fixed,
.contact-footer,
.cd-top {
    display: none !important;
}

@media (max-width: 1050px) {
    .btna-header-inner {
        grid-template-columns: 230px 1fr 46px;
        min-height: 84px;
        align-items: center;
        padding: 8px 0;
    }

    .btna-brand img {
        width: 212px;
    }

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

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

    .btna-donate-small {
        min-height: 36px;
    }

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

    .btna-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        background: #fff;
        padding: 12px 16px;
        border: 1px solid #e2eee7;
        border-top: 0;
        box-shadow: 0 16px 35px rgba(0, 0, 0, .08);
    }

        .btna-nav.is-open {
            display: block;
        }

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

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

        .btna-menu-list a {
            display: block;
            width: 100%;
            padding: 13px 4px;
            border-bottom: 1px solid #edf3ef;
        }

        .btna-menu-list li:last-child a {
            border-bottom: 0;
        }

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

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

    .btna-has-submenu:hover .btna-submenu,
    .btna-has-submenu:focus-within .btna-submenu {
        display: block;
        transform: none;
    }

    .btna-submenu li a {
        padding: 10px 4px 10px 14px;
        font-size: 13px;
        background: #f8fbf9;
    }

    .btna-hero h1 {
        font-size: 44px;
    }

    .btna-stats-grid,
    .btna-program-grid {
        gap: 18px;
    }
}

@media (max-width: 820px) {
    .btna-container {
        width: min(100% - 26px, 1130px);
    }

    .btna-news {
        padding-bottom: 25px;
    }

    .btna-map-card {
        height: auto;
    }

    .btna-about-grid {
        gap: 8px;
    }

    .btna-locations {
        overflow: unset;
        isolation: auto;
    }

    .btna-donate-band {
        overflow: unset;
        isolation: auto;
        padding-bottom: 15px;
    }

    .img-decor-map {
        width: 100%;
        height: 210px;
        border-radius: 26px;
    }

    .btna-map .pin {
        font-size: 18px;
    }

    .pin-a {
        left: 19%;
        top: 8px;
    }

    .pin-b {
        left: 23%;
        top: 60px;
    }

    .pin-c {
        left: 23%;
        top: 107px;
    }

    .btna-header-inner {
        grid-template-columns: 1fr 42px;
        min-height: 72px;
    }

    .btna-country-row {
        margin-top: 0;
        width: 100%;
        padding: 12px;
    }

    .btna-brand img {
        width: 174px;
    }

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

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

    .btna-about-grid,
    .btna-location-grid,
    .btna-donate-card {
        grid-template-columns: 1fr;
        min-height: 100%;
    }

        .btna-donate-card img {
            height: 170px;
            border-radius: 0 0 20px 20px;
        }

    .btna-donate-copy {
        padding: 22px 12px;
        border-radius: 20px 20px 0 0;
    }

        .btna-donate-copy p {
            font-size: 15px;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            display: -webkit-box;
        }

        .btna-donate-copy div {
            margin-top: 10px;
        }

        .btna-donate-copy h2 {
            font-size: 21px;
            margin-bottom: 5px;
        }

    .btna-about h2,
    .btna-location-copy h2 {
        font-size: 22px;
    }

    .btna-about-main {
        width: 100%;
        height: auto;
    }

    .btna-about-visual {
        min-height: auto;
        margin-top: 15px;
    }

    .btna-about-copy > p,
    .btna-location-copy p {
        text-align: justify;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

    .btna-about blockquote {
        padding: 10px;
        gap: 5px;
    }

    .btna-about-values span,
    .btna-location-points span {
        font-size: 13px;
    }

    .btna-about-values {
        margin-bottom: 15px;
        gap: 6px;
    }

    .btna-dot-pattern {
        display: none;
    }

    .btna-about blockquote span {
        font-size: 15px;
    }

    .btna-about-values i,
    .btna-location-points i {
        grid-row: 1 / span 2;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        font-size: 18px;
    }

    .btna-about-values div,
    .btna-location-points div {
        display: grid;
        grid-template-columns: 39px 1fr;
        column-gap: 4px;
        align-items: center;
        padding: 0;
        min-height: 62px;
    }

    .btna-stats-grid,
    .btna-program-grid,
    .btna-country-row,
    .btna-news-grid,
    .mk-footer-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px;
    }

        .btna-news-grid article:nth-child(4) {
            display: block;
        }

        .btna-news-grid article h3 {
            font-size: 16px;
            margin-top: 8px;
        }

        .btna-country-row strong {
            font-size: 14px;
            gap: 4px;
        }

        .btna-news-grid article img {
            height: 150px;
        }

        .btna-news-grid article {
            padding-bottom: 0;
        }

        .btna-country-row article {
            padding: 8px;
            min-height: auto;
        }

    .btna-program-grid {
        grid-template-columns: 1fr !important;
    }

    .btna-country-row strong svg {
        width: 28px;
        height: auto;
    }

    .btna-stats {
        padding-bottom: 3px;
    }

    .btna-programs {
        padding: 10px 0 14px;
    }

    .btna-center {
        margin-bottom: 28px;
    }

    .btna-programs .btna-section-head h2 {
        font-size: 25px;
    }

    .btna-programs .btna-section-head p {
        font-size: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

    .btna-programs .btna-eyebrow {
        font-size: 14px;
    }

    .btna-program-card {
        min-height: auto;
        padding: 10px 10px 13px;
    }

    .btna-program-media {
        height: 220px;
    }

    .btna-program-body {
        padding: 15px 12px 0;
    }

        .btna-program-body h3 {
            font-size: 18px;
            margin-bottom: 0;
        }

        .btna-program-body p {
            font-size: 15px;
            margin-top: 9px;
            margin-bottom: 11px;
        }

    .btna-stats article {
        grid-template-columns: 39px 1fr;
    }

    .btna-stats span {
        width: 44px;
        height: 44px;
        font-size: 19px;
        border: 2px solid var(--btna-green);
    }

    p.count-cer-btn {
        font-size: 19px;
    }

    .btna-stats p.text-cer-item.btna-stat-label.btna-clamp-2 {
        font-size: 13px;
    }

    .btna-stats span svg {
        width: 31px;
        height: 31px;
        fill: none;
        stroke: currentColor;
        stroke-width: 3.2px;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .btna-stats strong {
        font-size: 19px;
    }

    .btna-about-card {
        min-height: auto;
        perspective: none;
    }

        .btna-about-card div {
            min-height: auto;
            padding: 10px 11px 10px;
            display: flex;
            flex-direction: row-reverse;
            font-size: 15px;
        }

            .btna-about-card div svg {
                width: 75px;
                height: auto;
            }

    .btna-about-small {
        right: 0;
        bottom: 53px;
        width: 100%;
        height: auto;
        display: none;
    }

    .btna-about-card img {
        display: none;
    }

    .btna-news-head {
        display: flex;
        gap: 6px;
    }

        .btna-news-head h2 {
            text-align: left;
            font-size: 16px;
        }

        .btna-news-head > a {
            font-size: 14px;
            line-height: normal;
            gap: 4px;
        }

    .btna-news-grid aside {
        min-height: 210px;
        width: 100%;
        display: none;
    }
}

@media (max-width: 430px) {
    .pin-a {
        left: 104px;
        top: 10px;
    }

    .pin-b {
        left: 119px;
        top: 60px;
    }

    .pin-c {
        left: 113px;
        top: 107px;
    }
}

@media (max-width: 375px) {
    .pin-a {
        left: 79px;
        top: 10px;
    }

    .pin-b {
        left: 89px;
        top: 60px;
    }

    .pin-c {
        left: 84px;
        top: 107px;
    }
}