:root {
    --bhl-blue: #063a78;
    --bhl-navy: #052d63;
    --bhl-deep: #04264f;
    --bhl-green: #149d40;
    --bhl-green-dark: #0d8734;
    --bhl-sky: #0e8fd2;
    --bhl-ink: #0c2348;
    --bhl-muted: #4f6078;
    --bhl-line: #dbe6f0;
    --bhl-soft: #f4f9fc;
    --bhl-white: #ffffff;
    --bhl-shadow: 0 14px 36px rgba(5, 45, 99, .13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--bhl-ink);
    background: #fff;
    font-family: Arial, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.bhl-page {
    min-width: 320px;
    overflow-x: clip;
}

.bhl-container {
    width: min(100% - 44px, 1140px);
    margin-inline: auto;
}

.bhl-topbar {
    background: linear-gradient(90deg, var(--bhl-blue), var(--bhl-deep));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.bhl-topbar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.bhl-country,
.bhl-toplinks {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.bhl-country__item,
.bhl-toplinks a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.bhl-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    font-size: 17px;
    line-height: 1;
    background: rgba(255,255,255,.12);
    box-shadow: 0 0 0 1px rgba(255,255,255,.38);
}

.bhl-portal {
    min-height: 36px;
    padding: 0 16px;
    margin-block: 0;
    background: var(--bhl-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bhl-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(5,45,99,.1);
    box-shadow: 0 10px 26px rgba(5,45,99,.06);
}

.bhl-nav {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
}
.bhl-logowrapper{
    height: auto;
    width: 200px;
    background: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
}
.bhl-logo{
    width: 200px;
    height: auto;
}
.bhl-logo img{

    border-radius: 15px;
}

.bhl-logo img {
    width: 100%;
    height: auto;
}

.bhl-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 29px;
    color: var(--bhl-navy);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.bhl-menu a {
    position: relative;
    white-space: nowrap;
}

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

.bhl-menu a:hover::after {
    transform: scaleX(1);
}

.bhl-menu__item {
    position: relative;
    --bhl-mega-columns: 1;
    --bhl-mega-longest: 16;
    --bhl-mega-column-width: clamp(190px, calc((var(--bhl-mega-longest) * 7.8px) + 58px), 320px);
    --bhl-mega-available: calc(100vw - 44px);
}

.bhl-menu__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bhl-menu__trigger {
    display: inline-flex;
    align-items: center;
}

.bhl-menu__expand {
    width: 20px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.bhl-menu__expand i {
    font-size: 16px;
    line-height: 1;
    transition: transform .18s ease;
}

.bhl-mega {
    position: fixed;
    left: var(--bhl-mega-left, 22px);
    top: var(--bhl-mega-top, 118px);
    width: min(
        calc((var(--bhl-mega-columns) * var(--bhl-mega-column-width)) + ((var(--bhl-mega-columns) - 1) * 18px) + 48px),
        var(--bhl-mega-available)
    );
    max-height: min(68vh, 620px);
    padding-top: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: opacity .18s ease, visibility .18s ease;
    pointer-events: none;
    z-index: 65;
}

.bhl-mega--wide {
    position: fixed;
    left: 50%;
    top: var(--bhl-mega-top, 118px);
    width: min(
        calc((var(--bhl-mega-columns) * var(--bhl-mega-column-width)) + ((var(--bhl-mega-columns) - 1) * 18px) + 48px),
        calc(100vw - 44px)
    );
    transform: translate(-50%, 0);
}

.bhl-menu__item:hover .bhl-mega,
.bhl-menu__item:focus-within .bhl-mega,
.bhl-menu__item.is-mega-open .bhl-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.bhl-menu__item:hover .bhl-mega--wide,
.bhl-menu__item:focus-within .bhl-mega--wide,
.bhl-menu__item.is-mega-open .bhl-mega--wide {
    transform: translate(-50%, 0);
}

.bhl-mega__grid {
    display: grid;
    gap: 18px;
    max-height: inherit;
    overflow-y: auto;
    padding: 24px;
    border: 1px solid rgba(5,45,99,.12);
    border-top: 4px solid var(--bhl-green);
    border-radius: 8px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 60px rgba(5,45,99,.18);
}

.bhl-mega--cols-1 .bhl-mega__grid {
    grid-template-columns: minmax(0, 1fr);
}

.bhl-mega--cols-2 .bhl-mega__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bhl-mega--cols-3 .bhl-mega__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bhl-mega--cols-4 .bhl-mega__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bhl-mega__section {
    min-width: 0;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #f8fbfd;
}

.bhl-mega .bhl-mega__heading,
.bhl-mega li a {
    position: static;
    white-space: normal;
    text-transform: none;
}

.bhl-mega .bhl-mega__heading::after,
.bhl-mega li a::after {
    display: none;
}

.bhl-mega__heading {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--bhl-blue);
    font-size: 13px;
    font-weight: 900;
}

.bhl-mega__heading::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bhl-green);
    flex: 0 0 auto;
}

.bhl-mega ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bhl-mega li + li {
    margin-top: 7px;
}

.bhl-mega li a {
    display: block;
    color: #40516a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.bhl-mega li a:hover {
    color: var(--bhl-green);
}

.bhl-mega--know-us {
    width: min(1180px, calc(100vw - 32px));
}

.bhl-mega--know-us .bhl-mega__grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0;
    padding: 18px 28px 16px;
    overflow: visible;
    border: 1px solid rgba(14,143,210,.32);
    border-top: 3px solid var(--bhl-green);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 18px 42px rgba(5,45,99,.14);
}

