@font-face {
    font-family: 'DIN';
    src: url('../fonts/DIN/DIN-Black.otf') format("opentype");
    font-weight: 900;
    font-style: normal;
}

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

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

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

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

@font-face {
    font-family: 'Disturbance';
    src: url('../fonts/Disturbance/DisturbanceWebW03-Regular.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;
}
.desktop-only{
display:block;    
}
/* 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;
    --white: #FFFFFF;
    --accent-color: #7AA62C;
}

body {
    font-family: 'DIN';
}

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

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

/***************************************************************************************************************/
/***************************************************************************************************************/
h1 {
    font-weight: 300;
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 2.25px;
    text-transform: uppercase;
}

h2 {
    font-size: 20px;
    font-weight: 300;
    line-height: 34px;
    letter-spacing: 1.5px;
}

p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
}

.disturbance-font {
    font-family: 'Disturbance';
}

/***************Header******************/

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

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

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

.header {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: end;
    gap: 6rem;
}

.header .header_nav {
    display: flex;
    gap: 82px;
    margin-bottom: 0.5rem;
}

.header .header_nav .header_nav_links {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.header .header_nav .header_nav_links a {
    font-size: 12px;
    position: relative;
    letter-spacing: 0.42px;
    padding-left: 17px;
}

.header_nav_links a span.arrow-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18px;
    color: var(--accent-color);
    margin-right: 5px;
}

.header .header_nav .header_menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    cursor: pointer;
}

.header .header_brand img {
    width: 58px;
    height: 49px;
    object-fit: contain;
}

.header_brand-mobile {
    display: none;
}

.header_brand a {
    display: flex;
    gap: 9px;
    align-items: center;
}

.header_brand span {
    font-family: "Disturbance";
    color: var(--black);
    margin-top: 0.5rem;
}

.arrow-title-arr {
    font-weight: 300 !important;
}

.header_nav_links .arrow_element {
    font-weight: 300;
    color: var(--black);
}


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

.hero-block .disturbance-font {
    font-size: 50px;
    letter-spacing: normal;
}

.hero-block {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.scroll-line-wrapper-mobile {
    display: none;
}

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

.hero_background_mobile {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-title {
    margin-top: 220px;
    width: 100%;
    display: inline-flex;
    justify-content: end;
    position: relative;
    right: -100px;
    opacity: 0;
    padding-right: 125px;
}


.hero-title h1 strong,
.hero-title h1 b {
    font-weight: 700;
}

.hero_background_video {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.hero_video_mobile {
    display: none;
}


.container-hero {
    height: 100%;
}

/***************Floating button******************/
.button-wrapper {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 8px solid #7aa62c;
    text-transform: uppercase;
    font-size: 16px;
}

.button-wrapper span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #7aa62c;
}

.button-wrapper .arrow-text {
    font-weight: 900;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 1.5rem;
}

.button-wrapper .arrow-text::after {
    content: "";
    background-image: url("../img/svg/green_arrow.svg");
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: 2px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.layout-block-button {
    z-index: 999999;
    bottom: 50px;
    position: fixed;
    right: 80px;
}

.button-wrapper .disturbance-font {
    font-size: 35px;
    color: var(--black);
}

/***************Layout******************/
.layout-block-inner {
    gap: 100px;
    display: grid;
    grid-template-columns: 1fr 2.2fr;
}

.layout-right-text p strong,
.layout-right-text p b {
    font-weight: 700;
}

.layout-left .disturbance-font {
    font-size: 35px;
    line-height: 0;
    letter-spacing: normal;
}

.layout-left strong {
    line-height: 0;
    font-weight: 700;
    display: inline-block;
}

.layout-right .disturbance-font {
    font-size: 28px;
}

.line-list li,
.arrow-list li {
    position: relative;
    padding-left: 30px;
    list-style: none;
    font-size: 15px;
    letter-spacing: 1.13px;
    line-height: 34px;
    font-weight: 300;
}

.line-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--accent-color);
}

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

.layout-right {
    padding-right: 7rem;
}

.layout-block-two-columns:has(+ .layout-block-two-columns) {
    padding-bottom: 0;
}

.layout-block-two-columns+.layout-block-two-columns {
    padding-top: 42px;
}


/******************Divider*****************/
.divider-line {
    width: 100%;
    height: 0.5px;
    background-color: #000;
}

.divider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-img {
    width: 59px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding-left: 1px;
    padding-right: 5px;
    padding-bottom: 5px;
}

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

/***********Video****************/
.video-grid-item {
    aspect-ratio: 1.4 / 1;
    overflow: hidden;
    position: relative;
}

.video-grid-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-grid-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 52px;
    margin-top: 2rem;
}

