/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Introduction
- Details
- Services 1
- Services 2
- Services 3
- Projects
- Testimonials
- Contact
- Footer
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds - light gray #f7f9fd
- Headings text - black #161223
- Body text - dark gray #53575a
- Buttons, icons - green #7dc22b

- Petrol 	#4A7D82
- Red		#952829
******************************************/

/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../webfonts/open-sans-v40-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/open-sans-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/open-sans-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/poppins-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/poppins-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}





/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
}

html {scroll-behavior: smooth}

body, p {
	color: #53575a; 
	font: 400 1.2rem/1.8rem "Open Sans", sans-serif;
}

@keyframes fadein{from{opacity:0;}to{opacity:1;}}@-moz-keyframes fadein{from{opacity:0;}to{opacity:1;}}@-webkit-keyframes fadein{from{opacity:0;}to{opacity:1;}}@-o-keyframes fadein{from{opacity:0;}to{opacity:1;}}

body {animation:fadein 1.8s;-moz-animation:fadein 1.8s;-webkit-animation:fadein 1.8s; background: #fff}

.sec-pd {padding-top: 8rem !important;padding-bottom: 8rem !important}

section#erfahrung {background:rgba(0, 0 ,0, 0.05)}

header#start {
  scroll-margin-top: 100px; /* oder was bei dir passt */
}

input:focus {
  -webkit-appearance: none !important;
}

input::-moz-focus-inner {
  border: 0 !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #1A5756 !important; /* optional */
  background: rgba(0, 0, 0, 0.05) !important;
  transition: all 0.6s;
}

.form-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  width: 100%;
  padding: 10px 40px 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff; /* gleiche Farbe wie im Screenshot oben */
  color: #333;
  font-size: 16px;
  cursor: pointer;

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path fill='gray' d='M0 0l6 8 6-8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

select:focus {
  outline: none;
  border-color: #009688; /* z. B. deine Akzentfarbe */
  box-shadow: none;
}

select option {
  background-color: #fff; /* Hintergrundfarbe des Dropdowns */
  color: #333;
  padding: 10px;
}

select option:hover,
select option:checked {
  background-color: #e0f2f1; /* sanfter Akzent bei Hover/Auswahl */
}

h1,
.heading-h1{
	color: #161223;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 3.25rem;
	font-family: "Poppins"
}

h2,
.heading-h2{
	color: #1A5756;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 3.25rem;
	font-family: "Poppins"
}

h3,
.heading-h3{
	color: #161223;
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-family: "Poppins"
}

h4,
.heading-h4 {
	color: #AA0046;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: "Poppins"
}

#contact h4 {margin-bottom: 1.5rem}

h5,
.heading-h5{
	color: #161223;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.625rem;
	font-family: "Poppins"
}

h6,
.heading-h6{
	color: #161223;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.375rem;
	font-family: "Poppins"
}

#mein-angebot {background: #FFF9F1}

.card {background: transparent}

.testimonials {
  background-color: rgba(0, 85, 85, 0.1);
}

.testimonials img {
  border: 3px solid #ddd;
  object-fit: cover;
}

.testimonials h5 {
  font-weight: 600;
  margin-top: 0.5rem;
}

.testimonials p {
  font-style: italic;
  color: #444;
}

/* ============================ */
/*   TESTIMONIAL-INDIKATOREN   */
/* ============================ */

/* Positionierung und Abstand */

#testimonialCarousel .carousel-indicators {
  bottom: -60px; /* verschiebt die Punkte weiter unter den Text */
  margin-top: 2rem;
}

/* Basis-Styling der Punkte */
#testimonialCarousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  background-color: #ccc; /* neutrale Grundfarbe */
  border-radius: 50%;
  border: none;
  opacity: 0.5;
  transition: all 0.3s ease;
  margin: 0 6px;
}

/* Hover-Effekt */
#testimonialCarousel .carousel-indicators [data-bs-target]:hover {
  opacity: 0.9;
  transform: scale(1.1);
}

/* Aktiver Punkt */
#testimonialCarousel .carousel-indicators .active {
  background-color: #005555; /* deine Akzentfarbe */
  opacity: 1;
  transform: scale(1.2);
}

/* Optional: zentrieren, falls nicht automatisch */
.testimonials .carousel-indicators {
  justify-content: center;
}

/* Carousel-Inhalt zentriert und in der Breite begrenzt */
.testimonials-carousel {
  max-width: 80%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonials-carousel {
    max-width: 70%;
  }
}

/* Pfeile kleiner & weiter außen platzieren – bis max. 992px */
@media (max-width: 992px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 30px; /* schmaler Klickbereich */
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }

 .carousel-control-prev {
    left: 0;  /* weiter nach außen */
  }

  .carousel-control-next {
    right: 0;
  }
}


