:root {
    --color-theme-1: #50b8e7;
    --color-theme-2: #F56607;
    --color-theme-3: #f1eae9;
    --color-theme-4: #202833;
    --color-theme-5: #a896be;
    --color-theme-6: #fff;
    --color-theme-7: #c1c1c9;
    --color-theme-8: #50637f;
    --color-dark: var(--color-theme-1);
    --color-light: var(--color-theme-3);
    --color-accent: var(--color-theme-2);
    --color-white: var(--color-theme-6);
    --color-text: var(--color-theme-4);
    --color-background: var(--color-light);
    --color-heading: var(--color-dark);
    --color-border: var(--color-dark);
    --color-error: var(--color-theme-2);
    --color-link: var(--color-dark);
    --font-primary: "Roboto", helvetica, arial, sans-serif;
    --font-secondary: "Titillium Web", helvetica, arial, sans-serif;
    --breakpoints: 0, 576, 768, 992, 1200, 1440, 1920;
    --spacer-0: clamp(18px, 1.04vw + 12px, 27.01px);
    --spacer-1: clamp(24px, 1.39vw + 16px, 36px);
    --spacer-2: clamp(31.99px, 1.85vw + 21.33px, 47.99px);
    --spacer-3: clamp(42.65px, 2.47vw + 28.43px, 63.97px);
    --spacer-4: clamp(56.85px, 3.29vw + 37.9px, 85.27px);
    --spacer-5: clamp(75.78px, 4.39vw + 50.52px, 113.66px);
    --spacer-6: clamp(101.01px, 5.85vw + 67.34px, 151.51px);
    --spacer-7: clamp(134.65px, 7.79vw + 89.76px, 201.97px);
    --transition-default: ease;
    --transition-cubic-inout: cubic-bezier(0.645, 0.045, 0.355, 1);
    --transition-quart-inout: cubic-bezier(0.77, 0, 0.175, 1);
    --transition-quart-out: cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-duration-default: 0.2s;
    --type--2: clamp(7.17px, 0.12vw + 6.49px, 8.19px);
    --type--1: clamp(8.96px, 0.15vw + 8.11px, 10.24px);
    --type-0: clamp(11.2px, 0.19vw + 10.13px, 12.8px);
    --type-1: clamp(14px, 0.23vw + 12.67px, 16px);
    --type-2: clamp(17.5px, 0.29vw + 15.83px, 20px);
    --type-3: clamp(21.88px, 0.36vw + 19.79px, 25px);
    --type-4: clamp(27.34px, 0.45vw + 24.74px, 31.25px);
    --type-5: clamp(34.18px, 0.57vw + 30.92px, 39.06px);
    --type-6: clamp(42.72px, 0.71vw + 38.66px, 48.83px);
    --type-7: clamp(53.41px, 0.88vw + 48.32px, 61.04px);
    --default-container-padding: 2rem;
    --default-container-width: 72rem;
    --default-container-width-small: 60rem;
    --default-container-width-large: 78rem;
    --default-grid-wrap-width: 32rem;
    --default-grid-gap: 2.5rem;
    --default-action-padding: 1em 2.25em;
    --default-action-font-size: 0.9em;
    --default-input-padding: 0.75em;
    --default-input-height: 2.375em;
    --default-textarea-min-height: 8em;
    --default-section-padding: 2rem;
    --default-flow-gap: 1em;
    --default-border-radius: 1.5em;
    --default-border-radius-small: 0.75em;
    --default-box-shadow: 0 1.1em 1.38em -0.275em rgba(0, 0, 0, .15), 0 0.55em 0.55em -0.275em rgba(0, 0, 0, .08);
    --default-brand-width: 10rem;
    --default-header-gap: 4rem;
    --default-header--inner-height: 4rem;
    --default-header-inner-padding: 1.625rem;
    --default-footer-gap: 3rem;
    --default-footer-inner-padding: 6rem;
    --default-footer-list-gap: 1em;
    --default-nav-list-gap: 2rem;
    --default-link-icon-width: 1.33rem;
    --default-submenu-min-width: 10em;
    --default-submenu-list-gap: 1em;
    --default-submenu-item-padding: 1em;
    --default-dropdown-margin-top: 0.25em;
    --default-social-list-gap: 0.75em;
    --default-social-list-font-size: 1.25em;
    --default-breadcrumb-font-size: 0.9em;
    --default-overlay-background: linear-gradient(180deg, rgba(8, 5, 13, 0), rgba(8, 5, 13, .75)), linear-gradient(0deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .25))
}

.text-assistive {

    box-sizing: border-box;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    margin: 0;
    padding: 0;
    position: absolute
}

@media(min-width:0px) {
    .hide--xs {
        display: none !important
    }
}

@media(max-width:-1px) {
    .show--xs {
        display: none !important
    }
}

@media(min-width:576px) {
    .hide--sm {
        display: none !important
    }
}

@media(max-width:575px) {
    .show--sm {
        display: none !important
    }
}

@media(min-width:768px) {
    .hide--md {
        display: none !important
    }
}

@media(max-width:767px) {
    .show--md {
        display: none !important
    }
}

@media(min-width:992px) {
    .hide--lg {
        display: none !important
    }
}

@media(max-width:991px) {
    .show--lg {
        display: none !important
    }
}

@media(min-width:1200px) {
    .hide--xl {
        display: none !important
    }
}

@media(max-width:1199px) {
    .show--xl {
        display: none !important
    }
}

@media(min-width:1440px) {
    .hide--design {
        display: none !important
    }
}

@media(max-width:1439px) {
    .show--design {
        display: none !important
    }
}

@media(min-width:1920px) {
    .hide--max {
        display: none !important
    }
}

@media(max-width:1919px) {
    .show--max {
        display: none !important
    }
}

@media screen and (orientation:portrait) {
    .hide--portrait {
        display: none !important
    }
}

@media screen and (orientation:landscape) {
    .hide--landscape {
        display: none !important
    }
}

@media screen and (orientation:portrait) {
    .show--landscape {
        display: none !important
    }
}

@media screen and (orientation:landscape) {
    .show--portait {
        display: none !important
    }
}

.flow>*+* {
    margin-block-start: var(--flow-gap, var(--default-flow-gap)) !important
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-size-adjust: 100%;
    display: block;
    font-size: var(--type-1);
    font-synthesis: none;
    height: 100%;
    scroll-padding-top: var(--spacer-2);
    text-rendering: optimizelegibility
}

