:root {
    --primary: #ccfd98;
    --secondary: #090915;
    --tertiary: #fefcf4;
    --quaternary: #9eabaf;
    --text: #090915;
    --accent: #090915;
    --hover: #ccfd98;
    --white: #ffffff;
    --black: #000000;
    --gray: #727d86;
    --gray-light: #f2f4f4;
    --gray-dark: #333333;
    --green: #00c100;
    --red: #ef343b;
    --font-family: "Google Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-title: "PP Neue Machina Inktrap", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-size-html: 10px;
    --font-weight: 400;
    --font-size-small: 1.4rem;
    --font-size: 1.8rem;
    --font-size-large: 2.4rem;
    --font-size-xlarge: 3.2rem;
    --font-size-xxlarge: min(9.4rem, 5.875dvw);
    --font-size-xxxlarge: min(10.8rem, 6.75dvw);
    --line-height: 1.34;
    --line-height-normal: 1.2;
    --line-height-heading: 1.136;
    --letter-spacing: -0.22em;
    --container: 144rem;
    --container-title: 74.6rem;
    --gap: 4.2rem;
    --border-radius: 0.5rem;
    --border-width: 1px;
    --border-width-bold: 2px;
    --duration: 0.25s;
    --function: cubic-bezier(0.4, 0, 0.2, 1);
    --overlay: rgba(0, 0, 0, 0.8);
    --shadow: 0 2px 6px -2px rgba(22, 22, 19, 0.1);
    --z-index-navigation: 300;
    --z-index-modal: 401;
    --z-index-overlay: 400;
    --section-padding: 6rem;
}
@media (max-width: 1024px) {
    :root {
        --font-size: 1.6rem;
        --font-size-large: 1.8rem;
        --font-size-xlarge: 2.4rem;
        --font-size-xxlarge: 3.2rem;
        --font-size-xxxlarge: 3.2rem;
        --container-title: 100%;
    }
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    height: 100%;
    font-size: var(--font-size-html);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}