.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.txt-red {color:#AA0046}
.txt-green {color: #1A5756}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-family: "Poppins"
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #4A7D82;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #952829;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.read-more {
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
}

.read-more .fas {
	margin-left: 0.625rem;
	font-size: 1rem;
	vertical-align: -8%;
}

.green {
	color: #7dc22b;
}

.bg-gray {
	background-color: #f7f9fd;
}

.bg-kacheln {
	background-color: rgba(0, 85, 85, 0.1);
}

.bg-petrol-trans {
	background:linear-gradient(45deg, rgba(26, 87, 86, 1) 0%, rgba(170, 0, 70, 1) 50%, rgba(26, 87, 86, 1) 100%);
}

.bg-red-trans {
	background-color:rgba(203,40,41,0.2);
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #7dc22b;
	border-radius: 4px;
	background-color: #7dc22b;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #7dc22b; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 1.825rem 1.625rem 1.825rem !important;
	border-radius: 8px;
	background-color: #AA0046;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.85rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: #1A5756;
	color: #fff; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg-white {
	display: inline-block;
	padding: 1.625rem 1.825rem 1.625rem 1.825rem;
	border-radius: 8px;
	background-color: #fff;
	color: #AA0046;
	font-weight: 600;
	font-size: 1rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg-white:hover {
	background-color: rgba(255, 255 ,255, 0.8);
	color: #AA0046; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #161223;
	border-radius: 4px;
	background-color: transparent;
	color: #161223;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #161223;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #161223;
	border-radius: 4px;
	background-color: transparent;
	color: #161223;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #161223;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #161223;
	border-radius: 4px;
	background-color: transparent;
	color: #161223;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #161223;
	color: #ffffff;
	text-decoration: none;
}

.wiggle {animation: wiggle 1.5s infinite;}

.pd-mg-standard {
	padding-top: 9.125rem;
	padding-bottom: 5.25rem;
}

	.card {
      transition: all 0.3s ease;
      overflow: hidden;
	  border-radius:8px;
    }

    .card img {
      height: 150px;
      object-fit: cover;
    }

    /* Einheitliche Kartenhöhe */
    .card-fixed {
      min-height: 500px; /* <- anpassen nach Bedarf */
      display: flex;
      flex-direction: column;
    }

    /* Animationsbereich */
    .card-content {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.5s ease, opacity 0.4s ease;
    }
	
	.card-content p{
      margin-top:1.5rem
    }

    .btn-toggle {
      width: 100%;
      transition: background-color 0.2s ease;
    }

    .card-body {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
	  padding:1.5rem
    }

    .content-wrapper {
      flex-grow: 1;
    }

    /* Schöner visueller Effekt beim Öffnen
    .card.expanded {
      box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
      transform: translateY(-2px);
    } */
	
.angebot-cards {margin-bottom:5.25rem}	
	
.card ul {padding-left:20px;margin-top:20px}
.card li {margin-bottom:10px}

#introduction {
background: rgb(225,225,225,0.5);
position: relative	
}

#introduction:before {
	content: "";
	background-image:url("../images/logo_circles_white.svg");
	background-repeat: no-repeat;
	background-size: 60%;
    position: absolute;
	background-position: left 20%;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: -50px;
    opacity: 0.5;
	z-index: 100
}

