@Import url("https://use.typekit.net/svj2ekw.css");

.slider-btn:hover {
	background-color: var(--wp--preset--color--secondary) !important;
}

.wp-block-navigation-item__content {
  transition: transform 0.1s ease;
}

#modal-1 .wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--primary) !important;
	 transform: scale(1.05); 
}

.video-figure {
	display: none;
	transition: background-image 0.5s ease;
} 

.video-figure video {
	border-radius: 15px;
}

@media (max-width: 768px) {
  .video-figure {
    padding: 0px !important;
  }
}

.play-button {
	fill: white !important;
}

.video-cover {
	align-items: start !important;
	transition:background-image 0.5s ease;
}

.video-cover img {
	transition:filter 0.5s ease;
}

.floating-image {
    opacity: 0 !important;
    transform: translateY(50px) !important; /* Initial offset; keep or adjust */
    transition: opacity 1.0s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, 
                transform 2.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s !important; /* Longer duration + custom easing for strong slowdown */
}

/* Direction classes for random starting positions */
.floating-image.from-left {
    transform: translateX(-50px) !important; /* From left; adjust distance */
}

.floating-image.from-right {
    transform: translateX(50px) !important; /* From right */
}

.floating-image.from-top {
    transform: translateY(-50px) !important; /* From top */
}

.floating-image.from-bottom {
    transform: translateY(50px) !important; /* From bottom */
}

/* Optional diagonals for more variety */
.floating-image.from-top-left {
    transform: translate(-35px, -35px) !important; /* Diagonal; adjust for 45-degree feel */
}

.floating-image.from-top-right {
    transform: translate(35px, -35px) !important;
}

.floating-image.from-bottom-left {
    transform: translate(-35px, 35px) !important;
}

.floating-image.from-bottom-right {
    transform: translate(35px, 35px) !important;
}

.floating-image.visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important; /* Always animate to center */
}

/* Optional staggering remains the same */
.custom-gallery-image-1.visible {
    transition-delay: 0s;
}

.custom-gallery-image-2.visible {
    transition-delay: 0.2s;
}

.custom-gallery-image-3.visible {
    transition-delay: 0.4s;
}

/* Optional staggering remains the same */
.custom-gallery-2-image-1.visible {
    transition-delay: 0s;
}

.custom-gallery-2-image-2.visible {
    transition-delay: 0.2s !important;
}

.custom-gallery-2-image-3.visible {
    transition-delay: 0.4s !important;
}


.responsive-blue-box {
    opacity: 0;
    transform: translateY(90px); /* Starts 50px below; adjust as needed */
    transition: opacity 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s, 
                transform 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s; /* Duration + overshoot easing */
}

.responsive-blue-box.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays using :nth-child on parent columns for sequential effect */
.wp-block-columns.header-blue-box-section .wp-block-column:nth-child(1) .responsive-blue-box {
    transition-delay: 0s;
}

.wp-block-columns.header-blue-box-section .wp-block-column:nth-child(2) .responsive-blue-box {
    transition-delay: 0.2s;
}

.wp-block-columns.header-blue-box-section .wp-block-column:nth-child(3) .responsive-blue-box {
    transition-delay: 0.4s;
}

.wp-block-columns.header-blue-box-section .wp-block-column:nth-child(4) .responsive-blue-box {
    transition-delay: 0.6s;
}

.wp-block-columns.header-blue-box-section .wp-block-column:nth-child(5) .responsive-blue-box {
    transition-delay: 0.8s;
}

.wp-block-columns.header-blue-box-section .wp-block-column:nth-child(6) .responsive-blue-box {
    transition-delay: 1s; /* For the mobile-only box */
}

/* Button flash animation */
.wp-block-button__link.flash {
    animation: button-flash 0.5s ease-in-out forwards; /* Quick one-time pulse */
}

@keyframes button-flash {
    0% {
        background-color: #7cbbe5; /* Original color */
        transform: scale(1);
    }
    50% {
        background-color: #a5d1f2; /* Lighter blue for flash; adjust color as needed */
        transform: scale(1.05); /* Slight enlarge for pop */
    }
    100% {
        background-color: #7cbbe5; /* Back to original */
        transform: scale(1);
    }
}

