:root {
    --header-height: 64px;
    --page-side-padding: 24px;
}

:root {
    color-scheme: only light;
}

@media (min-width: 1025px) {
    :root {
        --header-height: 80px;
        --page-side-padding: 10px;
    }
}

:root {
    --color-white: #fff;
    --color-black: #000;
    --colour-quanloop-green: #71dcb7;
    --color-emerald-50: #ecfdf5;
    --color-emerald-500: #10b981;
    --color-emerald-700: #047857;
    --color-sky-50: #edf6fb;
    --color-sky-100: #d9ecf7;
    --color-sky-200: #c2e4f8;
    --color-sky-300: #a7daf8;
    --color-sky-400: #38bdf8;
    --color-sky-500: #0ea5e9;
    --color-sky-600: #1687cb;
    --color-sky-800: #265b7b;
    --color-sky-900: #02476e;
    --color-sky-950: #0a263d;
    --color-neutral-0: #fff;
    --color-neutral-500: #737373;
    --color-neutral-600: #525252;
    --color-neutral-700: #404040;
    --color-neutral-800: #262626;
    --color-neutral-1000: #000;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --color-indigo-950: #252c41;
    --color-tan-100: #f9f5f1;
    --color-tan-200: #eee7dd;
    --color-tan-300: #e1d7cb;
    --color-tan-400: #b8a894;
    --color-tan-500: #887a67;
    --color-tan-600: #675a49;
    --color-tan-700: #504638;
    --color-red-50: #fef2f2;
    --color-red-500: #ef4444;
    --color-red-600: #dc2626;
    --color-red-700: #b91c1c;
    --color-red-800: #991b1b;
}

:root {
    --thin: 100;
    --extra-light: 200;
    --light: 300;
    --normal: 400;
    --regular: 400;
    --medium: 500;
    --semi-bold: 600;
    --bold: 700;
    --extra-bold: 800;
    --black: 900;
    --extra-black: 950;
}

@font-face {
    font-family: "JetBrains Mono";
    src: url("../fonts/JetBrainsMono-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "JetBrains Mono";
    src: url("../fonts/JetBrainsMono-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "JetBrains Mono";
    src: url("../fonts/JetBrainsMono-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html,
body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-anchor: none;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

html {
    min-height: 100%;
    display: flex;
}

body {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-x: hidden;
    line-height: 16px;
    font-size: 17px;
}

*,
::after,
::before {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

h1,
.heading__h1 {
    position: relative;
}
h1::after,
.heading__h1::after {
    content: ".";
    margin-left: 0em;
    color: var(--colour-quanloop-green);
    font-weight: inherit;
    font-size: 1.1em;
    line-height: 1;
    font-weight: var(--semi-bold);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
    padding: 0;
    color: var(--color-sky-950);
}

code,
pre,
kbd,
samp {
    font-family:
        "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", monospace;
    font-weight: 500;
}

button {
    all: unset;
    user-select: none;
    box-sizing: border-box;
}

a {
    color: var(--color-sky-600);
    font-weight: var(--semi-bold);
    font-size: 16px;
}

a.unstyled {
    text-decoration: none;
}

a:hover {
    color: var(--color-sky-800);
}

.hidden,
.hide {
    display: none !important;
}

.show {
    display: block !important;
}

input,
textarea,
select {
    all: unset;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif !important;
    box-sizing: border-box;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
}

#page,
main {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

main {
    gap: 48px;
    margin-top: var(--header-height);
}

.site-main--mb {
    margin-bottom: 64px;
}

.site-main--jobs {
    margin-bottom: 32px;
}

.grecaptcha-badge {
    display: none !important;
}

@media (min-width: 1025px) {
    a {
        font-size: 16px;
    }

    main {
        gap: 96px;
        margin-top: 0;
    }

    .site-main--mb {
        margin-bottom: 96px;
    }

    .site-main--jobs {
        margin-bottom: 32px;
    }
}

.heading__h1,
.heading__h2,
h1,
h2,
.job__desc :where(h1, h2, h3, h4, h5, h6),
.wot :where(h1, h2, h3, h4, h5, h6) {
    font-family: "Vollkorn", Georgia, "Times New Roman", serif;
    font-weight: var(--semi-bold);
    letter-spacing: -1.2px;
}

.heading__h3,
.heading__h4,
.heading__h5,
.heading__h6,
h3,
h4,
h5,
h6 .job__desc :where(h3, h4, h5, h6),
.wot :where(h3, h4, h5, h6) {
    font-weight: var(--semi-bold);
}

.heading__h1,
.job__desc :where(h1) {
    margin-top: 8px;
    color: var(--color-neutral-800);
    font-weight: var(--semi-bold);
    font-size: 34px;
    line-height: 40px;
}

.heading__h2,
.wot :where(h2),
.job__desc :where(h2) {
    margin-top: 6px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 26px;
    line-height: 32px;
}

.heading__h3,
.wot :where(h3),
.job__desc :where(h3) {
    margin-top: 4px;
    color: var(--color-sky-950);
    font-weight: var(--semi-bold);
    font-size: 20px;
    line-height: 26px;
}

@media (min-width: 1025px) {
    .heading__h1,
    .job__desc :where(h1) {
        margin-top: 16px;
        font-size: 64px;
        line-height: 72px;
    }

    .heading__h2,
    .wot :where(h2),
    .job__desc :where(h2) {
        margin-top: 8px;
        font-weight: var(--semi-bold);
        font-size: 48px;
        line-height: 48px;
    }

    .heading__h3,
    .wot :where(h3),
    .job__desc :where(h3) {
        margin-top: 6px;
        font-size: 26px;
        line-height: 30px;
    }
    div.swiper-slide > div > h3 {
        margin-top: 12px;
        font-size: 26px !important;
        line-height: 30px;
    }

    div.block-our__holder > div > h3 {
        font-size: 26px;
        line-height: 30px;
        color: var(--color-sky-950);
    }
}

.overhead {
    margin-bottom: 8px;
    color: var(--color-sky-600);
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    font-family:
        "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", monospace;
    font-weight: var(--bold);
}

@media (min-width: 1025px) {
    .overhead {
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 16px;
    }
}

.form {
    display: flex;
    flex-direction: column;
}

.form__filter :where(.button) {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 48px;
    text-decoration: none;
}

.form__filter :where(.button) :where(svg) {
    fill: var(--color-sky-400);
}

.form__filter-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form--subs {
    gap: 16px;
}

.form--submit {
    gap: 24px;
}

.button {
    display: inline-flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    height: 48px;
    margin: 0;
    padding: 0 32px;
    border-radius: 16px;
    font-weight: var(--bold);
    font-size: 16px;
    font-family:
        "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        monospace;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    position: relative;
}

.button::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 12px;

    background-color: currentColor;
    -webkit-mask: url("../icons/arrow-right-16.svg") no-repeat center;
    mask: url("../icons/arrow-right-16.svg") no-repeat center;

    transition: transform 0.2s ease;
}

a.button[href="#apply"]::after {
    transform: translateY(0) rotate(90deg);
}

a.button[href="#apply"]:hover::after {
    transform: translateY(4px) rotate(90deg);
}

.button:hover::after {
    transform: translateX(4px);
}

.button--sky,
.button--tan,
.button--sky-dark {
    background-color: var(--color-sky-300);
    color: var(--color-sky-950);
}

.button--sky:hover,
.button--tan:hover,
.button--sky-dark:hover {
    background-color: var(--color-sky-600);
    color: var(--color-sky-50);
}

.button--submit::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    background-color: var(--color-sky-950);
    -webkit-mask: url("../icons/arrow-right-16.svg") no-repeat center;
    mask: url("../icons/arrow-right-16.svg") no-repeat center;
}

.button--small {
    height: 32px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 14px;
}

.button--large {
    height: 64px;
    font-size: 24px;
}

.button--fw {
    width: 100%;
}

.awsm-application-submit-btn.awsm-application-submit-btn {
    display: inline-flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    height: 48px;
    margin: 0;
    padding: 0 56px 0 32px;
    border-radius: 16px;
    background-color: var(--color-sky-400);
    color: var(--color-sky-950);
    font-weight: var(--bold);
    font-size: 16px;
    font-family:
        "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        monospace;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    background-image: url("../icons/arrow_right@2x.png") !important;
    background-size: 16px 16px !important;
    background-position: calc(100% - 32px) 50% !important;
    background-repeat: no-repeat !important;
}

.awsm-application-submit-btn.awsm-application-submit-btn:hover {
    background-color: var(--color-sky-500);
    color: var(--color-sky-950);
}

.input__label,
.input :where(label),
.awsm-job-form-group.awsm-job-form-group__label,
.awsm-job-form-group.awsm-job-form-group :where(label) {
    display: block;
    margin-bottom: 8px !important;
    color: var(--color-sky-950);
    font-weight: var(--medium);
    font-size: 16px;
}

.input__text,
.input__file,
.input
    input[type]:not([type="submit"]):not([type="hidden"]):not(
        [type="checkbox"]
    ),
.awsm-job-form-group.awsm-job-form-group__text,
.awsm-job-form-group.awsm-job-form-group__file,
.awsm-job-form-group.awsm-job-form-group
    input[type]:not([type="submit"]):not([type="hidden"]):not(
        [type="checkbox"]
    ) {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 16px;
    background-color: var(--color-white);
    border: none;
    border-radius: 16px;
    color: var(--color-slate-700);
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 18px;
}

.input__file,
.input input[type="file"],
.awsm-job-form-group.awsm-job-form-group__file,
.awsm-job-form-group.awsm-job-form-group input[type="file"] {
    display: inline-flex !important;
}

.input__file span,
.input input[type="file"] span,
.awsm-job-form-group.awsm-job-form-group__file span,
.awsm-job-form-group.awsm-job-form-group input[type="file"] span {
    color: red;
}

.input__file::file-selector-button,
.input input[type="file"]::file-selector-button,
.awsm-job-form-group.awsm-job-form-group__file::file-selector-button,
.awsm-job-form-group.awsm-job-form-group
    input[type="file"]::file-selector-button {
    all: unset;
    height: 32px;
    margin: 8px 16px 0 -8px;
    padding: 0 16px 0 8px;
    border-radius: 8px;
    background-color: var(--color-sky-950);
    color: var(--color-white);
    font-weight: var(--bold);
    font-size: 14px;
    line-height: 14px;
}

.input__textarea,
.input :where(textarea),
.awsm-job-form-group.awsm-job-form-group__textarea,
.awsm-job-form-group.awsm-job-form-group :where(textarea) {
    width: 100%;
    padding: 16px;
    background-color: var(--color-white);
    border: none;
    border-radius: 16px;
    color: var(--color-sky-950);
    font-weight: var(--medium);
    font-size: 16px;
    line-height: 20px;
    resize: vertical;
}

.input__checkbox :where(input),
.input.awsm-job-inline-group :where(input),
.awsm-job-form-group.awsm-job-form-group__checkbox :where(input),
.awsm-job-form-group.awsm-job-form-group.awsm-job-inline-group :where(input) {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    opacity: 0;
}

.input__checkbox :where(input):checked + label :where(img),
.input.awsm-job-inline-group :where(input):checked + label :where(img),
.awsm-job-form-group.awsm-job-form-group__checkbox
    :where(input):checked
    + label
    :where(img),
.awsm-job-form-group.awsm-job-form-group.awsm-job-inline-group
    :where(input):checked
    + label
    :where(img) {
    display: block;
}

.input__checkbox :where(input):checked + label::before,
.input.awsm-job-inline-group :where(input):checked + label::before,
.awsm-job-form-group.awsm-job-form-group__checkbox
    :where(input):checked
    + label::before,
.awsm-job-form-group.awsm-job-form-group.awsm-job-inline-group
    :where(input):checked
    + label::before {
    border-color: var(--color-sky-600);
    background-color: var(--color-sky-600);
}

.input__checkbox :where(label),
.input.awsm-job-inline-group :where(label),
.awsm-job-form-group.awsm-job-form-group__checkbox :where(label),
.awsm-job-form-group.awsm-job-form-group.awsm-job-inline-group :where(label) {
    position: relative;
    display: block;
    padding-left: 32px;
    color: var(--color-sky-950);
    font-weight: var(--medium);
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    user-select: none;
}

.input__checkbox :where(label)::before,
.input.awsm-job-inline-group :where(label)::before,
.awsm-job-form-group.awsm-job-form-group__checkbox :where(label)::before,
.awsm-job-form-group.awsm-job-form-group.awsm-job-inline-group
    :where(label)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-slate-300);
    border-radius: 4px;
    background-color: var(--color-white);
}

.input__checkbox :where(label)::after,
.input.awsm-job-inline-group :where(label)::after,
.awsm-job-form-group.awsm-job-form-group__checkbox :where(label)::after,
.awsm-job-form-group.awsm-job-form-group.awsm-job-inline-group
    :where(label)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--color-white);
    -webkit-mask: url("../icons/checkbox-check.svg") no-repeat center;
    mask: url("../icons/checkbox-check.svg") no-repeat center;
}

