/*-----------------------------------------------------------------------

  * Javadi Template 
  * Copyright 2025

  =======================================================================*/
/* Scrollbar Styles */
/* Preloader */
/* Settings for Accordion (Bootsrap-5) */
/* Typography*/
/* Navigation */
/* Mobile Navigation */
/* Link style */
/* Button */
/* Fullscreen Parallax Slider */
/* Centered Slider */
/* Creative Agency */
/* Header Image */
/* Header Page */
/* Tagline */
/* Portfolio Layout 2 columns */
/* Clients Section */
/* Footer */
/* Background Text */
/* Animation text */
/* About Us */
/* About Me */
/* Services Page */
/* Pricing Plan Page */
/* Page 404 */
/* Portfolio Filter */
/* Info Section */
/* Portfolio Stack */
/* Portfolio List */
/* Portfolio Standart 2-columns */
/* Portfolio Standart 3-columns */
/* Single Project Page */
/* Blog Page */
/* Single Post Page */
/* Contact Page */
/* Media Queries For Responsive Design */
body {
  line-height: 1.6; /* Standard ist ca. 1.2 – 1.6 ist gut lesbar */
}
p {
  line-height: 2.0;
}


html {
  font-size: 130%; /* alles wird ca. 10% größer */
}

body {
  font-size: 1.2rem;
  line-height: 1.7;
}

p {
  font-size: 1.3rem;
}




html, body {
  overflow-x: hidden;
}



.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}







.menu-logo a {
    display: flex;
    align-items: center;     /* vertikal mittig */
    justify-content: center; /* horizontal mittig */
}

.menu-logo img {
    display: block;
}


.bw-video {
    filter: grayscale(100%);
}


.video-wrapper9 {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 120px;
}

/* Video im Multiply-Modus */
.video-wrapper9 video {
    width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    display: block;
}

/* Fallback-Bild */
#fallbackImg {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: none; /* erst versteckt */
}





  #cookie-banner {
    position: fixed; /* Fest positioniert am Bildschirm */
    bottom: 0;
    left: 50%; /* 50% von der Bildschirmbreite */
    transform: translateX(-50%); /* Verschiebt das Banner um 50% seiner Breite nach links, um es zu zentrieren */
    width: 100%; /* Die Breite des Banners */
    color: #fff;
    text-align: center; /* Zentriert den Text im Banner */
    background-color: rgba(0, 69, 97, 0.8); /* Dunkler Hintergrund */
    padding: 50px;
    z-index: 1000; /* Banner bleibt immer oben */
}


  #cookie-banner a {
    color: #dfd7d3;
    text-decoration: none;
  }

  #cookie-banner button {
    background-color: #004561;
    color: #fff;
    border: #FFFFFF;
    padding: 5px 50px;
    cursor: pointer;
    border-radius: 15px;
    font-size: 14px;
    margin: 10px;
  }

  #cookie-banner button:hover {
    background-color: #9fe3ff;
  }
     
/* Floating Button unten rechts */
.contact-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #004962;
  color: #fff;

  /* ANGEPASST → gleich wie Panel */
  padding: 14px 20px;
  width: 230px;
  box-sizing: border-box;

  border-radius: 14px;
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  font-family: 'DM Sans', sans-serif;
}

.contact-fab a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 12px;
}

/* Hover-Zustand */
.contact-fab:hover {
  background:#9fe3ff;
  transform: scale(1.1);
  box-shadow: 0 6px 6px rgba(0,0,0,0.2);
}

/* Aktiver Zustand */
.contact-fab:active {
  background: #a7a7a7;
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Kontakt-Panel (Popup) */
.contact-panel {
  position: fixed;
  bottom: 70px;
  right: 20px;

  background-color: #004962;
  color: #fff;

  /* ANGEPASST → gleiche Breite */
  width: 230px;
  padding: 16px 20px;
  box-sizing: border-box;

  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);

  z-index: 999;
  font-family: 'DM Sans', sans-serif;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.contact-panel.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-panel p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.contact-panel a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
}

.contact-panel a:hover {
  text-decoration: none;
  color: #9fe3ff;
}

/* Responsiv */
@media (max-width: 600px) {
  .contact-fab {
    bottom: 15px;
    right: 15px;
    padding: 10px 20px; /* angeglichen */
    width: 190px;
    box-sizing: border-box;
  }

  .contact-panel {
    right: 10px;
    width: 190px;
  }
}




/* =======================================================================*/
.accordion-item,
.title-page-name,
.header-page-img .button,
.header-page-img .header-content p,
.header-page-img .header-content .main-title,
.header-page-img .header-content .sub-title,
.bg-text,
.header-content .sub-title-2,
.anim-block .sub-title .char {
  opacity: 0;
}
/*Scrollbar Styles*/
* {
  scrollbar-width: thin;
  scrollbar-color: #8b8b8b #cecece;
}

/* Standard: schwarzes Logo (Desktop) */
.logo-main {
    content: url("../img/logo-horizontal.svg");
     margin-bottom: 30px;
    
}

/* Mobile: weißes Logo */
@media (max-width: 768px) {
    .logo-main {
        content: url("../img/logo-stacked-white.svg");
    }
}






picture {
  display: block;
  width: 100%;
  height: 100vh;      /* Bild füllt volle Höhe */
  border-radius: 20px;
  overflow: hidden;   /* Rundung bleibt sichtbar */
}

picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* GANZES Bild sichtbar */
  object-position: center; /* Zentriert das Bild */
  background-color: #fcf7f3; /* optional, farbiger Hintergrund */
}


*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background: #cecece;
}
*::-webkit-scrollbar-thumb {
  background-color: #8b8b8b;
  border-radius: 10px;
}
/* Preloader */
#preloader {
  z-index: 100;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fbfbfb;
  display: flex;
  justify-content: center;
  align-items: center;
}




/*          logo schrift menu        */

.logo-title-wrap {
  display: flex;
  align-items: center;
    gap: 2px;
}

.logo-title {
  font-size: 15px; /* <-- Schriftgröße hier ändern */
  font-weight: 600; /* optional */
  color: #000;      /* optional */
    letter-spacing: 0px;
}

@media (max-width : 357px ){
  .logo-title {
    font-size: 12px;
       text-align: left;
  }
}
























/* ———————————————————————————
   Ruhige 3D Prestige Logo Animation (Header links)
———————————————————————————— */
.logo-prestige {
  position: relative;
  width: 50px;
  height: 50px;
  perspective: 1200px;
  transform-style: preserve-3d;
  animation: prestigeSpin 3s ease-in-out infinite;
}

.logo-prestige .logo {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

/* Vorderseite */
.logo-prestige .front {
  transform: rotateY(0deg);
}

/* Rückseite */
.logo-prestige .back {
  transform: rotateY(180deg) rotateX(0deg);
}

















/* Ruhige, nie verschwindende 3D-Drehung */
@keyframes prestigeSpin {
  0%   { transform: rotateY(0deg); }
  50%  { transform: rotateY(120deg); }
  100% { transform: rotateY(0deg); }
}















/*Settings for Accordion (Bootsrap-5)*/
.accordion-item {
  background-color: transparent;
}
.accordion-button::after {
  background-image: url('../icons/add-outline.svg');
  transition-duration: 0.5s;
  width: 30px;
  height: 30px;
  background-size: 30px;
}
.accordion-button:not(.collapsed) {
  color: unset;
}
.accordion-button:not(.collapsed)::after {
  background-image: url('../icons/add-outline.svg');
  transition-duration: 0.5s;
}
.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}
.accordion-button:focus {
  border-color: unset;
  box-shadow: unset;
}
.accordion-button:not(.collapsed) {
  background-color: unset;
}
.accordion-button::after {
  margin-left: unset;
}
/*input*/
.form-control {
  border-color: #ababab;
  border-radius: 2px;
}
.form-control:focus {
  border-color: #1b6385;
  box-shadow: 0 0 0 0.25rem #1b638530;
}
/*button*/
button {
  background-color: unset;
  border-width: unset;
  border-style: unset;
  border-color: unset;
  border-image: unset;
}
/* Typography*/
html {
  scroll-behavior: smooth;
}




