@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-Black.woff') format("woff");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-BlackIt.woff') format("woff");
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-ExtraBold.woff') format("woff");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-XtraBoldIt.woff') format("woff");
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-Bold.woff') format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-BoldItalic.woff') format("woff");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-SemiBold.woff') format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-SemiBoldIt.woff') format("woff");
    font-weight: 600;
    font-style: italic;
}


@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean.woff') format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-Italic.woff') format("woff");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-Light.woff') format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-LightIt.woff') format("woff");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-Thin.woff') format("woff");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Century-Gothic-Paneuropean';
    src: url('../fonts/Century-Gothic-Paneuropean/CenturyGothicPaneuropean-ThinItalic.woff') format("woff");
    font-weight: 100;
    font-style: italic;
}


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

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

.undivided {
    display: inline-block;
}

/* 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 {
    --blue: #0099A8;
    --dark: #2B2E34;
    --white: #ffffff;
    --black: #000000;
    --green: #469429;
    --light-blue: #E7F5F7;
}

html,
body {
    font-family: 'Century-Gothic-Paneuropean';
}

section {
    padding: 100px 0;
    scroll-margin-top: 4rem;
}

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

.main-title {
    color: var(--dark);
    text-transform: uppercase;
    font-size: 21px;
    line-height: 25px;
    letter-spacing: 3.15px;
    font-weight: normal;
    position: relative;
    padding-left: 26px;
    display: inline-block;
    padding-right: 26px;
}
.main-title h2,.main-title h3,.main-title h4,.main-title h5, .main-title h6{
    display: inline;
}

.main-title::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--blue);
    position: absolute;
    left: 0;
    top: 20px;
}

.main-title::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--green);
    /* position: absolute; */
    right: 0;
    bottom: 3px;
}

.simple-text p,
p {
    font-size: 16px;
    color: var(--dark);
    line-height: 30px;
    letter-spacing: 0.56px;
}

.blue-line {
    background-color: var(--blue);
    height: 20px;
    vertical-align: middle;
    width: 2px;
    margin-right: 18px;
    display: inline-block;
}

.green-line {
    background-color: var(--green);
    height: 20px;
    vertical-align: middle;
    display: inline-block;
    width: 2px;
    margin-left: 18px;
}

.link {
    display: inline-block;
    border-radius: 50%;
    width: 195px;
    height: 195px;
    display: flex;
    z-index: 1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 800;
}



.link p {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 2px;
}

h2 strong,
strong {
    font-weight: 800;
}


/***************************************************************************************************************/
/************************************************** HEADER *****************************************************/

header {
    transition: background-color 1s, transform 1s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 13px 0 28px 0;
    background-color: var(--white);
}

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

header.white_bg {
    background-color: #fff;
}

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

.header .header_nav {
    display: flex;
    margin-bottom: 8px;
    gap: 135px;
}

.header .header_nav .header_nav_links {
    display: flex;
    align-items: end;
    gap: 15px;
}

.header .header_nav .header_nav_links-text {
    color: var(--dark);
}

.header .header_nav .header_nav_links-text span {
    color: var(--green);
    text-transform: uppercase;
}

.arrow_element {
    position: relative;
    padding-left: 13px;
}

.arrow_element::before {
    content: '';
    display: block;
    height: 0.5px;
    width: 7px;
    background-color: var(--green);
    position: absolute;
    left: 0;
    bottom: 4px;
}

.header_nav_links a span {
    font-size: 13px;
    line-height: 17px;
    text-transform: uppercase;
    letter-spacing: 1.95px;
    color: var(--blue);
}

.header-brand-text {
    display: flex;
    align-items: end;
}

.header-brand-text-line {
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 1.95px;
    margin-left: 10px;
    color: var(--dark);
}

.header_menu {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 12px;
    cursor: pointer;
}

.header_menu>span {
    color: var(--blue);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.59px;
}

.header_menu_burger {
    padding: 0;
    background-color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0;
}

.header_menu_burger>span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #000000;
    transition: 0.4s;
    margin: 2px 0;
}

.navigation.active .header_menu_burger>span {
    margin: 0 2px;
}
.navigation-links-mobile{
    display: none;
}