.input__checkbox :where(img),
.input.awsm-job-inline-group :where(img),
.awsm-job-form-group.awsm-job-form-group__checkbox :where(img),
.awsm-job-form-group.awsm-job-form-group.awsm-job-inline-group :where(img) {
    position: absolute;
    top: 6px;
    left: 4px;
    display: none;
}

.input__hint,
.input__error,
.input :where(small),
.awsm-job-form-group.awsm-job-form-group__hint,
.awsm-job-form-group.awsm-job-form-group__error,
.awsm-job-form-group.awsm-job-form-group :where(small) {
    display: block;
    margin-top: 8px;
    color: var(--color-sky-800);
    font-weight: var(--medium);
    font-size: 14px;
    line-height: 14px;
}

.input__error,
.awsm-job-form-group.awsm-job-form-group__error {
    display: none;
    color: var(--color-red-700);
}

.input--fw :where(input),
.awsm-job-form-group.awsm-job-form-group--fw :where(input) {
    width: 100%;
}

.input--tan :where(label),
.awsm-job-form-group.awsm-job-form-group--tan :where(label) {
    color: var(--color-sky-950);
}

.input--error .input__error,
.awsm-job-form-group.awsm-job-form-group--error .input__error {
    display: block;
}

.input--error :where(label),
.awsm-job-form-group.awsm-job-form-group--error :where(label) {
    color: var(--color-red-700) !important;
}

.input--error :where(label)::before,
.awsm-job-form-group.awsm-job-form-group--error :where(label)::before {
    border-color: var(--color-red-600) !important;
}

.input--error.input :where(label),
.input--error .awsm-job-form-group.awsm-job-form-group__checkbox :where(label),
.awsm-job-form-group.awsm-job-form-group--error.input :where(label),
.awsm-job-form-group.awsm-job-form-group--error
    .awsm-job-form-group.awsm-job-form-group__checkbox
    :where(label) {
    color: var(--color-sky-950) !important;
}

.input--error :where(input),
.awsm-job-form-group.awsm-job-form-group--error :where(input) {
    background-color: var(--color-red-50) !important;
    border: 2px solid var(--color-red-600) !important;
    color: var(--color-red-800) !important;
    font-weight: var(--medium) !important;
}

.input input[type="checkbox"].awsm-job-form-error + label::before,
.awsm-job-form-group.awsm-job-form-group
    input[type="checkbox"].awsm-job-form-error
    + label::before {
    background-color: var(--color-red-50);
    border: 2px solid var(--color-red-600);
    color: var(--color-red-800);
    font-weight: var(--medium);
}

.input input[type="checkbox"].awsm-job-form-error + label::after,
.awsm-job-form-group.awsm-job-form-group
    input[type="checkbox"].awsm-job-form-error
    + label::after {
    background-color: transparent;
}

.dropdown {
    position: relative;
}

.dropdown::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 16px;
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--color-sky-800);
    -webkit-mask: url("../icons/chevron-down.svg") no-repeat center;
    mask: url("../icons/chevron-down.svg") no-repeat center;
}

.dropdown :where(input) {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background-color: var(--color-sky-50);
    border-radius: 16px;
    color: var(--color-slate-700);
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 18px;
}

.dropdown :where(input)::placeholder {
    color: var(--color-slate-700);
}

.dropdown :where(.options) {
    position: absolute;
    top: calc(48px + 8px);
    right: 0;
    left: 0;
    padding: 4px;
    visibility: hidden;
    list-style: none;
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown :where(.options) :where(li) {
    position: relative;
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 12px;
    border-radius: 12px;
    color: var(--color-slate-700);
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 18px;
}

.dropdown :where(.options) :where(li).active {
    background-color: var(--color-sky-50);
}

.dropdown :where(.options) :where(li).active::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--color-sky-600);
    -webkit-mask: url("../icons/circle-check-fill.svg") no-repeat center;
    mask: url("../icons/circle-check-fill.svg") no-repeat center;
}

.dropdown.opened::before {
    -webkit-mask: url("../icons/circle-x-fill.svg") no-repeat center;
    mask: url("../icons/circle-x-fill.svg") no-repeat center;
}

.dropdown.opened :where(.options) {
    visibility: visible;
}

@media (min-width: 1025px) {
    .dropdown :where(input) {
        cursor: pointer;
    }

    .dropdown :where(.options) :where(li) {
        cursor: pointer;
    }

    .dropdown :where(.options) :where(li):hover {
        background-color: var(--color-sky-50);
    }
}

.swiper {
    position: relative;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    list-style: none;
    z-index: 1;
}

.swiper__nav-titled {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.swiper__nav-titled .swiper__button-holder {
    margin-bottom: 0;
}

.swiper__button-holder {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.swiper__button-holder :where(.swiper__button-next, .swiper__button-prev) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background-color: var(--color-sky-300);
    fill: var(--color-sky-950);
    cursor: pointer;
}

.swiper__button-holder
    :where(.swiper__button-next, .swiper__button-prev)[tabindex="-1"] {
    opacity: 0.3;
}

.swiper__button-holder
    :where(.swiper__button-next, .swiper__button-prev):hover:not(
        .swiper-button-disabled
    ) {
    background-color: var(--color-sky-600);
}

.swiper-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition-property: transform;
    transition-timing-function: var(
        --swiper-wrapper-transition-timing-function,
        initial
    );
    box-sizing: content-box;
}

.swiper-slide {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    transition-property: transform;
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0, 0, 0);
}

.swiper-horizontal {
    touch-action: pan-y;
}

.swiper-vertical {
    touch-action: pan-x;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}

.swiper-3d {
    perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;

    /* For Firefox */
    -ms-overflow-style: none;

    /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal
    > .swiper-wrapper
    > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical
    > .swiper-wrapper
    > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}

/* Slide styles start */

/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0)
    );
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0)
    );
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0)
    );
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0)
    );
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header {
    position: fixed;
    width: 100%;
    background-color: var(--color-white);
    z-index: 10;
}

.header__holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    height: var(--header-height);
    margin: 0 auto;
    padding: 0 var(--page-side-padding);
    background-color: var(--color-white);
}

.header__brand {
    display: flex;
    align-items: center;
    width: 185px;
}

.header__brand :where(img) {
    width: auto;
    height: 20px;
}

.header__brand-logo,
.header__brand-sep,
.header__brand-sub {
    height: 20px;
}

.header__nav-list {
    list-style: none;
    user-select: none;
}

.header__nav-list :where(li) {
    border-bottom: 2px solid var(--color-sky-50);
}

.header__nav-list :where(a) {
    display: inline-flex;
    width: 100%;
    padding: 19px 0;
    color: var(--color-sky-900);
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 18px;
    text-decoration: none;
}

.header__nav-list .current-menu-item :where(a),
.header__nav-list .current-page-ancestor :where(a) {
    color: var(--color-sky-500);
}

.header__nav-list-holder {
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    z-index: -1;
    padding: 0 var(--page-side-padding) 32px;
    background-color: var(--color-white);
    transition: all 0.5s ease;
}

.header__nav-overlay {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: -2;
    transition: all 0.7s ease;
}