.h1,
h1 {
  font-size: 80px;
}

@media (max-width: 600px) {
  h1,
  .h1,
  h1[class],
  h1[class*="title"],
  .main-title {
    font-size: clamp(38px, 8vw, 40px) !important;
    line-height: 1.25;
  }
}



.h2,
h2 {
  font-size: 60px;
}
.h3,
h3 {
  font-size: 36px;
}

@media (max-width: 600px) {
  h3,
  .h3,
  h3[class],
  h3[class*="title"],
  .main-title {
    font-size: clamp(28px, 8vw, 40px) !important;
    line-height: 1.25;
  }
}







.h4,
h4 {
  font-size: 48px;
}
.h5,
h5 {
  font-size: 38px;
}
.h6 h6 {
  font-size: 34px;
}

ul,
menu,
dir {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
figure {
  margin: 0;
}
p {
  font-weight: 300;
  margin: 0;
}
a {
  color: #1b6385;
  font-weight: 600;
}
a:hover {
  color: #1b6385;
}
.img-fluid {
  border-radius: 20px;
}
.number {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 300;
}
html,
body {
  position: relative;
  height: 100%;
  touch-action: auto;
}
body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #fcf7f3;    
    }

@media (max-width: 600px) {
  .doctolib-logo {
    content: url('../img/doctolib_logo_white.svg');
      height: 30px; /* Größe */
      margin-top: 22px;
  }
}

    
    
    

/* Navigation */
a.menu-active:before {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px) !important;
  opacity: 1 !important;
}
.nav-down {
  transition-duration: 0.4s;
}
.nav-up {
  -webkit-transform: translateY(-73px);
  transform: translateY(-73px);
  transition-property: all;
  transition-duration: 0.4s;
}
.page-navigation {
  margin-top: 0;
  position: fixed;
  height: 56px;
  width: 100%;
  right: 0;
  z-index: 12;
  transition-duration: 0.5s;
  border-bottom: 1px solid #cecece;
}
.home-menu-text {
  height: 100%;
}
.home-menu-text .menu {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.home-menu-text .menu-item {
  display: inline-block;
  margin: 0 26px;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  text-decoration: unset;
  letter-spacing: 0.1em;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.home-menu-text a {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1f2022;
  text-decoration: unset;
  letter-spacing: 0.1em;
  transition-duration: 0.5s;
}
.home-menu-text .seen a {
  color: #fff;
}
.home-menu-text .seen a:before {
  background-color: #fff;
}
.home-menu-text a:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1f2022;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition-duration: 0.3s;
}
.home-menu-text a:hover:before {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.home-menu-text .seen > li > a {
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
}
.seen > .menu-item-has-children > .sub-menu {
  padding-top: 0;
  padding-bottom: 34px;
}
/* Mobile Navigation */
.navigation_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 24px 48px 48px 48px;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  z-index: 11;
  right: 0;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition-property: all;
  transition-duration: 0.5s;
  background-color: #191c1f;
}
.navigation_menu .social-icon .social-icon-text {
  font-size: 10px;
  color: #6c6f70 !important;
  letter-spacing: 1em;
  display: block;
}
.navigation_menu .social-icon .wrap-link {
  margin-top: 0;
}
.navigation_menu a p {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 300;
  color: #4db6ac;
}
.seen {
  transform: unset !important;
}
.nav-down {
  transition-duration: 0.4s;
}
.hamburger {
  width: 45px;
  height: 33px;
  position: absolute;
  cursor: pointer;
  z-index: 1041;
  right: 2px;
  top: 16px;
  transition: 0.5s;
  display: none;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  opacity: 1;
  top: 5px;
  right: 5px;
  transition: all 0.25s ease-in-out 0s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}





.color-menu {
  background: #1f2022 none repeat scroll 0% 0%;
}
.opened .color-menu {
  background: #fff;
}
.opened {
  margin-top: -5px;
}
.hamburger span:nth-child(1) {
  margin-top: 0px;
}
.hamburger span:nth-child(2) {
  margin-top: 5px;
  margin-right: 0px;
}
.hamburger span:nth-child(3) {
  margin-top: 10px;
}
.hamburger.opened span:nth-child(1) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-top: 11px;
}
.hamburger.opened span:nth-child(2) {
  opacity: 0;
  right: 75px;
}
.hamburger.opened span:nth-child(3) {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-top: 11px;
}
.collapse-section > li > a {
  position: relative;
  font-size: 13px !important;
  color: #d0cfcb !important;
}
ul.sub-menu {
  flex-direction: column;
  display: none;
  position: absolute;
  background-color: #fbfbfb;
  border: 1px solid #cecece;
}
.menu-item:hover ul.sub-menu {
  display: flex;
}
.menu > .menu-item-has-children > .sub-menu {
  padding: 12px 0;
}
.menu-item > .sub-menu > .menu-item > .sub-menu {
  position: relative;
}
#menu-all-pages > li > .sub-menu {
  padding: 6px 0;
}
.menu > .menu-item-has-children:before {
  content: url("../icons/arrow-down.svg");
  font-size: 10px;
  top: 10px;
  filter: invert(1);
}
.menu.seen > .menu-item-has-children:before {
  filter: invert(0);
}
#menu-all-pages-flat {
  display: inline;
}
.top-separator-line {
  border-top: 1px solid #cecece;
}
.bottom-separator-line {
  border-top: 1px solid #cecece;
}
/* Link style */
.wrap-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.wrap-link:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1f2022;
  position: absolute;
}
.wrap-link:hover .link-hover {
  position: absolute;
  -webkit-transform: translateY(-26px);
  -ms-transform: translateY(-26px);
  transform: translateY(-26px);
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.wrap-link:hover span {
  -webkit-transform: translateY(-26px);
  -ms-transform: translateY(-26px);
  transform: translateY(-26px);
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.wrap-link span {
  color: #1f2022;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.wrap-link .link-hover {
  color: #1f2022;
  text-transform: uppercase;
  position: absolute;
  display: inline-block;
  left: 0;
  width: 100%;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.link-text {
  position: relative;
  overflow: hidden;
  height: 20px;
 
}


.footer-transparenz,
.footer-transparenz h5,
.footer-transparenz span {
    color: #9ec2d7 !important;
}


.footer-transparenz .link-hover {
    color: #9ec2d7 !important;
}









.s-link {
  display: block;
}
.s-link a {
  position: relative;
  display: inline-block;
  text-decoration: unset;
}
.wrap-link.wrap-link-white span {
  color: #fff;
}
.wrap-link.wrap-link-white .link-hover {
  color: #fff;
}

.footer .link-hover {
  color: #1f2022 !important;
  border: none !important;
}





.wrap-link.wrap-link-white:after {
  background-color: #fff;
}
/* Button */
.button-pos {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  color: #1f2022;
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 155px;
  line-height: 155px;
  text-transform: uppercase;
  border: 5px solid currentColor;
  border-radius: 24px;
  text-decoration: none;
  letter-spacing: 5px;
  padding: 0 24px;
  font-size: 31px;
  transition-duration: 0.3s;
}
.button-pos span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #1b6385;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.button-pos:hover {
  color: #fff;
}
.button-pos:hover span {
  width: 220%;
  height: 565px;
}
.button-pos:active {
  background-color: #1f2022;
}
.circle-button .button-pos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  border-radius: 100%;
  padding: unset;
}
.white-button > a {
  color: #fff;
}
.white-button > a:hover {
  color: #1f2022;
  border-color: transparent;
}
.white-button .button-pos span {
  background-color: #fff;
}
.white-button .button-pos:active {
  background-color: #fff;
}






.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  left: 24px;
  z-index: 11;
}
.header-white .header-logo {
  filter: invert(1);
}
.header-logo img {
  height: 40px;
  width: auto;
}
.section {
  padding: 72px 0;
}