.navigation-links-mobile .link-presse{
    color: #a8d1f2; 
    position: relative;
    padding-left: 30px;
}
.navigation-links-mobile .link-presse::before{
    content: '';
    background-image: url('../img/presse-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
}

.navigation-links-mobile .link-arbeitskreise{
    color: #0065b9; 
    position: relative;
    padding-left: 30px;
}
.navigation-links-mobile .link-arbeitskreise::before{
    content: '';
    background-image: url('../img/link-arbeitskreise.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
}

.navigation-links-mobile .link-uber-mich{
    color: #009ac9; 
    position: relative;
    padding-left: 30px;
}
.navigation-links-mobile .link-uber-mich::before{
    content: '';
    background-image: url('../img/link-uber-mich.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
}

.navigation-links-mobile .link-beratungsangebot{
    color: #19a400; 
    position: relative;
    padding-left: 30px;
}
.navigation-links-mobile .link-beratungsangebot::before{
    content: '';
    background-image: url('../img/link-beratungsangebot.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
}


.navigation-links-mobile .link-unternehmensnachfolge{
    color: #b60073; 
    position: relative;
    padding-left: 30px;
}
.navigation-links-mobile .link-unternehmensnachfolge::before{
    content: '';
    background-image: url('../img/link-unternehmensnachfolge.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
}

.header .header_brand .logo-sm {
    display: none;
}

.header .header_brand,
.navigation .header_brand {
    width: 215px;
    height: auto;
}

/***************************************************************************************************************/
/********************************************Navigation*********************************************************/

.navigation {
    display: none;
}

.navigation.active .navigation_header {
    background-color: #D9EDCD;
}

.navigation_header {
    background-color: #D9EDCD;
    transition: transform 1s;
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 13px 0 28px 0;
}

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

.navigation .header_menu {
    margin-bottom: 8px;
}

.modal-open {
    overflow: hidden;
}

.navigation.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #D9EDCD;
    z-index: 9999;
    /* overflow-y: auto; */
}

.navigation.active .header_menu_burger {
    flex-direction: row;
    margin-bottom: 3px;
}

.navigation-body {
    height: 100%;
    display: flex;
    align-items: center;
}

.navigation-content {
    /* display: flex;
    justify-content: end;
    width: 70%;
    margin-left: auto;
    margin-top: 5rem;
    padding-bottom: 5rem;
    position: relative; */
    position: relative;
    width: 100%;
    height: 100vh;
}

.navigation-content svg {
    top: 0;
    right: 5%;
    position: absolute;
    max-height: 20cm;
    max-width: 20cm;
    width: 80%;
    height: 80%;
}

.nav-btn-link {
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 1.3px;
    color: var(--dark);
    font-weight: 800;
    position: absolute;
    bottom: 42%;
    right: 6%;
    padding: 21px 36px 19px 36px;
    background-color: var(--white);
    border: 0.2px solid #0099A8;
    display: flex;
    gap: 11px;
}

.nav-svg-mob {
    display: none;

}

/*************************************************************/
/*************************************************************/
.hero-block-container {
    position: relative;
    aspect-ratio: 16 / 8;
    width: 100%;
    height: 100%;
    padding-top: 0;
    margin-top: 103px;
}

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

.arrow-wrapper-link {
    margin-left: 6rem;
}

.arrow-wrapper-link svg {
    position: relative;
    top: 12px;
}

.hero-block {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    /* margin-top: 3rem; */
}

.hero-block .container {
    height: 100%;
}

.hero-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 18%;
    position: relative;
    height: 100%;
}

.hero-inner {
    position: relative;
    height: 100%;
}

[data-aos="fade-right"] {
    transform: translateX(-500px) !important;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0) !important;
}

.hero-inner .link {
    position: absolute;
    right: 0;
    background-color: var(--white);
    left: 73%;
    white-space: nowrap;
    bottom: 40px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    pointer-events: none;
    height: 100%;
    align-items: flex-start;
    gap: 5px;
    padding-top: 70px;
    padding-bottom: 120px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 555;
}

.hero-title h1 {
    font-size: 32px;
    letter-spacing: 4.8px;
    line-height: 41px;
}
.hero-title h1.white{
    color: var(--white);
}

.hero-title--split {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 14rem !important;
    margin-left: 1rem;
    justify-content: center;
}

.hero-title--split h1 {
    font-size: 74px;
    letter-spacing: 1.85px;
    color: var(--white);
    font-weight: 800;
}

.hero-title strong {
    font-weight: 900;
}

.hero_background_mobile {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 9/13.5;
}

.hero-block--video .hero_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video.desktop-video {
    display: block;
}

.hero-video.mobile-video {
    display: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}


.inner-text {
    display: inline-block;
    opacity: 0;
    transform: translate(-30px, 30px) scale(0.9);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    transition-delay: 0.3s;
}

.inner-text.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/************************************************************/
/*************************************************************/
.text-block .main-title {
    margin-bottom: 50px;
}

.text-block-text {
    max-width: 840px;
    margin: 0 auto;
}

.text-block-inner {
    display: flex;
    align-items: end;
}

.text-block-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.text-block-title-col,
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 47px;
}

.text-block-title-col .text-block-two-col-title,
.hero-title .text-block-two-col-title {
    position: relative;
    padding-top: 17px;
    padding-left: 35px;
}

.text-block-title-col .text-block-two-col-title:first-child::before,
.hero-title .text-block-two-col-title:first-child::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 6px;
    background-color: var(--blue);
    position: absolute;
    left: 0;
    top: 0;
}

.text-block-title-col .text-block-two-col-title:last-child::before,
.hero-title .text-block-two-col-title:last-child::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 6px;
    background-color: var(--green);
    position: absolute;
    left: 0;
    top: 0;
}