body {
    background-color: var(--color-background);
    box-sizing: border-box;
    color: var(--color-text);
    font-family: var(--font-primary);
    line-height: 1.2;
    margin: 0;
    padding: 0
}

body ::selection {
    background-color: var(--color-text);
    color: var(--color-background)
}

body *,
body :after,
body :before {
    box-sizing: inherit
}

body.dialog-is-open,
body.overlay-is-open {
    overflow: hidden
}

body.push-content-down main.content {
    margin-top: calc(var(--header-height) + var(--spacer-1))
}

a {
    color: inherit
}

.grid {
    --grid-columns: 3;
    --grid-inner-padding: 0px;
    --grid-gap: var(--grid-gap-override, var(--default-grid-gap))
}

.grid--wide {
    --grid-gap: var(--default-grid-gap)
}

@media(min-width:992px) {
    .grid--wide {
        --grid-gap: var(--spacer-5)
    }
}

.grid--type-masonry {
    --grid-gap: 0px;
    --grid-inner-padding: calc(var(--default-grid-gap)/2);
    margin: calc(var(--grid-inner-padding)*-1)
}

.grid--col-four {
    --grid-columns: 4
}

.grid--col-two {
    --grid-columns: 2
}

.grid--col-one {
    --grid-columns: 1
}

.grid__inner {
    display: flex;
    flex-wrap: wrap;
    gap: var(--grid-gap)
}

.grid__item {
    --item-width: 100%;
    flex-shrink: 0;
    max-width: var(--item-width);
    padding: var(--grid-inner-padding);
    width: 100%
}

@media(min-width:768px) {
    .grid__item {
        --item-width: calc(100%/var(--grid-columns) - var(--grid-gap)/var(--grid-columns)*(var(--grid-columns) - 1))
    }
}

.grid__item--col-one {
    --grid-columns: 1
}

.grid__item--col-two {
    --grid-columns: 2
}

.grid__item--col-three {
    --grid-columns: 3
}

.grid__item--col-four {
    --grid-columns: 4
}

.grid__item--col-five {
    --grid-columns: 5
}

.grid__item--col-six {
    --grid-columns: 6
}