.center-img {
  display: block;
  margin: 0 auto;
     margin-bottom: 200px;
}



.main-title {
  text-transform: none;
  margin-bottom: 6px;
  letter-spacing: 2px;
}
.sub-title {
  font-weight: 200;
  text-transform: none;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.sub-title-2 {
  text-transform: none;
  margin-bottom: 8px;
  line-height: 44px;
}

.sub-title-footer {
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 24px;
        color: #fff; 
}




.adresse-links a {
    color: #9ec3d7 !important;
}

/* Slider Settings */
[class^="swiper-button-"] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

}
.main-slider {
  height: 100vh;

}
.swiper-container {
  width: 100%;
  min-height: 100vh;
  float: left;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.6s ease, transform 0.3s ease;
  transition: opacity 0.6s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    
}
.swiper-container.nav-slider {
  width: 20%;
  padding-left: 5px;
         

}
.swiper-container.nav-slider .swiper-slide {
  cursor: pointer;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.swiper-container.nav-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-container.nav-slider .swiper-slide .content {
  width: 100%;
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.swiper-container.loading {
  opacity: 0;
  visibility: hidden;
}
.swiper-slide {
  overflow: hidden;
}
.swiper-slide .img-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center !important;
  background-size: cover !important;
}
.swiper-slide .entity-img {
  display: none;
}
.swiper-slide .content {
  position: absolute;
  top: 40%;
  left: 0;
  width: 50%;
  padding-left: 5%;
  color: #000000;
}
.slider-content {
  width: 100%;
  z-index: 1;
}
.wrap-caption {
  overflow: hidden;
}
[class^="swiper-button-"] {
  width: 72px;
  opacity: 0;
  visibility: hidden;
}
.swiper-button-prev {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}
.swiper-button-next {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}
.swiper-button-next,
.swiper-button-prev {
  height: 36px;
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: none;
}
.slider-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
}
.slider-arrow:before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: #ffffff;
  position: absolute;
}


.cardburn {
  display: flex;
  flex-direction: column;
  height: 250px;
}

.text-cardburn {
  flex-grow: 1;
}

.logo-anim {
  width: 150px;
  perspective: 800px;
}