.text-block-two-col-title {
    font-size: 25px;
    line-height: 150%;
    text-transform: uppercase;
    letter-spacing: 3.75px;
}

.text-block-two-col .text-block-text {
    margin-top: 60px;
}

ol {
    display: flex;
    flex-direction: column;
    list-style: none;
    counter-reset: item;
}

ol li {
    font-size: 16px;
    color: var(--dark);
    counter-increment: item;
    position: relative;
    padding-left: 2.5rem;
    line-height: 30px;
    letter-spacing: 0.56px;
}

ol li::before {
    content: counter(item, decimal-leading-zero);
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 800;
}

span.impressum-contact {
    color: #0099a8;
    width: 18px;
    display: inline-block;
    font-weight: 800;
}
.impressum-text{
    padding-top: 150px;
}
/***************************************************************/
/***************************************************************/
.quote-block {
    padding: 0;
}

.quote-right-item {
    background-color: #D9EDCD;
    padding: 120px 9px;
}

.quote-right-item-desc {
    display: block;
}

.quote-right-item-mob {
    display: none !important;
}

.quote-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
}

.quote-right-item-auhtor {
    margin-left: 214px;
}

.quote-right-item-auhtor p {
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 0.59px;
    color: var(--dark);
}

.quote-right-item-text {
    position: relative;
    padding-bottom: 114px;
    padding-top: 70px;
}

.quote-right-item-text p {
    letter-spacing: 3.15px;
    line-height: 60px;
    color: var(--dark);
    font-size: 21px;
}
.quote-right-item-text span.accent{
    font-size: 63px;
}
.quote-right-item-text p span {
    display: inline-block;
    margin-top: 20px;
}


.quote-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-right-item-text::before {
    content: '';
    display: inline-block;
    background-image: url("../img/quote_up.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 34px;
    height: 34px;
    position: absolute;
    left: 15%;
    top: -22px;
}

.quote-right-item-text::after {
    content: '';
    display: inline-block;
    background-image: url("../img/quote_down.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 34px;
    height: 34px;
    position: absolute;
    left: 15%;
    bottom: 0;
}

/**************************************************************/
/**************************************************************/
.slider-block {
    background-color: #D9EDCD;
}

.slick-track {
    display: flex;
    align-items: flex-start;
}

.slider-block-row {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    padding: 90px 210px;
 
}

.slider-block-row::before {
    content: '';
    display: inline-block;
    background-image: url(../img/quote_up.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0px;
    right: 50%;
    transform: translateX(-50%);
    line-height: 100%;
}

.slider-block-row::after {
    content: '';
    display: inline-block;
    background-image: url(../img/quote_down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 24px;
    height: 24px;
    right: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 0px;
}

.slider-block-row .slick-arrow {
    position: absolute;
    top: 50%;
    font-size: 0;
    z-index: 10;
    margin: -50px 0 0 0;
    width: 59px;
    height: 59px;
}

.slider-block-row .slick-arrow.slick-prev {
    left: 0;
    background: url('../img/dr.kasser_Pfeil_links.svg') center center / 30% no-repeat white;
    border-radius: 50%;
    z-index: 1111;
}

.slider-block-row .slick-arrow.slick-next {
    right: 0;
    z-index: 1111;
    background: url('../img/dr.kasser_Pfeil_rechts.svg') center center / 30% no-repeat white;
    border-radius: 50%;
}

.slide-text {
    font-style: italic;
}

.slide-author {
    position: absolute;
    right: 50px;
    top: -94px;
}

.slide-author p {
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-size: 13px;
}

.slide-author strong {
    font-weight: 700;
}

/**************************************************************/
/**************************************************************/
.grid-block-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    grid-auto-rows: auto;
}

.grid-block-inner video {
    width: 100%;
    height: 852px;
    object-fit: cover;
    display: block;
}

.grid-block-item {
    margin-bottom: 170px;
}

.blog-post-inner .grid-block-item {
    margin-bottom: 0;
}


.grid-item-title {
    font-size: 36px;
    z-index: 1;
    line-height: 45px;
    letter-spacing: 0.9px;
    text-transform: lowercase;
    font-weight: 800;
    margin-left: 40px;
    display: inline-block;
    position: relative;
    bottom: -13px;
}

.blog .grid-item-title {
    bottom: -16px;
}

.grid-block-item-video {
    position: relative;
}

.grid-block-item-video .grid-block-item-video-title {
    position: absolute;
    top: 46px;
    left: 0;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    width: -webkit-fill-available;
    margin: 0;
    padding: 0 40px;
}

.grid-block-item-video .grid-block-item-video-title.blog {
    justify-content: flex-start;
    gap: 12px;
    top: 30px;
}

.grid-block-item-video .grid-block-item-video-title span {
    flex: 0 0 auto;
}

.button-wrapper a {
    height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 8px;
    justify-content: end;
}

.button-wrapper svg {
    margin-right: 30px;
    width: 25px;
    height: 25px;
}

/**************************************************************/
/**************************************************************/
.feature-block video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-block .quote-right-item {
    background-color: #E3EDF2;
    padding: 200px 43px;
}


/**************************************************************/
/**************************************************************/
.layout-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 35px;
}

.layout-inner video {
    width: 100%;
    height: 852px;
    object-fit: cover;
    display: block;
}

.strategy-block .layout-inner video {
    height: auto;
    aspect-ratio: 1/1;
}

.strategy-block .layout-inner {
    align-items: start;
}

.strategy-block .simple-text-left {
    margin-top: 99px;
    margin-left: 10.5rem;
}

.strategy-block .simple-text h3, .quote-right-item .simple-text h3{
    font-size: 21px;
}

.strategy-block .simple-text-left ul,
.strategy-block .simple-text-left ol {
    margin-top: 15px;
}

.strategy-block .simple-text-left ol {
    display: flex;
    flex-direction: column;
    /*gap: 17px;*/

}

.strategy-block .simple-text-left ol li {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 2px;
}

.strategy-block .simple-text ul li::before {
    content: '' !important;
    width: 14px;
    height: 1px;
    bottom: 12px;
    background-color: var(--blue);
}

.strategy-block .simple-text-right {
    margin-left: 7rem;
}

.strategy-block .simple-text-right strong {
    font-weight: 700;
}

.strategy-block-item-video {
    margin-top: 15px;
    margin-bottom: 45px;
}

.strategy-block .layout-inner {
    gap: 130px;
}

.layout-inner .quote-right-item {
    background-color: transparent;
}

.layout-inner .quote-right-item .main-title {
    margin-bottom: 70px;
}

.layout-inner .simple-text ul {
    display: flex;
    flex-direction: column;

}

.layout-inner .simple-text ul li {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 2px;
    position: relative;
    color: var(--dark);
    padding-left: 28px;
}

.layout-inner .simple-text ul li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-size: 14px;
}

.layout-inner-right {
    margin-top: -10rem;
    align-items: start;
}

.layout-inner-right .quote-right-item {
    margin-top: 13rem;
    padding: 0;
}

.layout-inner-right .simple-text {
    margin-top: 49px;
}

.layout_bottom_text {
    margin-top: 23px;
}

.layout-two-column img {
    width: 100%;
    height: 866px;
    object-fit: cover;
}

/*******************************************************************************************************/
/***************************************** FOOTER ******************************************************/

footer {
    background-color: var(--light-blue);
}

.footer {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 25px;
    row-gap: 25px;
    padding-bottom: 167px;
    padding-top: 92px;
}

.footer-arrow {
    width: 11px;
    display: inline-block;
    color: var(--black);
    font-weight: 400;
}

.footer-item-wr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
    margin-top: 15px;
    row-gap: 25px;
}

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