/* Button flash animation */
.wp-block-button__link.flash-two {
    animation: button-flash-two 0.5s ease-in-out forwards !important; /* Quick one-time pulse */
}

@keyframes button-flash-two {
    0% {
        transform: scale(1);
    }
    50% {
		filter: brightness(0.899);
        transform: scale(1.05); /* Slight enlarge for pop */
    }
    100% {
        transform: scale(1);
    }
}

.wp-block-details.home-details {
    transition: background 0.5s ease; /* Smooth fade for background changes */
}

.wp-block-details.home-details.pseudo-hover  {
    background-color: white !important; /* Mimics your hover; use !important to override if needed */
}

.wp-block-details.home-details .number-text {
    transition: background-color 0.5s ease; /* Smooth fade for background changes */
}

.wp-block-details.home-details.pseudo-hover .number-text {
    background-color: var(--wp--preset--color--primary) !important; /* Mimics your hover; use !important to override if needed */
}

.wp-block-details.home-details.pseudo-hover summary>img {
    transition: filter 0.5s ease; /* Smooth fade for background changes */
}

.wp-block-details.home-details.pseudo-hover summary>img {
    filter: grayscale(0%) !important; /* Mimics your hover; use !important to override if needed */
}



* {
	letter-spacing: 0.3px !important;
}

.home-slider-excerpt {
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.wp-block-button__link:hover {
    background-color: var(--wp--preset--color--secondary) !important;
}

.htr-modal-content-wrap {
	border-radius: 10px;
	background-color: #e9e9ea;
}

.htr-modal-content-close-btn {
	background-color: transparent !important;
	border: none !important;
	top: 11% !important;
	color: var(--wp--preset--color--primary) !important;
	right: auto !important;
    padding-left: min(585px, 60%);
	max-width: 80%;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 100px;
    cursor: pointer;
}
 
.htr-modal-content-close-btn svg {
	width: 30px;
    height: 30px;
}

.htr-modal-trigger {
	cursor: pointer;
}

.mobile-only {
	display: none !important;
}

/* Common circle styling */
.number-text {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: var(--wp--preset--color--gray);
  color: white; 
  border-radius: 50%;
  margin-right: 8px;
  font-weight: bold;
}

.home-details summary {
	font-weight: bold;
}


/* Header */
#map { 
  height: 750px; 
  margin-top: -180px;
  z-index: 0;
}

.map-headline {
  position: relative;
  z-index: 2;
}

.leaflet-tile-container {
  filter: grayscale(1) brightness(1.05) contrast(1.05) saturate(1.01);
}

.header-img {
  transition: width 0.3s ease-in-out;
}

/* Navigation */
.header-navigation-styling-first {
    margin: .1em 0;
    padding: 5px 1.5em !important;
}

.header-navigation-styling {
    margin: .1em 0;
    padding: 5px 1.5em !important;
    border-left: 1px solid var(--wp--preset--color--primary);
}

.wp-block-navigation-submenu__toggle {
  padding-right: 0 !important;
}

.wp-block-navigation__submenu-icon {
  display: none !important;
}

@media (min-width: 769px) {

.wp-block-navigation-submenu .wp-block-navigation__submenu-container {
  border-radius: 10px !important;
  border-color: white !important;
  padding-inline: 10px !important;
}
}

.arrow-remote-support {
    margin-left: 15px;
    transform: scale(1.5);
    transition: all .3s ease;
}

