* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}
html {
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #444;
  background-color: #f4f4f4;
  padding: 0;
  margin: 0;
}
html,
body {
  height: 100%;
  margin: 0;
}
::selection {
  background-color: var(--accent);
  color: #f4f4f4;
}
:root {
  --accent: #b31808;
  --box-radius: 4px;
  --box-radius-big: 10px;
  --red-width: 18rem;
  --nav-gap: 2rem;
  --nav-top-gap: 1rem;
}

@media (hover: hover) {
  .navigation_bar .nav_points a:hover {
    background-color: var(--accent);
    color: #f4f4f4;
  }
  .nav_points a:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 7px 5px rgba(0, 0, 0, 0.1);
  }
  .ktkt_btn:hover,
  #kontakt_button:hover {
    transform: translateX(1rem);
    transition: transform 0.2s;
  }
  .navigation_bar .drop_toggle:hover .dropdown_menu,
  .navigation_bar .dropdown_menu:hover {
    display: block !important;
    opacity: 1;
    pointer-events: auto;
    clip-path: inset(0 0 0 0);
  }
  .banner_wr_navi:hover .banner_navi {
    animation-play-state: paused;
  }

  .carousel_btn:hover {
    background: rgba(255, 255, 255, 0.54);
  }
  .carousel_btn.prev:hover {
    left: -4px;
  }
  .carousel_btn.next:hover {
    right: -4px;
  }

  form .buttons_area button:hover,
  .dbl-field input[type="file"]::file-selector-button:hover{
    background: var(--accent);
    color: #f4f4f4;
    background-color: var(--accent);
  }
  .fix_squarebox_inner:hover {
    cursor: pointer;
    width: 90px; 
  }
}

@keyframes scroll-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*----------------------------OVERALL------------------------------*/
h1 {
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.37rem;
}
h4 {
  font-size: 0.9rem;
}
p, 
ul{
  font-size: 16px;
}
ul{
  list-style-position: inside;
  padding-left: 1.5rem;
}
section {
  padding: 2rem 0;
}
section[id] {
  scroll-margin-top: calc(var(--nav-height) + 2rem);
}

#scrollSvg {
  position: sticky;
  top: 0;
  left: 0;
  transform-origin: top;
  min-width: 50px;
  height: 950px;
  /* width: 180px; */
}


.hero {
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_heading_wr {
  position: absolute;
  text-align: center;
  font-weight: 550;
  font-size: 24px;
  z-index: 2;
  color: #f4f4f4;
}
.hero_text {
  transform: translateY(1.5rem);
  opacity: 0;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  text-align: center;
  color: #f4f4f4;
  z-index: 2;
}
.hero_text h1,
h1.hero_text {
  margin: 0;
}
.hero_text.in-view {
  opacity: 1;
  transform: translateY(0);
}
.carousel_slide .hero_text {
  position: absolute;
  max-width: 85%;
}
.textBG::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}




#jobsTopBanner{
  position: fixed;
  z-index: 99;
  background: #f4f4f4;
  width: 100%;
  max-height: 100%;
  padding-top: calc(var(--nav-height) + 2rem);
  transform: translateY(-100%);
  transition: all 2.5s cubic-bezier(.4,0,.2,1);
}
#jobsTopBanner.show{
  transform: translateY(0);
}
.topBannerWr{
  position: relative;
  display: flex;
  flex-direction: column;
} 
#jobsTopBanner button{
  position: absolute;
  top: 0;
  right: 2rem;
}
#jobsTopBanner #x_banner{
  border: none;
  background: none;
  color: var(--accent);
}
.jobsTopbText{
  font-style: italic;
  color: var(--accent);
  display: list-item;
  list-style-type: disc;
  list-style-position: inside;
  margin-left: 1rem;
}
#jobsTopBanner .buttons_area{
  margin: 20px 0;
}