.header__nav :where(button) {
    width: 24px;
    height: 24px;
    background-color: var(--color-sky-500);
    -webkit-mask: url("../icons/3-lines-horisontal.svg") no-repeat center;
    mask: url("../icons/3-lines-horisontal.svg") no-repeat center;
}

.header__nav.toggled .header__nav-list-holder {
    top: var(--header-height);
}

.header__nav.toggled .header__nav-overlay {
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.header__nav.toggled :where(button) {
    -webkit-mask: url("../icons/x.svg") no-repeat center;
    mask: url("../icons/x.svg") no-repeat center;
}

@media (min-width: 1025px) {
    .header {
        position: static;
    }

    .header__brand {
        width: 222px;
    }

    .header__brand :where(img) {
        height: 38px;
    }

    .header__brand-logo,
    .header__brand-sep,
    .header__brand-sub {
        height: 24px;
    }

    .header__nav-list {
        display: flex;
        align-items: center;
        gap: 32px;
        height: var(--header-height);
    }

    .header__nav-list :where(li) {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        border: none;
    }

    .header__nav-list :where(a) {
        padding: 0;
    }

    .header__nav-list :where(a):hover {
        color: var(--color-sky-600);
    }

    .header__nav-list .current-menu-item::after,
    .header__nav-list .current-page-ancestor::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        height: 6px;
        background-color: var(--color-sky-600);
        border-radius: 4px 4px 0 0;
    }

    .header__nav-list-holder {
        position: static;
        padding: 0;
        transition: none;
    }

    .header__nav :where(button) {
        display: none;
    }
}

.hero {
    display: flex;
    align-items: center;
    padding: 64px var(--page-side-padding);

    background:
        /* right-side light glow */
        radial-gradient(
            1200px 800px at 85% 50%,
            rgba(56, 189, 248, 0.22),
            /* --color-sky-400 */ rgba(14, 165, 233, 0.12) 35%,
            /* --color-sky-500 */ rgba(2, 71, 110, 0.06) 55%,
            /* --color-sky-900 */ transparent 72%
        ),
        /* diagonal depth */
        linear-gradient(
                135deg,
                var(--color-sky-950) 0%,
                var(--color-sky-900) 35%,
                var(--color-sky-800) 62%,
                var(--color-sky-300) 100%
            );

    background-repeat: no-repeat;
    background-size: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 55%,
        rgba(0, 0, 0, 0.18) 100%
    );
    pointer-events: none;
}

.hero__msg :where(.overhead) {
    color: var(--color-sky-300);
}

.hero__msg :where(.heading__h1, .job__desc :where(h1)) {
    margin-top: 0;
    color: var(--color-white);
}

.hero__msg :where(p) {
    margin: 16px 0 24px;
    color: var(--color-white);
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 24px;
}

.hero__scroll-to {
    display: none;
}

.hero__sticky {
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    padding: 16px 0;
    background-color: var(--color-sky-900);
    text-align: center;
    transition: all 0.7s ease;
    z-index: 5;
}

.hero__sticky--active {
    top: var(--header-height);
}

.hero__sticky .hero__msg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 24px;
}

.hero__sticky .hero__msg :where(.entry-title) {
    all: unset;
    color: var(--color-white);
    font-weight: var(--medium);
    font-size: 14px;
    line-height: 16px;
    text-align: left;
}

.hero__sticky--main .hero__msg {
    justify-content: center;
}

@media (min-width: 1025px) {
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(10, 38, 61, 0.55),
            /* --color-sky-950 */ transparent 45%
        );
        pointer-events: none;
    }

    .hero {
        position: relative;
        height: calc(100vh - var(--header-height));

        background:
            /* main light bloom on the right */
            radial-gradient(
                1400px 900px at 82% 50%,
                rgba(56, 189, 248, 0.24),
                /* --color-sky-400 */ rgba(14, 165, 233, 0.14) 32%,
                /* --color-sky-500 */ rgba(2, 71, 110, 0.08) 52%,
                /* --color-sky-900 */ transparent 72%
            ),
            /* base depth */
                linear-gradient(
                    135deg,
                    var(--color-sky-950) 0%,
                    var(--color-sky-900) 38%,
                    var(--color-sky-800) 62%,
                    var(--color-sky-300) 100%
                );

        background-repeat: no-repeat;
        background-size: cover;
    }

    .hero__msg {
        width: 1100px;
        padding: 0 var(--page-side-padding);
        margin: 0 auto;
    }

    .hero__msg :where(p, .heading__h1, .job__desc :where(h1)) {
        max-width: 712px;
    }

    .hero__msg :where(p) {
        margin: 32px 0 48px;
        font-size: 27px;
        line-height: 37px;
    }

    .hero__scroll-to {
        position: absolute;
        bottom: 96px;
        left: 50%;
        display: block;
        transform: translateX(-50%);
    }

    .hero__sticky {
        display: none;
    }
}

.awsm-job-container,
.awsm-job-form-inner {
    all: unset;
}

.awsm-job-container
    :where(.heading__h2, .wot :where(h2), .job__desc :where(h2)),
.awsm-job-form-inner
    :where(.heading__h2, .wot :where(h2), .job__desc :where(h2)) {
    margin-bottom: 32px !important;
}

.awsm-job-form-group {
    margin-bottom: 0;
}

.awsm-job-more-container {
    display: none !important;
}

.awsm-job-item {
    padding: 16px 0;
}

.awsm-job-item h2.awsm-job-post-title a {
    font-weight: var(--bold);
    font-size: 18px;
    line-height: 24px;
}

.awsm-job-specification-wrapper {
    padding-bottom: 0 !important;
}

.awsm-job-specification-item {
    margin-right: 14px !important;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 14px;
    line-height: 20px;
}

.awsm-lists {
    border: none;
}

.awsm-list-left-col {
    padding-bottom: 4px;
}

.awsm-list-item:first-of-type .awsm-job-item {
    border-top: 2px solid var(--color-sky-50);
}

.awsm-list-item .awsm-job-item {
    border-bottom: 2px solid var(--color-sky-50);
}

.awsm-filter-toggle.awsm-filter-toggle {
    font-family:
        "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        monospace;
    display: flex;
    justify-content: center !important;
    height: 48px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 16px;
    background-color: var(--color-sky-950);
    color: var(--color-sky-400);
    font-weight: var(--bold);
    font-size: 16px;
    line-height: 16px;
}

.awsm-filter-toggle.awsm-filter-toggle :where(svg) {
    display: none;
}

.awsm-filter-toggle.awsm-filter-toggle::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin-left: 8px;
    background-color: var(--color-sky-400);
    -webkit-mask: url("../icons/filter-16.svg") no-repeat center;
    mask: url("../icons/filter-16.svg") no-repeat center;
}

.awsm-filter-items.awsm-filter-items {
    margin-top: 16px;
}

.awsm-filter-items.awsm-filter-items :where(.awsm-filter-item) {
    margin-bottom: 16px;
    padding: 0;
}

.awsm-filter-items.awsm-filter-items :where(.awsm-filter-item):last-of-type {
    margin-bottom: 0;
}

.awsm-selectric.awsm-selectric {
    background-color: var(--color-sky-50);
    border: none;
    border-radius: 16px;
}

.awsm-selectric.awsm-selectric :where(.label) {
    display: flex;
    align-items: center;
    height: 48px;
    margin: 0 56px 0 16px !important;
    color: var(--color-slate-700);
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 18px;
}

.awsm-selectric.awsm-selectric :where(.awsm-selectric-arrow-drop)::after {
    inset: 12px 16px auto auto;
    width: 24px;
    height: 24px;
    border: none;
    background-color: var(--color-sky-800);
    -webkit-mask: url("../icons/chevron-down.svg") no-repeat center;
    mask: url("../icons/chevron-down.svg") no-repeat center;
}

.awsm-selectric-open.awsm-selectric-open
    :where(.awsm-selectric-arrow-drop)::after {
    -webkit-mask: url("../icons/chevron-up.svg") no-repeat center;
    mask: url("../icons/chevron-up.svg") no-repeat center;
}

.awsm-selectric-items.awsm-selectric-items {
    top: 56px;
    padding: 4px;
    background-color: var(--color-white);
    border: none;
    border-radius: 16px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
}

.awsm-selectric-items.awsm-selectric-items :where(ul) {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.awsm-selectric-items.awsm-selectric-items :where(li) {
    position: relative;
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 12px !important;
    border-radius: 12px;
    color: var(--color-slate-700) !important;
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 18px;
}

.awsm-selectric-items.awsm-selectric-items :where(li):hover {
    background-color: var(--color-slate-200);
}

.awsm-selectric-items.awsm-selectric-items :where(li).highlighted {
    background-color: var(--color-sky-50);
}

.awsm-selectric-items.awsm-selectric-items :where(li).highlighted::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--color-sky-600);
    -webkit-mask: url("../icons/circle-check-fill.svg") no-repeat center;
    mask: url("../icons/circle-check-fill.svg") no-repeat center;
}

.awsm-filter-wrap.awsm-full-width-search-filter-wrap.awsm-jobs-alerts-on
    .awsm-filter-items,
.awsm-filter-wrap.awsm-no-search-filter-wrap.awsm-jobs-alerts-on
    .awsm-filter-items {
    width: calc(100% - 0px) !important;
}