.logo-anim img {
  width: 100%;
  animation: rotateX 4s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes rotateX {
  0%   { transform: rotateX(0deg); }
  30%  { transform: rotateX(15deg) scale(1.02); }
  50%  { transform: rotateX(0deg) scale(1.05); filter: brightness(1.2); }
  70%  { transform: rotateX(-15deg) scale(1.02); }
  100% { transform: rotateX(0deg); }
}




.counter {
  font-family: 'Oswald', sans-serif;
  bottom: 24px;
  right: 130px;
  position: absolute;
  color: #ffffff;
}
.first-number {
  font-size: 60px;
  position: relative;
  display: inline-block;
  width: 100px;
  top: -14px;
  left: -100px;
}
.slider-arrow-text {
  font-family: 'Oswald', sans-serif;
  transition-duration: 0.5s;
  font-size: 18px;
  letter-spacing: 1px;
}
.swiper-button-prev:hover div .slider-arrow-text {
  transform: translateX(24px);
  transition-duration: 0.5s;
}
.swiper-button-next:hover div .slider-arrow-text {
  transform: translateX(-24px);
  transition-duration: 0.5s;
}
/* Fullscreen Parallax Slider */
.parallax-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
                   


}
.parallax-slider .slider-content .main-title {
  color: #fff;
}
.parallax-slider .slider-content .sub-title-2 {
  color: #fff;
  font-weight: 300;
  text-transform: unset;
}
.parallax-slider .slider-content .white-button {
  margin-top: 24px;
}
.header-white {
  position: relative;
}
.header-white .headroom--top {
  background-color: transparent !important;
}
.header-white .headroom--top .color-menu {
  background: #fff;
}
.header-white .headroom--top .home-menu-text a:before {
  background-color: #fff;
}
.header-white .headroom--not-top .header-logo {
  filter: unset;
}
.header-white .headroom--not-top .menu > .menu-item > a {
  color: #1f2022;
}
.header-white .headroom--not-top .menu > .menu-item:before {
  filter: invert(1);
}
.header-white .menu > .menu-item > a {
  color: #fff;
}
.header-white .menu > .menu-item:before {
  filter: unset;
}
.header-white .parallax-slider-container .social-icon {
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}
.header-white .parallax-slider-container .social-icon .s-link {
  margin-right: 12px;
}
.header-white .parallax-slider-container .social-icon .wrap-link span {
  color: #fff;
}
.header-white .parallax-slider-container .social-icon .wrap-link:after {
  background-color: #fff;
}
.slider-text {
  width: 60%;
}
.parallax-slider .swiper-slide:before {
  z-index: 1;
  content: "";
  width: 100%;
    
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #18191ba1 0%, rgba(255, 255, 255, 0) 100%);
}
/* Centered Slider */
.slider-v2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.slider-v2 .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    
  overflow: hidden;
  min-height: 100vh;
}
.slider-v2 .swiper-slide .img-slider {
  position: relative;
  top: unset;
  left: unset;
  clip-path: inset(0 0 0 0);
  transition: 3s cubic-bezier(0.085, 0.85, 0.17, 1);
}
.slider-v2 .swiper-slide .wrap-slider-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 70%;
  top: 10%;
  height: 85%;
}
.slider-v2 .swiper-slide .wrap-slider-content h6 {
  color: #1f2022;
  margin-bottom: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.slider-v2 .swiper-slide .wrap-slider-content h3 {
  color: #1f2022;
  margin-top: 28px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600;
}
.slider-v2 .button-underline {
  margin-top: 56px;
}
.slider-v2 .counter {
  color: #1f2022;
  display: unset;
  justify-content: unset;
  align-items: unset;
  bottom: 28px;
  right: 100px;
  height: auto;
}
.centered-slider .social-icon {
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}
.centered-slider .social-icon .s-link {
  margin-right: 12px;
}
.centered-slider .slider-arrow {
  color: #1f2022;
}
.centered-slider .slider-arrow:before {
  background-color: #1f2022;
}
.centered-slider:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
}
.grab-slider-img {
  clip-path: inset(40px 40px 40px 40px) !important;
}
.carousel-slider-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.carousel-slider-container .swiper-slide-active.swiper-slide-active .wrap-slider-content h6,
.carousel-slider-container .swiper-slide-active.swiper-slide-active .wrap-slider-content h5 {
  opacity: 1;
}
.carousel-slider-container .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
    
       

}
.carousel-slider-container .swiper-slide .char {
  opacity: 0;
}
.carousel-slider-container .swiper-slide .img-slider {
  position: relative;
  top: unset;
  left: unset;
  clip-path: inset(0 0 0 0);
  transition: 3s cubic-bezier(0.085, 0.85, 0.17, 1);
}
.carousel-slider-container .swiper-slide .wrap-slider-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 70px;
  width: 80%;
  height: 85%;

}
.carousel-slider-container .swiper-slide .wrap-slider-content h6 {
  color: #1f2022;
  margin-bottom: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 5px;
  opacity: 0;

}
.carousel-slider-container .swiper-slide .wrap-slider-content h5 {
  color: #1f2022;
  margin-top: 28px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600;
  opacity: 0;
}
.carousel-slider-container .button-underline {
  margin-top: 56px;
}
.carousel-slider-container .counter {
  color: #1f2022;
  display: unset;
  justify-content: unset;
  align-items: unset;
  bottom: 28px;
  right: 100px;
  height: auto;
}
.carousel-slider .social-icon {
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}
.carousel-slider .social-icon .s-link {
  margin-right: 12px;
}
/* Creative Agency */
.slider-why-choose-us {
  margin-top: 56px;
  min-height: 450px;
    
}
.slider-why-choose-us .wrap-slider-content {
  display: flex;
  height: 100%;
}
.slider-why-choose-us .wrap-slider-content .why-choose-us-text {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slider-why-choose-us .wrap-slider-content .why-choose-us-text .sub-title-2 {
  text-transform: unset;
  margin-bottom: 18px;
  line-height: 40px;
}
.slider-why-choose-us .wrap-slider-content .why-choose-us-text .sub-title-2 .slider-why-choose-us p .word {
  opacity: 0;
}
.slider-why-choose-us .wrap-slider-content .why-choose-us-wrap-img {
  padding: 0 56px;
  width: 50%;
}
.slider-why-choose-us .wrap-slider-content .why-choose-us-wrap-img figure {
  border-radius: 2px;
  position: relative;
}
.slider-why-choose-us .swiper-button-prev,
.slider-why-choose-us .swiper-button-next {
  position: relative;
  top: unset;
  opacity: 1;
  visibility: visible;
  transform: unset;
  height: 48px;
  width: 48px;
  background-size: 48px 48px;
  bottom: 0;
}
.slider-why-choose-us .swiper-button-prev,
.slider-why-choose-us .swiper-container-rtl .swiper-button-next {
  background-image: url('../icons/arrow-back-circle-outline.svg');
  left: -4px;
}
.slider-why-choose-us .swiper-button-next,
.slider-why-choose-us .swiper-container-rtl .swiper-button-prev {
  background-image: url('../icons/arrow-forward-circle-outline.svg');
  right: unset;
  left: 4px;
}
.slider-why-choose-us .wrap-swiper-icon-button {
  position: absolute;
  top: 0;
  display: flex;
  align-items: flex-end;
  height: 100%;
  width: 50%;
}
.slider-why-choose-us .counter {
  width: 50%;
  color: #1f2022;
  bottom: unset;
  right: unset;
  top: 32px;
}
.slider-why-choose-us .counter .first-number {
  font-size: 24px;
  position: relative;
  display: inline-block;
  width: unset;
  top: unset;
  left: unset;
}
.slider-why-choose-us .counter .first-number span {
  top: -23px;
}
/* Header Image */
.header-page-img .main-title {
  line-height: 1;
}
.section-our-mission h4 {
  text-transform: uppercase;
}
/* Header Page */
.header-page {
  overflow: hidden;
  position: relative;
  padding-top: 128px;
  height: 100vh;
  border-bottom: 1px solid #1f2022;
}
.header-page .container,
.header-page .row {
  height: 100%;
}

.inner-container {
  width: 100%;
  padding: 0; 
  margin: 0;
}

.header-img {
  position: absolute;
  top: 72px;
  right: 0;
  height: 100%;
  width: 50%;
  background-position: center;
  background-size: cover;
  border-top-left-radius: 200px;
  z-index: -1;
}
.dsc-header {
  margin-bottom: 36px;
}
.header-content {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.card-section .card {
  background-color: #edf3fa;
  margin-top: 0;
  border-radius: 20px;
}
.card-section .card-group {
  margin-top: 56px;
}
.number-card {
  margin-left: 0;
  padding: 24px;
  text-align: right;
}
/* Tagline */
.tagline-section {
  border-top: solid 1px #cecece;
  border-bottom: solid 1px #cecece;
  padding-top: 56px;
  padding-bottom: 66px;
  overflow: hidden;
}
.tagline-marquee {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #e6e2dd;
}
.tagline-marquee img {
  border-radius: 2px;
  height: 200px;
  margin-right: 28px;
}
.tagline-marquee .js-marquee {
  display: flex;
  align-items: center;
}
.tagline-marquee .js-marquee span {
  font-size: 200px;
  line-height: 1;
  margin-right: 28px;
}
/* Portfolio Layout 2 columns */
.project-img {
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
}
.project-img .img {
  width: 100%;
  height: 600px;
  clip-path: inset(0 0 0 0);
  transition-duration: 0.3s;
}
.project-img .img:hover {
  clip-path: inset(10px 10px 10px 10px);
  transition-duration: 0.3s;
  cursor: url('../icons/cursor_view_project.svg') 40 40, pointer !important;
}
.project-img > .img > div {
  width: 100%;
  height: 130%;
  background-position: top center !important;
  background-size: 130% !important;
  background-repeat: no-repeat !important;
}
.project-tem {
  margin-bottom: 60px;
}
.project-tem .info {
  margin-top: 12px;
}
.col-2-works {
  margin-top: 120px;
}
.parallax-works-grid {
  margin-top: 60px;
}
.parallax-works-grid .col-md-6:nth-child(1) {
  padding-left: 24px;
  padding-right: 72px;
}
.parallax-works-grid .col-md-6:nth-child(2) {
  padding-right: 24px;
  padding-left: 72px;

}
/* Clients Section */
.clients {
  position: relative;
  border-top: 1px solid #cecece;
  padding: 72px 0;
  background-color: #fbfbfb;
}
.clients-container {
  overflow: hidden;
}
/* Tagline Section */
.plx-tagline .container {
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plx-tagline .main-title,
.plx-tagline .sub-title {
  color: #fff;
}
.plx-tagline .main-title {
  text-transform: unset;
}
.plx-tagline h4 {
  font-weight: 200;
  color: #fff;
  margin-bottom: 24px;
}
.plx-tagline {
  position: relative;
  overflow: hidden;
  z-index: 0;
}


.parallax-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: -1px;
  background-position: top !important;
  background-size: cover !important;
  transition-duration: 0.1s;
  will-change: contents;
  z-index: -2;
}

.swiftie {
  width: 100%;
  height: auto;
  display: block;
}



/* ---------------------- */
/* verstecken parallax 01 */
/* ---------------------- */


.hero {
  position: relative;
  width: 100%;
    height: 100;
  overflow: hidden;
    border-radius: 20px;
}


.auge {
  background-image: url('../img/bg-11.webp'); /* Desktop Bild */
  background-size: cover;
  background-position: center top;
  background-attachment: fixed; /* PARALLAX */
  width: 100%;
  height: 500px; 
}

/* Text überlagert */
.hero-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.hero-text h2 {
  margin: 0;
  font-size: 3.6rem;
}

/* ---------------------- */
/* MOBILE */
/* ---------------------- */

@media (max-width: 600px) {

  .auge {
    background-image: url('../img/bg-11-mob.webp'); /* Mobile Bild */
    background-attachment: scroll;  /* Parallax deaktiviert */
    height: 300px;
  }

  .hero-text {
    position: static; /* kein Overlay */
    transform: none;
    padding: 1rem;
    text-align: left;
    color: #333;
    text-shadow: none;
  }

  .hero-text h2 {
    font-size: 1.7rem;
  }
}







.video-wrap {
  position: relative;
  width: 80%;
  aspect-ratio: 2 / 1; /* <-- für 1200x600 perfekt */
  overflow: hidden;
  background: #fcf7f3;
}


.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
}


/* Fallback-Image über dem Video, skaliert proportional */
.fallback-image {
  position: absolute;
  inset: 0;  
  object-fit: contain;     /* Logo skaliert und bleibt sichtbar komplett */
  object-position: center;
  display: block;          /* wird per JS ausgeblendet, wenn Video spielt */
  z-index: 2;
}













/* MOBILE: Videobreite 100%, NICHT ausschalten */
@media (max-width: 768px) {
  .video-wrapper {
    width: 100%;
  }
}



.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(600 / 2500 * 100%);
  overflow: hidden;

  border: 30px solid #1b6284; /* schwarzer Rahmen */
  box-sizing: border-box; /* sorgt dafür, dass der Rahmen die Größe nicht verzerrt */
}


