:root {
--color-1: 23, 63, 92;
--color-2: 187, 229, 250;	
--color-3: 225, 230, 234;	
--main-padding: 10vw;	
--font-size-1: 4vw;	
--font-size-2: 3vw;		
--swiper-pagination-color:rgba(var(--color-2), 1) !important;	
	
--swiper-navigation-color:rgba(var(--color-2), 1) !important;	
--swiper-theme-color:rgba(var(--color-2), 1) !important;	
	
	
--fancybox-zIndex: 99999 !important;
}	
	


@media only screen and (max-width: 767px) {
	:root {
	--main-padding: 5vw;	
	--font-size-1: 3.5vw;	
	}
}
@media only screen and (min-width: 780px) and (max-width: 1080px) {	
	:root {
	--main-padding: 6vw;	
	}
}


html { font-size: 18px;  }

body {
	background: #fff;
	margin:0;
	padding: 0;
	font-family: "poppins", sans-serif;
font-weight: 400;
font-style: normal;
	font-size: 18px;
	width: 100vw !important;
	max-width: 100vw !important;

}

* {
	text-decoration: none
}


p {
	padding:0;
	margin: 0;
	font-weight: 200;
		font-family: "poppins", sans-serif;
font-weight: 300;
font-style: normal;
	line-height: 1.9em;
}
b, strong {
	font-weight: 600;
}


ol {
	padding-left: 0;
	margin: 0;
	padding-top:15px;
}
ol li {
	list-style: none;
	padding:5px;
	font-weight: 200 !important;
}

ol li::before {
    font-family: "Font Awesome 6 Free";
    content: "\f00c"; 
    font-weight: 900;
    padding-right: 10px;
}



h1, h2, h3, h4, h5, h6 {
	padding:0;
	margin: 0;
	text-transform: normal;
	color: rgba(var(--color-1), 1);
	font-family: "poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height: 1.1em;
	font-size: var( --font-size-1) !important;	 
}


@media only screen and (max-width: 767px) {
	h1, h2, h3, h4, h5, h6 {
		font-size: 32px !important;	

	}
}

#gallery {
	display: none !important;
}

a {
color: rgba(var(--color-1), 1);
}


p a {
	text-decoration: underline;
}
.otgs-development-site-front-end {
	display: none;
}


/* Link */

a.effekt {
    position: relative; /* Position des Elternelements */
    display: inline-block; /* Damit das Icon direkt hinter dem Text bleibt */
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
	background:rgba(var(--color-1), 1);
	padding:10px 10px;
	text-decoration: none !important;
	padding-right: 80px;
	padding-left:20px;
	padding-top:14px;
}

a.effekt::after {
    content: '';
    position: absolute; /* Position des Icons relativ zum Elternelement */
    width: 24px;
    height: 24px;
    background-image: url('../../assets/icons/right-arrow-white.svg');
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.3s;
    top: 50%; /* Zentriert das Icon vertikal */
    transform: translateY(-50%); /* Zentriert das Icon vertikal */
    right:30px; /* Das Icon ist direkt rechts neben dem Text */
}
a.effekt.white {
    color: #FFF;
}
a.effekt.white::after {
    background-image: url('../../assets/icons/right-arrow-white.svg');
}

a.effekt:hover::after {
   right:20px;
	 width: 34px;
    height: 34px;
}

/* Content */



.container {
	max-width: 100%;
	height: auto;
	padding-left:var(--main-padding);
	padding-right:var(--main-padding);
	overflow: hidden;
}


/* Meta Header */

.meta-header {
  position: fixed;
  width: 100%;
  height: 40px;
  background: rgba(var(--color-1), 1);
  z-index: 999;
  color: #FFF;
  display: flex;
  justify-content: space-between;
  padding-left: var(--main-padding);
  padding-right: var(--main-padding);
  box-sizing: border-box;
	font-size: 12px;
	align-items: center;
}
.meta-header a {
	color:#FFF;
}
.col-left, .col-right {
  display: flex;
  width: 50%;
  justify-content: flex-start;
	align-items: center;
}

