*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
}

body {
    min-height: 100vh;
    line-height: 1.5;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: 0;
}

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

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

body {
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    line-height: 1;
    color: #333333;
}

h1 {
    font-size: 65px;
    letter-spacing: -4px;
}

h2 {
    font-size: 46px;
    letter-spacing: -4px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 1em;
}
p:last-child {
    margin-bottom: 0;
}

a {
    color: #052085;
    transition: color 0.25s ease;
}
a:hover {
    color: #0c4c91;
}

strong,
b {
    font-weight: 700;
}

html,
body {
    background: #ffffff;
    overflow-anchor: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1 0 auto;
}

.header,
.footer {
    flex-shrink: 0;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
    padding-inline: 16px;
}
@media (min-width: 768px) {
    .container {
        padding-inline: 32px;
    }
}
@media (min-width: 992px) {
    .container {
        padding-inline: 60px;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 700;
    padding: 8px 16px;
    background: #052085;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-100%);
    transition: transform 0.15s ease;
}
.skip-link:focus {
    transform: translateY(0);
    outline: 2px solid #0c4c91;
    outline-offset: 2px;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0b1646;
    color: #ffffff;
    height: 216px;
    transition: height 0.25s ease;
}
@media (max-width: 1279px) {
    .header {
        height: 72px;
    }
}
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/misc/ap_header-bg.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 100%;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.header.is-compact {
    height: 80px;
}
@media (max-width: 1279px) {
    .header.is-compact {
        height: 72px;
    }
}
.header.is-compact::before {
    opacity: 0.35;
}

.header__inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
@media (max-width: 1279px) {
    .header__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.header__logo {
    position: absolute;
    left: 50%;
    top: 44px;
    transform: translateX(-50%);
    z-index: 2;
    display: block;
    width: 160px;
    height: 142px;
    transition:
        width 0.25s ease,
        height 0.25s ease,
        top 0.25s ease;
}
.is-compact .header__logo {
    top: 10px;
    width: 60px;
    height: 60px;
}
.is-compact .header__logo .header__logo-img--full {
    opacity: 0;
}
.is-compact .header__logo .header__logo-img--small {
    opacity: 1;
}
@media (max-width: 1279px) {
    .header__logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 44px;
        height: 44px;
    }
    .header__logo .header__logo-img--full {
        opacity: 0;
    }
    .header__logo .header__logo-img--small {
        opacity: 1;
    }
}

.header__logo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

.header__logo-img--small {
    opacity: 0;
}

.header__top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 70px;
    padding-top: 27px;
    overflow: hidden;
    transition:
        height 0.25s ease,
        padding 0.25s ease,
        opacity 0.25s ease;
}
.is-compact .header__top {
    height: 0;
    padding-top: 0;
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 1279px) {
    .header__top {
        display: none;
    }
}

.header__contact {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.15s ease;
}
.header__contact-item:hover {
    color: #8b93b9;
}
.header__contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: currentColor;
}

.header__nav {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 220px;
    transition: gap 0.25s ease;
}
@media (min-width: 1280px) {
    .is-compact .header__nav {
        gap: 90px;
    }
}
@media (max-width: 1279px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        width: min(360px, 90vw);
        background: #0b1646;
        padding: 24px 24px 32px;
        overflow-y: auto;
        transform: translateX(100%);
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease;
        z-index: 400;
        box-shadow: none;
        -webkit-overflow-scrolling: touch;
    }
    .is-menu-open .header__nav {
        transform: translateX(0);
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
    }
}

.header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
    gap: 30px;
}
.header__menu--left {
    justify-content: flex-end;
    flex: 1;
}
.header__menu--right {
    justify-content: flex-start;
    flex: 1;
}
@media (max-width: 1279px) {
    .header__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    .header__menu--left,
    .header__menu--right {
        flex: none;
        justify-content: flex-start;
    }
}

.header__menu-item {
    position: relative;
}
.header__menu-item > a,
.header__menu-item > button {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.36px;
    color: #ffffff;
    text-decoration: none;
    transition:
        color 0.15s ease,
        padding 0.25s ease;
}
.header__menu-item > a:hover,
.header__menu-item > button:hover {
    color: #8b93b9;
}
.is-compact .header__menu-item > a,
.is-compact .header__menu-item > button {
    padding: 18px 20px;
}
.header__menu-item.is-active::after {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 6px;
    background: #211ae0;
}
.header__menu-item .header__caret {
    width: 10px;
    height: 6px;
    flex-shrink: 0;
    transition: transform 0.15s ease;
}
.header__menu-item.is-open .header__caret {
    transform: rotate(180deg);
}
@media (max-width: 1279px) {
    .header__menu-item > a,
    .header__menu-item > button {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 16px 12px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .header__menu-item.is-active::after {
        inset: 0 auto 0 0;
        top: 0;
        right: auto;
        width: 4px;
        height: auto;
    }
    .is-compact .header__menu-item > a,
    .is-compact .header__menu-item > button {
        padding: 16px 12px;
    }
}

.header__burger {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: -8px;
    z-index: 401;
}
@media (max-width: 1279px) {
    .header__burger {
        display: block;
    }
}
.header__burger span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition:
        transform 0.15s ease,
        opacity 0.15s ease,
        top 0.15s ease;
}
.header__burger span:nth-child(1) {
    top: 13px;
}
.header__burger span:nth-child(2) {
    top: 19px;
}
.header__burger span:nth-child(3) {
    top: 25px;
}
.is-menu-open .header__burger span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}
.is-menu-open .header__burger span:nth-child(2) {
    opacity: 0;
}
.is-menu-open .header__burger span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

.header__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 399;
    opacity: 0;
    transition: opacity 0.25s ease;
}
@media (max-width: 1279px) {
    .is-menu-open .header__backdrop {
        display: block;
        opacity: 1;
    }
}

body.is-menu-locked {
    overflow: hidden;
}

.footer {
    background: #eeeeee;
    color: #000000;
    padding-top: 73px;
    padding-bottom: 33px;
}
@media (max-width: 991px) {
    .footer {
        padding-top: 56px;
        padding-bottom: 24px;
    }
}

.footer__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 48px;
}
@media (max-width: 1279px) {
    .footer__grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}