.bhl-know-link {
    min-height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 2px 10px;
    color: var(--bhl-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.bhl-know-link span {
    order: 1;
    color: var(--bhl-blue);
}

.bhl-know-link i {
    order: 2;
}

.bhl-know-link::after {
    display: none;
}

.bhl-know-link i {
    color: var(--bhl-green);
    font-size: 38px;
    line-height: 1;
    transition: color .18s ease, transform .18s ease;
}

.bhl-know-link:nth-child(even) i {
    color: var(--bhl-sky);
}

.bhl-know-link:hover {
    color: var(--bhl-green);
    background: linear-gradient(180deg, rgba(20,157,64,.08), rgba(14,143,210,.08));
}

.bhl-know-link:hover i {
    color: var(--bhl-blue);
    transform: translateY(-2px);
}

.bhl-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.bhl-icon-button,
.bhl-menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: var(--bhl-navy);
    background: #f0f7fb;
    cursor: pointer;
}

.bhl-menu-toggle {
    display: none;
}

.bhl-menu-backdrop {
    display: none;
}

.bhl-mobile-menu {
    display: none;
}

.bhl-icon-button i,
.bhl-menu-toggle i {
    font-size: 21px;
}

.bhl-hero {
    position: relative;
    min-height: 720px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.97) 0 43%, rgba(255,255,255,.58) 58%, rgba(255,255,255,0) 100%),
        linear-gradient(180deg, #eef8ff 0%, #fff 100%);
    overflow: hidden;
}

.bhl-hero-slider {
    isolation: isolate;
}

.bhl-hero-slide {
    position: absolute;
    inset: 0;
    min-height: inherit;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .72s cubic-bezier(.22, .85, .32, 1), visibility .72s ease;
    will-change: transform;
}

.bhl-hero-slide.is-active {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
}

.bhl-hero-slide.is-exiting {
    visibility: visible;
    transform: translateX(-100%);
    z-index: 1;
}

.bhl-hero-slide.is-resetting {
    visibility: hidden;
    transition: none;
}

.bhl-hero-slide .bhl-hero__content {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease .12s, transform .55s ease .12s;
}

.bhl-hero-slide.is-active .bhl-hero__content {
    opacity: 1;
    transform: translateY(0);
}

.bhl-hero__wrap {
    position: relative;
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(330px, .8fr) minmax(450px, 1.2fr);
    align-items: center;
}

.bhl-hero__content {
    position: relative;
    z-index: 3;
    max-width: 505px;
    padding: 46px 0 76px;
}

.bhl-eyebrow {
    margin: 0 0 10px;
    color: var(--bhl-green);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.bhl-hero h1 {
    margin: 0;
    color: var(--bhl-navy);
    font-size: clamp(42px, 5.5vw, 64px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: 0;
}

.bhl-hero h1 span {
    display: block;
    color: var(--bhl-green);
}

.bhl-hero p {
    max-width: 465px;
    margin: 18px 0 24px;
    color: #17233a;
    font-size: 17px;
    line-height: 1.58;
}

.bhl-hero strong {
    color: var(--bhl-green);
}

.bhl-hero b {
    color: var(--bhl-navy);
}

.bhl-button-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.bhl-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid var(--bhl-green);
    border-radius: 6px;
    color: var(--bhl-green);
    background: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(20,157,64,.09);
}

.bhl-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--bhl-green), #1bb34b);
}