.col-right {
  justify-content: flex-end;
	align-items: center;
}

.inner-col {
  margin: 0 10px;
}


.meta-header svg {
	fill:#FFF;
	width: 15px;
	height: auto;
}
.meta-header svg path {
	fill:#FFF !important;
}

@media only screen and (max-width: 767px) {
  .col-left {
    width: 70%;
    justify-content: flex-start;
  }

  .col-right {
    width: 30%;
    justify-content: flex-end;
  }

  /* Optional: falls du Inhalte ausblenden möchtest */
  .meta-header .col-left .inner-col:nth-child(2) {
    display: none;
  }

  .meta-header .col-right .inner-col:nth-child(1) {
    display: none;
  }
}



/* Navigation Bar */
.navbar {
  position: fixed;
  width: 100vw;
  z-index: 9999;
  background: transparent;
	height: 150px;
}

.navbar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 25%, rgba(217, 217, 217, 0) 100%);
    opacity: 0.8;
	z-index: -1;
}

.navbar-inner {
  width: calc(100vw - 4vw * 2);
  padding-left: 4vw;
  padding-right: 4vw;
  display: flex;
  justify-content: space-between; /* Updated this line */
  align-items: center;
	height: 100%;
}

/* Logo Style */
.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo a {
	display: flex;
	align-items: center;
}

.navbar-logo img {
  width: 180px; /* Adjust as needed */
}
.navbar-logo svg {
	width: 240px;
	height: auto;
	transition: width 0.5s, fill 0.5s ease;
}

.navbar-logo svg g path {
	transition: fill 0.5s ease;
}

body:not(.scrolling):not(.blank_header) .navbar-logo svg g path {
    fill: #FFF !important; /* Weiß, wenn weder 'scrolling' noch 'blank_header' aktiv ist */
}



body.scrolling .navbar-logo svg,
body.menuopen .navbar-logo svg{
	width: 200px;
	height: auto;
}







body.scrolling .navbar {
	height: 80px;
}




/* Navigation Links Style */
.navbar-links {
  display: flex;
  list-style-type: none;
  margin-left: auto;
}

.navbar-links ul {
  display: flex;
}

.navbar-links li {
  padding: 0 15px;
  list-style: none;
  position: relative;
}

.navbar-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease-in-out;
	text-transform: uppercase;
}



/* Schöner Hover-Effekt mit Unterstreichung */
.navbar-links li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.navbar-links li:hover a {
  color: #fff !important;
}

.navbar-links li:hover a::after {
  width: 100%;
  left: 0;
}

/* Animation für aktiven Link */
.navbar-links li.current_page_item a {
  font-weight: 500;
  position: relative;
}

.navbar-links li.current_page_item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: rgba(var(--color-1), 1);
}

/* Scrolling-Änderung */
body.scrolling .navbar-links li a {
  color: #fff;
}
body.scrolling .navbar-links li:hover a {
  color: #000 !important;
}
body.scrolling .navbar-links li a::after {
  background-color: #000 !important;
}


/* Leichtes Fade-in beim Hover */
.navbar-links li:hover a {
  transition: color 0.3s ease-in-out;
}


.navbar-links .button {
	 background-color: rgba(var(--color-2), 1);
	padding-top:8px;
	padding-bottom: 8px;
	color:rgba(var(--color-1), 1) !important;
	transition: all 0.3s;
	margin-left:20px;
	border-radius: 20px;
	text-transform: uppercase;
	font-weight: 600 !important;
}
.navbar-links .button a,
.navbar-links .button:hover a{
	color:rgba(var(--color-1), 1) !important;
	font-weight: 600 !important;
}

.navbar-links .button:hover a::after {
  display: none;
}

.navbar-links .button:hover {
	 background-color: rgba(var(--color-2), 1);
}


.navbar-links .menu {
	display: flex;
	align-items: center;
}



