#siteHeader {
    height: 94px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 clamp(24px, 5vw, 80px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 80;
    background: #fff;
    border-bottom: 1px solid #edf2fa;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color .24s ease, border-color .24s ease, box-shadow .24s ease
}

#siteHeader.is-scrolled {
    background: #fff;
    border-bottom-color: #dde5f0;
    box-shadow: 0 10px 24px rgba(16, 19, 25, .05);
    backdrop-filter: none;
    -webkit-backdrop-filter: none
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    font: 800 18px 'Manrope';
    letter-spacing: -.6px;
    position: relative
}

.logoIcon {
    display: block;
    width: clamp(112px, 10vw, 154px);
    height: auto;
    aspect-ratio: 513 / 144;
    flex-shrink: 0;
}

.logo span {
    color: #0759e6
}

.nav {
    display: flex;
    gap: 34px;
    font-size: 14px;
    font-weight: 600
}

.nav a {
    position: relative;
    transition: color .2s ease
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    background: #0759e6;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.nav a:hover {
    color: #0759e6
}

.nav a:hover::after,
.nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left
}

.headerCta {
    justify-self: end
}

.menuButton {
    display: none
}

.headerActions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px
}

.locale-switcher {
    position: relative;
    width: 96px;
    flex-shrink: 0
}

.locale-trigger {
    width: 100%;
    min-height: 42px;
    padding: 0 13px 0 14px;
    border: 1px solid #dbe4f7;
    border-radius: 999px;
    background: #fff;
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr) 12px;
    align-items: center;
    gap: 10px;
    color: #354258;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease
}

.locale-trigger:hover {
    border-color: #c5d5fb
}

.locale-trigger:focus-visible {
    outline: none;
    border-color: #0759e6;
    box-shadow: 0 0 0 4px rgba(26, 98, 255, .12)
}

.locale-trigger-code {
    min-width: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.02em;
    text-align: left
}

.locale-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: auto;
    right: 0;
    width: 182px;
    padding: 8px;
    border: 1px solid #dbe4f7;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
    display: grid;
    gap: 4px
}

.locale-panel[hidden] {
    display: none !important
}

.locale-option {
    width: 100%;
    padding: 12px 10px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease
}

.locale-option:hover,
.locale-option:focus-visible,
.locale-option.selected,
.locale-option.is-active {
    background: #edf4ff
}

.locale-option:focus-visible {
    outline: none
}

.locale-option-code {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.035em;
    color: #5a6880
}

.locale-option-name {
    font-size: 13px;
    font-weight: 600;
    color: #55657e
}

.locale-option:hover .locale-option-code,
.locale-option:hover .locale-option-name,
.locale-option:focus-visible .locale-option-code,
.locale-option:focus-visible .locale-option-name,
.locale-option.selected .locale-option-code,
.locale-option.selected .locale-option-name,
.locale-option.is-active .locale-option-code,
.locale-option.is-active .locale-option-name {
    color: #0759e6
}

.locale-switcher.is-open .locale-trigger {
    border-color: #c5d5fb;
}

.locale-switcher .sel-arrow,
.locale-switcher .dropdownCaret svg {
    width: 12px;
    height: 12px;
    color: #0759e6
}

.locale-icon {
    width: 16px;
    height: 16px;
    color: #0759e6
}

.locale-icon svg {
    width: 16px;
    height: 16px
}

.subHeader {
    position: relative
}

footer {
    padding: 75px clamp(24px, 5vw, 80px) 24px;
    background: #101319
}

footer .logo {
    color: #fff
}

.footerTop {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr auto;
    gap: 50px
}

.footerTop>div {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footerTop p {
    font: 600 24px/1.3 'Manrope';
    margin: 20px 0;
    color: #fff
}

.footerTop b {
    font-size: 12px;
    margin-bottom: 12px;
    color: #fff
}

.footerTop a,
.footerTop span {
    font-size: 13px;
    color: rgba(255, 255, 255, .72)
}

.footerTop a:hover {
    color: #fff
}

.footerEmailLink {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

footer .socials a {
    border-color: rgba(255, 255, 255, .18);
    color: #fff !important;
    background: transparent
}

footer .socials a:hover {
    background: #fff;
    border-color: #fff;
    color: #0759e6 !important
}

.backTop {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    transition: background-color .2s ease, border-color .2s ease, transform .25s cubic-bezier(.22, 1, .36, 1)
}

.backTop:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .42);
    transform: translateY(-3px)
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 70px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .58);
    font-size: 11px
}

@media(max-width:850px) {
    #siteHeader {
        height: 76px;
        grid-template-columns: minmax(0, 1fr) auto
    }

    .locale-switcher {
        width: 86px
    }

    .headerCta {
        display: none
    }

    .menuButton {
        display: flex;
        width: 42px;
        height: 42px;
        border: 0;
        background: #eef4ff;
        border-radius: 50%;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 12px;
        z-index: 22
    }

    .menuButton i {
        height: 2px;
        background: #101319;
        width: 100%
    }

    .nav {
        position: fixed;
        inset: 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font: 600 28px 'Manrope';
        transform: translateY(-100%);
        transition: .4s
    }

    .nav.open {
        transform: none
    }

    .headerActions .button {
        display: none
    }

    .headerActions {
        position: absolute;
        right: 72px
    }

    .logoIcon {
        width: clamp(102px, 26vw, 128px);
    }

    .nav.open+.headerActions {
        z-index: 23
    }

    .footerTop {
        grid-template-columns: 1fr 1fr
    }

    .backTop {
        display: none
    }
}

@media(max-width:520px) {
    .headerActions {
        right: 72px
    }

    .locale-switcher {
        width: 82px
    }

    .logoIcon {
        width: clamp(96px, 30vw, 118px);
    }

    .footerTop {
        grid-template-columns: 1fr
    }

    .footerBottom {
        flex-direction: column;
        gap: 8px
    }
}