@charset "UTF-8";

/*
Theme Name: Energy Unit
Author: AH-Effect
Author URI: https://www.a-h-effect.de
Description: Custom Theme of Energy Unit Alois Müller
Tested up to: 8.3
Requires PHP: 7.4
Version: 1.1
Text Domain: customtheme
*/

/* Basic START */
:root {
  --primary-color: #FFE621;
  --secondary-color:#E2001A;
  --light-color: #f3f3f3;
  --text-color: #4B4B4D;
}

@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  font-style: normal;
  src: url(assets/webfonts/OpenSans-Light.ttf) format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  font-style: italic;
  src: url(assets/webfonts/OpenSans-LightItalic.ttf) format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  src: url(assets/webfonts/OpenSans-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: italic;
  src: url(assets/webfonts/OpenSans-Italic.ttf) format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  font-style: normal;
  src: url(assets/webfonts/OpenSans-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  font-style: italic;
  src: url(assets/webfonts/OpenSans-BoldItalic.ttf) format("truetype");
}


html,
body {
  font-family: "Open Sans";
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
	color: var(--text-color);
	box-sizing: border-box;
	padding: 0;
	margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  background-color: #F8F8F8;
}

body * {
  scroll-margin-top: 130px;
}


.small {
  font-size: 14px;
}

.like-h1, 
.like-h2, 
.like-h3, 
.like-h4,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

.like-h2,
h2,
.like-h1,
h1 {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 32px;
  position: relative;
}

.like-h2:after,
h2:after,
.like-h1:after,
h1:after {
  content: ""; 
  width: 50px; 
  height: 1px; 
  background-color: var(--text-color);
  display: block;
  position: absolute;
  left: 0;
  bottom: -15px;
}

.like-h3,
h3 {
  font-size: 22px;
  line-height: 30px;
}

.like-h4,
h4 {
  font-size: 18px;
  line-height: 24px;
}

.align-left {
  text-align: left;
}

strong,
b {
  font-weight: 600;
}

:focus {
  outline: unset !important;
}

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

input[type="search"] ,
form input[type="text"],
form input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

p {
  margin-top: 0;
}

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

.mobile-menu {
  display: none;
}

.bg-white {
  background-color: #ffffff;
}

.bg-primary {
  background-color:var(--primary-color) !important;
  color: #ffffff;
}

.bg-secondary {
  background-color:var(--secondary-color) !important;
}

.bg-light {
  background-color: var(--light-color)!important;
}

.bg-text {
  background-color: var(--text-color)!important;
  color: #ffffff;
}

.bg-text h1:after, 
.bg-text h2:after {
  background-color: #ffffff;
}

.like-a-link {
  cursor: pointer;
}

.entry-content a,
.entry-content a:hover,
.entry-content a:focus,
.entry-content a:active,
.entry-content a:visited {
  font-weight: 600;
  text-decoration: none;
  color: var(--text-color);
}

.entry-content > .wp-block-group,
body .wpcf7 form .wpcf7-response-output,
.entry-content > .wp-block-columns,
.wp-block-gallery,
.footer-wrapper,
.header-wrapper,
.container {
  margin: 0 auto;
  max-width: 1460px;
  padding-left: 20px; 
  padding-right: 20px;
}

.entry-content > .wp-block-group.has-background {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 20px;
  max-width: 1420px;
}


.entry-content > .wp-block-group.yellow-borders {
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}


body .wpcf7 form .wpcf7-response-output {
  max-width: 920px;
}


.entry-content > .wp-block-columns:first-child {
  padding-top: 60px;
}

:where(.wp-block-columns) {
  margin-bottom: 0;
}

.row {
  margin-left: -20px; 
  margin-right: -20px; 
}

.row > .col-sm {
  padding-left: 20px; 
  padding-right: 20px;
}

.entry-footer {
  display: none;
}

img, 
video {
  width: 100%;
}

sub,
sup {
	line-height: 1;
}

.displaynone {
  display: none !important;
}

button,
a.button,
a.wp-block-button__link,
a.wp-block-button__link:active,
a.wp-block-button__link:visited,
a.wp-block-button__link:focus,
input[type="submit"] {
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  padding: 10px 25px 10px 38px;
  border: 0;
  font-size: 16px;
  line-height: 22px;
  margin: 25px 0 0 0;
  display: inline-block; 
  background-image: url(assets/images/hook.svg); 
  background-size: 8px auto; 
  background-position: left 20px center;
  background-repeat: no-repeat;
}

button:hover,
a.button:hover,
a.wp-block-button__link:hover,
input[type="submit"]:hover {
  background-color: var(--text-color); 
  color: #ffffff;
  background-image: url(assets/images/hook-white.svg); 
}

button.backlink,
a.button.backlink {
  background-image: url(assets/images/hook-left.svg); 
}

button.backlink:hover,
a.button.backlink:hover {
  background-image: url(assets/images/hook-left-white.svg); 
}


.has-large-font-size a.wp-block-button__link {
  padding: 30px 55px 30px 68px;
  background-size: 14px auto;
  background-position: left 30px center;
}
/* Basic END */

/* Header START */

header#masthead {
  background-color: var(--primary-color); 
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100%;
  z-index: 10;
}

