/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Roboto", sans-serif;
  color: #444444;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader – Best Practice
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(0,50,100,1), rgba(0,100,200,1));
}

#preloader:before {
  content: "";
  display: inline-block;
  width: 64px;
  height: 64px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: animate-preloader 1s ease-in-out infinite;
}

/*#preloader:before {
  content: url('static/assets/img/logo.svg');
  width: auto;
  height: auto;
}*/

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}
#header.header-scrolled, #header.header-inner-pages {
  /*background: rgba(40, 58, 90, 0.9);*/
 background: rgba(0, 75, 150, 1); /* Mischung aus den beiden Farben */
}

#header .logo {
  font-size: 30px;
  width: 120px; /* Reduzierte Breite des Logos */
  /*height: 150px;*/
  margin: 0;
  padding: 0;
  line-height: 0.8; /* Verringerte Zeilenhöhe */
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 66px;
}

/*--------------------------------------------------------------
# Windows und Mac Os im header
--------------------------------------------------------------*/
.compatibility-icons {
    padding: 20px 0;
}

.platform-icon {
    transition: transform 0.3s ease;
    padding: 15px;
}

.platform-icon:hover {
    transform: translateY(-5px);
}

.platform-icon i {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@media (max-width: 768px) {
    .platform-icon i {
        font-size: 2.5rem !important;
    }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #47b2e4;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #47b2e4;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/* Stil für ausgewählte Sprachauswahl-Links */
.navbar .selected {
  color: #47b2e4;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #47b2e4;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  /*color: #FF5A00;*/
  color: #37517e;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #47b2e4;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
   Hero Section
--------------------------------------------------------------*/
#hero{min-height:100vh;background:linear-gradient(to bottom,rgba(0,50,100,1),rgba(0,100,200,1));overflow:hidden;position:relative;}

.hero-container{padding-left:60px;padding-right:15px;}@media(max-width:991px){.hero-container{padding-left:30px;}}
.text-col{color:#fff;}

/* Wrapper verhindert Layout‑Sprünge */
.dynamic-wrapper{position:relative;display:inline-block;font-size:2rem;line-height:1.35;}
.dynamic-placeholder{visibility:hidden;white-space:normal;word-break:break-word;}
.dynamic-typed{position:absolute;top:0;left:0;white-space:normal;word-break:break-word;}
@media(max-width:575px){.dynamic-wrapper{font-size:1.5rem;}}

.lead{font-size:18px;line-height:1.6;max-width:42rem;}
.model-container img{max-width:85%;filter:drop-shadow(0 0 15px rgba(80,180,255,.7));}

.btn-watch-video,.btn-get-started{font-size:16px;padding:12px 28px;border-radius:50px;transition:.3s;}
.btn-watch-video{color:#fff!important;border:2px solid rgba(255,255,255,.4);} .btn-watch-video:hover{border-color:#47b2e4;}
.btn-get-started{background:#47b2e4;color:#fff!important;} .btn-get-started:hover{background:#209dd8;}

@media(max-width:991px){#hero h1{font-size:2.2rem;}.text-col{text-align:center;margin-bottom:40px;}.model-container img{max-width:70%;}}

/* Dezentes Pulse-Highlight für den Kickstarter-Button */
.ks-pulse{
  position:relative;
  box-shadow:0 0 0 0 rgba(71,178,228,.55);
  animation:ksPulse 1.8s ease-out infinite;
}
@keyframes ksPulse{
  0%{   box-shadow:0 0 0 0 rgba(71,178,228,.55); }
  100%{ box-shadow:0 0 0 18px rgba(71,178,228,0); }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
#cliens .icon-box{
  width:80px;               /* Kachelgröße */
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
}

#cliens .icon-style{
  font-size:48px;           /* Font-Icons */
  line-height:1;
}

/* Bild-Icons exakt an Font-Icons angleichen */
#cliens img.icon-style{
  width:48px;
  height:auto;
  filter:none;              /* kein Graustufen */
}

/* Hover komplett neutralisieren */
#cliens .icon-style,
#cliens img.icon-style{
  transition:none;
}
#cliens img.icon-style:hover,
#cliens .icon-style:hover{
  filter:none;
  transform:none;
}

/* Alte Regeln aus Template überschreiben */
.cliens img{max-width:none; padding:0; filter:none; transition:none;}
.cliens img:hover{filter:none; transform:none;}

/*-------------------------------------------------------------
# Oasno Cookie Banner Custom
--------------------------------------------------------------*/

#cc--main {
  --cc-bg        : #002d70;
  --cc-btn-bg    : #47b2e4;
  --cc-text      : #ffffff;
  --cc-btn-hover : #5fc0ef;
}

.cc_box, .cc_dialog {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

/* Button-Tweaks */
#cc--main .cc_btn {
  border-radius: 8px;
  font-weight: 600;
  padding: .55rem 1.25rem;
}

/* Kleinere Smartphones */
@media (max-width: 480px){
  .cc_box { width: 92vw !important; }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  text-align: center;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center; /* Optional: For vertical centering */
}

/* Optional: If you want to remove default margin from ul */
.content ul {
  margin: 0;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}
.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}
.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.why-us .content p {
  font-size: 15px;
  color: #848484;
}
.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}
.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}
.why-us .accordion-list li + li {
  margin-top: 15px;
}
.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}
.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}
.why-us .accordion-list span {
  color: #47b2e4;
  font-weight: 600;
  font-size: 18px;
  /*padding-right: 10px;*/
}
.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.why-us .accordion-list .icon-show {
  display: none;
}
.why-us .accordion-list a.collapsed {
  color: #343a40;
}
.why-us .accordion-list a.collapsed:hover {
  color: #47b2e4;
}
.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}
.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #37517e;
  font-family: "Poppins", sans-serif;
}
.skills .content ul {
  list-style: none;
  padding: 0;
}
.skills .content ul li {
  padding-bottom: 10px;
}
.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #47b2e4;
}
.skills .content p:last-child {
  margin-bottom: 0;
}
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services – Flex‑Wrap / Grid Layout & Card Styles
--------------------------------------------------------------*/