.direct-support:hover .arrow-remote-support {
    animation: MoveUpDown 1s linear infinite;
  }
  
  @keyframes MoveUpDown {
    0%, 100% {
        transform: translateY(0) scale(1.5);
      }
      50% {
        transform: translateY(5px) scale(1.5);
      }
  }

  .arrow-button {
    transform: rotate(270deg);
    transition: all .3s ease;
    margin-left: 12px;
	vertical-align: text-bottom;
  }

  .btn-style:hover .arrow-button, .arrow-button-loop .arrow-button {
    animation: MoveRightLeft 1s linear infinite;
  }

  .arrow-button-header {
    transform: rotate(270deg);
    transition: all .3s ease;
    margin-left: 12px;
  }

  @keyframes MoveRightLeft {
    0%, 100% {
        transform: translateX(0) rotate(270deg);
      }
      50% {
        transform: translateX(5px) rotate(270deg);
      }
  }

  /* NAV Info Boxes*/
  .support-content {
    margin-top: 0.5px;
    padding: 20px 45px 45px 45px;
    max-width: 680px;
    min-height: 350px;
    position: absolute;
    background-color: #fff;
    border-radius: 10px;
    
    min-width: 160px;
    z-index: 1;
}

  .support-content a {
    background-color: var(--wp--preset--color--primary);
    font-size: 100%;
    color: white;
    height: 33px;
    padding: 2px 20px 5px 20px;
    margin-top: 40px;
    border-radius: 20px;
    border-color: var(--wp--preset--color--primary);
    text-decoration: none;
}

.support-content {
  right: calc((100vw - 1690px) / 2);
}

.support-content p {
  float: none;
  color: #85888C;
  padding: 12px 0px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.support-content a:hover {
  background-color: var(--wp--preset--color--secondary);
}

.x-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  display: block;
}

  .custom-gallery-layout {
    display: grid !important;
    grid-template-areas: 
        "image1 image2"
        "image3 image3";
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.animate-on-scroll {
  animation: moveImage 5s ease-in-out infinite alternate;
  animation-play-state: paused;
}

@keyframes moveImage {
  0%, 100% {
    /*transform: translate(-5%, -5%) translateY(0);*/
  }
  50% {
    transform: translate(-1%, -1%) translateY(10px);
  }
}

.in-view {
  animation-play-state: running;
}

@media (max-width: 1200px) {
	.change-column-order  :nth-child(1){
		order: 2;
	}
	.change-column-order :nth-child(2){
		order: 1;
	}

	#modal-1 {
  		top: 73px !important;
	}

	/* Navigation */
	.header-navigation-styling-first {
		margin: .1em 0;
		padding: 0 !important;
	}
	
	.header-navigation-styling-first a {
		padding-left: 20px !important;
		border-bottom: 1px solid #e0e0e0;
    	width: 100%;
	}
	
	.header-navigation-styling a {
		padding-left: 20px !important;
		border-bottom: 1px solid #e0e0e0;
    	width: 100%;
	}

	.header-navigation-styling {
  		margin: .1em 0;
  		padding: 0 !important;
  		border-left: 0;
	}

	#map { 
  		height: 750px; 
  		margin-top: -180px;
  		z-index: 0;
	}	

	.header-img {
  		width: 100px !important;
	}

	.footer-align-left {
  		justify-content: left !important;
  		margin-inline-start: 0 !important;
  		float: left !important;
	}

  	.splide__arrow {
    	display: none !important;
  	}
	
	.ios-fix {
		-webkit-overflow-scrolling: auto !important;
	}

  	.custom-gallery-image-1 img {
    	margin-left: 35px;
    	margin-bottom: 0;
    	margin-top: -100px;
    	width: 45% !important;
    	z-index: 5;
  	}
	
  	.custom-gallery-image-1 {
    	z-index: 5;
  	}
  
  	.custom-gallery-image-2 {
    	align-items: end;
  	}
  
  	.custom-gallery-image-2 img {
    	margin-top: -120px;
    	margin-left: 40px;
    	z-index: 2;
    	width: 35% !important;
  	}
	
	.custom-gallery-image-3 {
		z-index: 0
	}
  
  	.custom-gallery-image-3 img {
    	margin-top: -60px;
    	width: 70% !important;
    	z-index: 1;
  	}

  	.custom-gallery-2-image-1 img {
    	margin-left: 40px;
    	margin-top: 0px;
    	width: 40% !important;
  	}
  
  	.custom-gallery-2-image-2 {
    	align-items: end;
  	}
  
  	.custom-gallery-2-image-2 img {
    	margin-top: -50px;
    	margin-left: 40px;
    	z-index: 2;
    	width: 45% !important;
  	}
  
  	.custom-gallery-2-image-3 img {
    	margin-top: -50px;
    	width: 60% !important;
    	z-index: 1;
  	}

  	.remove-inline-padding-on-mobile {
    	padding-left: 0 !important;
    	padding-right: 0 !important;
  	}
}