body.admin-bar header#masthead {
  top: 32px;
}

#page {
  padding-top: 80px;
  overflow: hidden;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 100%;
  padding-right: 30px;
  padding-left: 30px;
}

#primary-menu-list {
  display: flex; 
  list-style-type: none;
  margin: 0; 
  padding: 0;
}

#primary-menu-list a {
  margin-right: 30px;
  color: var(--text-color); 
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

#primary-menu-list a:before {
  content: ""; 
  width: 0px;
  height: 1px; 
  background-color: var(--text-color); 
  position: absolute;
  left: 0; 
  bottom: -3px;
  transition: all 0.5s ease-in-out;
}

#primary-menu-list a:hover:before {
  width: 100%; 
}

.site-logo  {
  min-height: 100%; 
  display: flex;
  z-index: 22;
}
.site-logo .custom-logo-link {
  background-color: var(--primary-color);
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 40px;
  /* padding-top: 220px; */
  padding-top:9px;
  padding-bottom: 9px;
  transition: all 0.5s ease-in-out;
}

header.sticky .site-logo .custom-logo-link {
  padding-top: 9px;
}

.site-logo img {
  width: 216px;
}


/* #energyunitwaermepumpe  .text-wrapper:after, */
.wp-block-lazyblock-headerslider  .text-wrapper:after  {
  content: "";
  width: 100%;
  height: 90px;
  z-index: -5;
  background-color: var(--primary-color);
  display: block;
  position: absolute;
  left: 0;
  bottom: -90px;
  background-image: url(assets/images/logo-energy-unit.svg);
  background-size: auto 75%; 
  background-repeat: no-repeat;
  background-position: center center;
}
/* Header END */

/* Text-Bild-Slider START */
.text-wrapper {
  padding: 45px 40px;
  margin: 90px 0;
  z-index: 1;
  position: relative;
}


/* #energyunitwaermepumpe  .text-wrapper {
  margin-bottom: 0;
} */

#energyunitwaermepumpe .slick-dots {
  display: none !important;
}

.text-image-slider .slide-row,
.text-image-slider .slick-slider, 
.text-image-slider .slick-list, 
.text-image-slider .slick-track,
.text-image-slider .slick-slide {
  height: 100%;
}
.text-image-slider .slide-row,
.text-image-slider .slick-slider {
  margin-left: -120px;
  z-index: 0;
}

.text-image-slider.image-left .slide-row,
.text-image-slider.image-left .slick-slider {
  margin-right: -120px; 
  margin-left: 0;
}

.text-image-slider .slick-slide {
  background-size: cover; 
  background-position: center center;
  border-bottom: 5px solid var(--primary-color);
}