/* 1 · Flex‑Container für Mobile + Tablet */
.services-grid{
  display:flex;
  flex-wrap:wrap;
  gap:2rem;                       /* Abstand horizontal/vertikal  */
  justify-content:center;         /* Restkarten mittig ausrichten */
}

/* 2 · Karten‑Breite (Default) */
.services-grid .icon-box{
  flex:1 1 260px;                 /* grow | shrink | basis        */
  max-width:320px;
}

/* 3 · Desktop‑Grid: exakt 3 Spalten */
@media (min-width:992px){         /* Bootstrap‑lg Breakpoint      */
  .services-grid{
    display:grid;                /* statt Flex */
    grid-template-columns:repeat(3,1fr);
  }
  .services-grid .icon-box{
    flex:unset;                  /* Flex‑Breite aufheben          */
    max-width:none;
  }
}

/* 4 · Card‑Design */
.services .icon-box{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
  padding:40px 28px;
  border-radius:1.25rem;
  background:#fff;
  box-shadow:0 8px 26px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
  overflow:hidden;               /* Platz für LiDAR‑Overlay       */
}
.services .icon-box:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 42px rgba(0,0,0,.12);
}

/* 5 · Icon‑Kachel */
.services .icon-box .icon{
  width:56px;height:56px;
  display:grid;place-items:center;
  border-radius:.75rem;
  background:#e8f4ff;
  margin-bottom:18px;
}
.services .icon-box .icon i{
  font-size:28px;
  color:#47b2e4;
}

/* 6 · Titel & Beschreibung */
.services .icon-box h4{
  font-size:1.15rem;
  font-weight:600;
  color:#37517e;
  margin-bottom:.75rem;
}
.services .icon-box p{
  font-size:.95rem;
  line-height:1.55;
  color:#4a4a4a;
  margin-bottom:0;
}