@keyframes wiggle {
    0% { transform: rotate(0deg); }
   80% { transform: rotate(0deg); }
   85% { transform: rotate(3deg); }
   95% { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}

  /* Timleline*/
    .timeline {
      position: relative;
      margin: 2rem 0;
      padding: 2rem 0;
    }
    .timeline::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background: #D2D2D2;
      transform: translateX(-50%);
    }
    .timeline-item {
      position: relative;
      margin-bottom: 2rem;
    }
    .timeline-item .timeline-content {
      position: relative;
      width: 45%;
      padding: 1.5rem;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,.05);
    }
    .timeline-item::after {
      content: "";
      position: absolute;
      top: 1rem;
      left: 50%;
      width: 12px;
      height: 12px;
      background: #AA0046;
      border-radius: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }
    /* Abwechselnd links/rechts */
    .timeline-item.left .timeline-content {
      left: 0;
    }
    .timeline-item.right .timeline-content {
      left: 55%;
    }
	
	.timeline h5  {color: #AA0046}
	.timeline p {margin-bottom: 0}

    /* Mobile: alles untereinander */
    @media (max-width: 767.98px) {
      .timeline::before {
        left: 8px;
      }
      .timeline-item .timeline-content {
        width: calc(100% - 30px);
        left: 30px !important;
      }
      .timeline-item::after {
        left: 8px;
      }
    }


.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-control-input,
.form-control-textarea {
	width: 100%;
	padding-top: 0.875rem;
	padding-bottom: 0.875rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	border-radius: 4px;
	background-color: #ffffff;
	font-size: 0.875rem;
	line-height: 1.5rem;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-textarea {
	display: block;
	height: 14rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
}

.form-control-input:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #7dc22b;
	border-radius: 4px;
	background-color: #7dc22b;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #7dc22b;
	background-color: transparent;
	color: #7dc22b;
}

.time_price 		{float:right}

.img_ar_sign 		{width: 200px; height: auto;margin-bottom: 15px}
.img_ar_gutschein 	{width: 550px; height: auto;margin-bottom: 30px;mix-blend-mode: multiply}

.contact_img 		{width: 350px;height: auto;margin-bottom: 50px}

i.greater_font {font-size: 1.5rem;margin-top: 10px;margin-bottom: 10px}

.form-1 a:link, .imprint a:link {text-decoration: none; color: #4a7d82}
.form-1 a:hover, .imprint a:hover {text-decoration: underline; color: #952829}

a.phone_link:link {text-decoration: none; color:inherit;cursor: default}
a.phone_link:hover {text-decoration: none; color: inherit}

.mobile_show {display: none}


@media screen and (max-width: 600px){
  
	.img_ar_gutschein 	{width: 100%}
	
  .roller{
  height: 2.6rem; 
  line-height: 2.125rem;  
  }
  
  .roller #rolltext {  
  animation: slide-mob 5s infinite;  
}
	
}  
  @keyframes slide-mob {
  0%{
    top:0;
  }
  25%{
    top: -2.125rem;    
  }
  50%{
    top: -4.25rem;
  }
  75%{
    top: -6.375rem;
  }
}



/* --- NAVBAR --- */

/* Navbar smooth shrink */
#navbar.top-nav-collapse {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  /*background-color: rgba(0,0,0,0.9);  optional */
}


.navbar {
	position: fixed;
	top: env(safe-area-inset-top, 0);
	left: 0;
	width: 100%;
	z-index: 1000;

	background-color: #fff;
	font-weight: 600;
	font-size: 0.85rem;
	line-height: 0.875rem;
	text-transform: uppercase;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);

	/* sorgt für Abstand bei Geräten mit Notch / Dynamic Island */
	padding-top: calc(0.25rem + env(safe-area-inset-top, 0));
	padding-bottom: 0.25rem;
}

/* Fallback für Browser, die env() nicht unterstützen */
@supports not (top: env(safe-area-inset-top)) {
	.navbar {
		top: 0;
		padding-top: 0.25rem;
	}
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
	width: auto;
	height: 45px;
}

.navbar .logo-text {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 1rem;
	text-decoration: none;
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #AA0046;
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover {
	color: #1A5756;
}

.navbar .nav-item .nav-link.active {
	color: #1A5756;
}

.navbar .nav-link:hover {
  opacity: 0.8; /* optional */
}

/* --- DROPDOWN MENU --- */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.5s;
}

@keyframes fadeDropdown {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.navbar .dropdown-menu {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	border: none;
	background-color: #fff;
}

.navbar .dropdown-item {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #1A5756;
	font-weight: 600;
	font-size: 1rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: transparent;
	color: #AA0046;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto;
	border: none;
	background-color: #5b5f66;
}

/* --- ICONS & TOGGLER --- */
.navbar .fa-stack {
	width: 2em;
	margin-right: 0.25rem;
	font-size: 0.75rem;
}

.navbar .fa-stack-2x {
	color: #7dc22b;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: #ffffff;
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: #7dc22b;
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.8rem;
}

.navbar-toggle-icon {
	display: inline-block;
	width: 2.5em;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	color: #1A5756;
	transition: transform 0.3s ease;
}

.navbar-toggler.active .navbar-toggle-icon {
	transform: rotate(180deg);
}

/* --- OFFCANVAS MENU --- */
.offcanvas-collapse {
	position: fixed;
	top: calc(100px + env(safe-area-inset-top, 0));
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1.6rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: rgba(255, 255, 255, 0.9);
	transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Max-width 992px */
@media (max-width: 992px) {

.offcanvas-collapse.open {
	visibility: visible;
	transform: translateX(-100%);
}
	.offcanvas-collapse {
padding-top:1rem
}
	
}

/* --- BODY PADDING unter Navbar --- */
body {
	padding-top: calc(100px + env(safe-area-inset-top, 0));
}

@supports not (top: env(safe-area-inset-top)) {
	body {
		padding-top: 100px;
	}
}

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


.header #video-background {
	position: absolute;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100; 
}


.header {
	position: relative;
	}

.header .header-content {
    position: relative; /* damit z-index greift */
    z-index: 2;         /* Text über dem Overlay */
    padding-top: 11rem;
    padding-bottom: 9rem;
    text-align: center;
	background: url("../images/hero_bg.webp") center/cover no-repeat;
    }
	
.header-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 85, 85, 0.3);
  z-index: 1;
}