@media (max-width: 767px) {
    .awsm-filter-toggle {
        display: flex;
    }
    .awsm-filter-toggle + .awsm-filter-items {
        display: none;
    }
    .awsm-filter-items .awsm-filter-item {
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .awsm-filter-toggle {
        display: none !important;
    }
    .awsm-filter-wrap .awsm-filter-items {
        gap: 26px;
    }
    .awsm-filter-wrap .awsm-filter-item {
        margin: 0;
        flex: 1 1 0;
    }
}

.awsm-jobs-alerts-modal-content.awsm-jobs-alerts-modal-content {
    position: relative;
    padding: 20px 24px 24px;
    border: none;
    border-radius: 16px;
}

.awsm-jobs-alerts-modal-content.awsm-jobs-alerts-modal-content :where(h2) {
    position: absolute;
    inset: 0 0 auto 0;
    display: flex;
    align-items: center;
    height: 64px;
    padding: 0 48px 0 24px;
    background-color: var(--color-sky-50);
    border-radius: 16px 16px 0 0;
    color: var(--color-slate-700);
    font-weight: var(--bold);
    font-size: 18px;
    line-height: 18px;
}

.awsm-jobs-alerts-modal-content.awsm-jobs-alerts-modal-content
    :where(.awsm-jobs-alert-popup-close) {
    top: 20px;
    right: 24px;
    width: 24px;
    height: 24px;
    opacity: 1;
    background-image: none;
    background-color: var(--color-slate-700);
    -webkit-mask: url("../icons/x.svg") no-repeat center;
    mask: url("../icons/x.svg") no-repeat center;
    z-index: 1;
}

.awsm-jobs-alerts-modal-content.awsm-jobs-alerts-modal-content
    :where(.awsm-jobs-alerts-modal-content-in) {
    margin-top: 72px;
}

.awsm-jobs-alerts-modal-content.awsm-jobs-alerts-modal-content
    :where(.awsm-jobs-alerts-widget-description) {
    margin-bottom: 24px;
    color: var(--color-slate-700);
    font-weight: var(--medium);
    font-size: 16px;
    line-height: 24px;
}

.awsm-jobs-alerts-form-group
    input[type]:not([type="submit"]):not([type="hidden"]):not(
        [type="checkbox"]
    ).awsm-job-form-error,
.awsm-jobs-alerts-form-group textarea.awsm-job-form-error,
.awsm-job-form-group
    input[type]:not([type="submit"]):not([type="hidden"]):not(
        [type="checkbox"]
    ).awsm-job-form-error,
.awsm-job-form-group textarea.awsm-job-form-error {
    background-color: var(--color-red-50);
    border: 2px solid var(--color-red-500);
    color: var(--color-red-700);
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 18px;
}

.awsm-job-form-group
    input[type="file"].awsm-job-form-error::file-selector-button {
    margin-top: 6px;
}

.awsm-job-form-error {
    margin-top: 6px;
    color: var(--color-red-700);
    font-weight: var(--medium);
    font-size: 14px;
    line-height: 16px;
}

.awsm-jobs-alerts-email-group {
    margin-bottom: 24px;
}

.awsm-jobs-alerts-form-group.awsm-jobs-alerts-email-group input {
    height: 48px;
    padding: 0 16px;
    background-color: var(--color-slate-200);
    border: none;
    border-radius: 16px;
    color: var(--color-slate-700);
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 18px;
}

.awsm_job_alert_privacy_label {
    position: relative;
    display: block;
    padding-left: 32px;
    color: var(--color-sky-950);
    font-weight: var(--medium);
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    user-select: none;
}

.awsm_job_alert_privacy_label::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--color-white);
    -webkit-mask: url("../icons/checkbox-check.svg") no-repeat center;
    mask: url("../icons/checkbox-check.svg") no-repeat center;
}

.awsm_job_alert_privacy_label :where(input)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-slate-300);
    border-radius: 4px;
    background-color: var(--color-white);
}

.awsm_job_alert_privacy_label :where(input):checked::before {
    border-color: var(--color-sky-600);
    background-color: var(--color-sky-600);
}

.awsm_job_alert_privacy_label :where(input).awsm-job-form-error::before {
    border-color: var(--color-red-600);
}

.awsm-jobs-alerts-form-group .button {
    width: 100%;
    background-color: var(--color-sky-600);
    color: var(--color-white);
}

.awsm-jobs-alerts-specs-group {
    margin: 0;
}

.awsm-jobs-alerts-specs-group-in {
    margin-bottom: 24px;
    padding: 0;
}

.awsm-job-alerts-multiple-select .ms-choice {
    all: unset;
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    background: var(--color-slate-200) !important;
    border-radius: 16px;
    color: var(--color-slate-700);
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 18px;
}

.awsm-job-alerts-multiple-select .ms-choice > span {
    position: static;
    padding-left: 16px;
}

.awsm-job-alerts-multiple-select .ms-choice > div.icon-caret {
    all: unset;
    position: absolute;
    top: 12px;
    right: 16px;
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--color-slate-700);
    -webkit-mask: url("../icons/chevron-down.svg") no-repeat center;
    mask: url("../icons/chevron-down.svg") no-repeat center;
}

.awsm-job-alerts-multiple-select .ms-drop {
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    background-color: var(--color-white);
    border: none;
    border-radius: 16px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.awsm-job-alerts-multiple-select .ms-drop ul {
    padding: 4px;
    list-style: none;
}

.awsm-job-alerts-multiple-select .ms-drop ul > li {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 12px;
    border-radius: 12px;
    color: var(--color-slate-700);
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 18px;
}

.awsm-job-alerts-multiple-select .ms-drop ul > li label {
    all: unset;
    padding-left: 32px;
}

.awsm-job-alerts-multiple-select .ms-drop ul > li span::before,
.awsm-job-alerts-multiple-select .ms-drop ul > li span::after {
    position: absolute;
    top: calc(50% - 12px);
    left: 12px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.awsm-job-alerts-multiple-select .ms-drop ul > li span::before {
    border: 2px solid var(--color-slate-300);
}

.awsm-job-alerts-multiple-select .ms-drop ul > li span::after {
    background: var(--color-sky-600) url("../icons/checkbox-check.svg")
        no-repeat center;
    background-size: unset;
}

.awsm-jobs-alerts-message,
.awsm-application-message {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 18px 16px;
    border-radius: 8px;
    font-weight: var(--medium);
    font-size: 16px;
    line-height: 20px;
}

.awsm-jobs-alerts-message::before,
.awsm-application-message::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
}

.awsm-jobs-alerts-message.awsm-success-message,
.awsm-jobs-alerts-message.awsm-error-message,
.awsm-application-message.awsm-success-message,
.awsm-application-message.awsm-error-message {
    display: flex;
}

.awsm-jobs-alerts-message.awsm-success-message::before,
.awsm-jobs-alerts-message.awsm-error-message::before,
.awsm-application-message.awsm-success-message::before,
.awsm-application-message.awsm-error-message::before {
    flex-shrink: 0;
}

.awsm-jobs-alerts-message.awsm-success-message,
.awsm-application-message.awsm-success-message {
    border: 2px solid var(--color-emerald-500);
    background-color: var(--color-emerald-50);
    color: var(--color-emerald-700);
}

.awsm-jobs-alerts-message.awsm-success-message::before,
.awsm-application-message.awsm-success-message::before {
    background-color: var(--color-emerald-700);
    -webkit-mask: url("../icons/circle-check-fill-16.svg") no-repeat center;
    mask: url("../icons/circle-check-fill-16.svg") no-repeat center;
}

.awsm-jobs-alerts-message.awsm-error-message,
.awsm-application-message.awsm-error-message {
    border: 2px solid var(--color-red-500);
    background-color: var(--color-red-50);
    color: var(--color-red-700);
}

.awsm-jobs-alerts-message.awsm-error-message::before,
.awsm-application-message.awsm-error-message::before {
    background-color: var(--color-red-700);
    -webkit-mask: url("../icons/circle-warning-fill-16.svg") no-repeat center;
    mask: url("../icons/circle-warning-fill-16.svg") no-repeat center;
}

.awsm-jobs-none-container {
    padding: 24px 0;
}

.awsm-jobs-none-container :where(p) {
    padding: 0;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.awsm-jobs-alerts-widget-wrapper {
    display: none;
}

.awsm-load-more-btn {
    border-color: var(--color-sky-50);
    border-radius: 16px;
}

.awsm-job-alerts-popup-on {
    height: auto !important;
}

@media (min-width: 1025px) {
    .awsm-job-item {
        padding: 24px 0;
    }

    .awsm-job-item h2.awsm-job-post-title a {
        font-size: 20px;
        line-height: 20px;
    }

    .awsm-job-form-inner
        :where(.heading__h2, .wot :where(h2), .job__desc :where(h2)) {
        margin-bottom: 48px !important;
    }

    .awsm-job-specification-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1.5fr)) 0.5fr;
    }

    .awsm-job-specification-item {
        font-size: 18px;
        line-height: 24px;
    }

    .awsm-list-left-col {
        padding-bottom: 0;
    }

    .awsm-list-right-col {
        text-align: left;
    }

    .awsm-filter-toggle.awsm-filter-toggle {
        display: none;
    }

    .awsm-filter-items.awsm-filter-items {
        gap: 26px;
    }

    .awsm-filter-items.awsm-filter-items :where(.awsm-filter-item) {
        flex: 1;
        padding: 0;
    }

    .awsm-selectric-items {
        bottom: auto !important;
    }

    .awsm-jobs-alerts-specs-group {
        display: flex;
        gap: 8px;
    }

    .awsm-jobs-alerts-specs-group-in {
        flex: 1;
    }

    .awsm-jobs-alerts-modal-content.awsm-jobs-alerts-modal-content
        .awsm-jobs-alerts-privacy-field-group {
        margin: 0 0 24px;
    }

    .awsm-jobs-none-container :where(p) {
        font-size: 18px;
        line-height: 26px;
    }
}

.job__holder {
    display: block;
    padding: 40px var(--page-side-padding) 0;
}