.special .text-image-slider .slider-wrapper {
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  width: 100%;
}

.fullheight .text-image-slider .slider-wrapper {
  height: 100%;
}

ul.slick-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0; 
  padding: 0; 
  list-style-type: none;
}

ul.slick-dots button {
  padding: 0; 
  font-size: 0; 
  color: transparent; 
  margin: 0 2px;
  width: 50px;
  background-image: none;
  height: 5px;
  cursor: pointer;
}

ul.slick-dots button:hover {
  background-color: var(--primary-color);
}

ul.slick-dots li:not(.slick-active) button {
  background-color: var(--text-color);
}
/* Text-Bild-Slider END */

/* One Video START */
.text-image-slider.video.image-left .video-wrapper,
.one-video .video-wrapper {
  /* margin-right: -120px;  */
  margin-right: -40px;
  z-index: 0;
  position: relative;
}

.one-video .text-wrapper {
  padding: 42px 40px;
}

.one-video .video-wrapper {
  padding-top: 45px; 
  padding-bottom: 45px;
}

.text-image-slider.video.image-right .video-wrapper,
.one-video.video-right .video-wrapper {
  margin-right: 0; 
  margin-left: -40px;
  height: 100%;
}

.text-image-slider.video .video-wrapper video,
.one-video.video-right .video-wrapper video {
  height: 100%;
  object-fit: cover;
}

.one-video video {
  display: block;
}

.one-video .text-wrapper:not(.with-margin) {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.one-video .col-sm-12:not(.img-col),
.one-video .img-col {
  display: flex;
  align-items: center;
}

.one-video .text > p:last-child {
  margin-bottom: 0;s
}

.text-image-slider.video .text-wrapper {
  margin: 0;
}

.text-image-slider.video  > .container > .row {
  align-items: center;
}

/* .one-video .text-wrapper.with-margin {
  margin: 
} */

/* .one-video .row {
  align-items: center;
} */

table {
  width: 100%; 
}

table tr {
  background-color: transparent !important;
}

table td {
  text-align: center;
  background: transparent;
}

table tr:first-child td {
  font-weight: 600;
  background-color: var(--text-color); 
  color: #ffffff;
}

.bg-text table td {
  color: #ffffff;
}

.bg-text table tr:first-child td {
  color: var(--text-color);
  background-color: var(--light-color);
}
/* 
.entry-content .col-sm-12 > table {
  width: auto;
} */

body .is-style-stripes table td {
  padding: 4px 10px;
  border: 0;
  border-bottom: 1px solid  var(--text-color);;
  border-color: rgba(75,75,77,0.25)!important;
}

body .is-style-stripes table tr:first-child td {
  background-color: #ffffff;
  border-bottom: 3px solid;
  color: var(--text-color); 
}

body .is-style-stripes table thead th {
  font-weight: 600;
  background-color: var(--text-color);
  color: #ffffff;
}

body .wp-block-table.is-style-stripes {
  border: 0; 
  margin: 0;
}

/* One Video END */

/* Text Image Block START */

.textblocks.video .text-block-wrapper {
  margin-top: 15px;
}

.textblocks.video .text-block-wrapper .video-wrapper {
  display: block; 
  margin-bottom: 32px;
  border-top: 3px solid var(--primary-color);
}



/* .text-image-block .row.image-text-row {
  align-items: center;
} */

.one-video .img-col .image-wrapper,
.text-image-block .img-col .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size:cover; 
  background-position: center center;
}

.text-image-block.right-image .img-col .image-wrapper {
  margin-left: -120px;
}

.one-video .img-col .image-wrapper,
.text-image-block.left-image .img-col  .image-wrapper {
  margin-right: -120px;
}


.text-image-block .text-wrapper:not(.with-margin) {
  margin: 0;
}

#individuellenergyunit .text-image-block.right-image .image-wrapper {
  margin-left: -40px; 
  margin-right: 0;
}