body {
    margin: 0;
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    line-height: var(--line-height);
    color: var(--text);
    text-align: left;
    background-color: var(--quaternary);
    height: 100%;
}
:focus {
    outline: none;
}
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}
dt {
    font-weight: 700;
}
dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}
blockquote {
    margin: 0 0 1rem;
}
b,
strong {
    font-weight: bold;
}
small {
    font-size: 80%;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
a {
    color: var(--accent);
    text-decoration: none;
    background-color: transparent;
    -webkit-transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    will-change: color, background-color, border-color;
}
a:hover {
    color: var(--hover);
}
a.underline {
    text-decoration: underline;
}
code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}
pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}
table {
    border-collapse: collapse;
}
caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: var(--gray-dark);
    text-align: left;
    caption-side: bottom;
}
th {
    text-align: inherit;
}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
}
button {
    border-radius: 0;
}
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
select {
    word-wrap: normal;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
    -webkit-appearance: listbox;
}
textarea {
    overflow: auto;
    resize: vertical;
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}
output {
    display: inline-block;
}
summary {
    display: list-item;
    cursor: pointer;
}
template {
    display: none;
}
.hidden,
[hidden] {
    display: none !important;
}
img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    border-style: none;
}
.map-canvas img {
    max-width: none;
}
figure {
    margin: 0 0 1rem;
}
svg {
    overflow: hidden;
    display: block;
}
.overflow-hidden {
    overflow: hidden;
    display: block;
}
.nowrap {
    white-space: nowrap;
}
.wysiwyg a {
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    hyphens: auto;
}
@font-face {
    font-family: "PP Neue Machina Inktrap";
    src: url("../fonts/PPNeueMachina-InktrapRegular.woff2") format("woff2"), url("../fonts/PPNeueMachina-InktrapRegular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Google Sans";
    src: url("../fonts/GoogleSans-Bold.woff2") format("woff2"), url("../fonts/GoogleSans-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Google Sans";
    src: url("../fonts/GoogleSans-Regular.woff2") format("woff2"), url("../fonts/GoogleSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Google Sans";
    src: url("../fonts/GoogleSans-Medium.woff2") format("woff2"), url("../fonts/GoogleSans-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
.main-site {
    min-height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.container {
    padding-left: var(--gap);
    padding-right: var(--gap);
    margin-left: auto;
    margin-right: auto;
}
.container-fixed {
    max-width: 134.4rem;
}
.title {
    font-family: var(--font-title);
    font-size: var(--font-size-xxlarge);
    line-height: var(--line-height-heading);
    letter-spacing: -0.02em;
}
.title-small {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.title-lg {
    font-size: var(--font-size-large);
    line-height: 1.25;
}
.title-xl {
    font-size: var(--font-size-xlarge);
    line-height: 1.25;
}
.title-xxxl {
    font-size: var(--font-size-xxxlarge);
    line-height: 1;
}
.title * {
    font-size: 100%;
    margin: 0;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
}
.pin {
    color: var(--primary);
    font-size: 1.455rem;
    line-height: 1.34;
    font-weight: normal;
    letter-spacing: 0.02em;
    position: absolute;
    white-space: nowrap;
}
.pin svg {
    position: absolute;
    right: 0;
    bottom: -1.6rem;
}
.opacity-10 {
    opacity: 0.1;
}
.opacity-40 {
    opacity: 0.4;
}
.background {
    overflow: hidden;
    inset: 0;
    position: absolute;
}
.background.animated img {
    -webkit-animation-duration: 26s;
    animation-duration: 26s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.background img,
.background video {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@-webkit-keyframes zoomIn {
    0%,
    to {
        scale: 1;
    }
    50% {
        scale: 1.2;
    }
}
@keyframes zoomIn {
    0%,
    to {
        scale: 1;
    }
    50% {
        scale: 1.2;
    }
}
.photo {
    display: block;
    position: relative;
    color: var(--white);
    font-family: var(--font-family);
}
.photo a {
    color: inherit;
}
.photo-label {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.photo img {
    display: block;
    width: 100%;
    height: auto;
}
.photo figcaption {
    letter-spacing: 0.01em;
    position: absolute;
    left: 2.4rem;
    bottom: 2.4rem;
    right: 2.4rem;
    max-width: 22.4rem;
    font-size: var(--font-size);
}
.photo-decoration-1 {
    position: absolute;
    top: 3.2rem;
    right: 3.2rem;
    width: 8rem;
}
.photo-decoration-2 {
    position: absolute;
    top: 2.4rem;
    right: 2.4rem;
    left: 2.4rem;
    width: 8rem;
}
.photo-decoration-3 {
    position: absolute;
    bottom: 2.4rem;
    right: 2.4rem;
    width: 5.2rem;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.description {
    letter-spacing: -0.02em;
}
.description p {
    margin: 0;
}
.description p + p {
    margin-top: 2.4rem;
}
.color-primary {
    color: var(--primary);
}
.background-light {
    background-color: var(--tertiary);
}
button.swiper-button-next,
button.swiper-button-prev {
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    padding: 0;
    width: 4rem;
    height: 4rem;
    margin: 0;
    left: 0;
    top: 0;
    -webkit-transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    will-change: color, background-color, border-color;
    color: var(--white);
}
button.swiper-button-next:after,
button.swiper-button-next:before,
button.swiper-button-prev:after,
button.swiper-button-prev:before {
    display: none;
}
button.swiper-button-next:hover,
button.swiper-button-prev:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}
button.swiper-button-next svg,
button.swiper-button-prev svg {
    position: absolute;
    left: 48%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(180deg);
    transform: translate3d(-50%, -50%, 0) rotate(180deg);
}
button.swiper-button-next.swiper-button-disabled,
button.swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    color: var(--secondary);
    border-color: var(--secondary);
    background-color: transparent;
}
button.swiper-button-next.swiper-button-disabled.swiper-button-light,
button.swiper-button-prev.swiper-button-disabled.swiper-button-light {
    color: var(--white);
    border-color: var(--white);
}
button.swiper-button-ghost {
    border-color: var(--secondary);
}
button.swiper-button-ghost:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
button.swiper-button-next {
    margin-left: 4.4rem;
}
button.swiper-button-next svg {
    left: 52%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
/*Slider grey background*/
.slider-grey-background button.swiper-button-next,
.slider-grey-background button.swiper-button-prev {
    color: var(--primary);
}
.slider-grey-background button.swiper-button-next:hover,
.slider-grey-background button.swiper-button-prev:hover {
    color: var(--secondary);
}
.slider-grey-background button.swiper-button-next.swiper-button-disabled,
.slider-grey-background button.swiper-button-prev.swiper-button-disabled {
    color: var(--secondary);
}
/*Slider black background*/
.slider-black-background button.swiper-button-next,
.slider-black-background button.swiper-button-prev {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--secondary);
}
.slider-black-background button.swiper-button-next:hover,
.slider-black-background button.swiper-button-prev:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--secondary);
}
.slider-black-background button.swiper-button-next.swiper-button-disabled,
.slider-black-background button.swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}
.more {
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 1.8rem;
}
.more-link {
    color: var(--primary);
}
.more-link:hover {
    color: var(--white);
}
.template-single {
    background-image: url("../upload/decoration-1-tr.png");
    background-position: 0 10%;
    background-size: 100% auto;
}
.template-single .footer-intro {
    display: none;
}
.inline-block {
    display: inline-block;
}
.fade-in-left {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    -webkit-filter: blur(10px);
    filter: blur(10px);
}
.fade-in-right {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-filter: blur(10px);
    filter: blur(10px);
}
.fade-in {
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}
.zoom-in-bg img {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}
.zoom-out-bg img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
@media (max-width: 1024px) {
    :root {
        --gap: 3rem;
    }
    .pin {
        display: none;
    }
    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 1 !important;
        -webkit-filter: none !important;
        filter: none !important;
        -webkit-transform: none !important;
        transform: none !important;
    }
    .zoom-in-bg img {
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none !important;
    }
    .zoom-out-bg img {
        -webkit-transform: none !important;
        transform: none !important;
    }
    .photo-decoration-3 {
        width: 3.2rem;
    }
}
.error {
    color: var(--red) !important;
    border-color: var(--red) !important;
}
.success {
    color: var(--green) !important;
    border-color: var(--green) !important;
}
.disabled {
    opacity: 0.3 !important;
    color: var(--gray) !important;
    border-color: var(--gray) !important;
    cursor: default !important;
}
input.input-text,
select.select,
textarea.textarea {
    background: transparent;
    border: 0;
    color: var(--text);
    border-bottom: 1px solid #7e838e;
    padding: 0 0 0.6rem;
    height: 5.8rem;
    width: 100%;
    border-radius: 0;
    font-size: 2.4rem;
    -webkit-transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    will-change: color, background-color, border-color;
}
input.input-text::-webkit-input-placeholder,
select.select::-webkit-input-placeholder,
textarea.textarea::-webkit-input-placeholder {
    color: rgba(111, 109, 122, 0.3);
}
input.input-text::-moz-placeholder,
select.select::-moz-placeholder,
textarea.textarea::-moz-placeholder {
    color: rgba(111, 109, 122, 0.3);
}
input.input-text:-ms-input-placeholder,
select.select:-ms-input-placeholder,
textarea.textarea:-ms-input-placeholder {
    color: rgba(111, 109, 122, 0.3);
}
input.input-text::-ms-input-placeholder,
select.select::-ms-input-placeholder,
textarea.textarea::-ms-input-placeholder {
    color: rgba(111, 109, 122, 0.3);
}
input.input-text::placeholder,
select.select::placeholder,
textarea.textarea::placeholder {
    color: rgba(111, 109, 122, 0.3);
}
label.input-label {
    margin: 0;
    display: block;
    font-size: 1.8rem;
}
textarea.textarea {
    resize: none;
    font-family: var(--font-family);
    overflow: auto;
    height: auto;
}
select.select {
    width: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    height: auto;
    border: 0;
    padding: 0 3.2rem 0 0;
    background: transparent url("../images/select.svg") no-repeat 100% 50%;
}
select.select::-ms-expand {
    display: none;
}
.checkbox,
.radio {
    display: block;
}
.checkbox input,
.radio input {
    display: none;
}
.checkbox input:disabled + label,
.radio input:disabled + label {
    opacity: 0.3;
}
.checkbox label,
.radio label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.buttons {
    margin-top: 3.2rem;
}
a.button,
button.button,
input.button,
span.button {
    border: 1px solid var(--primary);
    border-radius: 2px;
    font-size: var(--font-size);
    line-height: var(--line-height-heading);
    background-color: var(--primary);
    padding: 1.3rem 2.4rem;
    vertical-align: top;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    -webkit-transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    will-change: color, background-color, border-color;
}
a.button-arrow,
button.button-arrow,
input.button-arrow,
span.button-arrow {
    padding-left: 3.5rem;
    background-image: url("../images/button.svg");
    background-repeat: no-repeat;
    background-position: 1.5rem 50%;
}
a.button:hover,
button.button:hover,
input.button:hover,
span.button:hover {
    background-color: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}
a.button-ghost,
button.button-ghost,
input.button-ghost,
span.button-ghost {
    background-color: transparent;
    border-color: rgba(126, 137, 140, 0.2);
}
a.button-ghost:hover,
button.button-ghost:hover,
input.button-ghost:hover,
span.button-ghost:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
a.button-ghost.button-arrow,
button.button-ghost.button-arrow,
input.button-ghost.button-arrow,
span.button-ghost.button-arrow {
    padding-left: 2.4rem;
    padding-right: 3.5rem;
    background-position: calc(100% - 1.5rem) 50%;
}
a.button-ghost.button-back,
button.button-ghost.button-back,
input.button-ghost.button-back,
span.button-ghost.button-back {
    font-size: 1.4rem;
    background-image: url("../images/button-back.svg");
    padding: 1.1rem 1.8rem 1.1rem 3.8rem;
    background-repeat: no-repeat;
    background-position: 0.8rem 50%;
}
.link-arrow,
input.button-send {
    display: inline-block;
    white-space: nowrap;
    padding: 0 0 0 10.5rem;
    border: 0;
    height: 9.6rem;
    line-height: 9.6rem;
    background: transparent url("../images/send.svg") no-repeat 0 50%;
}
.form p {
    margin: 1.7rem 0 0;
}
@media (max-width: 1024px) {
    .link-arrow,
    input.button-send {
        padding-left: 6rem;
        height: 5rem;
        line-height: 5rem;
        background-size: 4rem;
    }
    input.input-text,
    select.select,
    textarea.textarea {
        height: 4.8rem;
        font-size: 1.6rem;
    }
}
.header-site {
    top: 0;
    left: 0;
    right: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%;
    position: fixed;
    z-index: var(--z-index-navigation);
}
.header-logo {
    width: 10.7rem;
    position: absolute;
    left: var(--gap);
    top: var(--gap);
}
.header-logo img,
.header-logo svg,
.header-logo-link {
    display: block;
}
.header-logo-link {
    color: var(--secondary);
}
.header-logo-link:hover {
    color: var(--secondary);
}
.header-navigation {
    position: absolute;
    right: var(--gap);
    top: calc(var(--gap) + 2.4rem);
}
.menu {
    list-style: none;
    margin: 0;
    padding: 0 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 2;
    background: rgba(0, 1, 44, 0.20);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.menu > li:hover > ul {
    display: block;
}
.menu > li:hover > a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
    text-decoration-color: var(--primary);
}
.menu > li > a {
    display: block;
    color: var(--white);
}
.menu > li > ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
}
@media (max-width: 1024px) {
    .header-logo {
        width: 6rem;
        left: 0;
        top: 0;
    }
    .header-logo svg {
        width: 100%;
        height: auto;
    }
    .header-navigation {
        position: absolute;
        right: 0;
        top: 0;
        left: 6rem;
    }
    .menu {
        width: 100%;
        padding-top: 1.7rem;
        padding-left: 0;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        height: 5.8rem;
    }
}
.footer-site {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%;
    position: relative;
    padding-bottom: 2.4rem;
    padding-top: 2.4rem;
}
.footer-logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18.2%;
    flex: 0 0 18.2%;
    max-width: 18.2%;
}
.footer-logo-link {
    max-width: 17.1rem;
    display: block;
}
.footer-logo svg {
    display: block;
    width: 100%;
    height: auto;
}
.footer-columns {
    padding: 7.2rem 5.8rem 9.1rem 8.6rem;
    background: #abb7ba;
    gap: 2rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.4rem;
}
.footer-column ul li {
    margin-top: 1.3rem;
}
.footer-column ul li:first-child {
    margin-top: 0;
}
.footer-copyright {
    position: relative;
    font-size: 1.2rem;
    line-height: 2;
    font-family: var(--font-title);
    color: var(--text);
    padding-top: 2.4rem;
}
.footer-copyright p {
    margin: 0;
}
.footer-copyright a {
    color: inherit;
}
.footer-copyright a:hover {
    color: var(--primary);
}
.footer-intro {
    padding-top: 29.2rem;
    padding-bottom: 13.6rem;
}
.footer-intro .pin {
    right: var(--gap);
    top: 12.7rem;
}
.footer-intro .title {
    margin: 0 auto;
    max-width: var(--container-title);
    position: relative;
    color: var(--white);
    font-size: 5.6rem;
    line-height: 1.142;
}
.footer-form {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 31.6%;
    flex: 0 0 31.6%;
    max-width: 31.6%;
    padding-top: 0.5rem;
}
.footer-form-label {
    display: block;
    margin: 0 0 1.6rem;
    line-height: 2;
    font-size: 1.4rem;
}
.footer-form-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.4rem;
}
.footer-form-input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.footer-form-input input {
    width: 100%;
    background: transparent;
    border: 0;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0;
    height: 5.2rem;
    border-bottom: 1px solid #7e898c;
    letter-spacing: 0.08em;
}
.footer-form-input input::-webkit-input-placeholder {
    color: rgba(0, 1, 44, 0.32);
}
.footer-form-input input::-moz-placeholder {
    color: rgba(0, 1, 44, 0.32);
}
.footer-form-input input:-ms-input-placeholder {
    color: rgba(0, 1, 44, 0.32);
}
.footer-form-input input::-ms-input-placeholder {
    color: rgba(0, 1, 44, 0.32);
}
.footer-form-input input::placeholder {
    color: rgba(0, 1, 44, 0.32);
}
.footer-form-button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 11rem;
    flex: 0 0 11rem;
    max-width: 11rem;
}
.footer-form-button input.button-sign-up {
    width: 100%;
    display: block;
    text-align: left;
    font-size: 1.8rem;
    border-radius: 2px;
    border: 0;
    height: 4.8rem;
    background: var(--primary) url("../images/button.svg") no-repeat calc(100% - 1.6rem) 50%;
    padding: 0 0 0 1.6rem;
    -webkit-transition: background-color var(--duration) var(--function);
    transition: background-color var(--duration) var(--function);
    will-change: background-color;
    color: var(--text);
}
.footer-form-button input.button-sign-up:hover {
    color: var(--text);
    background-color: var(--white);
}
@media (max-width: 1024px) {
    .footer-intro {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .footer-intro .title {
        font-size: 3.2rem;
    }
    .footer-columns {
        padding: var(--gap);
        gap: 4rem;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer-column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 2rem);
        flex: 0 0 calc(50% - 2rem);
        max-width: calc(50% - 2rem);
    }
    .footer-logo {
        display: none;
    }
    .footer-form {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer-form-button {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 10.5rem;
        flex: 0 0 10.5rem;
        max-width: 10.5rem;
    }
    .footer-form-button input.button-sign-up {
        font-size: 1.6rem;
    }
}
.content-site {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    max-width: 100%;
}
.hero {
    --block-height: max(100dvh, 80rem);
    position: relative;
    color: var(--white);
    background-color: var(--black);
}
.hero .title {
    margin-left: -0.06em;
}
.hero .pin {
    bottom: 33.7rem;
    right: calc(var(--gap) + 39.8rem);
}
.hero .background {
    height: var(--block-height);
}
.hero .container {
    position: relative;
    height: var(--block-height);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.hero .container p {
    margin: 0.8rem 0 0;
}
.hero-content {
    padding-top: 10.2rem;
    width: calc(100% - 40rem);
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transition: all 0.6s var(--function) 0.1s;
    transition: all 0.6s var(--function) 0.1s;
}
.hero-play {
    position: absolute;
    right: var(--gap);
    bottom: var(--gap);
    width: 22.5rem;
    height: 6rem;
    background: none;
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transition: all 0.6s var(--function) 0.3s;
    transition: all 0.6s var(--function) 0.3s;
    border: solid 1px var(--primary);
    transition: none;
}
.hero-play-label {
    position: absolute;
    right: 2.3rem;
    bottom: 50%;
    font-size: 1.529rem;
    text-transform: uppercase;
    color: var(--white);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}
.hero-play svg {
    position: absolute;
    width: 2rem;
    left: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    fill: var(--primary);
}
.hero-play:hover {
    color: var(--secondary);
    background-color: var(--primary);
    /*background: #090915;
    color: #fff !important;
    transition: none;*/
}
.hero-play:hover .hero-play-label {
    color: var(--secondary);
}
.hero-play:hover svg {
    fill: var(--secondary);
}
.hero-down {
    position: absolute;
    left: calc(var(--gap) - 1.4rem);
    bottom: 5.3rem;
    color: var(--primary);
}
.hero-down svg {
    display: block;
}
.hero-down:hover {
    color: var(--white);
}
@media (max-width: 1024px) {
    .hero {
        --block-height: max(100dvh, 62rem);
    }
    .hero-down {
        bottom: var(--gap);
    }
    .hero-content {
        padding-top: 10.2rem;
        width: 100%;
    }
    .hero-play {
        bottom: var(--gap);
        width: 22rem;
        height: 6rem;
    }
    .hero-play-label {
        bottom: 50%;
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }
    .hero-play svg {
        left: 2rem;
        width: 2rem;
    }
}
.content-loaded .hero-content,
.content-loaded .hero-play {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
.container-video .fancybox__content {
    width: 100% !important;
    height: 100% !important;
}
.container-video .fancybox__slide {
    padding: 2.4rem !important;
    background: var(--black);
}
.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    border: 0;
    padding: 0;
}
.modal-close svg {
    display: block;
}
.modal-close:hover {
    background-color: var(--white);
}
.careers {
    position: relative;
    padding-top: 32.8rem;
    padding-bottom: 32.8rem;
    --hover-top: 0;
}
.careers-2 {
    padding-top: 17rem;
    padding-bottom: 17rem;
}
.careers-2 .careers-header {
    margin-bottom: 8.2rem;
}
.careers-header {
    margin-bottom: 16.9rem;
    position: relative;
    max-width: var(--container-title);
    margin-left: auto;
    margin-right: auto;
}
.careers-header-timeline-2 {
    position: relative;
    height: 4rem;
}
.careers-header-timeline-2 .timeline-navigation {
    left: var(--gap) !important;
    top: -4rem !important;
}
.careers-header-note {
    font-size: 1.6rem;
    position: absolute;
    right: -10rem;
    bottom: -5rem;
    width: 30rem;
}
.careers-header .pin {
    left: -15rem;
    bottom: -1.8rem;
}
.careers-header .pin-2 {
    left: 23.5rem;
    bottom: 100%;
    right: 0;
}
.careers-header .pin-3 {
    left: auto;
    right: 0;
    bottom: calc(100% - 3rem);
}
.careers .container {
    position: relative;
}
.careers-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10.02%;
}
.careers-slider.careers-slider.careers-slider {
    overflow: visible;
}
.careers-slider .swiper-slide {
    width: 95%;
}
.careers-slider-navigation {
    z-index: 2;
    position: absolute;
    width: 8.4rem;
    top: -8.2rem;
    right: var(--gap);
}
.careers-photo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40.765%;
    flex: 0 0 40.765%;
    max-width: 40.765%;
}
.careers-description {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.careers-description .description {
    margin-top: 1.9rem;
    max-width: 48.9rem;
    padding-bottom: 4rem;
}
#careers-slider-pagination {
    position: relative;
    gap: var(--gap);
    display: flex;
    width: 100%;
    justify-content: space-around;
    padding: var(--gap) var(--gap) 0;
}
#careers-slider-pagination .swiper-pagination-bullet {
    height: 3px;
    width: 100%;
    border-radius: 0px;
    background-color: var(--secondary);
    opacity: 0.2;
}
#careers-slider-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}
@media (max-width: 1024px) {
    .careers {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
    .careers-header {
        margin-bottom: var(--gap);
    }
    .careers-header-timeline-2 {
        height: 6rem;
    }
    .careers-header-timeline-2 .timeline-navigation {
        top: -1rem !important;
    }
    .careers-header-note {
        width: auto;
        right: 0;
        bottom: 0;
        position: relative;
        margin-top: 1rem;
    }
    .careers-2 {
        padding-top: 12rem;
        padding-bottom: var(--section-padding);
    }
    .careers-2-header {
        margin-bottom: var(--gap);
    }
    .careers-columns {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .careers-photo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .careers-description {
        padding-top: 2rem;
    }
    .careers-slider {
        overflow: visible !important;
    }
    .careers-slider .swiper-slide {
        width: 100%;
    }
    .careers-slider-navigation {
        top: -7.8rem;
        right: var(--gap);
    }
    .careers-slider .careers-description {
        padding-top: 2rem;
    }
    .careers .news-item:after,
    .careers .news-item:before {
        top: 0;
    }
}
.contact {
    padding-top: 31.9rem;
    padding-bottom: 26.7rem;
    position: relative;
}
.contact .background img {
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}
.contact .pin {
    top: -4rem;
    left: 15rem;
}
.contact-wrapper {
    position: relative;
    max-width: var(--container-title);
    margin-left: auto;
    margin-right: auto;
}
.contact .description {
    max-width: 48.9rem;
}
.contact-modal {
    z-index: var(--z-index-modal);
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--quaternary);
    width: min(100%, 78.8rem);
    padding: 12.2rem var(--gap) 5.3rem;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    -webkit-transition: all 0.6s var(--function);
    transition: all 0.6s var(--function);
}
.contact-modal-open {
    overflow: hidden;
}
.contact-modal-open .contact-modal {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
}
.contact-modal-open .contact-modal-mask {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.contact-modal-mask {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: var(--z-index-overlay);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.6s var(--function);
    transition: all 0.6s var(--function);
}
.contact-modal select {
    margin-top: 0.6rem;
    margin-bottom: 3.2rem;
}
.contact-modal input.button-send {
    margin-top: 1.6rem;
}
.contact-modal .title {
    margin-bottom: 3.2rem;
}
.contact-modal .pin {
    top: -4rem;
    left: 15rem;
}
.contact-modal::-webkit-scrollbar {
    width: 0.4rem;
}
.contact-modal::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
}
.contact-modal-wrapper {
    max-width: 49rem;
    margin: 0 auto;
    position: relative;
}
.contact-modal-close {
    width: 4rem;
    height: 4rem;
    position: absolute;
    right: var(--gap);
    top: var(--gap);
    padding: 0;
    border: 0;
    background: transparent;
}
.contact-modal-close svg {
    display: block;
    pointer-events: none;
}
@media (max-width: 1024px) {
    .contact {
        padding-top: var(--section-padding);
        padding-bottom: 12rem;
    }
    .contact .pin {
        display: block;
        top: -4rem;
        left: auto;
        right: 0;
    }
    .contact .background img {
        opacity: 0.2 !important;
        -webkit-transform: scale(3.7) !important;
        transform: scale(3.7) !important;
    }
}
.partners {
    padding-top: 11.7rem;
    padding-bottom: 11.7rem;
}
.partners-more {
    text-align: center;
    margin-top: 4.9rem;
}
.partners-more a.button {
    font-size: 1.4rem;
}
.partners .swiper-slide {
    width: 22.4rem;
}
.partners-item {
    display: block;
    border-radius: 0.64rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.partners-item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 449/189;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 1024px) {
    .partners {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
}
.slider-dialog {
    display: none;
    overflow: auto;
    max-width: 60rem !important;
    color: var(--text);
}
.slider-dialog::-webkit-scrollbar {
    width: 0.4rem;
}
.slider-dialog::-webkit-scrollbar-thumb {
    background-color: var(--primary);
}
.slider-dialog .title {
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.slider .pin {
    right: var(--gap);
    top: 35.3%;
}
.slider-arrow {
    position: absolute;
    right: var(--gap);
    bottom: 15.2rem;
    display: none;
}
.slider-arrow svg {
    display: block;
}
.slider-number {
    position: absolute;
    left: calc(var(--gap) + 9.2rem);
    top: 38.5%;
    font-size: 5.6rem;
    line-height: 1;
    font-family: var(--font-title);
    color: var(--primary);
}
.slider .container {
    position: relative;
    height: 98.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    color: var(--white);
}
.slider-content {
    max-width: 68.8rem;
    padding-bottom: 25rem;
    padding-left: calc(var(--gap) + 5.2rem);
}
.slider-content-text {
    margin-top: 2.2rem;
    line-height: 1.66;
    font-size: var(--font-size-large);
}
.slider-content-text p {
    margin: 0;
}
.slider-content-text p + p {
    margin-top: 1em;
}
.slider .swiper-slide {
    position: relative;
}
.slider-navigation {
    position: absolute;
    left: var(--gap);
    right: var(--gap);
    top: 50%;
    bottom: 50%;
    height: 4rem;
}
.slider-navigation button.swiper-button-next {
    left: initial;
    right: 0;
}
.slider-line {
    background: var(--primary);
    position: absolute;
    bottom: 9.2rem;
    top: 32.3%;
    width: 0.8rem;
    right: 0;
}
#slider-pagination {
    bottom: var(--gap);
    gap: var(--gap);
    display: flex;
    width: 100%;
    justify-content: space-around;
    padding: 0 var(--gap);
}
#slider-pagination .swiper-pagination-bullet {
    height: 3px;
    width: 100%;
    border-radius: 0px;
    background-color: var(--tertiary);
    opacity: 0.2;
}
#slider-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}
@media (max-width: 1024px) {
    .slider .container {
        height: max(100dvh, 54rem);
    }
    .slider-content {
        padding-left: 0;
        padding-bottom: 12rem;
    }
    .slider-content-text {
        font-size: 1.6rem;
    }
    .slider-line {
        display: none;
    }
    .slider-arrow {
        display: none;
    }
    .slider-number {
        left: auto;
        right: var(--gap);
        top: auto;
        bottom: var(--gap);
        font-size: 3.2rem;
    }
    .slider-navigation {
        top: auto;
        bottom: var(--gap);
        width: 8.4rem;
    }
}
.news {
    padding-top: 14.5rem;
    padding-bottom: 12.2rem;
    --hover-top: 17.1rem;
}
.news-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}
.news-sidebar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 4rem;
    padding-left: var(--gap);
    padding-right: var(--gap);
    /*margin-bottom: -10rem;*/
}
.news-sidebar .more {
    height: 2rem;
    margin: 0;
}
.news-2-sidebar {
    padding-top: 7rem;
}
.news-slider-wrapper {
    padding-left: 1.8rem;
}
.news-slider .swiper-slide {
    width: 40.9rem;
    padding: var(--hover-top, 0) 2.4rem 0;
    position: relative;
}
.news-slider .swiper-slide:first-child .news-item:before {
    display: none;
}
.news-slider .swiper-slide:last-child .news-item:after {
    display: none;
}
.news-actions {
    display: flex;
    gap: var(--gap);
    align-items: center;
}
.news-navigation {
    position: relative;
    width: 8.4rem;
    height: 4rem;
}
.news-item {
    display: block;
    position: relative;
    color: var(--white);
}
.news-item:after,
.news-item:before {
    width: 1px;
    content: "";
    position: absolute;
    background: #7f898c;
    bottom: 0;
    left: -2.4rem;
    top: 0;
    -webkit-transition: top var(--duration) var(--function);
    transition: top var(--duration) var(--function);
}
.news-item:after {
    left: auto;
    right: -2.5rem;
}
.news-item:hover {
    color: var(--white);
}
.news-item:hover:after,
.news-item:hover:before {
    top: calc(-1 * var(--hover-top, 0));
}
.news-item:hover .news-item-thumb {
    -webkit-transform: translateY(calc(-1 * var(--hover-top, 0)));
    transform: translateY(calc(-1 * var(--hover-top, 0)));
}
.news-item:hover .news-item-arrow {
    opacity: 1;
}
.news-item-hover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3.2rem;
    color: var(--text);
}
.news-item-description {
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news-item-more {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 2.1rem;
}
.news-item-num {
    position: absolute;
    right: 1.7rem;
    top: 2.8rem;
    color: var(--primary);
    font-family: var(--font-title);
    font-size: 5.6rem;
    line-height: 1;
}
.news-item-thumb {
    display: block;
    position: relative;
    -webkit-transition: -webkit-transform var(--duration) var(--function);
    transition: -webkit-transform var(--duration) var(--function);
    transition: transform var(--duration) var(--function);
    transition: transform var(--duration) var(--function), -webkit-transform var(--duration) var(--function);
    overflow: hidden;
}
.news-item-thumb:before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 9, 21, 0)), to(#090915));
    background: linear-gradient(180deg, rgba(9, 9, 21, 0) 0%, #090915 100%);
    inset: 0;
    position: absolute;
    content: "";
}
.news-item-thumb > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 361/542;
    -o-object-fit: cover;
    object-fit: cover;
}
.news-item-content {
    position: absolute;
    left: 2.4rem;
    right: 10rem;
    bottom: 2.4rem;
}
.news-item-label {
    display: block;
    font-family: var(--font-title);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.025rem;
}
.news-item-title {
    display: block;
    margin-top: 1.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news-item-arrow {
    opacity: 0;
    position: absolute;
    bottom: 2.2rem;
    right: 2.4rem;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: opacity var(--duration) var(--function);
    transition: opacity var(--duration) var(--function);
}
@media (max-width: 1024px) {
    .news {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
    .news-slider .swiper-slide {
        padding-left: var(--gap);
        padding-right: var(--gap);
        width: 32rem;
    }
    .news-columns {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .news-sidebar {
        padding-top: 0;
        margin-bottom: 4rem;
        padding-bottom: 0px;
        flex-direction: column;
        align-items: normal;
        gap: var(--gap);
    }
    .news-slider-wrapper {
        padding-left: 0;
    }
    .news-item:after,
    .news-item:before {
        top: calc(-1 * var(--hover-top, 0));
        left: -3rem;
    }
    .news-item-content {
        right: 2.4rem;
    }
    .news-item:after {
        left: auto;
        right: -3.1rem;
    }
    .news-item-num {
        font-size: 3.2rem;
    }
    .news-item .news-item-thumb {
        -webkit-transform: translateY(calc(-1 * var(--hover-top, 0)));
        transform: translateY(calc(-1 * var(--hover-top, 0)));
    }
    .news-item .news-item-arrow {
        display: none;
    }
}
.timeline {
    padding-top: 12rem;
    padding-bottom: 20rem;
}
.timeline-slider .swiper-slide {
    width: 40.9rem;
    padding: 0 2.4rem;
    position: relative;
}
.timeline-slider .swiper-slide:after,
.timeline-slider .swiper-slide:before {
    width: 1px;
    height: 15.2rem;
    left: 0;
    top: 50%;
    background-color: #cbcac3;
    content: "";
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.timeline-slider .swiper-slide:after {
    left: auto;
    right: -1px;
}
.timeline-slider .swiper-slide:first-child:before {
    display: none;
}
.timeline-slider .swiper-slide:last-child:after {
    display: none;
}
.timeline .title {
    text-align: left;
    margin-bottom: 5rem;
    padding-right: 10.8rem;
}
.timeline .container {
    position: relative;
}
.timeline-navigation {
    position: absolute;
    top: auto;
    bottom: -0.2rem;
    right: 8.4rem;
    width: 8.4rem;
    height: 4rem;
}
.timeline-item {
    position: relative;
}
.timeline-item:hover .timeline-item-hover {
    opacity: 1;
}
.timeline-item-no-hover .timeline-item-description {
    color: var(--white);
    font-size: 2.4rem;
    line-height: 1.34;
    right: 2.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.timeline-item-no-hover .timeline-item-default:before {
    position: absolute;
    content: "";
    inset: 0;
    opacity: 0.4;
    background: var(--black);
}
.timeline-item-default {
    position: relative;
}
.timeline-item-default img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 722/1084;
    -o-object-fit: cover;
    object-fit: cover;
}
.timeline-item-number {
    position: absolute;
    right: 2.4rem;
    top: 2.4rem;
    color: var(--primary);
    font-family: var(--font-title);
    font-size: 5.6rem;
    line-height: 1.142;
}
.timeline-item-decoration {
    position: absolute;
    right: 3.2rem;
    top: 3.2rem;
    color: #7e898c;
}
.timeline-item-decoration svg {
    display: block;
}
.timeline-item-date {
    position: absolute;
    left: 2.4rem;
    bottom: 2.4rem;
    line-height: 1.714;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--white);
}
.timeline-item-hover {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-color: var(--quaternary);
    opacity: 0;
    -webkit-transition: opacity 0.5s var(--function);
    transition: opacity 0.5s var(--function);
}
.timeline-item-hover .timeline-item-date {
    color: var(--text);
}
.timeline-item-description {
    font-size: 1.4rem;
    line-height: 1.714;
    position: absolute;
    left: 2.4rem;
    right: 4rem;
    bottom: 9.2rem;
    color: #323536;
}
@media (max-width: 1024px) {
    .timeline {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
    .timeline-navigation {
        bottom: -0.8rem;
    }
    .timeline-slider .swiper-slide {
        width: 32rem;
        padding-left: var(--gap);
        padding-right: var(--gap);
    }
    .timeline-item-number {
        font-size: 3.2rem;
    }
    .timeline-item-decoration {
        top: 2.4rem;
        right: 2.4rem;
    }
    .timeline-item-description {
        font-size: 1.3rem;
        right: 2.4rem;
        bottom: 7rem;
    }
}
.team {
    position: relative;
}
.team-list {
    padding-top: 20rem;
    padding-bottom: 16rem;
}
.team-list .tabs {
    margin-right: 10rem;
    margin-bottom: 2rem;
}
.team-list .container {
    position: relative;
}
.team-list-navigation {
    position: absolute;
    top: auto;
    top: -6.8rem;
    right: 8.4rem;
    width: 8.4rem;
    height: 4rem;
}
.team-list-header .title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 6rem;
}
.team-modal {
    z-index: var(--z-index-modal);
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--quaternary);
    width: min(78.8rem, 100%);
    padding: 12.2rem var(--gap) 5.3rem;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    -webkit-transition: all 0.6s var(--function);
    transition: all 0.6s var(--function);
}
.team-modal-open {
    overflow: hidden;
}
.team-modal-open .team-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
}
.team-modal-open .team-modal-mask {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.team-modal-mask {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: var(--z-index-overlay);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.6s var(--function);
    transition: all 0.6s var(--function);
}
.team-modal::-webkit-scrollbar {
    width: 0.4rem;
}
.team-modal::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
}
.team-modal-wrapper {
    max-width: 49rem;
    margin: 0 auto;
    position: relative;
}
.team-modal-close {
    width: 4rem;
    height: 4rem;
    position: absolute;
    right: var(--gap);
    top: var(--gap);
    padding: 0;
    border: 0;
    background: var(--secondary);
}
.team-modal-close svg {
    display: block;
    pointer-events: none;
}
.team-modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.6rem;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 7rem;
}
.team-modal-thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 13.1rem;
    flex: 0 0 13.1rem;
    max-width: 13.1rem;
}
.team-modal-thumb img {
    display: block;
    aspect-ratio: 131/145;
    -o-object-fit: cover;
    object-fit: cover;
}
.team-modal-linkedin {
    position: absolute;
    right: 2.9rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid var(--quaternary);
}
.team-modal-linkedin svg {
    display: block;
}
.team-modal-name {
    font-size: 2.4rem;
}
.team-modal-position {
    text-transform: uppercase;
    font-size: 1.4rem;
    margin-top: 0.2rem;
}
.team-modal-description p + .title {
    margin-top: 3rem;
}
.team-modal-description p {
    margin: 0;
}
.team-modal-description p + p {
    margin-top: 1em;
}
.team-modal-about {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.team-modal-panel {
    background-color: var(--secondary);
    color: var(--white);
    position: relative;
    min-width: 28.5rem;
    padding: 1.4rem 7rem 1.4rem 2.2rem;
}
@media (max-width: 1024px) {
    .team-list {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
    .team-modal-header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 4rem;
    }
    .team-modal-about {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    .team-modal-panel {
        max-width: 100%;
    }
    .team-modal-name {
        font-size: 1.8rem;
    }
}
.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 1.6rem;
    padding: 0;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
}
.tabs-underline {
    border-bottom: 1px solid rgba(126, 137, 140, 0.2);
}
.tabs-underline li {
    margin-bottom: -1px;
}
.tabs button {
    font-size: 1.8rem;
    font-family: var(--font-title);
    color: #6c6c75;
    border: 0;
    border-bottom: 4px solid transparent;
    padding: 1.6rem 1.6rem 1.2rem;
    background-color: transparent;
    -webkit-transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    will-change: color, background-color, border-color;
}
.tabs button:hover {
    color: var(--text);
}
.tabs li.active button {
    color: var(--text);
    border-bottom-color: var(--secondary);
}
@media (max-width: 1024px) {
    .tabs {
        gap: 0.5rem 2.4rem;
    }
    .tabs button {
        font-size: 1.4rem;
        padding: 0.8rem 0 0.4rem;
    }
}
.member {
    display: block;
    margin-right: 2.8rem;
    margin-left: 4.2rem;
    position: relative;
}
.member > img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 980/1084;
}
.member:hover .member-arrow {
    opacity: 1;
}
.member-label {
    width: 28rem;
    position: absolute;
    bottom: 2.4rem;
    left: -4.2rem;
    background: var(--secondary);
    color: var(--white);
    padding: 1.4rem 1rem 1.5rem 6.6rem;
}
.member-arrow {
    position: absolute;
    top: 3.2rem;
    right: 3.2rem;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
    -webkit-transition: opacity var(--duration) var(--function);
    transition: opacity var(--duration) var(--function);
}
.member-arrow svg {
    display: block;
}
.member-name {
    display: block;
    font-size: 2.4rem;
}
.member-position {
    display: block;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-top: 0.3em;
}
.members-slider .swiper-slide {
    width: 56rem;
}
@media (max-width: 1024px) {
    .member {
        margin-left: var(--gap);
        margin-right: var(--gap);
    }
    .members-slider .swiper-slide {
        width: 32rem;
    }
    .member-label {
        width: 22rem;
        left: calc(var(--gap) * -1);
        padding-left: var(--gap);
    }
    .member-name {
        font-size: 1.6rem;
    }
    .member-position {
        font-size: 1.2rem;
    }
}
.team-global {
    padding-top: 22rem;
    padding-bottom: 12rem;
}
.team-global-header {
    margin-bottom: 16.9rem;
    position: relative;
    max-width: var(--container-title);
    margin-left: auto;
    margin-right: auto;
}
.team-global-header .pin {
    color: #9eabaf;
    left: -15rem;
    top: -3.8rem;
}
.team-global .container {
    position: relative;
}
.team-global-sidebar .title {
    font-size: 4rem;
    line-height: 1;
}
.team-global-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 17.9rem;
    padding-top: 4rem;
}
.team-global-sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20.6rem;
    flex: 0 0 20.6rem;
    max-width: 20.6rem;
}
.team-global-description {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 87.3rem;
}
.team-global-description p {
    margin: 0;
}
.team-global-description p + p {
    margin-top: 1.34em;
}
@media (max-width: 1024px) {
    .team-global {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
    .team-global-header {
        margin-bottom: 4rem;
    }
    .team-global-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 4rem;
    }
    .team-global-description {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .team-global-sidebar {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .team-global-sidebar .title {
        font-size: 2.4rem;
    }
}
.shareholder {
    display: block;
    margin-right: 2.8rem;
    margin-left: 4.2rem;
    position: relative;
}
.shareholders-slider .swiper-slide {
    width: 56rem;
}
.shareholders-slider .swiper-wrapper {
    padding-top: 9.5rem;
}
.shareholder:hover .shareholder-arrow {
    opacity: 1;
}
.shareholders-navigation {
    position: absolute;
    right: var(--gap);
    top: auto;
    bottom: 0;
    left: auto;
    width: 8.4rem;
}
.shareholders-navigation-wrapper {
    padding-top: 4rem;
    position: relative;
}
.shareholder > img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 7/4;
}
.shareholder-label {
    width: 28rem;
    position: absolute;
    bottom: 2.4rem;
    left: -4.2rem;
    background: var(--quaternary);
    color: var(--text);
    padding: 1.8rem 1rem 1.8rem 6.6rem;
}
.shareholder-arrow {
    position: absolute;
    top: 3.2rem;
    right: 3.2rem;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
    -webkit-transition: opacity var(--duration) var(--function);
    transition: opacity var(--duration) var(--function);
}
.shareholder-arrow svg {
    display: block;
}
.shareholder-title {
    display: block;
    font-size: 1.8rem;
}
@media (max-width: 1024px) {
    .shareholder {
        margin-right: var(--gap);
        margin-left: var(--gap);
    }
    .shareholders-slider .swiper-wrapper {
        padding-top: var(--section-padding);
    }
    .shareholders-slider .swiper-slide {
        width: 32rem;
    }
    .shareholder-label {
        width: 22rem;
        left: calc(var(--gap) * -1);
        padding-left: var(--gap);
    }
    .shareholder-title {
        font-size: 1.6rem;
    }
}
.shareholders-modal {
    z-index: var(--z-index-modal);
    position: fixed;
    background-color: var(--quaternary);
    right: 0;
    top: 0;
    height: 100dvh;
    left: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.6s var(--function);
    transition: all 0.6s var(--function);
}
.shareholders-modal-open {
    overflow: hidden;
}
.shareholders-modal-open .shareholders-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.shareholders-modal-slide {
    height: 100dvh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.shareholders-modal-photo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55.375%;
    flex: 0 0 55.375%;
    max-width: 55.375%;
    height: 100dvh;
}
.shareholders-modal-photo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.shareholders-modal-logo {
    z-index: 2;
    position: absolute;
    left: var(--gap);
    top: var(--gap);
    color: var(--secondary);
}
.shareholders-modal-logo svg {
    display: block;
    width: 100%;
    height: auto;
}
.shareholders-modal-number {
    background-color: var(--primary);
    position: absolute;
    bottom: 6.7rem;
    left: 0;
    width: 14.9rem;
    height: 8.4rem;
    line-height: 8.4rem;
    padding-left: var(--gap);
    text-align: center;
    font-size: var(--font-size-xlarge);
    font-family: var(--font-title);
}
.shareholders-modal-navigation {
    position: absolute;
    height: 4rem;
    right: calc(var(--gap)* 3);
    bottom: 50%;
}
.shareholders-modal-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 44.625%;
    flex: 0 0 44.625%;
    max-width: 44.625%;
    padding: 5rem 5.4rem 5.4rem 5.4rem;
    max-height: 100dvh;
    overflow: auto;
}
.shareholders-modal-content::-webkit-scrollbar {
    width: 0.4rem;
}
.shareholders-modal-content::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
}
.shareholders-modal-subtitle {
    font-size: 1.455rem;
    color: #6f787a;
    margin-bottom: 1.5rem;
}
.shareholders-modal-description {
    margin-top: 3.4rem;
    max-width: 34.7rem;
}
.shareholders-modal-description p {
    margin: 0;
}
.shareholders-modal-description p + p {
    margin-top: 1em;
}
.shareholders-modal-close {
    z-index: 2;
    width: 4rem;
    height: 4rem;
    position: absolute;
    right: var(--gap);
    top: var(--gap);
    padding: 0;
    border: 0;
    background: transparent;
}
.shareholders-modal-close svg {
    display: block;
    pointer-events: none;
}
@media (max-width: 1024px) {
    .shareholders-modal-logo,
    .shareholders-modal-number {
        display: none;
    }
    .shareholders-modal-slide {
        display: block;
    }
    .shareholders-modal-photo {
        max-width: 100%;
        height: 30dvh;
    }
    .shareholders-modal-content {
        padding-left: var(--gap);
        padding-right: var(--gap);
        max-width: 100%;
        max-height: 70dvh;
        padding-bottom: var(--gap);
    }
    .shareholders-modal-navigation {
        bottom: auto;
        top: var(--gap);
        left: var(--gap);
    }
}
.article-push {
    padding-left: 25.6rem;
}
.article-single {
    padding-top: 21.6rem;
    padding-bottom: 5rem;
}
.article-header {
    margin-bottom: 8.4rem;
    position: relative;
}
.article-header .pin {
    left: 7.6rem;
    top: 6.4rem;
}
.article-header .title {
    font-size: 4rem;
    line-height: 1.4;
    margin-top: 2.5rem;
}
.article-content {
    letter-spacing: -0.02em;
    font-size: 2rem;
    position: relative;
}
.article-content p {
    margin-bottom: 1.34em;
}
.article-content .photo {
    margin-top: 6rem;
    margin-bottom: 6rem;
}
@media (max-width: 1024px) {
    .article-single {
        padding-top: 12rem;
    }
    .article-header {
        margin-bottom: 3rem;
    }
    .article-header .title {
        font-size: 2.8rem;
    }
    .article-push {
        padding-left: 0;
    }
    .article-content {
        font-size: 1.6rem;
    }
    .article-content .photo {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}
.share {
    font-size: 1.4rem;
    border-radius: 4px;
    padding: 3.2rem 1.6rem;
    width: 7.6rem;
    text-align: center;
    border: 1px solid var(--primary);
    position: absolute;
    left: 7.7rem;
    top: 0;
}
.share ul {
    margin: 2.8rem 0 0;
    padding: 0;
    list-style: none;
    display: -ms-grid;
    display: grid;
    gap: 0.8rem;
}
.share a,
.share img,
.share svg {
    display: block;
    margin: 0a;
}
@media (max-width: 1024px) {
    .share {
        position: static;
        left: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: auto;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 3rem;
    }
    .share ul {
        margin-top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.news-recommendations {
    padding-top: 8rem;
    padding-bottom: 8rem;
}
.news-recommendations-header {
    margin-bottom: 3.2rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.news-recommendations-header .pin {
    top: -4.3rem;
    left: -4rem;
}
.news-recommendations-header a.more {
    margin-top: 0;
    color: var(--primary);
}
.news-recommendations-header a.more:hover {
    color: var(--white);
}
.news-recommendations-list .alm-listing {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 6.989% 1fr 6.989% 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 6.989%;
}
.news-recommendations-item {
    padding-bottom: 3rem;
}
.news-recommendations-item .news-item:after,
.news-recommendations-item .news-item:before {
    display: none;
}
.news-recommendations-item .news-item-num {
    display: none;
}
.news-recommendations-item .news-item-thumb {
    display: block;
    position: relative;
}
.news-recommendations-item .news-item-thumb:before {
    background: rgb(0, 1, 44);
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 1, 44)), color-stop(48%, rgba(0, 1, 44, 0.25)), to(rgba(0, 1, 44, 0)));
    background: linear-gradient(0deg, rgb(0, 1, 44) 0%, rgba(0, 1, 44, 0.25) 48%, rgba(0, 1, 44, 0) 100%);
    inset: 0;
    position: absolute;
    content: "";
}
.news-recommendations-item .news-item-thumb > img {
    aspect-ratio: 361/224;
}
.news-recommendations-item .news-item-hover {
    padding-top: 2.7rem;
    position: static;
    bottom: auto;
}
.news-recommendations-item .news-item-arrow {
    opacity: 1;
}
@media (max-width: 1024px) {
    .news-recommendations {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
    .news-recommendations-list .alm-listing {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 0 4rem;
    }
}
.insights {
    padding-top: 24rem;
    padding-bottom: 12rem;
    position: relative;
}
.insights-slider {
    margin-top: 9.5rem;
}
.insights-slider .swiper-slide {
    width: 56rem;
}
.insights .pin {
    left: 42rem;
    top: -3.2rem;
}
.insights-header {
    position: relative;
    margin-bottom: 2rem;
}
.insights-navigation {
    position: absolute;
    bottom: -5rem;
    height: 4rem;
    left: var(--gap);
}
.insights-item {
    display: block;
    margin-right: 2.8rem;
    margin-left: 4.2rem;
    position: relative;
}
.insights-item > img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 980/1084;
}
.insights-item:hover .insights-arrow {
    opacity: 1;
}
.insights-label {
    width: 32rem;
    position: absolute;
    bottom: 2.4rem;
    left: -4.2rem;
    background: var(--secondary);
    color: var(--white);
    padding: 1.8rem 1rem 1.8rem 6.6rem;
}
.insights-arrow {
    position: absolute;
    top: 3.2rem;
    right: 3.2rem;
    opacity: 0;
    -webkit-transition: opacity var(--duration) var(--function);
    transition: opacity var(--duration) var(--function);
}
.insights-arrow svg {
    display: block;
}
.insights-title {
    display: block;
    font-size: 1.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media (max-width: 1024px) {
    .insights {
        padding-top: 17rem;
        padding-bottom: var(--section-padding);
    }
    .insights-slider {
        margin-top: var(--section-padding);
    }
    .insights-slider .swiper-slide {
        width: 32rem;
    }
    .insights-item {
        margin-right: var(--gap);
        margin-left: var(--gap);
    }
    .insights-label {
        width: 22rem;
        left: calc(var(--gap) * -1);
        padding-left: var(--gap);
    }
    .insights-title {
        font-size: 1.6rem;
    }
    .insights-arrow {
        display: none;
    }
}
.press-release {
    margin-bottom: 1rem;
}
.press-release-link {
    border-bottom: 1px solid #7e898c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.6rem 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    will-change: color, background-color, border-color;
}
.press-release-link:hover {
    color: var(--secondary);
    border-bottom-color: var(--primary);
}
.press-release-link:hover span.button {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}
.press-release-more {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15rem;
    flex: 0 0 15rem;
    max-width: 15rem;
}
.press-release-title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 15rem);
    flex: 0 0 calc(100% - 15rem);
    max-width: calc(100% - 15rem);
    font-size: 1.8rem;
    font-family: var(--font-title);
    padding-right: 2rem;
    display: block;
}
.press-release-title-overflow {
    max-width: 48rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.press-releases-list .more {
    margin-top: 3.4rem;
    text-align: center;
}
@media (max-width: 1024px) {
    .press-releases-list {
        margin-top: -5rem;
    }
    .press-release-more {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 10rem;
        flex: 0 0 10rem;
        max-width: 10rem;
        font-size: 1.4rem !important;
    }
    .press-release-title {
        font-size: 1.6rem;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 10rem);
        flex: 0 0 calc(100% - 10rem);
        max-width: calc(100% - 10rem);
    }
}
.line-element {
    height: 1px;
    background: var(--black);
    opacity: 0.1;
}
.shareholders-box,
.team-box {
    display: none;
    position: relative;
}
.shareholders-box.active,
.team-box.active {
    display: block;
}
.careers .more {
    margin-top: 3.4rem;
}
.careers-list {
    margin-bottom: 1rem;
}
.careers-job-name {
    display: block;
    margin-bottom: 0.4rem;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.careers-job-meta {
    font-size: 1.4rem;
    display: block;
    overflow: hidden;
    width: 100%;
    text-transform: uppercase;
    text-overflow: ellipsis;
}
.careers-link {
    margin: 1rem 0;
    border-bottom: 1px solid #7e898c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.6rem 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    transition: color var(--duration) var(--function), background-color var(--duration) var(--function), border-color var(--duration) var(--function);
    will-change: color, background-color, border-color;
}
.careers-link:hover {
    color: var(--secondary);
    border-bottom-color: var(--primary);
}
.careers-link:hover span.button {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}
.careers-more {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12rem;
    flex: 0 0 12rem;
    max-width: 12rem;
}
.careers-title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 12rem);
    flex: 0 0 calc(100% - 12rem);
    max-width: calc(100% - 12rem);
    font-size: 2.4rem;
    padding-right: 2rem;
    display: block;
}
.careers-title-overflow {
    max-width: 48rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.editor-styles-wrapper .background.animated img {
    -webkit-animation: none !important;
    animation: none !important;
}
.editor-styles-wrapper .fade-in,
.editor-styles-wrapper .fade-in-left,
.editor-styles-wrapper .fade-in-right,
.editor-styles-wrapper .hero-content {
    opacity: 1 !important;
    -webkit-filter: none !important;
    filter: none !important;
    -webkit-transform: none !important;
    transform: none !important;
}
.editor-styles-wrapper .zoom-in-bg img {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
}
.editor-styles-wrapper .zoom-out-bg img {
    -webkit-transform: none !important;
    transform: none !important;
}

.tabs-with-carousel {
    position: relative;
    padding-top: 18.5rem;
    padding-bottom: 16.8rem;
    --hover-top: 0;
}

@media (max-width: 1024px) {
    .tabs-with-carousel {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
}

.tabs-with-carousel-box,
.team-box, .media-tabs-box {
    display: none;
    position: relative;
}

.tabs-with-carousel-box.active,
.tabs-with-carousel-box.active, 
.media-tabs-box.active {
    display: block;
}

.tabs-with-carousel-header {
    margin-bottom: 7.9rem;
    position: relative;
    max-width: var(--container-title);
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .tabs-with-carousel-header {
        margin-bottom: 4rem;
    }
}

.tabs-with-carousel-box-header {
    margin-bottom: 10.9rem;
    position: relative;
    max-width: var(--container-title);
    margin-left: auto;
    margin-right: auto;
}

.tabs-with-carousel-box-header-content {
    display: flex;
    gap: 10.02%;
}

.tabs-with-carousel-box-header .title {
    font-size: 4.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .tabs-with-carousel-box-header {
        margin-bottom: 12rem;
    }

    .tabs-with-carousel-box-header-content {
        flex-direction: column;
        gap: 3rem;
    }
}

.tabs-with-carousel .container {
    position: relative;
}

.tabs-with-carousel-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10.02%;
}

@media (max-width: 1024px) {
    .tabs-with-carousel-columns {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.tabs-with-carousel-photo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40.765%;
    flex: 0 0 40.765%;
    max-width: 40.765%;
}

.tabs-with-carousel .photo figcaption {
    max-width: 100%;
}

.tabs-with-carousel .photo-label {
    font-size: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .tabs-with-carousel-photo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.tabs-with-carousel-description {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .tabs-with-carousel-description {
        padding-top: 2rem;
    }
}
.tabs-with-carousel-slider {
    overflow: visible !important;
}

.tabs-with-carousel-slider .pin {
    top: -8rem;
    left: var(--gap);
}

@media (max-width: 1024px) {
    .tabs-with-carousel-slider .tabs-with-carousel-description {
        padding-top: 2rem;
    }
}

.tabs-with-carousel-description .description {
    margin-top: 1.9rem;
    max-width: 48.9rem;
    padding-bottom: 4rem;
}

.tabs-with-carousel-slider-navigation {
    z-index: 2;
    position: absolute;
    width: 8.4rem;
    right: calc(49.215% - 8.4rem);
    top: auto;
    bottom: 5rem;
}

@media (max-width: 1024px) {
    .tabs-with-carousel-slider-navigation {
        top: -7.8rem;
        right: var(--gap);
    }
}

.float-link {
    display: flex;
    align-items: center;
    background: var(--primary);
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    width: 26rem;
}

.float-link:hover {
    background: #090915;
    color: #fff;
}

.float-link svg {
    fill: #090915;
    with: 3rem;
}

.float-link:hover svg {
    fill: white;
}

.float-link span {
    font-size: 2rem;
}

.shareholders-global {
    padding-top: 22rem;
    padding-bottom: 12rem;
}
@media (max-width: 1024px) {
    .shareholders-global {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
}

.shareholders-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 17.9rem;
    padding-top: 4rem;
}

@media (max-width: 1024px) {
    .shareholders-header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 4rem;
    }
}

.shareholders-sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20.6rem;
    flex: 0 0 20.6rem;
    max-width: 20.6rem;
}

@media (max-width: 1024px) {
    .shareholders-sidebar {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.shareholders-sidebar .title {
    font-size: 4rem;
    line-height: 1;
}

@media (max-width: 1024px) {
    .shareholders-sidebar .title {
        font-size: 2.4rem;
    }
}

.shareholders-description {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 87.3rem;
}

@media (max-width: 1024px) {
    .shareholders-description {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

#shareholders .shareholders-slider .swiper-wrapper {
    padding-top: 6rem;
}

.shareholders-global .shareholders-navigation-wrapper {
    padding-top: 10rem;
}

@media (max-width: 1024px) {
    .shareholders-global .shareholders-navigation-wrapper {
        padding-top: 4rem;
    }
}

.shareholders-slider .sub-title {
    font-size: 2.4rem;
}

.shareholder-index {
    position: absolute;
    top: 3.2rem;
    right: 3.2rem;
    color: var(--primary);
    font-size: 4rem;
}

.shareholders-navigation-wrapper.container {
    display: flex;
    justify-content: space-between;
}

.shareholders-navigation-wrapper.container .shareholders-navigation {
    position: relative;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8.4rem;
}

.shareholder-card {
    background: var(--quaternary);
    padding-top: 25rem;
    padding-right: 4.2rem;
    padding-left: 4.2rem;
    height: 54rem;
}
@media (max-width: 1024px) {
    .shareholder-card {
        padding-top: 8rem;
        height: 36rem;
    }

    .shareholder-content {
        font-size: 1.3rem;
    }
}

.shareholders-global .partners-more {
    text-align: center;
    margin-top: 12rem;
}

.shareholders-global .partners-more a.button {
    font-size: 2rem;
}

.timeline.timeline-block {
    padding-top: 0px;
}

@media (max-width: 1024px) {
    .timeline.timeline-block {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9rem var(--gap) 0rem;
    margin-bottom: 5rem;
    gap: 3rem;
}

.timeline-title {
    font-size: 3.5rem;
}

.timeline-navigation.timeline-blur {
    position: relative;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
}

.timeline-item-blur {
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.timeline-item-blur img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 722/980;
    -o-object-fit: cover;
    object-fit: cover;
    filter: brightness(50%);
    -webkit-transition: filter 0.5s var(--function);
    transition: filter 0.5s var(--function);
    background: var(--black);
}

/*.timeline-item-blur:hover img {
    filter: brightness(30%) blur(2px);
    
}*/

.timeline-item-blur-title {
    font-size: 2.2rem;
    font-family: var(--font-title);
    color: var(--primary);
}

.timeline-item-blur-decoration {
    position: absolute;
    right: 3.2rem;
    bottom: 2.5rem;
    color: #7e898c;
}

.timeline-item-blur-decoration svg {
    display: block;
}

.timeline-item-blur-date {
    position: absolute;
    left: 2.4rem;
    bottom: 2.4rem;
    line-height: 1.714;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--white);
}

.timeline-item-blur-description {
    font-size: 1.75rem;
    line-height: 1.714;
    color: var(--white);
}

.timeline-item-blur-index {
    position: absolute;
    left: 2rem;
    bottom: 0rem;
    font-size: 64px;
    color: var(--primary);
    font-family: var(--font-title);
}

.timeline-item-blur-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4rem;
    right: 4rem;
    text-align: center;
}

.iso-icon {
    position: absolute;
    top: 3.2rem;
    margin: 0 auto;
    left: 0;
    right: 0;
}

@media (max-width: 1024px) {
    .timeline-item-blur-decoration {
        bottom: 2rem;
        right: 2.4rem;
    }

    .timeline-item-blur-description {
        font-size: 1.3rem;
        right: 2.4rem;
        bottom: 7rem;
    }

    .timeline-header {
        flex-direction: column;
    }

    .timeline-navigation.timeline-blur {
        margin-left: auto;
    }

    .timeline-item-blur-index {
        left: 2.4rem;
        font-size: 55px;
    }
    .iso-icon {
        top: 2.5rem;
    }
    .timeline-item-blur-decoration svg {
        width: 5rem;
    }
}

.download-files {
    padding-top: 12rem;
    padding-bottom: 16.8rem;
}

.download-files-sidebar {
    padding-top: 9rem;
    margin-bottom: 5rem;
    font-size: 3.5rem;
}

.files-grid {
    display: flex;
    row-gap: 6rem;
    flex-wrap: wrap;
}

.files-grid-box {
    width: 33.33333333333%;
}

.file-card {
    display: flex;
    align-items: center;
    margin-right: 3.2rem;
    margin-left: 3.2rem;
    position: relative;
    background: var(--quaternary);
    padding-right: 4.2rem;
    padding-left: 4.2rem;
    aspect-ratio: 1 / 1.2;
}

.file-index {
    position: absolute;
    top: 3.2rem;
    right: 3.2rem;
    color: var(--primary);
    font-size: 4rem;
}

.download-label {
    position: absolute;
    bottom: 2.4rem;
    left: -3.2rem;
    background: var(--secondary);
    color: var(--white);
    padding: 2rem 2rem 2rem 5.5rem;
    font-size: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

@media (max-width: 1024px) {
    .files-grid-box {
        width: 50%;
    }

    .file-card {
        margin-right: var(--gap);
        margin-left: var(--gap);
    }

    .file-content {
        font-size: 1.3rem;
    }

    .download-label {
        width: 22rem;
        left: calc(var(--gap) * -1);
        padding-left: var(--gap);
        font-size: 1.6rem;
    }
}

@media (max-width: 680px) {
    .files-grid-box {
        width: 100%;
    }
}

/*Hero-2*/

.hero-2 .hero-down {
    bottom: 4rem;
}

.hero-2 .pin {
    bottom: var(--gap);
    right: var(--gap);
}

/*Careers*/

@media (max-width: 1024px) {
    .news-slider-wrapper {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .careers-title-overflow {
        max-width: none;
        white-space: normal;
    }

    #careers-slider-pagination, #slider-pagination {
        display: none;
    }

    .team-list .tabs {
        margin-bottom: 8rem;
    }

    .team-list-navigation {
        top: -6rem;
        left: var(--gap);
    }

    .timeline-navigation {
        left: 18rem;
    }
}
/*navigation menu*/
.navigation {
  display: none;
  position: fixed;
  z-index: 710;
  background: rgba(0, 1, 44, 0.36);
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  overflow: auto;
  padding-top: 5.4rem;
  padding-bottom: 2.4rem;
  font-size: var(--font-size-medium);
  line-height: var(--font-size-medium-line-height);
  text-transform: uppercase;
  letter-spacing: 0.1em;
	padding-left: var(--gap);
  padding-right: var(--gap);
	backdrop-filter: blur(8px);
}
.navigation .menu {
	flex-direction: column;
  position: relative;
  padding: 0 var(--gap);
	background: none;
	height: auto;
	backdrop-filter: none;
}
.navigation .menu > li > a {
  color: var(--tertiary);
  font-size: 2rem;
	text-decoration: underline;
    text-decoration-color: currentcolor;
    text-decoration-thickness: auto;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  text-decoration-color: var(--primary);
}
.navigation-toggle {
  border-radius: 50%;
  display: none;
  position: fixed;
  z-index: 720;
  right: 0;
  top: 0;
  width: 6rem;
  height: 6rem;
  border: 0;
  background: transparent;
    background-color: transparent;
  mix-blend-mode: difference;
}
.navigation-toggle-icon {
  position: absolute;
  top: 50%;
  left: 1.2rem;
  right: 1.2rem;
  height: 0.2rem;
  background: var(--white);
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: background-color var(--duration) var(--function);
  transition: background-color var(--duration) var(--function);
}
.navigation-open .navigation-toggle-icon {
  background-color: transparent;
}

.navigation-toggle-icon::before, .navigation-toggle-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--white);
  -webkit-transform: translate3d(0, -1rem, 0);
  transform: translate3d(0, -1rem, 0);
  -webkit-transition: -webkit-transform var(--duration) var(--function);
  transition: -webkit-transform var(--duration) var(--function);
  transition: transform var(--duration) var(--function);
  transition: transform var(--duration) var(--function), -webkit-transform var(--duration) var(--function);
  will-change: transform;
}
.navigation-toggle-icon::after {
  -webkit-transform: translate3d(0, 1rem, 0);
  transform: translate3d(0, 1rem, 0);
}

.navigation-open .navigation-toggle-icon::after, .navigation-open .navigation-toggle-icon::before {
  left: 0.4rem;
  right: 0.4rem;
  background-color: var(--primary);
}
.navigation-open .navigation-toggle-icon::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navigation-open .navigation-toggle-icon::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navigation-logo {
  margin-bottom: 7.7rem;
  max-width: 4.8rem;
}
.header-copyright {
  text-align: center;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.48px;
}
@media (max-width: 1352px) {
  .header-navigation {
    display: none;

  }
  .navigation-toggle {
    display: block;
  }
	
	.navigation-open .navigation {
    display: block;
  }
}
@media (max-width: 1180px) {

	.navigation {
    padding-top: 2.2rem;
  }
}

/* Sub Menu Navigation */
.menu > li,
.navigation ul > li > a {
	position: relative;
}

.menu > li > a {
	
	padding: 1.6rem;
	overflow: visible;
}
.menu > li:first-child > ul {
    left: 0;
}
.menu > li.menu-item-has-children > a {
    pointer-events: none;
}

.menu > li.menu-item-has-children > a::after {
  position: absolute;
  right: 0;
  content: "";
  top: 0;
  width: 16px;
  height: 100%;
  background: transparent url("../images/icon.arrow.svg") no-repeat 0 50%;
    background-size: auto;
  background-size: 20px 15px;
  -webkit-transition: opacity var(--duration) var(--function);
  transition: opacity var(--duration) var(--function);
}

.menu > li.menu-item-has-children:hover > a {
	color: var(--white);
}
.menu > li.menu-item-has-children:hover > a::after {
    opacity: 1;
}
.menu > li.menu-item-has-children:hover > ul {
    pointer-events: auto;
}
.header-navigation .menu > li > ul {
  pointer-events: none;
  display: none;
  position: absolute;
  top: 100%;
  list-style: none;
  padding: 0;
  -webkit-transition: all var(--duration) var(--function);
  transition: all var(--duration) var(--function);
  background: rgba(0, 1, 44, 0.20);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.navigation .menu > li > ul {
	position: relative;
	top: unset;
	list-style: none;
	padding: 1.6rem 0 0 1.6rem;
}
.menu > li > ul > li:hover > a {
	color: var(--white);
    text-decoration-line: underline;
}
.menu > li > ul > li.current-menu-parent > a,
.menu > li > ul > li.current-menu-item > a {
    font-weight: bold;
}
.menu > li > ul > li > a {
	padding: 1.6rem;
    display: block;
    color: var(--white);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.6rem;
    text-decoration-color: var(--darker-blue);
	white-space: nowrap;
}
.menu > li:hover > ul {
  display: block;
}
.sub-menu > li.active > ul {
	opacity: 1;
	visibility: visible;
	height: auto;
}
@media (max-width: 1352px) {
  .navigation .menu > li > ul {
    text-transform: none;
    font-size: var(--font-size-small);
    display: none;
    margin: 0;
  }
	.navigation ul > li.menu-item-has-children:hover > ul {
  display: block;
}
}