/* ---------------------- */
/* vertrauen parallax 01 */
/* ---------------------- */




.hero-bg-01 {
  background-image: url('../img/bg-12.webp'); /* Desktop Bild */
  background-size: cover;
  background-position: center top;
  background-attachment: fixed; /* PARALLAX */
  width: 100%;
  height: 500px; 
}



/* ---------------------- */
/* MOBILE */
/* ---------------------- */

@media (max-width: 600px) {

  .hero-bg-01 {
    background-image: url('../img/bg-12-mobile.webp'); /* Mobile Bild */
    background-attachment: scroll;  /* Parallax deaktiviert */
    height: 300px;
  
  }
}






.hero-bg-04 {
  background-image: url('../img/job.webp'); /* Desktop Bild */
  background-size: cover;
  background-position: center top;
  background-attachment: fixed; /* PARALLAX */
  width: 100%;
  height: 500px; 
}



/* ---------------------- */
/* MOBILE */
/* ---------------------- */

@media (max-width: 600px) {

  .hero-bg-04 {
    background-image: url('../img/job-mobile.webp'); /* Mobile Bild */
    background-attachment: scroll;  /* Parallax deaktiviert */
    height: 300px;
  
  }
}








.hero-bg-11-11 {
  background-image: url('../img/lp-zahn-javadinchen-01.webp'); /* Desktop Bild */
  background-size: cover;
  background-position: center top;
  background-attachment: fixed; /* PARALLAX */
  width: 100%;
  height: 500px; 
}



/* ---------------------- */
/* MOBILE */
/* ---------------------- */

@media (max-width: 600px) {

  .hero-bg-11-11 {
    background-image: url('../img/lp-zahn-javadinchen-01-mobile.webp'); /* Mobile Bild */
    background-attachment: scroll;  /* Parallax deaktiviert */
    height: 300px;
  
  }
}





.hero-bg-12 {
  background-image: url('../img/kids.webp'); /* Desktop Bild */
  background-size: cover;
  background-position: center top;
  background-attachment: fixed; /* PARALLAX */
  width: 99%;
  height: 500px; 
}



/* ---------------------- */
/* MOBILE */
/* ---------------------- */

@media (max-width: 600px) {

  .hero-bg-12 {
    background-image: url('../img/kids-mobile.webp'); /* Mobile Bild */
    background-attachment: scroll;  /* Parallax deaktiviert */
    height: 300px;
  
  }
}









.hero-bg-13 {
  background-image: url('../img/lp-zahn-javadinchen-02.webp'); /* Desktop Bild */
  background-size: cover;
  background-position: center top;
  background-attachment: fixed; /* PARALLAX */
  width: 100%;
  height: 500px; 
}



/* ---------------------- */
/* MOBILE */
/* ---------------------- */

@media (max-width: 600px) {

  .hero-bg-13 {
    background-image: url('../img/lp-zahn-javadinchen-02-mobile.webp'); /* Mobile Bild */
    background-attachment: scroll;  /* Parallax deaktiviert */
    height: 300px;
  
  }
}











.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(600 / 2500 * 100%);
  overflow: hidden;

  border: 30px solid #1b6284; /* schwarzer Rahmen */
  box-sizing: border-box; /* sorgt dafür, dass der Rahmen die Größe nicht verzerrt */
}


.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}