.footer_item>ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_item p {
    line-height: 27px;
    color: var(--dark);
}

.footer p.uppercase,
.uppercase,
#menu-footer-menu a {
    text-transform: uppercase;
}

#menu-footer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer p,
.footer a {
    font-size: 13px;
    letter-spacing: 0.97px;
    color: var(--dark);
}

.footer .blue {
    color: var(--blue);
    font-weight: 800;
}

.footer #menu-linkes-menu-footer li a {
    text-transform: uppercase;
}

.footer_item_logo img {
    max-width: 256px;
    height: auto;
}

.footer_item_logo>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-top-list {
    line-height: 20px !important;
    letter-spacing: 2.97px !important;
    margin-left: 12px;
    margin-top: 1rem;
}



/*******************************************************************************************************/
/***************************************** Accordion Block *********************************************/

.accordion-block-body .accordion {
    width: 100%;
    text-align: left;
    outline: none;
    padding-left: 27px;
    display: flex;
    justify-content: space-between;
    transition: 0.4s;
    cursor: unset;
    gap: 1.5rem;
    padding-bottom: 25px;
    padding-top: 25px;
    position: relative;
}

.accordion.active .accordion-arrow {
    transform: rotate(90deg);
}

.accordion-arrow {
    margin-right: 27px;
}

.acc-title {
    display: inline;
    font-weight: 600;
    font-size: 19px;
    line-height: 24px;
    letter-spacing: 0.47px;
}

.acc-title h3 {
    display: inline;
}

.acc-title-wrap {
    display: inline;
}

.acc-title-wrap .blue-line:last-child {
    margin-right: 0;
    margin-left: 8px;
}

.accordion-block-body-item {
    position: relative;

    cursor: pointer;
}

.accordion-block-body-item p {
    letter-spacing: 0.59px;
    line-height: 28px;
}

.accordion-block-body-item li,
.text-block-paragraph li,
.window-text-item li {
    line-height: 140%;
    display: flex;
    gap: 15px;
    padding-bottom: 7px;
}

.accordion-block .main-title {
    margin-bottom: 110px;
}