.video-grid-image-wrapper {
    width: 65px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 8px;
}

.video-grid-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/******************************************/
.contact-form-inner {
    background-image: url("../img/imr_Glühbirne_Freisteller_bright.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 200px auto;
    padding: 60px 0;
}

.contact-form {
    padding: 0;
    background: #ffffff;
    background: linear-gradient(135deg, rgba(235, 240, 242, 1) 0%, rgba(201, 205, 206, 1) 100%);
}

.contact-form form {
    max-width: 650px;
    margin: auto;
}

.seed-contact-form {
    --form-green: #7caf24;
    --form-text: #222;
    --form-border: #9a9a9a;
    --field-height: 48px;
    --column-gap: 42px;
    --row-gap: 17px;
    width: 100%;
    color: var(--form-text);
}

/* Field layout */

.seed-contact-form .form-grid {
    display: grid;
    gap: var(--row-gap) var(--column-gap);
    margin-bottom: 17px;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
    content: none;
}

.seed-contact-form .form-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seed-contact-form .form-grid--address {
    grid-template-columns: minmax(0, 2fr) minmax(160px, 1fr);
}

.seed-contact-form .form-grid--location {
    grid-template-columns: minmax(150px, 0.8fr) minmax(0, 2fr);
}

.seed-contact-form .form-field {
    display: block;
    margin: 0 0 var(--row-gap);
}

.seed-contact-form .form-grid .form-field {
    margin-bottom: 0;
}

.seed-contact-form .form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--form-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.seed-contact-form .form-field--required .form-label {
    color: var(--form-green);
    font-weight: 600;
}

/* CF7 inputs */

.seed-contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.seed-contact-form input[type="text"],
.seed-contact-form input[type="email"],
.seed-contact-form input[type="tel"],
.seed-contact-form textarea,
.seed-contact-form select {
    display: block;
    width: 100%;
    min-width: 0;
    height: var(--field-height);
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 0;
    background: #fff;
    color: var(--form-text);
    /*font: inherit;*/
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.seed-contact-form input:focus,
.seed-contact-form textarea:focus,
.seed-contact-form select:focus {
    border-color: var(--form-green);
    box-shadow: 0 0 0 2px rgb(124 175 36 / 18%);
}

/* Topics */

.seed-contact-form .form-topics {
    min-width: 0;
    margin: 30px 0 42px;
    padding: 0;
    border: 0;
}

.seed-contact-form .form-topics legend {
    margin-bottom: 18px;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.seed-contact-form .form-topics .wpcf7-checkbox {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 40px;
}

.seed-contact-form .form-topics .wpcf7-list-item {
    margin: 0;
}

.seed-contact-form .form-topics .wpcf7-list-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.seed-contact-form .form-topics .wpcf7-list-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.seed-contact-form .form-topics .wpcf7-list-item:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
}

.seed-contact-form .form-topics .wpcf7-list-item:nth-child(4) {
    grid-column: 2;
    grid-row: 1;
}

.seed-contact-form .form-topics .wpcf7-list-item:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.seed-contact-form .form-topics .wpcf7-list-item:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
}

.seed-contact-form .wpcf7-list-item label,
.seed-contact-form .form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.seed-contact-form .wpcf7-list-item-label {
    font-size: 14px;
    letter-spacing: 0.03em;
}

/* Custom checkboxes */

.seed-contact-form input[type="checkbox"] {
    appearance: none;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 0;
    background: #fff;
    cursor: pointer;
}

.seed-contact-form input[type="checkbox"]:checked {
    border-color: var(--form-green);
    background-color: var(--form-green);
}

.seed-contact-form input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--form-green);
    outline-offset: 3px;
}