.footer__cols {
    display: grid;
    grid-template-columns: auto auto auto;
    -moz-column-gap: 96px;
    column-gap: 96px;
    row-gap: 40px;
    justify-content: end;
}
@media (max-width: 1599px) {
    .footer__cols {
        -moz-column-gap: 64px;
        column-gap: 64px;
    }
}
@media (max-width: 1279px) {
    .footer__cols {
        justify-content: start;
        grid-template-columns: 1fr 1fr;
        -moz-column-gap: 48px;
        column-gap: 48px;
    }
}
@media (max-width: 767px) {
    .footer__cols {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
@media (max-width: 1279px) {
    .footer__brand {
        align-items: flex-start;
    }
}

.footer__logo {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    line-height: 0;
}
.footer__logo img {
    display: block;
    width: 140px;
    height: auto;
}

.footer__socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
}
.footer__socials a {
    display: inline-flex;
    line-height: 0;
    border-radius: 50%;
    transition:
        transform 0.15s ease,
        opacity 0.15s ease;
}
.footer__socials a img {
    display: block;
    width: 29px;
    height: 29px;
}
.footer__socials a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}
.footer__socials a:focus-visible {
    outline: 2px solid #052085;
    outline-offset: 3px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__title {
    margin: 0;
    font-family:
        'Poppins',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
}

.footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer__links a {
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    text-decoration: none;
    transition: color 0.15s ease;
}
.footer__links a:hover {
    color: #052085;
}

.footer__links--two-col {
    display: grid;
    grid-template-columns: 180px 180px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 6px;
}
@media (max-width: 575px) {
    .footer__links--two-col {
        grid-template-columns: 1fr;
    }
}

.footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.footer__contact-row {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 11px;
    align-items: start;
}
.footer__contact-row a {
    color: #000000;
    text-decoration: none;
}
.footer__contact-row a:hover {
    color: #052085;
}

.footer__contact-icon {
    display: block;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    margin-top: 1px;
}

.footer__contact-label {
    font-weight: 400;
}

.footer__contact-address {
    font-style: normal;
    margin: 0;
    max-width: 256px;
}

.footer__bottom {
    margin-top: 48px;
    padding-top: 25px;
    border-top: 1px solid #c1c1c1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom p {
    margin: 0;
}
.footer__bottom {
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}
@media (max-width: 575px) {
    .footer__bottom {
        margin-top: 32px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer__credit a {
    color: inherit;
    text-decoration: none;
}
.footer__credit a:hover {
    color: #052085;
    text-decoration: underline;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: #ffffff;
    color: #696767;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    border-radius: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.section-title {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.84px;
    color: #000000;
}
@media (max-width: 575px) {
    .section-title {
        letter-spacing: -1px;
    }
}
.section-title--l {
    font-size: clamp(36px, 4.5vw, 65px);
    line-height: 1;
    letter-spacing: -2.6px;
}
@media (max-width: 575px) {
    .section-title--l {
        letter-spacing: -1px;
    }
}
.section-title--inverse {
    color: #ffffff;
}

.mega-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #052085;
    color: #ffffff;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        max-height 0.25s ease,
        opacity 0.15s ease,
        visibility 0s 0.25s ease;
}
.mega-dropdown.is-open {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    transition:
        max-height 0.25s ease,
        opacity 0.15s ease,
        visibility 0s;
}
@media (max-width: 1279px) {
    .mega-dropdown {
        position: static;
        background: transparent;
        margin: 0;
        max-height: 0;
        visibility: visible;
        opacity: 1;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }
    .mega-dropdown.is-open {
        max-height: 800px;
    }
}

.mega-dropdown__inner {
    max-width: 1100px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(0, 200px));
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 0;
    padding: 27px 20px 35px;
    align-items: start;
}
@media (max-width: 1279px) {
    .mega-dropdown__inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 8px 16px 16px;
        max-width: none;
    }
}

.mega-dropdown__title {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -1.28px;
    color: #ffffff;
    margin: 0;
}
@media (max-width: 1279px) {
    .mega-dropdown__title {
        display: none;
    }
}

.mega-dropdown__col {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mega-dropdown__link {
    display: block;
    padding: 5px 20px;
    font-family:
        'Poppins',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.15s ease,
        background 0.15s ease;
}
.mega-dropdown__link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 1279px) {
    .mega-dropdown__link {
        padding: 10px 12px;
        white-space: normal;
    }
}

.hero {
    position: relative;
    padding: 0 0 80px;
    background: #ffffff;
    perspective: 1500px;
    overflow: hidden;
}
@media (max-width: 767px) {
    .hero {
        padding: 0 0 56px;
    }
}

.hero__container {
    position: relative;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    aspect-ratio: 9/4;
    gap: 0;
}
@media (max-width: 991px) {
    .hero__grid {
        display: block;
        position: relative;
        grid-template-columns: none;
        grid-auto-rows: auto;
        aspect-ratio: auto;
        overflow: hidden;
        border-radius: 8px;
    }
}

.hero__backdrop {
    display: contents;
}
@media (max-width: 991px) {
    .hero__backdrop {
        display: grid;
        position: absolute;
        inset: 0;
        z-index: 0;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: repeat(4, minmax(0, 1fr));
        gap: 2px;
        pointer-events: none;
    }
}

.hero__cell {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    transform-style: preserve-3d;
    transform-origin: left center;
    transform: rotateY(-90deg);
    opacity: 0;
    will-change: transform, opacity;
    transition:
        transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity calc(700ms / 2) ease-out;
}
.hero__cell--wide {
    aspect-ratio: 2/1;
}
.hero__cell--tall {
    aspect-ratio: 1/2;
}
.hero__cell--big {
    aspect-ratio: 1/1;
}
.hero__cell {
    transition-delay: calc((var(--col, 1) - 1) * 80ms + (var(--row, 1) - 1) * 60ms);
}
.hero.is-revealed .hero__cell {
    transform: rotateY(0);
    opacity: 1;
}

.hero__cell--tint-5 {
    background: rgba(5, 32, 133, 0.05);
}

.hero__cell--tint-10 {
    background: rgba(5, 32, 133, 0.1);
}

.hero__cell--tint-20 {
    background: rgba(5, 32, 133, 0.2);
}

.hero__cell--tint-50 {
    background: rgba(5, 32, 133, 0.5);
}

.hero__cell--solid {
    background: #052085;
}

.hero__cell--stat {
    background: rgba(5, 32, 133, 0.04);
}
.hero__cell--stat > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    padding: 14%;
}

.hero__cell--deco {
    background: #ffffff;
}
.hero__cell--deco > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero__cell--photo {
    background: rgba(5, 32, 133, 0.04);
}

.hero__cell-flipper {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transition: transform 900ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__cell-flipper.is-flipped {
    transform: rotateY(180deg);
}

.hero__cell-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}
.hero__cell-face img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
}

.hero__cell-face--back {
    transform: rotateY(180deg);
}

@media (max-width: 991px) {
    .hero__cell--tint-5,
    .hero__cell--tint-10,
    .hero__cell--tint-20,
    .hero__cell--tint-50,
    .hero__cell--solid {
        display: none;
    }
    .hero__cell--wide,
    .hero__cell--tall,
    .hero__cell--big {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        aspect-ratio: 1/1;
    }
}
.hero__center {
    grid-column: 3 / span 5;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    padding: 40px clamp(16px, 4vw, 56px);
    background: #ffffff;
    position: relative;
    z-index: 1;
}
@media (min-width: 992px) and (max-width: 1499px) {
    .hero__center {
        gap: clamp(8px, 1vw, 24px);
        padding: clamp(10px, 1.4vw, 40px) clamp(16px, 3vw, 56px);
    }
}
.hero__center {
    transform-origin: left center;
    transform: rotateY(-90deg);
    opacity: 0;
    will-change: transform, opacity;
    transition:
        transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity calc(700ms / 2) ease-out;
    transition-delay: calc((var(--col, 3) - 1) * 80ms);
}
.hero.is-revealed .hero__center {
    transform: rotateY(0);
    opacity: 1;
}
@media (max-width: 991px) {
    .hero__center {
        position: relative;
        inset: auto;
        grid-column: auto;
        grid-row: auto;
        order: 0;
        padding: 32px 24px;
        aspect-ratio: auto;
        min-height: 0;
        z-index: 5;
        background: rgba(255, 255, 255, 0.55);
        backdrop-filter: blur(6px) saturate(120%);
        -webkit-backdrop-filter: blur(6px) saturate(120%);
        transform-origin: center center;
        transform: translateY(8px);
        transition-delay: 0ms;
    }
    .hero.is-revealed .hero__center {
        transform: none;
    }
}
@media (max-width: 575px) {
    .hero__center {
        padding: 24px 16px;
    }
}

.hero__title {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: clamp(32px, 4vw, 65px);
    line-height: 1;
    letter-spacing: -2.6px;
    color: #000000;
    margin: 0;
}
@media (min-width: 992px) and (max-width: 1499px) {
    .hero__title {
        font-size: clamp(26px, 3.4vw, 51px);
        letter-spacing: -1.5px;
    }
}
@media (max-width: 575px) {
    .hero__title {
        letter-spacing: -1px;
    }
}