/* Additional Styles for Icons */
.navbar-actions {
  display: flex;
  align-items: center;
}

.navbar-actions a svg , .navbar-actions svg {
	width: auto;
	height: 20px;
	fill:#FFF;
}

.icon-placeholder {
  width: 22px;
  height: auto;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
	padding-top:5px;
}

.navbar {
	transition: background 0.5s;
}
body.scrolling .navbar{
	background: #FFF;
}
body.scrolling .navbar::after {
	background: transparent;
}

body.scrolling  .navbar-links li a {
  color: #000;
}


body.scrolling .navbar .navbar-logo svg .st0{
    fill:rgba(var(--color-1), 1) !important;
}


/* Swiper */

.swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  border-radius: 0 !important;
}


/* Footer */

.footer #pe_rating {
	padding-top:50px;
}

.footer a {
	color:#FFF !important;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  padding: 50px var(--main-padding) 40px;
  background: #000;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  gap: 50px;
  margin-top: 0;
	color:#FFF;
}

.footer-column {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.footer-column.first,
.footer-column.end {
  padding-top: 30px;
}

.footer-column.end svg {
	height: 100px;
}

.footer-column.end a {
	color:#FFF;
}

.footer-column.first {
  line-height: 1.5em;
  text-align: left;
  color: #FFF;
}

.footer-column.kontakt {
  line-height: 1.5em;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.footer-column.kontakt h5,
.footer-column.kontakt h6,
.footer-column.kontakt p {
  color: #FFF;
}
.footer-column.kontakt h6 {
	font-size: 22px !important;
}

.footer-column.kontakt p {
  width: 70%;
}

.footer .kontakt_data {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.footer .kontakt_data .kontakt_col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  color: #FFF;
}

.footer .kontakt_data .kontakt_col svg {
  width: auto;
  fill: rgba(var(--color-2), 1);
  height: 30px;
}


.footer .inner-footer {
  background: transparent;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  position: absolute;
  pointer-events: none;
  overflow: hidden;
}

/* Kontaktformular */
.footer form.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
	width: calc(100% - 150px);
}

.footer .wpcf7-form input[type="text"],
.footer .wpcf7-form input[type="email"],
.footer .wpcf7-form input[type="tel"],
.footer .wpcf7-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: #2c2c2c;
  color: #fff;
  border: none;
  border-radius: 15px;
  font-size: 15px;
  resize: vertical;
  margin-bottom: 8px;
	font-family: "poppins", sans-serif;
}

.footer .wpcf7-list-item {
	margin-left:0px;
	font-family: "poppins", sans-serif;
	font-size: 15px;
	line-height: 1.5em;
}

.footer .wpcf7-form textarea {
  min-height: 100px;
}

.footer .wpcf7-form p.small {
	font-size: 13px;
	line-height: 1.6em;
}
.footer .wpcf7-form p.small a {
	color:#FFF;
	text-decoration: underline;
}

.footer .wpcf7-form input::placeholder,
.footer .wpcf7-form textarea::placeholder {
  color: #aaa;
}

.footer .wpcf7-form input[type="submit"] {
  background: rgba(var(--color-2), 1);
  color: #000;
  font-weight: bold;
  padding: 14px 24px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer .wpcf7-form input[type="submit"]:hover {
  background: rgba(var(--color-1), 1);
  color: #FFF;
}


.footer-column-full {
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
	background: #fff;
	height: 1px;
}



/* Social Icons */
.footer .social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
}

.footer .social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
}

.footer .social-icons a svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  transition: transform 0.3s ease;
}

.footer .social-icons a svg path {
  transition: fill 0.3s ease;
}

.footer .social-icons a:hover svg {
  transform: scale(1.2);
}

.footer .social-icons a:hover svg path {
  fill: rgba(var(--color-2), 1) !important;
}

/* Zusatz-Anpassung (wahrscheinlich für Cookie-Banner oder ein Plugin?) */
.gDldoV {
  left: auto !important;
  right: 30px !important;
}