.bhl-hero__visual {
    position: absolute;
    inset: 0 0 0 0%;
    overflow: hidden;
}

.bhl-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 6s ease;
}

.bhl-hero-slide.is-active .bhl-hero__visual img {
    transform: scale(1.08);
}

/* .bhl-hero__visual::before,
.bhl-hero__visual::after {
    content: "";
    position: absolute;
    right: -116px;
    bottom: -116px;
    border-radius: 50%;
    pointer-events: none;
} */

.bhl-hero__visual::before {
    width: 430px;
    height: 430px;
    border: 34px solid var(--bhl-green);
}

.bhl-hero__visual::after {
    width: 355px;
    height: 355px;
    border: 26px solid var(--bhl-blue);
    right: -142px;
    bottom: -145px;
}

.bhl-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 82px;
    z-index: 8;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 30px rgba(5,45,99,.16);
    backdrop-filter: blur(12px);
}

.bhl-slider-arrow,
.bhl-slider-dots button {
    border: 0;
    cursor: pointer;
}

.bhl-slider-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--bhl-blue), var(--bhl-green));
}

.bhl-slider-arrow i {
    font-size: 22px;
}

.bhl-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.bhl-slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    background: #9db5ca;
    transition: width .2s ease, background .2s ease;
}

.bhl-slider-dots button.is-active {
    width: 28px;
    background: var(--bhl-green);
}

.bhl-stats {
    position: relative;
    z-index: 5;
    margin-top: -38px;
}

.bhl-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 19px 22px;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--bhl-shadow);
}

.bhl-stat {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    border-right: 1px solid var(--bhl-line);
}

.bhl-stat:last-child {
    border-right: 0;
}

.bhl-stat__icon {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    border: 1.5px solid #22b24f;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--bhl-green);
    background: #f3fff6;
}

.bhl-stat:first-child .bhl-stat__icon {
    color: var(--bhl-blue);
    border-color: var(--bhl-blue);
    background: #f2f8ff;
}

.bhl-stat__icon i {
    font-size: 29px;
}

.bhl-stat small {
    display: block;
    color: #1f2c42;
    font-size: 12px;
    font-weight: 700;
}

.bhl-stat strong {
    display: block;
    color: var(--bhl-navy);
    font-size: 27px;
    line-height: 1.05;
    font-weight: 900;
}

.bhl-section {
    padding: 34px 0;
}

.bhl-section--tight {
    padding-top: 24px;
}

.bhl-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 20px;
}