@media (min-width: 782px) and (max-width: 1920px) {

.custom-gallery-layout img:nth-child(1) {
    grid-area: image1;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.custom-gallery-layout img:nth-child(2) {
    grid-area: image2;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.custom-gallery-layout img:nth-child(3) {
    grid-area: image3;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.custom-gallery-image-1 img {
  margin-left: 120px;
  margin-top: -50px;
  margin-bottom: 0;
  width: 45% !important;
}

.custom-gallery-image-2 {
  align-items: end;
}

.custom-gallery-image-2 img {
  margin-top: -100px;
  margin-left: 70px;
  z-index: 2;
  width: 30% !important;
}

.custom-gallery-image-3 img {
  margin-top: -100px;
  margin-left: 50px;
  width: 70% !important;
  z-index: 1;
}

.custom-gallery-2-image-1 img {
  margin-left: 550px;
  width: 30% !important;
}

.custom-gallery-2-image-2 {
  align-items: end;
}

.custom-gallery-2-image-2 img {
  margin-top: -105px;
  margin-left: 0px;
  z-index: 2;
  width: 25% !important;
}

.custom-gallery-2-image-3 img {
  margin-top: -250px;
  width: 50% !important;
  z-index: 1;
}
}

@media (min-width: 1921px) {
  .custom-gallery-layout img:nth-child(1) {
      grid-area: image1;
      width: 100%;
      height: auto;
      object-fit: cover;
  }
  
  .custom-gallery-layout img:nth-child(2) {
      grid-area: image2;
      width: 100%;
      height: auto;
      object-fit: cover;
  }
  
  .custom-gallery-layout img:nth-child(3) {
      grid-area: image3;
      width: 100%;
      height: auto;
      object-fit: cover;
  }
  
  .custom-gallery-image-1 img {
    margin-left: 120px;
    margin-top: -50px;
    margin-bottom: 0;
    width: 45% !important;
  }
  
  .custom-gallery-image-2 {
    align-items: end;
  }
  
  .custom-gallery-image-2 img {
    margin-top: -250px;
    margin-left: 70px;
    z-index: 2;
    width: 30% !important;
  }
  
  .custom-gallery-image-3 img {
    margin-top: -100px;
    margin-left: 50px;
    width: 70% !important;
    z-index: 1;
  }

  .custom-gallery-2-image-1 img {
    margin-left: 550px;
    width: 30% !important;
  }
  
  .custom-gallery-2-image-2 {
    align-items: end;
  }
  
  .custom-gallery-2-image-2 img {
    margin-top: -105px;
    margin-left: 0px;
    z-index: 2;
    width: 25% !important;
  }
  
  .custom-gallery-2-image-3 img {
    margin-top: -250px;
    width: 50% !important;
    z-index: 1;
  }
  }

  @media (max-width: 1200px) {
    .wp-block-navigation__responsive-container-open:not(.always-shown) {
        display: flex !important;
    }
    .wp-block-navigation__responsive-container-close:not(.always-shown) {
      display: flex !important;
  }
    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
        display: none !important;
    }
    .mobile-display-none {
      display: none !important;
    }

    .wp-block-navigation__responsive-container-open:not(.always-shown) {
      background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 0 25 25'%3E%3C!-- Generator: Adobe Illustrator 29.5.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 141) --%3E%3Cdefs%3E%3Cstyle%3E .st0, .st1 %7B fill: none; %7D .st1 %7B stroke: %235aa7dc; stroke-linecap: round; stroke-width: 4px; %7D .st2 %7B clip-path: url(%23clippath); %7D %3C/style%3E%3CclipPath id='clippath'%3E%3Crect class='st0' x='1' y='1.8' width='23' height='22'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class='st2'%3E%3Cline class='st1' x1='3' y1='21.8' x2='22' y2='21.8'/%3E%3Cline class='st1' x1='3' y1='12.8' x2='22' y2='12.8'/%3E%3Cline class='st1' x1='3' y1='3.8' x2='22' y2='3.8'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      width: 30px;
      height: 30px;
      transition: transform 1.3s ease-out;
    }  

    .wp-block-navigation__responsive-container-close:not(.always-shown) {
      background-repeat: no-repeat;
      background-position: center;
      width: 30px;
      height: 30px;
      transition: transform 1.3s ease-out;
    }  

    .wp-block-navigation__responsive-container-open {
      -webkit-tap-highlight-color: transparent;
      }
      .wp-block-navigation__responsive-container-close {
        -webkit-tap-highlight-color: transparent;
        }

    #modal-1 {
      top: 200px;
    }

    .mobile-menu-left ul {
      align-items: baseline !important;
      width: 100%;
    }

    .mobile-menu-left {
      font-size: 1.5rem !important;
    }

    .mobile-menu-left li {
      font-size: 1.5rem !important;
      align-items: baseline !important;
    }

    /* Hide the default burger icon */
    .wp-block-navigation__responsive-container-open:not(.always-shown) > svg {
      display: none;
    }
}

@media (min-width: 1201px) {
  #coverbutton {
    display: none;
  }
    .wp-block-navigation__responsive-container-open:not(.always-shown) {
        display: none !important;
    }
    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
        display: block !important;
        width: 100%;
        position: relative;
        z-index: auto;
        background-color: inherit;
    }
}