/* Footer Menu */


.menu-socket-menu-container {
    text-align: left;
}

.menu-socket-menu-container ul {
    list-style: none; 
    padding: 0;
    margin: 0;
	padding-bottom: 5px;
}

.menu-socket-menu-container ul li {
    display: inline; /* Stellt die Listenelemente inline dar */
    margin-right: 10px; /* Fügt Abstand zwischen den Links hinzu */
}

.menu-socket-menu-container ul li a {
    text-decoration: none; /* Entfernt die Unterstreichung */
    color: inherit; /* Übernimmt die Textfarbe */
}

.menu-socket-menu-container ul li:not(:last-child)::after {
    content: "•"; /* Fügt ein Trennzeichen nach jedem Menüelement hinzu */
    margin-left: 10px; /* Abstand nach dem Trennzeichen */
}

@media only screen and (max-width: 767px) {
	 .menu-socket-menu-container {
        text-align: center; /* Zentriert den Container */
    }

    .menu-socket-menu-container ul {
        display: inline-block; /* Zentriert die Liste innerhalb des Containers */
    }

    .menu-socket-menu-container ul li {
        display: block; /* Stellt jedes Listenelement untereinander dar */
        margin: 5px 0; /* Fügt vertikalen Abstand zwischen den Elementen hinzu */
    }

    .menu-socket-menu-container ul li:not(:last-child)::after {
        content: ""; /* Entfernt das Trennzeichen für mobile Ansicht */
    }
	
	
	.footer {
     grid-template-columns: 100%;
	}
	
	.footer-column.kontakt p {
    width: 100%;
}
	
	.footer form.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(100% - var(--main-padding) * 2);
}
	
	.footer-column.first {
    text-align: center;
}
	.footer .social-icons {
    justify-content: center;
    align-items: center;
}
	.footer-column.first, .footer-column.end {
    text-align: center;
}
	
}




/* Layover */

#layover {
	position: fixed;
	width: calc(100vw - var(--main-padding) - var(--main-padding));
	height: calc(100vh - 150px);
	background: rgba(var(--color-1), 0.98);
	z-index: -1;
	padding-top: 150px !important;
	padding-left: var(--main-padding);
	padding-right: var(--main-padding);
	top: -150%; 
	transition: top 0.8s, z-index 0.5s;
	color:#FFF;
	text-transform: none;
}

#layover a {
	color:rgba(255,255,255,0.7);
	transition: color 0.9s;
}


#layover .inner {
	 display: flex;
    flex-direction: column;
	align-items: flex-start;
	height: calc(100vh - 100px);
}

#layover .inner .item {
	text-align: left;
	font-size:3.5vh;
}

#layover .inner .item:nth-child(2) {
	text-align: left;
	font-size:4.5vh;
}

#layover .inner .item:last-child {
	font-size:2.5vh;
	text-align: left;
	margin-top: auto; 
	padding-bottom: 250px;
	transition: padding-bottom 0.3s;
}

body.scrolling #layover .inner .item:last-child {
	padding-bottom: 50px;
}

#layover .inner ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#layover .inner ul li {
	line-height: 1.8em;
}
#layover .inner ul li:hover a {
	color:#FFF;
}





	#layover	{
	padding-top:100px;
	height: calc(100vh - 100px);
	}

	#layover .inner {
		grid-template-columns: 1fr;
	}

	#layover .inner .item {
		text-align: left;
		font-size:2.5vh;
	}
	#layover .inner .item:last-child {
		font-size:2vh;
	}
	#layover .inner .item a::after, #layover .inner .item a::before {
		display: none !important;
	}	


@media (min-width: 780px) {
	#layover .wpml-ls {
		display: none;
	}
	
	
}

