@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-BlackItalic.woff2') format("woff2");
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Bold.woff2') format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-ExtraBold.woff2') format("woff2");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Light.woff2') format("woff2");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBold.woff2') format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Medium.woff2') format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.woff2') format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoMono';
    src: url('../fonts/RobotoMono/RobotoMono-Bold.woff2') format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoMono';
    src: url('../fonts/RobotoMono/RobotoMono-Light.woff2') format("woff2");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoMono';
    src: url('../fonts/RobotoMono/RobotoMono-Regular.woff2') format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica/Helvetica.woff2') format("woff2");
    font-weight: 400;
    font-style: normal;
}


/***************************************************************************************************************/
/***************************************************************************************************************/
/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
    display: block;
}

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

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

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

address {
    font-style: normal;
}

.text-uppercase {
    text-transform: uppercase;
}

/* Form */

input,
textarea,
button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}


button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

ul,
li {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

/***************************************************************************************************************/
/***************************************************************************************************************/
:root {
    --black: #000;
    --accent-color: #42A3C0;
    --white: #FFFFFF;
}

body {
    font-family: 'Montserrat', sans-serif;
}

section {
    padding: 150px 0;
}

section.image-grid {
    padding: 0 0 150px 0;
}

section.layout {
    padding: 60px 0 110px 0;
}

section.image {
    padding: 0;
    position: relative;
}

.container {
    max-width: 1420px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
}

/***************************************************************************************************************/
/***************************************************************************************************************/
h1 {
    font-weight: 800;
    font-size: 63px;
    line-height: 105%;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h2 {
    font-size: 21px;
    line-height: 180%;
    letter-spacing: 2.46px;
    font-weight: 400;
}

h3 {
    font-weight: 800;
    font-size: 23px;
    line-height: 27px;
}

p,
li {
    line-height: normal;
    font-weight: 300;
    font-size: 17px
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

.button-wrapper {
    width: fit-content;
    margin-top: 1rem;
}

.button {
    border: 1px solid var(--black);
    text-decoration: none;
    background-color: transparent;
    padding: 20px 35px;
    font-size: 0.95rem;
    text-transform: uppercase;
    min-width: 200px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    letter-spacing: .2rem;
    text-align: center;
    color: var(--black);
    cursor: pointer;
    transition: all .3s ease-out;
    position: relative;
    font-weight: 800;
}

a {
    color: var(--black);
    text-decoration: none;
    /*text-transform: uppercase;*/
    /*font-size: 1.05rem;
    line-height: 22px;*/
}


body.loader-active {
    overflow: hidden;
}
body.modal-open {
    height: 100dvh;
    overflow: hidden;
}

/******************************************************/
/***********************BLOCKS*************************/
/******************************************************/
header {
    transition: background-color 1s, transform 1s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 30px 0 20px 0;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header .header_brand,
.navigation .header_brand {
    width: 256px;
}

.header_brand-pages{
    height: 26px;
}

.header_brand {
    position: relative;
    display: inline-block;
}

.logo-lg {
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.header-inner-small {
    align-items: end;
}

.white-header.white_bg .header-inner-small {
    /*align-items: unset;*/
}

.header .header_nav {
    display: flex;
    gap: 180px;
    margin-top: 15px;
}

.white-header .header-nav-km-text,
.white-header .header-nav-date {
    color: var(--accent-color);
}

.white-header .header-nav-link a::before {
    background-image: url(../img/svg/nav-arrow.svg);
}

.white-header .header .header_nav {
    color: var(--white);
}

.white-header .header-nav-link a {
    color: var(--white);
}

.white-header .header_menu {
    color: var(--white);
}

.white-header.white_bg .header .header_nav {
    color: var(--black);
}

.white-header.white_bg .header-nav-link a {
    color: var(--black);
}

.white-header.white_bg .header_menu {
    color: var(--black);
}

.black-header .header .header_nav {
    color: var(--black);
}



.header_menu {
    margin-top: 15px;
}

.header .header_nav span,
.header .header_nav a,
.header_menu span {
    font-size: 13px;
    font-family: 'RobotoMono', sans-serif;
    font-weight: 300;
}

.header_menu {
    cursor: pointer;
}

.header-nav-time {
    margin-left: 22px;
    letter-spacing: 0.97px;
}

.header-nav-date,
.header-nav-km-text {
    color: var(--white);
    text-transform: uppercase;
}

.header-nav-link a {
    position: relative;
    display: flex;
    padding-left: 1.5rem;
}

.header-nav-link a:hover {
    color: var(--accent-color) !important;
}

.black-header .header-nav-link a:hover {
    color: var(--white) !important;
}

.black-header.white_bg .header-nav-link a:hover {
    color: var(--accent-color) !important;
}


.header-nav-link a::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    background-image: url(../img/svg/arrow-white.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
}

header.white_bg .header-nav-link a::before {
    background-image: url(../img/svg/DIN_Pfeile.svg);
}

header .container {
    position: relative;
    overflow-x: clip;
}

header.sticky_head {
    transform: translateY(-140%);
}

header.white_bg {
    background-color: #fff;
    padding-top: 20px;
}

.logo-lg-desk {
    opacity: 1;
    height: 100%;
}

.logo-lg-desk-home {
    height: auto;
}

.logo-lg-mobile {
    opacity: 0;
    pointer-events: none;
}

header.white_bg .logo-lg-desk {
    opacity: 0;
}

header.white_bg .logo-lg-mobile {
    opacity: 1;
    pointer-events: auto;
}

header.white_bg .header-nav-km-text,
header.white_bg .header-nav-date {
    color: var(--black);
}

.sidebar {
    position: absolute;
    top: 0;
    right: -420px;
    height: 100vh;
    overflow-y: auto;
    width: 180px;
    z-index: 9999;
    transition: 0.4s ease;
    margin-top: -30px;
}

.sidebar.active {
    right: 0;
}

header.sticky_head .sidebar.active {
    padding-top: 64px;
}

.sidebar-inner {
    padding-bottom: 10px;
    padding-top: 45px;
    background: var(--white);
    overflow-y: auto;
}

.sidebar-close {
    position: relative;
    display: inline-block;
    margin-bottom: 180px;
    padding-right: 1rem;
    cursor: pointer;
    font-size: 13px;
    font-family: 'RobotoMono', sans-serif;
}

.siderbar-close-wrapper {
    display: flex;
    justify-content: end;
}

.sidebar-logo {
    margin-bottom: 1.5rem;
    margin-top: 4rem;
    padding-left: 1rem;

}

.sidebar-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.navigation_items_row li {
    padding: 1.5rem 1rem;
    /*border-top: 1px solid var(--black);*/
	border-top: 0.5px solid #c4c4c4;
    text-transform: uppercase;
}

.navigation_items_row li a {
    font-weight: 400;
}

.current-menu-item a {
    font-weight: 700 !important;
    color: var(--accent-color);
}

.navigation_items_row li:last-child {
    /*border-bottom: 1px solid var(--black);*/
	border-bottom: 0.5px solid #c4c4c4;
}


/*******************************************************/
.site-loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.site-loader-inner {
    aspect-ratio: 16/7;
}

.site-loader-inner video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-loader-text {
    font-size: 13px;
    letter-spacing: 0.97px;
    line-height: 18px;
    color: var(--black);
    font-family: 'RobotoMono', sans-serif;

    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    display: flex;
    margin: 0 auto;
    margin-top: 98px;
    cursor: pointer;
}

.site-loader-text {
    cursor: pointer;
    color: var(--black);
    transition: color 0.3s ease;
}

.site-loader-text:hover {
    color: var(--accent-color);
}

.site-loader-text-line {
    color: var(--accent-color);
}

.site-loader-text,
.site-loader-text * {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.site-loader,
.page-id-11 .site-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-id-11 .site-loader {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


@keyframes runLine {
    0% {
        bottom: -90px;
    }

    100% {
        bottom: 100%;
    }
}

.scroll-line-wrapper {
    position: absolute;
    bottom: 70px;
    right: 10%;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
}

.scroll-line {
    position: relative;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 100px;
    background-color: var(--accent-color);
    overflow: hidden;
}

.scroll-line-fill {
    position: absolute;
    bottom: -30px;
    width: 100%;
    height: 90px;
    background-color: var(--white);
    animation: runLine 2s linear infinite;
}

.scroll-line-text {
    display: block;
    writing-mode: sideways-lr;
    text-transform: uppercase;
    color: var(--white);
    font-size: 13px;
    font-weight: 300;
    font-family: 'RobotoMono', sans-serif;
}

.hero-block {
    position: relative;
    aspect-ratio: 16 / 8.3;
    width: 100%;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.hero_background img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.hero-block canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 153px;
    height: 153px;
    border: 1px solid var(--white);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 0.97px;
    line-height: 18px;
    color: var(--white);
    font-family: 'RobotoMono', sans-serif;
    transition: opacity 0.2s ease, transform 0.1s ease;
    z-index: 9999;
    font-weight: 300;
}

.hero-sound-on {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    cursor: pointer;
}

.hero-sound-on-text {
    font-size: 13px;
    letter-spacing: 0.97px;
    line-height: 18px;
    color: var(--white);
    font-weight: 300;
    font-family: 'RobotoMono', sans-serif;
    text-transform: uppercase;
}

.custom-cursor.hide {
    opacity: 0;
}

/*************************hero-video*****************************/
.hero-video {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #02040c;
    padding: 0;
}

.hero_background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero_video_mobile {
    display: none;
}

.container-hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: clamp(3rem, 7vh, 5rem);
}

.hero-inner {
    width: 100%;
    text-align: center;
}

.hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.5rem, 2vw, 2.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #000;
}

.hero-title .white-text {
    color: var(--white);
}

.hero-title strong,
.hero-title b,
.hero-title .accent {
    color: #4aa3c6;
}

.hero-title p {
    margin: 0;
}

.hero-title .line {
    height: 4px;
    display: inline-block;
    width: clamp(30px, 4.5vw, 80px);
    background: #42A3C0;
    transform: translateY(-7px);
}



/*************************statement*****************************/
.statement_row {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #000;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.statement_row span.accent {
    color: #42A3C0;
}

.statement-section_text {
    /*margin: auto;*/
    width: fit-content;
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    will-change: clip-path;
    position: relative;
    z-index: 1;
}

.statement_fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: url(../img/statement_texture.jpg) center/cover no-repeat;
    z-index: 10;
}

.statement_inner {
    display: flex;
    gap: 15px;
    position: relative;
    justify-content: center;
}

.statement_image {
    width: 52px;
    height: auto;
    flex: 0 0 48px;
    background: url(../img/statement_img.jpg) center / cover no-repeat;
}

.statement_image_right {
    opacity: 0;
}

.portrait {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.2fr);
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    margin-top: 90px;
}

.portrait_media {
    width: 100%;
}

.portrait_image {
    display: block;
    width: 100%;
    aspect-ratio: 360 / 520;
    object-fit: cover;
}

.portrait_caption p {
    margin: 0.75rem 0 0;
    font-family: "RobotoMono";
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #000;
}

.portrait_caption strong {
    font-weight: 400;
}

.portrait_caption p .name {
    display: block;
    font-weight: 400;
    margin-bottom: 6px;
}

.portrait_text h2 {
    margin: 0 0 1.5rem;
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    line-height: 25px;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #000;
}

.portrait_text h2 strong,
.portrait_text h2 b,
.portrait_text h2 .accent {
    color: #4aa3c6;
}

.portrait_text p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.1em;
    /*text-transform: uppercase;*/
    color: #000;
}

.portrait_text p+p {
    margin-top: 1.5rem;
}

.portrait_paragraph p:first-of-type::before,
.portrait_caption p .name::before {
    content: "|";
    color: #4aa3c6;
    margin-right: 0.4em;
}

.portrait_paragraph p:last-of-type::after,
.portrait_caption p .name::after {
    content: "|";
    color: #4aa3c6;
    margin-left: 0.4em;
}

/*************************image*****************************/
.background_image,
.background_video {
    width: 100%;
    height: auto;
}

.image-block-with-quote .background_image,
.image-block-with-quote .background_video {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}


.image_title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(5rem, 10vw, 11rem);
    line-height: 0.8;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #8fc9d5;
}

.image_title_svg {
    height: 185px;
    /* width: 100%; */
    object-fit: contain;
}

.image_content {
    position: absolute;
    left: 16vw;
    bottom: 12vh;
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.image_tag {
    margin-left: -1.3rem;
    margin-bottom: 3.47em;
    padding: 0.70rem 1.75rem 0.70rem 2rem;
    background: #fff;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 600ms ease, transform 600ms ease;
    z-index: -1;
    position: relative;
    width: 100%;
	min-width: 180px;
}

.image_tag span,.image_tag b {
    font-weight: 800;
}

.image_tag::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 0.50rem;
    height: 0.50rem;
    background-image: url(../img/svg/DIN_Pfeile.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

}

.image.is-fully-visible .image_tag {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.image_content-quote {
    position: absolute;
    top: 15%;
    z-index: 2;
    max-width: 260px;
    width: 100%;
}

.image-block-with-quote {
    position: relative;
    padding: 0;
}

.image-block-quote-text {
    text-transform: uppercase;
    margin-top: 2rem;
}

.image-block-quote-text p {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.075em;
}

/* 
.image-block-quote-text p span {
    display: block;
} */

.image-block-quote-text p .white-text {
    color: #fff;
}



/*************************layout*****************************/
.layout_inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 8vw, 7rem);
    /*align-items: self-end;*/
}

.layout_right p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    /*margin-top: 50px;*/
}