.heading {
    --heading-font: var(--font-secondary);
    --heading-weight: normal;
    --heading-size: inherit;
    --heading-line-height: 1.2;
    --heading-max-width: none;
    color: var(--color-heading);
    font-family: var(--heading-font);
    font-size: var(--heading-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    margin: 0;
    max-width: var(--heading-max-width);
    padding: 0
}

.heading strong {
    font-weight: 600
}

.heading--super {
    --heading-size: var(--type-5);
    --heading-line-height: 1;
    --heading-max-width: 24ch
}

@media(min-width:992px) {
    .heading--super {
        --heading-size: var(--type-7)
    }
}

.heading--1 {
    --heading-max-width: 32ch;
    --heading-size: var(--type-4);
    --heading-weight: 600
}

@media(min-width:992px) {
    .heading--1 {
        --heading-size: var(--type-5)
    }
}

.heading--2 {
    --heading-max-width: 48ch;
    --heading-size: var(--type-3);
    --heading-weight: 600
}

@media(min-width:992px) {
    .heading--2 {
        --heading-size: var(--type-4)
    }
}

.heading--3 {
    --heading-size: var(--type-3)
}

.heading--4 {
    --heading-font: var(--font-primary);
    --heading-size: var(--type-2);
    --heading-weight: 500
}

.heading--5 {
    --heading-font: var(--font-primary);
    --heading-size: var(--type-1);
    --heading-weight: 500
}

.text {
    --text-line-height: 1.4;
    --text-font-size: inherit;
    color: var(--color-text);
    font-size: var(--text-font-size);
    line-height: var(--text-line-height);
    padding: 0
}

.text,
.text--no-margin {
    margin: 0
}

.text--neg-2 {
    --text-font-size: var(--type--2)
}

.text--neg-1 {
    --text-font-size: var(--type--1)
}

.text--0 {
    --text-font-size: var(--type-0)
}

.text--1 {
    --text-font-size: var(--type-1)
}

.text--2 {
    --text-font-size: var(--type-2)
}

.text--3 {
    --text-font-size: var(--type-3)
}

.text--4 {
    --text-font-size: var(--type-4)
}

.text--5 {
    --text-font-size: var(--type-5)
}

.text--6 {
    --text-font-size: var(--type-6)
}

.text--7 {
    --text-font-size: var(--type-7)
}

.text.text--rich-text ol,
.text.text--rich-text ul {
    padding-inline-start: 1.5em
}

.text.text--rich-text p:last-child {
    margin-bottom: 0
}

.text.text--rich-text a {
    color: var(--color-link)
}

.theme {
    color: var(--color-dark)
}

.theme--dark {
    --color-text: var(--color-white);
    --color-background: var(--color-dark);
    --color-heading: var(--color-text);
    --color-border: var(--color-white)
}

.theme--light {
    --color-background: var(--color-light);
    --color-heading: var(--color-dark);
    --color-border: var(--color-theme-7);
    --color-text: var(--color-theme-4)
}

.theme--white {
    --color-background: var(--color-white);
    --color-heading: var(--color-dark);
    --color-border: var(--color-theme-7);
    --color-text: var(--color-theme-4)
}

.theme--accent {
    --color-text: var(--color-white);
    --color-background: var(--color-accent);
    --color-heading: var(--color-dark);
    --color-border: var(--color-accent)
}

.theme--light-grey {
    --color-text: var(--color-dark);
    --color-background: var(--color-theme-4);
    --color-heading: var(--color-dark);
    --color-border: var(--color-dark)
}

.action {
    --action-text: var(--color-text);
    --action-background: var(--color-background);
    appearance: none;
    background: none;
    border: none;
    border-radius: var(--action-border-radius, var(--default-border-radius));
    color: inherit;
    color: var(--action-text);
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: inherit;
    font-size: var(--action-font-size, var(--default-action-font-size));
    font-weight: 700;
    line-height: 1;
    margin: 0;
    min-height: var(--action-height, var(--default-input-height));
    padding: 0;
    position: relative;
    text-align: left;
    text-decoration: none
}

.action:hover {
    --action-background: var(--action-background-hover);
    --action-text: var(--action-text-hover)
}

.action--rounded {
    --action-border-radius: 100vmax
}

.action--outlined {
    box-shadow: inset 0 0 0 1px var(--action-border)
}

.action--outlined:hover {
    --action-border: var(--action-border-hover)
}

.action--small {
    --action-padding: 0.75em 1.25em
}

.action--primary {
    --action-background: var(--color-theme-1);
    --action-text: var(--color-white);
    --action-border: var(--color-theme-1);
    --action-background-hover: transparent;
    --action-text-hover: var(--color-theme-1);
    --action-border-hover: var(--color-theme-1)
}

.action--secondary {
    --action-background: transparent;
    --action-text: var(--color-white);
    --action-border: var(--color-white);
    --action-background-hover: var(--color-white);
    --action-text-hover: var(--color-theme-1);
    --action-border-hover: var(--color-white)
}

.action--accent {
    --action-background: var(--color-theme-2);
    --action-text: var(--color-white);
    --action-border: var(--color-theme-2);
    --action-background-hover: var(--color-white);
    --action-text-hover: var(--color-theme-2);
    --action-border-hover: var(--color-theme-1)
}

.action__background {
    background-color: var(--action-background);
    border-radius: var(--action-border-radius, var(--default-border-radius));
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.action__inner {
    align-items: center;
    display: flex;
    flex: auto;
    padding: var(--action-padding, var(--default-action-padding));
    position: relative
}

.action__label {
    color: inherit;
    flex: auto;
    position: relative
}

.brand {
    color: var(--color-text);
    display: flex;
    max-width: 100%
}

.container {
    --container-inner-margin: 0;
    --container-inner-width: none;
    --container-width: var(--default-container-width);
    --container-padding: var(--default-container-padding);
    margin: var(--container-inner-margin);
    max-width: var(--container-inner-width);
    padding: 0 var(--container-padding);
    width: 100%
}

.container--small {
    --container-width: var(--default-container-width-small)
}

.container--large {
    --container-width: var(--default-container-width-large)
}

.container--boxed {
    --container-inner-width: calc(var(--container-width) + var(--container-padding)*2);
    --container-inner-margin: 0 auto
}

.container--no-padding {
    --container-padding: 0
}

.crumb {
    --link-underline-thickness: 0.08em;
    --icon-size: 1em;
    align-items: center;
    color: var(--color-text);
    cursor: pointer;
    display: inline-flex;
    text-decoration: var(--link-underline-line) var(--link-underline-thickness) currentColor
}

@media(hover:hover) {
    .crumb:hover {
        --link-underline-line: underline
    }
}

@media(min-width:992px) {
    .crumb {
        --icon-size: 1.5em
    }
}

.crumb--icon {
    --label-size: 1.25em
}

.crumb--active {
    --link-underline-line: none;
    pointer-events: none
}

.crumb--underline {
    --link-underline-line: underline
}

.crumb__label {
    display: flex;
    font-size: var(--label-size, inherit)
}

.crumb__arrow {
    display: flex;
    font-size: var(--icon-size);
    margin-left: var(--list-gap, 0)
}

.fui-field textarea {
    min-height: var(--textarea-min-height, var(--default-textarea-min-height));
    resize: none
}

.icon {
    height: 1em;
    width: 1em
}

.icon,
.link {
    display: inline-flex
}

.link {
    --link-underline-thickness: 0.08em;
    color: var(--color-text);
    cursor: pointer;
    font-weight: var(--link-weight, normal);
    text-decoration: var(--link-underline-line) var(--link-underline-thickness) currentColor
}

@media(hover:hover) {
    .link--hover:hover {
        --link-underline-line: underline
    }
}

.link--reset {
    appearance: none;
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none
}

.link--underline {
    --link-underline-line: underline
}

.link__icon {
    display: flex;
    max-width: var(--link-icon-width, var(--default-link-icon-width));
    width: 100%
}

.transform__inner {
    height: 0;
    padding-bottom: var(--aspect-ratio, var(--image-aspect-ratio));
    position: relative;
    width: 100%
}

.transform--cover .transform__inner {
    height: auto;
    inset: 0;
    position: absolute;
    width: auto
}

.transform__picture {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0
}

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

.breadcrumbs__list {
    --list-font-size: var(--default-breadcrumb-font-size);
    --list-gap: 0.75em;
    align-items: center;
    display: flex;
    font-size: var(--list-font-size);
    gap: var(--list-gap);
    list-style: none;
    margin: 0;
    padding: 0
}

.breadcrumbs__list-item {
    align-items: center;
    display: inline-flex
}

.breadcrumbs__list-item:last-child {
    font-weight: 700
}

.certificate-link {
    width: 6em
}

.floating-cta__inner {
    background: var(--color-background);
    border-radius: var(--default-border-radius-small);
    padding: var(--spacer-0)
}

.floating-cta__heading {
    --color-heading: var(--color-text)
}

.form {
    --fui-primary-color: var(--color-theme-1);
    --fui-font: var(--font-primary);
    --fui-input-border: 1px solid var(--color-theme-7);
    --fui-border-color: var(--color-theme-7);
    --fui-border-radius: 0.25em;
    --fui-instructions-color: var(--color-theme-3);
    --fui-focus-border-color: var(--color-theme-8);
    --fui-input-box-shadow-focus: 0;
    --fui-input-transition-duration: 0s;
    --fui-label-color: var(--color-text);
    --fui-label-error-color: var(--color-text);
    --fui-error: var(--color-error);
    --fui-input-error-border-color: var(--color-error);
    --fui-input-padding: 0.75em;
    --fui-check-label-line-height: 1.2
}

.form__row {
    --fui-row-gutter: 0px;
    --fui-field-gutter: 0px;
    --flow-gap: 1em
}

.form__fields {
    margin-block-start: 0 !important
}

.fui-checkbox-label {
    color: var(--color-text)
}

.icon-link {
    align-items: center;
    color: var(--link-color, var(--color-text));
    display: inline-flex;
    gap: .5em
}

.icon-link__icon {
    align-items: center;
    display: flex;
    font-size: 1.25em
}

.icon-link__label {
    font-weight: 500
}

.list-item {
    --inner-gap: var(--spacer-1);
    --body-width: 100%;
    --item-margin: 2em;
    --item-border-color: var(--color-theme-7);
    border-bottom: 1px solid var(--item-border-color);
    margin-bottom: var(--item-margin);
    padding-bottom: var(--item-margin)
}

.list-item:first-child {
    border-top: 1px solid var(--item-border-color);
    padding-top: var(--item-margin)
}

.list-item:last-child {
    margin-bottom: 0
}

@media(min-width:992px) {
    .list-item {
        --inner-gap: var(--spacer-2);
        --body-width: 50%
    }
}

.list-item__inner {
    align-items: first baseline;
    display: flex;
    flex-wrap: wrap;
    gap: var(--inner-gap);
    justify-content: space-between
}

.list-item__body {
    flex-basis: calc(var(--body-width) - var(--inner-gap));
    max-width: calc(var(--body-width) - var(--inner-gap))
}

.list-item__heading {
    --color-heading: var(--color-text)
}

.list-item__link {
    --flow-gap: 1.5em;
    --color-text: var(--color-heading)
}

.locations-list {
    --item-margin: var(--spacer-2);
    --heading-margin: 1em;
    --item-border-color: var(--color-theme-7);
    margin-bottom: var(--item-margin)
}

.locations-list__heading {
    border-bottom: 1px solid var(--item-border-color);
    margin-bottom: var(--heading-margin);
    padding-bottom: var(--heading-margin)
}

.locations-list__items {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacer-2)
}

.locations-list__contact {
    --flow-gap: 1.25em
}

.locations-list__links {
    --flow-gap: 0.325em;
    display: flex;
    flex-direction: column
}

.locations-list__items {
    --flow-gap: 1.5em
}

.locations-list__name {
    margin: .5em 0
}

.menu-toggle {
    align-items: center;
    appearance: none;
    background: none;
    border: none;
    color: inherit;
    color: var(--color-text);
    display: flex;
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    gap: .5em;
    margin: 0;
    padding: 0;
    text-decoration: none
}

.menu-toggle__icon>* {
    display: flex;
    max-width: 1em
}

.page-intro__heading {
    --flow-gap: var(--spacer-2)
}

.page-intro__text {
    --flow-gap: 1.5em;
    color: var(--color-text);
}

.page-intro__link {
    --flow-gap: var(--spacer-1)
}

.section {
    --section-padding: var(--spacer-3);
    --section-inner-padding: var(--spacer-3);
    --section-padding-top: var(--section-padding);
    background-color: var(--color-background);
    position: relative
}

.section:first-child {
    --section-padding-top: var(--spacer-1)
}

@media(min-width:992px) {
    .section {
        --section-padding: var(--spacer-4);
        --section-inner-padding: var(--spacer-3)
    }
}

.section.theme--accent+.section.theme--accent,
.section.theme--dark+.section.theme--dark,
.section.theme--light+.section.theme--light,
.section.theme--light-grey+.section.theme--light-grey,
.section.theme--white+.section.theme--white {
    --section-padding-top: 0
}

.section--no-padding {
    --section-padding: 0;
    --section-padding-top: 0 !important
}

.section__inner {
    --flow-gap: var(--section-inner-padding);
    padding-bottom: var(--section-padding-override, var(--section-padding));
    padding-top: var(--section-padding-top-override, var(--section-padding-top))
}

.section__heading {
    margin: 0 auto;
    max-width: var(--default-container-width-small);
    padding-bottom: var(--section-padding)
}

.snippet-entry {
    --aspect-ratio: 100%;
    --image-transform: scale(1);
    --title-color: var(--color-text)
}

.snippet-entry:hover {
    --image-transform: scale(1.1);
    --title-color: var(--color-heading)
}

.snippet-entry[data-type=solutions] {
    --aspect-ratio: 125%
}

.snippet-entry__image {
    border-radius: var(--default-border-radius);
    overflow: hidden
}

.snippet-entry__image .transform {
    transform: var(--image-transform);
    transition: .3s transform var(--transition-default)
}

.snippet-entry__anchor {
    text-decoration: none
}

.snippet-entry__body {
    --flow-gap: var(--spacer-0)
}

.snippet-entry__title {
    --color-heading: var(--title-color);
    align-items: center;
    display: flex;
    justify-content: space-between
}

.snippet-entry__icon,
.snippet-entry__title {
    transition: .3s color var(--transition-default)
}

.snippet-entry__icon {
    --color-text: var(--title-color);
    font-size: .75em;
    margin-top: 2px
}

.snippet-entry__teaser {
    --flow-gap: 1em
}

.snippet-featured {
    --body-height: none;
    --body-padding: var(--spacer-2)
}

@media(min-width:992px) {
    .snippet-featured {
        --body-padding: var(--spacer-4);
        --body-height: 65vh
    }
}

.snippet-featured__inner {
    position: relative
}

.snippet-featured__background {
    border-radius: var(--default-border-radius-small);
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%
}

.snippet-featured__background:before {
    background: var(--default-overlay-background);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1
}

.snippet-featured__text {
    --flow-gap: 1.5em
}

.snippet-featured__body {
    align-items: end;
    display: flex;
    max-width: 30em;
    min-height: var(--body-height);
    padding: var(--body-padding) 0;
    position: relative;
    z-index: 2
}

.snippet-featured__action {
    --flow-gap: 1.5em
}

.snippet-product__image {
    border-radius: var(--default-border-radius);
    overflow: hidden
}

.snippet-product__body {
    --flow-gap: var(--spacer-1)
}

.snippet-product__title {
    --color-heading: var(--color-text)
}

.snippet-product__text {
    --flow-gap: 1em
}

.social-list {
    display: inline-flex;
    font-size: var(--social-list-font-size, var(--default-social-list-font-size));
    gap: var(--social-list-gap, var(--default-social-list-gap));
    list-style: none;
    margin: 0;
    padding: 0
}

.social-list__item-link {
    border: 1px solid var(--color-text);
    border-radius: 100vmax;
    display: flex;
    font-size: .85em;
    padding: .5em
}

.stories-slider {
    --inner-height: 100svh
}

.stories-slider__inner {
    height: var(--inner-height);
    position: relative
}

.stories-slider__overlay {
    display: flex;
    height: inherit;
    inset: 0;
    padding-top: calc(var(--header-height) + var(--spacer-1));
    position: absolute;
    width: 100%;
    z-index: 2
}

.stories-slider__body {
    display: flex;
    flex-flow: column;
    height: 100%;
    width: 100%
}

.stories-slider__header {
    margin: auto;
    text-align: center
}

.stories-slider__footer {
    padding-bottom: var(--spacer-4)
}

.stories-slider__slider {
    height: 100%;
    position: relative
}

.stories-slider__slider:before {
    background: var(--default-overlay-background);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2
}

.stories-slider__slide {
    height: 100%;
    position: relative
}

.stories-slider__image,
.stories-slider__video {
    height: inherit;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%
}

.story-fact {
    display: flex;
    flex-wrap: wrap
}

.story-fact__title {
    flex-basis: 100%
}

.story-fact__value {
    font-weight: 600
}

.story-nav-item {
    cursor: default;
    opacity: var(--item-opacity, .5)
}

.swiper-slide-thumb-active .story-nav-item {
    --indicator-animation: indicatorAnimation 3s linear;
    --indicator-opacity: 1;
    --item-opacity: 1;
    --action-events: all
}

.autoplay-stopped .story-nav-item {
    --indicator-animation: none
}

.story-nav-item:hover {
    --indicator-opacity: 1
}

.story-nav-item__inner {
    --flow-gap: 1em;
    position: relative
}

.story-nav-item__inner:before {
    background-color: var(--color-text);
    content: "";
    display: block;
    height: 3px;
    margin-bottom: var(--spacer-0);
    opacity: var(--indicator-opacity, .5);
    position: relative;
    width: 100%
}

.story-nav-item__inner:after {
    animation: var(--indicator-animation, none);
    animation-fill-mode: forwards;
    background-color: var(--color-accent);
    content: "";
    display: block;
    height: 3px;
    opacity: 1;
    position: absolute;
    top: 0;
    width: 0
}

.story-nav-item__action {
    --flow-gap: 1.5em;
    pointer-events: var(--action-events, none)
}

@keyframes indicatorAnimation {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

.submenu {
    --link-underline-line: none
}

.submenu__list {
    display: flex;
    flex-direction: column;
    font-size: var(--nav-list-font-size);
    gap: var(--submenu-list-gap, var(--default-submenu-list-gap));
    list-style: none;
    margin: 0;
    min-width: var(--submenu-min-width, var(--default-submenu-min-width));
    padding: 0;
    padding: var(--submenu-item-padding, var(--default-submenu-item-padding)) 0;
    width: fit-content
}

@media(max-width:767px) {
    .submenu__list {
        padding-bottom: 0
    }
}

@media(min-width:768px) {
    .submenu__item {
        padding: 0 var(--submenu-item-padding, var(--default-submenu-item-padding))
    }
}

.video-link {
    align-items: center;
    appearance: none;
    background: none;
    border: none;
    color: inherit;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: inherit;
    gap: .65em;
    margin: 0;
    padding: 0;
    text-decoration: none
}

.video-link:hover {
    --label-decoration: underline
}

.video-link__icon {
    display: flex;
    font-size: 1.5em
}

.video-link__label {
    font-weight: 600;
    text-decoration: var(--label-decoration, none)
}

.video-modal {
    --modal-opacity: 0;
    border: 0;
    border-radius: var(--default-border-radius-small);
    max-width: var(--default-container-width-large);
    opacity: var(--modal-opacity);
    overflow: hidden;
    padding: 0;
    position: relative;
    transition: .3s opacity var(--transition-default)
}

.video-modal::backdrop {
    background-color: #000;
    opacity: .75
}

.video-modal[open] {
    --modal-opacity: 1;
    display: flex
}

.video-modal__nav {
    padding: 2em;
    position: absolute;
    right: 0;
    z-index: 1
}

.video-modal__toggle {
    appearance: none;
    background: none;
    border: none;
    color: inherit;
    color: var(--color-text);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-size: 2em;
    margin: 0;
    padding: 0;
    text-decoration: none
}

.video-modal__body {
    aspect-ratio: 16/9;
    position: relative;
    width: 100%
}

.video-modal__video {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.contact-block {
    --inner-gap: var(--spacer-2);
    --item-width: 100%
}

@media(min-width:992px) {
    .contact-block {
        --inner-gap: var(--spacer-4);
        --item-width: 50%
    }
}

.contact-block__inner {
    display: flex;
    flex-wrap: wrap;
    gap: var(--inner-gap)
}

.contact-block__body,
.contact-block__locations {
    flex: 1 0 calc(var(--item-width) - var(--inner-gap))
}

.contact-block__form {
    --flow-gap: var(--spacer-1)
}

.cta-block {
    --body-padding: var(--spacer-4)
}

.cta-block__inner {
    position: relative
}

.cta-block__background {
    background-color: var(--color-background);
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%
}

.cta-block__body {
    padding: var(--body-padding) 0;
    position: relative
}

.cta-contact {
    --body-padding: var(--spacer-2)
}

@media(min-width:992px) {
    .cta-contact {
        --body-padding: var(--spacer-4)
    }
}

.cta-contact__inner {
    display: flex
}

.cta-contact__tagline {
    font-weight: 500
}

.cta-contact__body {
    background-color: var(--color-background);
    border-radius: var(--default-border-radius);
    margin-left: auto;
    max-width: 40rem;
    padding: var(--body-padding)
}

.cta-contact__text {
    --flow-gap: 1.5em;
    font-size: 1.125em
}

.cta-contact__links {
    --flow-gap: var(--spacer-1);
    display: flex;
    flex-wrap: wrap;
    gap: 1em
}

.cta-form {
    --inner-gap: var(--spacer-4);
    --item-width: 100%
}

@media(min-width:992px) {
    .cta-form {
        --inner-gap: var(--spacer-2);
        --item-width: 50%
    }
}

.cta-form__inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: var(--inner-gap)
}

.cta-form__body,
.cta-form__form {
    flex: 1 0 calc(var(--item-width) - var(--inner-gap))
}

.cta-form__form {
    background-color: var(--color-white);
    border-radius: var(--default-border-radius-small);
    overflow: hidden;
    padding: var(--spacer-1)
}

.dropdown-list {
    background-color: var(--color-background);
    display: none;
    height: 0;
    opacity: 0;
    position: static;
    z-index: 10
}

@media(min-width:768px) {
    .dropdown-list {
        border-radius: var(--dropdown-border-radius, var(--default-border-radius));
        box-shadow: var(--default-box-shadow);
        height: auto;
        margin-top: var(--dropdown-margin-top, var(--default-dropdown-margin-top));
        position: absolute
    }
}

.footer {
    position: relative
}

.gallery-block__item {
    contain: content;
    transition: .3s opacity var(--transition-default)
}

.gallery-block__item:hover {
    opacity: .85
}

.header {
    --header-background: var(--color-background);
    background-color: var(--header-background);
    isolation: isolate;
    position: relative;
    z-index: 10
}

@media(min-width:992px) {
    .header {
        border-radius: var(--default-border-radius-small)
    }
}

.header--sticky {
    position: sticky;
    top: 0;
    z-index: 10
}

.header--fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10
}

.header--float {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

@media(min-width:992px) {
    .header--float {
        margin-top: var(--spacer-1)
    }
}

.header--boxed {
    left: 0;
    margin-left: auto;
    margin-right: auto;
    right: 0
}

@media(min-width:992px) {
    .header--boxed {
        max-width: var(--default-container-width)
    }
}

.header--border-bottom {
    border-bottom: 1px solid var(--color-text)
}

.header--transparent {
    --header-background: transparent
}

.image-block {
    border-radius: var(--default-border-radius-small);
    overflow: hidden
}

.intro-block {
    --grid-gap: var(--spacer-4)
}

.intro-block__inner {
    display: flex;
    flex-wrap: wrap;
    gap: var(--grid-gap) 0
}

.intro-block__header {
    max-width: 40rem
}

.intro-block__title {
    --flow-gap: 1em
}

.intro-block__body {
    margin-left: auto;
    max-width: 30rem
}

.intro-block__link {
    --flow-gap: var(--spacer-1)
}

.list-block__items {
    --flow-gap: var(--spacer-4)
}

.lubricants-block__heading {
    margin: 0 auto;
    max-width: var(--default-container-width-small)
}

.lubricants-block__items {
    --flow-gap: var(--spacer-4)
}

.slider-block {
    --slide-aspect-ratio: 75%;
    --nav-opacity: 0.5
}

@media(min-width:992px) {
    .slider-block {
        --slide-aspect-ratio: 56.25%
    }
}

.slider-block:hover {
    --nav-opacity: 1
}

.slider-block__inner {
    border-radius: var(--default-border-radius-small);
    height: var(--slides-height);
    overflow: hidden;
    position: relative
}

.slider-block__slide {
    --aspect-ratio: var(--slide-aspect-ratio)
}

.slider-block__controls {
    align-items: center;
    display: flex;
    height: 100%;
    inset: 0;
    justify-content: center;
    position: absolute;
    width: 100%;
    z-index: 1
}

.slider-block__nav {
    display: flex;
    justify-content: space-between;
    opacity: var(--nav-opacity);
    padding: 0 var(--spacer-2);
    transition: .3s opacity var(--transition-default);
    width: 100%
}

.slider-block__pagination {
    bottom: 0;
    display: flex;
    gap: .325em;
    padding-bottom: var(--spacer-1);
    position: absolute
}

.slider-block__pagination .swiper-pagination-bullet {
    aspect-ratio: 1/1;
    border: 1px solid var(--color-border);
    border-radius: 100vmax;
    display: block;
    width: .5625em
}

.slider-block__pagination .swiper-pagination-bullet-active {
    background-color: var(--color-border)
}

.slider-block__nav-item {
    appearance: none;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: inherit;
    font-size: 2em;
    margin: 0;
    padding: 0;
    text-decoration: none
}

.solutions-list__item {
    --flow-gap: var(--spacer-3)
}

.story-blocks {
    --aside-padding: var(--spacer-2);
    position: relative
}

.story-blocks__inner {
    margin: 0 auto;
    max-width: var(--default-container-width-small)
}

.story-blocks__aside,
.story-blocks__inner {
    --flow-gap: var(--spacer-2)
}

@media(min-width:992px) {
    .story-blocks__aside {
        --flow-gap: 0;
        height: 100%;
        padding: var(--aside-padding) 0;
        position: absolute;
        right: 0;
        top: 0;
        width: 20em
    }

    .story-blocks__cta {
        position: sticky;
        top: var(--aside-padding)
    }
}

.story-intro {
    height: 100svh;
    position: relative
}

@media(min-width:992px) {
    .story-intro {
        height: 80svh
    }
}

.story-intro__inner {
    height: inherit;
    position: relative
}

.story-intro__background:before {
    background: var(--default-overlay-background);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1
}

.story-intro__overlay {
    height: 100%;
    padding: calc(var(--header-height) + var(--spacer-1)) 0;
    position: absolute;
    width: 100%;
    z-index: 2
}

.story-intro__body {
    margin: var(--spacer-1) 0
}

.story-intro__heading {
    --flow-gap: var(--spacer-2)
}

.story-intro__text {
    --flow-gap: 1.5em;
    max-width: 60ch
}

.story-intro__link {
    --flow-gap: 1.5em
}

.story-intro__facts {
    background-color: var(--color-white);
    bottom: 0;
    color: var(--color-text);
    font-size: var(--type-0);
    padding: var(--spacer-0) 0;
    position: absolute;
    width: 100%;
    z-index: 2
}

.story-intro__facts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2em
}

@media(min-width:992px) {
    .story-intro__facts-list {
        flex-wrap: nowrap
    }
}

.text-block__action,
.text-block__text {
    --flow-gap: 1.5em
}

.video-block {
    border-radius: var(--default-border-radius-small);
    overflow: hidden
}

.video-block__inner {
    display: flex;
    position: relative
}

.video-block__overlay {
    align-items: center;
    display: flex;
    height: 100%;
    inset: 0;
    justify-content: center;
    position: absolute;
    width: 100%;
    z-index: 1
}

.video-block__overlay:before {
    background: var(--default-overlay-background);
    content: "";
    display: block;
    height: 100%;
    opacity: .5;
    position: absolute;
    width: 100%;
    z-index: 2
}

.video-block__video {
    border-radius: var(--default-border-radius-small);
    height: inherit;
    overflow: hidden;
    width: 100%
}

.video-block__toggle {
    appearance: none;
    background: none;
    border: none;
    color: inherit;
    color: var(--color-white);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-size: 4em;
    margin: 0;
    padding: 0;
    position: relative;
    text-decoration: none;
    z-index: 2
}

.pb-hero {
    --hero-padding: var(--spacer-3);
    --hero-padding-top: var(--hero-padding);
    --hero-padding-bottom: var(--hero-padding);
    --hero-min-height: 32rem;
    position: relative
}

body.push-content-down .pb-hero {
    --hero-padding-top: calc(var(--hero-padding) + var(--header-height))
}

.pb-hero__inner {
    align-items: center;
    display: grid;
    min-height: var(--hero-min-height);
    padding-bottom: var(--hero-padding-bottom, var(--default-container-padding));
    padding-top: var(--hero-padding-top, var(--default-container-padding));
    position: relative;
    z-index: 1
}

.pb-hero__background {
    background-color: var(--color-accent);
    inset: 0;
    position: absolute
}

.pb-hero--image-overlay .pb-hero__background:after {
    background: linear-gradient(to bottom, transparent 0, var(--color-background) 100%);
    bottom: 0;
    content: "";
    height: 75%;
    left: 0;
    position: absolute;
    width: 100%
}

.pb-hero__body {
    max-width: 36rem
}

.prefab-footer-details {
    line-height: 1.5
}

.prefab-footer-nav__list {
    display: flex;
    flex-direction: column;
    font-size: var(--footer-list-font-size, var(--default-footer-list-font-size));
    gap: var(--footer-list-gap, var(--default-footer-list-gap));
    list-style: none;
    margin: 0;
    margin-bottom: var(--footer-list-margin-bottom, var(--default-footer-list-gap));
    padding: 0
}

.prefab-footer-nav__list-item--header {
    font-weight: 700
}

.prefab-footer-nav__list-item[aria-current=page] {
    --link-underline-line: underline
}

.prefab-footer-nav__certificates {
    --flow-gap: var(--spacer-0);
    display: flex;
    flex-wrap: wrap;
    gap: 1em
}

.prefab-footer {
    --brand-width: 16em;
    --footer-gap: var(--spacer-4);
    background-color: var(--color-background);
    color: var(--color-text)
}

.prefab-footer__inner {
    padding: var(--footer-inner-padding, var(--default-footer-inner-padding)) 0
}

.prefab-footer__contact {
    display: flex;
    flex-direction: column
}

.prefab-footer__logo {
    color: var(--color-theme-1);
    max-width: var(--brand-width, var(--default-brand-width));
    width: 100%
}

.prefab-footer__menu {
    margin-bottom: var(--footer-gap, var(--default-footer-gap))
}

.prefab-legal-nav__list {
    display: flex;
    font-size: var(--type-0);
    gap: var(--footer-list-gap, var(--default-footer-list-gap));
    list-style: none;
    margin: 0;
    padding: 0
}

.prefab-legal-nav__list-item[aria-current=page] {
    --link-underline-line: underline
}

.prefab-menu {
    --header-inner-padding: 1.25em;
    --overlay-trigger-background: var(--color-theme-1)
}

@media(min-width:992px) {
    .prefab-menu {
        --header-inner-padding: var(--default-header-inner-padding)
    }
}

.prefab-menu__inner {
    align-items: center;
    display: flex;
    gap: var(--header-gap, var(--default-header-gap));
    justify-content: space-between;
    min-height: var(--header-inner-height, var(--default-header-inner-height));
    padding: var(--header-inner-padding, var(--default-header-inner-padding)) 0
}

.prefab-menu__logo {
    flex: 1 1 var(--brand-width, var(--default-brand-width));
    max-width: var(--brand-width, var(--default-brand-width));
    width: 100%
}

.prefab-menu__actions,
.prefab-menu__menu,
.prefab-menu__nav {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: var(--header-gap, var(--default-header-gap));
    padding: 0;
    position: static
}

.prefab-menu__menu {
    flex: 1
}

.prefab-menu__nav {
    width: 100%
}

.prefab-menu__actions {
    justify-content: flex-end;
    width: 100%
}

@media(min-width:768px) {
    .prefab-menu__actions {
        display: none;
        width: auto
    }
}

.prefab-menu__overlay {
    background: var(--color-background);
    border-bottom-left-radius: var(--menu-border-radius, var(--default-border-radius));
    border-bottom-right-radius: var(--menu-border-radius, var(--default-border-radius));
    box-shadow: var(--default-box-shadow);
    color: var(--color-text);
    overflow: hidden;
    position: absolute;
    width: 100%
}

@media(min-width:768px) {
    .prefab-menu__overlay {
        display: none
    }
}

.prefab-menu__overlay-trigger {
    background: var(--overlay-trigger-background);
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: -1
}

.prefab-menu--is-open .prefab-menu__overlay-trigger {
    pointer-events: all
}

@media(min-width:768px) {
    .prefab-menu__overlay-trigger {
        display: none
    }
}

.prefab-nav {
    --nav-list-font-size: var(--type-1);
    --nav-list-item-border-transform: var(--nav-list-gap, var(--default-nav-list-gap));
    --nav-list-item-border: 1px solid var(--color-border);
    color: var(--color-text);
    width: 100%
}

.prefab-nav__inner {
    display: flex;
    flex-direction: column;
    gap: var(--nav-list-gap, var(--default-nav-list-gap));
    justify-content: flex-end;
    padding: var(--header-inner-padding, var(--default-header-inner-padding)) 0
}

@media(min-width:768px) {
    .prefab-nav__inner {
        flex-direction: row;
        padding: 0
    }
}

.prefab-nav__list {
    display: flex;
    flex-direction: column;
    font-size: var(--nav-list-font-size);
    gap: var(--nav-list-gap, var(--default-nav-list-gap));
    list-style: none;
    margin: 0;
    padding: 0
}

@media(min-width:768px) {
    .prefab-nav__list {
        flex-direction: row;
        margin-left: auto
    }
}

.prefab-nav__list-item {
    align-items: center;
    display: inline-flex;
    font-weight: 500;
    position: relative
}

.prefab-nav__list-item[aria-current=page] {
    --link-weight: 500
}

@media(max-width:767px) {
    .prefab-nav__list-item {
        width: 100%
    }

    .prefab-nav__list-item:before {
        border-bottom: var(--nav-list-item-border);
        bottom: 0;
        content: "";
        position: absolute;
        transform: translateY(calc(var(--nav-list-item-border-transform)/2));
        width: 100%
    }

    .prefab-nav__list:last-child .prefab-nav__list-item:last-child {
        --nav-list-item-border: 0
    }
}

.prefab-nav__list--end {
    justify-content: flex-end
}

/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
    --pswp-bg: #000;
    --pswp-placeholder-bg: #222;
    --pswp-root-z-index: 100000;
    --pswp-preloader-color: rgba(79, 79, 79, .4);
    --pswp-preloader-color-secondary: hsla(0, 0%, 100%, .9);
    --pswp-icon-color: #fff;
    --pswp-icon-color-secondary: #4f4f4f;
    --pswp-icon-stroke-color: #4f4f4f;
    --pswp-icon-stroke-width: 2px;
    --pswp-error-text-color: var(--pswp-icon-color);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    contain: layout style size;
    display: none;
    height: 100%;
    left: 0;
    opacity: .003;
    position: fixed;
    top: 0;
    touch-action: none;
    width: 100%;
    z-index: var(--pswp-root-z-index)
}