@media (max-width: 780px) {
	
	#layover .button a {
		color: rgba(var(--color-1), 1);
	}
	#layover .button {
		margin-top:20px;
		background-color: rgba(var(--color-2), 1);
  padding-top: 8px;
  padding-bottom: 8px;
  color: rgba(var(--color-1), 1) !important;
  transition: all 0.3s;
  margin-left: 0px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 600 !important;
		padding-left:15px;
		padding-right: 15px;
	}
	
	
	body.scrolling #layover .inner {
	height: calc(100vh - 173px) !important;
}
	
	#layover {
    padding-top: 173px;
	}

}







#burger-icon {
    width: 150px;
    height: auto;
    display: inline-block;
    text-align: center;
	cursor: pointer;
	display: none;
}
@media only screen and (max-width: 767px) {
	#burger-icon {
    width: 80px;
		display: block;
	}
}


#burger-icon .dots-container {
    display: flex;
    justify-content: center;
    transition: all 0.3s ease; /* Ãœbergangseffekt hinzugefÃ¼gt */
}

#burger-icon .dot {
    width: 10px;
    height: 10px;
    background: #FFF;
    margin: 3px;
    border-radius: 100%;
    transition: background 0.3s ease, transform 0.3s ease;
}

#burger-icon .menu_name {
    font-size: 16px;
	color:#FFF;
}

#burger-icon:hover .dot:nth-child(1) {
    background: rgba(var(--color-2), 1);
    transform: scale(1.2);
}

#burger-icon:hover .dot:nth-child(2) {
    background: rgba(var(--color-1), 1);
    transition-delay: 120ms;
    transform: scale(1.2);
}

#burger-icon:hover .dot:nth-child(3) {
    background: rgba(var(--color-2), 1);
    transition-delay: 240ms;
    transform: scale(1.2);
}

body.scrolling #burger-icon .dot:nth-child(1),
body.scrolling #burger-icon .dot:nth-child(2),
body.scrolling #burger-icon .dot:nth-child(3),

body.blank_header #burger-icon .dot:nth-child(1),
body.blank_header #burger-icon .dot:nth-child(2),
body.blank_header #burger-icon .dot:nth-child(3) {
	 background: rgba(var(--color-2), 1);
}





body.scrolling #burger-icon .menu_name,
body.blank_header #burger-icon .menu_name{
	 color: rgba(var(--color-1), 1);
}	

body.menuopen #burger-icon .menu_name,
body.menuopen #burger-icon .dot:nth-child(2),
body.menuopen #burger-icon .dot:nth-child(3) {
    display: none;
}

body.menuopen #burger-icon .dots-container {
    justify-content: center;
    transition: all 0.3s ease; /* Ãœbergangseffekt hinzugefÃ¼gt */
}

body.menuopen #burger-icon .dots-container .dot {
    width: 40px;
    height: 40px;
    background: #FFF; /* Ã„ndern Sie die Hintergrundfarbe auf die gewÃ¼nschte Farbe */
    transform: scale(1);
    transition: all 0.3s ease; /* Ãœbergangseffekt hinzugefÃ¼gt */
}

body.menuopen #burger-icon .dots-container .dot {
    background: rgba(var(--color-2), 1);
}
body.menuopen #burger-icon:hover .dots-container .dot {
    background:#FFF;
}
body.menuopen #burger-icon .dots-container .dot:nth-child(1) {
    transform: translate(0, 0);
	z-index: 9999 !important;
}

body.menuopen #burger-icon .dots-container .dot:nth-child(2) {
    transform: translate(10px, -10px);
}

body.menuopen #burger-icon .dots-container .dot:nth-child(3) {
    transform: translate(40px, -40px);
}

body.menuopen #burger-icon .dots-container .dot:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px; /* Breite der Linie */
    height: 3px; /* Höhe der Linie */
    background-color: #fff; /* Farbe der Linie */
    transform: translate(-50%, -50%) rotate(45deg); /* Erste Linie diagonal */
    box-shadow: 0 0 0 #000;
}

body.menuopen #burger-icon .dots-container .dot:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px; /* Breite der Linie */
    height: 3px; /* Höhe der Linie */
    background-color: #fff; /* Farbe der Linie */
    transform: translate(-50%, -50%) rotate(-45deg); /* Zweite Linie diagonal */
    box-shadow: 0 0 0 #000;
}