/* Footer */
.footer {
  position: relative;
  background-color: #1b6385;
  border-top: 0px solid #cecece;
  padding-top: 72px;
  z-index: 0;
}
.footer-menu a {
  position: relative;
  color: #1f2022;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  text-decoration: none;
}
.footer-menu a:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1f2022;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition-duration: 0.3s;
}
.footer-menu a:hover:before {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.footer-logo img {
  width: 50px;
}
.contacts-info span {
  display: block;
  font-weight: 300;
}

.contacts-info span {
    color: #9ec3d7 !important;
}

/* -----------------------------------------------------
   MOBILE FOOTER OPTIMIERUNG (bis 767px)
------------------------------------------------------ */
@media (max-width: 767px) {

  /* gesamte Spalten untereinander */
  .footer .row > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center;
    margin-bottom: 35px;
  }

  /* Footer Hintergrund 146b8c */
  .footer {
    padding-top: 50px;
    padding-bottom: 20px;
    background: #1b6284; 
  }

  /* Titel */
  .footer h5.sub-title-footer {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Text */
  .footer span,
  .footer a {
    font-size: 15px;
    color: #ddd;
  }

  /* Abstand zwischen den Elementen */
  .footer span {
    display: block;
    margin-bottom: 6px;
  }

  .footer a {
    display: inline-block;
    padding: 4px 0;
  }

  /* horizontale Trennlinien für klare Struktur */
  .footer .row > div:not(:first-child) {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Footer Logo */
  .footer .footer-logo img {
    width: 60px;
    margin-bottom: 20px;
  }

  /* Copyright */
  .copyright p {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #fff;
    margin-top: 10px;
  }
}


/* -----------------------------------------------------
   MOBILE FOOTER OPTIMIERUNG (bis 767px)
------------------------------------------------------ */

.copyright {
  text-align: center;
  border-top: 1px solid #cecece;
  font-size: 11px;
  margin-top: 72px;
  padding: 12px 0;
  letter-spacing: 1px;
  background-color: #a0c6d9; 
}
/* Background Text */
.bg-text-header {
  padding-bottom: 72px;
  height: unset;
}
.bg-text-header .container {
  height: unset;
}
.bg-text {
  font-family: 'Oswald', sans-serif;
  line-height: 1;
  font-size: 35vw;
  text-align: center;
  color: #1b6385;
  font-weight: 600;
  letter-spacing: -5px;
}
.bg-text .char {
  transform: translateX(270px);
}
/* Animation text */
.anim-txt {
  perspective: 500px;
}
.anim-txt .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(-80deg);
  transform-origin: center top;
  transform-style: preserve-3d;
}
.wrap-word {
  overflow: hidden;
  display: inline-block;
}
.el {
  display: inline-block;
  transform-origin: left;
}
/* About Us Page */
.title-page-name {
  font-size: 10vw;
  line-height: 1;
}
.section-our-mission h3 {
  text-transform: uppercase;
  font-weight: 200;
  color: #fff;
}
.team-section-wrap .list-section {
  margin-top: 54px;
}
.list-section .list-section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.list-section .data-img {
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}


.data-game {
  width: 100%;
  max-width: 822px;
  height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  display: block; /* wichtig für mobile Safari */
}

@media (max-width: 900px) {
  .data-game {
    width: 100%;
    max-width: 100%;
  }
}














.list-section .row:nth-child(odd) .data-img {
  border-top-left-radius: 100px;
}
.list-section .row:nth-child(even) {
  text-align: right;
}
.list-section .row:nth-child(even) .social-icon {
  justify-content: flex-end;
}
.list-section .row:nth-child(even) .social-icon .s-link {
  margin-right: unset;
  margin-left: 12px;
}
.list-section .row:nth-child(even) .data-img {
  border-top-right-radius: 100px;
}
.list-section .sub-title-2 {
  font-weight: 900;
  margin-bottom: 0;
}
.list-section h6 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 300;
  margin-bottom: 14px;
}
.list-section .social-icon {
  margin-top: 56px;
  display: flex;
  text-align: left;
}
.list-section .social-icon .s-link {
  margin-right: 12px;
}
/* About Me */
.about-me-content {
  margin-top: 54px;
}
.about-me-content .data-img {
  width: 100%;
  height: 400px;
  border-radius: 2px;
  border-top-left-radius: 200px;
  background-position: center;
  background-size: cover;
}
.about-me-content .button {
  margin-top: 36px;
}
.expertise-content {
  margin-top: 54px;
}
.expertise-content .h3 {
  margin-bottom: 0;
  line-height: 1;
}
/* Services Page */
.services-section-wrap .list-section .data-img {
  background-size: 90%;
  background-repeat: no-repeat;
  border-radius: unset;
  border-top-left-radius: unset !important;
  border-top-right-radius: unset !important;
}
/* Pricing Plan Page */
.price-text h4 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 0px;
  font-weight: 300;
}
.price-text h4 span {
  display: inline-block;
}
.price-text h3 {
  text-transform: uppercase;
  font-weight: 900;
}
.list-services li {
  display: flex;
  align-items: center;
  font-size: 24px;
  line-height: 28px;
  font-weight: 800;
  text-transform: uppercase;
}
.list-services li span {
  margin-right: 6px;
}
.check-icon {
  display: inline-block;
  background-image: url('../icons/checkmark-circle-outline.svg');
  width: 20px;
  height: 20px;
}
.check-icon {
  display: inline-block;
  background-image: url('../icons/checkmark-circle-outline.svg');
  width: 20px;
  height: 20px;
}
.no-check-icon {
  display: inline-block;
  background-image: url('../icons/ellipse-outline.svg');
  width: 20px;
  height: 20px;
}
.price-item {
  display: flex;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #0000002d;
}
.default-plx h2 {
  color: #fff;
  text-transform: uppercase;
}
/* Page 404 */
.search-page {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.search-page .title-page-name {
  font-size: 200px;
  font-weight: 900;
  line-height: 1;
}
.search-page .title-page-name:before {
  content: '404';
  position: absolute;
  color: #1f2022;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1f2022;
  margin-left: 10px;
}
.wrap-search-content {
  width: 50%;
  text-align: center;
}
.wrap-search-content .header-content {
  height: unset;
  display: unset;
  justify-content: unset;
  flex-direction: unset;
}
.wrap-search-content .button {
  margin-top: 28px;
}
/* Portfolio Filter */
.item {
  width: 33.3333%;
  padding: 9px !important;
}
.filter-btn {
  margin-bottom: 26px;
  box-shadow: none !important;
}
#filter {
  text-align: center;
  padding-bottom: 26px;
}
#filter li {
  display: inline-block;
}
#filter a {
  position: relative;
  display: inline-block;
  margin: 0 7px;
  font-size: 12px;
  text-transform: uppercase;
  color: #1f2022;
  text-decoration: unset;
  letter-spacing: 0.1em;
  transition-duration: 0.5s;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}
#filter a:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1f2022;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  transform: translateY(-10px);
  transition-duration: 0.3s;
}
#filter a:hover:before {
  opacity: 1;
  transform: translateY(0px);
}
a.active-filter:before {
  transform: translateY(0px) !important;
  opacity: 1 !important;
}
/* 1 Columns */
.item.column-1 {
  width: 100%;
  padding: 9px !important;
}
/* 2 Columns */
.item.column-2 {
  width: 50%;
  padding: 9px !important;
}
/* 3 Columns(defolt) */
.item {
  position: relative;
  width: 33.3333%;
  padding: 9px !important;
  overflow: hidden;
}
/* 4 Columns */
.item.column-4 {
  width: 25%;
  padding: 9px !important;
}
/*  Info Section */
.info {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  padding: 24px;
  background-color: rgba(25, 28, 31, 0.5);
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.info h6 {
  color: #fff;
  position: absolute;
  bottom: 13px;
  left: 0;
  right: 0;
  text-transform: uppercase;
  letter-spacing: 0.6em;
  font-size: 12px;
  font-weight: 300;
  transition-duration: 0.7s;
}
.info:before {
  content: "";
  width: 52px;
  height: 1px;
  position: absolute;
  background-color: #fff;
  transform: translateX(-200px);
  transition-duration: 0.4s;
}
.info:after {
  content: "";
  width: 1px;
  height: 52px;
  position: absolute;
  background-color: #fff;
  transform: translateY(-200px);
  transition-duration: 0.4s;
}
.item:hover .info:before {
  transition-timing-function: ease-out;
  transform: translateX(0px);
}
.item:hover .info:after {
  transition-timing-function: ease-out;
  transform: translateY(0px);
}
.wrap-item {
  position: relative;
  overflow: hidden;
}
.image-link-home {
  width: 100%;
  position: relative;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 2px;
}
.image-link-home .img {
  overflow: hidden;
  cursor: pointer;
}
.image-link-home .img div,
.image-link-home .img img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.item:hover .info {
  opacity: 1;
}
.item:hover .info h6 {
  letter-spacing: 0.2em;
}
.item:hover .img > div,
.item:hover .img > img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.mfp-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
/* Portfolio Stack */
.stack-section {
  position: relative;
}
.stack-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  transition-duration: 0.05s;
  will-change: contents;
}
.stack-item .main-title,
.stack-item p {
  color: #fff;
}
.stack-item p {
  font-weight: 200;
}
.stack-item-info {
  position: relative;
  margin-bottom: 48px;
  z-index: 1;
}
.stack-item-info .button-link {
  margin-top: 14px;
}
.stack-item:after {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(0deg, rgba(1, 1, 15, 0.5) 0%, rgba(0, 0, 0, 0.3) 15%, rgba(255, 255, 255, 0) 50%);
  z-index: 0;
}
/* Portfolio List */
.list-portfolio {
  margin-top: 224px;
  text-decoration: none;
  color: #1f2022;
}
.list-portfolio-item {
  width: 100%;
  margin-bottom: 150px;
  display: inline-block;

}
.list-portfolio-item p {
  width: 80%;
}
.list-portfolio-item a {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 400px;
  clip-path: inset(0 0 0 0);
  transition-duration: 0.4s;
  border-radius: 2px;
}
.list-portfolio-item a:hover {
  clip-path: inset(10px 10px 10px 10px);
}
.list-item-img {
  background-position: center;
  background-size: cover;
  background-repeat: none;
    border-radius: 20px;
  width: 100%;
  height: 100%;
  transform: scale(3);
}
.list-portfolio a:hover {
  cursor: url('../icons/cursor_view_project.svg') 40 40, pointer !important;
}
.list-item-desc {
  display: block;
  margin-top: 14px;
  margin-left: 8px;
  opacity: 0;
  transform: translateY(100%);
}