.job__desc :where(p) {
    margin: 0 0 24px 0;
    color: var(--color-sky-800);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.job__desc :where(p).lead {
    margin-bottom: 32px;
    font-size: 18px;
}

.job__desc :where(ul) {
    margin: 24px 0;
    list-style: none;
}

.job__desc :where(ul) :where(li) {
    position: relative;
    padding: 0 0 16px 24px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.job__desc :where(ul) :where(li)::before {
    content: url("../icons/circle-fill.svg");
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
}

.job__desc :where(ol) {
    margin: 0 0 24px 0;
    list-style-type: none;
    counter-reset: section;
}

.job__desc :where(ol) :where(li) {
    position: relative;
    padding: 0 0 16px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.job__desc :where(ol) :where(li)::before {
    counter-increment: section;
    content: counters(section, ".") ". ";
    margin-right: 8px;
    color: var(--color-sky-400);
    font-weight: var(--bold);
}

.job__desc :where(ol) :where(li) :where(ol) {
    margin: 16px 0 0 24px;
}

.job__desc :where(ol) :where(li) :where(ol) :where(li):last-of-type {
    padding-bottom: 0;
}

.job__desc :where(ul, ol) :where(li):last-of-type {
    padding-bottom: 0;
}

.job__desc :where(h2) {
    margin-bottom: 24px !important;
}

.job__desc :where(h3) {
    margin-bottom: 12px;
}

.job__recom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    padding: 32px 0;
    border-top: 2px solid var(--color-sky-50);
}

.job__recom :where(.button) {
    align-self: center;
    margin-bottom: 16px;
    background-color: var(--color-slate-700);
    color: var(--color-white);
}

.job__recom :where(.button):hover {
    background-color: var(--color-slate-800);
    color: var(--color-white);
}

.job__recom-links,
.job__recom .addtoany_list {
    display: flex;
    gap: 16px;
}

.job__recom-links a,
.job__recom .addtoany_list a {
    padding: 0;
}

.job__recom-links :where(img),
.job__recom .addtoany_list :where(img) {
    flex-shrink: 0;
}

.job__form {
    background-color: var(--color-sky-50);
}

.job__form :where(.job__holder) {
    padding: 32px var(--page-side-padding);
}

@media (min-width: 1025px) {
    .job__holder {
        width: 712px;
        margin: 0 auto;
        padding: 64px 0 48px;
    }

    .job__desc :where(p) {
        margin-top: 24px;
        line-height: 26px;
    }

    .job__desc :where(p).lead {
        margin-bottom: 48px;
        font-size: 24px;
        line-height: 32px;
    }

    .job__desc :where(ul, ol) :where(li) {
        font-size: 18px;
        line-height: 26px;
    }

    .job__desc :where(ol) :where(li) :where(ol) {
        margin: 16px 0 0 32px;
    }

    .job__desc :where(h2) {
        margin-top: 48px;
        margin-bottom: 32px !important;
    }

    .job__desc :where(h3) {
        margin-top: 48px;
        margin-bottom: 24px;
    }

    .job__recom {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
        margin-top: 48px;
        padding: 48px 0 0;
    }

    .job__recom :where(.button) {
        margin-bottom: 0;
    }

    .job__form :where(.job__holder) {
        padding: 128px var(--page-side-padding);
    }
}

.a2a_logo_color,
#a2a_copy_link_copied {
    background-color: #02476e !important;
}

.wot__holder {
    padding: 32px var(--page-side-padding) 0;
}

.wot :where(.heading__h1, .job__desc :where(h1)) {
    margin-bottom: 26px;
}

.wot :where(h2) {
    margin-top: 26px;
}

.wot :where(h3) {
    margin-top: 20px;
}

.wot :where(p) {
    margin: 8px 0 16px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.wot :where(p).lead {
    margin: 32px 0;
    color: var(--color-sky-800);
    font-size: 18px;
}

.wot :where(ul, ol) {
    margin: 24px 0;
    list-style: none;
}

.wot :where(ul, ol) :where(li) {
    position: relative;
    padding: 0 0 16px 24px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.wot :where(ul, ol) :where(li)::before {
    content: url("../icons/circle-fill.svg");
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
}

.wot :where(ul, ol) :where(li):last-of-type {
    padding-bottom: 0;
}

@media (min-width: 1025px) {
    .wot__holder {
        width: 712px;
        margin: 0 auto;
        padding: 96px 0 0;
    }

    .wot :where(.heading__h1, .job__desc :where(h1)) {
        margin-bottom: 48px;
    }

    .wot :where(h2) {
        margin-top: 72px;
    }

    .wot :where(h3) {
        margin-top: 42px;
    }

    .wot :where(p) {
        margin: 16px 0 32px;
        font-size: 18px;
        line-height: 26px;
    }

    .wot :where(p).lead {
        margin: 64px 0;
        font-size: 24px;
        line-height: 32px;
    }

    .wot :where(ul, ol) :where(li) {
        font-size: 18px;
        line-height: 26px;
    }
}

.error,
.simple-page {
    display: flex;
    align-items: center;
    flex-basis: 100%;
    background-color: var(--color-sky-900);
}

.error__holder,
.simple-page__holder {
    padding: 0 var(--page-side-padding);
    text-align: center;
}

.error :where(h1, p),
.simple-page :where(h1, p) {
    color: var(--color-white);
}

.error :where(h1),
.simple-page :where(h1) {
    margin-bottom: 24px;
}

.error :where(p, a),
.simple-page :where(p, a) {
    font-size: 18px;
    line-height: 24px;
}

.error :where(a),
.simple-page :where(a) {
    font-weight: var(--medium);
}

@media (min-width: 1025px) {
    .error__holder,
    .simple-page__holder {
        width: 1100px;
        margin: 0 auto;
    }

    .error :where(h1),
    .simple-page :where(h1) {
        margin-bottom: 32px;
    }

    .error :where(p, a),
    .simple-page :where(p, a) {
        font-size: 24px;
        line-height: 32px;
    }
}

.footer {
    margin-top: auto;
}

.footer__holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 112px; */
    padding: 0 var(--page-side-padding);
    margin-bottom: 32px;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 0;
    margin-bottom: 20px;
    list-style: none;
}

.footer__nav :where(li) {
    position: relative;
    white-space: nowrap;
}

.footer__nav :where(li)::before {
    content: none;
    position: relative;
    right: 0;
    color: var(--color-slate-400);
    font-size: 14px;
}

.footer__nav :where(li):first-of-type::before {
    content: none;
}

.footer__nav :where(a) {
    padding: 0 14px;
}

@media (max-width: 767.98px) {
    .footer__nav li > a {
        font-size: 14px;
        line-height: 24px;
    }
}

.footer__cr {
    color: var(--color-slate-400);
    font-weight: var(--bold);
    font-size: 14px;
}

@media (min-width: 1025px) {
    .footer__holder {
        display: flex;
        flex-direction: row-reverse;
        width: 1100px;
        margin: 32px auto;
    }

    .footer__nav {
        margin-bottom: 0;
    }

    .footer__nav :where(li)::before {
        content: "|";
        position: relative;
        right: 0;
        color: var(--color-slate-400);
        font-size: 14px;
    }

    .footer__nav :where(li)::after {
        content: none !important;
    }

    .footer__nav :where(a) {
        padding: 0 16px;
    }

    .footer__cr {
        padding-right: 16px;
        font-weight: var(--medium);
        font-size: 16px;
    }
}

.block-head {
    align-items: center;
    padding: 64px var(--page-side-padding);

    background:
        /* right-side light glow */
        radial-gradient(
            1200px 800px at 85% 50%,
            rgba(56, 189, 248, 0.22),
            /* --color-sky-400 */ rgba(14, 165, 233, 0.12) 35%,
            /* --color-sky-500 */ rgba(2, 71, 110, 0.06) 55%,
            /* --color-sky-900 */ transparent 72%
        ),
        /* diagonal depth */
        linear-gradient(
                135deg,
                var(--color-sky-950) 0%,
                var(--color-sky-900) 35%,
                var(--color-sky-800) 62%,
                var(--color-sky-300) 100%
            );

    background-repeat: no-repeat;
    background-size: cover;
}

.block-head::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.block-head__holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 64px var(--page-side-padding);
}

.block-head :where(.overhead) {
    color: var(--color-sky-300);
}

.block-head :where(.heading__h1, .job__desc :where(h1)) {
    margin-top: 0;
    color: var(--color-white);
}

.block-head :where(p) {
    margin: 16px 0 0;
    color: var(--color-white);
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 24px;
}

.block-head--job .block-head__back {
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--color-sky-300);
    font-weight: var(--semi-bold);
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.block-head--job .block-head__back::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--color-sky-300);
    -webkit-mask: url("../icons/arrow-left-16.svg") no-repeat center;
    mask: url("../icons/arrow-left-16.svg") no-repeat center;
}

.block-head--job .block-head__dtls {
    margin-top: 24px;
}

.block-head--job .block-head__dtls :where(.button) {
    width: 100%;
}

.block-head--job .block-head__dtls-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.block-head--job .block-head__dtls-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: 24px;
    padding: 4px 0 0 32px;
    color: var(--color-white);
    font-weight: var(--medium);
    font-size: 14px;
    line-height: 16px;
}

.block-head--job .block-head__dtls-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--color-sky-300);
}

.block-head--job .block-head__dtls-item--location::before {
    -webkit-mask: url("../icons/map-pin.svg") no-repeat center;
    mask: url("../icons/map-pin.svg") no-repeat center;
}

.block-head--job .block-head__dtls-item--time::before {
    -webkit-mask: url("../icons/stopwatch.svg") no-repeat center;
    mask: url("../icons/stopwatch.svg") no-repeat center;
}

.block-head--job .block-head__dtls-item--salary::before {
    -webkit-mask: url("../icons/cash.svg") no-repeat center;
    mask: url("../icons/cash.svg") no-repeat center;
}

.block-head--job .block-head__dtls-item--team::before {
    -webkit-mask: url("../icons/team-alt.svg") no-repeat center;
    mask: url("../icons/team-alt.svg") no-repeat center;
}

.block-head--job .block-head__dtls-item--experience-level::before {
    -webkit-mask: url("../icons/exp_lvl.svg") no-repeat center;
    mask: url("../icons/exp_lvl.svg") no-repeat center;
}