.hero__text {
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    max-width: 660px;
}
@media (min-width: 992px) and (max-width: 1499px) {
    .hero__text {
        font-size: clamp(13px, 1.05vw, 16px);
        line-height: 1.45;
    }
}

.hero__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family:
        'Poppins',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #052085;
    text-decoration: none;
    transition:
        gap 0.15s ease,
        color 0.15s ease;
}
.hero__link svg {
    width: 12px;
    height: 9px;
    transition: transform 0.15s ease;
}
.hero__link:hover {
    color: #0b1646;
    gap: 10px;
}
.hero__link:hover svg {
    transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
    .hero__cell,
    .hero__center {
        transform: none;
        transition: opacity 300ms ease-out;
        transition-delay: 0ms !important;
    }
    .hero__cell-flipper {
        transition: none;
    }
}
.vendors {
    position: relative;
    padding: 48px 0 56px;
    background: #ffffff;
}
.vendors::before,
.vendors::after {
    content: '';
    position: absolute;
    left: 60px;
    right: 60px;
    height: 1px;
    background: #dddddd;
}
@media (max-width: 991px) {
    .vendors::before,
    .vendors::after {
        left: 32px;
        right: 32px;
    }
}
@media (max-width: 767px) {
    .vendors::before,
    .vendors::after {
        left: 16px;
        right: 16px;
    }
}
.vendors::before {
    top: 0;
}
.vendors::after {
    bottom: 0;
}
@media (max-width: 767px) {
    .vendors {
        padding: 32px 0 40px;
    }
}

.vendors__container {
    position: relative;
}

.vendors__swiper {
    width: 100%;
    overflow: hidden;
}

.vendors__track {
    align-items: center;
    transition-timing-function: linear !important;
}

.vendors__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 90px;
    padding: 0 24px;
    opacity: 0.5;
    transition: opacity 0.25s ease;
}
.vendors__item:hover,
.vendors__item:focus-visible {
    opacity: 1;
}
.vendors__item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.25s ease;
}
.vendors__item:hover img,
.vendors__item:focus-visible img {
    filter: grayscale(0);
}
@media (max-width: 767px) {
    .vendors__item {
        height: 64px;
        padding: 0 16px;
    }
}

.products-supply {
    position: relative;
    background: rgba(11, 22, 70, 0.05);
    padding: 0;
    overflow: hidden;
    perspective: 1500px;
}
.products-supply .container {
    padding-inline: 0;
}

.products-supply__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
}
@media (max-width: 1279px) {
    .products-supply__inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

.products-supply__content {
    padding: 80px 60px;
}
@media (max-width: 1279px) {
    .products-supply__content {
        padding: 56px 40px;
    }
}
@media (max-width: 767px) {
    .products-supply__content {
        padding: 32px 20px;
    }
}

.products-supply__layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
@media (min-width: 1700px) {
    .products-supply__layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 36px;
    }
    .products-supply__layout .products-supply__title {
        flex-shrink: 0;
        width: 260px;
    }
}

.products-supply__title {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: 46px;
    line-height: 50px;
    letter-spacing: -1.84px;
    color: #000000;
    margin: 0;
}
@media (max-width: 767px) {
    .products-supply__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -1px;
    }
}

.products-supply__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 5px;
    flex: 1;
    min-width: 0;
}
@media (max-width: 575px) {
    .products-supply__list {
        grid-template-columns: 1fr;
    }
}

.products-supply__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 20px;
    font-family:
        'Poppins',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    text-decoration: none;
    transition:
        color 0.15s ease,
        gap 0.15s ease;
}
.products-supply__link:hover,
.products-supply__link:focus-visible {
    color: #052085;
    gap: 14px;
}
@media (max-width: 767px) {
    .products-supply__link {
        font-size: 17px;
        padding: 4px 12px;
    }
}

.products-supply__arrow {
    display: inline-block;
    width: 14px;
    height: 10px;
    flex-shrink: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'><path d='M0 5h12M9 1l4 4-4 4' stroke='black' stroke-width='1.5' fill='none'/></svg>")
        center/contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'><path d='M0 5h12M9 1l4 4-4 4' stroke='black' stroke-width='1.5' fill='none'/></svg>")
        center/contain no-repeat;
}

.products-supply__gallery {
    display: flex;
    gap: 1px;
    align-self: stretch;
}
@media (max-width: 1279px) {
    .products-supply__gallery {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
}

.products-supply__photo {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    transform-style: preserve-3d;
    transform-origin: top center;
    transform: rotateX(90deg) translateY(-20%);
    opacity: 0;
    will-change: transform, opacity;
    transition:
        transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity calc(700ms / 2) ease-out;
    transition-delay: calc(200ms + var(--i, 0) * 220ms);
}
@media (max-width: 1279px) {
    .products-supply__photo {
        flex: 0 0 220px;
        height: 360px;
        scroll-snap-align: start;
    }
}
@media (max-width: 767px) {
    .products-supply__photo {
        flex-basis: 160px;
        height: 280px;
    }
}
.products-supply.is-revealed .products-supply__photo {
    transform: rotateX(0) translateY(0);
    opacity: 1;
}

.products-supply__flipper {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transition: transform 900ms cubic-bezier(0.4, 0, 0.2, 1);
}
.products-supply__flipper.is-flipped {
    transform: rotateY(180deg);
}

.products-supply__face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}
.products-supply__face img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
}

.products-supply__face--back {
    transform: rotateY(180deg);
}

@media (prefers-reduced-motion: reduce) {
    .products-supply__photo {
        transform: none;
        transition: opacity 300ms ease-out;
        transition-delay: 0ms !important;
    }
    .products-supply__flipper {
        transition: none;
    }
}
.about-us {
    padding: clamp(56px, 7vw, 96px) 0;
    background: #ffffff;
}

.about-us__inner {
    max-width: 1572px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 600ms ease-out,
        transform 600ms ease-out;
}
.is-revealed .about-us__inner {
    opacity: 1;
    transform: none;
}
@media (max-width: 767px) {
    .about-us__inner {
        gap: 32px;
    }
}

.about-us__title {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: clamp(36px, 4.5vw, 65px);
    line-height: 1;
    letter-spacing: -2.6px;
    color: #000000;
}
@media (max-width: 575px) {
    .about-us__title {
        letter-spacing: -1px;
    }
}

.about-us__body {
    width: 100%;
    color: #000000;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.about-us__body p {
    margin: 0;
}
.about-us__body p + p {
    margin-top: 1.5em;
}

.about-us__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family:
        'Poppins',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #052085;
    text-decoration: none;
    transition:
        gap 0.15s ease,
        color 0.15s ease;
}
.about-us__link svg {
    width: 12px;
    height: 9px;
    transition: transform 0.15s ease;
}
.about-us__link:hover {
    color: #0b1646;
    gap: 10px;
}
.about-us__link:hover svg {
    transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
    .about-us__inner {
        transform: none;
        transition: opacity 300ms ease-out;
    }
}
.history-locations {
    background: #ffffff;
    overflow: hidden;
}

.history-locations__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
@media (max-width: 1279px) {
    .history-locations__row {
        grid-template-columns: 1fr;
    }
}

.history {
    position: relative;
    isolation: isolate;
    background: #ededf5;
    padding: clamp(56px, 7vw, 80px) clamp(24px, 6vw, 117px);
    overflow: hidden;
}

.history__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.history__bg::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 30%;
    background: linear-gradient(to right, #f2f3fc, rgba(242, 243, 252, 0));
}

.history__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
    opacity: 0.1;
    transform: scaleY(-1) rotate(180deg);
}

.history__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 984px;
    margin-inline: auto;
}
@media (max-width: 767px) {
    .history__inner {
        gap: 32px;
    }
}

.history__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 738px;
}

.history__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 945px;
}