/*----------------------------OVERALL 2------------------------------*/
.main_container {
  display: flex;
  background-color: #f4f4f4;
  box-shadow: 0 0 3rem 1rem rgba(0, 0, 0, 0.3);
}
.content_container {
  padding-bottom: 5rem;
  width: calc(100% - var(--red-width));
}
.red_font_headings {
  color: var(--accent);
  font-size: 1.1rem;
}
.logo_wrapper{
  position: absolute;
}
.logo {
  height: var(--nav-height);
  padding: 0.5rem 0;
  margin-top: calc(var(--nav-top-gap) + 5px);
}
.red_line_left {
  width: var(--red-width);
  background: linear-gradient(var(--accent), #891306);
  display: flex;
  position: relative;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  z-index: 10;
}
.paddingPush {
  width: 100%;
  padding: 0rem 6.5rem;
  align-items: center;
  padding-top: calc(var(--nav-height) + 3.5rem);
}
.top_paddingPush {
  padding-top: 0;
}


.buttons_area svg {
  margin-left: 0.5rem;
  width: 24px;
  height: 24px;
}
.buttons_area {
  background-color: var(--accent);
  color: #f4f4f4;
  border-radius: var(--box-radius);
  padding: 0.5rem 1rem;
  font-weight: 520;
  text-decoration: none;

    display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}


/* Leistungen & betrieb pics … */
.grid_pics {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-auto-rows: 13rem;
}
.grid_pics img {
  width: 100%;
  height: 100%;
  border-radius: var(--box-radius);
  display: block;
  object-fit: cover;
}
.grid_pics .slide {
  position: relative;
  overflow: hidden;
  border-radius: var(--box-radius);
} 






/*----------------------------NAVIGATION------------------------------*/
.navigation_wrapper {
  position: fixed;
  top: 0;
  left: calc(var(--red-width) + var(--nav-gap));
  right: var(--nav-gap);
  display: flex;
  align-items: center;
  margin-top: var(--nav-top-gap);

  color: #444;
  border-radius: var(--box-radius-big);
  z-index: 100;
}

nav.nav {
  width: 100%;
}
.navigation_bar {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
}
.navigation_bar a {
  display: inline-flex;
  color: #444;
  text-decoration: none;
  padding: 0.5rem 1rem;
  margin: 0 0.3rem;
  border-radius: var(--box-radius);
  font-weight: 520;
  font-size: 18px;
}
.navigation_bar .nav_points a.active {
  background-color: #b31808;
  color: #f4f4f4;
  transform: translateY(-0.2rem);
  box-shadow: 0 7px 5px rgba(0, 0, 0, 0.1);
}

#kontakt_button {
  color: #f4f4f4;
}
.ktkt_btn{
  background-color: #f4f4f4;
  color: var(--accent);
  justify-content: center;
}
.drop_toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
  background-color: #f4f4f4;
  list-style: none;
  box-shadow: inset 0 6px 14px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  z-index: 100;

  opacity: 0;
  pointer-events: none;

  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 0.7s ease,
    opacity 0.5s ease;
}
.dropdown_menu.is_open {
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}

.dropdown_menu a {
  display: flex;
  padding: 0.5rem 1rem;
  font-weight: 520;
  font-size: 18px;
}
.open_menu {
  /* color: #444;
  text-decoration: none;
  border-radius: var(--box-radius); */
  padding: 0.5rem 1rem;
  margin: 0 0.3rem;
}

.nav_sub {
  width: 100%;
  color: #444;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.banner_wr_navi {
  display: flex;
  width: 100%;
}

.banner_navi {
  display: flex;
  animation: scroll-banner 35s linear infinite;
  white-space: nowrap;
}
.banner_navi p {
  margin: 0;
  flex-shrink: 0;
  width: 50%;
  padding: 0.3rem 0;
  font-size: 14px;
  color: #444;
  text-decoration: none;
}
.banner_navi a[href^="tel"] {
  text-decoration: none !important;
  color: inherit !important;
}

.sidebar {
  display: flex;
  position: fixed;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  top: 0;
  right: 0;
  height: 100vh;
  padding: 0 !important;
  width: 250px;
  z-index: 100;
  background-color: var(--accent);
  box-shadow: 0 0 3rem 1rem rgba(0, 0, 0, 0.3);
  clip-path: circle(0% at 100% 50%);
  opacity: 0;
  pointer-events: none;
  transition:
    clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}
.sidebar.is_open {
  clip-path: circle(150% at 100% 50%);
  opacity: 1;
  pointer-events: auto;
}

 .close_menu svg,