#individuellenergyunit .text-image-block.left-image .image-wrapper {
  margin-left: 0px; 
  margin-right:-40px;
}
/* Text Image Block END */

/* Link Bubble START */
#bubble-link {
  width: 225px;
  height: 225px;
  background-color: #FFE621;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  position: absolute;
  top: -110px;
  right: 20px;
  /* transform: rotate(11deg); */
  color: #E2001A; 
  z-index: 2;
}

#bubble-link h3 {
  text-align: center;
  color: #E2001A; 
}
.additional-download-link.stoerer #bubble-link {
  width: 275px; 
  height: 275px; 
  right: unset; 
  left: -90px; 
  top: -150px;
}

.additional-download-link.stoerer.backgroundimage #bubble-link {
  width: 200px;
  height: 200px;
  left: unset;
  right: -50px;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
  top: unset;
}


.additional-download-link.stoerer.backgroundimage #bubble-link:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}
/* Link Bubble END */

/* Icons START */
section.double-text-image-block .container > .inner,
section.icons .container > .inner {
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  padding: 40px; 
  padding-bottom: 20px;
}

section.icons .container .row > .col-sm.headline-col {
  margin-bottom: 15px;
}

section.icons .container .row {
  margin-left: -10px; 
  margin-right: -10px; 
}

section.icons .container .row > .col-sm {
  padding-left: 10px; 
  padding-right: 10px;
}

section.icons .container .row > .col-sm:not(.headline-col) {
  padding-bottom: 20px;
}

section.icons .icon {
  width: 45px; 
  min-width: 45px; 
  margin-right: 13px;
  height: 45px; 
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: center center;
}

section.icons .icon-wrapper {
  display: flex;
  padding: 13px 0; 
  align-items: center;
  height: 100%;
}
/* Icons END */

/* Double Text Image Block START */

.bg-icon-row {
  background-size: 150px auto; 
  background-repeat: no-repeat;
  background-position: center center;
}

section.double-text-image-block .image-wrapper {
  max-width: 300px;
}

section.double-text-image-block .image-wrapper,
section.double-text-image-block .text {
  margin-top: 25px;
}

section.double-text-image-block .text ul {
  padding: 0; 
  list-style-type: none;
}

section.double-text-image-block .text ul li {
  padding-left: 25px;
  position: relative;
}

section.double-text-image-block .text ul li:before {
  content: ""; 
  width: 12px; 
  height: 12px; 
  display: block; 
  background-color: var(--text-color); 
  position: absolute;
  left: 0; 
  top: 6px;
}

/* Double Text Image Block END */


/* Gallery START */
body #content .wp-block-gallery {
  gap: 40px;
}

body #content .wp-block-gallery .wp-block-image {
  width: calc(33.33% - 26.66px) !important;
}
/* Gallery END */

/* Downloads START */
.textblocks.downloads .download-icon {
  display:block; 
  width: 85px; 
  height: 85px;
  margin: 0 auto 35px auto;
}

.textblocks.downloads .download-icon img {
  max-height: 65px;
  transition: all 0.5s ease-in-out;
}

.textblocks.downloads a:hover .download-icon img {
  max-height: 100%;
}

.textblocks.downloads .download-wrapper {
  padding: 35px 25px;
  position: relative;
}

.textblocks.downloads .text-block-wrapper {
  height: 100%;
}

.textblocks.downloads .download-wrapper:before {
  content: ""; 
  width: 0px; 
  height: 3px; 
  background-color: var(--primary-color);
  position: absolute;
  left: 0; 
  top: 0;
  transition: all 0.5s ease-in-out;
}

.textblocks.downloads a:hover .download-wrapper:before {
  width: 100%;
}



.textblocks.downloads a {
  color: var(--text-color);
}
/* Downloads END */

/* Kontaktformular START */
.custom-contactform  {
  padding-top: 30px;
}