body.menuopen #burger-icon:hover .dots-container .dot:nth-child(1)::after,
body.menuopen #burger-icon:hover .dots-container .dot:nth-child(1)::before {
    background:rgba(var(--color-2), 1);
}




body.menuopen #layover {
	top: 0;
	z-index: 999;
}

body.menuopen #header-menu {
	background:transparent;
}





.button-container {
    display: inline-flex;
    align-items: center;
    background:rgba(var(--color-2), 1);
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    cursor: pointer;
	padding:5px 0;
	padding-left:25px;
	padding-right: 10px;
	padding-top:8px;
}

.button-text {
    margin-right: 20px;
}

.button-icon svg {
	width: 25px;
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #008bd2;
    border-radius: 50%;
    font-size: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.button-container:hover .button-icon {
    transform: scale(1.4); 
     background:rgba(var(--color-1), 1);
    color: #fff;
}
.button-container:hover .button-icon svg {
	fill:#FFF;
}







/* Gesamter Widget-Container */
#cta_contact {
    position: fixed;
    width: 65px;
    height: 65px;
    right: 40px;
    top: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
	transition: opacity 0.5s ease;
}

iframe[name="ca-review-widget"] {
  transition: opacity 0.5s ease;
}

.hidden {
  opacity: 0;
}

/* Widget-Container */
.contact-widget {
    width: 80px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    position: relative;
}

/* Icons Styling */
.contact-widget .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-widget .icon svg {
    width: 30px;
    height: auto;
    fill: rgba(var(--color-1), 1);
    transition: fill 0.3s ease, transform 0.3s ease;
}

/* Hover-Effekt für Icons */
.contact-widget .icon:hover {
    transform: scale(1.2) rotate(10deg);
}

.contact-widget .icon:hover svg {
    fill: rgba(var(--color-2), 1);
}

/* Trennlinie */
.contact-widget .divider {
    width: 60%;
    height: 1px;
    background: #ddd;
    margin: 15px 0;
}

.contact-widget .icon:nth-child(1):hover {
    animation: vibrate 0.3s ease-in-out infinite;
}

/* Keyframes für das Vibrieren */
@keyframes vibrate {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}




/* Kreis Button */


.cta {
  position: relative;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
	    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background:  rgba(var(--color-1), 0.2);
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #234567;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill:rgba(var(--color-1), 1);
  transform: translateX(-5px);
  transition: all 0.3s ease;
	width: 20px;
}

.cta:hover:before {
  width: 100%;
  background:  rgba(var(--color-1), 1);
	color:#FFF;
}
.cta:hover span {
	color:#FFF;
}

.cta:hover svg {
  transform: translateX(0);
	fill:#FFF;
}
.cta:hover svg {
	fill:#FFF;
}

.cta:active {
  transform: scale(0.95);
}


body.blank_header .main{
	padding-top:150px;
}
body.blank_header .navbar::after {
	display: none;
}
body.blank_header .navbar-logo .cls-2,
body.scrolling .navbar-logo .cls-2{
	fill:#000;
}

body.blank_header .navbar-links li a {
	color:#000;
}
body.blank_header .navbar-links li:hover a {
	color: rgba(var(--color-1), 1) !important;
}



@media only screen and (max-width: 767px) {
	.navbar-links {
		display: none;
	}
	
	#cta_contact {
    right: 20px;
    top: 75%;
}
	
	body.menuopen.blank_header .navbar-logo svg path {
	fill:#FFF !important;
}
	
	
}
.booking_mobil {
	display:none;
}


@media only screen and (max-width: 767px) {
.booking_mobil {
    position: fixed;
    width: 80%;
    height: auto;
    left: calc(10% - 20px);
    bottom: 19px;
    display: flex;
	padding:10px 20px;
    align-items: center;
    justify-content: center;
    z-index: 999;
	transition: opacity 0.5s ease;
	        background: #fff;
        border-radius: 38px;
	    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	        font-size: 20px;
        font-weight: 700;
}
	.bookingside, .bookingside {
		display: none !important;
	}
}