.list-item-desde {
  width: 100%;
  max-width: 100%;
  display: block;   /* wichtig, block füllt die Breite aus */
}

.list-item-desde > div {
  width: 100%;
  max-width: 100%;
  display: block;
}


.list-portfolio-item,
.list-item-desde,
.list-item-desde > div {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
}



.list-item-desc {
  width: 100%;
  max-width: 100%;
}
.list-item-desc .number {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  margin-right: 28px;
  background-color: #fbfbfb;
  font-weight: 400;
}
.list-item-desc h4 {
  font-weight: 900;
}
.prlx-item {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.prlx-item .data-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: -1px;
  background-position: top !important;
  background-size: cover !important;
  transition-duration: 0.1s;
  will-change: contents;
  height: 145%;
  z-index: -2;
}
.prlx-item-info {
  color: #fff;
  position: absolute;
  bottom: 48px;
  z-index: 1;
  width: 50%;
}
.prlx-item-info p {
  font-weight: 200;
}
.prlx-item-info .button-link {
  margin-top: 14px;
}
/*Portfolio Standart 2-columns*/
.portfolio-2-col .image-link-home .img {
  display: flex;
  height: 600px;
  align-items: center;
  border-radius: 2px;
}
.portfolio-2-col a {
  text-decoration: none;
}
.portfolio-2-col .item.column-2 {
  padding: 7px 28px !important;
}
.project-info {
  text-align: center;
}
.project-info .sub-title-2 {
  margin-top: 7px;
  color: #1f2022;
}
/*Portfolio Standart 3-columns*/
.portfolio-3-col .image-link-home .img {
  display: flex;
  align-items: center;
  border-radius: 2px;
}
.portfolio-3-col a {
  text-decoration: none;
}
.portfolio-3-col .item.column-3 {
  padding: 7px 28px !important;
}
.project-info {
  text-align: center;
}
.project-info .sub-title-2 {
  margin-top: 7px;
  color: #1f2022;
}
/* Single Project Page */
.contact-info h3,
.single-project-info h3 {
  margin-bottom: 14px;
}
.contact-info span,
.single-project-info span {
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 7px;
}
.contact-info p,
.single-project-info p {
  line-height: 22px;
}
.single-project-img {
  margin-top: 56px;
}
.single-project-img div:nth-child(3n) {
  margin-top: 28px;
}
.other-posts-content {
  margin-top: 56px;
}
.other-posts-content .post-link {
  text-decoration: none;
  text-align: center;
}
.other-posts-content .post-link h6 {
  color: #1f2022;
  position: relative;
  width: 100%;
  bottom: -307px;
}
.other-post-img {
  background-position: center;
  background-size: cover;
  height: 300px;
  width: 300px;
  border-radius: 2px;
}
.other-posts-content div:nth-child(2n) .post-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.other-posts-content div:nth-child(3n) .post-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.other-projects-section {
  border-top: 1px solid #cecece;
}
/* Blog Page */
.latest-post {
  margin-bottom: 56px;
}
.latest-post-text h3 {
  color: #1f2022;
    text-align: left;
  margin-top: 14px;
  margin-bottom: 25px;
}
.latest-post-text a {
  text-decoration: none;
}
.latest-post-text .button-link {
  margin-top: 14px;
}
.blog-sidebar .search-block {
  margin-top: 24px;
}
.blog-sidebar h5 {
  margin-top: 14px;
}
.blog-sidebar a {
  color: #1f2022;
}
.arrows-obj {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
nav.navigation.pagination {
  display: inline-block;
  width: 100%;
}
.nav-links {
  width: 100%;
  display: inline-block;
  text-align: center;
}
.arrows-obj span {
  color: #1f2022;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.4em;
  font-size: 18px;
  transition-duration: 0.5s;
}
span.page-numbers.current {
  position: relative;
}
a.next.page-numbers {
  float: right;
}
a.prev.page-numbers {
  float: left;
}
span.page-numbers.current .v-pagination {
  color: #1f2022;
  font-weight: 600;
}
.nav-links .v-pagination {
  position: relative;
  font-size: 16px;
  display: inline-block;
  padding: 12px 6px;
  margin-top: 4px;
}
.arrows-obj .arrow-right {
  position: relative;
  transition-duration: 0.5s;
}
.arrow-left,
.arrow-right {
  width: 56px;
}
.sidebar-tags li {               /* bubbles */
  display: inline-block;
  padding: 20px 50px;
    margin: 20px 20px 0px 20px;
    border-radius: 50px;
  border: 1px solid #1b6385;
  transition-duration: 0.5s;
}
.tags a {
  text-decoration: none;
  font-weight: 400;
}
.sidebar-tags li:hover {
  background-color: #1b6385;
}
.sidebar-tags li:hover a {
  color: #fff;
}

/* Blasen-Text 20px und dünner */
.node-hover {
    font-size: 18px !important;
    font-weight: 300 !important; /* dünner */
    display: block;
    text-align: center;
}






/* Single Post Page */
.single-post-text-header .main-title {
  line-height: 0.8;
}
blockquote {
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 14px;
}
blockquote p {
  font-weight: 600;
  font-style: italic;
}
/* Contact Page */
.form-group {
  margin-bottom: 14px;
}
#contactForm {
  margin-top: 56px;
}
#map {
  height: 100%;
}
/* Media Queries For Responsive Design */
@media (max-width: 991.98px) {
  h2 {
    font-size: 36px;
  }
  .slider-text {
    width: 100%;
  }
  .slider-v2 h3 {
    font-size: 21px;
  }
  .carousel-slider-container .swiper-slide .wrap-slider-content {
    width: 95%;
  }
  .slider-why-choose-us .wrap-slider-content .why-choose-us-wrap-img {
    padding: 0 6px;
  }
  .parallax-works-grid .col-md-6:nth-child(1) {
    padding-right: 30px;
  }
  .parallax-works-grid .col-md-6:nth-child(2) {
    padding-left: 30px;
  }
  .project-img > .img > div {
    height: 130%;
    background-size: 130% !important;
  }
  .project-img .img {
    height: 450px;
  }
  .portfolio-2-col .image-link-home .img {
    height: 400px;
  }
  .portfolio-3-col .item.column-3 {
    padding: 3px 14px !important;
  }
  .other-post-img {
    width: 200px;
    height: 200px;
  }
  .other-posts-content .post-link h6 {
    bottom: -207px;
  }
}
@media (max-width: 767.98px) {
  .menu > .menu-item-has-children > .sub-menu {
    padding-top: 0;
    background-color: #1f2022;
    border: unset;
      
      
      
      
      
      
      
      
      
  }
  .menu > .menu-item-has-children:before {
    top: -8px;
    position: relative;
  }
  .hamburger {
    display: flex;
  }
  .home-menu-text {
    position: relative;
  }
  .home-menu-text .menu {
    flex-direction: column;
    position: absolute;
    height: 100vh;
    transform: translateY(-100%);
    transition-duration: 0.3s;
  }
  .home-menu-text .menu.seen {
    background-color: #1f2022;
  }
  .menu {
    text-align: center;
  }
  .menu-item-has-children .sub-menu {
    position: relative;
  }
  .menu > li > a {
    font-size: 13px;
    line-height: 32px;
  }
  .sub-menu li a {
    font-size: 10px;
    color: #b7b7b7;
    font-weight: 300;
  }
  .sub-menu .menu-item-has-children .sub-menu {
    margin-left: 24px;
  }
  .home-menu-text .menu-item {
    display: block;
  }
  .menu-item:hover ul.sub-menu {
    display: none;
  }
  .header-white .headroom--not-top .menu > .menu-item > a {
    color: #fff;
  }
  .header-white .headroom--not-top .menu > .menu-item:before {
    filter: unset;
  }
    
    
    @media (max-width: 767.98px) {
  .menu > li > a,
  .menu a {
    font-size: 15px !important;
    line-height: 20px !important;
  }
}
    
    
    
    
    
    
    
    
    
  .slider-content h1 {
    font-size: 60px;
  }
  .slider-why-choose-us .counter {
    top: 36px;
  }
  .carousel-slider-container .counter,
  .carousel-slider .social-icon,
  .centered-slider .social-icon {
    bottom: 6px;
  }
  .carousel-slider-container .swiper-slide .wrap-slider-content h6 {
    font-size: 11px;
  }
  .carousel-slider-container .swiper-slide .wrap-slider-content h5 {
    font-size: 14px;
  }
  .project-img .img {
    height: 330px;
  }
  .parallax-works-grid .col-md-6:nth-child(1) {
    padding-right: 15px;
    padding-left: 12px;
  }
  .parallax-works-grid .col-md-6:nth-child(2) {
    padding-left: 15px;
    padding-right: 12px;
  }
  .header-img {
    height: 100%;
    width: 100%;
    border-radius: unset;
    top: 0;
  }
  .header-page-img .header-content {
    color: #fff;
  }
  .header-page-img {
    position: relative;
  }
  .header-page-img .main-title {
    font-size: 60px;
  }
  .header-page-img:after {
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
    opacity: 0.3;
    z-index: -1;
  }
  .title-page-name {
    font-size: 12vw;
    line-height: 70px;
  }
  .team-section-wrap .list-section .sub-title-2 {
    margin-top: 14px;
  }
  .list-section .row:nth-child(odd) .data-img {
    border-top-left-radius: 2px;
  }
  .list-section .row:nth-child(even) {
    text-align: left;
  }
  .list-section .row:nth-child(even) .social-icon {
    justify-content: flex-start;
  }
  .list-section .row:nth-child(even) .social-icon .s-link {
    margin-right: 12px;
    margin-left: unset;
  }
  .list-section .row:nth-child(even) .data-img {
    border-top-right-radius: 2px;
  }
  .list-section .social-icon {
    margin-top: 28px;
  }
  .list-section .row:nth-child(n+2) {
    margin-top: 48px;
  }
  .about-me-content .data-img {
    margin-bottom: 14px;
  }
  .services-section-wrap .list-section .data-img {
    left: 0;
    right: 0;
    margin: auto;
    width: 300px;
    height: 300px;
    background-position: center;
    background-size: cover;
    text-align: center;
  }
  .services-section-wrap .list-section-text {
    text-align: center;
  }
  .services-section-wrap .list-section-text .sub-title-2 {
    margin-top: 14px;
    margin-bottom: 14px;
  }
  .price-item div:nth-child(2) {
    margin-top: 14px;
  }
  .price-item div:nth-child(3) {
    margin-top: 28px;
  }
  .price-item div {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .price-item p {
    width: 70%;
  }
  .wrap-search-content {
    width: 80%;
  }
  .wrap-grid-portfolio .item {
    width: 50%;
  }
  .list-portfolio-item {
    margin-bottom: 112px;

  }
  .list-portfolio-item a {
    height: 300px;
  }
  .prlx-item-info {
    width: 60%;
  }
  .portfolio-2-col .image-link-home .img {
    height: 300px;
  }
  .other-post-img {
    width: 300px;
    height: 300px;
  }
  .other-posts-content .post-link {
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center !important;
  }
  .other-posts-content .post-link h6 {
    bottom: -307px;
  }
  .single-project-img div:nth-child(2n) {
    margin-top: 28px;
  }
  #map {
    margin-top: 56px;
    height: 400px;
  }
}
@media (max-width: 575.98px) {
  h2 {
    font-size: 21px;
  }
  h4 {
    font-size: 18px;
  }
  .parallax-slider .counter,
  .carousel-slider-container .counter,
  .slider-v2 .counter {
    display: none;
  }
  .slider-why-choose-us .wrap-slider-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    text-align: center;
  }
  .slider-why-choose-us .wrap-slider-content .why-choose-us-text {
    width: 100%;
    color: #fff;
  }
  .slider-why-choose-us .wrap-slider-content .why-choose-us-text p {
    padding: 0 15px;
  }
  .slider-why-choose-us .counter {
    color: #fff;
    width: 100%;
    top: 74px;
  }
  .slider-why-choose-us .wrap-swiper-icon-button {
    width: 100%;
    justify-content: center;
    top: -24px;
  }
  .slider-why-choose-us .wrap-slider-content .why-choose-us-wrap-img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    padding: unset;
  }
  .slider-why-choose-us .wrap-slider-content .why-choose-us-wrap-img figure {
    border-radius: unset;
  }
  .slider-why-choose-us .swiper-button-prev,
  .slider-why-choose-us .swiper-button-next {
    filter: invert(1);
  }
  .why-choose-us-wrap-img:before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 1;
  }
  .project-img .img {
    height: 600px;
  }
  .col-2-works {
    margin-top: 0;
  }
  a.footer-logo {
    margin-bottom: 48px;
    text-align: center;
    width: 100%;
    display: block;
  }
  .plx-tagline .main-title {
    font-size: 36px;
  }
  .title-page-name {
    font-size: 14vw;
  }
  .section-our-mission h3 {
    font-size: 21px;
  }
  .list-section .social-icon {
    margin-top: 14px;
  }
  .expertise-content .number,
  .expertise-content .h3 {
    font-size: 18px;
  }
  .search-page .title-page-name {
    font-size: 120px;
  }
  .prlx-item-info {
    width: 90%;
  }
  .portfolio-3-col .item.column-3,
  .portfolio-2-col .item.column-2 {
    width: 100%;
  }
  .portfolio-2-col .image-link-home .img {
    height: 100%;
  }
}
@media (max-width : 307px ){
  .project-img .img {
    height: 500px;
  }
  .services-section-wrap .list-section .data-img {
    width: 250px;
    height: 250px;
  }
}


@media (max-width: 600px) {

  .header-white .headroom--top {
    background-color: rgba(0,0,0,0.2) !important;
      backdrop-filter: blur(6px);     /* Weiche Glas-Optik (optional, wirkt sehr edel) */
  }

}

@media (max-width: 600px) {
  .page-navigation a {
    color: #fff !important;
  }
}



@media (min-width: 601px) {
  .header-white .headroom--top,
  .header-white .headroom--not-top,
  .page-navigation {
    background-color: rgba(255,255,255,0.3) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    backdrop-filter: blur(6px) !important;
  }
}







/* Footer-Hover-Linien komplett entfernen */
.footer .link-hover {
  border: none !important;
  text-decoration: none !important;
}

.footer .link-text span {
  border-bottom: none !important;
  text-decoration: none !important;
}

/* Optional: Sicherheit, falls ein Pseudoelement benutzt wird */
.footer .link-text::after,
.footer .link-text::before {
  display: none !important;
}