.accordion-block-body .panel {
    max-height: 0;
    margin-left: 220px;
    margin-right: 115px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-block-body-item.active {
    background-color: #E3EDF2;
    margin: 7px 0;
    padding-bottom: 25px;
}

.accordion-block-body-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--black);
}

.accordion-block-body-item.active::after {
    bottom: -7px;
}

/*******************************************************************************************************/
/***************************************** Form block **************************************************/

.form-block-inner {
    padding-top: 46px;
    padding-bottom: 170px;
    background-color: #D9EDCD;
}

.form-block-wr {
    background-color: var(--white);
}

.form-inputs-wrapper {
    padding: 100px 130px;
}

form {
    text-transform: uppercase;
}

.form-block {
    padding-bottom: 120px;
}

.form-header-inner {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-left: 5px solid #2B2E34;
    border-right: 1px solid #00000033;
    display: grid;
    grid-template-columns: 9fr 1fr;
    align-items: center;
}

form>p {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

form .title-form {
    font-size: 21px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.wpcf7-form-control-wrap {
    z-index: 1;
}

.form-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 30px;
    text-transform: uppercase;
}

.form-block-title {
    color: #A2297F;
    margin-bottom: -9px;
    font-size: 36px;
    letter-spacing: 0.9px;
    font-weight: 800;
    margin-left: 3rem;
}

.form-block-subtitle {
    margin-bottom: 86px;
    letter-spacing: 72px;
    margin-left: 3rem;
    font-size: 36px;
    font-weight: 800;
    color: var(--blue);
}

.form-block-btm {
    padding-top: 35px;
}

.form-inputs-sec {
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 0;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.input-block1 {
    grid-area: 1 / 1 / 2 / 2;
}

.input-block2 {
    grid-area: 1 / 2 / 2 / 6;
}

.input-block3 {
    grid-area: 2 / 1 / 3 / 3;
}

.input-block4 {
    grid-area: 2 / 3 / 3 / 6;
}

.input-block5 {
    grid-area: 3 / 1 / 4 / 6;
}

.input-block6 {
    grid-area: 4 / 1 / 4 / 6;
}

.input-block7 {
    grid-area: 5 / 1 / 6 / 6;
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: transparent;
}

.form-inputs label {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1.92px;
    font-weight: 700;
}

.form-inputs .blue {
    color: var(--blue);
}

.form-inputs .input-block {
    display: flex;
    flex-direction: column;
}

.form-inputs-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    align-items: end;
    text-transform: uppercase;

}


.form-inputs .input-block p {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-inputs .input-block input,
.form-inputs-top .input-block input {
    width: 100%;
    border: 1px solid;
    padding: .5rem 1rem;
    border-radius: 0;
    border-color: #00000033;
    font-weight: 300;
    color: #2B2E3480;
    height: 48px;
}

.form-inputs .input-block textarea {
    width: 100%;
    border: 1px solid;
    padding: 1.5rem 1rem;
    border-radius: 0;
    border-color: #00000033;
    resize: none;
}

.form-inputs .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 0.5rem;
}

form:has(.kontakt-bewerbungs) .permission {
    margin-top: 2rem;
}

.form-list-title {
    font-style: oblique;
    position: relative;
    padding-right: 20px;
    font-size: 18px;
    cursor: pointer;
}

.form-list-title::after {
    content: '';
    background-image: url(./assets/img/bold-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 10px;
    height: 10px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 8px;
    transform: rotate(180deg);
    cursor: pointer;
    transition: all 0.3s;
}

.form-list-title.open::after {
    transform: rotate(0deg);
}

.form-list {
    display: none;

}

.kontakt-checkbox .wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    column-gap: 20px;
    row-gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}


.kontakt-checkbox .wpcf7-form-control.wpcf7-checkbox span {
    color: var(--dark);
}

.form-btn {
    padding: 0;
    border: none;
    font-size: 13px;
    position: relative;
    font-weight: 800;
    letter-spacing: 1.3px;
    color: #2B2E34;
    line-height: 1;
    text-transform: uppercase;
}

.form-btn:hover,
.form-btn:focus {
    background: transparent;
}

form .button-wrapper {
    padding: 20px 30px;
    border-color: #00000033;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    display: flex;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 73px;
    max-width: 297px;
    width: 100%;
    cursor: pointer;
    transition: all 0.4s ease-out;
}

form .button-wrapper:hover {
    gap: 20px;
}

form .button-wrapper::after {
    content: '>>';
    font-size: 10px;
    position: relative;
    display: block;
    background-repeat: no-repeat;
    left: 12px;
    color: var(--blue);
    background-position: center;
    background-size: contain;
}

.wpcf7-spinner {
    position: absolute;
    bottom: 0;
}

.sticker span {
    color: red;
}

.list-checbox-hr {
    margin-bottom: 65px;
    padding-bottom: 71px;
    border-bottom: 1px solid #000;
}

.list-checbox input[type="checkbox"] {
    width: auto;
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.wpcf7-list-item.first.last {
    font-weight: 800;
}

.list-checbox input[type="checkbox"]:checked+.wpcf7-list-item-label,
.list-checbox input[type="checkbox"]:not(:checked)+.wpcf7-list-item-label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.3;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: none;

}

.permission input[type="checkbox"]:checked+.wpcf7-list-item-label,
.permission input[type="checkbox"]:not(:checked)+.wpcf7-list-item-label {
    align-items: flex-start;
}

.list-checbox input[type="checkbox"]:checked+.wpcf7-list-item-label::before,
.list-checbox input[type="checkbox"]:not(:checked)+.wpcf7-list-item-label::before {
    content: "";
    width: 20px;
    aspect-ratio: 1/1;
    border: 1px solid #0099A8;
    margin-bottom: 3px;
    flex: 0 0 20px;
}

/* .wpcf7-checkbox .wpcf7-list-item-label {
    color: red;
} */

.list-checbox input[type="checkbox"]:checked+.wpcf7-list-item-label::after,
.list-checbox input[type="checkbox"]:not(:checked)+.wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: #E3EDF2;
    left: 1px;
    top: 1px;
    width: 18px;
    aspect-ratio: 1/1;
}