.layout_right p strong {
    font-weight: 800;
}

.layout_title {
    margin: 0 0 60px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    line-height: 25px;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #000;
}

.layout_left .layout_title {
    line-height: 32px;
}

.layout_subtitle p {
    margin: 0.75rem 0 0;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
}

.layout_subtitle .white-text {
    color: #fff;
}

.layout_left .layout_subtitle p {
    line-height: 1.6;
}

.layout_subtitle p strong {
    font-weight: 700;
}

.layout_title .accent {
    color: #4aa3c6;
}

.layout_title .accent-thin {
    color: #4aa3c6;
    font-weight: 400;
}

.layout_subtitle p::before {
    content: "|";
    color: #4aa3c6;
    margin-right: 0.4em;
}

.layout_subtitle p::after {
    content: "|";
    color: #4aa3c6;
    margin-left: 0.4em;
}

.image-block-with-quote .layout_subtitle p::after,
.image-block-with-quote .layout_subtitle p::before {
    content: none;
}

/*************************image-grid*****************************/
.image-grid_inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.image-grid_item {
    position: relative;
    overflow-x: clip;
}

.image-grid_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-grid_arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;

    width: 2rem;
    height: 2rem;

    background-image: url("../img/svg/path_1172.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;


    transform: scale(0);
    opacity: 0;
    transition: transform .7s linear, opacity .7s linear;
}