/* 7 · LiDAR‑Scan Overlay */
.scan-card.scan::after{
  content:'';
  position:absolute;
  left:0;
  top:-100%;
  width:100%;height:100%;
  background:linear-gradient(180deg,transparent 0%,
                             rgba(71,178,228,.35) 50%,
                             transparent 100%);
  animation:lidar-scan 1.1s ease-out forwards;
  pointer-events:none;
}
@keyframes lidar-scan{to{top:100%;}}

/* 8 · Mobile Fine‑tuning */
@media (max-width:575.98px){
  .services .icon-box{padding:32px 22px;}
  .services .icon-box h4{font-size:1.05rem;}
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}
@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}
@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #333; /* dunklerer Textfarbton für bessere Lesbarkeit */
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

/* --------------------------------------------------------------
   Portfolio-Filter Buttons: Active & Hover in Türkis
   -------------------------------------------------------------- */
#portfolio-flters .nav-link {
  background: transparent !important;
  color: #007bff !important;    /* Default-Text-Blau */
  border: none !important;
  box-shadow: none !important;
  transition: background-color .3s, color .3s;
  padding: 10px 26px !important; /* mehr Innenabstand */
  border-radius: 2rem !important; /* extra stark abgerundet */
}

/* Hover-Zustand (auch wenn nicht active) */
#portfolio-flters .nav-link:hover {
  background-color: #47b2e4 !important;
  color: #fff !important;
}

/* Active-Zustand */
#portfolio-flters .nav-link.active {
  background-color: #47b2e4 !important;
  color: #fff !important;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s;
  background: #fff; /* weißer Hintergrund */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* subtiler Schatten */
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
  position: relative;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  transition: all 0.3s;
  background: rgba(255, 140, 0, 0.9); /* lebendigerer Farbton */
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* subtiler Schatten */
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

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

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-item:hover .portfolio-info .details-link {
  right: 20px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 15px;
  font-size: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  transition: all 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ff8c00; /* lebendigerer Farbton */
}

/*--------------------------------------------------------------
# Anpassung Portfolio Herunterladen Button
--------------------------------------------------------------*/
#portfolio .btn-download {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 5px 0;
  color: #fff;
  background: #47b2e4;
}
#portfolio .btn-download:hover {
  background: #209dd8;
}

@media (max-width: 575px) {
  #portfolio .btn-download {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Umbruch auf kleine Bildschirme */
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

/* Stil für das Portfolio-Element */
.portfolio .portfolio-item {
  /* margin-bottom: 30px; */
  margin-bottom: 10px; /* Anpassung des Abstands nach oben */
  max-width: 100%; /* Den Inhalt auf die Bildschirmbreite begrenzen */
  overflow-x: auto; /* Horizontales Scrollen ermöglichen, falls notwendig */
}

/* Stil für die Tabellen innerhalb des Portfolio-Elements */
.portfolio .portfolio-item .table {
  font-size: 14px; /* Schriftgröße der Tabelle */
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}
.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Galerie – Inline Slider (nur Produkt)
--------------------------------------------------------------*/

:root {
  /* Min 400px, wächst bis max 720px – abhängig von Viewport-Höhe */
  --gallery-height: clamp(400px, 60vh, 720px);
}

.portfolio-panel {
  overflow: visible;
}

/* Carousel-Container */
#productGallery .carousel-item {
  background: #f8f9fa;
  border-radius: 0.5rem;
  height: var(--gallery-height);
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

#productGallery .carousel-item.active {
  opacity: 1 !important;
}

/* Bilder kleiner & proportional */
#productGallery .carousel-item img {
  max-width: 70%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Navigation */
#productGallery .carousel-control-prev,
#productGallery .carousel-control-next {
  width: 10%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 50;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
}

#productGallery .carousel-control-prev:hover,
#productGallery .carousel-control-next:hover {
  opacity: 1;
}

/* Pfeile dunkler */
#productGallery .carousel-control-prev-icon {
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23555' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L6.707 8l4.647 4.646a.5.5 0 0 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#productGallery .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23555' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l5 5a.5.5 0 0 1 0 .708l-5 5a.5.5 0 0 1-.708-.708L9.293 8 4.646 3.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Indikatoren */
#productGallery .carousel-indicators {
  bottom: 0 !important;
  margin-bottom: 0;
}