.captcha-image {
  width: 100%;
  border: 0px;
  text-align: left;
}

.captcha-image label>input:checked+svg, .captcha-image label>input:focus+svg {
  border: 2px solid var(--primary-color);
}

.captcha-image .cf7ic_instructions span {
  color: var(--text-color);
}

select {
  -webkit-appearance: none;
}

.sib_signup_form label {
  width: 100%;
}

.sib_signup_form {
  flex: 0 0 auto;
  width: 66.66666667%;
  margin-left: 16.66666667%;
  padding: 0 20px;
}

.sib_signup_form input[type="text"], 
.sib_signup_form input[type="email"], 
.sib_signup_form select, 
.sib_signup_form textarea,
.custom-contactform input:not([type="submit"]), 
.custom-contactform select, 
.custom-contactform textarea {
  width: 100%; 
  border: 0; 
  background-color: var(--light-color);
  padding: 9px 18px;
  font-style: italic;
  color: var(--text-color);
}

.custom-contactform .row .row {
  margin-left: -10px; 
  margin-right: -10px;
}

.custom-contactform .row .row .col-sm {
  padding-left: 10px; 
  padding-right: 10px;
}

.custom-contactform .col-sm > p {
  margin-bottom: 20px;
}

.sib_signup_form label.checkbox,
.wpcf7-acceptance label {
  padding-left: 15px;
}

.wpcf7-acceptance span.wpcf7-list-item {
  display: block;
}

.sib_loader {
  width: 20px;
  margin-bottom: 20px;
}

.sib_signup_form label.checkbox:before,
.wpcf7-acceptance label:before {
  content: ""; 
  width: 20px; 
  height: 20px; 
  display: block; 
  position: absolute;
  left: 0; 
  top: 2px; 
  background-color: #ffffff; 
  border: 1px solid var(--primary-color);
}

.sib_signup_form label.checkbox input,
.wpcf7-acceptance label input {
  width: 1px; 
  height: 1px;
  visibility: hidden;
  position: absolute;
  left: 4px; 
  top: 6px;
}

.sib_signup_form label.checkbox input:before,
.wpcf7-acceptance label input:before {
  content: ""; 
  width: 12px; 
  height: 12px; 
  display: block; 
  position: absolute;
  left: 0px; 
  top: 0px; 
  background-color: var(--primary-color); 
  visibility: hidden;
}
.sib_signup_form label.checkbox input:checked:before,
.wpcf7-acceptance label input:checked:before {
  visibility:visible;
}

.wpcf7 .wpcf7-submit {
  margin-top: 0;
}

.wpcf7 .wpcf7-submit:disabled {
  opacity: 0.5;
}
/* Kontaktformular END */

/* FAQ START */
body div.ewd-ufaq-faq-div div.ewd-ufaq-faq-title div.ewd-ufaq-post-margin-symbol {
	float: right;
	padding: 8px 0px 0px 15px;
}

div.ewd-ufaq-faq-title {
	background-color: #ffffff;
    padding: 10px 0px 10px 15px;
    font-size: 18px;
    
}

div.ewd-ufaq-faq-title h3 {
  font-size: 18px;
}

div.ewd-ufaq-faq-div {
	margin: 0 0 10px 0;
  padding: 0;
  border: 1px solid var(--text-color);
}

div.ewd-ufaq-faq-body {
	background-color: #ffffff;
}

body div.search-field {
  width: 100%;
  margin: 10px 0 10px 0 !important;
}

#ewd-ufaq-jquery-ajax-search .search-field .ewd-ufaq-text-input {
  padding: 10px 30px 10px 15px !important;
  width: 100%;
  border: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

body #ewd-ufaq-ajax-search-submit {
  display: none;
}
/* FAQ END */

/* Newsroom START */
.wp-block-latest-posts__list li {
  background-color: #ffffff;
  padding: 0 35px 77px 35px;
  position: relative;
}