.bhl-section-kicker {
    margin: 0 0 3px;
    color: var(--bhl-green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.bhl-section-title {
    margin: 0;
    color: var(--bhl-navy);
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.bhl-link-button {
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid var(--bhl-green);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bhl-green);
    background: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.bhl-business-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.bhl-business {
    min-height: 188px;
    padding: 20px 14px 16px;
    border: 1px solid #e3ecf3;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    box-shadow: 0 9px 24px rgba(5,45,99,.08);
}

.bhl-business__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 9px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--bhl-green);
    background: radial-gradient(circle at 50% 44%, #bfeecd 0 45%, #f1f9f5 46% 100%);
}

.bhl-business:nth-child(even) .bhl-business__icon {
    color: var(--bhl-blue);
    background: radial-gradient(circle at 50% 44%, #cfe9fb 0 45%, #f2f8fe 46% 100%);
}

.bhl-business__icon i {
    font-size: 39px;
}

.bhl-business h3 {
    margin: 0 0 8px;
    color: var(--bhl-navy);
    font-size: 15px;
    font-weight: 900;
}

.bhl-business p {
    flex: 1;
    margin: 0 0 12px;
    color: #1e2d42;
    font-size: 12px;
    line-height: 1.55;
}

.bhl-card-link {
    color: var(--bhl-green);
    font-size: 12px;
    font-weight: 900;
}

.bhl-business:nth-child(even) .bhl-card-link {
    color: #006ac4;
}

.bhl-presence {
    background: linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
    border-top: 1px solid #edf3f7;
    border-bottom: 1px solid #edf3f7;
}

.bhl-presence__grid {
    display: grid;
    grid-template-columns: 1.15fr .95fr;
    gap: 26px;
    align-items: stretch;
}

.bhl-map-panel {
    position: relative;
    min-height: 250px;
    background-image: var(--bhl-map-image, url("../assets/map-dots.png"));
    background-size: cover;
    background-position: center;
}

.bhl-country-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 20px;
}

.bhl-country-card {
    display: grid;
    grid-template-columns: 122px 1fr;
    align-items: center;
    gap: 18px;
}

.bhl-country-photo {
    position: relative;
    width: 122px;
    height: 122px;
}

.bhl-country-photo img {
    width: 122px;
    height: 122px;
    object-fit: cover;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(5,45,99,.15);
}

.bhl-pin {
    position: absolute;
    left: 50%;
    bottom: -17px;
    width: 43px;
    height: 52px;
    transform: translateX(-50%);
    color: #fff;
    display: grid;
    place-items: center;
    background: var(--bhl-green);
    clip-path: path("M21.5 0C33.4 0 43 9.4 43 21c0 15.5-21.5 31-21.5 31S0 36.5 0 21C0 9.4 9.6 0 21.5 0Z");
}
.bhl-pin.bhl-pin--blue {
    position: absolute;
    left: 50%;
    bottom: -17px;
    width: 43px;
    height: 52px;
    transform: translateX(-50%);
    color: #fff;
    display: grid;
    place-items: center;
    background: rgb(225, 7, 7);
    clip-path: path("M21.5 0C33.4 0 43 9.4 43 21c0 15.5-21.5 31-21.5 31S0 36.5 0 21C0 9.4 9.6 0 21.5 0Z");
}

.bhl-pin::after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e9282d;
}
.bhl-pin.bhl-pin--blue::after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 5px solid #e4c200;
    background:   black;
}

.bhl-country-card h3 {
    margin: 0 0 8px;
    color: var(--bhl-navy);
    font-size: 14px;
    font-weight: 900;
}

.bhl-country-card p {
    margin: 0 0 10px;
    color: #17233a;
    font-size: 13px;
}

.bhl-chairman {
    position: relative;
    min-height: 250px;
    padding: 22px 28px;
    border-radius: 10px;
    color: #fff;
    background: #01224c;
    overflow: hidden;
}

.bhl-chairman::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 43%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(5,45,99,0), rgba(5,45,99,.2)), var(--bhl-chairman-image, url("../assets/chairman.jpg"));
    background-size: cover;
    background-position: center bottom;
}

.bhl-chairman__content {
    position: relative;
    z-index: 1;
    max-width: 56%;
}

.bhl-chairman h3 {
    margin: 0 0 10px;
    color: #19c24e;
    font-size: 21px;
    font-weight: 900;
}

.bhl-quote {
    color: var(--bhl-green);
    font-size: 58px;
    line-height: .75;
    font-weight: 900;
}

.bhl-chairman p {
    margin: 0 0 16px;
    color: #fff;
    font-size: 14px;
    line-height: 1.55;
}

.bhl-sign {
    margin-bottom: 8px;
    font-family: "Segoe Script", "Brush Script MT", cursive;
    font-size: 18px;
}