.button-arrow-holder a {
	background: rgba(var(--color-2), 1);
	border-radius: 50px;
	padding:12px 25px;
	text-transform: uppercase;
	color:rgba(var(--color-1), 1);font-weight: bold;
	font-size: 15px;
	transition: background 0.3s;
	cursor: pointer !important;
}

.button-arrow-holder {
	display: flex;
	align-items: center;
	gap:20px;
}

.button-arrow-holder svg {
	width: 100px;
	margin-top:-70px;
	fill: rgba(var(--color-2), 1);
	transition: all 0.3s;
}

.button-arrow-holder:hover a {
	background: #fff;
}
.button-arrow-holder:hover svg {
	transform:scale(1.2);
}




.countdown-timer {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #333;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  margin: 10px 0;
	border-radius: 20px;
}



.provenexpert-badges {
    display: flex;
    gap: 20px;
    justify-content: flex-start; 
    align-items: center; 
	margin-top:20px;
	
}


/* Brevo NL */

#sib-form-container, .sib-form {
		background: #fff !important;
	}	
#sib-container,
.sib-container--large {
	width: 100% !important;
	max-width: 100% !important;
}

#sib-container a {
 color:rgba(var(--color-1), 1) !important;
}
.sib-form-block__button {
  background: rgba(var(--color-2), 1) !important;
  color: rgba(var(--color-1), 1) !important;
  border-radius: 20px !important;
  transition: all 0.3s ease; 
}

.sib-form-block__button:hover {
  background: rgba(var(--color-1), 1) !important;
  color: rgba(var(--color-2), 1) !important;
}

@media only screen and (min-width: 767px) {


.sib-input {
	width: 48% !important;
	float: left;
	margin-right: 1% !important;
}

.sib-input label.entry__specification {
	padding: 0px !important;
	padding-bottom: 15px !important;
	margin-top: 0px !important;
}

.sib-form__declaration {
  padding: 30px 16px !important;
}



#sib-container div {
	padding: 0px !important;
}

.sib-form__declaration {
	width: 100% !important;
	padding-top:20px !important;
	margin-top: 20px !important;
}

#sib-container div:nth-last-of-type(2) {
  padding-top: 30px !important;
	padding-bottom: 20px !important;
}
#sib-container div:nth-child(2) {
  padding-top: 0px !important;
	margin-bottom: 15px !important;
}
}



.textbox ul li {
	line-height: 1.6em;
}



body.page-id-304 h1, 
body.page-id-304 h2, 
body.page-id-304 h3, 
body.page-id-304 h4, 
body.page-id-304 h5, 
body.page-id-304 h6,
body.page-id-302 h1, 
body.page-id-302 h2, 
body.page-id-302 h3, 
body.page-id-302 h4, 
body.page-id-302 h5, 
body.page-id-302 h6{
	font-size:20px !important;
}



.container.textbox .pew-content p {
    padding-top: 0px !important;
}



body.page-id-309 h1,
body.page-id-771 h1,
body.academy h1{
	color:#ac0000 !important;
}

body.page-id-771 h2,
body.academy h2{
	color:#ac0000 !important;
	font-size: 40px !important;
	padding-top:30px;
}


body.page-id-309 .container.infosection,
body.page-id-771 .container.infosection,
body.academy .container.infosection{
  background: #f0e7ce;
}
body.page-id-309 .header,
body.page-id-771 .header,
body.academy .header{
	height: 70vh !important;
}

body.page-id-309 .navbar-links .button,
body.page-id-771 .navbar-links .button,
body.academy .navbar-links .button{
  background-color: #ac0000;
	color:#FFF !important;
	
}

body.page-id-309 .navbar-links .button  a,
body.page-id-771 .navbar-links .button  a,
body.academy .navbar-links .button  a{
	color:#FFF !important;	
}