.history__text {
    color: #000000;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.history__text > * {
    margin: 0;
}
.history__text > * + * {
    margin-top: 1em;
}
.history__text a {
    color: #052085;
    text-decoration: underline;
}
.history__text a:hover {
    color: #0b1646;
}
.history__text strong {
    font-weight: 600;
}
.history__text ul,
.history__text ol {
    padding-left: 1.25em;
}
.history__text li + li {
    margin-top: 0.25em;
}
.history__text h3 {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
}

.history__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family:
        'Poppins',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4f4f4f;
    text-decoration: none;
    transition:
        gap 0.15s ease,
        color 0.15s ease;
}
.history__link svg {
    width: 12px;
    height: 9px;
    transition: transform 0.15s ease;
}
.history__link:hover {
    color: #0b1646;
    gap: 10px;
}
.history__link:hover svg {
    transform: translateX(2px);
}

.history__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 575px) {
    .history__gallery {
        grid-template-columns: 1fr;
    }
}

.history__photo {
    margin: 0;
    aspect-ratio: 480/337;
    overflow: hidden;
    background: #eeeeee;
}
.history__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.locations {
    position: relative;
    isolation: isolate;
    color: #ffffff;
    padding: clamp(56px, 8vw, 143px) clamp(24px, 6vw, 114px);
    background-color: #0b1646;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.locations::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 21, 60, 0.6);
    pointer-events: none;
    z-index: 0;
}

.locations__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 588px;
}
@media (max-width: 767px) {
    .locations__inner {
        gap: 32px;
    }
}

.locations__header {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
@media (max-width: 767px) {
    .locations__header {
        gap: 24px;
    }
}

.locations__title {
    font-weight: 500;
}

.locations__subtitle-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.locations__subtitle {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: #ffffff;
}

.locations__text {
    margin: 0;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
}

.locations__form {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
@media (max-width: 767px) {
    .locations__form {
        gap: 24px;
    }
}

.locations__field {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 476px;
    height: 71px;
    background: #ffffff;
    border: 1.287px solid #c1c1c1;
    border-radius: 25.73px;
    overflow: hidden;
}

.locations__select {
    flex: 1 1 auto;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0 0 0 25.73px;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1;
    color: #4f4f4f;
    cursor: pointer;
    outline: none;
}
.locations__select:focus-visible {
    box-shadow: 0 0 0 3px rgba(5, 32, 133, 0.35);
}
@media (max-width: 575px) {
    .locations__select {
        font-size: 18px;
    }
}

.locations__chevron {
    flex: 0 0 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #052085;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.15s ease;
}
.locations__chevron svg {
    width: 16px;
    height: 22px;
}
.locations__chevron:hover {
    background: #0c4c91;
}

.locations__cta {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 71px;
    padding: 20px 25px;
    background: #052085;
    color: #ffffff;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    transition:
        background 0.15s ease,
        transform 0.15s ease;
}
.locations__cta svg {
    width: 22px;
    height: 12px;
    transition: transform 0.15s ease;
}
.locations__cta:hover {
    background: #0c4c91;
}
.locations__cta:hover svg {
    transform: translateX(3px);
}
.locations__cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.history-locations {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease-out,
        transform 700ms ease-out;
}
.history-locations.is-revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .history-locations {
        transform: none;
        transition: opacity 300ms ease-out;
    }
}
.cta-banner {
    position: relative;
    isolation: isolate;
    background-color: #0b1646;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: clamp(72px, 11vw, 158px) clamp(24px, 6vw, 60px);
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16, 29, 74, 0.8);
    pointer-events: none;
    z-index: 0;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 1095px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease-out,
        transform 700ms ease-out;
}
.is-revealed .cta-banner__inner {
    opacity: 1;
    transform: none;
}
@media (max-width: 767px) {
    .cta-banner__inner {
        gap: 28px;
    }
}

.cta-banner__title {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: clamp(32px, 4.2vw, 65px);
    line-height: 1;
    letter-spacing: -2.6px;
    color: #ffffff;
}
@media (max-width: 575px) {
    .cta-banner__title {
        letter-spacing: -1px;
    }
}

.cta-banner__text {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: clamp(18px, 2.1vw, 30px);
    line-height: 1.35;
    color: #ffffff;
}

.cta-banner__cta {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 71px;
    padding: 20px 25px;
    background: transparent;
    color: #ffffff;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 1.26px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        transform 0.15s ease;
}
.cta-banner__cta svg {
    width: 22px;
    height: 12px;
    transition: transform 0.15s ease;
}
.cta-banner__cta:hover {
    background: #ffffff;
    color: #0b1646;
}
.cta-banner__cta:hover svg {
    transform: translateX(3px);
}
.cta-banner__cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .cta-banner__inner {
        transform: none;
        transition: opacity 300ms ease-out;
    }
}
.about-intro {
    padding: clamp(56px, 8vw, 105px) 0;
    background: #ffffff;
}

.about-intro__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    -moz-column-gap: clamp(40px, 3vw, 60px);
    column-gap: clamp(40px, 3vw, 60px);
    row-gap: 32px;
    align-items: start;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease-out,
        transform 700ms ease-out;
}
.is-revealed .about-intro__row {
    opacity: 1;
    transform: none;
}
@media (max-width: 991px) {
    .about-intro__row {
        grid-template-columns: 1fr;
    }
}

.about-intro__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.about-intro__body {
    color: #000000;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.about-intro__body > * {
    margin: 0;
}
.about-intro__body > * + * {
    margin-top: 1.5em;
}
.about-intro__body a {
    color: #052085;
    text-decoration: underline;
}
.about-intro__body a:hover {
    color: #0b1646;
}
.about-intro__body strong {
    font-weight: 600;
}
.about-intro__body ul,
.about-intro__body ol {
    padding-left: 1.25em;
}
.about-intro__body li + li {
    margin-top: 0.25em;
}
.about-intro__body h3 {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin-top: 1em;
}

@media (prefers-reduced-motion: reduce) {
    .about-intro__row {
        transform: none;
        transition: opacity 300ms ease-out;
    }
}
.about-gallery {
    padding: 0 0 clamp(48px, 6vw, 84px);
    background: #ffffff;
    overflow: hidden;
}

.about-gallery__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    margin-bottom: 24px;
}

.about-gallery__btn {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #0c4c91;
    border-radius: 50%;
    transition:
        color 0.15s ease,
        transform 0.15s ease,
        opacity 0.15s ease;
}
.about-gallery__btn svg {
    width: 24px;
    height: 14px;
}
.about-gallery__btn:hover {
    color: #0b1646;
    transform: translateX(0);
}
.about-gallery__btn--prev:hover {
    transform: translateX(-2px);
}
.about-gallery__btn--next:hover {
    transform: translateX(2px);
}
.about-gallery__btn:focus-visible {
    outline: 2px solid #052085;
    outline-offset: 3px;
}
.about-gallery__btn.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.about-gallery__swiper {
    overflow: visible;
    width: 100%;
}

.about-gallery__slide {
    height: auto;
    aspect-ratio: 687/426;
    overflow: hidden;
    background: #eeeeee;
}

.about-gallery__link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}
.about-gallery__link img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.about-gallery__link:hover img {
    transform: scale(1.04);
}
.about-gallery__link:focus-visible {
    outline: 3px solid #052085;
    outline-offset: 4px;
}

.about-gallery {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease-out,
        transform 700ms ease-out;
}
.about-gallery.is-revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .about-gallery {
        transform: none;
        transition: opacity 300ms ease-out;
    }
    .about-gallery__link img {
        transition: none;
    }
}
.about-quality {
    position: relative;
    isolation: isolate;
    background: #0b1646;
    color: #ffffff;
    padding: clamp(64px, 8vw, 146px) 0;
    overflow: hidden;
}
.about-quality::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url('../images/misc/al_quality-bg.webp') left center/auto 100% no-repeat;
    opacity: 0.04;
}

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