.header-content > * {
  position: relative;
  z-index: 2;
}



@keyframes shrink {
  0% {background-size: 110% 110%;}
  100% {background-size: 100% 100%;  }
}

.header .h1-large {
	margin-bottom: 2.25rem;
	color: #ffffff;
	font-size: 3rem;
	line-height: 3.75rem;
}


/************************/
/*     Introduction     */
/************************/
.cards-1 {
	text-align: center;
}

.cards-1-ind-pd {
	padding-top: 8rem;
	padding-bottom: 8rem;
}

.imprint {
	text-align: left;
}

.cards-1 .h2-heading {
	margin-bottom: 1.125rem;
}

.cards-1 .p-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.cards-1 .card {
	margin-bottom: 4rem;
	border: none;
	border-radius: 6px;
}

.cards-1 .card-body {
	padding: 0;
}

.cards-1 .card-icon {
	width: 90px;
	height: 90px;
	margin-right: auto;
	margin-bottom: 2rem;
	margin-left: auto;
	border-radius: 50%;
	background-color: #AA0046;
	text-align: center;
}

.cards-1 .card-icon .fas {
	color: #ffffff;
	font-size: 2.125rem;
	line-height: 90px;
}

.cards-1 .card-title {
	margin-bottom: 0.625rem;
}


.delay-10 {transition-property:background;	
transition-duration:4s;	
transition-timinig-function:ease-in;	
transition-delay:3s;}