#productGallery .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  background-color: rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

#productGallery .carousel-indicators .active {
  background-color: #007bff !important;
  border-color: #007bff !important;
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Produktbeschreibung Container
--------------------------------------------------------------*/
.product-description {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;      /* dezenter Rahmen */
  border-radius: 0.5rem;           /* abgerundete Ecken */
  padding: 2rem;                   /* mehr Innenabstand */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin: 2rem 0;                  /* Abstand oben/unten */
}

/* Titel (z.B. "Produktbeschreibung") */
.product-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}
/* Farbiger Unterstrich als Akzent */
.product-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.25rem;
  background-color: #3b82f6;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Einleitungstext */
.product-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #334155;
  max-width: 800px;      /* angenehme Zeilenlänge */
  margin: 0 auto 2rem;   /* zentriert + Abstand unten */
  white-space: pre-line; /* erhält Zeilenumbrüche */
}

/* Feature-Listen (allgemein) */
.features-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

/* Einzelne Feature-Gruppen (Hauptmerkmale) */
.feature-group {
  margin-bottom: 1.5rem;
}
.feature-group > .feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e40af;
}

/* Punkte in den Gruppen */
.feature-point {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #475569;
}
.feature-point::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  color: #3b82f6;
}

/* API-Hinweis */
.product-api {
  font-style: italic;
  color: #6b7280;
  text-align: center;
  margin-top: 2rem;
}

/*--------------------------------------------------------------
# Accordion-Buttons CI-Gradient
--------------------------------------------------------------*/
/* Grundstil für alle Accordion-Buttons */
.accordion-button {
  font-weight: 500;
  font-size: 1rem;
  background: linear-gradient(
    to right,
    rgba(0, 50, 100, 1),
    rgba(0, 100, 200, 1)
  )!important;
  color: #fff!important;
  border: none;
  transition: opacity .3s ease;
  border-radius: 0.25rem;
}

/* Zusammengeschobener (collapsed) Zustand – etwas weniger Deckkraft */
.accordion-button.collapsed {
  opacity: 0.85;
}
/* Hover hellt die Deckkraft wieder auf */
.accordion-button.collapsed:hover,
.accordion-button:not(.collapsed):hover {
  opacity: 1;
}
/* Abschalten des Focus-Rings */
.accordion-button:focus {
  box-shadow: none;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}
.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}
.team .member .pic img {
  transition: ease-in-out 0.3s;
}
.team .member:hover {
  transform: translateY(-10px);
}
.team .member .member-info {
  padding-left: 30px;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}