.about-quality__row {
    display: grid;
    grid-template-columns: minmax(0, 440fr) minmax(0, 1514fr);
    -moz-column-gap: clamp(48px, 6vw, 120px);
    column-gap: clamp(48px, 6vw, 120px);
    row-gap: 56px;
    align-items: center;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease-out,
        transform 700ms ease-out;
}
.is-revealed .about-quality__row {
    opacity: 1;
    transform: none;
}
@media (max-width: 1279px) {
    .about-quality__row {
        grid-template-columns: 1fr;
    }
}

.about-quality__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}
@media (max-width: 767px) {
    .about-quality__intro {
        gap: 28px;
    }
}

.about-quality__text {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #ffffff;
}

.about-quality__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: #ffffff;
    color: #000000;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.1;
    text-decoration: none;
    border-radius: 20px;
    cursor: pointer;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        transform 0.15s ease;
}
.about-quality__cta svg {
    width: 22px;
    height: 12px;
    transition: transform 0.15s ease;
}
.about-quality__cta:hover {
    background: #e5e6f8;
}
.about-quality__cta:hover svg {
    transform: translateX(3px);
}
.about-quality__cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 3px;
}

.about-quality__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: clamp(20px, 3vw, 67px);
    column-gap: clamp(20px, 3vw, 67px);
    row-gap: clamp(20px, 3vw, 80px);
}
@media (max-width: 1279px) {
    .about-quality__features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 991px) {
    .about-quality__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575px) {
    .about-quality__features {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }
}

.about-quality__card {
    background: #161f54;
    border: 1px solid #4c5681;
    padding: 35px 28px;
    display: grid;
    grid-template-columns: 33px 1fr;
    -moz-column-gap: 26px;
    column-gap: 26px;
    row-gap: 6px;
    min-height: 200px;
    align-content: start;
}

.about-quality__icon {
    grid-column: 1;
    grid-row: 1;
    width: 33px;
    height: 34px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

.about-quality__card-body {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.about-quality__card-title {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
}

.about-quality__card-text {
    margin: 0;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
    .about-quality__row {
        transform: none;
        transition: opacity 300ms ease-out;
    }
}
.about-history {
    padding: clamp(56px, 8vw, 105px) 0;
    background: #ffffff;
}

.about-history__row {
    display: grid;
    grid-template-columns: minmax(0, 945fr) minmax(0, 984fr);
    -moz-column-gap: clamp(40px, 6vw, 120px);
    column-gap: clamp(40px, 6vw, 120px);
    row-gap: 40px;
    align-items: center;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease-out,
        transform 700ms ease-out;
}
.is-revealed .about-history__row {
    opacity: 1;
    transform: none;
}
@media (max-width: 991px) {
    .about-history__row {
        grid-template-columns: 1fr;
    }
}

.about-history__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 738px;
}

.about-history__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.about-history__text {
    color: #000000;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.about-history__text > * {
    margin: 0;
}
.about-history__text > * + * {
    margin-top: 1em;
}
.about-history__text a {
    color: #052085;
    text-decoration: underline;
}
.about-history__text a:hover {
    color: #0b1646;
}
.about-history__text strong {
    font-weight: 600;
}
.about-history__text ul,
.about-history__text ol {
    padding-left: 1.25em;
}
.about-history__text li + li {
    margin-top: 0.25em;
}
.about-history__text h3 {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
}

.about-history__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family:
        'Poppins',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333333;
    text-decoration: none;
    transition:
        gap 0.15s ease,
        color 0.15s ease;
}
.about-history__link svg {
    width: 12px;
    height: 9px;
    transition: transform 0.15s ease;
}
.about-history__link:hover {
    color: #0b1646;
    gap: 10px;
}
.about-history__link:hover svg {
    transform: translateX(2px);
}

.about-history__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 575px) {
    .about-history__gallery {
        grid-template-columns: 1fr;
    }
}

.about-history__photo {
    margin: 0;
    aspect-ratio: 480/337;
    overflow: hidden;
    background: #eeeeee;
}
.about-history__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .about-history__row {
        transform: none;
        transition: opacity 300ms ease-out;
    }
}
.about-content {
    position: relative;
    isolation: isolate;
    background-color: #0b1646;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: clamp(64px, 10vw, 207px) 0;
    overflow: hidden;
}
.about-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}
@media (min-width: 992px) {
    .about-content::before {
        right: 50%;
    }
}

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

.about-content__row {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 992px) {
    .about-content__row {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content__panel {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 3vw, 50px);
    max-width: 876px;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease-out,
        transform 700ms ease-out;
}
.is-revealed .about-content__panel {
    opacity: 1;
    transform: none;
}
@media (min-width: 992px) {
    .about-content__panel {
        grid-column: 1;
        padding-right: clamp(32px, 4vw, 73px);
    }
}

.about-content__text {
    margin: 0;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    max-width: 786px;
}

.about-content__cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: transparent;
    color: #ffffff;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 1.26px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        transform 0.15s ease;
}
.about-content__cta svg {
    width: 22px;
    height: 12px;
    transition: transform 0.15s ease;
}
.about-content__cta:hover {
    background: #ffffff;
    color: #0b1646;
}
.about-content__cta:hover svg {
    transform: translateX(3px);
}
.about-content__cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .about-content__panel {
        transform: none;
        transition: opacity 300ms ease-out;
    }
}
.about-family {
    padding: clamp(64px, 8vw, 129px) 0;
    background: #ffffff;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease-out,
        transform 700ms ease-out;
}
.about-family.is-revealed {
    opacity: 1;
    transform: none;
}

.about-family__head {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 100px);
}

.about-family__text {
    margin: 50px auto 0;
    max-width: 1298px;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #000000;
}
@media (max-width: 767px) {
    .about-family__text {
        margin-top: 32px;
        font-size: 18px;
    }
}

.about-family__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    -moz-column-gap: clamp(20px, 2.5vw, 39px);
    column-gap: clamp(20px, 2.5vw, 39px);
    row-gap: clamp(36px, 4vw, 50px);
}
@media (min-width: 576px) {
    .about-family__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .about-family__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 992px) {
    .about-family__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (min-width: 1600px) {
    .about-family__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.about-family__card {
    display: grid;
    grid-template-columns: 20px 1fr;
    -moz-column-gap: 10px;
    column-gap: 10px;
    align-items: start;
    min-height: 96px;
}

.about-family__card-pin {
    width: 16px;
    height: 20px;
    color: #8b93b9;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-family__card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.about-family__card-title {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #000000;
}

.about-family__card-loc {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
}

.about-family__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-family:
        'Poppins',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.28px;
    color: #052085;
    text-decoration: none;
    transition:
        gap 0.15s ease,
        color 0.15s ease;
}
.about-family__card-link svg {
    width: 12px;
    height: 6px;
    transition: transform 0.15s ease;
}
.about-family__card-link:hover {
    color: #0b1646;
    gap: 12px;
}
.about-family__card-link:hover svg {
    transform: translateX(2px);
}

.about-family__cta-row {
    display: flex;
    justify-content: center;
    margin-top: clamp(48px, 6vw, 90px);
}

.about-family__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: transparent;
    color: #333333;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 1.26px;
    border: 1px solid #000000;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        transform 0.15s ease;
}
.about-family__btn svg {
    width: 22px;
    height: 12px;
    transition: transform 0.15s ease;
}
.about-family__btn:hover {
    background: #000000;
    color: #ffffff;
}
.about-family__btn:hover svg {
    transform: translateX(3px);
}
.about-family__btn:focus-visible {
    outline: 2px solid #052085;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .about-family {
        transform: none;
        transition: opacity 300ms ease-out;
    }
}
.history-intro {
    padding: clamp(56px, 8vw, 105px) 0;
    background: #ffffff;
}
.history-intro .section-title {
    color: #333333;
}

