:root {
  --itschwarz-darkblue: #003e68;
  --itschwarz-lightblue: #26b1d1;
  --itschwarz-stripe-gray: #e6e7ea;
  --itschwarz-content-padding: 2rem;
  --itschwarz-menu-lineheight: 1.5em;
  --itschwarz-menu-listitem-padding: 0.7em;
  --itschwarz-image-border-radius: 15px;
}
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}
div.wrapper-content {
  background-color: var(--white);
}
.header-image .ce-heroimage img {
  max-height: calc(80vh - 85.5px);
  width: 100%;
  object-fit: cover;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h11'/%3E%3C/svg%3E");
}
span.navbar-toggler-icon {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  transition: transform 0.2s ease;
}
span.navbar-toggler-icon:hover {
  transform: scale(1.2);
}
.itschwarz-navbar-toggler {
  color: white;
  border-style: none;
}
.itschwarz-header {
  height: 176px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.itschwarz-header > .skip-to-content {
  display: none;
}
/*** NAVIGATION PAGE ***/
.itschwarz-navigation {
  padding-left: 5%;
}
.itschwarz-navigation .navigation-logo {
  position: absolute;
  top: 0;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .itschwarz-navigation {
    display: none;
  }
}
.itschwarz-navigation .navigation-footer .overlay-content {
  text-align: left;
}
.itschwarz-navigation#nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--itschwarz-darkblue);
  display: flex;
  justify-content: left;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9999;
}
.itschwarz-navigation#nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.itschwarz-navigation#nav-overlay main {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.itschwarz-navigation#nav-overlay .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
  text-transform: uppercase;
}
.itschwarz-navigation#nav-overlay .menu li {
  position: relative;
}
.itschwarz-navigation#nav-overlay .menu a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.itschwarz-navigation#nav-overlay .menu a:hover {
  transform: scale(1.2);
  background: var(--white);
  color: var(--itschwarz-darkblue);
}
.itschwarz-navigation#nav-overlay .menu a.active.current {
  background: var(--white);
  color: var(--itschwarz-darkblue);
}
.itschwarz-navigation#nav-overlay .submenu {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  gap: 10px;
  animation: fadeIn 0.3s ease forwards;
}
.itschwarz-navigation#nav-overlay .submenu li.has-submenu .submenu {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  gap: 10px;
  animation: fadeIn 0.3s ease forwards;
}
.itschwarz-navigation#nav-overlay #nav-overlay .submenu #nav-overlay .has-submenu:hover .submenu li.has-submenu:hover .submenu {
  display: flex;
}
.itschwarz-navigation#nav-overlay #nav-overlay .submenu li a {
  font-size: 1.4rem;
  color: #dfe9f1;
  padding: 8px 16px;
  display: block;
  border-radius: 8px;
}
.itschwarz-navigation#nav-overlay #nav-overlay .submenu li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.itschwarz-navigation#nav-overlay .has-submenu:hover .submenu {
  display: flex;
}
.itschwarz-navigation #close-overlay {
  position: absolute;
  top: 0.5rem;
  right: 3rem;
  font-size: 3rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease;
  z-index: 10000;
}
.itschwarz-navigation #close-overlay:hover {
  transform: scale(1.2);
}
.wrapper-topmenu {
  background-color: var(--itschwarz-darkblue) !important;
}
.wrapper-logo {
  margin-top: 0px !important;
}
.frame-examplepicture {
  max-height: 350px;
  border-radius: var(--itschwarz-image-border-radius);
}
.frame-examplepicture div {
  max-height: inherit;
  border-radius: var(--itschwarz-image-border-radius);
}
.frame-examplepicture div figure {
  border-radius: 15px;
}
.frame-examplepicture div figure img {
  max-height: inherit;
  width: auto;
  object-fit: cover;
  border-radius: var(--itschwarz-image-border-radius);
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
[class*=frame-type-menu_].frame-layout-261 a,
.socialmedia a {
  background: none !important;
}
[class*=frame-type-menu_].frame-layout-261 a:hover,
.socialmedia a:hover {
  opacity: 30%;
}
form[id*="kontaktformular"] .form-group {
  position: relative;
}
form[id*="kontaktformular"] label {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 0.75rem;
  margin: 0;
  color: currentColor;
  line-height: 1;
  pointer-events: none;
  transform-origin: left top;
  transition: transform 160ms ease, opacity 160ms ease;
}
form[id*="kontaktformular"] input,
form[id*="kontaktformular"] textarea {
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 1.45rem 0.75rem 0.45rem;
}
form[id*="kontaktformular"] textarea {
  min-height: 8rem;
}
form[id*="kontaktformular"] .form-group:focus-within label,
form[id*="kontaktformular"] .form-group.is-filled label {
  opacity: 0.72;
  transform: translateY(-0.65rem) scale(0.75);
}
form[id*="kontaktformular"] > .clearfix:has(> .frame-type-text) {
  margin: 0.5rem 0 0;
}
form[id*="kontaktformular"] > .clearfix:has(> .frame-type-text) > .anker {
  display: none;
}
form[id*="kontaktformular"] > .clearfix:has(> .frame-type-text) > .frame-type-text {
  margin: 0;
  padding: 0;
}
form[id*="kontaktformular"] > .clearfix:has(> .frame-type-text) > .frame-type-text p {
  margin: 0;
}
form[id*="kontaktformular"] > .clearfix:has(> .frame-type-text) + .actions [type="submit"] {
  margin-top: 0.5rem;
}
a {
  text-decoration: none;
}
/* Barrierefreie Links im Fließtext */
.content-main p a,
.content-main li a {
  text-decoration-line: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  text-decoration-skip-ink: auto;
}
.content-main p a:hover,
.content-main li a:hover {
  text-decoration-thickness: 2px !important;
}
.content-main p a:focus-visible,
.content-main li a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  text-decoration-thickness: 2px !important;
}
/* Barrierefreie Breadcrumb-Links */
.rootline ul.horizontal.small li a {
  text-decoration-line: underline !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.15em;
  text-decoration-skip-ink: auto;
}
.rootline ul.horizontal.small li a:hover {
  text-decoration-thickness: 2px !important;
}
.rootline ul.horizontal.small li a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  text-decoration-thickness: 2px !important;
}
.btn-secondary {
  color: var(--button2-color) !important;
  background: var(--button2-bg);
  border: var(--border-width) solid var(--button2-border);
}
.frame-default {
  margin: 1.5em 0 1.5em 0 !important;
}
.frame-default:not(.frame-type-heroimage) img {
  border-radius: var(--itschwarz-image-border-radius);
}
.frame-type-heroimage {
  margin: 0 !important;
}
.frame-darkbluebackground {
  max-height: inherit;
  border-radius: var(--itschwarz-image-border-radius);
  background-color: var(--itschwarz-darkblue);
  align-content: center;
  margin-bottom: 0 !important;
}
.frame-darkbluebackground .ce-column {
  margin-bottom: 0 !important;
}
.frame-nomargin {
  margin: 1.5em 0 1.5em 0 !important;
}
.frame-nomargin:not(.frame-type-heroimage) img {
  border-radius: var(--itschwarz-image-border-radius);
}
.frame-nomargin div p {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.clearfix .frame-nomargin {
  margin: 0px !important;
}
.frame-nopadding {
  margin: 1.5em 0 1.5em 0 !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.frame-nopadding:not(.frame-type-heroimage) img {
  border-radius: var(--itschwarz-image-border-radius);
}
.frame-layout-10300 {
  position: relative;
  z-index: 0;
}
.frame-layout-10300 #e275 {
  margin-top: var(--itschwarz-content-padding);
  margin-bottom: var(--itschwarz-content-padding);
}
@media screen and (min-width: 768px) {
  .frame-layout-10300 #e275 {
    margin: var(--itschwarz-content-padding) 0;
  }
}
.frame-layout-10300::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--itschwarz-stripe-gray);
  box-shadow: 0 0 0 100vmax var(--itschwarz-stripe-gray);
  clip-path: inset(0 -100vmax);
  z-index: -1;
}
textarea {
  min-height: calc(var(--base-size) * 4) !important;
}
.service-header {
  margin-bottom: 1em;
}
.service-icon {
  align-content: center;
  max-width: 75px;
}
@media (max-width: 768px) {
  .service-icon {
    margin: auto;
  }
}
.service-icon img {
  background-color: white;
  border-radius: var(--itschwarz-image-border-radius);
  padding: 0.3em;
  aspect-ratio: 1/1;
  max-width: 75px;
  min-width: 75px;
}
@media (max-width: 768px) {
  .service-icon img {
    margin: auto;
  }
}
.service-icon-negativ {
  margin: auto;
  max-width: 75px;
}
.service-icon-negativ img {
  background-color: var(--itschwarz-darkblue);
  border-radius: 15px;
  padding: 0.3em;
  aspect-ratio: 1/1;
  max-width: 75px;
  min-width: 75px;
}
@media (max-width: 768px) {
  .service-icon-negativ img {
    margin: auto;
  }
}
.services {
  background-color: var(--itschwarz-stripe-gray);
  box-shadow: 0 0 0 100vmax var(--itschwarz-stripe-gray);
  clip-path: inset(0 -100vmax);
}
.services .service-grid > a {
  border-radius: 12px;
}
.services .service-grid > a:hover .service-item,
.services .service-grid > a:focus-visible .service-item {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.services .service-grid > a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.service-header-title {
  align-content: center;
}
@media (max-width: 768px) {
  .service-header-title {
    text-align: center;
  }
}
.service-header-title p {
  margin-bottom: 0px !important;
}
.service-description {
  text-align: justify;
  hyphens: auto;
  text-align-last: left;
  text-wrap: auto;
}
.overlay-nav {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: var(--itschwarz-darkblue);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-right: var(--overlay-scrollbar-width, 0px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: circle(0 at var(--overlay-origin-x, calc(100% - 2rem)) var(--overlay-origin-y, 2rem));
  transition: clip-path 200ms ease-in, opacity 140ms ease-in, visibility 0s linear 200ms;
}
.overlay-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: circle(150vmax at var(--overlay-origin-x, calc(100% - 2rem)) var(--overlay-origin-y, 2rem));
  transition: clip-path 200ms ease-out, opacity 140ms ease-out, visibility 0s;
}
.overlay-nav::-webkit-scrollbar {
  display: none;
  width: 0;
}
/* Header */
.overlay-header {
  align-items: center;
}
.overlay-logo {
  height: 40px;
}
/* Body */
.overlay-body {
  flex: 1;
  display: flex;
  align-items: center;
  /* vertikal zentriert */
  padding-left: 3rem;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  text-transform: uppercase;
}
.overlay-body a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.overlay-body a:hover {
  transform: scale(1.15);
  background: var(--white);
  color: var(--itschwarz-darkblue);
}
.overlay-body a.active.current {
  transition: none;
  background: var(--white);
  color: var(--itschwarz-darkblue);
  line-height: 1.5em;
  padding: 0.4em;
}
@media screen and (min-width: 1200px) {
  .overlay-body a.active.current {
    transform: scale(1.2);
  }
}
.overlay-body a.active.current:hover {
  color: var(--itschwarz-lightblue);
}
.overlay-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.overlay-menu .nav-link {
  color: var(--white);
  font-size: 1.5rem;
  padding: 0;
  padding-left: 0.4em;
  padding-right: 0.4em;
  line-height: 1.7em;
}
/* Footer */
.overlay-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  div.wrapper-logo {
    margin: 0px !important;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .overlay-nav,
  .overlay-nav.is-open {
    clip-path: none;
    transition: none;
  }
  form[id*="kontaktformular"] label {
    transition: none;
  }
}
@media (max-height: 900px) {
  .v-d-900-none {
    display: none !important;
  }
}
.its-gutter {
  /*
    padding-right: var(--gutter);
    padding-left: var(--gutter);
    */
}
.its-instagram svg {
  min-width: 50px;
  max-width: 50px;
  height: auto;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .its-instagram svg {
    min-width: 25px;
    max-width: 25px;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.clients {
  padding: 40px 20px;
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  /*    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 51%);
    margin-bottom: calc(var(--base-size)*2);
    */
  background-color: var(--itschwarz-stripe-gray);
  box-shadow: 0 0 0 100vmax var(--itschwarz-stripe-gray);
  clip-path: inset(0 -100vmax);
}
.full-width {
  width: auto;
  margin-inline: 0;
}
.full-width-stripe {
  background-color: var(--itschwarz-stripe-gray);
  box-shadow: 0 0 0 100vmax var(--itschwarz-stripe-gray);
  clip-path: inset(0 -100vmax);
}
.clients h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 40px;
  text-align: left;
}
.client-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.client-section {
  display: flex;
  flex: none;
}
.client-section > a {
  display: flex;
  text-decoration: none;
}
.client-section > a:focus-visible {
  border-radius: 12px;
  outline: 3px solid var(--body-link-color);
  outline-offset: 3px;
}
.client-carousel {
  display: block;
  overflow: hidden;
  max-width: 100%;
}
.client-carousel__track {
  display: flex;
  width: max-content;
}
.client-carousel__group {
  display: flex;
  flex: none;
  align-items: stretch;
  gap: 40px;
  padding-right: 40px;
}
.client-carousel:not(.is-overflowing) .client-carousel__track {
  width: 100%;
  justify-content: center;
}
.client-carousel:not(.is-overflowing) .client-carousel__group {
  padding-right: 0;
}
.client-carousel:not(.is-overflowing) .client-carousel__group--clone {
  display: none;
}
.client-carousel.is-overflowing .client-carousel__track {
  animation: client-carousel-scroll var(--client-carousel-duration, 24s) linear infinite;
}
.client-carousel.is-overflowing:hover .client-carousel__track,
.client-carousel.is-overflowing:focus-within .client-carousel__track {
  animation-play-state: paused;
}
@keyframes client-carousel-scroll {
  to {
    transform: translateX(-50%);
  }
}
.client-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 100px;
  padding: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 5px;
  text-decoration: none;
}
.client-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
}
.client-item p {
  font-size: 1rem;
  color: #111;
  line-height: 1.3;
  margin: 0;
}
/* Responsives Layout */
@media (max-width: 768px) {
  .client-item {
    width: 100px;
    height: 70px;
    padding: 10px;
  }
  .clients h2 {
    font-size: 1.5rem;
  }
}
.text-justify {
  text-align: justify;
  hyphens: auto;
}
body.overlay-open {
  overflow: hidden;
}
#overlayFooterMount {
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .client-carousel.is-overflowing {
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .client-carousel.is-overflowing .client-carousel__track {
    animation: none;
  }
  .client-carousel.is-overflowing .client-carousel__group--clone {
    display: none;
  }
}