/*
Slider
*/

.splide__arrow--prev {
  left: -5em !important;
}

.splide__arrow--next {
  right: -5em !important;
}

.slider-shadow {
  box-shadow: -5px 5px 10px -1px rgba(0, 0, 0, 0.125);
}

.splide__pagination__page.is-active {
	background: var(--wp--preset--color--primary) !important;
}

.case-circle-fixed {
  width: 45px;
  height: 45px;
  border-radius: 50px;
}

/*
Background Think-Com Dots
*/
.dots-background {
  background-image: url('/wp-content/themes/think-com/assets/img/thinkcom_dots_blue.webp');
  background-repeat: no-repeat;
  background-position-x: calc((100vw / 2));
  background-position-y: 200px;
  background-size: 30vw;
	  
  animation: kenBurns 35s ease-in-out infinite; /* 20s Dauer, anpassbar */
  overflow: hidden; /* Verhindert Scrollbalken */
  will-change: background-position, background-size; /* Optimize for background animations */
}

@keyframes kenBurns {
    0% {
      background-size: 25vw;
      background-position-x: calc(100vw / 2);
      background-position-y: 200px;
    }
    25% {
      background-size: 35vw;
      background-position-x: calc((100vw / 2) + 100px); /* Reduziert auf ±100px */
      background-position-y: calc(200px - 100px);
    }
    50% {
      background-size: 31vw;
      background-position-x: calc((100vw / 2) - 100px);
      background-position-y: calc(200px + 100px);
    }
    75% {
      background-size: 38vw;
      background-position-x: calc((100vw / 2) + 100px);
      background-position-y: calc(200px + 100px);
    }
    100% {
      background-size: 25vw;
      background-position-x: calc(100vw / 2);
      background-position-y: 200px;
    }
  }

.dots-background-timeline {
  background-image: url('/wp-content/themes/think-com/assets/img/thinkcom_dots_blue.webp');
  background-repeat: no-repeat;
  background-position-x: 50vw;
  background-position-y: 0;
  background-size: 1200px;
  overflow: hidden;
}

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

nav svg {
  display: none !important;
}

.circle-number {
	display: flex !important;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--wp--preset--color--gray);
    color: #FFFFFF;
    border: 2px solid var(--wp--preset--color--gray);
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
	margin-right: 8px !important;
}


/* Contact Form */
.wpcf7-form {
  max-width: 800px;
  margin: 0 auto;
}

.wpcf7-form .cf7-custom-two-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.wpcf7-form .cf7-custom-two-row p {
  display: contents;
  margin: 0;
}

.wpcf7-form .cf7-custom-two-row label {
  flex: 1 1 calc(50% - 10px);
  box-sizing: border-box;
  display: block;
}

.wpcf7-form .cf7-custom-two-row label input,
.wpcf7-form .cf7-custom-two-row label span {
  width: 100%;
  box-sizing: border-box;
}

.wpcf7-form .cf7-custom-two-row br {
  display: none;
}