.bhl-role {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.bhl-insights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.bhl-insight {
    overflow: hidden;
    border: 1px solid #e3ecf3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(5,45,99,.08);
}

.bhl-insight__image {
    position: relative;
    height: 72px;
    background: #dbe6f0;
}

.bhl-insight__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bhl-tag {
    position: absolute;
    left: 14px;
    bottom: -10px;
    min-height: 22px;
    padding: 0 9px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    background: var(--bhl-green);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.bhl-tag--blue {
    background: #006ac4;
}

.bhl-insight__body {
    padding: 20px 14px 16px;
}

.bhl-date {
    margin: 0 0 6px;
    color: #17233a;
    font-size: 11px;
    font-weight: 800;
}

.bhl-insight h3 {
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--bhl-navy);
    font-size: 16px;
    line-height: 1.22;
    font-weight: 900;
}

.bhl-career {
    position: relative;
    color: #fff;
    background: linear-gradient(100deg, var(--bhl-navy) 0 50%, #07487e 100%);
    overflow: hidden;
}

.bhl-career::before,
.bhl-career::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bhl-career::before {
    left: -120px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border: 20px solid var(--bhl-green);
}

.bhl-career::after {
    right: -160px;
    top: -140px;
    width: 360px;
    height: 360px;
    border: 26px solid #77d439;
}

.bhl-career__inner {
    position: relative;
    z-index: 1;
    min-height: 140px;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    align-items: center;
    gap: 30px;
}

.bhl-career__copy {
    padding: 22px 0 22px 0px;
}

.bhl-career .bhl-section-kicker {
    color: #17d250;
}

.bhl-career h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(24px, 3vw, 31px);
    line-height: 1.16;
    font-weight: 900;
}

.bhl-career p {
    max-width: 430px;
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    line-height: 1.55;
}

.bhl-career__image {
    align-self: stretch;
    min-height: 140px;
    display: flex;
    align-items: end;
    justify-content: flex-end;
}

.bhl-career__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bhl-footer {
    color: #fff;
    background: linear-gradient(180deg, #073d79 0%, #052c5f 100%);
}

.bhl-footer__grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(5, 1fr);
    gap: 28px;
    padding: 24px 0 22px;
}

.bhl-footer-logo {
    width: 225px;
    margin-bottom: 8px;
    filter: drop-shadow(0 5px 12px rgba(0,0,0,.12));
}

.bhl-footer p {

    color: #dce9f6;
    font-size: 12px;
    line-height: 1.55;
}

.bhl-social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.bhl-social a {
    width: 27px;
    height: 27px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
}

.bhl-footer h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bhl-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bhl-footer li {
    margin-bottom: 5px;
    color: #dce9f6;
    font-size: 11px;
    line-height: 1.35;
}

.bhl-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.18);
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #e8f2fb;
    font-size: 12px;
}

.bhl-policy {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.bhl-inner-hero {
    position: relative;
    isolation: isolate;
    min-height: 360px;
    padding: 74px 0;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #063a78;
}

.bhl-inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(90deg, rgba(6, 36, 77, .92), rgba(6, 58, 120, .6), rgba(20, 157, 64, .25)), var(--bhl-inner-image);
    background-position: center;
    background-size: cover;
}

.bhl-inner-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -42% auto;
    z-index: -1;
    width: 58%;
    aspect-ratio: 1;
    border: 28px solid rgba(53, 195, 67, .72);
    border-radius: 50%;
}

.bhl-inner-hero h1 {
    max-width: 820px;
    margin: 8px 0 16px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: .98;
    text-transform: uppercase;
}

.bhl-inner-hero p:not(.bhl-section-kicker) {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.7;
}

.bhl-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bhl-unit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.bhl-unit-card {
    border: 1px solid var(--bhl-line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 34px rgba(6, 31, 70, .08);
}

.bhl-unit-card__media {
    display: block;
    aspect-ratio: 16 / 7;
    background: #dfeaf4;
}

.bhl-unit-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bhl-unit-card__body {
    position: relative;
    padding: 34px 22px 24px;
}

.bhl-unit-card__logo {
    position: absolute;
    top: -34px;
    left: 22px;
    width: 68px;
    height: 68px;
    border: 4px solid #fff;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: #eef8f0;
    color: var(--bhl-green);
    box-shadow: 0 10px 24px rgba(6, 31, 70, .12);
}

.bhl-unit-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.bhl-unit-card__logo i {
    font-size: 28px;
}

.bhl-unit-card h3 {
    margin: 4px 0 8px;
    color: var(--bhl-blue);
    font-size: 22px;
    line-height: 1.18;
}

.bhl-unit-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--bhl-green);
    font-size: 14px;
}

.bhl-unit-card p {
    color: var(--bhl-muted);
    line-height: 1.65;
}

.bhl-empty-state {
    grid-column: 1 / -1;
    padding: 34px;
    border: 1px dashed #b8cadd;
    border-radius: 8px;
    text-align: center;
    background: #f8fbfd;
}

.bhl-empty-state h3 {
    margin: 0 0 8px;
    color: var(--bhl-blue);
}

.bhl-empty-state p {
    margin: 0;
    color: var(--bhl-muted);
}

