body{
 -ms-overflow-style: none;
 }
 
::-webkit-scrollbar {
  display: none;
}

.react-international-phone-country-selector {
    position: relative
}

.react-international-phone-country-selector-button {
    display: flex;
    height: var(--react-international-phone-height, 36px);
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--react-international-phone-country-selector-border-color, var(--react-international-phone-border-color, #dcdcdc));
    margin: 0;
    -moz-appearance: button;
    appearance: button;
    -webkit-appearance: button;
    background-color: var(--react-international-phone-country-selector-background-color, var(--react-international-phone-background-color, #fff));
    cursor: pointer;
    text-transform: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.react-international-phone-country-selector-button:hover {
    background-color: var(--react-international-phone-country-selector-background-color-hover, #f5f5f5)
}

.react-international-phone-country-selector-button--hide-dropdown {
    cursor: auto
}

.react-international-phone-country-selector-button--hide-dropdown:hover {
    background-color: transparent
}

.react-international-phone-country-selector-button__button-content {
    display: flex;
    align-items: center;
    justify-content: center
}

.react-international-phone-country-selector-button__flag-emoji {
    margin: 0 4px
}

.react-international-phone-country-selector-button__flag-emoji--disabled {
    opacity: .75
}

.react-international-phone-country-selector-button__dropdown-arrow {
    border-top: var(--react-international-phone-country-selector-arrow-size, 4px) solid var(--react-international-phone-country-selector-arrow-color, #777);
    border-right: var(--react-international-phone-country-selector-arrow-size, 4px) solid transparent;
    border-left: var(--react-international-phone-country-selector-arrow-size, 4px) solid transparent;
    margin-right: 4px;
    transition: all .1s ease-out
}

.react-international-phone-country-selector-button__dropdown-arrow--active {
    transform: rotateX(180deg)
}

.react-international-phone-country-selector-button__dropdown-arrow--disabled {
    border-top-color: var(--react-international-phone-disabled-country-selector-arrow-color, #999)
}

.react-international-phone-country-selector-button--disabled {
    cursor: auto
}

.react-international-phone-country-selector-button--disabled,
.react-international-phone-country-selector-button--disabled:hover {
    background-color: var(--react-international-phone-disabled-country-selector-background-color, var(--react-international-phone-disabled-background-color, #f5f5f5))
}

.react-international-phone-flag-emoji {
    width: var(--react-international-phone-flag-width, 24px);
    height: var(--react-international-phone-flag-height, 24px);
    box-sizing: border-box
}

.react-international-phone-country-selector-dropdown {
    position: absolute;
    z-index: 1;
    top: var(--react-international-phone-dropdown-top, 44px);
    left: var(--react-international-phone-dropdown-left, 0);
    display: flex;
    width: 300px;
    max-height: 200px;
    flex-direction: column;
    padding: 4px 0;
    margin: 0;
    background-color: var(--react-international-phone-dropdown-item-background-color, var(--react-international-phone-background-color, #fff));
    box-shadow: var(--react-international-phone-dropdown-shadow, 2px 2px 16px rgba(0, 0, 0, .25));
    color: var(--react-international-phone-dropdown-item-text-color, var(--react-international-phone-text-color, #222));
    list-style: none;
    overflow-y: scroll
}

.react-international-phone-country-selector-dropdown__preferred-list-divider {
    height: 1px;
    border: none;
    margin: var(--react-international-phone-dropdown-preferred-list-divider-margin, 0);
    background: var(--react-international-phone-dropdown-preferred-list-divider-color, var(--react-international-phone-border-color, #dcdcdc))
}

.react-international-phone-country-selector-dropdown__list-item {
    display: flex;
    min-height: var(--react-international-phone-dropdown-item-height, 28px);
    box-sizing: border-box;
    align-items: center;
    padding: 2px 8px
}

.react-international-phone-country-selector-dropdown__list-item-flag-emoji {
    margin-right: 8px
}

.react-international-phone-country-selector-dropdown__list-item-country-name {
    overflow: hidden;
    margin-right: 8px;
    font-size: var(--react-international-phone-dropdown-item-font-size, 14px);
    text-overflow: ellipsis;
    white-space: nowrap
}

.react-international-phone-country-selector-dropdown__list-item-dial-code {
    color: var(--react-international-phone-dropdown-item-dial-code-color, gray);
    font-size: var(--react-international-phone-dropdown-item-font-size, 14px)
}

.react-international-phone-country-selector-dropdown__list-item:hover {
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, #f5f5f5));
    cursor: pointer
}

.react-international-phone-country-selector-dropdown__list-item--focused,
.react-international-phone-country-selector-dropdown__list-item--selected {
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, #f5f5f5);
    color: var(--react-international-phone-selected-dropdown-item-text-color, var(--react-international-phone-text-color, #222))
}

.react-international-phone-country-selector-dropdown__list-item--focused .react-international-phone-country-selector-dropdown__list-item-dial-code,
.react-international-phone-country-selector-dropdown__list-item--selected .react-international-phone-country-selector-dropdown__list-item-dial-code {
    color: var(--react-international-phone-selected-dropdown-item-dial-code-color, var(--react-international-phone-dropdown-item-dial-code-color, gray))
}

.react-international-phone-country-selector-dropdown__list-item--focused {
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, #f5f5f5))
}

.react-international-phone-dial-code-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid var(--react-international-phone-dial-code-preview-border-color, var(--react-international-phone-border-color, #dcdcdc));
    margin-right: -1px;
    background-color: var(--react-international-phone-dial-code-preview-background-color, var(--react-international-phone-background-color, #fff));
    color: var(--react-international-phone-dial-code-preview-text-color, var(--react-international-phone-text-color, #222));
    font-size: var(--react-international-phone-dial-code-preview-font-size, var(--react-international-phone-font-size, 13px))
}

.react-international-phone-dial-code-preview--disabled {
    background-color: var(--react-international-phone-dial-code-preview-disabled-background-color, var(--react-international-phone-disabled-background-color, #f5f5f5));
    color: var(--react-international-phone-dial-code-preview-disabled-text-color, var(--react-international-phone-disabled-text-color, #666))
}

.react-international-phone-input-container {
    display: flex
}

.react-international-phone-input-container .react-international-phone-country-selector-button {
    border-radius: var(--react-international-phone-border-radius, 4px);
    margin-right: -1px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.react-international-phone-input-container .react-international-phone-input {
    overflow: visible;
    height: var(--react-international-phone-height, 36px);
    box-sizing: border-box;
    padding: 0 8px;
    border: 1px solid var(--react-international-phone-border-color, #dcdcdc);
    border-radius: var(--react-international-phone-border-radius, 4px);
    margin: 0;
    background-color: var(--react-international-phone-background-color, #fff);
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    color: var(--react-international-phone-text-color, #222);
    font-family: inherit;
    font-size: var(--react-international-phone-font-size, 13px)
}

.react-international-phone-input-container .react-international-phone-input:focus {
    outline: none
}

.react-international-phone-input-container .react-international-phone-input--disabled {
    background-color: var(--react-international-phone-disabled-background-color, #f5f5f5);
    color: var(--react-international-phone-disabled-text-color, #666)
}

:root {
    --gold: #cf9561;
    --emerald: #2f4f4d;
    --darkemerald: #384545;
    --teal: #00a29c;
    --aqua: #9fdddd;
    --white: #fff;
    --softGray: #9cb0bf;
    --cgray: #eff0ef
}

/*
! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
*/

*,
:after,
:before {
    box-sizing: border-box;
    /*border: 0 solid #e5e7eb*/
}

:after,
:before {
    --tw-content: ""
}

:host,
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

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

b,
strong {
    font-weight: bolder
}

code,
kbd,
pre,
samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button,
select {
    text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
    margin: 0
}

fieldset {
    margin: 0
}

fieldset,
legend {
    padding: 0
}

menu,
ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

[role=button],
button {
    cursor: pointer
}

:disabled {
    cursor: default
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    vertical-align: middle
}

img,
video {
    max-width: 100%;
    height: auto
}

[hidden] {
    display: none
}

*,
:after,
:before {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

.container {
    width: 100%
}

@media (min-width:376px) {
    .container {
        max-width: 376px
    }
}

@media (min-width:550px) {
    .container {
        max-width: 550px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width:1024px) {
    .container {
        max-width: 1024px
    }
}

@media (min-width:1440px) {
    .container {
        max-width: 1440px
    }
}

@media (min-width:1920px) {
    .container {
        max-width: 1920px
    }
}

.h1,
h1 {
    font-size: 16.4530930816px;
    line-height: 124%
}

@media(min-width:414px)and (max-width:768px) {
    .h1,
    h1 {
        font-size: calc(27.4530930816px + 4.5755155136 * (100vw - 414px) / 354)
    }
}

@media(min-width:768px)and (max-width:1440px) {
    .h1,
    h1 {
        font-size: calc(32.0286085952px + 4.5755155136 * (100vw - 768px) / 672)
    }
}

@media(min-width:1440px)and (max-width:1920px) {
    .h1,
    h1 {
        font-size: calc(36.6041241088px + 4.5755155136 * (100vw - 1440px) / 480)
    }
}

@media(min-width:1920px)and (max-width:2560px) {
    .h1,
    h1 {
        font-size: calc(41.1796396224px + 2.2877577568 * (100vw - 1920px) / 640)
    }
}

@media(min-width:2560px)and (max-width:3840px) {
    .h1,
    h1 {
        font-size: calc(43.4673973792px + 2.2877577568 * (100vw - 2560px) / 1280)
    }
}

@media(min-width:3840px) {
    .h1,
    h1 {
        font-size: 45.755155136px
    }
}

/*@media (min-width:768px) {
    .h1,
    h1 {
        font-size: 38.2256868068px
    }
    @media(min-width:414px)and (max-width:768px) {
        .h1,
        h1 {
            font-size: calc(38.2256868068px + 6.3709478011 * (100vw - 414px) / 354)
        }
    }
    @media(min-width:768px)and (max-width:1440px) {
        .h1,
        h1 {
            font-size: calc(44.596634608px + 6.3709478011 * (100vw - 768px) / 672)
        }
    }
    @media(min-width:1440px)and (max-width:1920px) {
        .h1,
        h1 {
            font-size: calc(50.9675824091px + 6.3709478011 * (100vw - 1440px) / 480)
        }
    }
    @media(min-width:1920px)and (max-width:2560px) {
        .h1,
        h1 {
            font-size: calc(57.3385302102px + 3.1854739006 * (100vw - 1920px) / 640)
        }
    }
    @media(min-width:2560px)and (max-width:3840px) {
        .h1,
        h1 {
            font-size: calc(60.5240041108px + 3.1854739006 * (100vw - 2560px) / 1280)
        }
    }
    @media(min-width:3840px) {
        .h1,
        h1 {
            font-size: 63.7094780114px
        }
    }
}*/

@media (min-width:768px) {
    .h1,
    h1 {
        font-size: 20.2256868068px
    }
    @media(min-width:414px)and (max-width:768px) {
        .h1,
        h1 {
            font-size: calc(15.2256868068px + 6.3709478011 * (100vw - 414px) / 354)
        }
    }
    @media(min-width:768px)and (max-width:1440px) {
        .h1,
        h1 {
            font-size: calc(20.596634608px + 6.3709478011 * (100vw - 768px) / 672)
        }
    }
    @media(min-width:1440px)and (max-width:1920px) {
        .h1,
        h1 {
            font-size: calc(37.9675824091px + 6.3709478011 * (100vw - 1440px) / 480)
        }
    }
    @media(min-width:1920px)and (max-width:2560px) {
        .h1,
        h1 {
            font-size: calc(47.3385302102px + 3.1854739006 * (100vw - 1920px) / 640)
        }
    }
    @media(min-width:2560px)and (max-width:3840px) {
        .h1,
        h1 {
            font-size: calc(50.5240041108px + 3.1854739006 * (100vw - 2560px) / 1280)
        }
    }
    @media(min-width:3840px) {
        .h1,
        h1 {
            font-size: 56.7094780114px
        }
    }
}

.h2,
.h2-medium,
h2 {
    line-height: 110%;
    font-size: 19.716384px
}

@media(min-width:414px)and (max-width:768px) {
    .h2,
    .h2-medium,
    h2 {
        font-size: calc(19.716384px + 3.286064 * (100vw - 414px) / 354)
    }
}

@media(min-width:768px)and (max-width:1440px) {
    .h2,
    .h2-medium,
    h2 {
        font-size: calc(23.002448px + 3.286064 * (100vw - 768px) / 672)
    }
}

@media(min-width:1440px)and (max-width:1920px) {
    .h2,
    .h2-medium,
    h2 {
        font-size: calc(26.288512px + 3.286064 * (100vw - 1440px) / 480)
    }
}

@media(min-width:1920px)and (max-width:2560px) {
    .h2,
    .h2-medium,
    h2 {
        font-size: calc(29.574576px + 1.643032 * (100vw - 1920px) / 640)
    }
}

@media(min-width:2560px)and (max-width:3840px) {
    .h2,
    .h2-medium,
    h2 {
        font-size: calc(31.217608px + 1.643032 * (100vw - 2560px) / 1280)
    }
}

@media(min-width:3840px) {
    .h2,
    .h2-medium,
    h2 {
        font-size: 32.86064px
    }
}

@media (min-width:768px) {
    .h2,
    .h2-medium,
    h2 {
        line-height: 105%;
        font-size: 27.4530930816px
    }
    @media(min-width:414px)and (max-width:768px) {
        .h2,
        .h2-medium,
        h2 {
            font-size: calc(27.4530930816px + 4.5755155136 * (100vw - 414px) / 354)
        }
    }
    @media(min-width:768px)and (max-width:1440px) {
        .h2,
        .h2-medium,
        h2 {
            font-size: calc(32.0286085952px + 4.5755155136 * (100vw - 768px) / 672)
        }
    }
    @media(min-width:1440px)and (max-width:1920px) {
        .h2,
        .h2-medium,
        h2 {
            font-size: calc(36.6041241088px + 4.5755155136 * (100vw - 1440px) / 480)
        }
    }
    @media(min-width:1920px)and (max-width:2560px) {
        .h2,
        .h2-medium,
        h2 {
            font-size: calc(41.1796396224px + 2.2877577568 * (100vw - 1920px) / 640)
        }
    }
    @media(min-width:2560px)and (max-width:3840px) {
        .h2,
        .h2-medium,
        h2 {
            font-size: calc(43.4673973792px + 2.2877577568 * (100vw - 2560px) / 1280)
        }
    }
    @media(min-width:3840px) {
        .h2,
        .h2-medium,
        h2 {
            font-size: 45.755155136px
        }
    }
}

.h3,
h3 {
    line-height: 105%;
    font-size: 19.716384px
}

@media(min-width:414px)and (max-width:768px) {
    .h3,
    h3 {
        font-size: calc(19.716384px + 3.286064 * (100vw - 414px) / 354)
    }
}

@media(min-width:768px)and (max-width:1440px) {
    .h3,
    h3 {
        font-size: calc(23.002448px + 3.286064 * (100vw - 768px) / 672)
    }
}

@media(min-width:1440px)and (max-width:1920px) {
    .h3,
    h3 {
        font-size: calc(26.288512px + 3.286064 * (100vw - 1440px) / 480)
    }
}

@media(min-width:1920px)and (max-width:2560px) {
    .h3,
    h3 {
        font-size: calc(29.574576px + 1.643032 * (100vw - 1920px) / 640)
    }
}

@media(min-width:2560px)and (max-width:3840px) {
    .h3,
    h3 {
        font-size: calc(31.217608px + 1.643032 * (100vw - 2560px) / 1280)
    }
}

@media(min-width:3840px) {
    .h3,
    h3 {
        font-size: 32.86064px
    }
}

@media (min-width:768px) {
    .h3,
    h3 {
        font-size: 23.26533312px
    }
    @media(min-width:414px)and (max-width:768px) {
        .h3,
        h3 {
            font-size: calc(23.26533312px + 3.87755552 * (100vw - 414px) / 354)
        }
    }
    @media(min-width:768px)and (max-width:1440px) {
        .h3,
        h3 {
            font-size: calc(27.14288864px + 3.87755552 * (100vw - 768px) / 672)
        }
    }
    @media(min-width:1440px)and (max-width:1920px) {
        .h3,
        h3 {
            font-size: calc(31.02044416px + 3.87755552 * (100vw - 1440px) / 480)
        }
    }
    @media(min-width:1920px)and (max-width:2560px) {
        .h3,
        h3 {
            font-size: calc(34.89799968px + 1.93877776 * (100vw - 1920px) / 640)
        }
    }
    @media(min-width:2560px)and (max-width:3840px) {
        .h3,
        h3 {
            font-size: calc(36.83677744px + 1.93877776 * (100vw - 2560px) / 1280)
        }
    }
    @media(min-width:3840px) {
        .h3,
        h3 {
            font-size: 38.7755552px
        }
    }
}

.h4,
.h4-bold,
.h4-medium,
h4 {
    line-height: 105%;
    font-size: 16.7088px
}

@media(min-width:414px)and (max-width:768px) {
    .h4,
    .h4-bold,
    .h4-medium,
    h4 {
        font-size: calc(16.7088px + 2.7848 * (100vw - 414px) / 354)
    }
}

@media(min-width:768px)and (max-width:1440px) {
    .h4,
    .h4-bold,
    .h4-medium,
    h4 {
        font-size: calc(19.4936px + 2.7848 * (100vw - 768px) / 672)
    }
}

@media(min-width:1440px)and (max-width:1920px) {
    .h4,
    .h4-bold,
    .h4-medium,
    h4 {
        font-size: calc(22.2784px + 2.7848 * (100vw - 1440px) / 480)
    }
}

@media(min-width:1920px)and (max-width:2560px) {
    .h4,
    .h4-bold,
    .h4-medium,
    h4 {
        font-size: calc(25.0632px + 1.3924 * (100vw - 1920px) / 640)
    }
}

@media(min-width:2560px)and (max-width:3840px) {
    .h4,
    .h4-bold,
    .h4-medium,
    h4 {
        font-size: calc(26.4556px + 1.3924 * (100vw - 2560px) / 1280)
    }
}

@media(min-width:3840px) {
    .h4,
    .h4-bold,
    .h4-medium,
    h4 {
        font-size: 27.848px
    }
}

@media (min-width:768px) {
    .h4,
    .h4-bold,
    .h4-medium,
    h4 {
        font-size: 19.716384px
    }
    @media(min-width:414px)and (max-width:768px) {
        .h4,
        .h4-bold,
        .h4-medium,
        h4 {
            font-size: calc(19.716384px + 3.286064 * (100vw - 414px) / 354)
        }
    }
    @media(min-width:768px)and (max-width:1440px) {
        .h4,
        .h4-bold,
        .h4-medium,
        h4 {
            font-size: calc(23.002448px + 3.286064 * (100vw - 768px) / 672)
        }
    }
    @media(min-width:1440px)and (max-width:1920px) {
        .h4,
        .h4-bold,
        .h4-medium,
        h4 {
            font-size: calc(26.288512px + 3.286064 * (100vw - 1440px) / 480)
        }
    }
    @media(min-width:1920px)and (max-width:2560px) {
        .h4,
        .h4-bold,
        .h4-medium,
        h4 {
            font-size: calc(29.574576px + 1.643032 * (100vw - 1920px) / 640)
        }
    }
    @media(min-width:2560px)and (max-width:3840px) {
        .h4,
        .h4-bold,
        .h4-medium,
        h4 {
            font-size: calc(31.217608px + 1.643032 * (100vw - 2560px) / 1280)
        }
    }
    @media(min-width:3840px) {
        .h4,
        .h4-bold,
        .h4-medium,
        h4 {
            font-size: 32.86064px
        }
    }
}

.h5,
.h5-bold,
h5 {
    font-size: 16.7088px;
    line-height: 120%
}

@media(min-width:414px)and (max-width:768px) {
    .h5,
    .h5-bold,
    h5 {
        font-size: calc(16.7088px + 2.7848 * (100vw - 414px) / 354)
    }
}

@media(min-width:768px)and (max-width:1440px) {
    .h5,
    .h5-bold,
    h5 {
        font-size: calc(19.4936px + 2.7848 * (100vw - 768px) / 672)
    }
}

@media(min-width:1440px)and (max-width:1920px) {
    .h5,
    .h5-bold,
    h5 {
        font-size: calc(22.2784px + 2.7848 * (100vw - 1440px) / 480)
    }
}

@media(min-width:1920px)and (max-width:2560px) {
    .h5,
    .h5-bold,
    h5 {
        font-size: calc(25.0632px + 1.3924 * (100vw - 1920px) / 640)
    }
}

@media(min-width:2560px)and (max-width:3840px) {
    .h5,
    .h5-bold,
    h5 {
        font-size: calc(26.4556px + 1.3924 * (100vw - 2560px) / 1280)
    }
}

@media(min-width:3840px) {
    .h5,
    .h5-bold,
    h5 {
        font-size: 27.848px
    }
}

.h6,
.h6-bold,
h6,
p {
    font-size: 12px;
    line-height: 110%
}

@media(min-width:414px)and (max-width:768px) {
    .h6,
    .h6-bold,
    h6,
    p {
        font-size: calc(12px + 2 * (100vw - 414px) / 354)
    }
}

@media(min-width:768px)and (max-width:1440px) {
    .h6,
    .h6-bold,
    h6,
    p {
        font-size: calc(14px + 2 * (100vw - 768px) / 672)
    }
}

@media(min-width:1440px)and (max-width:1920px) {
    .h6,
    .h6-bold,
    h6,
    p {
        font-size: calc(16px + 2 * (100vw - 1440px) / 480)
    }
}

@media(min-width:1920px)and (max-width:2560px) {
    .h6,
    .h6-bold,
    h6,
    p {
        font-size: calc(18px + 1 * (100vw - 1920px) / 640)
    }
}

@media(min-width:2560px)and (max-width:3840px) {
    .h6,
    .h6-bold,
    h6,
    p {
        font-size: calc(19px + 1 * (100vw - 2560px) / 1280)
    }
}

@media(min-width:3840px) {
    .h6,
    .h6-bold,
    h6,
    p {
        font-size: 20px
    }
}

.small,
.small-medium {
    font-size: 10.1694915254px;
    line-height: 100%
}

@media(min-width:414px)and (max-width:768px) {
    .small,
    .small-medium {
        font-size: calc(10.1694915254px + 1.6949152542 * (100vw - 414px) / 354)
    }
}

@media(min-width:768px)and (max-width:1440px) {
    .small,
    .small-medium {
        font-size: calc(11.8644067797px + 1.6949152542 * (100vw - 768px) / 672)
    }
}

@media(min-width:1440px)and (max-width:1920px) {
    .small,
    .small-medium {
        font-size: calc(13.5593220339px + 1.6949152542 * (100vw - 1440px) / 480)
    }
}

@media(min-width:1920px)and (max-width:2560px) {
    .small,
    .small-medium {
        font-size: calc(15.2542372881px + .8474576271 * (100vw - 1920px) / 640)
    }
}

@media(min-width:2560px)and (max-width:3840px) {
    .small,
    .small-medium {
        font-size: calc(16.1016949153px + .8474576271 * (100vw - 2560px) / 1280)
    }
}

@media(min-width:3840px) {
    .small,
    .small-medium {
        font-size: 16.9491525424px
    }
}

.h4-bold,
.h5-bold,
.h6-bold {
    font-weight: 700
}

.visible {
    visibility: visible
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.inset-0 {
    inset: 0
}

.bottom-10 {
    bottom: 2.5rem
}

.left-0 {
    left: 0
}

.left-1\/2 {
    left: 50%
}

.right-0 {
    right: 0
}

.right-1\/2 {
    right: 50%
}

.right-8 {
    right: 2rem
}

.top-0 {
    top: 0
}

.top-1\/2 {
    top: 50%
}

.top-32 {
    top: 8rem
}

.top-6 {
    top: 1.5rem
}

.top-7 {
    top: 1.75rem
}

.top-8 {
    top: 2rem
}

.z-20 {
    z-index: 20
}

.z-50 {
    z-index: 50
}

.z-\[10\] {
    z-index: 10
}

.z-\[99998\] {
    z-index: 99998
}

.z-\[99999999\] {
    z-index: 99999999
}

.z-\[999999\] {
    z-index: 999999
}

.z-\[99999\] {
    z-index: 99999
}

.order-first {
    order: -9999
}

.col-span-1 {
    grid-column: span 1/span 1
}

.col-span-12 {
    grid-column: span 12/span 12
}

.col-span-3 {
    grid-column: span 3/span 3
}

.col-span-4 {
    grid-column: span 4/span 4
}

.col-span-5 {
    grid-column: span 5/span 5
}

.col-span-6 {
    grid-column: span 6/span 6
}

.col-span-7 {
    grid-column: span 7/span 7
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem
}

.-mb-\[15rem\] {
    margin-bottom: -15rem
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-14 {
    margin-bottom: 3.5rem
}

.mb-20 {
    margin-bottom: 5rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mb-8 {
    margin-bottom: 2rem
}

.mb-9 {
    margin-bottom: 2.25rem
}

.mb-\[10px\] {
    margin-bottom: 10px
}

.mb-\[34px\] {
    margin-bottom: 34px
}

.mb-\[6px\] {
    margin-bottom: 6px
}

.mb-\[9px\] {
    margin-bottom: 9px
}

.ml-\[10px\] {
    margin-left: 10px
}

.ml-auto {
    margin-left: auto
}

.mr-\[10px\] {
    margin-right: 10px
}

.mt-1 {
    margin-top: .25rem
}

.mt-10 {
    margin-top: 2.5rem
}

.mt-12 {
    margin-top: 3rem
}

.mt-20 {
    margin-top: 5rem
}

.mt-3 {
    margin-top: .75rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-5 {
    margin-top: 1.25rem
}

.mt-7 {
    margin-top: 1.75rem
}

.mt-\[2px\] {
    margin-top: 2px
}

.mt-\[3\.125rem\] {
    margin-top: 3.125rem
}

.line-clamp-1 {
    -webkit-line-clamp: 1
}

.line-clamp-1,
.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.line-clamp-2 {
    -webkit-line-clamp: 2
}

.line-clamp-5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.flex {
    display: flex
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.aspect-21\/9 {
    aspect-ratio: 21/9
}

.aspect-16\/9 {
    aspect-ratio: 16/9
}

.aspect-3\/4 {
    aspect-ratio: 3/4
}

.aspect-4\/3 {
    aspect-ratio: 4/3
}

.aspect-\[11\.81\] {
    aspect-ratio: 11.81
}

.aspect-\[2\.5\] {
    aspect-ratio: 2.5
}

.aspect-\[2\/3\] {
    aspect-ratio: 2/3
}

.aspect-\[3\/2\] {
    aspect-ratio: 3/2
}

.aspect-square {
    aspect-ratio: 1/1
}

.aspect-\[6\] {
    aspect-ratio: 6
}

.h-12 {
    height: 3rem
}

.h-20 {
    height: 5rem
}

.h-4 {
    height: 1rem
}

.h-9 {
    height: 2.25rem
}

.h-\[165px\] {
    height: 165px
}

.h-\[1px\] {
    height: 1px
}

.h-\[51px\] {
    height: 51px
}

.h-auto {
    height: auto
}

.h-full {
    height: 100%
}

.h-screen {
    height: 100vh
}

.min-h-\[12rem\] {
    min-height: 12rem
}

.w-1\/2 {
    width: 50%
}

.w-20 {
    width: 5rem
}

.w-4 {
    width: 1rem
}

.w-9 {
    width: 2.25rem
}

.w-\[197px\] {
    width: 197px
}

.w-\[3\.875rem\] {
    width: 3.875rem
}

.w-\[40\%\] {
    width: 40%
}

.w-\[52\%\] {
    width: 52%
}

.w-\[7\.2vw\] {
    width: 7.2vw
}

.w-\[70\%\] {
    width: 70%
}

.w-\[75vw\] {
    width: 75vw
}

.w-\[7vw\] {
    width: 7vw
}

.w-\[10vw\] {
    width: 150px;
    height: auto;
}

.w-\[80\%\] {
    width: 80%
}

.w-\[90\%\] {
    width: 90%
}

.w-\[99\.5\%\] {
    width: 99.5%
}

.w-fit {
    width: -moz-fit-content;
    width: fit-content
}

.w-full {
    width: 100%
}

.min-w-\[100px\] {
    min-width: 100px
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%
}

.-translate-x-1\/2,
.-translate-y-1\/2 {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%
}

.translate-x-\[50\%\] {
    --tw-translate-x: 50%
}

.-rotate-45,
.translate-x-\[50\%\] {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-rotate-45 {
    --tw-rotate: -45deg
}

.rotate-45 {
    --tw-rotate: 45deg
}

.rotate-45,
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-pointer {
    cursor: pointer
}

.resize {
    resize: both
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr))
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr))
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.place-items-center {
    place-items: center
}

.items-start {
    align-items: flex-start
}

.items-end {
    align-items: flex-end
}

.items-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-0 {
    gap: 0
}

.gap-1 {
    gap: .25rem
}

.gap-10 {
    gap: 2.5rem
}

.gap-12 {
    gap: 3rem
}

.gap-14 {
    gap: 3.5rem
}

.gap-2 {
    gap: .5rem
}

.gap-20 {
    gap: 5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-7 {
    gap: 1.75rem
}

.gap-8 {
    gap: 2rem
}

.gap-9 {
    gap: 2.25rem
}

.gap-\[25px\] {
    gap: 25px
}

.gap-\[3px\] {
    gap: 3px
}

.gap-x-4 {
    -moz-column-gap: 1rem;
    column-gap: 1rem
}

.gap-x-\[25px\] {
    -moz-column-gap: 25px;
    column-gap: 25px
}

.gap-y-12 {
    row-gap: 3rem
}

.gap-y-6 {
    row-gap: 1.5rem
}

.gap-y-\[25px\] {
    row-gap: 25px
}

.space-y-6>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse))
}

.self-start {
    align-self: flex-start
}

.\ !overflow-hidden {
    overflow: hidden !important
}

.overflow-hidden {
    overflow: hidden
}

.overflow-y-auto {
    overflow-y: auto
}

.overflow-x-hidden {
    overflow-x: hidden
}

.rounded {
    border-radius: .25rem
}

.rounded-\[100px\] {
    border-radius: 100px
}

.rounded-\[6\.25rem\] {
    border-radius: 6.25rem
}

.rounded-full {
    border-radius: 9999px
}

.rounded-none {
    border-radius: 0
}

header{
    position: fixed !important;
    height: 76px;
}

header > div{
    top: 50%;
    transform: translateY(-50%);
}

.border-2,
.border-\[2px\] {
    border-width: 2px
}

.border-b {
    border-bottom-width: 1px
}

.border-t {
    border-top-width: 1px
}

.border-none {
    border-style: none
}

.border-black {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0/var(--tw-border-opacity))
}

.border-c2 {
    --tw-border-opacity: 1;
    border-color: rgb(39 39 39/var(--tw-border-opacity))
}

.border-transparent {
    border-color: transparent
}

.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255/var(--tw-border-opacity))
}

.\ !bg-transparent {
    background-color: transparent !important
}

.bg-\[rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
    background-color: rgba(0, 0, 0, .2)
}

.bg-black {
    background-color: rgb(0 0 0/var(--tw-bg-opacity))
}

.bg-black,
.bg-c2 {
    --tw-bg-opacity: 1
}

.bg-c2 {
    background-color: rgb(39 39 39/var(--tw-bg-opacity))
}

.bg-c3 {
    background-color: rgb(170 170 170/var(--tw-bg-opacity))
}

.bg-c3,
.bg-c4 {
    --tw-bg-opacity: 1
}

.bg-c4 {
    background-color: rgb(143 143 143/var(--tw-bg-opacity))
}

.bg-transparent {
    background-color: transparent
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.bg-green {
    --tw-bg-opacity: 1;
    background-color: rgb(68 214 44/var(--tw-bg-opacity))
}

.bg-none {
    background-image: none
}

.\ !object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.px-0 {
    padding-left: 0;
    padding-right: 0
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem
}

.px-\[0rem\] {
    padding-left: 0;
    padding-right: 0
}

.px-\[1\.188rem\] {
    padding-left: 1.188rem;
    padding-right: 1.188rem
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.py-\[0\.781rem\] {
    padding-top: .781rem;
    padding-bottom: .781rem
}

.py-\[12\.875rem\] {
    padding-top: 12.875rem;
    padding-bottom: 12.875rem
}

.py-\[2rem\] {
    padding-top: calc(2rem + 76px);
    padding-bottom: 2rem
}

.py-\[3\.5rem\] {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem
}

.py-\[4\.5rem\] {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem
}

.py-\[5\.5rem\] {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem
}

.pb-0 {
    padding-bottom: 0
}

.pb-10 {
    padding-bottom: 2.5rem
}

.pb-12 {
    padding-bottom: 3rem
}

.pb-20 {
    padding-bottom: 5rem
}

.pb-3 {
    padding-bottom: .75rem
}

.pb-7 {
    padding-bottom: 1.75rem
}

.pb-\[1\.625rem\] {
    padding-bottom: 1.625rem
}

.pb-\[16rem\] {
    padding-bottom: 16rem
}

.pb-\[23px\] {
    padding-bottom: 23px
}

.pb-\[2rem\] {
    padding-bottom: 2rem
}

.pb-\[3\.5rem\] {
    padding-bottom: 3.5rem
}

.pb-\[34px\] {
    padding-bottom: 34px
}

.pb-\[7px\] {
    padding-bottom: 7px
}

.pt-10 {
    padding-top: 2.5rem
}

.pt-12 {
    padding-top: 3rem
}

.pt-14 {
    padding-top: 3.5rem
}

.pt-2 {
    padding-top: .5rem
}

.pt-20 {
    padding-top: 5rem
}

.pt-3 {
    padding-top: .75rem
}

.pt-5 {
    padding-top: 1.25rem
}

.pt-7 {
    padding-top: 1.75rem
}

.pt-8 {
    padding-top: 2rem
}

.pt-\[0\.075rem\] {
    padding-top: .075rem
}

.pt-\[0\.2rem\] {
    padding-top: .2rem
}

.pt-\[0\.688rem\] {
    padding-top: .688rem
}

.pt-\[2rem\] {
    padding-top: 2rem
}

.pt-\[3\.5rem\] {
    padding-top: 3.5rem
}

.pt-\[33px\] {
    padding-top: 33px
}

.pt-\[34px\] {
    padding-top: 34px
}

.pt-\[6px\] {
    padding-top: 6px
}

.text-center {
    text-align: center
}

.font-akzidenzGrotesk {
    font-family: var(--akzidenzGrotesk)
}

.font-springville {
    font-family: var(--springville)
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.font-bold {
    font-weight: 700
}

.font-light {
    font-weight: 300
}

.font-medium {
    font-weight: 500
}

.font-thin {
    font-weight: 100
}

.uppercase {
    text-transform: uppercase
}

.italic {
    font-style: italic
}

.leading-lg {
    line-height: 120%
}

.leading-none {
    line-height: 0
}

.text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity))
}

.text-c2 {
    color: rgb(39 39 39/var(--tw-text-opacity))
}

.text-c2,
.text-c3 {
    --tw-text-opacity: 1
}

.text-c3 {
    color: rgb(170 170 170/var(--tw-text-opacity))
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68/var(--tw-text-opacity))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.underline {
    text-decoration-line: underline
}

.decoration-\[1\.5px\] {
    text-decoration-thickness: 1.5px
}

.underline-offset-4 {
    text-underline-offset: 4px
}

.underline-offset-\[14\%\] {
    text-underline-offset: 14%
}

.opacity-0 {
    opacity: 0
}

.opacity-100 {
    opacity: 1
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color)
}

.shadow-lg,
.shadow-sm {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-sm {
    /*--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);*/
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color)
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter
}

.transition,
.transition-all {
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    transition-duration: 1.2s
}

html {
    -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px transparent
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body input:-webkit-autofill,
body input:-webkit-autofill:focus {
    -webkit-transition: background-color 600000s 0s, color 600000s 0s;
    transition: background-color 600000s 0s, color 600000s 0s
}

body input[data-autocompleted] {
    background-color: transparent !important
}

.hero_overlay {
    top: 0;
    height: 100%;
    z-index: 2
}

.hero_overlay,
.menu {
    position: absolute;
    left: 0;
    width: 100%
}

.menu {
    top: 52px;
    right: 0;
    height: 100dvh;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-out;
    z-index: 50;
    animation: .19, 1, .22, 1;
    transition-duration: .5s
}

.menu-open {
    opacity: 1;
    visibility: visible
}

.richtext p {
    min-height: .812rem
}

.richtext b>* {
    font-weight: 700 !important
}

.richtext ul {
    list-style-type: disc !important;
    padding-left: 2.5rem
}

.richtext ol {
    list-style-type: lower-roman !important;
    padding-left: 2.5rem
}

.text-image {
    display: inline-flex;
    align-items: center;
    overflow: hidden
}

.text-image div,
.text-image p,
.text-image span {
    line-height: 110%;
    font-size: 19.716384px
}

@media(min-width:414px)and (max-width:768px) {
    .text-image div,
    .text-image p,
    .text-image span {
        font-size: calc(19.716384px + 3.286064 * (100vw - 414px) / 354)
    }
}

@media(min-width:768px)and (max-width:1440px) {
    .text-image div,
    .text-image p,
    .text-image span {
        font-size: calc(23.002448px + 3.286064 * (100vw - 768px) / 672)
    }
}

@media(min-width:1440px)and (max-width:1920px) {
    .text-image div,
    .text-image p,
    .text-image span {
        font-size: calc(26.288512px + 3.286064 * (100vw - 1440px) / 480)
    }
}

@media(min-width:1920px)and (max-width:2560px) {
    .text-image div,
    .text-image p,
    .text-image span {
        font-size: calc(29.574576px + 1.643032 * (100vw - 1920px) / 640)
    }
}

@media(min-width:2560px)and (max-width:3840px) {
    .text-image div,
    .text-image p,
    .text-image span {
        font-size: calc(31.217608px + 1.643032 * (100vw - 2560px) / 1280)
    }
}

@media(min-width:3840px) {
    .text-image div,
    .text-image p,
    .text-image span {
        font-size: 32.86064px
    }
}

@media (min-width:768px) {
    .text-image div,
    .text-image p,
    .text-image span {
        line-height: 105%;
        font-size: 27.4530930816px
    }
    @media(min-width:414px)and (max-width:768px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: calc(27.4530930816px + 4.5755155136 * (100vw - 414px) / 354)
        }
    }
    @media(min-width:768px)and (max-width:1440px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: calc(32.0286085952px + 4.5755155136 * (100vw - 768px) / 672)
        }
    }
    @media(min-width:1440px)and (max-width:1920px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: calc(36.6041241088px + 4.5755155136 * (100vw - 1440px) / 480)
        }
    }
    @media(min-width:1920px)and (max-width:2560px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: calc(41.1796396224px + 2.2877577568 * (100vw - 1920px) / 640)
        }
    }
    @media(min-width:2560px)and (max-width:3840px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: calc(43.4673973792px + 2.2877577568 * (100vw - 2560px) / 1280)
        }
    }
    @media(min-width:3840px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: 45.755155136px
        }
    }
}

.text-image div,
.text-image p,
.text-image span {
    line-height: 120%;
    --tw-text-opacity: 1;
    color: rgb(170 170 170/var(--tw-text-opacity))
}

@media (min-width:768px) {
    .text-image div,
    .text-image p,
    .text-image span {
        font-size: 27.4530930816px;
        line-height: 90%
    }
    @media(min-width:414px)and (max-width:768px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: calc(27.4530930816px + 4.5755155136 * (100vw - 414px) / 354)
        }
    }
    @media(min-width:768px)and (max-width:1440px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: calc(32.0286085952px + 4.5755155136 * (100vw - 768px) / 672)
        }
    }
    @media(min-width:1440px)and (max-width:1920px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: calc(36.6041241088px + 4.5755155136 * (100vw - 1440px) / 480)
        }
    }
    @media(min-width:1920px)and (max-width:2560px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: calc(41.1796396224px + 2.2877577568 * (100vw - 1920px) / 640)
        }
    }
    @media(min-width:2560px)and (max-width:3840px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: calc(43.4673973792px + 2.2877577568 * (100vw - 2560px) / 1280)
        }
    }
    @media(min-width:3840px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: 45.755155136px
        }
    }
    @media (min-width:768px) {
        .text-image div,
        .text-image p,
        .text-image span {
            font-size: 38.2256868068px
        }
        @media(min-width:414px)and (max-width:768px) {
            .text-image div,
            .text-image p,
            .text-image span {
                font-size: calc(38.2256868068px + 6.3709478011 * (100vw - 414px) / 354)
            }
        }
        @media(min-width:768px)and (max-width:1440px) {
            .text-image div,
            .text-image p,
            .text-image span {
                font-size: calc(44.596634608px + 6.3709478011 * (100vw - 768px) / 672)
            }
        }
        @media(min-width:1440px)and (max-width:1920px) {
            .text-image div,
            .text-image p,
            .text-image span {
                font-size: calc(50.9675824091px + 6.3709478011 * (100vw - 1440px) / 480)
            }
        }
        @media(min-width:1920px)and (max-width:2560px) {
            .text-image div,
            .text-image p,
            .text-image span {
                font-size: calc(57.3385302102px + 3.1854739006 * (100vw - 1920px) / 640)
            }
        }
        @media(min-width:2560px)and (max-width:3840px) {
            .text-image div,
            .text-image p,
            .text-image span {
                font-size: calc(60.5240041108px + 3.1854739006 * (100vw - 2560px) / 1280)
            }
        }
        @media(min-width:3840px) {
            .text-image div,
            .text-image p,
            .text-image span {
                font-size: 63.7094780114px
            }
        }
    }
}

@media (min-width:1024px) {
    .text-image div,
    .text-image p,
    .text-image span {
        line-height: 100%
    }
}

.text-image img {
    height: 36px
}

@media (min-width:768px) {
    .text-image img {
        height: 50px
    }
}

@media (min-width:1024px) {
    .text-image img {
        height: 90px
    }
}

.text-image img {
    display: inline-block;
    margin: 0 10px;
    width: -moz-fit-content;
    width: fit-content;
    vertical-align: middle;
    padding-bottom: 8px;
    -o-object-fit: contain;
    object-fit: contain;
    transition: all .2s ease-in-out;
    transition-delay: .1s
}

.text-image img:hover {
    transform-origin: center center
}

@media (min-width:768px) {
    .text-image img:hover {
        transform: scale(1.6)
    }
}

@media (min-width:1440px) {
    .text-image img:hover {
        transform: scale(2.5)
    }
}

.news-richtext p {
    min-height: .812rem;
    font-size: 16.7088px;
    line-height: 120%
}

@media(min-width:414px)and (max-width:768px) {
    .news-richtext p {
        font-size: calc(16.7088px + 2.7848 * (100vw - 414px) / 354)
    }
}

@media(min-width:768px)and (max-width:1440px) {
    .news-richtext p {
        font-size: calc(19.4936px + 2.7848 * (100vw - 768px) / 672)
    }
}

@media(min-width:1440px)and (max-width:1920px) {
    .news-richtext p {
        font-size: calc(22.2784px + 2.7848 * (100vw - 1440px) / 480)
    }
}

@media(min-width:1920px)and (max-width:2560px) {
    .news-richtext p {
        font-size: calc(25.0632px + 1.3924 * (100vw - 1920px) / 640)
    }
}

@media(min-width:2560px)and (max-width:3840px) {
    .news-richtext p {
        font-size: calc(26.4556px + 1.3924 * (100vw - 2560px) / 1280)
    }
}

@media(min-width:3840px) {
    .news-richtext p {
        font-size: 27.848px
    }
}

.news-richtext b {
    font-weight: 500 !important
}

.news-richtext ul {
    list-style-type: disc !important;
    padding-left: 2.5rem
}

.news-richtext ol {
    list-style-type: lower-roman !important;
    padding-left: 2.5rem
}

.module {
    height: 36px;
    width: 80px
}

@media (min-width:768px) {
    .module {
        height: 50px;
        width: 100px
    }
}

@media (min-width:1024px) {
    .module {
        height: 90px;
        width: 145px
    }
}

.module {
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
    padding-bottom: 8px;
    -o-object-fit: contain;
    object-fit: contain;
    background-color: #364c5a;
    background-size: cover;
    transition: transform .2s ease-in-out;
    transition-delay: .1s;
    background-repeat: no-repeat;
    background-position: 50%
}

@media (min-width:768px) {
    .module {
        background-size: 319px 198px
    }
}

.module:hover {
    transform: scale(1);
    transform-origin: center center
}

@media (min-width:768px) {
    .module:hover {
        transform: scale(2.5)
    }
}

@media (min-width:1440px) {
    .module:hover {
        transform: scale(3.5)
    }
}

.rich-next-article>* {
    font-size: 16.7088px;
    line-height: 120%
}

@media(min-width:414px)and (max-width:768px) {
    .rich-next-article>* {
        font-size: calc(16.7088px + 2.7848 * (100vw - 414px) / 354)
    }
}

@media(min-width:768px)and (max-width:1440px) {
    .rich-next-article>* {
        font-size: calc(19.4936px + 2.7848 * (100vw - 768px) / 672)
    }
}

@media(min-width:1440px)and (max-width:1920px) {
    .rich-next-article>* {
        font-size: calc(22.2784px + 2.7848 * (100vw - 1440px) / 480)
    }
}

@media(min-width:1920px)and (max-width:2560px) {
    .rich-next-article>* {
        font-size: calc(25.0632px + 1.3924 * (100vw - 1920px) / 640)
    }
}

@media(min-width:2560px)and (max-width:3840px) {
    .rich-next-article>* {
        font-size: calc(26.4556px + 1.3924 * (100vw - 2560px) / 1280)
    }
}

@media(min-width:3840px) {
    .rich-next-article>* {
        font-size: 27.848px
    }
}

.rich-next-article>* {
    font-family: var(--springville);
    font-style: italic
}

p:empty:before {
    content: " ";
    white-space: pre
}

* {
/*    font-family: var(--springville), Arial, Helvetica, sans-serif;*/
    font-family: Times;
    font-weight: 400
}

@font-face {
  font-family: 'Kamerik105 bold';
  font-style: normal;
  font-weight: 400;
  src: url('../../../resources/font/Kamerik105Cyrillic-Bold.eot'); 
  src: url('../../../resources/font/Kamerik105Cyrillic-Bold.woff2') format('woff2'), 
      url('../../../resources/font/Kamerik105Cyrillic-Bold.woff') format('woff'), 
      url('../../../resources/font/Kamerik105Cyrillic-Bold.ttf') format('truetype'); 
}

@font-face {
  font-family: 'Kamerik105 standard';
  font-style: normal;
  font-weight: 100;
  src: url('../../../resources/font/Kamerik105Cyrillic-Book.eot'); 
  src: url('../../../resources/font/Kamerik105Cyrillic-Book.woff2') format('woff2'), 
      url('../../../resources/font/Kamerik105Cyrillic-Book.woff') format('woff'), 
      url('../../../resources/font/Kamerik105Cyrillic-Book.ttf') format('truetype'); 
}

.gap-3 div a{
    font-family: Arial, Helvetica, sans-serif;;
}

.kamerikTxt{
    font-family: 'Kamerik105 bold';
}

@font-face {
    font-family: swiper-icons;
    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");
    font-weight: 400;
    font-style: normal
}

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

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

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

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

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

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

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

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

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

.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,
.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 {
    transform-style: preserve-3d
}

.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 {
    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, .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-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

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

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

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

.swiper-vertical.swiper-css-mode>.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-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

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

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

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

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

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

.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-radius: 50%;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-top: 4px solid transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container: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
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size)/44*27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size)/2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
    display: none !important
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: normal;
    line-height: 1
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-lock {
    display: none
}

.content {
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: all .5s ease
}

.content.open {
    padding-bottom: 54px
}

@media (min-width:768px) {
    .content.open {
        padding-bottom: 52px;
        padding-top: 28px
    }
}

.underline-effect {
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-size: 0 2px;
    background-position: 0 100%;
    transition: background-size .3s ease 0s, left .3s ease 0s
}

.underline-effect:hover {
    background-size: 100% 2px
}

.underline-effect-black {
    background-image: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    background-size: 0 1px;
    background-position: 0 100%;
    transition: background-size .3s ease 0s, left .3s ease 0s
}

.underline-effect-black:hover {
    background-size: 100% 1px
}

.underline-effect-c5 {
    background-image: linear-gradient(#8f9c92, #8f9c92);
    background-repeat: no-repeat;
    background-size: 0 2px;
    background-position: 0 100%;
    transition: background-size .3s ease 0s, left .3s ease 0s
}

.underline-effect-c5:hover {
    background-size: 100% 2px
}

.underline-effect-black-reverse {
    background-image: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: 0 100%;
    transition: background-size .3s ease 0s, left .3s ease 0s
}

.masonry-layout {
    -moz-column-count: 1;
    column-count: 1;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    width: 100%
}

@media (min-width:768px) {
    .masonry-layout {
        -moz-column-count: 2;
        column-count: 2
    }
}

@media (min-width:1024px) {
    .masonry-layout {
        -moz-column-count: 3;
        column-count: 3
    }
}

.masonry-item {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-bottom: 1rem
}

.masonry-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: hsla(0, 0%, 56%, .81)
}

.react-player video {
    -o-object-fit: cover;
    object-fit: cover
}

.container {
    max-width: 1980px;
    margin-left: auto;
    margin-right: auto
}

@media (min-width:768px) {
    .md\:h3 {
        line-height: 105%;
        font-size: 19.716384px
    }
    @media(min-width:414px)and (max-width:768px) {
        .md\:h3 {
            font-size: calc(19.716384px + 3.286064 * (100vw - 414px) / 354)
        }
    }
    @media(min-width:768px)and (max-width:1440px) {
        .md\:h3 {
            font-size: calc(23.002448px + 3.286064 * (100vw - 768px) / 672)
        }
    }
    @media(min-width:1440px)and (max-width:1920px) {
        .md\:h3 {
            font-size: calc(26.288512px + 3.286064 * (100vw - 1440px) / 480)
        }
    }
    @media(min-width:1920px)and (max-width:2560px) {
        .md\:h3 {
            font-size: calc(29.574576px + 1.643032 * (100vw - 1920px) / 640)
        }
    }
    @media(min-width:2560px)and (max-width:3840px) {
        .md\:h3 {
            font-size: calc(31.217608px + 1.643032 * (100vw - 2560px) / 1280)
        }
    }
    @media(min-width:3840px) {
        .md\:h3 {
            font-size: 32.86064px
        }
    }
    @media (min-width:768px) {
        .md\:h3 {
            font-size: 23.26533312px
        }
        @media(min-width:414px)and (max-width:768px) {
            .md\:h3 {
                font-size: calc(23.26533312px + 3.87755552 * (100vw - 414px) / 354)
            }
        }
        @media(min-width:768px)and (max-width:1440px) {
            .md\:h3 {
                font-size: calc(27.14288864px + 3.87755552 * (100vw - 768px) / 672)
            }
        }
        @media(min-width:1440px)and (max-width:1920px) {
            .md\:h3 {
                font-size: calc(31.02044416px + 3.87755552 * (100vw - 1440px) / 480)
            }
        }
        @media(min-width:1920px)and (max-width:2560px) {
            .md\:h3 {
                font-size: calc(34.89799968px + 1.93877776 * (100vw - 1920px) / 640)
            }
        }
        @media(min-width:2560px)and (max-width:3840px) {
            .md\:h3 {
                font-size: calc(36.83677744px + 1.93877776 * (100vw - 2560px) / 1280)
            }
        }
        @media(min-width:3840px) {
            .md\:h3 {
                font-size: 38.7755552px
            }
        }
    }
    .md\:h5 {
        font-size: 16.7088px;
        line-height: 120%
    }
    @media(min-width:414px)and (max-width:768px) {
        .md\:h5 {
            font-size: calc(16.7088px + 2.7848 * (100vw - 414px) / 354)
        }
    }
    @media(min-width:768px)and (max-width:1440px) {
        .md\:h5 {
            font-size: calc(19.4936px + 2.7848 * (100vw - 768px) / 672)
        }
    }
    @media(min-width:1440px)and (max-width:1920px) {
        .md\:h5 {
            font-size: calc(22.2784px + 2.7848 * (100vw - 1440px) / 480)
        }
    }
    @media(min-width:1920px)and (max-width:2560px) {
        .md\:h5 {
            font-size: calc(25.0632px + 1.3924 * (100vw - 1920px) / 640)
        }
    }
    @media(min-width:2560px)and (max-width:3840px) {
        .md\:h5 {
            font-size: calc(26.4556px + 1.3924 * (100vw - 2560px) / 1280)
        }
    }
    @media(min-width:3840px) {
        .md\:h5 {
            font-size: 27.848px
        }
    }
}

.first-letter\:capitalize:first-letter {
    text-transform: capitalize
}

.hover\:border-c2:hover {
    --tw-border-opacity: 1;
    border-color: rgb(39 39 39/var(--tw-border-opacity))
}

.hover\:border-c4:hover {
    --tw-border-opacity: 1;
    border-color: rgb(143 143 143/var(--tw-border-opacity))
}

.hover\:border-white:hover {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255/var(--tw-border-opacity))
}

.hover\:bg-c2:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(39 39 39/var(--tw-bg-opacity))
}

.hover\:bg-white:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.hover\:text-c2:hover {
    --tw-text-opacity: 1;
    color: rgb(39 39 39/var(--tw-text-opacity))
}

.hover\:text-c4:hover {
    --tw-text-opacity: 1;
    color: rgb(143 143 143/var(--tw-text-opacity))
}

.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.hover\:underline:hover {
    text-decoration-line: underline
}

.hover\:no-underline:hover {
    text-decoration-line: none
}

.hover\:opacity-85:hover {
    opacity: .85
}

.group:hover .group-hover\:flex {
    display: flex
}

.group:hover .group-hover\:underline {
    text-decoration-line: underline
}

@media (min-width:768px) {
    .md\:right-10 {
        right: 2.5rem
    }
    .md\:col-span-10 {
        grid-column: span 10/span 10
    }
    .md\:col-span-2 {
        grid-column: span 2/span 2
    }
    .md\:col-span-3 {
        grid-column: span 3/span 3
    }
    .md\:col-span-6 {
        grid-column: span 6/span 6
    }
    .md\:col-start-2 {
        grid-column-start: 2
    }
    .md\:mb-0 {
        margin-bottom: 0
    }
    .md\:mb-7 {
        margin-bottom: 1.75rem
    }
    .md\:mb-\[92px\] {
        margin-bottom: 92px
    }
    .md\:mt-0 {
        margin-top: 0
    }
    .md\:mt-11 {
        margin-top: 2.75rem
    }
    .md\:mt-\[19px\] {
        margin-top: 19px
    }
    .md\:mt-\[71px\] {
        margin-top: 71px
    }
    .md\:mt-\[98px\] {
        margin-top: 98px
    }
    .md\:flex {
        display: flex
    }
    .md\:hidden {
        display: none
    }
    .md\:h-\[6\.25rem\] {
        height: 6.25rem
    }
    .md\:min-h-\[46rem\] {
        min-height: 46rem
    }
    .md\:w-\[550px\] {
        width: 550px
    }
    .md\:w-\[6\.25rem\] {
        width: 6.25rem
    }
    .md\:w-\[84\.89vw\] {
        width: 84.89vw
    }
    .md\:w-auto {
        width: auto
    }
    .md\:translate-x-0 {
        --tw-translate-x: 0px;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
    }
    .md\:flex-row {
        flex-direction: row
    }
    .md\:items-end {
        align-items: flex-end
    }
    .md\:gap-12 {
        gap: 3rem
    }
    .md\:gap-7 {
        gap: 1.75rem
    }
    .md\:gap-8 {
        gap: 2rem
    }
    .md\:gap-\[110px\] {
        gap: 110px
    }
    .md\:gap-\[25px\] {
        gap: 25px
    }
    .md\:gap-x-8 {
        -moz-column-gap: 2rem;
        column-gap: 2rem
    }
    .md\:gap-x-\[25px\] {
        -moz-column-gap: 25px;
        column-gap: 25px
    }
    .md\:gap-y-16 {
        row-gap: 4rem
    }
    .md\:gap-y-9 {
        row-gap: 2.25rem
    }
    .md\:gap-y-\[72px\] {
        row-gap: 72px
    }
    .md\:space-y-12>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(3rem * var(--tw-space-y-reverse))
    }
    .md\:space-y-14>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(3.5rem * var(--tw-space-y-reverse))
    }
    .md\:px-\[1\.5rem\] {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
    .md\:px-\[1rem\] {
        padding-left: 1rem;
        padding-right: 1rem
    }
    .md\:px-\[2\.5rem\] {
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }
    .md\:px-\[2rem\] {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .md\:px-\[3\.5rem\] {
        padding-left: 3.5rem;
        padding-right: 3.5rem
    }
    .md\:px-\[3rem\] {
        padding-left: 3rem;
        padding-right: 3rem
    }
    .md\:px-\[4\.5rem\] {
        padding-left: 4.5rem;
        padding-right: 4.5rem
    }
    .md\:px-\[4rem\] {
        padding-left: 4rem;
        padding-right: 4rem
    }
    .md\:px-\[5rem\] {
        padding-left: 5rem;
        padding-right: 5rem
    }
    .md\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
    .md\:py-\[16rem\] {
        padding-top: 16rem;
        padding-bottom: 16rem
    }
    .md\:py-\[3rem\] {
        padding-top: calc(3rem + 76px);
        padding-bottom: 3rem
    }
    .md\:py-\[4\.5rem\] {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem
    }
    .md\:py-\[5\.5rem\] {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem
    }
    .md\:py-\[6\.5rem\] {
        padding-top: 6.5rem;
        padding-bottom: 6.5rem
    }
    .md\:pb-28 {
        padding-bottom: 7rem
    }
    .md\:pb-\[3rem\] {
        padding-bottom: 3rem
    }
    .md\:pb-\[4\.5rem\] {
        padding-bottom: 4.5rem
    }
    .md\:pt-28 {
        padding-top: 7rem
    }
    .md\:pt-\[3rem\] {
        padding-top: 3rem
    }
    .md\:pt-\[4\.5rem\] {
        padding-top: 4.5rem
    }
}

@media (min-width:1024px) {
    .lg\:sticky {
        position: sticky
    }
    .lg\:right-10 {
        right: 2.5rem
    }
    .lg\:top-10 {
        top: 2.5rem
    }
    .lg\:order-none {
        order: 0
    }
    .lg\:col-span-1 {
        grid-column: span 1/span 1
    }
    .lg\:col-span-10 {
        grid-column: span 10/span 10
    }
    .lg\:col-span-2 {
        grid-column: span 2/span 2
    }
    .lg\:col-span-4 {
        grid-column: span 4/span 4
    }
    .lg\:col-span-5 {
        grid-column: span 5/span 5
    }
    .lg\:col-span-6 {
        grid-column: span 6/span 6
    }
    .lg\:col-span-7 {
        grid-column: span 7/span 7
    }
    .lg\:col-span-8 {
        grid-column: span 8/span 8
    }
    .lg\:col-start-2 {
        grid-column-start: 2
    }
    .lg\:col-start-3 {
        grid-column-start: 3
    }
    .lg\:col-start-7 {
        grid-column-start: 7
    }
    .lg\:mb-1 {
        margin-bottom: .25rem
    }
    .lg\:mt-0 {
        margin-top: 0
    }
    .lg\:h-full {
        height: 100%
    }
    .lg\:w-4\/5 {
        width: 80%
    }
    .lg\:w-\[30\%\] {
        width: 30%
    }
    .lg\:w-\[85\.71\%\] {
        width: 85.71%
    }
    .lg\:w-\[95\%\] {
        width: 95%
    }
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    .lg\:gap-16 {
        gap: 4rem
    }
    .lg\:gap-x-\[25px\] {
        -moz-column-gap: 25px;
        column-gap: 25px
    }
    .lg\:gap-y-\[122px\] {
        row-gap: 122px
    }
    .lg\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }
    .lg\:px-\[1\.5rem\] {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
    .lg\:px-\[2\.5rem\] {
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }
    .lg\:px-\[2rem\] {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .lg\:px-\[3\.5rem\] {
        padding-left: 3.5rem;
        padding-right: 3.5rem
    }
    .lg\:px-\[3rem\] {
        padding-left: 3rem;
        padding-right: 3rem
    }
    .lg\:px-\[4\.5rem\] {
        padding-left: 4.5rem;
        padding-right: 4.5rem
    }
    .lg\:px-\[4rem\] {
        padding-left: 4rem;
        padding-right: 4rem
    }
    .lg\:px-\[5rem\] {
        padding-left: 5rem;
        padding-right: 5rem
    }
    .lg\:px-\[6rem\] {
        padding-left: 6rem;
        padding-right: 6rem
    }
    .lg\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem
    }
    .lg\:py-40 {
        padding-top: 10rem;
        padding-bottom: 10rem
    }
    .lg\:py-\[17\.25rem\] {
        padding-top: 17.25rem;
        padding-bottom: 17.25rem
    }
    .lg\:py-\[4rem\] {
        padding-top: calc(4rem + 76px);
        padding-bottom: 4rem
    }
    .lg\:py-\[5\.5rem\] {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem
    }
    .lg\:py-\[6\.5rem\] {
        padding-top: 6.5rem;
        padding-bottom: 6.5rem
    }
    .lg\:py-\[7\.5rem\] {
        padding-top: 7.5rem;
        padding-bottom: 7.5rem
    }
    .lg\:pb-0 {
        padding-bottom: 0
    }
    .lg\:pb-20 {
        padding-bottom: 5rem
    }
    .lg\:pb-3 {
        padding-bottom: .75rem
    }
    .lg\:pb-\[150px\] {
        padding-bottom: 150px
    }
    .lg\:pb-\[4rem\] {
        padding-bottom: 4rem
    }
    .lg\:pb-\[5\.5rem\] {
        padding-bottom: 5.5rem
    }
    .lg\:pt-0 {
        padding-top: 0
    }
    .lg\:pt-\[0\.688rem\] {
        padding-top: .688rem
    }
    .lg\:pt-\[118px\] {
        padding-top: 118px
    }
    .lg\:pt-\[192px\] {
        padding-top: 192px
    }
    .lg\:pt-\[4rem\] {
        padding-top: 4rem
    }
    .lg\:pt-\[5\.5rem\] {
        padding-top: 5.5rem
    }
    .lg\:opacity-0 {
        opacity: 0
    }
    .group:hover .lg\:group-hover\:opacity-100,
    .lg\:opacity-100 {
        opacity: 1
    }
}

@media (min-width:1440px) {
    .xl\:col-span-3 {
        grid-column: span 3/span 3
    }
    .xl\:col-span-8 {
        grid-column: span 8/span 8
    }
    .xl\:col-start-3 {
        grid-column-start: 3
    }
    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
    .xl\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem
    }
}

@media (min-width:1920px) {
    .xxl\:w-\[250px\] {
        width: 250px
    }
}

@font-face {
    font-family: __akzidenzGrotesk_d86c6e;
    src: url(/_next/static/media/d4679bfc334528fe-s.p.woff2) format("woff2");
    font-display: swap;
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: __akzidenzGrotesk_d86c6e;
    src: url(/_next/static/media/8327ea7fc6bb445b-s.p.woff2) format("woff2");
    font-display: swap;
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: __akzidenzGrotesk_d86c6e;
    src: url(/_next/static/media/e12d5c63a0c9d726-s.p.woff2) format("woff2");
    font-display: swap;
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: __akzidenzGrotesk_d86c6e;
    src: url(/_next/static/media/42087c0c02fcc392-s.p.woff2) format("woff2");
    font-display: swap;
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: __akzidenzGrotesk_Fallback_d86c6e;
    src: local("Arial");
    ascent-override: 99.34%;
    descent-override: 24.55%;
    line-gap-override: 0.00%;
    size-adjust: 94.92%
}

.__className_d86c6e {
    font-family: __akzidenzGrotesk_d86c6e, __akzidenzGrotesk_Fallback_d86c6e
}

/*.__variable_d86c6e {
    --akzidenzGrotesk: "__akzidenzGrotesk_d86c6e", "__akzidenzGrotesk_Fallback_d86c6e"
}*/

@font-face {
    font-family: __springville_4aca46;
    src: url(/_next/static/media/f7d4d97fce546bda-s.p.otf) format("opentype");
    font-display: swap;
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: __springville_4aca46;
    src: url(/_next/static/media/8999989c0a7c9818-s.p.otf) format("opentype");
    font-display: swap;
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: __springville_Fallback_4aca46;
    src: local("Arial");
    ascent-override: 87.02%;
    descent-override: 19.53%;
    line-gap-override: 0.00%;
    size-adjust: 112.62%
}

.__className_4aca46 {
    font-family: __springville_4aca46, __springville_Fallback_4aca46
}

/*.__variable_4aca46 {
    --springville: "__springville_4aca46", "__springville_Fallback_4aca46"
}*/

.navbar__menu{
    display: none;
}

.looketus_img_div{
    display: flex;
    height: calc(100% - 100px);
}

.looketus_img_area{
    width: 100%;
    display: inline-flex;
    gap: 15px;
}

.looketus_img_area{
    margin-top: 20px;
}

.looketus_img_area img{
    width: 25%;
    height: 100%;
}

.looketus_addr_area{
    display: block;
    clear: both;
    text-align: right;
    margin-top: 5px;
    margin-bottom: 42px;
    display: inline-flex;
    position: relative;
    width: 443px;
}

.looketus_addr_area a{
    position: absolute;
    top: 0;
    left:-5%;
}

.looketus_addr{
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

@media (max-width:768px) {
    .roster__main{
        padding-top: 90px !important;
    }

    .roster__grid{
        margin-bottom: 0 !important;
    }

    .roster-grid{
        display: flex !important;
        flex-direction: column;
    }

    .w-\[10vw\]{
        width: 30%;
    }


    .navbar {
        --header-color: black;
        --bg-color: none;
        --border-opacity: 0;
        height: 64px;
        background: none;
        color: black;

        --closed-nav-height: var(--header-height);
        --open-nav-height: 300px;
        display: flex;
        font-family: var(--font-family-primary);
        font-size: var(--font-size-lg);
        font-style: normal;
        font-weight: var(--font-weight-regular);
        height: var(--closed-nav-height);
        justify-content: space-between;
        letter-spacing: var(--letter-spacing-lg);
        line-height: var(--line-height-lg);
        padding: var(--spacing-md);
        position: fixed;
        text-transform: none;
        top: 0;
        /*transition: background-color .2s ease-in,color .2s ease-in;*/
        width: 100%;
        z-index: 3;
    }

    header.on{
        background-color: white;
        opacity: 1;
    }

    .navbar.on{
        --header-color: black;
        --bg-color: none;
        --border-opacity: 1;
        height: 300px;
        background: white;
        color: black;

        --closed-nav-height: var(--header-height);
        --open-nav-height: 300px;
        display: flex;
        font-family: var(--font-family-primary);
        font-size: var(--font-size-lg);
        font-style: normal;
        font-weight: var(--font-weight-regular);
        height: var(--closed-nav-height);
        justify-content: space-between;
        letter-spacing: var(--letter-spacing-lg);
        line-height: var(--line-height-lg);
        padding: var(--spacing-md);
        position: fixed;
        text-transform: none;
        top: 0;
        /*transition: background-color .2s ease-in,color .2s ease-in;*/
        width: 100%;
        z-index: 3;
    }

    .navbar__menu{
        display: ;
        align-items: center;
        display: flex !important;
        margin-left: auto;
        height: 300px;
        background: white;
        color: black;
        opacity: 1 !important;
    }

    .menu-button{
        height: 64px;
        padding: 20px;
        position: fixed;
        right: 0;
        /*top: 0;*/
    }

    .menu-button__container{
        height: 1.2rem;
        width: 1.2rem;
    }

    .header-menu{
        display: none;
        opacity: 0;
        visibility: inherit;
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
        margin-left: auto;
        margin-top: 40px;
        position: relative;
        transition: background-color .2s ease-in,color .2s ease-in;
    }

    .header-menu.on{
        display: flex;
        opacity: 1;
        position: fixed;
        width: 100%;
        background: white;
        left: 0;
        top: 140px;
        height: 130px;
        padding-right: 20px;
        
    }

    .header-menu__list{
        gap: 10px;
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .header-menu__item{
        position: relative;
        text-align: right;
    }

    .looketus_img_div{
        display: block;
        height: calc(100% - 100px);
    }

    .content_area{
        padding-top: 40px;
    }

    .looketus_img_area{
        margin: 0 0 20px 0;
    }

    .looketus_addr{

    }

    /*.looketus_img_area img{
        width: 100%;
        height: 100%;
    }*/

    .looketus_addr_area{
        display: block;
        clear: both;
        text-align: right;
        margin-top: 5px;
        margin-bottom: 42px;
        display: inline-flex;
        position: relative;
        width: 300px;
    }

    .looketus_addr_area a{
        position: absolute;
        top: 1px;
        left: -10px;
    }

    body{
        background-size: auto !important;
        -ms-overflow-style: none !important;
        overflow-style: none !important;
    }
 
    body::-webkit-scrollbar {
      display: none;
    }

    .asset--image img.personal_img{
        margin-top: 0;
    }

    .asset--image img{
        margin-top: 0;
    }

    article.block-index__card div{
        align-items: start !important;
        width: 100%;
        height: 100%;
    }

    .block-index{
        left: 0 !important;
    }

    .mainLogoArea{
        bottom: 80px;
    }

    .asset--image img.full_size_image.personal_img{
        position: relative;
        height: 100%;
    }

    .block-index__caption.full_image_caption{
        display: block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        color: #000;
        bottom: 0;
    }

    .block-index__caption{
        text-align: center;
    }

    .full_size_image.personal_img{
        position: relative;
    }

    .center_img{
        left: 0 !important;
        transform: translateX(0) !important;
    }


}









