:root {
--color-1: 227, 0, 102;
--color-2: 37, 35, 36;	
--color-3: 0, 123, 255;	
--main-padding: 10vw;	
--font-size-1: 2.5vw;	
--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;
}


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

.button {
	background:rgba(var(--color-1), 1);
	padding:8px 16px;
	margin-bottom:20px;
	color:#FFF;
	text-decoration:none;
}


.cta {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
	letter-spacing: 0.1em;
}

.cta svg {
    width: 24px; /* Passe die Größe des Pfeils an */
    height: auto;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta:hover {
    color: #0073e6; /* Farbe bei Hover anpassen */
}

.cta:hover svg {
    transform: translateX(5px); /* Pfeil nach rechts bewegen */
}



@media only screen and (max-width: 767px) {
	h1, h2, h3, h4, h5, h6 {
		font-size: 28px !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 - var(--main-padding) * 2);
  padding-left: var(--main-padding);
  padding-right: var(--main-padding);
  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: 16px;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease-in-out;
}

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

.navbar-links li:hover a {
  color: rgba(var(--color-1), 1) !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: #000;
}

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



/* 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 .navbar-logo svg .st0{
    fill:rgba(var(--color-1), 1) !important;
}




/* Versteckt alle Submenüs standardmäßig */
.navbar .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
	min-width: 200px;
}

/* Zeigt das Submenü beim Hover über das Elternelement */
.navbar li.menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Damit das Menü schön aussieht */
.navbar li.menu-item-has-children {
  position: relative;
}

.navbar .sub-menu li a {
  display: block;
  padding:15px 0 !important;
  text-decoration: none;
  color: #333 !important;
}

.navbar .sub-menu li a:hover {
  background: transparent;
	color:rgba(var(--color-1), 1) !important;
	
}

.navbar .sub-menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.navbar li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-menu a::after  {
	display: none;
}





/* Swiper */

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

/* Footer */

.footer-history  {
	width: 100%;
	height: auto;
	object-fit: cover;
	position: relative;
	margin-top:50px;
}

.footer-history img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block; 
}


.footer-history-text {
	 background: rgba(var(--color-2), 0.8);
	position: absolute;
	right: 0;
	padding:80px;
	top: -50px;
	width: calc(40% - 80px);
	color:#FFF;
}
.footer-history-text b {
	font-size: 21px;
}
.footer-history-text a {
	color:#FFF !important;
	text-transform: uppercase;
}
.footer-history-text svg {
	fill:#FFF !important;
}


.footer-history-text p {
	line-height: 1.5em;
	padding-top: 10px;
}


@media only screen and (max-width: 767px) {
    .footer-history {
        display: flex;
        flex-direction: column;
        align-items: center;
		overflow: hidden;
    }

    .footer-history img {
        position: relative;
        width: 100%;
        height: auto;
    }

    .footer-history-text {
        position: relative;
        width: calc(100% - 60px);
        text-align: center;
		padding-left:30px !important;
		padding-right: 30px !important;
        top: 0;
    }
}


.footer-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding-bottom: 25px;
    flex-wrap: nowrap;
}

.footer-logos .logo {
    height: auto; 
}

.footer-logos .logo img{
    max-height: 100%; 
    width: auto; 
    
}

.footer-logos .logo a{
  display: inline-block;
	height: 100%;
    
}




.footer {
	position: relative;
}

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

.footer {
	position: relative;
  display: grid;
  grid-template-columns: 30% 50%; /* Linke Spalte 30%, rechte Spalte 70% */
  grid-gap: 20%;
  padding: 40px;
  background: rgba(var(--color-2), 1);
  color: white;
  padding-left: var(--main-padding);
  padding-right: var(--main-padding);
  color: rgba(255, 255, 255, 0.50);
  font-weight: 300;
  border-top: 10px solid rgba(var(--color-2), 1);
	margin-top:0px;
	padding-top:50px;
}


.footer svg path {	
	fill:#fff !important;
}

.footer svg  {	
	width: 70%;
}

.footer a {
	 color: rgba(255, 255, 255, 0.50);
}

.footer p {
	line-height: 1.5em;
}

.footer-column {

  padding-bottom: 0px;
}

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

.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%;
    transition: transform 0.3s ease; /* Animation für die Skalierung */
}

.footer .social-icons a svg path {
    transition: fill 0.3s ease; /* Animation für die Füllfarbe */
}

.footer .social-icons a:hover svg {
    transform: scale(1.2); /* Vergrößert das Icon beim Hover */
}

.footer .social-icons a:hover svg path {	
    fill: rgba(var(--color-2), 1) !important; /* Ändert die Füllfarbe mit Animation */
}




@media only screen and (max-width: 767px) {
    .footer {
        grid-template-columns: 1fr; /* Jede Spalte nimmt die volle Breite ein */
        grid-gap: 20px; /* Abstand zwischen den Spalten */
        text-align: center; /* Optional: Zentriert den Text */
    }

    .footer-column {
        text-align: center; /* Zentriert die Inhalte der Spalten */
    }

    .footer .social-icons {
        justify-content: center; /* Zentriert die Social Media Icons */
    }

	.footer .footer-column {
		text-align: center !important;
	}
	
	
	.footer #top {
    left: 50%;
		 transform: translateX(-50%);
}
	
	.footer-logos .logo {
    justify-content: center;
    align-items: center;
	}
	
	
	.footer-logos {
    justify-content: center;
    align-items: center;
}
	
	
	.footer .footer_circle {
    width: 100vw;
    height: 100vw;
    bottom: -50vw;
}

}


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

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

.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 */
    }
}


/* 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: 150px;
	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) {
	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;
}
@media only screen and (max-width: 767px) {
	#burger-icon {
    width: 80px;
	}
}


#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;
    display: flex;
    align-items: center;  
    justify-content: center; 
    gap: 8px;
}

#burger-icon .menu_name svg {
    width: 30px; 
    height: auto;
    display: block; 
	fill:#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;
}






.hidden {
  opacity: 0;
}


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


ol {
	padding-left: 0;
	margin: 0;
	padding-top:15px;
}
ol li {
	list-style: none;
	padding:5px;
	font-family: "poppins", sans-serif;
    font-weight: 300 !important;
}

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


body.blank_header .main {
	padding-top:200px;
}
body.blank_header .navbar::after {
	display:none;
}
body.blank_header .navbar-links li a {
    color: #000;
}









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

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select{
  width: calc(100% - 40px);
  padding: 14px 20px;
  background: #d7d7d7;
  color: #000;
  border: none;
  border-radius: 15px;
  font-size: 15px;
  resize: vertical;
  margin-bottom: 8px;
	font-family: "poppins", sans-serif;
}
.wpcf7-form select{
  width: calc(100% - 0px);
}

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

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

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

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

.wpcf7-form input[type="submit"] {
  background: #262626;
  color: #fff;
  font-weight: bold;
  padding: 14px 24px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;width: 100%;
}

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



#burger-icon {
	display:none;
}

@media only screen and (max-width: 950px) {
	#burger-icon {
	display:block;
}
	.navbar-links {
		display:none;
	}
}