@media (min-width: 1025px) {
    .block-head__holder {
        max-width: 1100px;
        margin: 0 auto;
        padding: 96px var(--page-side-padding);
    }

    .block-head :where(p, .heading__h1, .job__desc :where(h1)) {
        max-width: 712px;
    }

    .block-head :where(p) {
        margin: 32px 0 0;
        font-size: 22px;
        line-height: 32px;
    }

    .block-head--job :where(.heading__h1, .job__desc :where(h1)) {
        max-width: none;
    }

    .block-head--job .block-head__holder {
        align-items: unset;
        padding: 64px var(--page-side-padding);
    }

    .block-head--job .block-head__back {
        margin-bottom: 68px;
    }

    .block-head--job .block-head__dtls {
        display: flex;
        justify-content: space-between;
        margin-top: 58px;
    }

    .block-head--job .block-head__dtls :where(.button) {
        width: auto;
    }

    .block-head--job .block-head__dtls-items {
        display: flex;
        gap: 24px;
        margin-bottom: 0;
    }

    .block-head--job .block-head__dtls-item {
        min-width: 0px;
        padding-top: 0;
        font-size: 18px;
        line-height: 26px;
        align-self: center;
    }
}

.block-our {
    padding: 0 var(--page-side-padding);
    overflow-x: hidden;
}

.block-our :where(.swiper) {
    display: block;
}

.block-our__holder {
    display: none;
}

.block-our__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 24px;
    border-radius: 32px;
    background-color: var(--color-sky-50);
}

.block-our__item :where(.overhead) {
    margin-bottom: 8px;
}

.block-our__item :where(.heading__h3, .job__desc :where(h3), .wot :where(h3)) {
    margin-top: 0;
    color: var(--color-sky-950);
}

.block-our :where(p) {
    height: 100%;
    margin: 12px 0 24px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 1025px) {
    .block-our :where(.swiper) {
        display: none;
    }

    .block-our__holder {
        display: flex;
        gap: 24px;
        width: 1100px;
        padding: 0 var(--page-side-padding);
        margin: 0 auto;
    }

    .block-our__item {
        height: auto;
        padding: 32px;
    }

    .block-our :where(p) {
        margin: 18px 0 32px;
        font-size: 17px;
        line-height: 26px;
    }
}

.block-wedo__holder {
    padding: 0 var(--page-side-padding);
}

.block-wedo__head {
    display: flex;
    align-items: flex-end;
    min-height: 230px;
    padding: 32px 24px 24px;

    background:
        /* soft light from top-right */
        radial-gradient(
            900px 500px at 85% 15%,
            rgba(56, 189, 248, 0.22),
            /* --color-sky-400 */ rgba(14, 165, 233, 0.12) 35%,
            /* --color-sky-500 */ rgba(2, 71, 110, 0.06) 55%,
            /* --color-sky-900 */ transparent 70%
        ),
        /* depth gradient */
        linear-gradient(
                135deg,
                var(--color-sky-950) 0%,
                var(--color-sky-900) 40%,
                var(--color-sky-800) 65%,
                var(--color-sky-300) 100%
            );

    background-repeat: no-repeat;
    background-size: cover;

    border-radius: 32px 32px 0 0;
}

.block-wedo__head :where(.overhead) {
    color: var(--color-sky-300);
}

.block-wedo__head :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
    color: var(--color-white);
}

.block-wedo__head :where(p) {
    margin-top: 8px;
    color: var(--color-white);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.block-wedo__body {
    background-color: var(--color-sky-50);
    padding: 24px;
    border-radius: 0 0 32px 32px;
}

.block-wedo__body
    :where(.heading__h3, .job__desc :where(h3), .wot :where(h3), h3) {
    margin: 0 0 6px 0;
    color: var(--color-sky-950);
}

.block-wedo__body :where(p) {
    padding-bottom: 24px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.block-wedo__body :where(p):last-of-type {
    padding-bottom: 0;
}

.block-wedo__body--np {
    padding: 0;
}

.block-wedo--map .block-wedo__body {
    height: 293px;
    overflow: hidden;
}

.block-wedo--map :where(.acf-map) {
    width: 100%;
    height: 100%;
    margin: 0;
}

@media (min-width: 1025px) {
    .block-wedo__holder {
        display: flex;
        width: 1100px;
        margin: 0 auto;
    }

    .block-wedo__head {
        flex-basis: 50%;
        height: auto;
        padding: 64px;

        background:
            /* soft light from top-right */
            radial-gradient(
                1100px 600px at 85% 20%,
                rgba(56, 189, 248, 0.22),
                /* --color-sky-400 */ rgba(14, 165, 233, 0.12) 35%,
                /* --color-sky-500 */ rgba(2, 71, 110, 0.06) 55%,
                /* --color-sky-900 */ transparent 70%
            ),
            /* diagonal depth */
                linear-gradient(
                    135deg,
                    var(--color-sky-950) 0%,
                    var(--color-sky-900) 40%,
                    var(--color-sky-800) 65%,
                    var(--color-sky-300) 100%
                );

        background-repeat: no-repeat;
        background-size: cover;

        border-radius: 32px 0 0 32px;
    }

    .block-wedo__body {
        flex-basis: 50%;
        padding: 64px;
        border-radius: 0 32px 32px 0;
    }

    .block-wedo__body
        :where(.heading__h3, .job__desc :where(h3), .wot :where(h3), h3) {
        margin-top: 0;
        margin-bottom: 22px;
        padding-top: 0;
    }

    .block-wedo__body :where(p) {
        padding-bottom: 52px;
        font-size: 17px;
        line-height: 26px;
    }

    .block-wedo__body :where(p):last-of-type {
        padding-bottom: 0;
    }

    .block-wedo--map .block-wedo__holder {
        flex-direction: row-reverse;
        height: 470px;
    }

    .block-wedo--map .block-wedo__head {
        border-radius: 0 32px 32px 0;
    }

    .block-wedo--map .block-wedo__body {
        height: auto;
        padding: 0;
        border-radius: 32px 0 0 32px;
        overflow: hidden;
    }
}

.block-howe {
    padding: 32px var(--page-side-padding);
    overflow-x: hidden;
    background-color: var(--color-sky-50);
}

.block-howe__holder :where(.swiper-wrapper) {
    margin-top: 24px;
}

.block-howe__item {
    height: 100%;
    padding: 24px;
    background-color: var(--color-white);
    border-radius: 32px;
}

.block-howe__item :where(.overhead) {
    margin-bottom: 4px;
}

.block-howe__item :where(p) {
    margin-top: 6px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.block-howe__icon {
    display: flex;
    align-items: center;
    width: 32px;
    height: 32px;
    margin-bottom: 32px;
    user-select: none;
}

.block-howe__icon :where(img) {
    width: 32px;
}

.block-howe :where(.button) {
    position: relative;
    left: 50%;
    margin-top: 24px;
    transform: translateX(-50%);
}

.block-howe--images .block-howe__item {
    position: relative;
    display: flex;
    height: 260px;
    padding: 0;
    overflow: hidden;
}

.block-howe--images .block-howe__item :where(img) {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.block-howe--story .block-howe__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

@media (min-width: 1025px) {
    .block-howe {
        padding: 96px var(--page-side-padding);
    }

    .block-howe__holder {
        width: 1100px;
        margin: 0 auto;
    }

    .block-howe__holder :where(.swiper-wrapper) {
        margin-top: 40px;
    }

    .block-howe__holder :where(.overhead) {
        margin-bottom: 8px;
    }

    .block-howe__item {
        padding: 32px;
    }

    .block-howe__item :where(p) {
        margin-top: 16px;
        font-size: 17px;
        line-height: 26px;
    }

    .block-howe :where(.button) {
        margin-top: 48px;
    }

    .block-howe--story
        :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
        margin-top: 0;
    }

    .block-howe--story .block-howe__items {
        flex-direction: row;
        gap: 24px;
        margin-top: 48px;
    }

    .block-howe--story .block-howe__item {
        flex: 1;
        height: auto;
    }

    .block-howe--story .block-howe__item :where(p) {
        margin-top: 24px;
    }
}

.block-bf__holder {
    display: flex;
    flex-direction: column;
    padding: 0 var(--page-side-padding);
}

.block-bf__holder :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
    margin-top: 0;
}

.block-bf__content {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.block-bf__head {
    margin-bottom: 28px;
}

.block-bf__head :where(p) {
    margin-bottom: 24px;
    color: var(--color-sky-800);
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 24px;
}

.block-bf__head :where(.button) {
    margin-bottom: 48px;
}

.block-bf__image {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 32px 32px 4px 4px;
}

.block-bf__image :where(img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-bf__body {
    display: flex;
    flex-direction: column;
}

.block-bf__body :where(.heading__h3, .job__desc :where(h3), .wot :where(h3)) {
    margin-top: 0;
}

.block-bf__body :where(p) {
    margin: 6px 0 24px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.block-bf__body :where(p).lead {
    margin: 0 0 20px;
    color: var(--color-sky-800);
    font-size: 18px;
    line-height: 24px;
}

.block-bf__body :where(p):last-of-type {
    margin-bottom: 0;
}

.block-bf--offices .block-bf__image {
    margin-top: 0;
}

.block-bf--offices .block-bf__body :where(p) {
    margin-top: 8px;
}

.block-bf--offices .block-bf__body :where(p):last-of-type {
    margin-bottom: 24px;
}

.block-bf--offices .block-bf__body > div:last-of-type :where(p) {
    margin-bottom: 0;
}

.block-bf--team .block-bf__content {
    flex-direction: column-reverse;
}

.block-bf--team .block-bf__head {
    margin-bottom: 0;
}

.block-bf--team .block-bf__image {
    margin-top: 24px;
    border-radius: 4px 4px 32px 32px;
}

@media (min-width: 1025px) {
    .block-bf__holder {
        display: flex;
        width: 1100px;
        margin: 0 auto;
    }

    .block-bf__holder :where(.overhead) {
        margin-bottom: 8px;
    }

    .block-bf__content {
        display: flex;
        flex-direction: row;
        gap: 64px;
        margin-top: 56px;
    }

    .block-bf__head {
        display: flex;
        flex-direction: column;
        flex-basis: 50%;
        margin-bottom: 0;
    }

    .block-bf__head :where(p) {
        margin-bottom: 32px;
        font-size: 22px;
        line-height: 32px;
    }

    .block-bf__head :where(.button) {
        align-self: flex-start;
        margin-bottom: 64px;
    }

    .block-bf__image {
        position: relative;
        flex-grow: 1;
        border-radius: 4px 4px 4px 32px;
    }

    .block-bf__image :where(img) {
        position: absolute;
    }

    .block-bf__body {
        flex-basis: 50%;
    }

    .block-bf__body
        :where(.heading__h3, .job__desc :where(h3), .wot :where(h3)) {
        margin: 0 0 18px;
    }

    .block-bf__body :where(p) {
        margin: 0 0 24px;
        font-size: 17px;
        line-height: 26px;
    }

    .block-bf__body :where(p):last-of-type {
        margin-bottom: 0;
    }

    .block-bf--offices .block-bf__image {
        height: 480px;
        border-radius: 32px 32px 4px 4px;
    }

    .block-bf--offices .block-bf__body {
        flex-direction: row;
        gap: 64px;
        margin-top: 54px;
    }

    .block-bf--offices
        .block-bf__body
        :where(.heading__h3, .job__desc :where(h3), .wot :where(h3)) {
        margin-bottom: 20px;
    }

    .block-bf--offices .block-bf__body :where(p) {
        margin-bottom: 0 !important;
    }

    .block-bf--team :where(p) {
        margin: 0 0 16px;
        font-size: 18px;
        line-height: 26px;
    }

    .block-bf--team :where(p).lead {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 32px;
    }

    .block-bf--team .block-bf__content {
        flex-direction: row-reverse;
        gap: 64px;
    }

    .block-bf--team .block-bf__image {
        margin-top: 0;
        border-radius: 4px 32px 32px 4px;
    }
}

.block-exp__holder {
    padding: 0 var(--page-side-padding);
}

.block-exp :where(p) {
    margin: 24px 0;
    color: var(--color-sky-800);
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 24px;
}

@media (min-width: 1025px) {
    .block-exp {
        margin-top: 64px;
    }

    .block-exp__holder {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 1100px;
        margin: 0 auto;
    }

    .block-exp :where(p) {
        width: 60%;
        margin: 48px 0;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }
}

.block-emb {
    background-color: var(--color-sky-50);
}

.block-emb__holder {
    padding: 32px var(--page-side-padding);
}

.block-emb :where(.overhead) {
    margin-bottom: 6px;
}

.block-emb :where(p) {
    margin: 20px 0 24px;
    color: var(--color-sky-800);
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 24px;
}

.block-emb__image {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 230px;
    margin-top: 32px;
    overflow: hidden;
    border-radius: 4px 4px 32px 32px;
}

.block-emb__image :where(img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-emb--team :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
    padding-bottom: 32px;
}

.block-emb--team :where(h2, h3) {
    color: var(--color-sky-950);
}

.block-emb--team :where(h3) {
    margin-top: 0;
}

.block-emb--team :where(p) {
    margin: 16px 0 32px;
    color: var(--color-sky-950);
    font-size: 16px;
    line-height: 24px;
}

.block-emb--team :where(p):last-of-type {
    margin-bottom: 0;
}

.block-emb--team .block-emb__holder {
    display: flex;
    flex-direction: column-reverse;
}

.block-emb--team .block-emb__image {
    margin-top: 16px;
    margin-bottom: 32px;
    border-radius: 32px 32px 4px 4px;
}

@media (min-width: 1025px) {
    .block-emb__holder {
        display: flex;
        gap: 64px;
        width: 1100px;
        margin: 0 auto;
        padding: 96px var(--page-side-padding);
    }

    .block-emb__content {
        flex-basis: 50%;
    }

    .block-emb :where(.overhead) {
        margin-bottom: 8px;
    }

    .block-emb :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
        margin-top: 15px;
    }

    .block-emb :where(p) {
        margin: 40px 0 28px;
        font-size: 22px;
        line-height: 32px;
    }

    .block-emb__image {
        position: relative;
        flex-basis: 50%;
        height: auto;
        margin-top: 0;
        border-radius: 4px 32px 32px 4px;
    }

    .block-emb__image :where(img) {
        position: absolute;
    }

    .block-emb--team
        :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
        padding-bottom: 48px;
    }

    .block-emb--team :where(p) {
        margin: 24px 0 24px;
        font-size: 17px;
        line-height: 26px;
    }

    .block-emb--team :where(p):last-of-type {
        margin-bottom: 0;
    }

    .block-emb--team .block-emb__holder {
        flex-direction: row-reverse;
    }

    .block-emb--team .block-emb__image {
        margin-bottom: 0;
        border-radius: 32px 4px 4px 32px;
    }
}

.block-jobs :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
    margin-bottom: 24px;
}

.block-jobs__holder {
    padding: 0 var(--page-side-padding);
}

@media (min-width: 1025px) {
    .block-jobs {
        max-width: 1100px;
        width: 100%;
        margin: 0 auto;
    }
}

.block-desc__holder {
    display: flex;
    flex-wrap: wrap;
    gap: 48px 64px;
    padding: 0 var(--page-side-padding);
}

.block-desc :where(img) {
    display: flex;
    width: 52px;
    padding-bottom: 16px;
}

.block-desc :where(.heading__h3, .job__desc :where(h3), .wot :where(h3)) {
    margin-bottom: 8px;
}

.block-desc :where(p) {
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 1025px) {
    .block-desc__holder {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 64px;
        width: 1100px;
        margin: 0 auto;
    }

    .block-desc__item {
        flex-basis: 50%;
    }
}

.block-locs__holder {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 18px;
    padding: 0 var(--page-side-padding);
}

.block-locs :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
    margin-top: 0;
}

.block-locs__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 24px;
}

