@charset "UTF-8";

/*
Theme Name: AEM
Author: AH-Effect
Author URI: https://www.a-h-effect.de
Description: Custom Theme Airport Energy Management GmbH
Requires at least: 6.1
Tested up to: 8.4
Requires PHP: 8.3
Version: 1.1
Text Domain: customtheme
*/


/* Basics START */
:root {
  --primary-color: #F07E00;
  --primary-light-color: #EEAC69;
  --secondary-color: #216687; 
  --secondary-light-color: #8BA2A9;
  --light-color: #DDDDDD;
  --headline-text-color:#0E0E0F;
  --text-color: #6B7078;
}

@font-face {
  font-family: "Inter";
  font-weight: 200;
  font-style: normal;
  src: url(assets/webfonts/Inter_18pt-Thin.ttf) format("truetype");
}

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

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

@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-style: normal;
  src: url(assets/webfonts/Inter_18pt-Medium.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: normal;
  src: url(assets/webfonts/Inter_18pt-SemiBold.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: normal;
  src: url(assets/webfonts/Inter_18pt-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 800;
  font-style: normal;
  src: url(assets/webfonts/Inter_18pt-ExtraBold.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 900;
  font-style: normal;
  src: url(assets/webfonts/Inter_18pt-Black.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 200;
  font-style: italic;
  src: url(assets/webfonts/Inter_18pt-ThinItalic.ttf) format("truetype");
}

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

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

@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-style: italic;
  src: url(assets/webfonts/Inter_18pt-MediumItalic.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: italic;
  src: url(assets/webfonts/Inter_18pt-SemiBoldItalic.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: italic;
  src: url(assets/webfonts/Inter_18pt-BoldItalic.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 800;
  font-style: italic;
  src: url(assets/webfonts/Inter_18pt-ExtraBoldItalic.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 900;
  font-style: italic;
  src: url(assets/webfonts/Inter_18pt-BlackItalic.ttf) format("truetype");
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-margin-top: 200px;
}

body {
  color: var(--text-color);
  background-color: #F8F8F8;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.36px;
  /* background-image: url(assets/images/hexagons.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto; */
}

b, strong {
  font-weight: 700;
}

input:focus,
:focus {
  outline: none !important;
}

.like-a,
.like-a:hover,
a {
  color: var(--text-color);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.like-a:hover,
a:hover {
  text-decoration: none;
}

/* a:hover {
  text-decoration: none; 
  transform: translateY(-3px);
  transition: transform 0.3s; 
} */


.like-a {
  display: inline-block;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
    hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  -o-hyphens: none;
  color: var(--headline-text-color);
}

h1 > code,
h1 {
  font-size: 40px;
}

.like-h2,
h2 {
  font-size: 30px;
}

h3 {
  font-size: 18px;
  margin-top: 0px;
  font-weight: 600;
}

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;
}

.mobile-menu {
  display: none;
}

.bg-primary {
  background-color: var(--primary-color);
}

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

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

.color-primary {
  color: var(--primary-color);
}

.color-secondary {
  color: var(--secondary-color);
}

.color-white {
  color: #ffffff;
}

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

.image-wrapper img {
  max-width: 100%;
}

button,
.wp-block-button__link,
.button {
  color: #F8F8F8;
  font-weight: 600;
  border-radius: 50px;
  padding: 17px 48px 17px 70px;
  background-color: var(--headline-text-color); 
  border: 1px solid var(--headline-text-color);
  text-decoration: none;
  cursor: pointer;
  margin: 25px 0;
  display: inline-block;
  transition: all 0.25s ease-in-out;
  overflow: hidden; 
  position: relative;
  text-decoration: none;
  font-size: 18px; 
  line-height: 150%;
}

button:hover,
.wp-block-button__link:hover,
.button:hover {
  transform: scale(1.02);
}

button.small,
.wp-block-button__link.small,
.button.small {
  padding: 8px 16px;
  font-size: 14px;
}

button.light,
.wp-block-button__link.light,
.button.light {
  background-color: #E5E5E7; 
  border-color: #E5E5E7;
  color: var(--headline-text-color)
}

#notfall:before,
button:before,
.wp-block-button__link:before,
.button:before {
  content: ""; 
  width: 18px; 
  height: 18px; 
  display: block;
  position: absolute;
  left: 48px; 
  top: calc(50% - 9px);
  background-image: url(assets/images/arrow-right-white.svg); 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

button.nosign:before,
.wp-block-button__link.nosign:before,
.button.nosign:before {
  display: none;
}

.button.small.external:focus, 
.button.small.external:active, 
button.small.external,
.wp-block-button__link.small.external,
.button.small.external {
  padding-left: 36px;
}

button.small.external:before,
.wp-block-button__link.small.external:before,
.button.small.external:before {
  left: 16px; 
  transform: rotate(-45deg);
}

body a.secondary.button,
body .secondary a.wp-block-button__link,
button.secondary, 
.wp-block-button__link.secondary,
.secondary .wp-block-button__link,
.button.secondary {
  color: var(--headline-text-color); 
  background-color: transparent;
  border-color: var(--headline-text-color);
}

button.secondary:before, 
.wp-block-button__link.secondary:before,
.secondary .wp-block-button__link:before,
.button.secondary:before {
  background-image: url(assets/images/arrow-right.svg); 
}

body a.secondary.button:hover, 
body .secondary a.wp-block-button__link:hover, 
button.secondary:hover, 
.wp-block-button__link.secondary:hover, 
.secondary .wp-block-button__link:hover,
.button.secondary:hover {
  background-color: #EFEFF0;
}


#notfall {
  padding-left: 36px;
  display: none; /* Ausblenden bis Notfallkontakt aktiv */
}

#notfall:hover:before,
#notfall:before {
  background-image: url(assets/images/icon-notfallkontakt.svg); 
  left: 14px;
}

#breadcrumbs,
.container {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

body #page {
  overflow: hidden;
  position: relative;
}

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

/* Header START */

header {
  position: fixed;
  z-index: 11;
  top: 0; 
  left: 0; 
  width: 100%; 
}

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

header .primary-header .col-sm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .primary-header .col-sm  > div {
  display: flex;
  gap: 28px;
  align-items: center;
}

.custom-logo-link {
 max-width: 160px;
 margin: 16px 0;
}

.menu-button {
  position: relative;
}

.menu-button.menu {
  z-index: 2;
}

label.hamburg2,
label.hamburg {
  display: block;
  background: transparent;
  width: 18px;
  height: 6px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  border-radius: 4px;
}

label.hamburg2 {
  height: 20px;
}

label.hamburg2 img {
  height: 18px; 
  width: auto;
  display: flex;
}

input#hamburg2,
input#hamburg {
  display:none;
}

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

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

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

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

#primary-menu-list {
  margin-bottom: 0;
}

.mobile-menu-wrapper {
  position: absolute; 
  z-index: -1;
  right: -15px;
  top: -20px;
  border-radius: 21px; 
  background-color: #EFEFF0;
  box-sizing: border-box;
  overflow: hidden;
  max-height: 0;
  max-width: 0;
  width: auto; 
  height: auto;
  transition: all 0.5s ease-in-out;
}

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

.mobile-menu-wrapper ul a {
  text-decoration: none;
  display: block;
  margin-bottom: 33px;
  padding-left: 20px;   
  padding-right: 20px;
}

.mobile-menu-wrapper ul li.current_page_item a {
  text-decoration: underline;
  color: var(--headline-text-color);
}

.mobile-menu-wrapper ul li:last-child a {
  margin-bottom: 0;
}

#hamburg2:checked + .hamburg2 + .mobile-menu-wrapper,
#hamburg:checked + .hamburg + .mobile-menu-wrapper {
  max-height: 5000px;
  max-width: 5000px;
}

.mobile-menu-wrapper .inner {
  padding: 14px;
  box-sizing: border-box;
}

.mobile-menu-wrapper .title {
  padding-right: 70px;
  color: var(--headline-text-color);
  margin-bottom: 20px;
}

.mobile-menu-wrapper .buttonwrapper {
  display: flex;
  gap: 8px;
}

.mobile-menu-wrapper .buttonwrapper > a:focus,
.mobile-menu-wrapper .buttonwrapper > a {
  width: 50%;
  /* margin-bottom: 0; */
}


.mobile-menu-wrapper .center-text {
  font-size: 14px; 
  margin: 28px 0;
}

.mobile-menu-wrapper .smallinfo {
  font-size: 14px; 
  line-height: 110%; 
  font-weight: 500;
  color: #B6B7BB;
}

.hamburg2 + .mobile-menu-wrapper {
  top: -13px;
}

ul.bardetails li {
  border-radius: 14px;
  background-color: #E5E5E7;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px; 
  padding: 16px;
  font-size: 14px; 
  color: var(--headline-text-color);
}

ul.bardetails li:last-child {
  margin-bottom: 0;
}

ul.bardetails li > div {
  display: flex;
  align-items: center;
}

.status {
  border-radius: 50px; 
  display: block; 
  width: 14px; 
  height: 14px; 
  margin-right: 8px;
  background-color: var(--text-color)
}

.status.active {
  background-color:#07C330;
}


/* Header END */

/* Header Text START */
section.headline {
  display: flex;
  align-items: center;
  padding: 220px 0;
}

.preline {
  margin-bottom: 20px;
  color: #B6B7BB;
}

body.home section.headline {
  /* height: 80dvh;  */
  height: calc(80vh - 20px);
}

body.home .is-style-left.wp-block-lazyblock-headlinetextblock section.headline {
  height: auto; 
}

body .is-style-left.wp-block-lazyblock-headlinetextblock section.headline  {
  padding: 0px 0 40px 0;
}

body .is-style-left.wp-block-lazyblock-headlinetextblock section.headline .col-sm {
  text-align: left;
}

body .is-style-left.wp-block-lazyblock-headlinetextblock section.headline .col-sm h1 {
  font-size: 24px;
  padding-bottom: 40px; 
  border-bottom: 1px solid #B6B7BB;
}
/* Header Text END */


/* Headerbanner START */
section.headerbanner {
  height: 468px; 
  background-size: cover; 
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Headerbanner END */


/* Infobox START */
.info-block {
    border-radius: 21px; 
    background-color: #EFEFF0;
    padding: 28px 32px;
    color: var(--text-color);
    font-size: 14px;
    gap: 28px;
    display: flex;
    flex-direction: column;
}

.info-block .button:focus, 
.info-block .button:hover, 
.info-block .button:active, 
.info-block .button:visited,
.info-block .button {
  margin: 0;
}

.info-block .text-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.info-block .text-wrapper  > div {
  width: 48%;
}
/* Infobox END */

/* Video sTART */
.video .video-outer-wrapper {
  display: flex;
  align-items: center;  
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 24px; 
  aspect-ratio: 281/158;
}

.video .videobutton {
  position: absolute;
  white-space: nowrap;
  left: 50%; 
  top: 50%; 
  z-index: 3;
  transform: translate(-50%, -50%);
  margin: 0;
  background: transparent; 
  border-color: transparent;
  color: var(--headline-text-color); 
  font-weight: 400;
  overflow: hidden;
  padding-left: 48px;
  transition: all 0.5s ease-in-out;
}

.video .videobutton:before {
    border-radius: 24px; 
}

.video .videobutton:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.with-white-bg {
  overflow: hidden;
}

.with-white-bg:after, 
.articlebutton:after,
.video .videobutton:before {
  content: "";
  width: 100%; 
  height: 100%;
  background: rgba(248, 248, 248, 0.50);
  backdrop-filter: blur(20px);
  left: 0; 
  top: 0;
  z-index: -1;
  position: absolute;
}

.video .video-outer-wrapper .video-wrapper {
  position: absolute;
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  display: block;
}

.video .video-outer-wrapper .video-wrapper.preview {
  z-index: 2;
}

.video .video-outer-wrapper .video-wrapper video {
  object-fit: cover;
  width: 100%; 
  height: 100%;
}

.video .col-sm {
  position: relative;
}

.video .video-outer-wrapper + .video-shaddow {
  width: 100%; 
  height: 100%; 
  border-radius: 24px;
  background:#EFEFF0;
  filter: blur(160px);
  display: block;
  position: absolute;
  left: 0; 
  top: 0; 
  z-index: -1;
  background-size: cover;
}
/* Video START */

/* Teaser News START */

.newsarticle.slick-initialized .slick-slide,
.newsarticle {
    border-radius: 24px;
    aspect-ratio: 281/158;
    overflow: hidden;
    position: relative;
    gap: 35px;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-end;
    padding: 32px;
    color: var(--headline-text-color);
}

.slider-wrapper .content-wrapper,
.newsarticle .content-wrapper {
  padding: 24px; 
  position: relative;
  z-index: 1;
  border-radius: 14px;
  max-width: 70%;
}

.slider-wrapper .content-wrapper:after,
.newsarticle .content-wrapper:after {
  border-radius: 14px;
}

.newsarticle .content-wrapper p:last-child {
  margin-bottom: 0;
}

.newsarticle .text-block-wrapper {
    gap: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.background-image {
  width: 100%; 
  height: 100%; 
  display: block;
  position: absolute;
  left: 0; 
  top: 0; 
  z-index: -1;
}

.background-image img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}
body a.articlebutton:visited, 
body a.articlebutton:active, 
body a.articlebutton:focus,
body a.articlebutton {
  overflow: hidden;
  background: transparent; 
  border-color: transparent;
  white-space: nowrap;
  margin: 0;
  color: var(--headline-text-color);
  transition: all 0.5s ease-in-out;
}

.articlebutton:hover {
  transform: scale(1.1);
}

.articlebutton:after {
  border-radius: 50px;
}

.articlebutton:hover:before,
.articlebutton:before {
  background-image: url(assets/images/icon-news.svg);
}

.slick-dots {
  padding: 0; 
  margin: 0; 
  list-style: none;
  position: absolute;
  left: 32px; 
  top: 32px; 
  display: flex;
  gap: 20px;
  width: calc(100% - 32px - 32px);
  flex-wrap: nowrap;

}

.slick-dots li {
  width: 100%;

}

.slick-dots li button {
  padding: 0; 
  font-size: 0; 
  width: 100%; 
  height: 4px; 
  display: block;
  border-radius: 10px; 
  background-color: #B6B7BB; 
  border: 0;
  margin: 0;
}

.slick-dots li button:before {
  background-image:none; 
  height: 100%; 
  background-color: #F8F8F8;
  top: 0; 
  left: 0;
  width: 100%; 
  max-width: 0;
  transition: none;
}


.slick-dots li.slick-active button::before {
  max-width: 100%;
  transition: max-width 8s linear;
}

.progress-reset::before {
    transition: none !important;
    max-width: 0 !important;
}

/* Teaser News END */

/* Image Slider START */

.image-slider .slide-row {
  margin-left: -10px;
}

.image-slider .slider-wrapper {
  margin: 10px;
  position: relative;
}

.image-slider .slider-wrapper .image-wrapper {
  border-radius: 21px; 
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
   aspect-ratio: 281/158;
   position: relative;

}

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

.image-slider .slider-wrapper .content-wrapper  {
  position: absolute;
  left: 32px; 
  bottom: 32px; 
  max-width: calc(100% - 64px);
  overflow: hidden;
  color: var(--headline-text-color);
}

.is-style-hoch.wp-block-lazyblock-slider .image-slider  .slider-wrapper {
  aspect-ratio: unset;
}

.is-style-hoch.wp-block-lazyblock-slider .image-slider  .slider-wrapper .image-wrapper {
  aspect-ratio: 374 / 467;
}

.image-slider .slider-wrapper .preline,
.image-slider .slider-wrapper .outer-content {
  margin-top: 20px;
  color: #6B7078;
}
.image-slider .slider-wrapper .preline {
  font-size: 14px; 
}
/* Image Slider END */

/* Text Image Block START */
.white-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px; 
  background-color: #ffffff;
  border-radius: 24px;
  font-size: 14px;
  line-height: 150%;
}

/* Text Image Block END */



/* Accordion START */ 
details {
  transition: background 0.5s ease-in-out;
  background-color: #EFEFF0;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 8px;
}
details > summary {
  cursor: pointer;
  padding: 24px;
  list-style: none;
  position: relative;
}

details > summary:after {
  content: ""; 
  width: 24px; 
  height: 24px; 
  position: absolute;
  right: 24px; 
  top: calc(50% - 12px);
  background-image: url(assets/images/arrow-accordion.svg);
  background-size: 100% auto; 
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-in-out;
}

details > summary > h3 {
  margin-bottom: 0;
  color: var(--text-color);

}

summary:focus {
  outline:none !important
}

details > summary::-webkit-details-marker {
  display:none;
}

details[open] > summary:after {
  transform: rotate(180deg);
}

details .detailsinner {
  padding: 0 24px;
}

details .detailsinner > p:last-child {
  margin-bottom: 0;
  padding-bottom: 15px;
}

details .detailsinner .message {
  margin: 24px 0;
}
/* Accordion END */

/* Messanges START */

.message {
  padding: 16px 20px; 
  border-radius: 14px;
  gap: 8px; 
  display: flex;
  flex-wrap: nowrap;
  background-color: var(--light-color);
}

.message .icon {
  width: 18px; 
  min-width: 18px;
}

.message .icon img {
  width: 100%;
}

.message.error {
  background-color: #FFDDDB;
}

.message.error .hinweistext { 
  color: #C3070C;
}

.message.success {
  background-color: #c6e0c5;
}

.message.success .hinweistext { 
  color: #056800;
}

/* Messanges END */

/* Karte START */
.karte .arrowbox .inner,
.karte .content-wrapper .inner {
  padding: 24px;
  border-radius: 24px;
  background-color: #EFEFF0; 
  color: var(--headline-text-color); 
  max-width: 100%;
}  

.karte .content-wrapper .inner {
  min-width: 535px;
}

.karte .main-image-wrapper {
  margin-bottom: 40px;
  aspect-ratio: 838 / 471;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.karte .main-image-wrapper .outer {
  display: none;
}

.karte .content-wrapper  {
  transition: none;
  max-width: 100%;
  padding: 0; 

}

.karte .slider-wrapper-inner {
  margin: 12px;
}

.karte .slider-wrapper .slick-list {
  padding-left: 147px !important; 
  padding-right: 147px !important;
  margin-left: -147px; 
  margin-right: -147px;
}

.karte .slider-wrapper .slider-wrapper-inner:not(.slick-active):not(.slick-current) {
  /* max-width: 123px;  */
  height: 64px; 
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease-in-out;

}
/* 
.karte .slider-wrapper .slider-wrapper-inner.slick-active {
  max-width: calc(100% - 123px - 123px);
} */

.karte .slider-wrapper .slider-wrapper-inner.slick-active .arrowbox, 
.karte .slider-wrapper .slider-wrapper-inner.slick-current .arrowbox {
  display: none;
}

.karte .slider-wrapper .slider-wrapper-inner:not(.slick-active):not(.slick-current) .content-wrapper{
  max-width: 135px; 
  max-height: 64px; 
  overflow: hidden;
  cursor: pointer;
}

.karte .arrowbox:after {
  content: ""; 
  width: 100%; 
  height: 100%;
  display: block; 
  background-color: #F8F8F8; 
  position: absolute;
  left: 0; 
  top: 0;
  z-index: -1;
}

.karte .arrowbox {
  position: absolute;
  top: 0; 
  right: 0;
  width: 135px; 
  height: 64px; 
  z-index: 10000;

}

.karte .arrowbox .inner {
  background-image: url(assets/images/arrow-left.svg); 
  display: block;
  width: 100%; 
  height: 100%;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px auto;
  transition: all 0.5s ease-in-out;
}

.karte .arrowbox:hover .inner {
  background-size: 32px auto;
}


.karte .slider-wrapper .slider-wrapper-inner.slick-current + .slider-wrapper-inner .arrowbox,
.karte .slider-wrapper .slider-wrapper-inner.slick-active + .slider-wrapper-inner .arrowbox {
  right: unset; 
  left: 0;
}


.karte .slider-wrapper .slider-wrapper-inner.slick-current + .slider-wrapper-inner .arrowbox .inner,
.karte .slider-wrapper .slider-wrapper-inner.slick-active + .slider-wrapper-inner .arrowbox .inner {
  background-image: url(assets/images/arrow-right.svg); 
}
/* .karte .slider-wrapper .slider-wrapper-inner.slick-active,
.karte .slider-wrapper .slider-wrapper-inner.slick-current {
 width: 592px;
} */
/* Karte END */


/* Popup START */

/* Popup START */
.outer-popup {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  transform: translateY(100%);
  transition: translate 0.5s ease-in-out;
  background: rgba(14, 14, 15, 0.20);
  backdrop-filter: blur(20px);
}

.popup-inner {
  position: relative;
  width: 100%; 
  max-width: 1124px;
  border-radius: 20px;
  background-color:#F8F8F8;
  padding: 60px 80px;
  max-height: calc(100% - 40px);
  margin-top: 40px; 
  height: 100%;
  border-bottom-right-radius: 0; 
  border-bottom-left-radius: 0;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: hidden;
  transition: translate 0.5s ease-in-out;
  transform: translateY(100%);
  overflow: scroll;
}

.outer-popup.open ,
.outer-popup.open .popup-inner{
  transform: translateY(0);
}

.popup-inner .close {
  position: absolute;
  cursor: pointer;
  top: 48px; 
  right: 48px;
  width: 40px; 
  height: 40px; 
  display: block;
  background-image: url(assets/images/icon-close.svg);
  background-size: contain; 
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s ease-in-out;
}

.popup-inner .close:hover {
  transform: scale(1.1);
}

.popup-inner .chooseoptions {
  margin-bottom: 20px;
}

.popup-inner::-webkit-scrollbar { 
  display: none;  /* Older Safari and Chromium */
}

.togglewrapper,
.savedatawrapper,
.popup-inner .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-inner .bottom {
  margin-top: 45px;
}

.popup-inner .bottom .button {
  margin-top: 0;
}

/* Popup END */

/* Datenschutz START */
.page-id-3 h2 {
  margin-bottom: 15px;
  margin-top: 20px;
}
.page-id-3 h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 20px;
}

.page-id-3 .entry-content {
  margin: 0 auto;
  max-width: 1920px;
}

.page-id-3 .entry-content > *:not(.wp-block-lazyblock-headlinetextblock) {
  width: 33.33333333%;
  margin-left: 33.33333333%;
}
/* Datenschutz END */

/* Footer START */
#hexagons {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  z-index:1 ;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none;
}

#hexagons path {
  transition: fill 0.25s ease-in-out;
  pointer-events: all;
}

#hexagons .st0:not(:hover), 
#hexagons .st1:not(:hover), 
#hexagons .st2:not(:hover), 
#hexagons .st4:not(:hover) {
  fill: #dddddd;
}
footer.error + #hexagons .st0,
footer.error + #hexagons .st1,
footer.error + #hexagons .st2,
footer.error + #hexagons .st3,
footer.error + #hexagons .st4,
footer.error + #heaxagons path {
  /* fill: #C3070C; */
  fill: #FFDDDB;
}