.wp-block-latest-posts__featured-image a:after {
  content:"mehr erfahren"; 
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  padding: 10px 25px 10px 38px;
  border: 0;
  font-size: 16px;
  line-height: 22px;
  margin: 25px 0 0 0;
  display: inline-block; 
  background-image: url(assets/images/hook.svg); 
  background-size: 8px auto; 
  background-position: left 20px center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 35px;
  left: 35px;
}

.wp-block-latest-posts__featured-image a:hover:after {
  background-image: url(assets/images/hook-white.svg); 
  color: #ffffff;
  background-color: var(--text-color);
}

.wp-block-latest-posts__featured-image {
  margin: 0 -35px 30px -35px;
  aspect-ratio: 5 / 2.5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wp-block-latest-posts__featured-image a, 
.wp-block-latest-posts__featured-image img {
  width: 100%;
}
/* Newsroom END */

/* Footer START */
.site-footer {
  background-color: var(--text-color);
  color: #ffffff;
  margin-top: 100px;
  padding-top: 40px;
}

.site-footer .footer-wrapper a {
  color: #ffffff;
}

.site-footer .footer-wrapper {
  padding-bottom: 45px;
}

.footer-bottom {
  color: var(--text-color);
  padding: 7px 0;
}

#menu-footermenue {
  margin: 0; 
  list-style: none;
  padding: 0;
}

#menu-footermenue a {
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 22px; 
  display: block;
}

#to-the-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  padding: 15px;
  z-index: 50;
  text-align: center;
}

#to-the-top img {
  max-height: 100%;
}

/* Footer END */


.wpcf7 .ajax-loader {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 1538px) {
  #bubble-link {
    right: 0px;
  }  

  .additional-download-link.stoerer #bubble-link {
    right: unset; 
    left: 0px; 
  }

  .additional-download-link.stoerer.backgroundimage #bubble-link {
    left: unset; 
    right: 20px;
  }
}

@media screen and (max-width: 1510px) {
  .text-image-block.right-image .img-col .image-wrapper,
  .text-image-slider .slide-row,
  .text-image-slider .slick-slider {
    margin-right: -20px;
  }

.text-image-slider.image-left .slide-row,
.text-image-slider.image-left .slick-slider {
  margin-right: -20px; 
  margin-left: 0;
}

  .one-video .img-col .image-wrapper, 
  .text-image-block.left-image .img-col .image-wrapper {
    margin-left: -20px;
  }
}

@media screen and (max-width: 1455px) {

  .menu-button,
  .mobile-menu {
    display: block;
  }

  .primary-menu-container {
    display: none;
  }

  label.hamburg {
    display: block;
    background: transparent;
    width: 32px;
    height: 16px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    z-index: 21;
  }

  input#hamburg {
    display:none
  }

  .line {
  position: absolute;
  left:0;
  height: 4px;
  width: 40px;
  background: var(--text-color);
  display: block;
  transition: 0.5s;
  transform-origin: center;
  }

  .line:nth-child(1) { top: 0px; }
  .line:nth-child(2) { top: 12px; }

  #hamburg:checked + .hamburg .line:nth-child(1){
    transform: translateY(6px) rotate(-45deg);
  }

  #hamburg:checked + .hamburg .line:nth-child(2){
    transform: translateY(-6px) rotate(45deg);
  }

  #hamburg:checked + .hamburg .line {
    /* background: #ffffff; */
  }

  .mobile-menu-wrapper {
    display: block;
    background: var(--primary-color);
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 20;
    max-height: 0;
    height: auto;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  }

  #hamburg:checked + .hamburg + .mobile-menu-wrapper {
    max-height: 2000px;
    transition: max-height 1s ease-in-out;
  }

  .mobile-menu-wrapper > .inner {
    padding: 100px 30px 0 30px;
  }

  .mobile-menu-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu-wrapper a {
    margin-bottom: 30px;
    color: var(--text-color); 
    position: relative;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-menu-wrapper a:before {
    content: ""; 
    width: 0px;
    height: 1px; 
    background-color: var(--text-color); 
    position: absolute;
    left: 0; 
    bottom: -3px;
    transition: all 0.5s ease-in-out;
  }

  .mobile-menu-wrapper a:hover:before {
    width: 100%; 
  }
}