body.page-id-309 .navbar-logo svg .cls-1,
body.page-id-309 .footer-column.end svg .cls-1,
body.page-id-771 .navbar-logo svg .cls-1,
body.page-id-771 .footer-column.end svg .cls-1,
body.academy .navbar-logo svg .cls-1,
body.academy .footer-column.end svg .cls-1{
	fill:#ac0000;
}

body.page-id-309 .footer .kontakt_data .kontakt_col svg,
body.page-id-309 .footer .social-icons a:hover svg path,
body.page-id-309 .button-arrow-holder svg,
body.page-id-771 .footer .kontakt_data .kontakt_col svg,
body.page-id-771 .footer .social-icons a:hover svg path,
body.page-id-771 .button-arrow-holder svg,

body.academy .footer .kontakt_data .kontakt_col svg,
body.academy .footer .social-icons a:hover svg path,
body.academy .button-arrow-holder svg {
	fill:#f0e7ce !important;
}



body.page-id-309 .container.newsletter_frame,
body.page-id-771 .container.newsletter_frame,
body.academy .container.newsletter_frame{
	 background-color: #ac0000;
}

body.page-id-309 .button-arrow-holder a,
body.page-id-309 .footer .wpcf7-form input[type="submit"],
body.page-id-771 .button-arrow-holder a,
body.page-id-771 .footer .wpcf7-form input[type="submit"],
body.academy .button-arrow-holder a,
body.academy .footer .wpcf7-form input[type="submit"]{
  background: #f0e7ce;
	color:#000 !important;
}


body.scrolling.academy #burger-icon .dot:nth-child(1), 
body.scrolling.academy #burger-icon .dot:nth-child(2), 
body.scrolling.academy #burger-icon .dot:nth-child(3), 
body.blank_header.academy #burger-icon .dot:nth-child(1), 
body.blank_header.academy #burger-icon .dot:nth-child(2), 
body.blank_header.academy #burger-icon .dot:nth-child(3) {
     background: #ac0000 !important;
}
body.blank_header.academy .menu_name,
body.scrolling.academy .menu_name{
	color:#000 !important;
}


body.academy .faq h5 {
	color:#ac0000;
}
body.academy .faq-item h3 {
	color:#000;
}
body.academy .faq-item-control span {
    background: #ac0000;
}
body.academy .faq__active.faq-item h3 {
	color:#ac0000;
}

@media only screen and (min-width: 1200px) and (max-width: 1280px){
.navbar-links li a {
	font-size:	12px;
}
}



@media only screen and (max-width: 767px) {
	body.page-id-309 .header,
	body.page-id-771 .header,
	body.academy .header{
	height: 50vh !important;
}
	body.page-id-309 .header .inner-bg,
	body.page-id-771 .header .inner-bg,
	body.academy .header .inner-bg {
	background-position: center center !important;
}

	
	body.page-id-309 .header::before,
	body.page-id-771 .header::before,
	body.academy .header::before{
        background: rgba(0, 0, 0, 0.1);
        z-index: 2;
    }
	
}


@keyframes pulsieren {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.buy_big {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ac0000;
  color: white;
  font-size: 20px;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s;
  margin-bottom: 20px;
	animation: pulsieren 1.5s infinite ease-in-out;
	margin-top: 25px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.buy_big:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
	background: #000;
}

.buy_small {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: white;
	border-radius: 50px;
  font-size: 15px;
  text-decoration: none;
	 transition: background 0.5s;
}
.buy_small:hover {
	background: #ac0000;
}


.buy_smaller {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: white;
	border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
	 transition: background 0.5s;
	margin-top:20px;
}
.buy_smaller:hover {
	background: #ac0000;
}

@media only screen and (max-width: 767px) {
p:has(.buy_big),
	p:has(.buy_small),
	p:has(.buy_smaller){
    text-align: center;
  }
}


body.pagename-testmanagement .infosection {
	background: #fefaef !important;
}