.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}
.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}
.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}
.team .member .social a:hover {
  background: #47b2e4;
}
.team .member .social a:hover i {
  color: #fff;
}
.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}
.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}
.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}
.pricing h4 {
  font-size: 48px;
  color: #37517e;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}
.pricing h4 sup {
  font-size: 28px;
}
.pricing h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}
.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}
.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}
.pricing ul .na {
  color: #ccc;
}
.pricing ul .na i {
  color: #ccc;
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}
.pricing .buy-btn:hover {
  background: #47b2e4;
  color: #fff;
}
.pricing .featured {
  border-top-color: #47b2e4;
}
.pricing .featured .buy-btn {
  background: #47b2e4;
  color: #fff;
}
.pricing .featured .buy-btn:hover {
  background: #23a3df;
}
@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}
.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}
.contact .info .email p {
  padding-top: 5px;
}
.contact .info .social-links {
  padding-left: 60px;
}
/* Basis-Styles für alle Links */
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  margin-right: 10px;
}
/* Brand-Colors */
.contact .info .social-links a.x {       background: #1DA1F2; color: #fff; } /* X (ehemals Twitter-Blau) */
.contact .info .social-links a.youtube { background: #FF0000; color: #fff; } /* YouTube-Rot */
.contact .info .social-links a.github {  background: #333333; color: #fff; } /* GitHub-Dunkelgrau */
.contact .info .social-links a.pypi {    background: #3776AB; color: #fff; } /* PyPI/Python-Blau */

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
  transform: scale(1.1);
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form label {
  padding-bottom: 8px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #47b2e4;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #209dd8;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Google Maps
--------------------------------------------------------------*/
.responsive-map {
  position: relative;
  width: 100%;
  padding-bottom: 60%; /* Seitenverhältnis, z.B. 60% für 5:3 */
  border-radius: 12px;
  overflow: hidden;
  background: #e5e5e5;
}
.responsive-map iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: 0;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .responsive-map {
    padding-bottom: 75%; /* Mehr Höhe auf kleinen Geräten */
    border-radius: 8px;
  }
}
/*--------------------------------------------------------------
# Google reCaptcha
--------------------------------------------------------------*/
.g-recaptcha {
  margin-bottom: 20px;
  min-height: 80px;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #37517e;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #47b2e4;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}
#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}
#footer .copyright {
  float: left;
}
#footer .credits {
  float: right;
  font-size: 13px;
}
#footer .credits a {
  transition: 0.3s;
}
@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}

.icon3d:hover{
    color:black;
}

.iconeye:hover{
    color:orange;
}

.iconchip:hover{
    color:blue;
}

.iconwifi:hover{
    color:turquoise;
}

.iconcam:hover{
    color:purple;
}

.iconethe:hover{
    color:khaki;
}

#particles-js{
  position:fixed;
  inset:0;                 /* top/right/bottom/left in einem */
  width:100%;
  height:100%;
  z-index:0;               /* unter dem restlichen Inhalt */
  background:transparent;  /* Bild kannst du hier weiter pflegen */
  pointer-events:none;     /* >> fängt keine Klicks mehr ab << */
}

#overlay {
  position: relative;
  padding: 50px;
}

.katex .vlist>span{
    top: -2.9202em;
}

/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline .section-title {
  background: #dde5ee;
  padding: 20px 0;
  text-align: center;
}

.timeline ul {
  background: #dde5ee;
  padding: 50px 0;
}

.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: #fff;
}

.timeline ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
  z-index: 1;
}

.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 15px;
  background: #a9bfd6;
  border-radius: 10px;
}

.timeline ul li div::before {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}

.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #a9bfd6 transparent transparent;
}

.timeline ul li:nth-child(even) div {
  left: -439px;
}

.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #a9bfd6;
}

time {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}


/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline ul li::after {
  transition: background 0.5s ease-in-out;
}

.timeline ul li.in-view::after {
  background: #98b2cd;
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}

/* 1) Button “atmet” sanft */
@keyframes ks-pulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 rgba(71,178,228,0.5); }
  50%      { transform: scale(1.05); box-shadow: 0 0 18px rgba(71,178,228,0.6); }
}
.btn-watch-video.ks-pulse {
  animation: ks-pulse 2.2s ease-in-out infinite;
}

/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px;
  }
  .timeline ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/
  }
}

@media screen and (max-width: 600px) {
  .timeline ul li {
    margin-left: 20px;
  }
  .timeline ul li div {
    width: calc(100vw - 91px);
  }
  .timeline ul li:nth-child(even) div {
    left: 45px;
  }
  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #f45b69 transparent transparent;
  }
}


/* EXTRA/CLIP PATH STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline-clippy ul li::after {
  width: 40px;
  height: 40px;
  border-radius: 0;
}

.timeline-rhombus ul li::after {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-rhombus ul li div::before {
  bottom: 12px;
}

.timeline-star ul li::after {
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.timeline-heptagon ul li::after {
  clip-path: polygon(
    50% 0%,
    90% 20%,
    100% 60%,
    75% 100%,
    25% 100%,
    0% 60%,
    10% 20%
  );
}

.timeline-infinite ul li::after {
  animation: scaleAnimation 2s infinite;
}

@keyframes scaleAnimation {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.25);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

/* Fügt eine sanfte Übergangseffekt hinzu */
.dynamic-text-container {
    overflow: hidden;
    height: 50px; /* Adjust this height to fit your text */
}

.dynamic-text {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    animation: type 3s steps(30, end) infinite;
}

@keyframes type {
    from {
        width: 0;
    }
}

.video-wrapper {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}