.scale-up-center-1 {
	
	-webkit-animation: scale-up-center 2s 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-center 2s 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.scale-up-center-2 {
	
	-webkit-animation: scale-up-center 2s 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-center 2s 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.scale-up-center-3 {
	
	-webkit-animation: scale-up-center 2s 4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-center 2s 4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.scale-up-center-4 {
	
	-webkit-animation: scale-up-center 2s 6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-center 2s 6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
	  rotate: 0deg;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
	  rotate: 360deg;
  }
}



/*******************/
/*     Details     */
/*******************/

.split .area-1 {
	height: 430px;
	background-size: cover;
}

.split .area-1.coaching {
	background-image: url('../images/il_thema_coaching.webp');
background-repeat: no-repeat;
background-position: 50% 20%;
background-size: cover;
}

.split .area-1.training {
	background: url('../images/il_thema_training_workshops.webp');
	background-repeat: no-repeat;
background-position: 70% 20%;
background-size: cover;
}

.split .area-1.kommunikation {
	background: url('../images/il_thema_markenkommunikation.webp');
	background-repeat: no-repeat;
background-position: 50% 20%;
background-size: cover;
}




/* Max-width 768px */
@media (max-width: 768px) {
	
.split .area-1.coaching {
	background: url('../images/il_thema_coaching.webp') 50% 20% no-repeat cover
}

.split .area-1.training {
	background: url('../images/il_thema_training_workshops.webp') 70% 10% no-repeat cover
}

.split .area-1.kommunikation {
	background: url('../images/il_thema_markenkommunikation.webp') 50% 35% no-repeat cover
}

}


.split .area-2 {
	padding-top: 6.75rem;
	padding-bottom: 6.25rem;
}

.split h2 {
	margin-bottom: 1.5rem;
}

.split p {
	margin-bottom: 2.25rem;
}

.split p:last-of-type {
	margin-bottom: 0;
}


/**********************/
/*     Services 1     */
/**********************/
.basic-1 {
	padding-top: 9.75rem;
	padding-bottom: 5.25rem;
}

.basic-1 .image-container {
	margin-bottom: 4rem;
}

.basic-1 .image-container img {
	border-radius: 8px;
}

.basic-1 h2, .angebot-cards h2 {
	margin-bottom: 1.5rem;
}


/**********************/
/*     Services 2     */
/**********************/
.basic-2 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.basic-2 .image-container {
	margin-bottom: 4rem;
}

.basic-2 .image-container img {
	border-radius: 8px;
}

.basic-2 h2 {
	margin-bottom: 1.5rem;
}


/**********************/
/*     Services 3     */
/**********************/
.basic-3 {
	padding-top: 5rem;
	padding-bottom: 9.75rem;
}

.basic-3 .image-container {
	margin-bottom: 4rem;
}

.basic-3 .image-container img {
	border-radius: 8px;
}

.basic-3 h2 {
	margin-bottom: 1.5rem;
}


/********************/
/*     Projects     */
/********************/
.filter {
	padding-top: 9.5rem;
	padding-bottom: 5.625rem;
	text-align: center;
}

.filter h2 {
	margin-bottom: 2.625rem;
}

.filter .button-group {
	margin-bottom: 1.375rem;
}

.filter .button {
	margin-right: 0.25rem;
	margin-bottom: 0.75rem;
	margin-left: 0.25rem;
	padding: 0.125rem 0.875rem;
	border: none;
	background-color: #ffffff;
	color: #53575a;
	font-weight: 600;
	font-size: 0.875rem;
}

.filter .button:hover,
.filter .button.is-checked {
	background-color: #7dc22b;
	color: #ffffff;
}

.filter .grid {
	margin-right: auto;
	max-width: 351px;
	margin-left: auto;
}

.filter .element-item {
	margin-bottom: 3rem;
}

.filter .element-item a {
	text-decoration: none;
}

.filter .element-item img {
	margin-bottom: 1.125rem;
	border-radius: 8px;
}

.filter .element-item p {
	text-align: left;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	position: relative;
	padding-top: 9.75rem;
	padding-bottom: 9.5rem;
}

.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	position: static;
	width: 86%;
	text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .testimonial-image {
	width: 120px;
	height: 120px;
	margin-bottom: 2.25rem;
	border-radius: 50%;
}

.slider-1 .testimonial-text {
	margin-bottom: 1.75rem;
	font-size: 1.25rem;
	line-height: 2rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0.25rem;
	color: #161223;
}

.slider-1 .text-decoration {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin-right: auto;
	margin-left: auto;
}


/*******************/
/*     Contact     */
/*******************/

/* Container und Formular */

/*#kontakt {
  scroll-margin-top: 120px;
}
*/
.contact-container {padding: 5rem 5rem}


.container {
  max-width: 700px; /* Formularbreite begrenzen */
}

form.needs-validation {

}

/* Überschrift 
h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}*/

/* Labels */
.form-label {
  font-weight: 500;
  color: #333;
}

/* Inputfelder */
.form-control,
.form-select,
textarea.form-control {
  border-radius: 4px !important;
  border: 1px solid #ccc;
  padding: 0.5rem 0.5rem 0.5rem 0.8rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Fokuszustand */
.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: #0d6efd; /* Bootstrap Blau */
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.25);
}

/* Fehlermeldungen */
.invalid-feedback {
  color: #d9534f; /* Rot */
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Button */
.btn-primary {
  background-color: #0d6efd;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

/* Abstand zwischen den Formularfeldern */
.mb-3 {
  margin-bottom: 1.25rem !important;
}

.alert {
  opacity: 0;
  transition: opacity 0.5s ease; /* sanft ein-/ausblenden */
  max-height: 0;
  overflow: hidden;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
	font-size: 1rem;
	font-weight: bold;
	text-align: center
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
	font-size: 1rem;
	font-weight: bold;
	text-align: center
}

.alert.show {
  opacity: 1;
  max-height: 200px; /* genügend Höhe für den Text */
}

/**********************/
/*     Statistics     */
/**********************/
.counter {
	padding-top: 9.75rem;
	padding-bottom: 4.375rem;
	text-align: center;
}

.counter .counter-cell {
	margin-bottom: 4rem;
}

.counter .purecounter {
	margin-bottom: 1.5rem;
	color: #7dc22b;
	font-weight: 600;
	font-size: 5rem;
	line-height: 3rem;
}

.counter .counter-info {
	color: #161223;
	font-size: 0.875rem;
	line-height: 1.5rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 5.5rem;
	padding-bottom: 3.5rem;
	background-color: #AA0046;
}

.footer a {
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.footer .footer-col {
	margin-bottom: 3rem;
}

.footer h6 {
	margin-bottom: 0.625rem;
	color: #fff;
}

.footer p,
.footer a,
.footer ul {
	color: #fff;
}

.footer .li-space-lg li {
	/*margin-bottom: 0.375rem;*/
	margin-bottom: 0;
}

.footer .footer-col.third .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.375rem;
}

.footer .footer-col.third .fa-stack .fa-stack-2x {
	color: #4a7d82;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack .fa-stack-1x {
    color: #9ba3b1;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
    color: #7dc22b;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-1x {
	color: #ffffff;
}

.footer-logo {width: 220px;margin-bottom: 12px}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-top: 2.5rem;
	padding-bottom: 1rem;
	background-color: #1A5756;
	text-align: center;
}

.copyright p,
.copyright a {
	color: #fff;
	text-decoration: none;
}

.copyright a:hover {
	text-decoration: underline;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	position: fixed;
	z-index: 300;
	bottom: calc(2dvh + 20px);   /* <- Neue Loesung zuerst */
	right: 6dvw;
	width: 52px;
	height: 52px;
	border: none;
	border-radius: 50%;
	outline: none;
	background-color: rgba(170, 0, 70, 1);
	cursor: pointer;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
	transform: translateY(20px);
}

#myBtn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#myBtn:hover {
	background-color: rgba(170, 0, 70, 0.8);
}

#myBtn .fa-chevron-up {
	color: #fff;
	display: inline-block;
}