/* Consent */

.seed-contact-form .form-consent {
    margin-bottom: 42px;
}

.seed-contact-form .form-consent .wpcf7-list-item {
    margin: 0;
}

.seed-contact-form .form-consent .wpcf7-list-item-label {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.seed-contact-form .consent-heading {
    color: var(--form-green);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.seed-contact-form .consent-description {
    max-width: 650px;
    color: #454545;
    font-size: 13px;
    line-height: 1.8;
}

/* Submit */

.seed-contact-form .form-submit {
    display: flex;
    justify-content: flex-end;
}

.seed-contact-form .form-submit>p {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.seed-contact-form input[type="submit"] {
    width: min(100%, 295px);
    min-height: 48px;
    padding: 13px 24px;
    border: 1px solid var(--form-border);
    border-radius: 0;
    background-color: #fff;
    color: var(--form-green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
    background-image:
        url("../img/svg/form-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 80px center;
    background-size: 9px;
}

.seed-contact-form input[type="submit"]:hover,
.seed-contact-form input[type="submit"]:focus-visible {
    border-color: var(--form-green);
    background-color: var(--form-green);
    color: #fff;
}

/* CF7 validation */

.seed-contact-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 12px;
}

.seed-contact-form .wpcf7-response-output {
    margin: 24px 0 0;
}


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

footer {
    padding-block: 80px;
}

.footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 25px;
}

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

.footer_item_wrapper {
    margin-bottom: 2rem;
}

.footer_item_logo img {
    max-width: 220px;
    height: auto;
    filter: grayscale(100%);
}

.footer-item-logo-title {
    font-size: 30px;
    color: var(--black);
}

.footer-item-logo-subtitle {
    font-size: 15px;
    letter-spacing: 6.3px;
    color: var(--black);
    margin-bottom: 14px;
    display: inline-block;
}

.footer_title a {
    color: var(--black);
    display: inline-block;
}

.footer_item_wrapper .md {
    font-weight: 500;
}

.footer_item_wrapper a {
    color: var(--black);
}

.footer_item_logo .footer-item-logo-subtitle {
    font-size: 30px;
}

.footer-bottom-first {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}

.footer-bottom-first img {
    max-width: 250px;
    width: 100%;
}

.footer-bottom-second {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 25px;
}

.footer-bottom-second img {
    object-fit: contain;
    height: 70px;
    width: max-content;
    margin: 0 auto;
    display: block;
}

.footer-bottom-third {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 600px;
    gap: 58px;
}

.footer_bottom-second-wrap {
    margin-top: 80px;
}

.footer_bottom-second-text {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 7.04px;
    font-weight: 300;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-bottom-third img {
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
}

.footer-bottom-third img:nth-child(1) {
    max-width: 230px;
}

.footer-bottom-third img:nth-child(2) {
    max-width: 102px;
    margin: 0 auto;
}

.footer-bottom-third img:nth-child(3) {
    max-width: 150px;
    margin: 0 auto;
}


.footer_bottom {
    display: grid;
    margin-top: 72px;
    grid-template-columns: 1fr 2fr;
    column-gap: 25px;
    row-gap: 25px;
}

.footer_item_icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_item_icons img {
    width: 14px;
}

.footer_item_icons a:nth-child(2) img {
    width: 15.5px;
}

.footer_item_icons a:nth-child(3) img {
    width: 16px;
}

.footer_item a {
    font-weight: 300;
    line-height: 28px;
    font-size: 15px;
    letter-spacing: 1.2px;
    display:inline-block;
}

.footer_item_icons-wrapper {
    display: flex;
    line-height: 28px;
    gap: 20px;
    font-weight: 300;
    align-items: center;
    font-size: 15px;
    letter-spacing: 1.2px;
}

.accent-text {
    letter-spacing: 1.13px;
}

/*******************************************************************************************************/
/***************************************** Accordion Block *********************************************/
.accordion-block .container {
    position: relative;
}

.faq-line {
    background-color: var(--black);
    width: 100%;
    margin-top: 5px;
    height: 6px;
}

.accordion-block .divider {
    margin-bottom: 20px;
}

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

.accordion-block-body .accordion-arrow {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    transform: rotate(95deg);
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.accordion-block-body-item {
    padding: 0 4rem;
    border-bottom: 0.5px solid var(--black);
    padding-bottom: 40px;
    padding-top: 40px;
    cursor: pointer;
    counter-increment: accordion;
}

.accordion::before {
    content: "0" counter(accordion);
    position: absolute;
    left: -45px;
    font-size: 20px;
    top: -13px;
    font-family: 'DIN';
    font-weight: 700;
}

.accordion-block img {
    width: 100%;
    height: auto;
}

/*.accordion-block img:nth-child(2){
    margin-top: -80px;
}*/

.accordion-wrapper{
    background-color: #e8e8e8;
    padding-top:60px;
    padding-bottom:300px;
    /*background-image:url(../img/in-medias-rees-branding-agentur-faq-stuttgart-baden-wuerttemberg.png);
    background-repeat: no-repeat;
    background-position: 19%;
    background-size: contain;*/
}

.accordion::after {
    content: "";
    position: absolute;
    top: -11px;
    background-color: var(--black);
    width: 0.5px;
    height: 25px;
    left: -13px;
    transform: rotate(15deg);
}

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

.accordion-block-body .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-block-body .panel p {
    margin-top: 1rem;
}

.accordion-block-body .panel p strong,
.accordion-block-body .panel p b {
    font-weight: 500;
}

.accordion-wrapper {
    position: relative;
    overflow-x:hidden;
}

.accordion-block-body-wrapper {
    padding: 0 15px;
    max-width: 1299px;
    width: 100%;
    margin: 0 auto;
}
.accordion-block-body-wrapper .window{
    position: relative;
    width: 200px;
    height: auto;
    margin: 60px;
    margin-left: auto;
    display: block;
}
.accordion-block-body-wrapper .stairs{
    position: absolute;
    bottom: 0;
    left: 4%;
    height: 100%;
    width: auto;
    max-width:405px;
}

.accordion-block-body {
    padding: 5rem 4rem;
    background-color: var(--white);
    counter-reset: accordion;
    z-index: 1;
    position: relative;
}

button.accordion{
    font-weight: 400;
}
button.accordion p {
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'DINRegular';
}

button.accordion p .disturbance-font {
    font-size: 35px;
    letter-spacing: normal;
}

.mobile-only{
    display:none;
}

.hero_background_gif {
    display: none;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1280px) {
    .button-wrapper .disturbance-font {
        font-size: 30px;
    }
    .hero-title {
        margin-top: 150px;
        padding-right: 90px;
    }

    .footer_bottom {
        grid-template-columns: 100%;
    }
    
    .layout-block-button {
        position: fixed;
        z-index: 999999;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100%;
    }

    .button-wrapper {
        width: 100%;
        height: auto;
        min-height: 45px;
        border-radius: 0;
        border: 0;
        border-top:0;
        background-color: #7aa62c;
    }

    .button-wrapper a {
        width: 100%;
        padding: 10px 20px;
        display: block;
        text-align: center;
    }
    .button-wrapper span{
        display: inline-block;
    }

    .button-wrapper .arrow-text::after{
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        right: 5px;
        width: 13px;
    }
    .button-wrapper .arrow-text{
        padding-bottom: 0;
        padding-right: 1.5rem;
        color: var(--white);
    }

    .button-wrapper .arrow-text::after{
        background-image: url("../img/svg/white-arrow.svg");
    }
    .desktop-only{
    display:none;    
}
   
}

@media (max-width: 992px) {
    .hero-title {
        margin-top: 100px;
        padding-right: 0px;
    }

    .layout-block-inner {
        grid-template-columns: 1fr 1.5fr;
        gap: 30px;
    }

    .layout-right {
        padding-right: 0;
    }

    .video-grid-items {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {

.accordion-block-body-item {
    padding: 40px 0 40px 3rem;
}

    .accordion-block-body {
        padding: 3rem 2rem
    }

    .header_nav_links a span.arrow-title {
        font-size: 16px;
        margin-right: 12px;
    }

    .header_brand-desk {
        display: none;
    }

    .header_brand-mobile {
        display: block;
        font-size: 2.3rem;
    }

    header.white_bg {
        padding: 10px 0 10px 0;
    }

    .footer-bottom-second img {
        margin: 0;
    }

    header {
        padding: 10px 0;
    }

    .header_brand span {
        margin-top: 0;
    }

    .header .header_nav {
        margin-bottom: 0;
    }

    .header {
        align-items: end;
        justify-content: space-between;
    }
    .header_brand a{
        align-items: end;
        gap:5px;
    }
    .header .header_nav .header_nav_links a{
        padding-left:0;
        padding-bottom: 6px;
    }
    .contact-form-wrap {
        background-image: url(../img/imr_Glühbirne_Freisteller_bright.png);
        background-repeat: no-repeat;
        background-position: calc(100% + 102px) top;
        background-size: 270px auto;
    }

    .contact-form-inner {
        background-image: none;
    }

    .seed-contact-form .form-consent {
        margin-bottom: 24px;
    }

    .footer-bottom-second {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .header .header_nav .header_nav_links {
        gap: 2.5rem;
    }

    .arrow-title-mobile {
        display: none;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
    }

    .video-grid-items {
        grid-template-columns: 100%;
        gap: 5px;
    }

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

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

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

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

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

    .hero-title {
        margin-top: 20px;
        justify-content: flex-start;
    }

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

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

    .seed-contact-form {
        --field-height: 48px;
        --row-gap: 18px;
    }

    .seed-contact-form .form-grid--2,
    .seed-contact-form .form-grid--address,
    .seed-contact-form .form-grid--location {
        grid-template-columns: minmax(0, 1fr);
    }

    .seed-contact-form .form-grid {
        gap: var(--row-gap);
        margin-bottom: var(--row-gap);
    }

    .seed-contact-form .form-grid .form-field {
        margin-bottom: 0;
    }

    .seed-contact-form .form-topics {
        margin-top: 28px;
        margin-bottom: 28px;
    }

    .seed-contact-form .form-topics .wpcf7-checkbox {
        display: grid;
        grid-template-columns: 100%;
        gap: 14px;
    }

    .seed-contact-form .form-topics .wpcf7-list-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .seed-contact-form .form-submit {
        display: block;
    }

    .seed-contact-form input[type="submit"] {
        width: 100%;
        max-width: none;
        background-position: right 40% center
    }

    .footer_bottom-second-text {
        margin-bottom: 10px;
    }

    .footer-bottom-third {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .footer_bottom-second-wrap {
        margin-top: 40px;
    }

    .footer-bottom-third img {
        margin: 0 !important;
        height:auto;
    }
}

@media (max-width: 576px) {
    .accordion-block-body-wrapper .stairs{
        /*max-width:300px;*/
        left: -25%;
        top:60px;
    }
button.accordion p {
    font-size: 16px;
}
button.accordion p .disturbance-font {
    font-size: 30px;
    
}
    .footer-bottom-third {
        gap: 25px;
    }
.mobile-only{
    display:block;
}
    .footer-bottom-third img:nth-child(1) {
        grid-column: 1 / -1;
    }

    .seed-contact-form input[type="submit"] {
        background-position: right 35% center
    }

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

    .footer-bottom-second {
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        font-size: 22px;
        line-height: 30px;
    }

    .hero-block .disturbance-font {
        font-size: 46px;
    }
}