.open_menu svg{
  width: 30px;
  height: 27px;
}
.sidebar .close_menu {
  align-items: flex-end;
}
.sidebar .nav_points {
  width: 100%;
  align-items: center;
  justify-self: center;
  padding: 0 1rem;
}
.sidebar .nav_points a {
  display: flex;
  width: 100%;
  justify-self: center;
  flex-direction: column;
  color: #f4f4f4;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  padding: 0.3rem 0;
  font-weight: 520;
}
.sidebar .nav_points a.active {
  background-color: #f4f4f4;
  color: #444;
  transform: translateY(-0.2rem);
  box-shadow: 0 7px 5px rgba(0, 0, 0, 0.1);
}
.sidebar .dropdown_menu {
  position: relative;
  top: 0;
  padding: 0;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;

  background-color: var(--accent);
  box-shadow: inset 0 6px 50px rgba(0, 0, 0, 0.15);
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  pointer-events: auto;
  clip-path: none;
  transition: max-height 0.7s ease;
}

.sidebar .dropdown_menu a {
  /* width: 85%; */
  padding: 0.4rem 0.5rem;
  font-size: 1rem;
  text-align: center;
}
.sidebar .dropdown_menu.is_open {
  max-height: 500px;
  padding: 0.6rem 0;
}






/*----------------------------CAROUSEL------------------------------*/
.carousel {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  min-height: 70vh;
  margin: 0 auto;
  user-select: none;
}
.carousel:before,
.carousel:after {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  content: "";
  z-index: 2;
}
.carousel:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #f4f4f4);
}
.carousel:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #f4f4f4);
}

.carousel_viewport {
  overflow: hidden;
  width: 100%;
  flex: 1;
  position: relative;
}

.carousel_track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
  height: 100%;
}

.carousel_slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.carousel_slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.carousel_btn svg {
  width: 20px;
  height: 20px;
}
.carousel_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 100%;
  color: var(--accent);

  background: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0 0.2rem;
  z-index: 5;
}

.carousel_btn.prev {
  left: 0;
}
.carousel_btn.next {
  right: 0;
}

.carousel_dots {
  position: relative;
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  justify-content: center;
  padding: 8px 0;
}
.carousel_dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding: 0;
}
.carousel_dots button[aria-selected="true"] {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(179, 24, 8, 0.08);
}






.bewerb_text a{
  text-decoration: none;
  color: var(--accent);
}