/* Fallback Browser, die dvh NICHT kennen */
@supports not (bottom: 1dvh) {
	#myBtn {
		bottom: 30px;
		right: 30px;
	}
}

/* Min-width 992px */
@media (min-width: 992px) {

	#myBtn {
	position: fixed;
	z-index: 300;
	bottom: calc(2dvh + 20px);   /* <- Neue Loesung zuerst */
	right: 3dvw;
	width: 52px;
	height: 52px;
	border: none;
	border-radius: 50%;
	outline: none;
	background-color: rgba(170, 0, 70, 1);
	cursor: pointer;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
	transform: translateY(20px);
}
	
	}

.z-index-900 {z-index: 900}

/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 3rem;
	padding-bottom: 4rem;
	position: relative; 
background: #fff;
}

.ex-header:before {
	content: "";
	background-image:url("../images/logo_circles_white.svg");
	background-repeat: no-repeat;
	background-size: 60%;
    position: absolute;
	background-position: left 20%;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: -50px;
    opacity: 0.3;
}

.ex-header h1 {
	color: #ffffff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fd;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #7dc22b;
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/	


/* Max-width 576px */
@media (max-width: 576px) {

	.navbar .logo-image img {
    width: auto;
	height: 45px; }
	
}


/* Min-width 200px */
@media (min-width: 200px) {

	.navbar {padding-top:1.5rem; padding-bottom:1.5rem}
	.z-index-900 {z-index: inherit}
	
	}





/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header .header-content {
		padding-top: 15rem;
		padding-bottom: 13rem;
	}
	/* end of header */


	/* Statistics */
	.counter .counter-cell {
		display: inline-block;
		margin-right: 1.5rem;
		margin-left: 1.5rem;
		vertical-align: top;
	}

	.counter .purecounter {
		font-size: 6rem;
		line-height: 4rem;
	}
	/* end of statistics */


	/* Contact */
	.form-1 .list-unstyled li {
		display: inline-block;
		margin-right: 1rem;
	}
	/* end of contact */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}
	/* end of extra pages */
}
/* end of min-width 768px */

/* Max-width 768px */