.history-intro__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    -moz-column-gap: clamp(40px, 3vw, 60px);
    column-gap: clamp(40px, 3vw, 60px);
    row-gap: 32px;
    align-items: start;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease-out,
        transform 700ms ease-out;
}
.is-revealed .history-intro__row {
    opacity: 1;
    transform: none;
}
@media (max-width: 991px) {
    .history-intro__row {
        grid-template-columns: 1fr;
    }
}

.history-intro__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.history-intro__body {
    color: #000000;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.history-intro__body > * {
    margin: 0;
}
.history-intro__body > * + * {
    margin-top: 1.5em;
}
.history-intro__body a {
    color: #052085;
    text-decoration: underline;
}
.history-intro__body a:hover {
    color: #0b1646;
}
.history-intro__body strong {
    font-weight: 600;
}
.history-intro__body ul,
.history-intro__body ol {
    padding-left: 1.25em;
}
.history-intro__body li + li {
    margin-top: 0.25em;
}
.history-intro__body h3 {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin-top: 1em;
}

@media (prefers-reduced-motion: reduce) {
    .history-intro__row {
        transform: none;
        transition: opacity 300ms ease-out;
    }
}
.history-blocks {
    background: #f2f3fc;
    padding: clamp(56px, 8vw, 105px) 0;
}

.history-blocks__layout {
    display: grid;
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    -moz-column-gap: clamp(40px, 5vw, 96px);
    column-gap: clamp(40px, 5vw, 96px);
}
@media (max-width: 991px) {
    .history-blocks__layout {
        grid-template-columns: 1fr;
    }
}

.history-blocks__nav-wrap {
    position: relative;
}
@media (max-width: 991px) {
    .history-blocks__nav-wrap {
        display: none;
    }
}

.history-blocks__nav {
    position: sticky;
    top: clamp(80px, 12vh, 120px);
}

.history-blocks__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.history-blocks__nav-list::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 5.5px;
    width: 1px;
    background: #c1c1c1;
    pointer-events: none;
}

.history-blocks__nav-item a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000000;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1;
    transition: color 0.25s ease;
}
.history-blocks__nav-item a:focus-visible {
    outline: 2px solid #052085;
    outline-offset: 4px;
    border-radius: 4px;
}
.history-blocks__nav-item.is-active a {
    color: #052085;
}

.history-blocks__nav-dot {
    position: relative;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #052085;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}
.history-blocks__nav-item:not(.is-active) .history-blocks__nav-dot {
    border-color: #c1c1c1;
}
.history-blocks__nav-item.is-active .history-blocks__nav-dot {
    background: #052085;
    border-color: #052085;
    transform: scale(1.1);
}

.history-blocks__list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.history-blocks__article {
    display: grid;
    grid-template-columns: 1fr;
    -moz-column-gap: clamp(32px, 4vw, 73px);
    column-gap: clamp(32px, 4vw, 73px);
    row-gap: 32px;
    align-items: start;
    padding-bottom: 50px;
    border-bottom: 1px solid #c1c1c1;
    scroll-margin-top: 120px;
}
@media (min-width: 768px) {
    .history-blocks__article:has(> .history-blocks__image) {
        grid-template-columns: minmax(0, 605fr) minmax(0, 1039fr);
    }
}
.history-blocks__article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.history-blocks__article {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 600ms ease-out,
        transform 600ms ease-out;
}
.history-blocks__article.is-revealed {
    opacity: 1;
    transform: none;
}

.history-blocks__image {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 1039/830;
}
.history-blocks__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
@media (max-width: 767px) {
    .history-blocks__image {
        aspect-ratio: 4/3;
    }
}

.history-blocks__rich {
    color: #000000;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    max-width: 660px;
}
.history-blocks__rich > * {
    margin: 0;
}
.history-blocks__rich > * + * {
    margin-top: 1em;
}
.history-blocks__rich h2 {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.84px;
    color: #000000;
    margin-bottom: 30px;
}
.history-blocks__rich h3 {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
}
.history-blocks__rich p {
    line-height: 1.5;
}
.history-blocks__rich a {
    color: #052085;
    text-decoration: underline;
}
.history-blocks__rich a:hover {
    color: #0b1646;
}
.history-blocks__rich strong {
    font-weight: 600;
}
.history-blocks__rich em {
    font-style: italic;
}
.history-blocks__rich ul,
.history-blocks__rich ol {
    padding-left: 1.25em;
}
.history-blocks__rich li + li {
    margin-top: 0.25em;
}
.history-blocks__rich blockquote {
    padding-left: 1em;
    border-left: 3px solid #052085;
    font-style: italic;
    color: #333333;
}
.history-blocks__rich img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-block: 1em;
}

@media (prefers-reduced-motion: reduce) {
    .history-blocks__article {
        transform: none;
        transition: opacity 300ms ease-out;
    }
    .history-blocks__nav-item a,
    .history-blocks__nav-dot {
        transition: none;
    }
}
.products {
    background: #ffffff;
}
@media (min-width: 1280px) {
    .products {
        --products-bg-split: calc((50vw - min(50vw, 1920px / 2)) + 60px + 345px);
        background: linear-gradient(to right, #f2f3fc 0, #f2f3fc var(--products-bg-split), #ffffff var(--products-bg-split), #ffffff 100%);
    }
}

.products__layout {
    display: grid;
    grid-template-columns: 1fr;
    -moz-column-gap: clamp(40px, 5vw, 96px);
    column-gap: clamp(40px, 5vw, 96px);
    row-gap: 40px;
    padding-block: clamp(40px, 6vw, 87px);
}
@media (min-width: 1280px) {
    .products__layout {
        grid-template-columns: minmax(0, 345px) minmax(0, 1fr);
    }
}

.products__content {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6vw, 85px);
    min-width: 0;
}

.products-menu {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(11, 22, 70, 0.08);
    overflow: hidden;
}
@media (min-width: 1280px) {
    .products-menu {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
    }
}

.products-menu__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: transparent;
}
.products-menu__summary::-webkit-details-marker {
    display: none;
}
.products-menu__summary::marker {
    display: none;
}
.products-menu__summary:hover .products-menu__summary-current {
    color: #0b1646;
}
.products-menu__summary:focus-visible {
    outline: 2px solid #052085;
    outline-offset: -2px;
}
.products-menu[open] .products-menu__summary {
    border-bottom: 1px solid #dddddd;
}
@media (min-width: 1280px) {
    .products-menu__summary {
        display: none;
    }
}

.products-menu__summary-text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.products-menu__summary-eyebrow {
    font-family:
        'Poppins',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #696767;
    line-height: 1;
}

.products-menu__summary-current {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #052085;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.products-menu__summary-chevron {
    flex: 0 0 auto;
    width: 14px;
    height: 9px;
    color: #052085;
    transition: transform 0.25s ease;
}
.products-menu[open] .products-menu__summary-chevron {
    transform: rotate(180deg);
}

.products-menu__panel {
    padding: 8px 22px 14px;
}
@media (min-width: 1280px) {
    .products-menu__panel {
        padding: 0 30px 30px;
    }
}

.products-menu__title {
    margin: 0 0 23px;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1.6px;
    color: #000000;
}
@media (max-width: 1279px) {
    .products-menu__title {
        display: none;
    }
}