@media (max-width: 768px) {
  .wpcf7-form .cf7-custom-two-row label {
    flex: 1 1 100%;
  }
}

.wpcf7-form label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="date"]:focus {
  border-color: #54A7DF;
  box-shadow: 0 0 0 3px rgba(84, 167, 223, 0.2);
  outline: none;
  background-color: #fff;
}

.wpcf7-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form textarea:focus {
  border-color: #54A7DF;
  box-shadow: 0 0 0 3px rgba(84, 167, 223, 0.2);
  outline: none;
  background-color: #fff;
}

.wpcf7-form select {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
}

.wpcf7-form select:focus {
  border-color: #54A7DF;
  box-shadow: 0 0 0 3px rgba(84, 167, 223, 0.2);
  outline: none;
  background-color: #fff;
}

.wpcf7-form .wpcf7-form-control-wrap select {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgMS41TDcgN0wxMyAxLjUiIHN0cm9rZT0iIzU1NSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

.wpcf7-form .cf7-custom-two-row .wpcf7-form-control-wrap select {
  width: 100%;
  box-sizing: border-box;
}

.wpcf7-form select option {
  padding: 10px;
  background-color: #fff;
  color: #333;
}

.wpcf7-form select::-ms-expand {
  display: none;
}

.wpcf7-form .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.wpcf7-form input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  accent-color: #54A7DF;
}

.wpcf7-form .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.5;
}

.wpcf7-form .wpcf7-submit {
  background-color: #54A7DF;
  color: #fff;
  border: none;
  border-radius: 64px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.wpcf7-form .wpcf7-submit:hover {
  background-color: #468bc0;
  transform: translateY(-2px);
}

.wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}

.wpcf7-form .wpcf7-submit:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.wpcf7-form .wpcf7-spinner {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.wpcf7-form .wpcf7-not-valid {
  border-color: #e74c3c !important;
}

.wpcf7-form .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
}

.wpcf7-form .wpcf7-response-output {
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
}

.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-mail-sent-ng {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.wpcf7-form .wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

@media (max-width: 768px) {
  .wpcf7-form .wpcf7-submit {
    width: 100%;
  }
}

.wpcf7-list-item {
	margin: 0 !important;
}

.wpcf7-form select {
  appearance: none !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
}

.wpcf7-form .label {
	padding-left: 3px;
}

/* Custom Image Slider*/
/* Container des Sliders */
.wp-block-group.custom-image-slider {
  overflow: hidden; 
  position: relative;
  width: 100%; 
  margin: 0 auto; 
  align-items: center;
  min-height: 150px;
}

.wp-block-group.custom-image-slider .slider-track {
  display: flex;
  animation: slide 45s linear infinite; 
}

.wp-block-group.custom-image-slider .wp-block-group {
  flex: 0 0 auto; 
  margin-right: 99px; 
  align-content: center;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

@media (max-width: 768px) {
  .wp-block-group.custom-image-slider .wp-block-group {
    margin-right: 10px;
  }

.wp-block-group.custom-image-slider .slider-track {
  display: flex;
  animation: slide 60s linear infinite; 
}
	
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 0.5));
  }
}
}

/* Custom Stylings */
/* Change cursor style */
.hand-cursor {
	cursor: pointer;
}

/* Scale on Hover*/
.scale a {
  transition: transform 0.1s ease;
}

.scale {
  transition: transform 0.1s ease;
}

.scale a:hover {
  transform: scale(1.05); 
}

.scale img:hover {
  transform: scale(1.05);
}

.scale svg:hover {
  transform: scale(1.05);
}

.scale:hover {
  transform: scale(1.05);
}


.current-menu-ancestor {
	color: var(--wp--preset--color--primary) !important;
}

.current-menu-item span{
    position: relative;
    text-decoration: none; 
}

.current-menu-item span:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 5%; 
    width: 40%;
    height: 2px; 
    background-color: #85888c33;
}

.floating-image {
    transition: transform 1.3s ease-out;
}

.floating-image img {
    width: 100%;
    height: auto;
    display: block;
}

