@font-face {
    font-family: "Gotham";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/Gotham-400-Book.woff2") format("woff2"), url("./fonts/Gotham-400-Book.woff") format("woff");
}
@font-face {
    font-family: "Gotham";
    font-style: normal;
    font-weight: 500;
    src: url("./fonts/Gotham-500-Medium.woff2") format("woff2"), url("./fonts/Gotham-500-Medium.woff") format("woff");
}
@font-face {
    font-family: "Gotham";
    font-style: normal;
    font-weight: 700;
    src: url("./fonts/Gotham-700-Bold.woff2") format("woff2"), url("./fonts/Gotham-700-Bold.woff") format("woff");
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: "Gotham", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: var(--lsg-color-col-background-light,#ffffff);
}

header {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    z-index: 30;
    background: var(--lsg-color-col-background-dark,#002E3C);
    color: var(--lsg-color-col-text-primary-dark,#DBE2E5);
    box-shadow: 0 2px 4px -1px rgba(0, 37, 48, 0.36);
}

header > .cbk-inner-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

header .cbk-logo svg {
    height: 32px;
}

.cbk-header-brand {
    display: flex;
    padding: 26px 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.cbk-segment {
    font-size: 24px;
    font-weight: 400;
    color: var(--lsg-color-col-text-primary-dark, #DBE2E5);
}

.cbk-inner-section {
    position: relative;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 32px;
}

.cbk-theme.is-elevated {
    background-color: var(--lsg-color-col-background-medium, #F1EFED);
    color: var(--lsg-color-col-text-primary-medium,#002E3C);
}

.cbk-header-nav nav ul,
.cbk-footer-nav nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.cbk-header-nav,
.cbk-header-nav nav {
    display: flex;
}

.cbk-header-nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

.cbk-header-nav-item a,
.cbk-footer-nav a {
    color: var(--lsg-color-col-action-tertiary-dark,#92A4AB);
    text-decoration: none;
    padding: 24px 0;
    font-weight: 500;
    font-size: 15px;
}

.cbk-header-nav-item a:hover {
    color: var(--lsg-color-col-action-tertiary-hover-dark,#B7C4C9);
}

.cbk-header-nav-item.is-active a,
.cbk-footer-nav a {
    color: var(--lsg-color-col-action-secondary-dark,#DBE2E5);
}

.cbk-header-nav-item.is-active a:hover,
.cbk-footer-nav a:hover {
    color: var(--lsg-color-col-action-primary-dark,#FFFFFF);
}

.cbk-header-nav-item.is-active::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .25rem;
    background-color: var(--lsg-color-col-action-primary-dark,#FFD700);
}

.cbk-header-lang {
    display: flex;
    align-items: center;
    margin-left: 3rem;
}

.cbk-icon-link {
    display: flex;
    color: currentColor;
    text-decoration: none;
    padding: 24px 0;
    font-weight: 500;
    font-size: 15px;
    align-items: center;
    gap: .75rem;
    transition: .3s transform ease-in-out;
}

.cbk-icon-link > svg {
    flex: 0 0 auto;
}

.cbk-icon-link:hover {
    transform: translateY(-.25rem);
}

.cbk-header-nav .cbk-icon-link {
    color: var(--lsg-color-col-action-secondary-dark,#DBE2E5);
}

.cbk-header-nav .cbk-icon-link:hover {
    color: var(--lsg-color-col-action-primary-dark,#FFFFFF);
}

.cbk-action-button {
    color: var(--lsg-color-col-action-secondary-brand,#002530);
    text-decoration: none;
}

.cbk-action-button-dwindle {
    display: flex;
    width: 4rem;
    height: 4rem;
    border: 1px solid var(--lsg-color-col-action-secondary-brand,#002530);
    padding: 1rem;
    margin: 0 auto;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 0 transparent;
    transition: .3s box-shadow ease-in-out;
}

.cbk-action-button:hover .cbk-action-button-dwindle {
    box-shadow: inset 0 0 0 .075rem var(--lsg-color-col-action-secondary-brand,#002530);
}

.cbk-action-button-dwindle > svg {
    width: 1.5rem;
    height: 1.5rem;
}

.cbk-action-button-label {
    font-weight: 500;
    font-size: 0.8125rem;
    text-align: center;
    margin-top: .75rem;
}

footer {
    display: block;
    position: relative;
    background: var(--lsg-color-footer-background, #002E3C);
    color: var(--lsg-color-col-text-primary-dark,#DBE2E5);
}

.cbk-footer-contact-outlier {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: var(--lsg-color-col-background-light,#ffffff);
    z-index: 1;
}

footer > .cbk-inner-section {
    z-index: 2;
}

.cbk-footer-contact {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    column-gap: 32px;
    row-gap: 28px;
    align-items: center;
    border-radius: 16px;
    background-color: var(--lsg-color-col-background-brand,#FFD700);
    color: var(--lsg-color-col-text-primary-light,#002E3C);
    padding: 48px 60px;
}

.cbk-footer-contact-info > h4 {
    font-size: 1.375rem;
    line-height: 2rem;
    letter-spacing: -0.4px;
    font-weight: 500;
}

.cbk-footer-contact-info > p {
    font-size: 1.375rem;
    line-height: 2rem;
    letter-spacing: -0.4px;
    font-weight: 400;
}

.cbk-footer-brand {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding: 32px 0;
}

main > .cbk-inner-section {
    padding: 0 28px;
    margin: 96px auto;
    color: var(--lsg-color-col-text-primary-light,#002E3C);
}

main > .cbk-theme {
    padding: 96px 0;
}

.cbk-footer-claim {
    font-size: 0.9375rem;
    letter-spacing: 0.1px;
    font-weight: 500;
    color: var(--lsg-color-col-text-primary-dark,#DBE2E5);
}

.cbk-footer-brand > .cbk-logo {
    width: 7.5rem;
    color: var(--lsg-color-col-text-highlight-dark,#FFFFFF);
}

main h1 {
    font-size: 2.5rem;
    line-height: calc(2.5rem + 10px);
    letter-spacing: -0.4px;
    font-weight: 500;
    margin-bottom: 24px;
    max-width: 72rem;
}

main h2 {
    font-size: 1.375rem;
    line-height: calc(2.5rem + 10px);
    letter-spacing: -0.4px;
    font-weight: 500;
    margin-bottom: 16px;
    max-width: 60rem;
}

main h3 {
    font-size: 1.0625rem;
    line-height: calc(2.5rem + 10px);
    letter-spacing: -0.4px;
    font-weight: 500;
    margin-bottom: 16px;
    max-width: 60rem;
}

main p {
    font-size: 1.0625rem;
    line-height: calc(1.0625rem + 11px);
    letter-spacing: 0;
    font-family: var(--lsg-font-family-400, "Gotham", sans-serif);
    font-weight: 400;
    max-width: 60rem;
    margin-bottom: 24px;
}

main ul {
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-type: "\2013";
    padding-left: 1ch;
    margin-bottom: 32px;
    max-width: 60rem;
}

main ul li {
    margin-bottom: 16px;
    font-size: 1.0625rem;
    line-height: calc(1.0625rem + 11px);
    letter-spacing: 0;
    font-family: var(--lsg-font-family-400, "Gotham", sans-serif);
    font-weight: 400;
    max-width: 60rem;
    padding-left: 12px;
    text-wrap: pretty;
}

main p:last-child,
main ul:last-child {
    margin-bottom: 0;
}

main a:not(.cbk-icon-link) {
    display: inline;
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid;
    padding-bottom: 1px;
    text-indent: 0;
    word-break: break-word;
    color: inherit;
}

main a:not(.cbk-icon-link):hover {
    border-width: 2px;
}

main small {
    color: var(--lsg-color-col-text-supplementary-medium,#537173);
}

@media screen and (max-width: 640px) {
    body {
        width: 100vw;
        overflow-x: hidden;
    }

    main > .cbk-inner-section {
        margin: 48px auto;
    }
    
    .cbk-header-nav,
    .cbk-footer-contact {
        display: block;
    }
    
    .cbk-header-lang {
        position: absolute;
        top: 0;
        right: 2rem;
    }
    .cbk-footer-brand > * {
        flex: 0 0 100%;
        margin-top: 1.5rem;
        text-align: center;
    }

    .cbk-footer-brand > .cbk-logo svg {
        height: 4rem;
    }

    .cbk-footer-nav nav ul {
        justify-content: center;
    }

    .cbk-footer-contact-info {
        text-align: center;
        margin-bottom: 1.5rem;
    }
}