.image-grid_item.active .image-grid_arrow {
    transform: scale(1);
    opacity: 1;
}

.grig-title-wrapper {
    position: absolute;
    left: 1.8rem;
    bottom: -2px;
    z-index: 2;
    margin: 0;


}

.grig-title-wrapper .image-grid_title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.25rem, 3.8vw, 3.825rem);
    line-height: 0.8;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #4aa3c6;
    transform: translateX(-115%);
    transition: transform 950ms ease;
    padding-block: 10px;
    padding-bottom: 0;
}

.active .grig-title-wrapper .image-grid_title {
    transform: translateX(0)
}

/*************************footer*****************************/
.footer-video-main {
    display: none;
}

.site-footer {
    width: 100%;
    padding: clamp(4rem, 6vw, 6rem) 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.footer-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.site-footer_inner {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: clamp(3rem, 10vw, 10rem);
    align-items: center;
}

.footer-card_line {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.footer-line {
    background: #c4c4c4;
    height: 0.5px;
    width: 100%;
}

@supports (-moz-appearance: none) {
    .footer-line {
        height: 1px;
        transform: scaleY(0.5);
        transform-origin: top;
    }
}

.footer-card {
    width: auto;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.footer-card_logo {
    padding: 1rem;
}

.footer-card_logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-card_content {
    padding: 5rem 1rem 5rem;
}

.footer-card_line-svg {
    width: 15px;
    height: 15px;
    margin-right: 3px;
}

.footer-card_line-email {
    margin-left: 6px;
}


.footer-card_links {
    padding: 1rem 0 0;
}

.footer-card_links svg {
    width: 6px;
    height: 6px;
}

.footer-card_content p {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: #000;
}

.footer-card_content strong {
    font-weight: 600;
}

.footer-card_globe img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 145px;
    margin: auto;
}

.footer-main-mobile {
    display: none;
}

.footer-main_link.innovate {
    padding-left: 165px;
}

.footer-main_link.invest {
    padding-left: 200px;
}

.footer-main_link.invest img {
    height: 50px;
}

.footer-main_link.invest .footer-main_link-wrap:before {
    top: 34px;
    left: 0;
}


.footer-main_link {
    display: flex;
    width: fit-content;
    margin-bottom: 3rem;
}

.footer-main_link-wrap {
    padding-left: 13px;
    font-weight: 700;
    position: relative;
    font-size: 25px;
}

.footer-main_link-wrap img {
    width: fit-content;
    height: 42px;
}

.footer-main_link-wrap:before {
    content: "";
    position: absolute;
    top: 27px;
    left: -6px;
    width: 0.50rem;
    height: 0.50rem;
    background-image: url(../img/svg/footer-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.footer-card_links a {
    display: block;
    text-align: right;
    padding: 1rem;
    border-top: 0.5px solid #c4c4c4;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.075em;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--accent-color);
}

.footer-card_links a:last-child {
    border-bottom: 0.5px solid #c4c4c4;
}

.footer-card_links-bottom a {
    font-family: "Montserrat", sans-serif;
    font-size: 11.5px;
    line-height: 1.4;
    letter-spacing: 0.075em;
    font-weight: 300;
    text-transform: uppercase;
}

.footer-card_links-bottom {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: space-between;
}

.footer-card_links-bottom-wrapper {
    padding: 0 1rem 0;
    margin-top: 3rem;
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-card_links-bottom .no-wrap {
    white-space: nowrap;
}

.footer-card_line-phone {
    letter-spacing: 0.1em !important;
}

/******************************************************/
/******************************************************/
/******************************************************/


/****/
.banner-block-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.centered-banner .banner-block-inner{
    grid-template-columns: 1fr 1fr;
    max-width: 875px;
    margin: 0 auto;
}

.centered-image-title h3{
    font-size: 50px;
    color: var(--accent-color);
    text-transform: capitalize;
}

.centered-image-title{
    position: absolute;
    left: 1.8rem;
    bottom: 4px;
    z-index: 2;
    margin: 0;
}

.centered-banner .banner-block-media{
    position: relative;
}


.banner-toptitle {
    margin: 0.75rem 0 0;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
}

.banner-toptitle::before {
    content: "|";
    color: #4aa3c6;
    margin-right: 0.4em;
}

.banner-toptitle::after {
    content: "|";
    color: #000;
    margin-left: 0.4em;
}

.banner-block-inner .accent-thin {
    color: #4aa3c6;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    line-height: 25px;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.banner-title {
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    line-height: 25px;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #000;
}

.banner-image-wrap{
    margin-left: auto;
}
.banner-image-wrap img{
	max-width:150px;
}
.centered-banner .banner-title{
    font-size: 16px;
}

.banner-title-wrap {
    display: flex;
    gap: 0.5rem;
}

.banner-title-wrap-mobile {
    display: none;
}

.banner-text {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-top: 20px;
}

.banner-block-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
}

.centered-banner .banner-block-content{
    border: 0.5px solid #c4c4c4;
    padding: 2rem;
    text-align: end;
}


.banner_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-bottom-wrap {
    margin-bottom: 7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.centered-banner .banner-bottom-wrap{
    justify-content: end;
}

.banner-link {
    position: relative;
    display: inline-block;
}

.hex-original,
.hex-animation {
    display: block;
}

.hex-animation {
    position: absolute;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

.is-animating .hex-animation {
    color: #4aa3c6;
}

.home .black-header .is-animating .hex-animation {
    color: #fff;
}
.home .black-header.white_bg .is-animating .hex-animation {
    color: #4aa3c6;
}

.hex-link.is-animating .hex-original {
    opacity: 0;
}

.banner-link {
    font-size: 13px;
    font-family: 'RobotoMono', sans-serif;
    position: relative;
    padding-left: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.banner-link::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    background-image: url(../img/svg/path_1172.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
}

/************************/
.overview-link-mobile {
    display: none;
}

.overview-block-left,
.overview-block-right {
    background-color: #fff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.overview-block-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10rem;
}

.overview-block-right {
    padding-left: 4rem;
    padding-right: 4rem;
}

.overview-block-inner {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 1rem;
}

.overview-toptitle {
    display: flex;
    justify-content: end;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
    padding: 0 1rem;
    text-align: end;
}

.overview-toptitle.has-animation {
    cursor: pointer;
}

.overview-image-link-wrap {
    padding: 0 1rem;
}

.hex-link{
    position: relative;
}

.overview-toptitle::before {
    content: "|";
    color: #4aa3c6;
    margin-right: 0.4em;
}

.overview-toptitle::after {
    content: "|";
    color: #4aa3c6;
    margin-left: 0.4em;
}

.overview-list-item-title {
    margin: 0;
    font-family: "RobotoMono", monospace;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    padding: 0 1rem;
}

.overview-list-item {
    border-bottom: 1px solid #c4c4c4;
    padding: 1rem 0;
}

.overview-list {
    margin-top: 10rem;
}

.overview-list .overview-list-item:first-child {
    border-top: 1px solid #c4c4c4;
}

.overview-right-title {
    font-weight: 600;
}

.overview-right-text {
    margin-left: 20rem;
}

.overview-right-text p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #000;
}

.overview-image {
    width: 250px;
    margin-bottom: 1.5rem;
}

/****************/
.cv_group-line {
    position: relative;
}

.cv-block .cv_group-line,
.grid-layout .cv_group-line {
    height: 14px;
}

.cv-block .cv_group-line svg,
.grid-layout .cv_group-line svg {
    height: 100%;
}

.cv_group-line svg {
    width: 100%;
}

.first_group {
    margin-bottom: 30px;
}

.cv-block {
    background-color: #E1F6FB;
}

.cv-block-inner {
    background-color: #fff;
    padding: 3rem 0;
}

.cv-block-item {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    align-items: center;
    padding: 0 32px;
    margin-bottom: 48px;
}

.cv-block-toptitle {
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
}

.cv-block-toptitle::before {
    content: "|";
    color: #4aa3c6;
    margin-right: 0.4em;
}

.cv-block-toptitle::after {
    content: "|";
    color: #4aa3c6;
    margin-left: 0.4em;
}

.cv-block-langs {
    display: flex;
    gap: 2rem;
}

.cv-block-toptitle--second {
    display: flex;
    justify-content: end;
    align-items: end;
}

.cv-block-langs p {
    display: inline;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
    position: relative;
}

.cv-block-langs p:not(:last-child)::after {
    content: ":";
    position: absolute;
    right: -21px;
    top: -1px;
}

.cv-block-item-second {
    display: grid;
    padding: 0 32px;
    grid-template-columns: 1fr 1fr 2fr;
}

.cv-block-item-third,
.cv-block-item-second_group {
    padding: 0 32px;
}

.cv-block-item-third-mobile {
    display: none;
}

.left-list li {
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.97px;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
    padding-left: 20px;
    position: relative;
}

.left-list li::before {
    content: ">";
    color: var(--accent-color);
    font-size: 13px;
    position: absolute;
    left: 0;
    top: 0;
}

.cv-block .accent-thin {
    color: #4aa3c6;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    line-height: 25px;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.cv-block-text,
.cv-block-text ul,
.cv-block-text ul li,
.cv-block-text p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.1em;
    /*text-transform: uppercase;*/
    color: #000;
}

.cv-block-text-left,
.left-list li {
    font-family: "RobotoMono", monospace;
    font-weight: 300;
}

.cv-block-text .blue {
    color: var(--accent-color);
    font-weight: 600;
}

.cv-block-text strong {
    font-weight: 600;
}

.cv-block-right-text {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: 3rem;
    margin-right: 7rem;
    color: var(--accent-color);
}

.second_group {
    margin-bottom: 50px;
    margin-top: 45px;
}

.third_group {
    margin-top: 50px;
}

.third_group .cv-block-text {
    margin-top: 40px;
}

.cv-block-text ul li {
    position: relative;
    padding-left: 30px;
}

.cv-block-text ul {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cv-block-text ul li::before {
    content: "—";
    position: absolute;
    top: 0;
    left: 0;
    color: #4aa3c6;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.cv-block-item-second_group {
    display: grid;
    grid-template-columns: 1fr 2.8fr;
    align-items: end;
}

.cv-block-toptitle--second-lang-mobile {
    display: none;
}

.cv-block-item-second_group .banner-title-wrap {
    margin-bottom: 48px;
}

.cv-block-item-second_group .banner-title-wrap-third {
    margin-bottom: 20px;
}

.years-list li {
    padding: 1rem 0;
    border-top: 1px solid #c4c4c4;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    align-items: center;
}

.years-list li:last-child {
    border-bottom: 1px solid #c4c4c4;
}

.years-list-year {
    position: relative;
    padding-left: 110px;
    font-family: "Roboto Mono", monospace;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 1.13px;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
}

.years-list-text {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
}

.years-list-year::before {
    content: "> > >";
    color: var(--accent-color);
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 0;
}


/***************List-Layout*********************/
.list-layout {
    background-color: #DEF0F1;
}

.list-layout-inner {
    background-color: var(--white);
}

.list-layout-wrapper {
    padding: 3rem 0;
    padding-left: 20rem;
}

.list-layout-wrapper .overview-right-title {
    margin-bottom: 1rem;
    font-size: 18px;
}

.list-layout-item {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr;
    gap: 2rem;
    padding: 1rem 0;
    border-top: 0.5px solid #c4c4c4;
    padding-right: 3rem;
}

.list-layout-item-left {
    position: relative;
    padding-left: 5rem;
}

.list-layout-item-left::before {
    content: "> > >";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-color);
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    font-family: 'RobotoMono', sans-serif;
}

.list-layout-item-left-title {
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 1.7px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.list-layout-item-left-subtitle {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.75px;
    color: var(--accent-color);
    font-weight: 400;
    font-family: 'Helvetica', sans-serif;
}

.list-layout-item-left-link {
    font-size: 13px;
    letter-spacing: 1.3px;
    line-height: 18px;
    font-family: 'RobotoMono', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    padding-left: 1.5rem;
    display: flex;
}

.list-layout-item-left-link::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    background-image: url(../img/svg/path_1172.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
}

.list-layout-item-text {
    font-size: 13px;
    letter-spacing: 0.97px;
    line-height: 18px;
    font-family: 'RobotoMono', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}


/*******************Grid-Layout********************/
.grid-layout-bottom-wrap{
    display: flex;
    max-width: fit-content;
    margin: 0 auto;
    margin-top: 2rem;
    flex-direction: column;
    gap: 1rem;
}
.grid-layout-bottom{
    display: flex;
    gap: 0.5rem;
}
.grid-layout-bottom .accent-thin {
    color: #4aa3c6;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    line-height: 25px;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.grid-layout {
    background-color: #F8EFF6;
}

.grid-layout-item-head {
    background-color: var(--white);
    padding: 3rem 2rem;
    margin-bottom: 1rem;
}

.grid-layout-item-head .overview-right-title {
    margin-bottom: 0;
}

.grid-layout-wrapper>.cv_group-line:last-child {
    display: none;
}

.grid-layout .accent-text {
    color: var(--accent-color);
}

.grid-layout-item-head-text {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.38px;
    font-weight: 400;
    max-width: 800px;
}

.grid-layout-item-head-text::before,
.grid-layout-card-head-date::before {
    content: "|";
    color: #4aa3c6;
    margin-right: 0.4em;
}

.grid-layout-item-head-text::after,
.grid-layout-card-head-date::after {
    content: "|";
    color: #4aa3c6;
    margin-left: 0.4em;
}

.grid-layout-item-body,.wpra-item-list--bullets.wpra-item-list--default {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.grid-layout-card {
    background-color: var(--white);
    padding: 2.1rem;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1/1;
}

.grid-layout-card .list-layout-item-left-link {
    margin-top: 1rem;
    text-align: end;
}

.grid-layout-card-link-wrap {
    margin-top: 1rem;
    text-align: end;
}

.grid-layout-card-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem;
}

.grid-layout-card-head-date {
    font-size: 13px;
    letter-spacing: 0.97px;
    line-height: 18px;
    font-weight: 400;
    font-family: 'RobotoMono', sans-serif;
}

.grid-layout-card-head-right-text {
    font-size: 13px;
    letter-spacing: 0.97px;
    line-height: 18px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'RobotoMono', sans-serif;
}
.grid-layout-card.with-image {
    position: relative;
    background: none;
    padding: 3rem;
}
.grid-layout-card.with-image .grid-layout-card-top {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #fff;
    padding: 20%;
    padding-top: 30%;
    position: relative;
}
.grid-layout-card.with-image .card-image-logo {
    max-width: 120px;
    align-self: center;
}
.grid-layout-card.with-image .grid-layout-card-title {
    color: #000;
    text-align: center;
    /*justify-content: start;*/
	display:block;
}
.grid-layout-card.with-image .grid-layout-card-title  .accent-text {
    color: var(--accent-color);
}
.layout-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid-layout-card-title {
    font-size: 18px;
    letter-spacing: 1.35px;
    line-height: 1.3;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 2rem;
    justify-content: end;
    display: flex;
    flex-direction: column;
}

.grid-layout .cv_group-line {
    margin: 4rem 0;
}

.grid-layout-item-head-first {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.grid-layout-item-head-text-first {
    margin-top: 2rem;
}

.grid-layout-item-head-first-wrapper-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.grid-layout-item-head-first-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.grid-layout-item-icon-link img {
    width: 112px;
    object-fit: contain;
}

.grid-layout-item-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.grid-layout-card-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.grid-layout-item-link {
    font-size: 13px;
    letter-spacing: 1.3px;
    line-height: 18px;
    font-weight: 400;
    font-family: 'RobotoMono', sans-serif;
    text-transform: uppercase;
}

.grid-layout-item-head-first-wrapper a {
    position: relative;
    padding-left: 1.5rem;
}

.grid-layout-item-head-first-wrapper a::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    background-image: url(../img/svg/path_1172.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
}
div.wpra-list-template .wpra-item-list>li.wpra-item {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 2.1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    aspect-ratio: 1 / 1;
	background:#fff;
}
div.wpra-list-template .wpra-item-list>li.wpra-item>a{
	 font-size: 18px;
    letter-spacing: 1.35px;
    line-height: 1.3;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 2rem;
}
div.wpra-list-template .wpra-item-list>li.wpra-item .wprss-feed-meta,
div.wpra-list-template .wpra-item-list>li.wpra-item>div.wprss-feed-meta>span,
.nav-links a, .nav-links span{
	font-weight: 400;
	 font-size: 15px;
    line-height: 27px;
}
.wprss-feed-meta{
	margin-bottom:2rem;
}
.nav-links.wpra-nav-links.numbered{
	display:none;
}
.nav-links{
	margin-top:20px;
}

.overview-image--banner {
    display: none;
    margin-bottom: 0;
}


br.mobile-only {
    display: none;
}

.mobile-read-more {
    display: none;
}

@media (max-width: 1490px) {
    .grid-layout-item-body,.wpra-item-list--bullets.wpra-item-list--default {
        grid-template-columns: 1fr 1fr;
    }

    .overview-right-text {
        margin-left: 10rem;
    }

    .image_content {
        left: 5vw;
        bottom: 10vh;
    }

    .image_title_svg {
        height: 100px;
    }

    .image_tag {
        padding: 0.30rem 1.75rem 0.30rem 2rem;
    }

    .scroll-line-wrapper,
    .hero-sound-on {
        bottom: 50px;
    }

    .header .header_nav {
        gap: 50px;
    }

    .image_content-quote {
        top: 20%;
    }

    .banner-bottom-wrap {
        margin-bottom: 2rem;
    }

    .cv-block-item {
        grid-template-columns: 1fr 2fr 1fr;
    }

    .cv-block-toptitle--second {
        justify-content: start;
    }

    .list-layout-wrapper {
        padding-left: 12rem;
    }
}

@media (max-width: 1200px) {
    .image_content-quote {
        top: 10%;
    }
}


@media (max-width: 1024px) {

    .banner-block-inner,.centered-banner .banner-block-inner {
        grid-template-columns: 1fr 1fr;
    }

    .overview-right-text {
        margin-left: 0;
    }

    .overview-block-inner {
        grid-template-columns: 1fr 3fr;
    }

    .overview-block-right {
        padding-left: 2rem;
        padding-right: 2rem;
    }


    .image-block-with-quote .background_image,
    .image-block-with-quote .background_video {
        aspect-ratio: 16 / 10.7;

    }
}

@media (max-width: 992px) {
    .cv-block-item {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .banner-bottom-wrap {
        margin-bottom: 0;
    }

    .header_nav-second {
        display: none;
    }

    .scroll-line-wrapper,
    .hero-sound-on {
        bottom: 30px;
    }

    .image_content {
        left: 4vw;
        bottom: 4vh;
    }

    .image_title_svg {
        height: 70px;
    }

    .image_tag {
        padding: 0.30rem 1.75rem 0.30rem 2rem;
    }

    .footer-main_link {
        width: 70%;
        margin-bottom: 1rem;
    }

    .footer-main_link.inspire {
        width: 50%;
    }

    .cv-block-item-second_group,
    .cv-block-item-second {
        grid-template-columns: 100%;
        gap: 1rem;
    }

    .cv-block-right-text {
        margin-left: 0;
    }

    .left-list {
        order: 2;
    }

    .years-list-year {
        padding-left: 80px;
    }

    .list-layout-wrapper {
        padding-left: 5rem;
    }

    .grid-layout-item-body,.wpra-item-list--bullets.wpra-item-list--default {
        grid-template-columns: 100%;
    }
     .hero-block canvas {
        touch-action: pan-y !important;    }
}

@media (max-width: 768px) {
    .sidebar-inner {
        padding-bottom: 80px;
    }

    .banner-image-wrap,.centered-image-title{
display: none;
}
    .centered-banner .banner-bottom-wrap{
        justify-content: space-between;
    }
    .centered-banner .banner-block-content{
        padding: 0;
        border: 0;
    }
    .header_brand-pages{
        height: 26px;
    }
    .cv-block-item-mob .cv-block-toptitle {
        padding-right: 1rem;
    }

    .crop-checked {
        display: none;
    }

    .hidden-text {
        display: none;
    }

    .mobile-read-more:not(.expanded) .preview-text p:last-child::after {
        content: "...";
        color: var(--black);
        margin-left: 0;
    }

    .mobile-read-more.expanded .preview-text p:last-child::after {
        content: "|";
        color: #4aa3c6;
        margin-left: 0.4em;
    }


    .mobile-read-more.active .hidden-text,
    .mobile-read-more {
        display: block;
    }

    .banner-title {
        font-size: 16px;
		text-align:center;
    }

    .grig-title-wrapper .image-grid_title {
        font-size: clamp(3rem, 3.8vw, 3.825rem);
    }

    .image-grid_arrow {
        width: 1.6rem;
        height: 1.6rem;
    }

    header .logo-lg-mobile {
        height: 100%;
    }

    .black-header .header {
        align-items: end;
    }

    .logo-lg-desk-home {
        opacity: 0;
    }

    .logo-lg-mobile-home {
        opacity: 1;
    }

    .sidebar.active {
        width: 100%;
    }

    .sidebar-inner {
        height: 100%;
    }

    .sidebar-close {
        margin-bottom: 140px;
    }
    .header .header_brand {
        height: 26px;
        width: 150px;
    }

    .hero-video {
        /* min-height: 100svh; */
        min-height: unset;
        background: #fff;
    }

    .hero-video .hero_background {
        height: 100%;
        position: unset;
    }

    .hero-video .container-hero {
        padding-top: 3rem;
        min-height: unset;
        padding: calc(2rem + 15px);
    }

    .hero_background_video {
        aspect-ratio: 1/1;
    }

    .hero_background.has-mobile-video .hero_video_desktop {
        display: none;
    }

    .hero_background.has-mobile-video .hero_video_mobile {
        display: block;
    }

    .container-hero {
        min-height: 100svh;
        padding: 0 1.25rem 3rem;
    }

    .hero-title {
        font-size: clamp(1.25rem, 6vw, 2rem);
    }

    .hero-video .hero-inner {
        text-align: center;
    }

    .cv-block .cv_group-line {
        padding: 0 20px;
    }

    .hero-video .hero-title .white-text {
        color: #000;
    }

    .hero-video .hero-title {
        font-size: 20px;
    }

    .footer-card_content {
        padding-bottom: 1rem;
        padding-top: 8rem;
    }

    .footer-main_link-wrap {
        font-size: 18px;
    }

    .footer-main_link-wrap img {
        height: 30px;
    }

    .footer-main_link.invest img {
        height: 30px;
    }

    .footer-main_link-wrap:before {
        top: 13px;
    }

    .footer-main_link.invest .footer-main_link-wrap:before {
        left: -6px;
        top: 22px;
    }

    .footer-main_nav a {
        padding-left: 0 !important;
    }

    .footer-main-mobile {
        display: block;
    }

    .footer-main-desk {
        display: none;
    }

    .banner-bottom-wrap {
        align-items: center;
    }

    .overview-image--banner {
        display: block;
        width: 170px;
    }

    .banner-title-wrap-desk {
        display: none;
    }

    .banner-block-media {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .banner-title-wrap-mobile {
        display: flex;
        margin: 0 auto;
    }

    .banner-toptitle {
        display: none;
    }

    .years-list-year::before {
        content: ">";
    }

    .years-list-year,
    .years-list-text {
        padding-left: 25px;
    }

    .cv-block-item-second_group .banner-title-wrap-third {
        margin-bottom: 60px;
    }

    .cv-block-item-mob {
        margin-bottom: 20px;
        gap: 0;
    }

    .banner-title-wrap-top {
        margin-top: 1rem;
    }

    .cv-block-right-text {
        margin-right: 0;
    }

    .cv-block-toptitle--second-lang-mobile {
        display: flex;
        margin-bottom: 0.5rem;
    }

    .cv-block-item-third-mobile br,
    .cv-block-toptitle--second-lang-desk,
    .cv-block-item-third-desk {
        display: none;
    }

    .cv-block-toptitle {
        text-align: end;
    }

    .overview-image-link-wrap {
        display: none;
    }

    .list-layout-wrapper {
        padding-left: 0;
    }

    .list-layout-item {
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1.5rem;
    }

    .list-layout-wrapper .overview-right-title {
        padding-left: 1rem;
    }

    .hero-block canvas {
        top: 50px;
    }

    .portrait_text h2 {
        font-size: 18px;
    }

    section {
        padding: 50px 0;
    }

    .image-block-with-quote .background_image,
    .image-block-with-quote .background_video {
        aspect-ratio: 1/1;
        object-fit: cover;
    }

    .years-list li {
        grid-template-columns: 100%;
    }

    .cv-block-item {
        grid-template-columns: 100%;
    }

    .banner-block-inner,.centered-banner .banner-block-inner {
        grid-template-columns: 100%;
    }

    .image_content-quote {
        position: unset;
        margin: 0 auto;
        padding-top: 2rem;
        padding-bottom: 2.5rem;
        max-width: 190px;
    }

    .image-block-quote-text p .white-text {
        color: var(--accent-color);
    }

    .image_content-quote .layout_subtitle .white-text {
        color: var(--black);
    }

    .image-block-quote-text p {
        font-size: 24px;
    }

    .footer-card_line-svg {
        width: 10px;
        height: 10px;
    }

    .footer-card {
        padding: 1rem 1.5rem;
    }

    .image-grid_image {
        width: 100%;
    }

    .image-grid_inner {
        grid-template-columns: 100%;
        gap: 20px;
    }

    .layout_inner {
        grid-template-columns: 100%;
        gap: 30px;
        padding: 0 2rem;
    }

    .layout_right p {
        margin-top: 0;
    }

    .layout_title {
        margin-bottom: 25px;
    }

    .custom-cursor {
        display: none;
    }

    .scroll-line-wrapper {
        display: none !important;
    }

    .hero-block {
        aspect-ratio: 1/1.5;
    }

    .custom-cursor {
        width: 140px;
        height: 140px;
    }

    .statement_image_left {
        display: none;
    }

    /* .statement_image_left,
    .statement_fill {
        display: none;
    } */

    /* .statement-section_text {
        clip-path: inset(0 0% 0 0);
    } */

    /* .statement_image_right {
        opacity: 1;
    } */

    .statement_row {
        display: block;
        font-size: 24px;
    }

    .portrait {
        grid-template-columns: 100%;
    }

    .image_content {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        gap: 1rem;
    }

    .image_tag {
        width: auto;
    }

    .site-footer_inner {
        grid-template-columns: 100%;
        max-width: 230px;
    }

    .footer-video {
        display: none;
    }

    .footer-video-main {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .footer-main_nav {
        padding: 1rem;
    }



    .overview-block-inner {
        grid-template-columns: 100%;
    }

    .overview-block-left {
        gap: 3rem;
    }

    .overview-list {
        margin-top: 3rem;
        padding: 0 2rem;
    }

    .cv-block-item,
    .cv-block-item-second,
    .cv-block-item-third,
    .cv-block-item-second_group {
        padding: 0 20px;
    }

    .cv-block-langs p:not(:last-child)::after {
        right: -13px;
    }

    .cv-block-langs {
        gap: 1rem;
    }

    .grid-layout-card {
        padding: 1rem;
    }

    .grid-layout-item-head {
        padding: 2rem 1rem;
    }

    .grid-layout-card-head {
        margin-bottom: 2rem;
    }

    .grid-layout-item-head-first {
        flex-direction: column;
    }

    .grid-layout-card-title {
        height: auto !important;
    }

    .grid-layout .cv_group-line {
        margin: 2rem 0;
    }

    .cv-block-text-list ul li:before {
        content: none;
    }

    .cv-block-text-list ul li {
        padding-left: 0;
    }

    .cv-block-text-list ul {
        gap: 1.5rem;
    }

    .left-list li {
        line-height: 25px;
    }

    .cv-block-item-third-mobile {
        display: block;
        padding-left: 0;
    }

    .image-block-quote-text {
        margin-top: 1rem;
    }

    .overview-link-mobile {
        display: block;
        margin-top: 2rem;
    }

    .overview-link-mobile-wrap {
        display: flex;
        justify-content: end;
    }

    br.desktop-only {
        display: none;
    }

    br.mobile-only {
        display: block;
    }

}

@media (max-width: 576px) {
	.grid-layout-card.with-image {
    	padding: 1.5rem;
	}
	.grid-layout-card.with-image .grid-layout-card-top{
		padding: 13%;
		padding-top: 30%;
	}
    .statement_image_right {
        flex: 0 0 36px !important;
    }

    .statement_row {
        font-size: 16px;
        line-height: 1.6;
    }

    .scroll-line-wrapper,
    .hero-sound-on {
        bottom: 15px;
    }

    .custom-cursor {
        width: 105px;
        height: 105px;
        text-align: center;
    }

    .list-layout-item {
        grid-template-columns: 100%;
        gap: 1rem;
    }

    .site-footer_inner {
        grid-template-columns: 100%;
        max-width: 230px;
    }

    .header .header_brand {
        width: 100px;
    }
}