.products-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.products-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 10px;
    font-family:
        'Poppins',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #979696;
    transition: color 0.15s ease;
}
li:last-child .products-menu__link {
    border-bottom: 0;
}
.products-menu__link svg {
    width: 7px;
    height: 12px;
    flex-shrink: 0;
    color: #000000;
    transition:
        transform 0.15s ease,
        color 0.15s ease;
}
.products-menu__link:hover {
    color: #052085;
}
.products-menu__link:hover svg {
    transform: translateX(2px);
    color: #052085;
}
.products-menu__link.is-active {
    color: #052085;
}
.products-menu__link.is-active svg {
    color: #052085;
}

.product-article {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 60px);
    align-items: center;
    grid-template-areas: 'content' 'image';
}
@media (min-width: 992px) {
    .product-article--image-right {
        grid-template-columns: minmax(0, 7fr) minmax(0, 8fr);
        grid-template-areas: 'content image';
    }
    .product-article--image-left {
        grid-template-columns: minmax(0, 8fr) minmax(0, 7fr);
        grid-template-areas: 'image content';
    }
}
.product-article--image-center {
    grid-template-columns: 1fr;
    grid-template-areas: 'image' 'content';
    justify-items: center;
    text-align: center;
}

.product-article__content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    min-width: 0;
}
.product-article--image-center .product-article__content {
    align-items: center;
    max-width: 800px;
    margin-inline: auto;
}

.product-article__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.product-article--image-center .product-article__head {
    align-items: center;
}

.product-article__title {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: clamp(32px, 4vw, 65px);
    line-height: 1;
    letter-spacing: -2.6px;
    color: #000000;
}
@media (max-width: 575px) {
    .product-article__title {
        letter-spacing: -1px;
    }
}

.product-article__body {
    color: #000000;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
}
.product-article__body > * {
    margin: 0;
}
.product-article__body > * + * {
    margin-top: 1em;
}
.product-article__body h2 {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.1;
    letter-spacing: -1.84px;
    margin-top: 1.2em;
}
.product-article__body h2:first-child {
    margin-top: 0;
}
.product-article__body h3 {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.2;
    margin-top: 1em;
}
.product-article__body h4 {
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 1em;
}
.product-article__body p {
    line-height: 1.5;
}
.product-article__body a {
    color: #052085;
    text-decoration: underline;
}
.product-article__body a:hover {
    color: #0b1646;
}
.product-article__body strong {
    font-weight: 600;
}
.product-article__body em {
    font-style: italic;
}
.product-article__body ul,
.product-article__body ol {
    padding: 0;
    list-style: none;
}
.product-article__body ul > li,
.product-article__body ol > li {
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}
.product-article__body ul > li + li,
.product-article__body ol > li + li {
    margin-top: 0.75em;
}
.product-article__body ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 14px;
    height: 14px;
    background: #052085;
}
.product-article__body ol {
    counter-reset: ord;
}
.product-article__body ol > li {
    counter-increment: ord;
}
.product-article__body ol > li::before {
    content: counter(ord) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: #052085;
    font-weight: 600;
}
.product-article__body blockquote {
    padding-left: 1em;
    border-left: 3px solid #052085;
    font-style: italic;
    color: #333333;
}
.product-article__body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-block: 1em;
}

.product-article__supplier-link {
    --supp-ring: 6px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    background: #052085;
    color: #ffffff;
    border: var(--supp-ring) solid rgba(139, 147, 185, 0.5);
    border-radius: 20px;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background 0.15s ease,
        transform 0.15s ease;
}
.product-article__supplier-link > svg:first-child {
    width: 14px;
    height: 17px;
    flex-shrink: 0;
}
.product-article__supplier-link > svg:last-child {
    width: 20px;
    height: 11px;
    flex-shrink: 0;
    transition: transform 0.15s ease;
}
@media (min-width: 992px) {
    .product-article__supplier-link {
        position: absolute;
        top: -10px;
        right: -12px;
    }
}
@media (max-width: 991px) {
    .product-article__supplier-link {
        --supp-ring: 4px;
        align-self: flex-start;
        margin-bottom: 8px;
    }
}
.product-article__supplier-link:hover {
    background: #ffffff;
    color: #052085;
}
.product-article__supplier-link:hover > svg:last-child {
    transform: translateX(3px);
}
.product-article__supplier-link:focus-visible {
    outline: 2px solid #052085;
    outline-offset: 4px;
}

.product-article__image {
    grid-area: image;
    margin: 0;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #eeeeee;
}
.product-article__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.product-article--image-center .product-article__image {
    max-width: 100%;
}

.product-supplier {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: #0b1646;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: clamp(40px, 5vw, 76px) clamp(24px, 4vw, 96px);
}
.product-supplier::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 22, 70, 0.7);
    pointer-events: none;
    z-index: 0;
}
@media (min-width: 1280px) {
    .product-supplier {
        margin-left: calc(50vw - min(50vw, 1920px / 2) + 60px + 345px);
        padding-left: clamp(60px, 6vw, 130px);
        padding-right: calc(50vw - min(50vw, 1920px / 2) + 60px);
    }
}

.product-supplier__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media (min-width: 1280px) {
    .product-supplier__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: clamp(20px, 2vw, 40px);
    }
}

.product-supplier__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 584px;
}

.product-supplier__title {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.84px;
    color: #ffffff;
}

.product-supplier__text {
    margin: 0;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
}

.product-supplier__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 576px) {
    .product-supplier__form {
        flex-direction: row;
        align-items: center;
    }
}

.product-supplier__field {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 476px;
    height: 71px;
    background: #ffffff;
    border: 1.287px solid #c1c1c1;
    border-radius: 25.73px;
    overflow: hidden;
}

.product-supplier__select {
    flex: 1 1 auto;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0 0 0 25.73px;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1;
    color: #4f4f4f;
    cursor: pointer;
    outline: none;
}
.product-supplier__select:focus-visible {
    box-shadow: 0 0 0 3px rgba(5, 32, 133, 0.35);
}
@media (max-width: 575px) {
    .product-supplier__select {
        font-size: 18px;
    }
}

.product-supplier__chevron {
    flex: 0 0 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #052085;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.15s ease;
}
.product-supplier__chevron svg {
    width: 16px;
    height: 22px;
}
.product-supplier__chevron:hover {
    background: #0c4c91;
}

.product-supplier__cta {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    align-self: flex-start;
    flex-shrink: 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 71px;
    padding: 20px 25px;
    background: #052085;
    color: #ffffff;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    transition:
        background 0.15s ease,
        transform 0.15s ease;
}
.product-supplier__cta svg {
    width: 22px;
    height: 12px;
    transition: transform 0.15s ease;
}
.product-supplier__cta:hover {
    background: #0c4c91;
}
.product-supplier__cta:hover svg {
    transform: translateX(3px);
}
.product-supplier__cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.contact-title {
    padding: clamp(48px, 8vw, 105px) 0 clamp(40px, 5vw, 64px);
    background: #ffffff;
}

.contact-title__heading {
    text-align: center;
    max-width: 1188px;
    margin-inline: auto;
}

.contact-map {
    position: relative;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.contact-map__image {
    order: 2;
    margin-top: clamp(32px, 5vw, 64px);
    position: relative;
    width: 100%;
    aspect-ratio: 2340/1107;
    overflow: hidden;
    background: #eaeef2;
}
.contact-map__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
}
@media (max-width: 767px) {
    .contact-map__image {
        aspect-ratio: 4/3;
    }
}

.contact-map__container {
    order: 1;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: #f2f3fc;
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.1);
    padding: clamp(32px, 4vw, 87px) clamp(20px, 3vw, 122px);
    max-width: 1078px;
    margin-inline: auto;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease-out,
        transform 700ms ease-out;
}
.contact-card.is-revealed {
    opacity: 1;
    transform: none;
}