/* Min-width 992px */
@media (min-width: 992px) {
	
	.z-index-900 {z-index: 200}
	
	/* General Styles */
	.h2-heading {
		/*width: 35.25rem;*/
		width: auto;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		/*width: 46rem;*/
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
	
	.footer_logo {text-align: center}
	
	/* end of general styles */

/* ==========================
   NAVBAR – ruhiger Übergang
   ========================== */
.navbar {
  /*padding-top: 1rem;*/
  padding-bottom: 1rem;
  /*background-color: rgba(255, 255, 255, 0.01);  ganz leicht sichtbar, verhindert Blink */
  background-color: #fff; /* ganz leicht sichtbar, verhindert Blink */
  box-shadow: none;
  transition:padding 0.25s ease;
  will-change: padding;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.navbar.top-nav-collapse {
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}


	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}
	
	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
	

	/* end of navigation */


	/* Header */
	.header .header-content {
		padding-top: 18rem;
		padding-bottom: 16rem;
		background-position: 20% center
	}
	
	
	
	.header .h2-large {
		margin-bottom: 2.5rem;
		font-size: 1.5rem;
		line-height: 2rem;
		color:#fff
	}
	
	/* end of header */


	/* Introduction */
	.cards-1 .card {
		display: inline-block;
		width: 330px;
		vertical-align: top;
	}
	
	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1.75rem;
		margin-left: 1.75rem;
	}
	/* end of introduction */


	/* Details */
	.split {
		height: 786px;
	}
	
	.split .area-1 {
		height: 100%;
		width: 50%;
		display: inline-block;
	}
	
	.split .area-2 {
		height: 100%;
		width: 50%;
		display: inline-block;
		padding-bottom: 6.75rem;
		vertical-align: top;
	}

	.split .text-container {
		width: 400px;
		margin-left: 3rem;
	}
	/* end of details */


	/* Services 1 */
	.basic-1 .image-container {
		margin-bottom: 0;
	}
	/* end of services 1 */
	
	
	/* Services 2 */
	.basic-2 .image-container {
		margin-bottom: 0;
	}
	/* end of services 2 */
	
	
	/* Services 3 */
	.basic-3 .image-container {
		margin-bottom: 0;
	}
	/* end of services 3 */


	/* Projects */
	.filter .grid {
		max-width: 750px;
	}

	.filter .element-item {
		display: inline-block;
		width: 351px;
		margin-right: 0.625rem;
		margin-left: 0.625rem;
		vertical-align: top;
	}
	/* end of projects */


	/* Footer */
	.footer .footer-col {
		margin-bottom: 2rem;
	}

	.footer .footer-col.first {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}
	
	.footer .footer-col.second {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}
	
	.footer .footer-col.third {
		display: inline-block;
		width: 224px;
		text-align: right;
		vertical-align: top;
	}

	.footer .footer-col.third .fa-stack {
		margin-right: 0;
		margin-left: 0.375rem;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of extra pages */
}
/* end of min-width 992px */



/* Min-width 1200px */
@media (min-width: 1200px) {
	
	/* General Styles */
	.container {
		max-width: 1140px;
	}
	
	.con-100 {max-width:70%}
	/* end of general styles */
	

	/* Header */
	.header {
		height: 100vh;
	}
	
	.header .header-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100vh;
		padding-top: 0;
		padding-bottom: 0;
	}

	.header .btn-solid-lg {
		padding: 1.875rem 3rem;
		font-size: 1rem;
	}
	
	.header .h1-large {
		margin-bottom: 2.75rem;
		font-size: 5rem;
		line-height: 6.0rem;
	}
	
	/* end of header */


	/* Introduction */
	.cards-1 .card {
		width: 200px;
	}

	.cards-1 .card:nth-of-type(1n+1) {
		margin-right: 2.5rem;
		margin-left: 2.5rem;
	}
	/* end of introduction */


	/* Details */
	.split {
		height: 708px;
	}
	

	.split .text-container {
		width: 80%;
		margin-left: 6rem;
	}
	

	/* end of details */


	/* Services 1 */
	.basic-1 .text-container {
		margin-top: 0;
		margin-right: 3rem;
	}
	/* end of services 1 */
	
	
	/* Services 2 */
	.basic-2 .text-container {
		margin-top: 0;
		margin-left: 3rem;
	}
	/* end of services 2 */
	
	
	/* Services 3 */
	.basic-3 .text-container {
		margin-top: 4rem;
		margin-left: 5rem;
	}
	/* end of services 3 */


	/* Projects */
	.filter .grid {
		max-width: 1120px;
	}
	/* end of projects */


	/* Testimonials */
	.slider-1 .slider-container {
		width: 82%;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of testimonials */


	/* Statistics */
	.counter .counter-cell {
		margin-right: 3.5rem;
		margin-left: 3.5rem;
	}
	
	.counter .counter-cell:first-of-type {
		margin-left: 0;
	}

	.counter .counter-cell:last-of-type {
		margin-right: 0;
	}
	/* end of statistics */


	/* Contact */
	.form-1 form {
		width: 776px;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of contact */


	/* Footer */
	.footer .footer-col.first {
		width: 352px;
		margin-right: 6rem;
	}
	
	.footer .footer-col.second {
		margin-right: 6.5rem;
	}
	
	.footer .footer-col.third {
		text-align: right;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}
	/* end of extra pages */
}
/* end of min-width 1200px */


/* Min-width 1700px */
@media (min-width: 1700px) {
	
	/* General Styles */
	
	.con-100 {max-width:100%}
	/* end of general styles */
	
	/* Introduction */
	.cards-1 .card {
		width: 330px;
	}

	}
	

/* Max-width 576px */
@media (max-width: 576px) {

.contact_img 		{width: 100%}

	}

/* Max-width 992px */
@media (max-width: 992px) {
	
.header .header-content {
	background-size:auto;
	background-position: 10% 10%;
	animation: none;
}

.header .h1-large {
	margin-bottom: 2.25rem;
	color: #ffffff;
	font-size: 2rem;
	line-height: 3rem;
}

.header .h2-large {
	margin-bottom: 1.75rem;
	color: #ffffff;
	font-size: 1rem;
	line-height: 1.6rem;
}

	.ex-header {display: none}
		
	.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl,.contact-container {
	padding-right: var(--bs-gutter-x,1.5rem);
    padding-left: var(--bs-gutter-x,1.5rem);
    margin-right: auto;
}

/* Basis-Layout: flexibles Spalten-System */
.split {
  display: flex;
  flex-wrap: wrap;
}

/* Standard (mobile Ansicht): Bild zuerst, Text danach */
.split .area-1 {
  order: 1; /* Bild oben */
  width: 100%;
}
.split .area-2 {
  order: 2; /* Text unten */
  width: 100%;
}

.time_price 		{float:none;display: block}

.mobile_show 		{display: inherit}	
.mobile_not_show	{display: none}

#introduction:before {
	display: none
}	
	
.footer_logo {text-align: left}
	
.navbar {
	font-size: 1.3rem;
	line-height: 1.5rem;
}
	
h2.h2-heading {
	font-size: 2.5rem;
	line-height: 3.25rem;
}
	
/*h1, h2, h3, h4, h5, h6, p, span
	{hyphens: auto;}*/
	
	
}

header.header {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel-item img {
  object-fit: cover;
  height: 96vh;
}

/* Text nach unten schieben, um Navbar-Höhe auszugleichen*/ 
/*.carousel-caption {
  padding-top: -150px;  Höhe deiner Navigation, z. B. 80px 
}*/

/* Position leicht anpassen (z. B. näher ans Bild oder höher setzen) */
.carousel-indicators {
  bottom: 120px; /* Abstand vom unteren Bildrand */
}


/* --- Normalzustand --- */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1A5756;  /* halbtransparent weiß */
  opacity: 1 !important;          /* erzwingt volle Deckkraft */
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Aktiver Punkt */
.carousel-indicators .active {
  background-color: #AA0046 !important;
  width: 12px;
  height: 12px;
  opacity: 1;
}

/* Hover-Effekt */
.carousel-indicators [data-bs-target]:hover {
  background-color: #1A5756 !important;
}

/* Overlay über den Bildern */
.carousel-item {
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); /* Overlay-Farbe */
  z-index: 1;
}

.carousel-caption {
  z-index: 2; /* über Overlay */
}

.carousel-indicators {
  z-index: 5;            /* höher als Overlay + Text */
  position: absolute;    /* Sicherheitshalber fixieren */
  bottom: 120px;          /* Position bleibt gleich */
}

.carousel-indicators-ref {
  z-index: 5;            /* höher als Overlay + Text */
  position: absolute;    /* Sicherheitshalber fixieren */
  bottom: -100px;          /* Position bleibt gleich */
}

.carousel-indicators button {
  cursor: pointer;       /* Hand-Cursor beim Hover */
}

/* Pfeile allgemein */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%) brightness(200%); /* Weiß auf dunklem Bild */
  /* alternativ:
     filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(320deg); 
     -> ergibt warme Töne */
}