/*----------------------------KONTAKT------------------------------*/
.contact_wrapper {
  width: 100%;
  background: #f4f4f4;
  border: 1px solid #444;
  border-radius: 10px;
}
.contact_wrapper form {
  margin: 35px 30px;
}
form .dbl-field,
form .grund {
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
.dbl-field .field {
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
form .grund {
  height: 50px;
}
form .field input,
form .message textarea,
form .grund select {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0.8rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background-color: #f4f4f4;
  border: 1px solid #444;
  color: #000;
}
form .grund select {
  cursor: pointer;  
  -webkit-appearance: none; /* Disable default styling on all webkit browsers  */  
  -moz-appearance: none; /* Disable ugly ass outline & default styling on ff, firefox, IE 11+ */
  &:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
  }
  &::-ms-expand {
    display: none;
  }
  background-color: transparent;
}
.field input::placeholder,
.message textarea::placeholder {
  color: #8b8a8a;
}
.field input:focus,
.message textarea:focus,
.grund select:focus {
  padding-left: 0.8rem;
  border: 2px solid var(--accent);
  outline: none;
}
.grund_dropdown {
  width: 100%;
  position: relative;
  z-index: 1;
}
form .message {
  position: relative;
}
form .message i {
  top: 30px;
  font-size: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 500px;
  max-width: 100%;
  min-width: 100%;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
.message textarea:focus {
  padding-top: 14px;
}
form .buttons_area {
  margin: 25px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  text-align: center;
  background: none;
}
form .buttons_area button {
  background: none;
  color: #444;
}
.buttons_area button {
  color: #444;
  width: 100%;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  font-weight: 520;
  background: #fff;
  transition: background 0.3s ease;
  border: 2px solid var(--accent);
  box-shadow: inset 0 6px 14px rgba(0, 0, 0, 0.12);
}
.buttons_area span {
  font-size: 17px;
  display: none;
  /* color: _; */
  color: #444;

  background-color: none;
  font-weight: 100;
}
form .grund span {
  /*Dropdown Arrows*/
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  align-items: center;
  padding-right: 2.7rem;
  pointer-events: none;
}
form .grund span::before,
form .grund span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
form .grund span::before {
  /* border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #444; */
  top: 40%;
}
form .grund span::after {
  /* border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #444; */
  top: 60%;
}
/*---------------*/

.dbl-field input[type="file"]::file-selector-button {
  background: #b31908a1;
  color: #fff;
  border: 0;
  padding: 0 .7rem;
  height: 100%;
  margin-right: .7rem;
  cursor: pointer;
}

.dbl-field input[type="file"] {
  
  /* padding-left: 1rem; */
    width: 100%;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
}





.radio_group,
.checkbox_group {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 20px;
}

.radio_group label,
.checkbox_group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #000;
  cursor: pointer;
}

.radio_group input,
.checkbox_group input {
  accent-color: var(--accent);
}







/*----------------------------FOOTER------------------------------*/
footer {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.footer_wrapper {
  background-color: #f4f4f4;
}

.top_footer_wrapper {
  padding: 1rem 8rem;
}
.top_footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.top_footer_content {
  flex: 1;
  max-width: 350px;
}
.top_footer_content p,
.top_footer_content a {
  font-size: 1rem;
  color: #444;
}
.top_footer_content a {
  text-decoration: none;
  align-items: center;
}

.footer_content_2 {
  display: flex;
  align-items: center;
  margin: 0.3rem;
  min-width: 300px;
}
.footer_content_2 svg {
  margin-right: 15px;
  width: 16px;
  height: 24px;
}

.footer_content_3 {
  display: -webkit-box;
  max-height: 6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-height: 1.2rem;
  font-size: 1rem;
  /* white-space: nowrap; */
}

.bottom_footer_wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.bottom_footer_content ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  column-gap: 2rem;
  padding: 0.5rem 8rem;
}
.bottom_footer_content ul li a {
  color: #444;
  margin: 20px;
  text-decoration: none;
}
.bottom_footer_content {
  display: block;
  width: 100%;
}
.footerBottom {
  padding: 0.3rem;
  text-align: center;
}
.footerBottom p {
  font-size: 0.7rem;
}
.rechtlich_sektion a{
  text-decoration: none;
  color: var(--accent);
}
.rechtlich_sektion h1{
  font-size: 2rem;
}





/*---------------------------- LIGHTBOX ------------------------------*/
.pic_overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.pic_overlay::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--accent);
  color: #f4f4f4;
  border-radius: 50%;

  font-size: 2.5rem;
  font-weight: 300;

  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}
.pic_overlay:hover::before {
  opacity: 0.75;
}
.pic_overlay:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(90deg);
}
.pic_overlay:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}
.pic_overlay img {
  transition: transform 0.35s ease;
  cursor: pointer;
}

/* ---------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 899;
  padding: 2rem;
}

.lightbox.visible {
  display: flex;
  justify-content: center;
}

.lightbox_content {
  max-width: 80vw;
  max-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  object-fit: cover;
}

.lightbox_img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--box-radius);
  object-fit: contain;
}

.lightbox_close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 900;
}

.lightbox_arrow {
  position: fixed;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0 1.5rem;
}
.lightbox_arrow.prev {
  left: 0;
}
.lightbox_arrow.next {
  right: 0;
}

.lightbox_thumbs {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  max-width: 80vw;
}

.lightbox_thumbs img {
  height: 70px;
  width: auto;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s;
}

.lightbox_thumbs img.active {
  opacity: 1;
  border: 2px solid var(--accent);
}






/*----------------------------SONSTIGES------------------------------*/
.cookie_banner {
  position: fixed;
  inset: 8rem 13rem;
  display: flex;
  flex-direction: column;
  background: #f4f4f4;
  padding: 1.5rem;
  border-radius: var(--box-radius-big);
  z-index: 9999;
}
.cookie_banner a{
  color: var(--accent);
  text-decoration: none;
}
.cookie_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9998;
}