footer.entry-footer {
  display: none;
}

footer#colophon {
  padding: 0 0 220px 0;
  color: #ffffff;
  position: relative;
}

footer .entry-content {
  position: relative;
}

footer .sub-footer .row .col-sm {
  align-items: center; 
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding-top: 125px;
  color: #B6B7BB;
}

footer ul.menu {
  list-style-type: none; 
  margin: 0; 
  padding: 0;
}

footer #menu-footer-menue a {
  font-size: 14px; 
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  color: var(--text-color);
}

footer #menu-footer-menue .current-menu-item a, 
footer #menu-footer-menue a:hover {
  text-decoration: underline;
}

#to-the-top {
  position: absolute; 
  top: -75px; 
  z-index: 15;
  cursor: pointer;
  right: 25px; 
}

#to-the-top.fixed {
  position: fixed;
  right: 25px; 
  bottom: 25px;
  transition: all 0.5s;
  top: unset;
}
/* Footer END */


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

  .karte .slider-wrapper .slick-list {
    padding-left: 90px !important;
    padding-right: 90px !important;
    margin-left: -147px;
    margin-right: -147px;
  }

  .karte .arrowbox {
    width: 78px;
  }

  .karte .content-wrapper .inner {
    min-width: unset;
  }
}


@media screen and (max-width: 1200px) {
  .karte .slider-wrapper .slick-list {
    padding-left: 147px !important;
    padding-right: 147px !important;
    margin-left: -147px;
    margin-right: -147px;
  }

 .karte .arrowbox {
    width: 135px;
 }


  .karte .arrowbox .inner {
    background-position: right 24px center; 
  }

  .karte .slider-wrapper .slider-wrapper-inner.slick-current + .slider-wrapper-inner .arrowbox .inner, 
  .karte .slider-wrapper .slider-wrapper-inner.slick-active + .slider-wrapper-inner .arrowbox .inner{
    background-position: left 24px center; 
  }

  .page-id-3 .entry-content > *:not(.wp-block-lazyblock-headlinetextblock) {
    width: 50%;
    margin-left: 25%;
  }

}

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