@media screen and (max-width: 1200px) {
  .text-wrapper {
    margin: 30px 0; 
    padding: 30px;
  }

  .site-footer {
    margin-top: 20px;
    padding-top: 20px;
  }

  .site-footer .footer-wrapper {
    padding-bottom: 10px;
  }

  #bubble-link {
    top: -90px;
  }

  .additional-download-link.stoerer #bubble-link {
    top: -50px;
  }

  #bubble-link {
    top: 0;
    margin-top: -105px;
  }

  .additional-download-link.stoerer.backgroundimage #bubble-link {
    top: -20px;
    margin-top: 0;
  }
}

@media screen and (max-width: 990px) {

  .hide-on-mobile {
    display: none;
  }
  
  .text-image-slider.image-right > .container > .row {
    flex-direction: column-reverse;
  }

  .text-image-slider .slide-row,
  .one-video .img-col .image-wrapper, 
  .text-image-block.left-image .img-col .image-wrapper,
  .text-image-block.right-image .img-col .image-wrapper,
  .text-image-slider .slick-slider {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -70px;
    height: 450px;
  }

  .text-image-slider ul.slick-dots {
    bottom: 70px;
  }

  .text-wrapper {
    margin: 0;
  }

  .one-video.video-right .row {
    flex-direction: column-reverse;
  }

  .text-image-slider.video .video-wrapper,
  .one-video .video-wrapper {
    /* margin: 0 -20px 30px -20px; */
    margin: 0px -20px -10px -20px !important;
    z-index: 2;
    padding-top: 0; 
    padding-bottom: 0;
    width: calc(100% + 40px);
  }

  .text-image-slider.image-left {
    margin-right: 0;
  }

  .text-image-slider.image-left .slick-slider {
    margin-left: -20px; 
    margin-right: -20px !important;
  }

  .text-image-block .image-text-row .col-lg-5 {
    text-align: center;
  }

  .text-image-block.right-image .image-text-row {
    flex-direction: column-reverse;
  }

  .text-image-block .image-text-row .col-lg-5 img {
    max-width: 70%; 
    margin-bottom: 20px;
  }

  .textblocks.downloads .col-sm.col-lg-3:not(:last-child):not(:nth-last-child(2)) {
    padding-bottom: 20px;
  }

  .footer-bottom,
  #menu-footermenue {
    text-align: center;
  }

  #energyunitwaermepumpe .text-wrapper:after,
  .wp-block-lazyblock-headerslider  .text-wrapper:after  {
    position: relative;
    bottom: 0;
    margin: 20px -30px -30px -30px;
    width: calc(100% + 60px);
  }

  section.double-text-image-block .container > .inner,
  section.icons .container > .inner {
    padding: 30px;
  }

  #bubble-link {
    top: -138px;
    right: 10px;
    width: 150px;
    height: 150px;
  }

  #bubble-link h3 {
    font-size: 15px;
    line-height: 22px;
  }

  .additional-download-link.stoerer #bubble-link {
    width: 205px; 
    height: 205px; 
    position: relative;
    top: unset;
    right: unset;
    margin: -60px 0 -10px 0;
  }

  .additional-download-link.stoerer.backgroundimage #bubble-link {
    position: absolute;
    z-index: 10;
    right: 20px;
  }



  .additional-download-link.stoerer #bubble-link h3 > span.big {
    font-size: 21px !important;
  }


  section.double-text-image-block .offset-lg-4 {
    margin-top: 150px;
  }

  section.double-text-image-block .bg-icon-row {
    background-position: center bottom 280px;
  }

  .wp-block-latest-posts.columns-3 {
    margin-top: 10px;
  }

  .wp-block-latest-posts.columns-3 li {
    width: calc(50% - 10px);
  }

  .wp-block-latest-posts.columns-3 li:nth-child(3n),
  .wp-block-latest-posts.columns-3 li:nth-child(1n) {
    margin-right: 20px;
  }
  .wp-block-latest-posts.columns-3 li:nth-child(2n) {
    margin-right: 0;
  }

  .sib_signup_form {
    width: 100%;
    margin-left:0;
  }
  
}