.cookie_text {
  flex: 1;
  max-height: calc(100% - 3rem); 
  overflow-y: auto;
}
.switch_wr{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.cookie_switches{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.3rem;
}
.cookie_toggle {
  position: relative;
  /* display: inline-block; */
  flex-shrink: 0;
  justify-content: end;
  --h: 1.4rem;
  width: calc(var(--h) * 2);
  height: var(--h);
  border-radius: var(--h);
  background: gray;
  cursor: pointer;
  transition: 0.25s;
}
.cookie_toggle::before{
  position: absolute;
  content: "";
  width: calc(var(--h) - 6px);
  height: calc(var(--h) - 6px);
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: white;
  transition: 0.25s;
}
.cookie_switches input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie_switches input:checked + .cookie_toggle {
  background: var(--accent); 
}
.cookie_switches input:checked + .cookie_toggle::before {
  transform: translateX(var(--h));
}

.cookie_actions {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 1rem;
  padding: 1rem;
}
.cookie_actions .buttons_area{
  cursor: pointer;
}




.cookie_placeholder {
  background: #b3190893;
  color: #fff;
  padding: 2rem;
  aspect-ratio: 16/9;
}







/*----------------------------SONSTIGES------------------------------*/
.fix_squarebox_wr {
  position: absolute;
  left: 0;
  bottom: 15rem;
}
.fix_squarebox_wr a {
  display: block;
  text-decoration: none;
  transition: all .3s ease;
}
.fix_squarebox_inner {
  width: 70px;
  height: 60px;
  padding: 1rem;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: end;
  border-radius: 0 4px 4px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fix_squarebox_inner img,
.fix_squarebox_inner svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
/*--------------*/

.glass {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.7);
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
}
.hidden {
  display: none;
}






/*----------------------------SCREEN SIZE------------------------------*/
@media (min-width: 1800px) {
  /*-- ÜBERGRÖßEN --*/
  :root {
    --red-width: 22rem;
  }
  .paddingPush {
    padding: 0 12rem;
    padding-top: calc(var(--nav-height) + 4rem);
  }
  .top_paddingPush {
    padding-top: 1rem;
  }
    .grid_pics {
    grid-template-columns: repeat(3, 1fr);
  }
}



@media (max-width: 1300px) {
  :root {
    --red-width: 12rem;
  }
  .logo {
    height: calc(var(--nav-height) - 1rem);
    padding: 0.5rem 0;
    margin-top: calc(var(--nav-top-gap) + 10px);
  }
  .paddingPush {
    padding: 0 5rem;
    padding-top: calc(var(--nav-height) + 3.5rem);
  }
  .top_paddingPush {
    padding-top: 0;
  }
  .navigation_bar .nav_points {
    display: none;
  }
  .navigation_bar {
    justify-content: end;
  }
  .open_menu {
    display: flex;
  }
  .drop_toggle {
    display: block;
  }
    .grid_pics {
    grid-template-columns: repeat(2, 1fr);
  }

  .top_footer_wrapper {
    padding: 1rem 3rem;
  }
  .top_footer_inner {
    gap: 1rem;
  }
  .cookie_banner{
    inset: 8rem;
  }
  .cookie_switches{
    gap: 15px;
  }
}




@media (max-width: 950px) {
  :root {
    --red-width: 10rem;
  }
  h1 {
    font-size: 2rem;
  }
  .red_font_headings {
    font-size: 0.9rem;
  }

  .navigation_bar {
    padding-bottom: 0.2rem;
  }
  .paddingPush {
    padding: 0 3rem;
    padding-top: calc(var(--nav-height) + 2.5rem);
  }
  .top_paddingPush {
    padding-top: 0;
  }
  .logo {
    display: none;
  }
  .small_logo {
    display: block;
    height: var(--nav-height);
    margin-top: var(--nav-top-gap);
    padding: 1rem;
  }
  .drop_toggle {
    position: relative;
    display: block;
  }
  .banner_navi p {
    font-size: 10px;
    padding: 0.1rem 0;
  }

    .grid_pics {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    /* grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: unset; */
  }
  .grid_pics::-webkit-scrollbar {
    height: 0.7rem;
  }
  .grid_pics::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 100vh;
  }
  .grid_pics::-webkit-scrollbar-track {
    border-radius: 100vh;
    background: rgba(0, 0, 0, 0.1);
  }
  .grid_pics .slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .grid_pics img {
    width: auto;
    height: 45vw;
  }
  
    form .dbl-field{
    flex-direction: column;
    margin-bottom: 0px;
  }
  form .dbl-field .field{
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }
  form .message textarea{
    resize: none;
  }
  form .buttons_area{
    gap: .5rem;
  }
  .buttons_area button{
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }
  .buttons_area span{
    margin: 0;
    text-align: center;
  }

  footer {
    /* bottom: unset;
    left: unset; */
    padding-left: calc(var(--red-width));
  }
  .top_footer_content {
    max-width: 400px;
  }
  .top_footer_inner {
    flex-direction: column;
  }
  .footer_content_1 iframe {
    height: auto;
  }
  .bottom_footer_content ul {
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }
  .cookie_actions {
   flex-direction: column; 
  }
  .cookie_toggle{ 
    --h: .9rem; 
  }
}