.bhl-unit-hero {
    position: relative;
    isolation: isolate;
    min-height: 520px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
    background: #063a78;
}

.bhl-unit-hero > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bhl-unit-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(2, 23, 53, .1), rgba(2, 23, 53, .82));
}

.bhl-unit-hero__content {
    padding-block: 72px;
}

.bhl-unit-identity {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    max-width: 920px;
}

.bhl-unit-identity > span {
    width: 116px;
    height: 116px;
    border: 5px solid #fff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--bhl-green);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

.bhl-unit-identity img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.bhl-unit-identity i {
    font-size: 44px;
}

.bhl-unit-identity h1 {
    margin: 4px 0 10px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1;
    text-transform: uppercase;
}

.bhl-unit-identity strong {
    color: #b9f2c2;
    font-size: 19px;
}

.bhl-unit-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 38px;
    align-items: start;
}

.bhl-unit-lead {
    margin: 0 0 22px;
    color: var(--bhl-blue);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.65;
}

.bhl-rich-text {
    color: #263646;
    font-size: 16px;
    line-height: 1.85;
}

.bhl-unit-sidebar {
    position: sticky;
    top: 96px;
    padding: 24px;
    border: 1px solid var(--bhl-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(6, 31, 70, .08);
}

.bhl-unit-sidebar h3 {
    margin: 0 0 18px;
    color: var(--bhl-blue);
}

.bhl-unit-sidebar dl {
    display: grid;
    gap: 12px;
    margin: 0 0 22px;
}

.bhl-unit-sidebar dt {
    color: var(--bhl-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bhl-unit-sidebar dd {
    margin: -8px 0 0;
    color: var(--bhl-blue);
    font-weight: 800;
    overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
    .bhl-menu {
        gap: 17px;
        font-size: 12px;
    }

    .bhl-business-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bhl-unit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bhl-stats__grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 20px;
    }

    .bhl-stat:nth-child(3) {
        border-right: 0;
    }

    .bhl-stat:nth-child(4),
    .bhl-stat:nth-child(5) {
        padding-top: 18px;
        border-top: 1px solid var(--bhl-line);
    }
}

@media (max-width: 940px) {
    body.bhl-menu-is-open {
        overflow: hidden;
    }

    .bhl-container {
        width: min(100% - 30px, 760px);
    }

    .bhl-career::before,
    .bhl-career::after{
        display: none;
    }

    .bhl-topbar__inner {
        justify-content: center;
    }

    .bhl-toplinks {
        display: none;
    }

    .bhl-nav {
        grid-template-columns: 1fr auto;
        min-height: 72px;
    }

    .bhl-logo img {
        width: 220px;
    }

    .bhl-menu-toggle {
        display: inline-grid;
    }

    .bhl-menu {
        position: fixed;
        left: 0;
        right: auto;
        top: var(--bhl-mobile-menu-top, 0px);
        bottom: 0;
        width: min(86vw, 360px);
        max-height: none;
        padding: 12px 15px 24px;
        border: 0;
        border-right: 1px solid #dbe6f0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        box-shadow: 18px 0 40px rgba(5,45,99,.16);
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(-104%);
        visibility: hidden;
        pointer-events: none;
        transition: transform .24s ease, visibility .24s ease;
        z-index: 80;
    }

    .bhl-menu.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .bhl-menu-backdrop {
        position: fixed;
        inset: var(--bhl-mobile-menu-top, 0px) 0 0;
        display: block;
        padding: 0;
        border: 0;
        background: rgba(5, 24, 47, .48);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .24s ease, visibility .24s ease;
        z-index: 75;
    }

    .bhl-menu.is-open + .bhl-menu-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .bhl-menu {
        display: none !important;
    }

    .bhl-mobile-menu {
        position: fixed;
        left: 0;
        top: var(--bhl-mobile-menu-top, 0px);
        bottom: 0;
        width: min(86vw, 360px);
        display: flex;
        flex-direction: column;
        padding: 10px 14px 24px;
        border-right: 1px solid #dbe6f0;
        background: #fff;
        box-shadow: 18px 0 40px rgba(5,45,99,.16);
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(-104%);
        visibility: hidden;
        pointer-events: none;
        transition: transform .24s ease, visibility .24s ease;
        z-index: 80;
    }

    .bhl-mobile-menu.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .bhl-mobile-menu.is-open + .bhl-menu-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .bhl-mobile-menu__item,
    .bhl-mobile-menu__direct-link {
        border-bottom: 1px solid #e7eef4;
    }

    .bhl-mobile-menu__trigger,
    .bhl-mobile-menu__direct-link {
        width: 100%;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 4px;
        border: 0;
        color: var(--bhl-blue);
        background: transparent;
        font: inherit;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0;
        text-align: left;
        text-transform: uppercase;
        cursor: pointer;
    }

    .bhl-mobile-menu__trigger i {
        width: 38px;
        height: 38px;
        display: inline-grid;
        place-items: center;
        border-radius: 50%;
        color: var(--bhl-blue);
        background: #eef7fb;
        font-size: 18px;
        transition: transform .18s ease;
    }

    .bhl-mobile-menu__item.is-mobile-open .bhl-mobile-menu__trigger i {
        transform: rotate(180deg);
    }

    .bhl-mobile-menu__panel {
        display: none;
        padding: 4px 0 12px;
        background: #f4f9fc;
    }

    .bhl-mobile-menu__item.is-mobile-open .bhl-mobile-menu__panel {
        display: block;
    }

    .bhl-mobile-menu__section {
        margin: 10px;
        padding: 12px 10px;
        border-radius: 8px;
        background: #fff;
    }

    .bhl-mobile-menu__heading {
        min-height: 30px;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #e7eef4;
        color: var(--bhl-blue);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 0;
        text-transform: none;
    }

    .bhl-mobile-menu__heading span {
        width: 8px;
        height: 8px;
        flex: 0 0 8px;
        border-radius: 50%;
        background: var(--bhl-green);
    }

    .bhl-mobile-menu__section > a:not(.bhl-mobile-menu__heading) {
        display: block;
        padding: 6px 0;
        color: #40516a;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.35;
        letter-spacing: 0;
        text-transform: none;
    }

    .bhl-mobile-menu__section--know-us > a:not(.bhl-mobile-menu__heading) {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .bhl-mobile-menu__section--know-us i {
        width: 20px;
        flex: 0 0 20px;
        color: var(--bhl-green);
        font-size: 18px;
        text-align: center;
    }

    .bhl-mobile-menu__section--know-us > a:nth-child(even) i {
        color: var(--bhl-sky);
    }

    .bhl-menu a {
        padding: 12px 4px;
        border-bottom: 1px solid #edf3f7;
    }

    .bhl-menu__item {
        position: static;
    }

    .bhl-menu__link {
        flex: 1 1 auto;
        width: 100%;
        justify-content: space-between;
    }

    .bhl-menu__trigger {
        width: 100%;
        min-height: 48px;
    }

    .bhl-menu__expand {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        border-radius: 50%;
        color: var(--bhl-blue);
        background: #eef7fb;
    }

    .bhl-menu__expand[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .bhl-mega {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        --bhl-mega-column-width: 1fr;
        --bhl-mega-available: 100%;
        --bhl-mega-left: auto;
        max-height: none;
        padding-top: 0;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .bhl-menu__item:not(.is-mobile-open) .bhl-mega {
        display: none;
    }

    .bhl-menu__item.is-mobile-open .bhl-mega {
        display: block;
    }

    .bhl-mega--wide {
        position: static;
        width: 100%;
        transform: none;
    }

    .bhl-mega__grid,
    .bhl-mega--cols-1 .bhl-mega__grid,
    .bhl-mega--cols-2 .bhl-mega__grid,
    .bhl-mega--cols-3 .bhl-mega__grid,
    .bhl-mega--cols-4 .bhl-mega__grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-height: none;
        overflow: visible;
        padding: 12px;
        border: 0;
        border-radius: 8px;
        box-shadow: none;
        background: #f4f9fc;
    }

    .bhl-mega--know-us .bhl-mega__grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 8px 12px;
        overflow: visible;
        border: 0;
        border-radius: 8px;
        box-shadow: none;
        background: #fff;
    }

    .bhl-know-link {
        min-height: 48px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        padding: 12px 8px;
        border-bottom: 1px solid #e7eef4;
        border-radius: 0;
        background: #fff;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.35;
        text-align: left;
        text-transform: none;
        white-space: normal;
    }

    .bhl-know-link i {
        order: 1;
        width: 24px;
        flex: 0 0 24px;
        font-size: 22px;
        text-align: center;
    }

    .bhl-know-link span {
        order: 2;
        flex: 1 1 auto;
    }

    .bhl-know-link:last-child {
        border-bottom: 0;
    }

    .bhl-mega__section {
        padding: 10px;
        background: #fff;
    }

    .bhl-mega li a {
        border-bottom: 0;
        padding: 3px 0;
    }

    .bhl-menu a:last-child {
        border-bottom: 0;
    }

    .bhl-menu a::after {
        display: none;
    }

    .bhl-actions {
        grid-column: 2;
        grid-row: 1;
    }

    .bhl-hero__wrap {
        min-height: auto;
        display: block;
    }

    .bhl-hero__content {
        max-width: 600px;
        padding: 44px 0 310px;
    }

    .bhl-hero__visual {
        inset: auto 0 0 0;
        height: 310px;
    }

    .bhl-slider-controls {
        bottom: 24px;
    }

    .bhl-stats {
        margin-top: 18px;
    }

    .bhl-stats__grid,
    .bhl-presence__grid,
    .bhl-insights,
    .bhl-unit-grid,
    .bhl-career__inner,
    .bhl-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bhl-chairman__content {
        max-width: 60%;
    }
}

@media (max-width: 720px) {
    .bhl-country {
        justify-content: center;
        gap: 10px;
    }

    .bhl-logo img {
        width: 190px;
    }

    .bhl-icon-button {
        display: none;
    }

    .bhl-hero__content {
        padding-bottom: 250px;
    }

    .bhl-hero__visual {
        height: 250px;
    }

    .bhl-slider-controls {
        gap: 9px;
        padding: 7px;
    }

    .bhl-slider-arrow {
        width: 31px;
        height: 31px;
    }

    .bhl-hero h1 {
        font-size: clamp(38px, 13vw, 56px);
    }

    .bhl-stats__grid,
    .bhl-business-grid,
    .bhl-presence__grid,
    .bhl-country-cards,
    .bhl-insights,
    .bhl-unit-grid,
    .bhl-unit-detail,
    .bhl-career__inner,
    .bhl-footer__grid {
        grid-template-columns: 1fr;
    }

    .bhl-stat {
        border-right: 0;
        border-top: 1px solid var(--bhl-line);
        padding: 16px 0 0;
    }

    .bhl-stat:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .bhl-stat:nth-child(4),
    .bhl-stat:nth-child(5) {
        padding-top: 16px;
    }

    .bhl-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .bhl-country-card {
        grid-template-columns: 108px 1fr;
    }

    .bhl-country-photo,
    .bhl-country-photo img {
        width: 108px;
        height: 108px;
    }

    .bhl-chairman {
        min-height: 430px;
        padding: 26px 22px;
    }

    .bhl-chairman::after {

        height: 54%;
        top: auto;
        opacity: .92;
    }

    .bhl-chairman__content {
        max-width: 100%;
    }

    .bhl-career__copy {
        padding: 28px 0 6px;
    }

    .bhl-career__image {
        min-height: 180px;
    }

    .bhl-footer__bottom {
        flex-direction: column;
    }

    .bhl-unit-identity {
        grid-template-columns: 1fr;
    }

    .bhl-unit-sidebar {
        position: static;
    }
}

@media (max-width: 460px) {
    .bhl-container {
        width: min(100% - 22px, 420px);
    }

    .bhl-topbar {
        font-size: 11px;
    }



    .bhl-logo img {
        width: 164px;
    }

    .bhl-menu-toggle {
        width: 38px;
        height: 38px;
    }

    .bhl-hero p {
        font-size: 15px;
    }

    .bhl-button-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bhl-btn,
    .bhl-link-button {
        width: 100%;
    }

    .bhl-country-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bhl-mega__grid {
        grid-template-columns: 1fr;
    }

    .bhl-mega--know-us .bhl-mega__grid {
        grid-template-columns: 1fr;
    }

    .bhl-country-photo {
        margin-inline: auto;
    }

    .bhl-inner-hero {
        min-height: 300px;
        padding: 52px 0;
    }

    .bhl-unit-hero {
        min-height: 470px;
    }

    .bhl-unit-identity > span {
        width: 92px;
        height: 92px;
    }
}