.list-checbox input[type="checkbox"]:not(:checked)+.wpcf7-list-item-label::after {
    opacity: 0;
}

.list-checbox input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
    opacity: 1;
}

.wpcf7-list-item {
    margin: 0;
    display: block;
}

.input-block .select2-container--default .select2-selection--single {
    border-radius: 0;
    border-color: #00000033;
}

.input-block .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 18px;
    transform: rotate(90deg);
    transform-origin: center;
    height: fit-content;
}

textarea::placeholder {
    color: #7F7F7F;
    font-size: 15px;
}

.input-block .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: rotate(-90deg);
    top: 8px;
}

.input-block .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.input-block .select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: '>';
    border-color: transparent;
    border-style: none;
    font-weight: 700;
    color: var(--red);
    font-size: 15px;
}

.list-checbox.permission .wpcf7-list-item .wpcf7-list-item-label {
    color: var(--red);
}

.input-block .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(0deg);
}

.input-block .select2-container .select2-selection--single {
    height: 100%;
}

.input-block .select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    padding-left: 20px;
    height: 46px;
}

.select2-results__option {
    padding-left: 20px;
}

.permission p {
    display: flex;
    flex-direction: column;
}

.permission small {
    padding-left: 33px;
    font-size: 15px;
    text-transform: none;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 200%;
    letter-spacing: 0.4px;
}

/**************************************************************/
/**************************************************************/
.list-block-inner {
    max-width: 860px;
    margin: 0 auto;
}

.list-block-item-title h2 {
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 0.53px;
    font-weight: 800;
}

.list-block-item-title {
    margin-bottom: 15px;
}

.list-block-item-text a {
    font-size: 16px;
    color: var(--dark);
    line-height: 30px;
    letter-spacing: 0.56px;
}

.list-block-item {
    padding-bottom: 56px;
    border-bottom: 0.5px solid #000;
    margin-bottom: 60px;
}

.list-block-item:last-child {
    border-bottom: 8px solid var(--blue);
    margin-bottom: 0;
}

.list-block.impressum .list-block-item-text p,
.list-block.impressum .list-block-item-title p strong {
    letter-spacing: 2px;
}

/***************************************************************/
/**************************************************************/
.info-block .list-block-inner {
    margin-top: 47px;
}

.info-block .list-block-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

/**************************************************************/
/**************************************************************/
.image-block .main-title {
    margin-bottom: 105px;
}

.image-block-wrapper {
    max-width: 840px;
    margin: 0 auto;
}

.image-block .text-block-text {
    margin-top: 47px;
}

.image-block-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-block:not(:has(.main-title)) {
    padding-top: 0px;
}

/**************************************************************/
/**************************************************************/
.blog-post-inner .grid-block-item-video img {
    width: 100%;
    aspect-ratio: 9/13;
    object-fit: cover;
}


.blog-post-inner .grid-block-item-video .grid-block-item-video-title,
.blog-post-inner .grid-item-title {
    font-size: 24px;
}

.grid-block-empty {
    height: 250px;
}

.flexmasonry-cols-3 .flexmasonry-item {
    width: calc(33.333% - 21.333px);
}

.blog-post-inner .grid-block-item-video {
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
}

.blog-item-title {
    font-size: 16px;
    color: #0099A8;
    line-height: 20px;
    letter-spacing: 1.2px;
    margin-bottom: 34px;
    text-transform: uppercase;
}