@media (min-width: 1900px) {
    .contact-map {
        display: grid;
        grid-template-columns: 100%;
    }
    .contact-map__image {
        grid-area: 1/1;
        aspect-ratio: auto;
        width: 100%;
        height: 100%;
        margin-top: 0;
    }
    .contact-map__container {
        grid-area: 1/1;
        padding-top: clamp(60px, 7vw, 140px);
    }
    .contact-card {
        margin-top: 0;
        margin-inline: 0;
        max-width: 50%;
    }
}
.contact-card__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-bottom: clamp(40px, 4vw, 73px);
}
@media (min-width: 992px) {
    .contact-card__info {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.contact-card__info-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card__info-label {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family:
        'Poppins',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
}

.contact-card__info-icon {
    display: block;
    flex-shrink: 0;
}

.contact-card__info-text {
    margin: 0;
    font-style: normal;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #333333;
    max-width: 240px;
}
.contact-card__info-text a {
    color: #333333;
    text-decoration: none;
}
.contact-card__info-text a:hover {
    color: #052085;
}

.contact-card__socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.contact-card__socials a {
    display: inline-flex;
    line-height: 0;
    border-radius: 50%;
    transition:
        transform 0.15s ease,
        opacity 0.15s ease;
}
.contact-card__socials a img {
    display: block;
    width: 29px;
    height: 29px;
}
.contact-card__socials a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}
.contact-card__socials a:focus-visible {
    outline: 2px solid #052085;
    outline-offset: 3px;
}

.contact-card__form-title {
    margin: 0 0 40px;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.84px;
    color: #0b1646;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 2.5vw, 38px);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 2vw, 30px);
}
@media (min-width: 576px) {
    .contact-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-form__field--labeled {
    gap: 5px;
}

.contact-form__label {
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #000000;
}

.contact-form__field input[type='text'],
.contact-form__field input[type='tel'],
.contact-form__field input[type='email'],
.contact-form__field textarea {
    display: block;
    width: 100%;
    padding: 11px 12px;
    background: #ffffff;
    border: 1px solid #c1c1c1;
    border-radius: 0;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #333333;
    outline: none;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.contact-form__field input[type='text']::-moz-placeholder,
.contact-form__field input[type='tel']::-moz-placeholder,
.contact-form__field input[type='email']::-moz-placeholder,
.contact-form__field textarea::-moz-placeholder {
    color: #4f4f4f;
}
.contact-form__field input[type='text']::placeholder,
.contact-form__field input[type='tel']::placeholder,
.contact-form__field input[type='email']::placeholder,
.contact-form__field textarea::placeholder {
    color: #4f4f4f;
}
.contact-form__field input[type='text']:focus-visible,
.contact-form__field input[type='text']:focus,
.contact-form__field input[type='tel']:focus-visible,
.contact-form__field input[type='tel']:focus,
.contact-form__field input[type='email']:focus-visible,
.contact-form__field input[type='email']:focus,
.contact-form__field textarea:focus-visible,
.contact-form__field textarea:focus {
    border-color: #052085;
    box-shadow: 0 0 0 3px rgba(5, 32, 133, 0.12);
}
.contact-form__field input[type='text'].error,
.contact-form__field input[type='tel'].error,
.contact-form__field input[type='email'].error,
.contact-form__field textarea.error {
    border-color: #f44336;
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__select {
    position: relative;
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #c1c1c1;
}
.contact-form__select select {
    flex: 1;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    padding: 11px 12px;
    padding-right: 36px;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #4f4f4f;
    outline: none;
    cursor: pointer;
    text-overflow: ellipsis;
}
.contact-form__select select:focus-visible {
    box-shadow: 0 0 0 3px rgba(5, 32, 133, 0.12);
}

.contact-form__select-chevron {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333333;
    pointer-events: auto;
}
.contact-form__select-chevron svg {
    width: 16px;
    height: 16px;
}

.contact-form__file {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #c1c1c1;
    padding-right: 5px;
}

.contact-form__file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.contact-form__file-placeholder {
    padding: 11px 12px;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #4f4f4f;
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.contact-form__file-browse {
    background: #dddddd;
    color: #000000;
    padding: 6px 12px;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 1.3;
    text-transform: uppercase;
    pointer-events: none;
}

.contact-form__submit {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    height: 71px;
    background: #052085;
    color: #ffffff;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 0.15s ease,
        transform 0.15s ease;
}
.contact-form__submit svg {
    width: 22px;
    height: 12px;
    transition: transform 0.15s ease;
}
.contact-form__submit:hover {
    background: #0c4c91;
}
.contact-form__submit:hover svg {
    transform: translateX(3px);
}
.contact-form__submit:focus-visible {
    outline: 3px solid rgba(5, 32, 133, 0.4);
    outline-offset: 3px;
}
.contact-form__submit.btn--loading {
    opacity: 0.7;
    cursor: wait;
}

@media (prefers-reduced-motion: reduce) {
    .contact-card {
        transform: none;
        transition: opacity 300ms ease-out;
    }
}

#map {
    min-height: 600px;
    margin-left: 400px;
    z-index: 0;
}

@media (max-width: 900px) {
    #map {
        margin-left: 0;
    }
}

.map-popup {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    color: #000;
    text-align: center;
    font-size: 16px;
}
.map-popup__title {
    color: var(--accent-color-2, #001a53);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    /* 15.4px */
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.map-popup__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.map-popup__phone a {
    color: #000;
    text-decoration: none;
}
.map-popup__logo {
    display: flex;
    justify-content: center;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}
.map-popup__logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
/* Distributors intro — centered title + description above the supplier finder */
.distributors-intro {
    padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 44px);
    background: #ffffff;
    text-align: center;
}

.distributors-intro__inner {
    max-width: 980px;
}

.distributors-intro__title {
    margin: 0;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 300;
    font-size: clamp(36px, 4.5vw, 65px);
    line-height: 1;
    letter-spacing: -2.6px;
    color: #000000;
}

@media (max-width: 575px) {
    .distributors-intro__title {
        letter-spacing: -1px;
    }
}

.distributors-intro__text {
    margin: 24px auto 0;
    max-width: 760px;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

/* Find your local supplier — lavender bar with label, hint, select + FIND button */
.supplier-finder {
    background: rgba(11, 22, 70, 0.05);
    padding: 24px 0;
}

.supplier-finder__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(16px, 4vw, 56px);
}

.supplier-finder__label {
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2;
    color: #000000;
}

.supplier-finder__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.supplier-finder__hint {
    margin: 0;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
    text-align: center;
}

.supplier-finder__controls {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

@media (max-width: 575px) {
    .supplier-finder__controls {
        flex-direction: column;
        width: 100%;
    }
}

.supplier-finder__select {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}

.supplier-finder__input {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    min-width: 280px;
    height: 44px;
    padding: 0 44px 0 16px;
    background: #ffffff;
    border: 1px solid #c1c1c1;
    border-radius: 6px;
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1;
    color: #696767;
    cursor: pointer;
    outline: none;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.supplier-finder__input:focus-visible {
    border-color: #052085;
    box-shadow: 0 0 0 3px rgba(5, 32, 133, 0.2);
}

@media (max-width: 575px) {
    .supplier-finder__input {
        min-width: 0;
        width: 100%;
    }
}

.supplier-finder__chevron {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    display: flex;
    width: 16px;
    height: 16px;
    color: #696767;
    pointer-events: none;
}

.supplier-finder__chevron svg {
    width: 100%;
    height: 100%;
}

.supplier-finder__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px;
    padding: 0 22px;
    background: #052085;
    color: #ffffff;
    font-family:
        'Fustat',
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.supplier-finder__btn svg {
    width: 20px;
    height: 11px;
    transition: transform 0.15s ease;
}

.supplier-finder__btn:hover {
    background: #0c4c91;
}

.supplier-finder__btn:hover svg {
    transform: translateX(3px);
}

.map-popup__link,
.map-popup__link a {
    color: var(--accent-color, #003da6);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}