@media screen and (max-width: 600px) {

  .additional-download-link.stoerer.backgroundimage #bubble-link {
    width: 150px;
    height: 150px;
  }

  body.admin-bar header#masthead {
    top: 46px;
  }

  html, 
  body {
    font-size: 15px; 
    line-height: 26px;
  }

  .like-h2,
  h2,
  .like-h1,
  h1 {
    font-size: 22px;
    line-height: 27px;
    position: relative;
  }

  .like-h3,
  h3 {
    font-size: 20px;
    line-height: 27px;
  }

  .like-h4,
  h4 {
    font-size: 15px;
    line-height: 22px;
  }

  .one-video .img-col .image-wrapper, .text-image-block.left-image .img-col .image-wrapper, .text-image-block.right-image .img-col .image-wrapper, .text-image-slider .slick-slider {
    height: 300px;
    margin-bottom: -30px;
  }

  .text-image-slider.image-left .slick-slider {
    margin-bottom: 0;
  }

  .text-image-slider ul.slick-dots {
    bottom: 25px;
  }

  .header-wrapper {
    height: 55px;
    padding-left: 20px; 
    padding-right: 20px;
  }

  #page {
    padding-top: 55px;
  }

  .site-logo .custom-logo-link {
    padding: 0 30px;
    /* padding-top: 160px; */
    padding-top: 5px;
    padding-bottom: 5px;
  }

  header.sticky .site-logo .custom-logo-link {
    padding-top: 5px;
  }

  .site-logo img {
    width: 159px;
  }
  .text-image-block .image-text-row .col-lg-5 img {
    max-width: 100%; 
  }
  .text-wrapper {
    padding: 20px;
  }

  section.double-text-image-block .container > .inner,
  section.icons .container > .inner {
    padding: 20px 20px 0 20px;
  }

  section.icons .container > .inner {
    padding-top: 20px;
  }

  section.icons .container .row > .col-sm:not(.headline-col) {
    padding-bottom: 20px;
  }

  .textblocks.video .row .col-sm:not(:last-child) {
    padding-bottom: 20px;
  }

  body #content .wp-block-gallery {
    gap: 3px;
    padding-left: 0; 
    padding-right: 0;
  }

  .textblocks.downloads .col-sm.col-lg-3:not(:last-child) {
    padding-bottom: 20px;
  }

  .mobile-menu-wrapper > .inner {
    padding-top: 160px;
  }

  .entry-content > .wp-block-columns:first-child {
    padding-top: 100px;
  }

  #energyunitwaermepumpe .text-wrapper:after,
  .wp-block-lazyblock-headerslider  .text-wrapper:after  {
    margin: 20px -20px -20px -20px;
    width: calc(100% + 40px);
  }

  .wp-block-latest-posts.columns-3 li {
    width: 100%;
  }

  .wp-block-latest-posts.columns-3 li:nth-child(3n),
  .wp-block-latest-posts.columns-3 li:nth-child(1n),
  .wp-block-latest-posts.columns-3 li:nth-child(2n) {
    margin-right: 0;
  }

  body form#sib_signup_form_1 {
    padding: 0 50px 30px 50px;
  }
}

@media screen and (max-width: 390px) {
  section.double-text-image-block .offset-lg-4 {
    margin-top: 110px;
  }

  section.double-text-image-block .bg-icon-row {
    background-position: center bottom 240px;
  }
}