.pswp,
.pswp:focus {
    outline: 0
}

.pswp * {
    box-sizing: border-box
}

.pswp img {
    max-width: none
}

.pswp--open {
    display: block
}

.pswp,
.pswp__bg {
    transform: translateZ(0);
    will-change: opacity
}

.pswp__bg {
    background: var(--pswp-bg);
    opacity: .005
}

.pswp,
.pswp__scroll-wrap {
    overflow: hidden
}

.pswp__bg,
.pswp__container,
.pswp__content,
.pswp__img,
.pswp__item,
.pswp__scroll-wrap,
.pswp__zoom-wrap {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.pswp__img,
.pswp__zoom-wrap {
    height: auto;
    width: auto
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing
}

.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
    cursor: -webkit-zoom-out;
    cursor: -moz-zoom-out;
    cursor: zoom-out
}

.pswp__button,
.pswp__container,
.pswp__counter,
.pswp__img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.pswp__item {
    overflow: hidden;
    z-index: 1
}

.pswp__hidden {
    display: none !important
}

.pswp__content {
    pointer-events: none
}

.pswp__content>* {
    pointer-events: auto
}

.pswp__error-msg-container {
    display: grid
}

.pswp__error-msg {
    color: var(--pswp-error-text-color);
    font-size: 1em;
    line-height: 1;
    margin: auto
}

