:root {
    --page: #f5f5f5;
    --panel: #ffffff;
    --ink: #202020;
    --muted: #5f5f5f;
    --line: #d8d8d8;
    --blue: #004a96;
    --cyan: #21a0d2;
    --green: #0d8044;
    --orange: #f39500;
    --red: #c50022;
    --shadow: 0 18px 48px rgba(0, 0, 0, .11);
    --shell: 1246px;
    --gap: 16px;
}

@font-face {
    font-family: "Helvetica Neue LT W05_45";
    font-display: swap;
    font-weight: 400;
    src: url("https://www.basf.com/6b43fb6d-89b8-4c64-a8e0-c8fb1f66f40f.b6d9e19f61ba7e29.woff2") format("woff2");
}

@font-face {
    font-family: "Helvetica Neue LT W05_45";
    font-display: swap;
    font-weight: 700;
    src: url("https://www.basf.com/800da3b0-675f-465f-892d-d76cecbdd5b1.9ef1925145b9501e.woff2") format("woff2");
}

@font-face {
    font-family: "wxp-icons";
    font-display: block;
    src: url("/assets/fonts/wxp-icons.woff2") format("woff2");
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: "Helvetica Neue LT W05_45", "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

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

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

a:hover {
    color: var(--blue);
}

.shell {
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    z-index: 20;
    width: auto;
    height: auto;
    clip: auto;
    left: 16px;
    top: 16px;
    padding: 10px 14px;
    background: var(--ink);
    color: white;
}

.site-header {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 65537;
    display: flex;
    height: 80px;
    background: transparent;
    border: 0;
}

.site-header::before,
.site-header::after {
    display: block;
    content: "";
    flex: 1 1 auto;
    background: rgba(0, 0, 0, .3);
}

.site-header::after {
    background: #21a0d2;
}

.site-header--sticky {
    position: fixed;
    top: 0;
    height: auto;
    padding: 0;
    background: rgba(0, 0, 0, .85);
    animation: header-in .24s ease-out;
}

.site-header--sticky::before,
.site-header--sticky::after {
    display: none;
}

.site-header--section {
    top: 40px;
}

.site-header--section .primary-nav {
    display: none;
}

.site-header--section .region-brand {
    padding-left: 8px;
}

.menu-top-close,
.global-home-link {
    display: none;
}

.menu-top-close {
    position: relative;
    width: 54px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-top-close::before,
.menu-top-close::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 28px;
    height: 3px;
    background: #fff;
}

.menu-top-close::before {
    transform: rotate(45deg);
}

.menu-top-close::after {
    transform: rotate(-45deg);
}

.global-home-link {
    align-items: center;
    gap: 9px;
    padding: 0 24px 0 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.global-home-link span {
    font-size: 24px;
    line-height: 1;
}

.menu-open .menu-top-close,
.menu-open .global-home-link {
    display: flex;
}

.menu-open .region-brand,
.menu-open .section-menu-button {
    display: none;
}

.section-menu-button {
    display: none;
    place-content: center;
    gap: 6px;
    width: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-header--section .section-menu-button {
    display: grid;
}

.section-menu-button span {
    width: 25px;
    height: 4px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-open .section-menu-button span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.menu-open .section-menu-button span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@keyframes header-in {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-shell {
    width: 90.6%;
    max-width: 1246px;
    margin: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
}

.site-header--sticky .header-shell {
    width: 90.6%;
    margin: 0 auto;
    max-width: 1246px;
    min-height: 66px;
    gap: 0;
}

@media (min-width: 1200px) {
    .header-shell,
    .site-header--sticky .header-shell {
        width: min(78.48%, 1246px);
    }
}

.nav-bar {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 80px;
    align-items: stretch;
    justify-content: flex-start;
    background: rgba(0, 0, 0, .3);
    color: #fff;
}

.site-header--sticky .nav-bar {
    flex: 1 1 auto;
    max-width: none;
    min-height: 66px;
    background: transparent;
}

.region-brand {
    display: flex;
    position: relative;
    margin-left: 0;
    min-width: 0;
    align-items: center;
    padding: 0 24px;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

@media (min-width: 1600px) {
    .region-brand {
        margin-left: 0;
    }
}

.site-header--sticky .region-brand {
    min-width: auto;
    margin-left: 0;
    padding-left: 0;
    padding-right: 28px;
}

.region-brand:hover,
.region-brand.is-active {
    color: #fff;
}

.primary-nav__label {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
}

.primary-nav__label::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #fff;
    opacity: 0;
    transition: opacity .25s ease-out;
}

.primary-nav a:hover .primary-nav__label::after,
.primary-nav a.is-active .primary-nav__label::after {
    opacity: 1;
}

.primary-nav__chevron {
    display: none;
}

.primary-nav {
    display: flex;
    align-items: stretch;
    margin-left: 0;
}

.primary-nav a {
    display: flex;
    position: relative;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border-left: 0;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    color: #fff;
}

.site-header--sticky .primary-nav a {
    padding: 0 10px;
}

.site-header--sticky .primary-nav a:hover,
.site-header--sticky .primary-nav a.is-active {
    background: transparent;
}

.site-header--sticky .region-brand::after,
.site-header--sticky .primary-nav a::after {
    display: none;
}

.site-header--sticky .primary-nav__chevron {
    display: none;
}

.nav-toggle {
    display: none;
}

.primary-nav__mobile-actions {
    display: none;
}

.menu-open {
    overflow: hidden;
}

.menu-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 65536;
    display: none;
    background: rgba(0, 0, 0, .85);
    color: #fff;
    pointer-events: none;
}

.site-header--sticky ~ .menu-overlay {
    top: 0;
}

.menu-overlay.is-open {
    display: block;
}

.menu-overlay__shell {
    width: 90.6%;
    max-width: 1246px;
    margin: 0 auto;
    min-height: 100vh;
    padding: 40px 0 80px;
    pointer-events: none;
}

@media (min-width: 1200px) {
    .menu-overlay__shell {
        width: min(78.48%, 1246px);
    }
}

.menu-overlay__top {
    display: none;
    min-height: 80px;
    align-items: center;
    gap: 28px;
    padding-left: 216px;
}

.menu-overlay__close {
    position: relative;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-overlay__close::before,
.menu-overlay__close::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 18px;
    width: 31px;
    height: 4px;
    background: #fff;
}

.menu-overlay__close::before {
    transform: rotate(45deg);
}

.menu-overlay__close::after {
    transform: rotate(-45deg);
}

.menu-overlay__home,
.menu-overlay__topnav a {
    position: relative;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.menu-overlay__home span {
    margin-right: 8px;
}

.menu-overlay__close,
.menu-overlay__home,
.menu-overlay__tools {
    display: none;
}

.menu-overlay__topnav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu-overlay__topnav a::after,
.menu-item > span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: transparent;
    transition: background .25s ease-out;
}

.menu-overlay__topnav a:hover::after,
.menu-overlay__topnav a.is-active::after {
    background: #fff;
}

.menu-overlay__tools {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-left: auto;
}

.menu-overlay .menu-overlay__tools {
    display: none;
}

.menu-overlay__tools a,
.menu-overlay__tools button {
    display: grid;
    place-items: center;
    width: 28px;
    height: 38px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.menu-overlay__tools svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-open .primary-nav,
.menu-open.site-header--section .primary-nav {
    display: flex;
}

.menu-overlay__body {
    display: flex;
    align-items: flex-start;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
    padding-top: 60px;
    pointer-events: none;
}

.menu-slide {
    width: 25%;
    padding-right: 15px;
    pointer-events: auto;
}

.menu-slide.is-empty {
    visibility: hidden;
}

.menu-slide__back {
    padding-right: 20px;
}

.menu-slide__back.is-hidden {
    visibility: hidden;
}

.menu-slide__back .menu-item {
    border-top: 0;
    border-bottom: 1px solid #3f3f3f;
}

.menu-slide__list {
    width: 100%;
}

.menu-item {
    display: flex;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    min-height: 61px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 16px 2px;
    border-top: 1px solid #3f3f3f;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.menu-item > span {
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

.menu-item--current {
    min-height: 68px;
    border-top: 0;
    font-size: 20px;
    line-height: 28px;
}

.menu-item:hover,
.menu-item:focus {
    color: #fff;
}

.menu-item:hover > span::after {
    background: var(--wxp-menu-link-hover-color, #fff);
}

.menu-item--has-children::after {
    content: "›";
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 28px;
    line-height: 20px;
    font-weight: 400;
}

.menu-item--back {
    justify-content: flex-start;
    min-height: 52px;
}

.menu-item--back::before {
    content: "‹";
    margin-right: 15px;
    color: #fff;
    font-size: 28px;
    line-height: 20px;
}

.menu-item.is-active {
    border-top: 1px solid #7f7f7f;
    border-right: 1px solid #7f7f7f;
    border-bottom: 1px solid #7f7f7f;
}

.menu-teaser {
    display: flex;
    width: 50%;
    min-height: 420px;
    gap: 28px;
    padding: 64px 0 0 28px;
    pointer-events: auto;
}

.menu-teaser.is-empty {
    visibility: hidden;
}

.menu-teaser__description {
    flex: 1;
    margin: 0;
    color: #999;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.menu-teaser__image {
    display: block;
    width: min(100%, 360px);
    max-height: 245px;
    object-fit: cover;
}

.menu-teaser__link {
    display: inline-flex;
    align-self: flex-start;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}

@keyframes menuSlideInLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes menuSlideInRight {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.menu-slide.animate-left {
    animation: menuSlideInLeft .35s ease-out;
}

.menu-slide.animate-right {
    animation: menuSlideInRight .35s ease-out;
}

.header-tools {
    display: flex;
    align-items: stretch;
    margin-left: auto;
}

.header-tools a,
.header-tools button {
    display: grid;
    place-items: center;
    width: 48px;
    min-height: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.header-tools svg,
.menu-overlay__tools svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.language-switch-trigger {
    position: relative;
    font: inherit;
}

.language-switch-trigger::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 25px;
    height: 2px;
    background: #fff;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity .2s ease;
}

.language-switch-trigger:hover::after,
.language-switch-trigger.is-active::after {
    opacity: 1;
}

.language-switch-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 120px;
    z-index: 65535;
    display: block;
    padding: 48px 0 60px;
    background: #000;
    color: #fff;
}

.site-header--sticky + .language-switch-panel {
    top: 66px;
}

.language-switch-panel[hidden] {
    display: none;
}

.wxp-lang-switch-wrapper {
    display: flex;
    flex-direction: column;
    width: 90.6%;
    max-width: var(--shell);
    margin-left: auto;
    margin-right: auto;
    float: none;
}

@media (min-width: 1200px) {
    .wxp-lang-switch-wrapper {
        width: min(78.48%, 1246px);
    }
}

.wxp-lang-switch-title {
    margin: 0 0 1.875rem;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.22;
}

.wxp-lang-switch-form {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.language-switch-field,
.language-switch-dropdown {
    position: relative;
    min-width: 0;
}

.language-switch-dropdown__trigger {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #fff;
    border-radius: 0;
    background: #000;
    color: #fff;
    padding: 0 48px 0 18px;
    font: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.language-switch-dropdown__trigger::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
}

.language-switch-dropdown.is-open .language-switch-dropdown__trigger::after {
    transform: translateY(-30%) rotate(225deg);
}

.language-switch-dropdown__trigger:hover,
.language-switch-dropdown__trigger:focus {
    border-color: #fff;
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.language-switch-dropdown__panel {
    position: absolute;
    z-index: 20;
    left: 0;
    right: 0;
    top: calc(100% + 2px);
    display: grid;
    gap: 2px;
    padding: .625rem;
    border: 1px solid #fff;
    background: #000;
    box-shadow: none;
}

.language-switch-dropdown__panel[hidden] {
    display: none;
}

.language-switch-dropdown__option {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    border: 2px solid transparent;
    background: #000;
    color: #fff;
    padding: 0 12px;
    font: inherit;
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.language-switch-dropdown__option:hover,
.language-switch-dropdown__option:focus {
    background: #000;
    color: #fff;
    outline: 0;
}

.language-switch-dropdown__option.is-active {
    border-color: var(--cyan);
    color: var(--cyan);
}

.wxp-lang-switch-link {
    display: inline-flex;
    width: fit-content;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 3.75rem;
    padding: 0 28px;
    border: 0;
    background: var(--cyan);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.wxp-lang-switch-link:hover,
.wxp-lang-switch-link:focus {
    background: #0d8fc1;
    color: #fff;
}

.wxp-lang-switch-link[hidden] {
    display: none;
}

@media (max-width: 1055px) and (min-width: 768px) {
    .language-switch-panel {
        top: 90px;
    }

    .site-header--sticky + .language-switch-panel {
        top: 64px;
    }
}

@media (max-width: 767px) {
    .language-switch-panel,
    .site-header--sticky + .language-switch-panel {
        top: 64px;
        padding: 32px 0 42px;
    }

    .wxp-lang-switch-title {
        margin-bottom: 1.5rem;
        font-size: 24px;
    }

    .wxp-lang-switch-form {
        grid-template-columns: 1fr;
    }

    .wxp-lang-switch-link {
        width: 100%;
        margin-top: 2rem;
    }
}

.brand-mark {
    display: flex;
    flex: 0 0 160px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    background: #21a0d2;
    color: #fff;
}

.site-header--sticky .brand-mark {
    display: none !important;
}

.brand-mark img {
    width: 120px;
    height: auto;
    margin-top: 0;
    display: block;
}

.hero {
    position: relative;
    height: 674px;
    min-height: 0;
    max-height: none;
    background: #101010;
    overflow: hidden;
}

.hero__track,
.hero__slide {
    position: absolute;
    inset: 0;
}

.hero__slide {
    opacity: 0;
    transition: opacity .7s ease;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 90.6%;
    max-width: 1246px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 205px;
}

@media (min-width: 1200px) {
    .hero__content {
        width: min(78.48%, 1246px);
    }
}

.hero__content--right {
    justify-content: flex-end;
}

.hero__content--left {
    justify-content: flex-start;
}

.hero__copy {
    max-width: 860px;
    padding: 0 0 26px;
    background: transparent;
    box-shadow: none;
    text-align: right;
}

.hero__copy h1 {
    margin: 0 0 50px;
    font-size: clamp(64px, 5.4vw, 82px);
    line-height: 1.04;
    letter-spacing: 0;
    font-weight: 700;
    text-align: right;
}

.hero__copy--dark h1 {
    color: #373737;
}

.hero__copy--light h1 {
    color: #fff;
}

.hero__content--left .hero__copy {
    margin-left: 155px;
    padding: 0 0 28px;
    text-align: left;
}

.hero__content--left .hero__copy h1 {
    text-align: left;
}

.hero__copy--backdrop {
    padding: 24px 32px 28px 0;
    background: transparent;
    box-shadow: none;
}

.button {
    display: inline-flex;
    min-height: 55px;
    align-items: center;
    padding: 0 22px;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.button--brand {
    background: #21a0d2;
    color: #fff;
}

.button--dark {
    background: var(--ink);
    color: #fff;
}

.button:hover {
    color: #fff;
    filter: brightness(.9);
}

.hero__controls {
    position: absolute;
    inset-inline: 0;
    bottom: 120px;
    display: flex;
    gap: 0;
}

.hero__controls.shell {
    width: 100%;
    margin: 0;
    padding-left: 155px;
}

.hero__controls button {
    width: 39px;
    height: 40px;
    border: 0;
    border-right: 1px solid #5f5f5f;
    background: rgba(255, 255, 255, .72);
    cursor: pointer;
    position: relative;
}

.hero__controls button[data-carousel-toggle] {
    background: #21a0d2;
}

.hero__controls button::before,
.hero__controls button::after {
    content: "";
    position: absolute;
}

.hero__controls button[data-carousel-prev]::before,
.hero__controls button[data-carousel-next]::before {
    top: 12px;
    width: 12px;
    height: 12px;
    border-top: 4px solid #21a0d2;
    border-left: 4px solid #21a0d2;
}

.hero__controls button[data-carousel-prev]::before {
    left: 15px;
    transform: rotate(-45deg);
}

.hero__controls button[data-carousel-next]::before {
    right: 15px;
    transform: rotate(135deg);
}

.hero__controls button[data-carousel-toggle]::before,
.hero__controls button[data-carousel-toggle]::after {
    top: 10px;
    width: 6px;
    height: 20px;
    background: #fff;
}

.hero__controls button[data-carousel-toggle]::before {
    left: 12px;
}

.hero__controls button[data-carousel-toggle]::after {
    right: 12px;
}

.hero__controls button[data-carousel-toggle].is-paused::before {
    left: 15px;
    top: 9px;
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    background: transparent;
}

.hero__controls button[data-carousel-toggle].is-paused::after {
    display: none;
}

.section-stage {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #333;
}

.section-stage__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, .08));
}

.section-stage__copy {
    position: relative;
    z-index: 1;
    width: min(78.48%, 1246px);
    margin: 0 auto;
    padding-top: 205px;
    color: #fff;
}

.section-stage__copy h1 {
    max-width: 1120px;
    margin: 0 0 34px;
    color: #fff;
    font-size: clamp(56px, 5vw, 82px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
}

.section-page {
    width: min(78.48%, 1246px);
    margin: 0 auto;
    padding: 154px 0 70px;
}

.section-page--stage {
    position: relative;
    z-index: 2;
    margin-top: -45px;
    padding-top: 0;
    background: #fff;
}

.section-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 45px;
    padding: 0 14px;
    background: #fff;
    color: #cdcdcd;
    font-size: 15px;
}

.section-breadcrumb a {
    color: #21a0d2;
}

.section-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
    gap: 46px;
    padding: 72px 0 0;
}

.section-page__main h1 {
    margin: 0 0 40px;
    color: #333;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 100;
}

.section-page__lead {
    margin: 0 0 24px;
    color: #21a0d2;
    font-size: 30px;
    line-height: 1.45;
    font-weight: 100;
}

.section-linklist {
    padding-top: 6px;
}

.section-linklist a {
    display: flex;
    align-items: center;
    min-height: 45px;
    border-bottom: 1px solid #d8d8d8;
    color: #004a96;
    font-size: 18px;
    font-weight: 700;
}

.section-linklist a::before {
    content: "›";
    margin-right: 8px;
    color: #004a96;
    font-size: 24px;
    line-height: 1;
}

.section-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 62px;
}

.section-card {
    background: #f0f0f0;
}

.section-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.section-card__body {
    padding: 24px;
}

.section-card h2 {
    margin: 0 0 12px;
    color: #333;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 100;
}

.section-card p {
    margin: 0 0 18px;
    color: #333;
    font-size: 18px;
    line-height: 1.55;
}

.section-card a {
    color: #004a96;
    font-weight: 700;
}

.intro-section {
    padding: 76px 0 60px;
}

.intro-section h1,
.section-title,
.section-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.14;
    letter-spacing: 0;
}

.intro-section p {
    max-width: 1180px;
    margin: 0;
    color: #21a0d2;
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 100;
    line-height: 1.35;
}

.teaser-grid,
.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
}

.teaser-grid--feature {
    padding-bottom: 64px;
}

.teaser-card,
.news-card {
    background: #f0f0f0;
    border: 0;
}

.teaser-card img {
    width: 100%;
    height: 223px;
    object-fit: cover;
}

.teaser-card__body {
    padding: 24px 25px 28px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.teaser-card h3,
.story-card h3 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 40px;
    font-weight: 100;
    letter-spacing: 0;
}

.teaser-card p {
    margin: 0 0 16px;
    color: #333;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.link-list {
    display: grid;
    gap: 16px;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

.link-list a {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: #21a0d2;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.teaser-card .link-list {
    gap: 4px;
    margin-top: 12px;
}

.link-list a::before {
    content: "›";
    width: auto;
    height: auto;
    background: transparent;
    font-size: 24px;
    line-height: 0;
}

.section-band {
    padding: 30px 0;
    background: #e0f2f9;
}

.section-band--light {
    background: #f0f5fa;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 50px;
}

.section-head h2 {
    color: #333;
    font-size: 50px;
    line-height: 60px;
    font-weight: 100;
}

.section-head--inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-shell {
    position: relative;
    overflow: visible;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.carousel-arrow {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 88px;
    height: calc(100% - 60px);
    border: 0;
    background: transparent;
    cursor: pointer;
}

.carousel-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 34px;
    height: 34px;
    border-left: 6px solid #21a0d2;
    border-bottom: 6px solid #21a0d2;
}

.carousel-arrow--prev {
    left: -109px;
}

.carousel-arrow--prev::before {
    left: 36px;
    transform: rotate(45deg);
}

.carousel-arrow--next {
    right: -109px;
}

.carousel-arrow--next::before {
    right: 36px;
    transform: rotate(-135deg);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.carousel-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b1b1b1;
}

.carousel-dots span.is-active {
    background: #21a0d2;
}

.section-band--news .carousel-dots {
    display: none;
}

.industry-grid {
    display: flex;
    gap: 32px;
    margin-left: -5px;
    transition: transform .45s ease;
    will-change: transform;
}

.industry-card {
    flex: 0 0 calc((100% - 64px) / 3);
    height: 408px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #f0f0f0;
    color: #202020;
}

.industry-card img {
    position: static;
    width: 100%;
    height: 223px;
    object-fit: cover;
    transition: transform .35s ease;
}

.industry-card span,
.industry-card em {
    padding-inline: 20px;
}

.industry-card span {
    min-height: 78px;
    padding-top: 25px;
    font-size: 30px;
    font-weight: 100;
    line-height: 40px;
}

.industry-card em {
    padding-top: 8px;
    padding-bottom: 18px;
    color: #21a0d2;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.industry-card:hover {
    color: #202020;
}

.industry-card:hover img {
    transform: scale(1.05);
}

.section-band--news {
    margin-top: 58px;
    padding-top: 30px;
    background: #e0f2f9;
}

.news-section,
.careers-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.news-grid {
    display: flex;
    gap: 32px;
    margin-left: -5px;
    transition: transform .45s ease;
    will-change: transform;
}

.news-card {
    flex: 0 0 calc((100% - 64px) / 3);
    min-height: 505px;
    min-width: 0;
    padding: 0;
    background: transparent;
    color: #333;
}

.news-card--featured {
    background: #21a0d2;
    color: #fff;
}

.news-card img {
    width: 100%;
    height: 224px;
    object-fit: cover;
}

.news-card__body {
    padding: 24px;
}

.news-card a {
    color: #21a0d2;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.news-card h3 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 36px;
    font-weight: 100;
    letter-spacing: 0;
}

.news-card--featured a,
.news-card--featured .eyebrow {
    color: #fff;
}

.sustainability-section {
    padding: 72px 0 64px;
    background: #fff;
}

.sustainability-section .section-title,
.careers-section .section-title {
    margin: 0;
    color: #333;
    font-size: 50px;
    line-height: 60px;
    font-weight: 100;
    letter-spacing: 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.story-card {
    display: grid;
    background: #f5f5f5;
    border: 0;
}

.story-card:first-child {
    grid-column: span 3;
    grid-template-columns: 1.45fr 1fr;
    background: #fff;
}

.story-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.story-card div {
    padding: 22px;
}

.story-card:first-child div {
    align-self: center;
    padding: 42px 34px;
}

.story-card .eyebrow {
    margin-bottom: 8px;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
}

.story-card h3 {
    color: #333;
    font-size: 30px;
    line-height: 40px;
    font-weight: 100;
}

.story-card p:not(.eyebrow) {
    margin: 0;
    color: #333;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.career-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 27.5px;
    row-gap: 51px;
    margin-top: 60px;
}

.career-grid .teaser-card {
    min-height: 524px;
}

.career-grid .teaser-card:nth-child(n+4) {
    min-height: 548px;
}

.career-grid .teaser-card__body {
    padding: 24px 25px 28px;
}

.career-grid .teaser-card h3 {
    margin-bottom: 13px;
    color: #333;
    font-size: 30px;
    line-height: 40px;
    font-weight: 100;
}

.career-grid .teaser-card p {
    color: #333;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.social-bar {
    padding: .0625em;
    color: #fff;
    text-decoration: none;
}

.site-footer {
    background: #7c7c7c;
    color: #fff;
}

.site-footer .shell {
    width: 90.6%;
    max-width: 77.875rem;
}

.footer-wrapper {
    padding-top: 3%;
}

.wxp-socialmenu__header {
    margin: 0 .625rem .625rem 0;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 700;
}

.wxp-socialmenu__itemlist ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wxp-socialmenu__item {
    padding: 0 1.875rem 0 0;
}

.wxp-socialmenu__item a {
    display: inline-flex;
    align-items: center;
    color: #adadad;
    padding: .0625em;
    text-decoration: none;
}

.wxp-socialmenu__item a::before {
    content: "\f15a";
    align-self: center;
    margin-top: .4375rem;
    margin-right: .4em;
    color: currentColor;
    font-family: "wxp-icons";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    line-height: 1;
    min-width: 1.5rem;
    text-transform: none;
    text-decoration: initial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wxp-socialmenu__item a:hover {
    color: #fff;
}

.wxp-socialmenu__item span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.wxp-socialmenu__item i {
    display: inline-block;
    font-size: 2.1875rem;
    font-style: normal;
    line-height: 1;
}

.wxp-socialmenu__item i::before {
    font-family: "wxp-icons";
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    min-width: 1.5rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wxp-icon--linkedin::before {
    content: "\f15c";
}

.wxp-icon--facebook::before {
    content: "\f152";
}

.wxp-icon--twitter::before {
    content: "\f1a6";
}

.wxp-icon--youtube::before {
    content: "\f1b0";
}

.wxp-icon--instagram::before {
    content: "\f159";
}

.wxp-icon--wechat::before {
    content: "\f1aa";
}

.wxp-icon--weibo::before {
    content: "\f1ab";
}

.wxp-icon--youku::before {
    content: "\f1af";
}

.wxp-icon--external::before {
    content: "\f15a";
}

@media (min-width: 48em) {
    .wxp-socialmenu__header {
        display: inline-block;
        min-width: 10em;
        width: 25%;
        vertical-align: bottom;
    }

    .wxp-socialmenu__itemlist {
        display: inline-block;
        vertical-align: super;
    }

    .wxp-socialmenu__item {
        width: auto;
        padding: 0 3.125rem 0 0;
        vertical-align: bottom;
    }
}

@media (min-width: 61em) {
    .legal-bar,
    .legal-bar p,
    .legal-bar a {
        font-size: .8125rem;
        line-height: 1.9230769231;
    }
}

@media (min-width: 75em) {
    .site-footer .shell {
        width: 78.48%;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 1.875rem;
    margin-top: .3125rem;
    margin-bottom: 3.125rem;
    padding: 0;
}

.footer-grid section {
    padding-top: 1.5625rem;
}

.footer-grid h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: .9375rem;
    line-height: 1.7333333333;
    font-weight: 700;
}

.footer-grid .link-list a {
    color: #fff;
    font-size: .9375rem;
    line-height: 1.4666666667;
    font-weight: 400;
}

.footer-grid .link-list a:hover {
    color: #adadad;
}

.footer-grid .link-list {
    gap: 0;
    margin-top: 0;
}

.footer-grid .link-list li {
    margin: 0 0 1rem;
}

.footer-grid .link-list a::before {
    content: "\f15b";
    color: #fff;
    font-family: "wxp-icons";
    font-size: inherit;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    line-height: 1;
    min-width: 1.5rem;
    margin-top: .2em;
    margin-right: .4em;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.legal-bar {
    width: 100%;
    padding-bottom: 3%;
    background: #7c7c7c;
    color: #adadad;
    font-size: .75rem;
    line-height: 2.0833333333;
}

.legal-bar__inner {
    display: block;
    margin-top: 1.25rem;
    min-height: 97px;
    padding: .35em 0;
}

.legal-bar__header {
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.legal-bar__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: .625rem;
}

.legal-bar a {
    display: flex;
    align-items: center;
    min-width: auto;
    color: inherit;
    font-size: .75rem;
    line-height: 2.0833333333;
    vertical-align: middle;
}

.legal-bar a:hover {
    color: #fff;
}

.legal-bar a::before {
    content: "\f15b";
    align-self: flex-start;
    margin-top: .5em;
    margin-right: .4em;
    font-family: "wxp-icons";
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    line-height: 1;
    min-width: 1.5rem;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.legal-bar a.legal-link--china::before {
    content: "";
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-top: 0;
    margin-right: .4em;
    background: url("/assets/img/beian-police.png") center / contain no-repeat;
}

@media (min-width: 48em) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 61em) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .legal-bar,
    .legal-bar__header,
    .legal-bar a {
        font-size: .8125rem;
        line-height: 1.9230769231;
    }
}

.service-icons {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 9;
    display: grid;
    gap: 1px;
}

.service-icons__item {
    position: relative;
    width: 56px;
    height: 56px;
    border: 0;
    background: #21a0d2;
    color: #fff;
    cursor: pointer;
}

.service-icons__item--contact span::before,
.service-icons__item--contact span::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
}

.service-icons__item--contact span::before {
    top: 17px;
    height: 19px;
    background: #fff;
    clip-path: polygon(0 0, 50% 45%, 100% 0, 100% 100%, 0 100%);
}

.service-icons__item--contact span::after {
    top: 19px;
    left: 16px;
    right: 16px;
    height: 10px;
    border-left: 3px solid #21a0d2;
    border-bottom: 3px solid #21a0d2;
    transform: rotate(-45deg);
}

.service-icons__item--top span::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 18px;
    width: 12px;
    height: 12px;
    border-left: 3px solid #fff;
    border-top: 3px solid #fff;
    transform: rotate(45deg);
}

.service-icons__item--top {
    display: none;
}

.service-icons__item--top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.not-found {
    padding: 90px 0;
}

@media (max-width: 1055px) {
    .shell {
        width: min(100% - 32px, var(--shell));
    }

    .site-header {
        top: 26px;
    }

    .site-header.site-header--sticky {
        top: 0;
        padding: 0;
    }

    .header-shell {
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 20px;
    }

    .nav-bar {
        flex: 0 0 225px;
        min-height: 64px;
        max-width: none;
        order: 1;
    }

    .region-brand {
        margin-left: 0;
        min-width: 0;
        padding: 0 16px 0 56px;
        color: #fff;
        background: transparent;
        font-size: 18px;
        white-space: nowrap;
    }

    .brand-mark {
        order: 2;
        flex: 1 1 auto;
        max-width: 200px;
        min-height: 64px;
        padding: 0 12px 0 22px;
    }

    .brand-mark img {
        width: 135px;
    }

    .nav-toggle {
        display: grid;
        place-content: center;
        gap: 5px;
        position: absolute;
        left: 16px;
        top: 0;
        height: 64px;
        width: 56px;
        border: 0;
        background: transparent;
    }

    .nav-toggle span {
        width: 24px;
        height: 3px;
        background: #fff;
    }

    .primary-nav {
        position: absolute;
        display: none;
        inset: 64px auto auto 0;
        width: 100vw;
        flex-direction: column;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        color: #202020;
        min-height: 58px;
        border-left: 0;
        border-bottom: 1px solid var(--line);
        justify-content: space-between;
    }

    .primary-nav a:hover,
    .primary-nav a.is-active {
        background: #f5f5f5;
        color: #202020;
    }

    .primary-nav a::after,
    .region-brand::after {
        display: none;
    }

    .header-tools {
        display: none;
    }

    .site-header--section .section-menu-button {
        width: 48px;
    }

    .menu-overlay__shell {
        width: calc(100% - 32px);
        padding: 18px 0 56px;
    }

    .menu-overlay {
        top: 0;
    }

    .site-header--sticky ~ .menu-overlay {
        top: 0;
    }

    .menu-overlay__top {
        min-height: 58px;
        gap: 18px;
    }

    .menu-overlay__home,
    .menu-overlay__topnav {
        display: none;
    }

    .menu-overlay__tools {
        gap: 18px;
    }

    .menu-overlay__body {
        display: flex;
        overflow-y: auto;
        max-height: calc(100vh - 96px);
        padding: 26px 0 56px;
    }

    .menu-slide {
        width: 100%;
        padding-right: 0;
    }

    .menu-slide__back.is-hidden {
        display: none;
    }

    .menu-overlay.has-second-slide .menu-slide--first {
        display: none;
    }

    .menu-slide--second.is-empty {
        display: none;
    }

    .menu-item {
        min-height: 58px;
    }

    .menu-teaser {
        display: none;
    }

    .primary-nav__mobile-actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        background: #f5f5f5;
    }

    .primary-nav__mobile-actions a {
        justify-content: center;
        min-height: 52px;
        font-size: 16px;
    }

    .section-stage {
        min-height: 560px;
    }

    .section-stage__copy,
    .section-page {
        width: calc(100% - 32px);
    }

    .section-stage__copy {
        padding-top: 150px;
    }

    .section-stage__copy h1 {
        font-size: 44px;
    }

    .section-page {
        padding-top: 116px;
    }

    .section-page--stage {
        padding-top: 0;
    }

    .section-page__grid {
        grid-template-columns: 1fr;
        padding-top: 44px;
    }

    .section-page__main h1 {
        font-size: 42px;
    }

    .section-page__lead {
        font-size: 24px;
    }

    .section-card-grid {
        grid-template-columns: 1fr;
    }

    .teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid,
    .career-grid,
    .section-head {
        grid-template-columns: 1fr;
    }

    .story-card:first-child {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    
}

@media (max-width: 671px) {
    body {
        font-size: 16px;
    }

    .primary-nav {
        inset: 64px auto auto 0;
    }

    .hero {
        height: 100vh;
        min-height: 760px;
        max-height: none;
    }

    .hero__copy {
        width: calc(100% - 32px);
        max-width: 340px;
        margin-left: 0;
        padding: 0 16px 0 0;
    }

    .hero__content {
        align-items: flex-start;
        justify-content: flex-end;
        padding-top: 132px;
    }

    .hero__content--right {
        justify-content: flex-end;
    }

    .hero__copy h1 {
        color: #373737;
        font-size: 38px;
        line-height: 1.12;
        text-align: right;
    }

    .hero__content--left .hero__copy {
        margin-left: 16px;
        padding: 0 16px 0 0;
    }

    .hero__content--left .hero__copy h1 {
        text-align: left;
    }

    .hero__copy--light h1 {
        color: #fff;
    }

    .hero__copy--backdrop {
        padding: 16px;
        background: transparent;
        box-shadow: none;
    }

    .button {
        min-height: 44px;
        padding: 0 18px;
        font-size: 16px;
    }

    .hero__controls button {
        width: 42px;
        height: 42px;
    }

    .intro-section p {
        font-size: 24px;
    }

    .teaser-grid,
    .footer-grid,
    .legal-bar__inner {
        grid-template-columns: 1fr;
    }

    .news-grid,
    .industry-grid {
        display: grid;
        grid-template-columns: 1fr;
        margin-left: 0;
        transform: none !important;
    }

    .carousel-viewport {
        overflow: visible;
    }

    .section-band {
        padding: 42px 0;
    }

    .news-card,
    .industry-card,
    .story-card {
        min-height: 0;
    }

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

    .news-card--featured {
        grid-row: auto;
    }

    .career-grid {
        grid-template-columns: 1fr;
    }

    .service-icons {
        display: none;
    }
}

.section-modules {
    display: grid;
    gap: 48px;
    margin-top: 72px;
}

.section-module {
    border-top: 1px solid #d8d8d8;
    padding-top: 36px;
}

.section-module h2 {
    margin: 0 0 20px;
    color: #333;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 100;
}

.section-module__copy {
    color: #333;
    font-size: 20px;
    line-height: 1.55;
}

.section-module__copy > :first-child {
    margin-top: 0;
}

.section-module__copy > :last-child {
    margin-bottom: 0;
}

.section-module--image-text {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 32px;
    align-items: start;
}

.section-module--image-text img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.section-module--image-right img {
    order: 2;
}

.section-module__link {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 20px;
    color: #21a0d2;
    font-size: 20px;
    line-height: 28px;
}

.section-module__link::before,
.section-module-list a::before,
.section-module-card::after {
    content: "›";
    color: #21a0d2;
    font-size: 24px;
    line-height: 1;
}

.section-module-list {
    display: grid;
    border-top: 1px solid #d8d8d8;
}

.section-module-list a {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 10px;
    align-items: baseline;
    min-height: 58px;
    padding: 14px 0;
    border-bottom: 1px solid #d8d8d8;
    color: #333;
}

.section-module-list a::before {
    grid-row: span 2;
    margin-top: 2px;
}

.section-module-list small {
    color: #5f5f5f;
    font-size: 15px;
    line-height: 22px;
}

.section-module-list span {
    font-size: 20px;
    line-height: 28px;
}

.section-module-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.section-module-card {
    display: grid;
    grid-template-rows: auto 1fr;
    background: #f0f0f0;
    color: #333;
}

.section-module-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.section-module-card strong {
    padding: 22px 22px 8px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 100;
}

.section-module-card span {
    padding: 0 22px 20px;
    color: #333;
    font-size: 18px;
    line-height: 1.55;
}

.section-module-card::after {
    padding: 0 22px 22px;
}

@media (max-width: 1055px) {
    .section-module--image-text,
    .section-module-cards {
        grid-template-columns: 1fr;
    }

    .section-module--image-right img {
        order: 0;
    }

    .section-module h2 {
        font-size: 34px;
    }
}

@media (max-width: 671px) {
    .site-header {
        top: 0;
        height: 64px;
    }

    .site-header::before,
    .site-header::after {
        display: none;
    }

    .header-shell {
        width: 100%;
        gap: 0;
    }

    .nav-bar {
        flex: 1 1 auto;
        min-width: 0;
    }

    .region-brand {
        max-width: calc(100vw - 176px);
        overflow: hidden;
        padding: 0 10px 0 56px;
        font-size: 16px;
        text-overflow: ellipsis;
    }

    .brand-mark {
        flex: 0 0 176px;
        max-width: 176px;
        justify-content: center;
        padding: 0 14px;
    }

    .brand-mark img {
        width: 128px;
    }

    .menu-open .nav-bar {
        flex-basis: 100%;
    }

    .menu-open .brand-mark {
        display: none;
    }

    .menu-open .menu-top-close {
        width: 58px;
    }

    .global-home-link {
        padding-right: 10px;
        font-size: 16px;
    }

    .menu-overlay__body {
        max-height: calc(100vh - 64px);
        padding-top: 76px;
    }

    .menu-item {
        min-height: 52px;
        font-size: 16px;
        line-height: 20px;
    }

    .menu-item--current {
        min-height: 60px;
        font-size: 20px;
    }

    .carousel-arrow,
    .carousel-dots {
        display: none;
    }

    .section-head h2,
    .sustainability-section .section-title,
    .careers-section .section-title {
        font-size: 38px;
        line-height: 1.18;
    }

    .section-modules {
        gap: 38px;
        margin-top: 52px;
    }

    .section-module {
        padding-top: 28px;
    }

    .section-module h2 {
        font-size: 30px;
    }

    .section-module__copy,
    .section-module-list span,
    .section-module__link {
        font-size: 18px;
        line-height: 1.5;
    }
}