@media (max-width: 600px) {
  :root {
    --red-width: 3.5rem;
  }
  h1 {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 0.9rem;
  }
  p,
  ul {
    font-size: 0.8rem;
  }
  ul{
    padding-left: 1rem;
  }
  /* #scrollSvg{
    width: 30px;
  } */
  .red_font_headings {
    font-size: 0.77rem;
  }
  .hero .carousel:before,
  .hero .carousel:after,
  .hero .carousel_btn,
  .hero .carousel_dots {
    display: none;
  }
  .ktkt_btn,
  #kontakt_button {
    font-size: 0.9rem;
  }
  .buttons_area svg {
    margin-left: 0.2rem;
    width: 20px;
    height: 20px;
  }
  .banner_navi p {
    font-size: 8px;
    color: #444;
    text-decoration: none;
  }

  .content_container {
    padding-bottom: 3rem;
  }
  section {
    padding: 1rem 0;
  }
  .paddingPush {
    padding: 0rem 1rem;
    padding-top: calc(var(--nav-height) + 2.5rem);
  }
  .top_paddingPush {
    padding-top: 0;
  }
  .grid_pics {
    grid-template-columns: repeat(1, 1fr);
  }

  footer {
    position: relative;
    padding-left: 0;
  }
  .top_footer_wrapper {
    padding: 1rem 2.2rem;
  }
  .footer_content_2 {
    min-width: unset;
  }
  .footer_content_2 svg {
    margin-right: 8px;
  }
  .top_footer_inner h3 {
    font-size: 1.1rem;
  }
    .bottom_footer_content ul {
      font-size: 16px;
    column-gap: 2rem;
    padding: 0.5rem 2rem;
  }
  .fix_squarebox_wr {
  bottom: 5rem;
  }
  .fix_squarebox_inner {
    width: 45px;
    padding: .6rem;
  }
  .fix_squarebox_inner img,
  .fix_squarebox_inner svg {
    width: 25px;
    height: 25px;
  }
  .rechtlich_sektion h1{
  font-size: 1.4rem;
  }

  .lightbox_close {
    top: 1rem;
    right: 1rem;
  }
  .lightbox_arrow {
    font-size: 2rem;
    padding: 0 1rem;
  }
  .cookie_banner{
    inset: 4rem 3rem;
  }
  .switch_wr{
    padding: 1rem;
  }
  .cookie_switches{
    gap: 5px;
  }
}

@media (max-width: 380px) {
    h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1rem;
  }
  h3 {
    font-size: .7rem;
  }

  .navigation_bar a {
    padding: 0.3rem 0.8rem;
    margin: 0rem;
    font-weight: 480;
    font-size: 16px;
  }
  .navigation_bar #kontakt_button {
    font-size: 0;
  }
  .navigation_bar #kontakt_button svg {
    margin: unset;
  }
  .kontakt_icon_1 {
    display: none;
  }
  .kontakt_icon_2 {
    display: inline;
  }
  .banner_navi p {
    font-size: 8px;
  }
  .paddingPush {
    padding: 0rem 0.7rem;
    padding-top: calc(var(--nav-height) + 2.5rem);
  }
  .top_paddingPush {
    padding-top: 0;
  }
    .grid_pics::-webkit-scrollbar {
    height: .4rem;
  }

      .contact_wrapper form{
    margin: 20px 15px;
  }

  .footer_content_1 iframe {
    width: 100%;
    height: 150px;
  }
  .cookie_banner{
    inset: 4rem 1.5rem;
  }
  .cookie_banner{
    padding: 1.2rem;
  }
}

@media(max-width: 280px){
  body{
    hyphens: auto;
    word-break: break-word; /* Fallback für ältere Browser */
    overflow-wrap: break-word;
  }
  .navigation_bar a,
  .kontakt_icon_2{
    display: none;
    padding: 0;
  }
  .cookie_banner,
  .switch_wr{
    padding: .7rem;
  }
  .cookie_switches{
    gap: 5px;
  }
  .cookie_toggle{
    --h: .7rem;
  }
}