/*Mobile Menu*/
@media (max-width: 768px) {
	
	.col-first {
		order: -1;
	}
	
	.top-150 {
		margin-top: 100px !important;
		top: 150px !important;
	}
	
	.detailsheader {
		padding-left: 10px !important;
	}
	
	.wp-block-details {
		padding-right: 10px !important;
		padding-left: 10px !important;
	}
	
	.current-menu-item span:after {
    	content: '';
    	position: absolute;
    	bottom: 0;
    	left: 0; 
    	width: 0;
    	height: 0; 
	}
	
	body > div.wp-site-blocks > div.wp-block-group.is-layout-flow.wp-block-group-is-layout-flow.wp-container-4.is-position-sticky > header > div > div.wp-block-group.alignwide.is-layout-flow.wp-block-group-is-layout-flow > div {
		margin-top: 0px !important;
	}
	
	body > div.wp-site-blocks > div.wp-block-group.is-layout-flow.wp-block-group-is-layout-flow.wp-container-4.is-position-sticky > header > div {
		padding-bottom: 0px !important;
	}
	
	body p { 
		font-size: 17px;
	}
	
	body h3 { 
		font-size: 17px !important;
	}
	
	body { 
		font-size: 17px;
	}
	
	.mobile-post-header-img {
		min-height: 230px !important;
	}
	
	.header-img img {
		width: 90px !important;
	}
	
	.wp-block-navigation__responsive-container-close {
		z-index: 0;
		/*top: -70px;
		right: 20px;*/
	}
	
	.responsive-header-video {
		min-height: 250px !important;
	}
	
	.header-blue-box-section {
		display: grid !important;
    	grid-template-columns: repeat(2, 1fr);
    	gap: 1px;
    	padding: 0;
	}
	
	.header-blue-box-section p {
		display: none !important;
	}
	
	.header-blue-box-section .wp-block-buttons {
		display: none !important;
	}
	
	.responsive-blue-box {
		min-height: 150px !important;
		justify-content: center !important;
	}
	
	.responsive-blue-box h2 {
		text-align: center !important;
	}
	
	.responsive-blue-box .wp-block-spacer{
		height: 0px !important;
	}
	
	.responsive-blue-box div{
		min-height: 0px !important;
	}
	
	.mobile-height-0 {
		height: 30px !important;
	}
	
	.mobile-height-zero {
		height: 0px !important;
	}
	
	.htr-modal-content-close-btn svg {
		width: 20px;
    	height: 20px;
	}
	
	.htr-modal-content-close-btn {
    	height: 70px;
	}

	.wp-block-column:nth-child(2) .wp-block-group.responsive-blue-box,
	.wp-block-column:nth-child(3) .wp-block-group.responsive-blue-box,
	.wp-block-column:nth-child(6) .wp-block-group.responsive-blue-box {
  		background-color: #7cbbe5 !important;
	}
	
	a, ul {
    -webkit-tap-highlight-color: transparent; /* Mobile Tap-Highlight entfernen */
	}
	
	.header-navigation-styling-first {
  		margin: .1em 0;
		width: 100%;
	}
	
	.header-navigation-styling {
  		margin: .1em 0;
		width: 100%;
	}
	
	.responsive-img-fix img {
		height: auto !important;
	}
	
	.wp-block-navigation__responsive-container-content {
		padding-top: 0px !important;
	}
	
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container {
		background-color: #FBFBF9 !important;
	}

	/* Hide submenus by default */
	.wp-block-navigation__submenu-container {
  		display: none !important;
  		padding-left: 0px !important;
		width: 100% !important;
  		background-color: #f5f5f5 !important;
	}

	/* Show submenu when parent has 'active' class */
	.wp-block-navigation-item.has-child.active .wp-block-navigation__submenu-container {
  		display: block !important;
	}

.wp-block-navigation-item.has-child > .wp-block-navigation-item__content::after {
  content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 0 25 25'%3E%3C!-- Generator: Adobe Illustrator 29.5.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 141) --%3E%3Cdefs%3E%3Cstyle%3E .st0, .st1 %7B fill: none; %7D .st1 %7B stroke: %235aa7dc; stroke-linecap: round; stroke-width: 4px; %7D .st2 %7B clip-path: url(%23clippath); %7D %3C/style%3E%3CclipPath id='clippath'%3E%3Crect class='st0' x='5.9' y='2.3' width='15.4' height='21'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class='st2'%3E%3Cpath class='st1' d='M7.9,4.3l11.2,8.7c.2.2.2.4,0,.6l-11.2,7.7'/%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  width: 25px;
  height: 25px;
	right: 30px;
	top: 3px;
  /*transform: rotate(-90deg); */
  transition: transform 0.3s ease;
}

.wp-block-navigation-item.has-child.active > .wp-block-navigation-item__content::after {
  transform: rotate(90deg); 
	right: 20px;
	top: 10px;
}
	
	.dont-show-mobile {
		display: none !important;
	}
	
	.mobile-only {
		display: block !important;
	}
}