/* Optional Hover-Effekt */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(80%) sepia(100%) saturate(400%) hue-rotate(15deg);
}
.ref-carousel .carousel-item {
  position: relative;
}

.ref-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent; /* dein Overlay */
  z-index: 1;
}

.ref-carousel .carousel-item p {
  min-height: 6em; /* Platz für 2–3 Zeilen */
}

.sec-text-width-720 {
  max-width: 720px;
}

/* Mobile Ansicht: Fokuspunkt anpassen */
@media (max-width: 1199.98px) {
  .carousel-item img {
    object-position: 25% 0%; /* z. B. mehr vom oberen Bereich zeigen */
    height: 96vh; /* optional kleinere Höhe auf Smartphones */
  }
}

@media (min-width: 991.98px) and (max-width: 1199.98px) {
  /* deine CSS-Regeln hier */
  
  .navbar {font-size: 0.65rem;}
  .navbar .nav-item .nav-link {
    padding-right: 0.45rem;
    padding-left: 0.45rem;
}
  .navbar .logo-image img {
    width: auto;
    height: 35px;
}
  
}

@media (min-width: 991.98px) and (max-width: 1400px) {
  /* deine CSS-Regeln hier */
  
.split .area-2 {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

}

/* Mobile Ansicht: Text im Slider weiter oben positionieren */
@media (max-width: 767.98px) {
  
  .carousel-caption {
    justify-content: flex-start !important; /* statt center -> oben ausrichten */
    padding-top: 2rem; /* Abstand zum oberen Rand, anpassbar */
    padding-bottom: 0; /* unten weniger Platz */
  }

  /* Optional: kleinere Abstände für Titel und Buttons */
  .carousel-caption h1,
  .carousel-caption h2 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .carousel-caption .btn-solid-lg {
    margin-top: 0.5rem !important;
  }
}
	