.block-locs__content :where(a):hover .block-locs__item {
    background-color: var(--color-sky-100);
}

.block-locs__item {
    width: 100%;
    background-color: var(--color-sky-50);
    border-radius: 32px;
    overflow: hidden;
}

.block-locs__image {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 232px;
    overflow: hidden;
}

.block-locs__image :where(img) {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.block-locs__image :where(img) {
    filter: grayscale(100%) contrast(1.1) brightness(0.95);
}
.block-locs__image {
    position: relative;
    overflow: hidden;
}

.block-locs__image::after {
    content: "";
    position: absolute;
    inset: 0;

    /* Brand blue wash */
    background: rgba(38, 91, 123, 0.15);
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(2, 71, 110, 0.12),
        rgba(2, 71, 110, 0.18)
    );
}

.block-locs__image :where(img),
.block-locs__image::after {
    transition:
        filter 0.3s ease,
        opacity 0.3s ease;
}

.block-locs__image:hover :where(img) {
    filter: grayscale(0%) contrast(1) brightness(1);
}

.block-locs__image:hover::after {
    opacity: 0;
}

.block-locs__details {
    padding: 24px;
}

.block-locs__city {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.block-locs__city :where(h3) {
    margin-top: 0;
}

.block-locs__pos {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.block-locs__pos::before {
    content: "";
    display: flex;
    width: 16px;
    height: 16px;
    background-color: var(--color-emerald-500);
    -webkit-mask: url("../icons/dot-fill.svg") no-repeat center center;
    mask: url("../icons/dot-fill.svg") no-repeat center center;
}

.block-locs__pos--inactive::before {
    background-color: var(--color-red-500);
}

@media (min-width: 1025px) {
    .block-locs__holder {
        gap: 40px;
        width: 1100px;
        margin: 0 auto;
    }

    .block-locs__content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .block-locs__item {
        width: 344px;
        height: 344px;
    }

    .block-locs__details {
        padding-top: 16px;
    }

    .block-locs__pos {
        font-size: 18px;
        line-height: 26px;
    }
}

.story__gen-holder,
.story__ach-holder {
    padding: 0 var(--page-side-padding);
}

.story__gen-holder {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story__gen-image {
    height: 256px;
    overflow: hidden;
    border-radius: 32px 32px 4px 4px;
}

.story__gen-image :where(img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* all browsers default */
    object-position: initial;
    /* for new browsers supports if */
    object-position: if(
        media(width < 1024px) and media(width > 650px): 0px -70px; else: initial
    );
}

/* fallback for browser without if() support */
@media (min-width: 651px) and (max-width: 1024px) {
    .story__gen-image :where(img) {
        object-position: 0px -70px;
    }
}

.story__gen-content :where(img) {
    display: none;
}

.story__gen-content :where(p) {
    padding-top: 24px;
    color: var(--color-sky-800);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.story__ach :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
    margin-top: 0;
    color: var(--color-sky-950);
}

.story__ach-items {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 24px;
}

.story__ach-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
}

.story__ach-item .story__ach-head {
    background-color: var(--color-sky-50);
}

.story__ach-item
    .story__ach-head
    :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
    color: var(--color-sky-800);
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif !important;
    font-weight: var(--medium) !important;
}

.story__ach-item
    .story__ach-head
    :where(.heading__h3, .job__desc :where(h3), .wot :where(h3)) {
    color: var(--color-sky-950);
}

.story__ach-head {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /*  min-height: 160px;*/
    padding: 32px;
    background-color: var(--color-sky-50);
    border-radius: 32px 32px 4px 4px;
    width: inherit;
}

.story__ach-body :where(p) {
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.story__join {
    background-color: var(--color-sky-50);
}

.story__join-holder {
    padding: 32px var(--page-side-padding);
    text-align: center;
}

.story__join-holder :where(p) {
    padding: 17px 0 24px;
    color: var(--color-sky-950);
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 1025px) {
    .story__gen-holder,
    .story__ach-holder,
    .story__join-holder {
        width: 1100px;
        margin: 0 auto;
    }

    .story__gen-holder {
        display: flex;
        flex-direction: row;
        gap: 64px;
    }

    .story__gen-image {
        flex-basis: 50%;
        height: auto;
        border-radius: 32px 4px 4px 32px;
    }

    .story__gen-content {
        display: flex;
        flex-basis: 50%;
        flex-wrap: wrap;
        gap: 48px;
    }

    .story__gen-content :where(img) {
        display: block;
    }

    .story__gen-content :where(p) {
        padding-top: 0;
        font-size: 22px;
        line-height: 32px;
    }

    .story__ach-items {
        gap: 96px;
        margin-top: 48px;
    }

    .story__ach-item {
        flex-direction: row;
        gap: 64px;
    }

    .story__ach-item:nth-of-type(2n) {
        flex-direction: row-reverse;
    }

    .story__ach-item:nth-of-type(2n) .story__ach-head {
        border-radius: 4px 32px 32px 4px;
        text-align: left;
    }

    .story__ach-head,
    .story__ach-body {
        flex-basis: 50%;
    }

    .story__ach-head {
        padding: 64px;
        border-radius: 32px 4px 4px 32px;
        text-align: right;
    }

    .story__ach-body :where(p) {
        font-size: 18px;
        line-height: 26px;
    }

    .story__join-holder {
        width: 712px;
        padding: 128px var(--page-side-padding);
    }

    .story__join-holder :where(p) {
        padding: 48px 0;
    }
}

.divers__scope {
    padding: 0 var(--page-side-padding);
}

.divers__scope-holder {
    position: relative;
    padding: 72px var(--page-side-padding) 24px;
    overflow: hidden;
    background-color: var(--color-sky-50);
    border-radius: 32px;
}

.divers__scope-holder::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    height: 48px;
    background-color: var(--color-slate-200);
}

.divers__scope-holder :where(p) {
    margin-top: 8px;
    color: var(--color-sky-800);
    font-size: 16px;
    line-height: 24px;
}

.divers__prot-holder {
    padding: 0 var(--page-side-padding);
}

.divers__prot-holder :where(p) {
    margin-top: 8px;
    padding: 0 0 24px 0;
    color: var(--color-sky-950);
    font-size: 16px;
    line-height: 24px;
}

.divers__prot-holder :where(p).lead {
    margin-bottom: 24px;
    padding: 24px 0 0;
    color: var(--color-sky-800);
    font-size: 18px;
    line-height: 24px;
}

@media (min-width: 1025px) {
    .divers__scope {
        width: 1100px;
        margin: 0 auto;
    }

    .divers__scope-holder {
        padding: 64px 184px;
    }

    .divers__scope-holder::before {
        top: 0;
        right: auto;
        bottom: 0;
        left: 0;
        width: 120px;
        height: auto;
    }

    .divers__scope-holder :where(p) {
        margin-top: 48px;
        font-size: 17px;
        line-height: 26px;
    }

    .divers__prot-holder {
        width: 712px;
        margin: 0 auto;
    }

    .divers__prot-holder :where(p) {
        margin-top: 24px;
        padding: 0 0 48px 0;
        font-size: 18px;
        line-height: 26px;
    }

    .divers__prot-holder :where(p).lead {
        margin-bottom: 48px;
        padding: 48px 0 0;
        color: var(--color-sky-800);
        font-size: 24px;
        line-height: 32px;
    }
}

.block-subs {
    background-color: var(--color-sky-50);
}

.block-subs__holder {
    padding: 32px var(--page-side-padding);
}

.block-subs :where(.heading__h3, .job__desc :where(h3), .wot :where(h3)) {
    color: var(--color-sky-950);
}

.block-subs :where(p) {
    margin: 8px 0 24px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.block-bottom-padding {
    margin-bottom: 32px;
}

@media (min-width: 1025px) {
    .block-subs__holder {
        width: 508px;
        margin: 0 auto;
        padding: 96px var(--page-side-padding);
    }

    .block-subs :where(p) {
        margin-bottom: 0;
    }

    .block-subs :where(.block-subs__content, .form) {
        margin-bottom: 16px;
    }

    .block-subs :where(.form) {
        align-items: flex-end;
        flex-direction: row;
    }

    .block-subs :where(.form) :where(.input) {
        width: 100%;
    }
}

.block-submit {
    background-color: var(--color-sky-50);
}

.block-submit__holder {
    padding: 32px var(--page-side-padding);
}

.block-submit :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
    margin-bottom: 32px;
}

@media (min-width: 1025px) {
    .block-submit__holder {
        width: 712px;
        margin: 0 auto;
        padding: 128px var(--page-side-padding);
    }

    .block-submit :where(.input__checkbox) {
        padding: 24px 0;
    }

    .block-submit :where(.heading__h2, .job__desc :where(h2), .wot :where(h2)) {
        margin-bottom: 48px;
    }
}

.bf__holder {
    padding: 0 var(--page-side-padding);
}

.bf__image {
    position: relative;
    height: 230px;
    border-radius: 32px 32px 4px 4px;
    overflow: hidden;
}

.bf__image :where(img) {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bf :where(h2) {
    margin-bottom: 24px;
}

.bf__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bf__item :where(ul) {
    margin: 16px 0 0;
    list-style: none;
}

.bf__item :where(ul) :where(li) {
    position: relative;
    padding: 0 0 16px 24px;
    color: var(--color-sky-950);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
}

.bf__item :where(ul) :where(li)::before {
    content: url("../icons/circle-fill.svg");
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
}

.bf__item :where(ul) :where(li):last-of-type {
    padding-bottom: 0;
}

@media (min-width: 1025px) {
    .bf__holder {
        width: 1100px;
        padding: 0 var(--page-side-padding);
        margin: 0 auto;
    }

    .bf__image {
        height: 480px;
    }

    .bf :where(h2) {
        margin-bottom: 48px;
    }

    .bf__content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 64px;
    }

    .bf__item {
        flex-basis: 50%;
    }

    .bf :where(ul, ol) :where(li) {
        font-size: 18px;
        line-height: 26px;
    }
}

.gm-style .ql-iw {
    max-width: 238px;
    max-height: 131px;
    padding: 0px 0px 0px;
    color: #333;
    font-weight: 400;
    font-family: Roboto, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;
}

@media (min-width: 1025px) {
    .gm-style .ql-iw {
        max-width: 414px;
        max-height: 308px;
    }
}

.gm-style .ql-iw__title {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px;
    line-height: normal;
}
.gm-style .ql-iw__address .ql-iw__line {
    white-space: nowrap;
    line-height: normal;
    width: 180px;
}
.gm-style .ql-iw__view a {
    font-family: Roboto, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 700;
}
.gm-style .ql-iw__view a:hover {
    text-decoration: underline;
}

.acf-map p.gm-style-mot {
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
}

/* Civic Cookie Control */

a.ccc-link.ccc-tabbable {
    font-size: inherit !important;
}

h4.optional-cookie-header.optional-vendor-heading {
    font-size: 1.2em !important;
    text-decoration: none !important;
}

.ccc-notify {
    position: relative !important;
    padding-top: 12px;
}

.ccc-notify-buttons {
    position: static !important;
}

#ccc-notify-dismiss,
.ccc-notify-dismiss {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 2;
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 399px) {
    #ccc #ccc-notify .ccc-notify-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 4px !important;
        padding-right: 0 !important;
    }

    #ccc #ccc-notify .ccc-notify-buttons .ccc-notify-button {
        padding: 4px 8px !important;
        margin: 2px 4px 8px 0 !important;
    }
}