.pswp .pswp__hide-on-close {
    opacity: .005;
    pointer-events: none;
    transition: opacity var(--pswp-transition-duration) cubic-bezier(.4, 0, .22, 1);
    will-change: opacity;
    z-index: 10
}

.pswp--ui-visible .pswp__hide-on-close {
    opacity: 1;
    pointer-events: auto
}

.pswp__button {
    -webkit-touch-callout: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    box-shadow: none;
    cursor: pointer;
    display: block;
    height: 60px;
    margin: 0;
    opacity: .85;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 50px
}

.pswp__button:active,
.pswp__button:focus,
.pswp__button:hover {
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    padding: 0;
    transition: none
}

.pswp__button:disabled {
    cursor: auto;
    opacity: .3
}

.pswp__icn {
    fill: var(--pswp-icon-color);
    color: var(--pswp-icon-color-secondary);
    height: 32px;
    left: 9px;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 14px;
    width: 32px
}

.pswp__icn-shadow {
    stroke: var(--pswp-icon-stroke-color);
    stroke-width: var(--pswp-icon-stroke-width);
    fill: none
}

.pswp__icn:focus {
    outline: 0
}

.pswp__img--with-bg,
div.pswp__img--placeholder {
    background: var(--pswp-placeholder-bg)
}

.pswp__top-bar {
    display: flex;
    flex-direction: row;
    height: 60px;
    justify-content: flex-end;
    left: 0;
    pointer-events: none !important;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.pswp__top-bar>* {
    pointer-events: auto;
    will-change: opacity
}

.pswp__button--close {
    margin-right: 6px
}

.pswp__button--arrow {
    height: 100px;
    margin-top: -50px;
    position: absolute;
    top: 0;
    top: 50%;
    width: 75px
}

.pswp__button--arrow:disabled {
    cursor: default;
    display: none
}

.pswp__button--arrow .pswp__icn {
    background: none;
    border-radius: 0;
    height: 60px;
    margin-top: -30px;
    top: 50%;
    width: 60px
}

.pswp--one-slide .pswp__button--arrow {
    display: none
}

.pswp--touch .pswp__button--arrow {
    visibility: hidden
}

.pswp--has_mouse .pswp__button--arrow {
    visibility: visible
}

.pswp__button--arrow--prev {
    left: 0;
    right: auto
}

.pswp__button--arrow--next {
    right: 0
}

.pswp__button--arrow--next .pswp__icn {
    left: auto;
    right: 14px;
    transform: scaleX(-1)
}

.pswp__button--zoom {
    display: none
}

.pswp--zoom-allowed .pswp__button--zoom {
    display: block
}

.pswp--zoomed-in .pswp__zoom-icn-bar-v {
    display: none
}

.pswp__preloader {
    height: 60px;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    width: 50px
}

.pswp__preloader .pswp__icn {
    animation: pswp-clockwise .6s linear infinite;
    opacity: 0;
    transition: opacity .2s linear
}

.pswp__preloader--active .pswp__icn {
    opacity: .85
}

@keyframes pswp-clockwise {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.pswp__counter {
    color: var(--pswp-icon-color);
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin-top: 15px;
    margin-inline-start: 20px;
    opacity: .85;
    text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary)
}

.pswp--one-slide .pswp__counter {
    display: none
}

@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
}

:root {
    --swiper-theme-color: #007aff
}

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

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

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

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

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

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

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

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

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

.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 {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

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

.swiper-3d {
    perspective: 1200px
}

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

.swiper-css-mode>.swiper-wrapper {
    -ms-overflow-style: none;
    overflow: auto;
    scrollbar-width: none
}

.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 {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%
}

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

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

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

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

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

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

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

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

    to {
        transform: rotate(1turn)
    }
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}