/*Tablet*/
@media (min-width: 769px) and (max-width: 1200px) {
	
		.col-first {
		order: -1;
	}
	
	.top-150 {
		margin-top: 100px !important;
		top: 150px !important;
	}
	
	.detailsheader {
		padding-left: 10px !important;
	}
	
	.wp-block-details {
		padding-right: 10px !important;
		padding-left: 10px !important;
	}
	
	.current-menu-item span:after {
    	content: '';
    	position: absolute;
    	bottom: 0;
    	left: 0; 
    	width: 0;
    	height: 0; 
	}
	
	body > div.wp-site-blocks > div.wp-block-group.is-layout-flow.wp-block-group-is-layout-flow.wp-container-4.is-position-sticky > header > div > div.wp-block-group.alignwide.is-layout-flow.wp-block-group-is-layout-flow > div {
		margin-top: 0px !important;
	}
	
	body > div.wp-site-blocks > div.wp-block-group.is-layout-flow.wp-block-group-is-layout-flow.wp-container-4.is-position-sticky > header > div {
		padding-bottom: 0px !important;
	}
	
	.header-img img {
		width: 90px !important;
	}
	
	.wp-block-navigation__responsive-container-close {
		z-index: 0;
		/*top: -70px;
		right: 20px;*/
	}
	
	.responsive-header-video {
		min-height: 500px !important;
	}
	
	.responsive-blue-box {
		min-height: 350px !important;
	}
	
	a, ul {
    -webkit-tap-highlight-color: transparent;
	}
	
	.header-navigation-styling-first {
  		margin: .1em 0;
		width: 100%;
	}
	
	.header-navigation-styling {
  		margin: .1em 0;
		width: 100%;
	}
	
	.responsive-img-fix img {
		height: auto !important;
	}
	
	.wp-block-navigation__responsive-container-content {
		padding-top: 0px !important;
	}
	
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container {
		background-color: #FBFBF9 !important;
	}

	/* Hide submenus by default */
	.wp-block-navigation__submenu-container {
  		display: none !important;
  		padding-left: 0px !important; 
		  width: 100% !important;
  background-color: #f5f5f5 !important;
	}

	.wp-block-navigation-item.has-child.active .wp-block-navigation__submenu-container {
  		display: block !important;
	}

.wp-block-navigation-item.has-child > .wp-block-navigation-item__content::after {
  content: '❮'; 
  font-size: 25px;
  position: absolute;
  right: 35px; 
  transform: rotate(-90deg); 
  transition: transform 0.3s ease;
}
	
.wp-block-navigation-item.has-child.active > .wp-block-navigation-item__content::after {
  transform: rotate(90deg); 
	right: 30px;
}
	
  .wp-block-group.custom-image-slider .wp-block-group {
    margin-right: 10px;
  }
	
	/* Custom Stylings */
/* Change cursor style */
.hand-cursor {
	cursor: pointer;
}

/* Scale on Hover*/
.scale a {
  transition: transform 0.1s ease;
}

.scale a:hover {
  transform: scale(1.05); 
}

.scale img:hover {
  transform: scale(1.05);
}

.current-menu-ancestor {
	color: var(--wp--preset--color--primary) !important;
}

.current-menu-item span{
    position: relative;
    text-decoration: none; 
}

.current-menu-item span:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 5%; 
    width: 40%;
    height: 2px; 
    background-color: #85888c33;
}

.floating-image {
    transition: transform 1.3s ease-out;
}

.floating-image img {
    width: 350px !important;
    height: auto;
    display: block;
}
}