@media (min-width: 1025px) {
    .awsm-list-right-col .awsm-job-specification-wrapper {
        grid-template-columns: minmax(0, 1fr) max-content 0 !important;
        column-gap: 16px;
        align-items: center;
    }

    .awsm-job-specification-item.awsm-job-specification-location {
        justify-self: end;
        white-space: nowrap;
    }

    .awsm-job-specification-item.awsm-job-specification-team {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (min-width: 1025px) {
    .block-bf--offices .block-bf__body {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 64px; /* как в текущих стилях */
    }
}
@media (min-width: 1025px) {
    /* ensure the whole brand area is vertically centred in the header */
    .header__brand {
        display: flex;
        align-items: center;
        height: var(--header-height);
    }

    /* keep the image size, but remove baseline behaviour */
    .header__brand img {
        display: block;
        height: 38px;
        width: auto;
    }
}
@media (min-width: 1025px) {
    .header__brand :where(img) {
        display: block !important;
        height: 38px !important;
        width: auto !important;
        transform: translateY(-7px);
    }
}

section.block-jobs.block-jobs--home > div > p {
    color: var(--color-sky-800);
}
div > div.awsm-list-left-col > h2 > a {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif !important;
    font-weight: var(--semi-bold) !important;
}

#page
    > main
    > div
    > div
    > div.awsm-job-content.job__holder
    > div
    > p:nth-child(1)
    > strong {
    font-size: 24px;
    line-height: 38px;
    font-weight: var(--normal);
}

#offices-page
    > section.block-locs
    > div
    > div
    > a
    > div
    > div.block-locs__details
    > div.block-locs__city
    > h3,
#teams-page
    > section.block-locs
    > div
    > div
    > a
    > div
    > div.block-locs__details
    > div.block-locs__city
    > h3 {
    font-size: 20px !important;
}
section.block-jobs
    > div
    > div
    > div.awsm-job-listings.awsm-lists
    > div.awsm-jobs-pagination.awsm-load-more-main
    > a {
    border: unset !important;
    box-shadow: unset !important;
}
@media (min-width: 1225px) {
    #home-page #head-block.hero {
        position: relative;
        overflow: hidden;
    }

    #home-page #head-block.hero::before {
        content: "";
        position: absolute;
        left: 44px;
        top: 100px;
        bottom: 100px;

        width: 36px;

        background-image: radial-gradient(
            circle,
            var(--color-sky-600) 1.4px,
            transparent 1.3px
        );
        background-size: 10px 10px;
        background-repeat: repeat;

        opacity: 0.5;

        pointer-events: none;
        z-index: 0;
    }

    #home-page #head-block.hero > * {
        position: relative;
        z-index: 1;
    }
}
#awsm-application-submit-btn {
    background-image: none !important;
}

#awsm-application-submit-btn::before {
    content: none !important;
}

#awsm-application-submit-btn.button::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 12px;

    background-color: currentColor;
    -webkit-mask: url("../icons/arrow-right-16.svg") no-repeat center;
    mask: url("../icons/arrow-right-16.svg") no-repeat center;

    transform: translateX(0);
    transition: transform 0.2s ease;
}

#awsm-application-submit-btn.button:hover::after,
#awsm-application-submit-btn.button:focus-visible::after {
    transform: translateX(4px);
}
#awsm-application-submit-btn.button {
    padding-right: 24px;
}