.blog-item-text p {
    display: -webkit-box;
    /*-webkit-line-clamp: 1;*/
    -webkit-box-orient: vertical;
    /*overflow: hidden;*/
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-post-link {
    font-size: 12px;
    color: #0099A8;
    padding-bottom: 50px;
    display: block;
    border-bottom: 8px solid var(--blue);
    letter-spacing: 1.2px;
}

.article-bottom-el {
    height: 50px;
}

.blog-item-bg .grid-block-item-video-title {
    position: unset;
    margin-top: 1rem;
}

@media (max-width: 1200px) {
    .text-block-inner {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .hero-title {
        top: 50%;
        height: auto;
        padding: 0;
        transform: translateY(-50%);
    }

    .hero-title--split {
        left: 7%;
    }

    .hero-inner .link {
        bottom: 0;
    }

    .header-brand-text {
        flex-direction: column;
        align-items: start;
    }

    .hero-block-container {
        margin-top: 122px;
    }

    .grid-block-inner video {
        height: 700px;
    }

    .grid-block-item {
        margin-bottom: 100px;
    }

    .strategy-block .layout-inner {
        gap: 50px;
    }

    .strategy-block .simple-text-left {
        margin-left: 5rem;
    }
}

@media (max-width: 1024px) {
    .strategy-block .layout-inner {
        gap: 30px;
    }

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

    .quote-right-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title h1 {
        font-size: 25px;
        line-height: 30px;
    }

    .hero-title--split h1 {
        font-size: 35px;
    }
}

@media (max-width: 992px) {
    .text-block-two-col {
        grid-template-columns: 100%;
    }

    .slider-block-row {
        padding: 50px 100px;
        min-height: 350px;
    }

    .slide-author {
        top: -50px;
    }

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

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

    .footer-item-wr {
        margin-left: 12px;
    }

    .header-brand-text-line {
        display: none;
    }

    .navigation-content svg {
        left: 0;
        right: auto;
    }

    .hero-block-container {
        margin-top: 95px;
    }

    .grid-block-inner video {
        height: 550px;
    }

    .form-block-subtitle {
        letter-spacing: 40px;
    }

    .form-inputs-wrapper {
        padding: 50px;
    }

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

    .layout-inner-right,
    .layout-inner-right .quote-right-item {
        margin-top: 0;
    }

    .quote-right-item {
        padding: 20px 0;
    }

    .layout-two-column img,
    .layout-inner video {
        height: auto;
    }

    .strategy-block .simple-text-left {
        margin-left: 0;
    }

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

    .flexmasonry-cols-2 .flexmasonry-item {
        width: calc(50% - 16px);
    }

}

@media (max-width: 768px) {
    .blue-line{
        margin-right: 12px;
    }
    .form-block-subtitle, .form-block-title{
        font-size:27px;
    }
    .form-block {
        padding-bottom: 60px;
    }
    .form-block-inner {
        padding-top: 32px;
    }
    section {
        padding: 50px 0;
    }
    .acc-title{
        font-size: 16px;
        line-height: 22px;
    }
    .quote-block {
        padding: 50px 0;
    }
    .text-block-two-col-title {
        font-size: 19px;
        
    }
    .image-block .main-title {
        margin-bottom: 43px;
    }
    .grid-block-inner {
        grid-template-columns: 100%;
    }

    .grid-block-item {
        grid-area: unset !important;
    }

    .grid-block-inner video {
        height: auto;
    }

    .header .header_nav {
        gap: 40px;
    }

    .hero_background img {
        position: relative;
    }
    .quote-right-item-text span.accent{
        font-size: 46px !important;
    }

    .hero-inner {
        /* position: absolute;
        top: 0;
        width: -webkit-fill-available; */
        position: unset;
    }
    .hero-title--split h1{
        color: #000;
    }

    /* .hero-block-container--video .hero-inner {
        position: unset;
    } */

    .hero-block-container {
        height: auto;
    }

    .hero-block {
        height: auto;
    }

    .hero-block .container {
        height: auto;
    }

    .hero-block-container {
        aspect-ratio: auto;
    }

    .hero-block-container--video {
        /* aspect-ratio: 2/3; */
        aspect-ratio: 0;
    }

    .hero-block-container--video.mob-version {
        /* background-color: #e2ebf0; */
        flex-direction: column;
        display: flex;
        align-items: end;
        justify-content: end;
    }

    /* .hero-block-container--video.mob-version .hero_background,
    .hero-block-container--video.mob-version .hero-video {
        position: unset;
    } */

    .hero-block-container--video.mob-version .hero_background {
        /* order: 2; */
        position: unset;
    }

    .hero-block-container--video.mob-version .hero-video {
        aspect-ratio: 1/1;
        position: unset;
    }

    .hero-block-container--video.mob-version .hero-block.hero-block--video {
        display: flex;
        flex-direction: column;
    }
    .quote-right-item-auhtor {
        margin-left: 190px;
    }
    .grid-block-item-video .grid-block-item-video-title{
        top:19px;
    }
    .hero-title {
        /* position: relative;
        top: 30%; */
         position: unset;
        padding-top: 45px;
        transform: none;
        padding-bottom: 0;
    }
    .layout-inner .quote-right-item .main-title {
        margin-bottom: 29px;
    }
    .strategy-block .layout-inner {
        gap: 100px;
    }
    .strategy-block .simple-text h3, .quote-right-item .simple-text h3 {
        font-size: 19px;
    }
    .accordion-block .main-title {
        margin-bottom: 23px;
    }
    .strategy-block .simple-text-left {
        margin-top: 29px;
    }
    .feature-block .quote-right-item {
        background-color: #E3EDF2;
        padding: 60px 43px;
    }
    .layout-inner .simple-text ul li {
        font-size: 15px;
    }
    .hero-title h1 {
        font-size: 20px;
        line-height: 26px;
    }
    .main-title{
        font-size: 19px;
        line-height: 26px;
    }
    .quote-right-item-text p{
        font-size: 19px;
        line-height: 49px;
    }
    
    .link {
        width: 180px;
        height: 180px;
    }
    .link p {
        font-size: 14px;
    }
    /* .hero-block-container--video .hero-title {
        position: unset;
        padding-top: 70px;
        transform: none;
        padding-bottom: 0;
    } */

    .hero-block {
        margin-top: 0px;
    }

    .grid-block-empty {
        display: none;
    }

    .hero-inner .link {
        right: 50px;
        left: auto;
        bottom: 37%;
    }

    footer .container {
        max-width: 1320px;
        padding: 0 15px;
    }

    .accordion-block-body .panel {
        margin-left: 27px;
        margin-right: 27px;
    }

    .grid-block-item {
        margin-bottom: 50px;
    }

    .form-inputs,
    .form-input-sec {
        grid-template-columns: 100%;
    }

    .input-block1 {
        grid-area: auto;
    }

    .input-block2 {
        grid-area: auto;
    }

    .input-block3 {
        grid-area: auto;
    }

    .input-block4 {
        grid-area: auto;
    }

    .input-block5 {
        grid-area: auto;
    }

    .input-block6 {
        grid-area: auto;
    }

    .input-block7 {
        grid-area: auto;
    }

    .form-header-title {
        font-size: 16px;
    }

    .permission small {
        padding-left: 0;
    }

    .form-block-subtitle {
        letter-spacing: 25px;
    }

    .form-block-title,
    .form-block-subtitle {
        margin-left: 0;
    }

    .text-block-inner {
        gap: 60px;
    }

    .nav-svg-mob {
        display: flex;
        margin: 0 auto;
    }

    .nav-svg-desc {
        display: none;
    }
    .navigation-body{
        overflow: scroll;
        align-items: start;
    }
    .navigation-content svg {
        position: unset;
        width: 60%;
        height: auto;
        max-height: none;
        max-width: 100%;
        aspect-ratio: 2/2.5;
    }
    .navigation-content{
        display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    }
    .navigation-links-mobile{
        display: flex;
        gap: 20px;
        flex-direction: column;
        padding-left: 10px;
        margin-bottom: 40px;
    }
    .navigation-links-mobile a{
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
    }

    .nav-btn-link {
        position: unset;
        justify-content: center;
        width: max-content;
        margin: 0 auto;
        display: flex;
        margin-top: 20px;
    }

    .form-block-inner {
        padding-bottom: 50px;
    }

    .grid-item-title,
    .grid-block-item-video-title,
    .grid-block-item-video .grid-block-item-video-title {
        font-size: 25px;
    }

    .hero_background_mobile,
    .hero-video.mobile-video {
        display: block;
    }
    .hero_background_mobile{
        aspect-ratio: 1/1;
    }

    .hero_background_desktop,
    .hero-video.desktop-video {
        display: none;
    }

    .hero-title--split {
        left: auto;
        flex-direction: column !important;
        gap: 20px !important;
        margin-left: 0;
        align-items: start;
    }

    .quote-right-item-desc {
        display: none;
    }

    .quote-right-item-mob {
        display: block !important;
    }
    .slider-block{
        margin-bottom: 50px;
    }
    footer{
        margin-top: 50px;
    }

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

@media (max-width: 576px) {
    .kontakt-checkbox .wpcf7-form-control.wpcf7-checkbox {
        row-gap: 20px;
    }

    .form-inputs-wrapper {
        padding: 50px 20px;
    }

    .form-block-subtitle {
        letter-spacing: 15px;
    }

    .hero-title {
        top: 35%;
    }

    .footer-item-wr {
        grid-template-columns: 100%;
    }

    .quote-right-item-text p span {
        font-size: 21px !important;
    }

    .slider-block-row {
        padding: 40px 20px 80px 20px;
    }

    .slider-block-row .slick-arrow {
        top: auto;
        bottom: 0;
    }

    .header .header_nav .header_nav_links {
        display: none;
    }

    .slide-author {
        position: relative;
        right: 0;
        top: auto;
    }

    .grid-block-inner video {
        height: auto;
    }

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

    .hero-block-container--video {
        aspect-ratio: 0;
    }

    form .title-form {
        font-size: 18px;
    }

    .quote-right-item-text {
        font-size: 21px !important;
    }

        .hero-inner .link {
        right: 18px;
        left: auto;
        bottom: 47%;
        width: 160px;
        height: 160px;
    }

}