@media screen and (max-width: 990px) {
  body.home section.headline {
    /* height: 60dvh; */
    height: calc(60vh - 20px);
  }

  .page-id-3 .entry-content > *:not(.wp-block-lazyblock-headlinetextblock) {
    width: 83.33333333%;
    margin-left: 8.33333333%;
  }

  section.headline {
    padding: 150px 0 120px 0;
  }

  .image-slider .slider-wrapper,
  .newsarticle.slick-initialized .slick-slide, .newsarticle {
    aspect-ratio: 281 / 180;
  }

  #hexagons {
    width: calc(100% + 100px);
    left: -50px;
  }

  .popup-inner {
    padding: 40px 20px;
  }

  footer#colophon {
    padding: 0 0 80px 0;
  }

  footer .sub-footer .row .col-sm {
    padding-top: 15px;;
  }
}


@media screen and (max-width: 576px) {
  .container {
    padding-left: 25px; 
    padding-right: 25px;
  }
  body {
    font-size: 16px;
  }

  body a.button:visited, 
  body a.button:active, 
  body a.button:focus,
  body a.button,
  body a.wp-block-button__link:visited, 
  body a.wp-block-button__link:active, 
  body a.wp-block-button__link:focus,
  body a.wp-block-button__link,
  button,
  .wp-block-button__link,
  .button {
    padding-bottom: 14px;
    padding-right: 28px;
    padding-top: 14px;
    margin: 15px 0;
    text-decoration: none;
    font-size: 16px; 
  }

  body.home section.headline {
    /* height: 100dvh; */
    height: calc(100vh - 20px);
  }

  h1 > code,
  h1 {
    font-size: 28px;
  }

  .like-h2,
  h2 {
    font-size: 21px;
  }

  h3 {
    font-size: 16px;
  }

  .custom-logo-link  {
    height: 32px; 
    max-width: 20px;
    width: auto; 
    overflow: hidden;
  }

  .custom-logo-link img {
    max-width: unset;
    height: 100%;
  }


  .newsarticle .text-block-wrapper {
    gap: 0;
    flex-direction: column;
  }

  .slider-wrapper .content-wrapper, .newsarticle .content-wrapper {
    max-width: 100%;
  }


  .newsarticle .text-block-wrapper .button {
    margin-bottom: 0;
  }
  .info-block .text-wrapper {
    flex-direction: column;
  }

  .info-block .text-wrapper > div {
    width: 100%;
  }

  .info-block .text-wrapper:last-child {
    gap:0;
  }

  .popup-inner {
    margin-top: 10px;
    max-height: calc(100% - 10px);
    max-width: calc(100% - 10px - 10px); 
  }

  .popup-inner .close {
    top: 18px;
    right: 18px;
  }

  .video .video-outer-wrapper,
  .newsarticle.slick-initialized .slick-slide, .newsarticle,
  .image-slider .slider-wrapper,
  .image-slider .slider-wrapper .image-wrapper {
    aspect-ratio:235 / 350 ;
  }

  .image-slider .slick-list {
    padding-right: 70px !important; 
  }

  #hexagons {
    width: calc(100% + 620px);
    left: -200px;
  }

  .page-id-3 .entry-content > *:not(.wp-block-lazyblock-headlinetextblock) {
    width: 100%;
    margin-left:0;
  }

  footer .offset-md-1 > .row {
    flex-direction: column-reverse;
    gap: 20px;
  }

  footer .sub-footer .row .col-sm {
    font-size: 12px;
  }
}
