:root {
  --default-font: "Edu TAS Beginner", cursive, "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Lobster", sans-serif;
  --nav-font: "Lobster", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.header {
  width: 100%;
  z-index: 1030;
}

main{
  position: relative;
  z-index: 2;
}

.container-fluid {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  right: 20px;
}

.container-fluid img {
  margin-left: 40px;
}

.navmenu ul {
  padding-right: 20px;
}

.logo-img {
  height: 60px;
  width: auto;
}

@media (min-width: 1200px) {
  .nav-title {
    display: none;
  }

}

@media (min-width: 1020px) and (max-width: 1200px) {
  .logo-img {
    height: 50px;
  }

  .navmenu .nav-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    list-style: none;
    padding: 10px 0;
    background-color: transparent;
    z-index: 1010;
  }

  .navmenu ul li a {
    color: #c5a1a1 !important;
    text-decoration: none;
  }

  /* Abstand zwischen Überschrift und Links */
  .navmenu ul li+li {
    margin-top: 20px;
  }

  .mobile-nav-active .navmenu .nav-header {
    display: block;
    animation: fadeInDown 0.3s ease-in-out;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navmenu ul {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    margin-left: 77%;
    transform: translateX(-50%);
    width: 44%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .mobile-nav-toggle.bi-list {
    display: flex;
    font-size: 2.4rem;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 10%;
    right: 10px;
    z-index: 1100;
  }

  .mobile-nav-toggle.bi-x {
    display: none !important;
  }

  .dropdown ul {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
  }

  .dropdown ul li a {
    color: #fff;
    font-size: 16px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
  }

  .dropdown ul li a:hover {
    background-color: #f0f0f0;
    color: #000;
  }

}

@media (min-width: 768px) and (max-width: 1020px) {
  .logo-img {
    height: 50px;
  }

  .navmenu .nav-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    list-style: none;
    padding: 10px 0;
    background-color: transparent;
    z-index: 1010;
  }

  .navmenu ul li a {
    color: #c5a1a1 !important;
    text-decoration: none;
  }

  /* Abstand zwischen Überschrift und Links */
  .navmenu ul li+li {
    margin-top: 20px;
  }

  .mobile-nav-active .navmenu .nav-header {
    display: block;
    animation: fadeInDown 0.3s ease-in-out;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navmenu ul {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    margin-left: 77%;
    transform: translateX(-50%);
    width: 44%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .mobile-nav-toggle.bi-list {
    display: flex;
    font-size: 2.4rem;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 10%;
    right: 10px;
    z-index: 1100;
  }

  .mobile-nav-toggle.bi-x {
    display: none !important;
  }

  .dropdown ul {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
  }

  .dropdown ul li a {
    color: #fff;
    font-size: 16px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
  }

  .dropdown ul li a:hover {
    background-color: #f0f0f0;
    color: #000;
  }

}

.navmenu-close {
  left: -320px;
}

@media (max-width: 1024px) and (min-height: 600px) and (max-height: 600px) {

  .logo-img {
    height: 45px;
    margin-left: 10px;
  }

  .navmenu ul {
    width: 40%;
    left: 10vh;
  }

  .mobile-nav-toggle.bi-list {
    top: 15%;
    right: 15px;
    font-size: 2rem;
  } 

  .navmenu .nav-title {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}

@media (min-width: 540px) and (max-width: 768px) {
  .logo-img {
    height: 40px;
  }

  .navmenu .nav-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    list-style: none;
    padding: 10px 0;
    background-color: transparent;
    z-index: 1010;
  }

  .navmenu ul li a {
    color: #c5a1a1 !important;
    text-decoration: none;
  }

  /* Abstand zwischen Überschrift und Links */
  .navmenu ul li+li {
    margin-top: 20px;
  }

  .mobile-nav-active .navmenu .nav-header {
    display: block;
    animation: fadeInDown 0.3s ease-in-out;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navmenu ul {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    left: 40%;
    margin-left: 30vh;
    transform: translateX(-50%);
    width: 40%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .mobile-nav-toggle.bi-list {
    display: flex;
    font-size: 2.4rem;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1100;
  }

  .mobile-nav-toggle.bi-x {
    display: none !important;
  }

  .dropdown ul {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
  }

  .dropdown ul li a {
    color: #fff;
    font-size: 16px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
  }

  .dropdown ul li a:hover {
    background-color: #f0f0f0;
    color: #000;
  }
}

.navmenu-close {
  left: -320px;
}


@media (max-width: 539px) {

  .navmenu .nav-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    list-style: none;
    padding: 10px 0;
    background-color: transparent;
    z-index: 1010;
  }

  .navmenu ul li a {
    color: #c5a1a1 !important;
    text-decoration: none;
  }

  /* Abstand zwischen Überschrift und Links */
  .navmenu ul li+li {
    margin-top: 20px;
  }

  .mobile-nav-active .navmenu .nav-header {
    display: block;
    animation: fadeInDown 0.3s ease-in-out;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .container-fluid {
    padding: 0 5px;
  }


  .navmenu ul {
    display: none;
    flex-direction: column;
    background-color: black;
    position: fixed;
    top: 0;
    left: 80%;
    transform: translateX(-50%);
    width: 40%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .navmenu.active ul {
    display: flex;
  }

  .navmenu ul li {
    margin: 10px 0;
  }

  .mobile-nav-toggle {
    display: block;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1100;
  }

  .mobile-nav-toggle.bi-x {
    display: none !important;
  }

  .dropdown ul {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
  }

  .dropdown ul li a {
    color: #333;
    font-size: 16px;
    padding: 0px;
    text-align: center;
    text-decoration: none;
    display: block;
  }

  .dropdown ul li a:hover {
    background-color: #f0f0f0;
    color: #000;
  }

  .logo-img {
    height: 35px;
    margin-top: -2%;
    margin-right: 20%;
  }
}




/* Hero Section*/

.hero .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .hero {
    min-height: 50vh;
    background-size: contain;
  }

  .hero img {
    max-height: 50vh;
  }

  .hero .container {
    top: 45%;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.5rem;
  }

}

@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
    background-size: contain;
  }

  .hero img {
    max-height: 50vh;
  }

  .hero .container {
    top: 45%;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

}


@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
    background-size: cover;
  }
}

/*--------------------------------------------------------------
# Asche
--------------------------------------------------------------*/

#asche-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 9;
}

@media (max-width: 1024px) {
  #asche-svg {
    height: 50vh;
  }
}

@media (max-width: 480px) {
  #asche-svg {
    height: 50vh;
  }
}

/*--------------------------------------------------------------
# Naran
--------------------------------------------------------------*/
#rennen {
  top: 45vh;
  left: 48vh;
  position: absolute;
  z-index: 1000;
  width: 12.4vh;
  overflow: hidden;
}

#rennen img {
  height: 15vh;
}

#rennen img {
  position: relative;
}

#rennen {
  background-repeat: no-repeat;
  background-size: 117px auto;
  background-position: 0 0;
}

@media (max-width: 1024px) {
  #rennen {
    top: 20vh;
    left: 40vh;
    width: 10vh;
  }

  #rennen img {
    height: 12vh;
  }

  #rennen {
    background-size: 100px auto;
  }
}

@media (min-width: 376px) and (max-width: 540px) {
  #rennen {
    top: 20vh;
    left: 35vh;
    width: 8vh;
  }

  #rennen img {
    height: 10vh;
  }

  #rennen {
    background-size: 80px auto;
  }
}

@media (max-width: 376px) {
  #rennen {
    top: 20vh;
    left: 30vh;
    width: 8vh;
  }

  #rennen img {
    height: 10vh;
  }

  #rennen {
    background-size: 60px auto;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/


#preloader {
  --hue: 210;
  --size: 100px;
  --border: 10px;
  --speed: 1.5s;
  --blur: var(--border);
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background-color: #1a1a1a;
  accent-color: #00aaff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease-out;
}

.loader {
  width: var(--border);
  aspect-ratio: 1;
  background: white;
  border-radius: 50%;
  position: absolute;
  --y: calc((var(--size) * -0.5) + (var(--border) * 0.5));
  transform: rotate(0deg) translateY(var(--y));
  animation: spin var(--speed) infinite linear;
}

.loader::before {
  content: "";
  position: absolute;
  inset: calc(var(--border) * -0.5);
  border-radius: 50%;
  background: white;
  filter: blur(var(--blur));
  z-index: -1;
}

.loader::after {
  content: "";
  width: var(--size);
  aspect-ratio: 1;
  position: absolute;
  top: 0%;
  left: 50%;
  translate: -50% 0;
  background: conic-gradient(white,
      hsl(var(--hue), 100%, 70%),
      hsl(var(--hue), 100%, 10%),
      transparent 65%);
  border-radius: 50%;
  mask: radial-gradient(transparent calc(((var(--size) * 0.5) - var(--border)) - 1px),
      white calc((var(--size) * 0.5) - var(--border)));
}

@keyframes spin {
  to {
    transform: rotate(-360deg) translateY(var(--y));
  }
}


/*--------------------------------------------------------------
# features-section & Video
--------------------------------------------------------------*/

.about .content p {
  font-size: 20px;
  font-weight: 300;
}

.features .features-item h3 {
  font-size: 50px;
}

.features .features-item p {
  font-size: 20px;
  font-weight: 300;
}

.section-title h2 {
  font-size: 50px;
}

.section-title p {
  font-size: 20px;
  font-weight: 300;
}

@media (max-width: 1080px) {
  #videoPlayer {
    margin-bottom: 10px; 
  }

  .about {
    padding-top: -100%; 
  }
  
  .about .content {
    margin-top: -40%; 
  }

  .about .content h2 {
    font-size: 38px;
  }

  .about .content p {
    font-size: 28px; 
  }
}


@media (max-width: 1024px) and (min-height: 600px) {
  #videoPlayer {
    margin-bottom: 10px; 
  }

  .about {
    padding-top: 5%; 
  }
  
  .about .content {
    margin-top: 5%; 
  }

  .about .content h2 {
    font-size: 34px;
  }

  .about .content p {
    font-size: 26px; 
  }

}

@media (max-width: 768px) {
  #videoPlayer {
    margin-bottom: 10px; 
  }

  .about {
    padding-top: 5%; 
  }
  
  .about .content {
    margin-top: -50%; 
  }

  .about .content h2 {
    font-size: 24px;
  }

  .about .content p {
    font-size: 16px; 
  }
}


@media (max-width: 540px) {
  #videoPlayer {
    margin-bottom: 10px; 
  }

  .about {
    padding-top: 5%; 
  }
  
  .about .content {
    margin-top: -20%; 
  }

  .about .content h2 {
    font-size: 19px;
  }

  .about .content p {
    font-size: 16px; 
  }
}


.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 4.5rem;
  --bs-gutter-y: 0;
}


.video-preview {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  max-width: 720px;
}

.video-preview img {
  width: 100%;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  height: 10%;
  filter: grayscale(40%);
  animation: pulse 1.5s infinite ease-in-out;
}

.play-button:hover {
  filter: grayscale(0%);
  filter: drop-shadow(0px 0px 10px rgb(255, 179, 2));
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);

  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);

  }
}





/*--------------------------------------------------------------
# Start Button
--------------------------------------------------------------*/
svg.lava-Button {
  width: 200px;
  height: auto;
  top: 100%;
  left: 50%;
  cursor: pointer;
}

svg.lava-Button:hover {

  filter: drop-shadow(0px 0px 20px rgba(255, 207, 17, 0.906));

}

.text {
  transform: translateY(30px);
}

@media (max-width: 768px) {
  svg.lava-Button {
    width: 120px;
  }

  .text {
    transform: translateY(20px);
  }
}

@media (max-width: 480px) {
  svg.lava-Button {
    width: 120px;
  }

  .text {
    transform: translateY(15px);
  }
}


/*--------------------------------------------------------------
# Level Button
-------------------------------------------------------------*/

.Level {
  border: 0px !important;
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.1) !important;
}

.Level:hover {
  filter: drop-shadow(0px 0px 20px #631315ff);

}

.Level3-4 {
  border: 0px !important;
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.1) !important;
}

.Level3-4:hover {
  filter: drop-shadow(0px 0px 20px rgb(10, 61, 189));

}

.Level:active {
  transform: scale(0.8);

}

.Level5-6 {
  border: 0px !important;
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.1) !important;
}

.Level5-6:hover {
  filter: drop-shadow(0px 0px 20px rgb(188, 133, 179));

}



/*--------------------------------------------------------------
# carousel
--------------------------------------------------------------*/

.section-title h2 {
  font-size: 50px;
}

.section-title p {
  font-size: 20px;
  font-weight: 300;
}

.carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  perspective-origin: center center;
  position: relative;
  height: 350px;
}

.cell {
  position: absolute;
  width: 230px;
  height: 280px;
  transform-origin: center;
  transition: transform 1s ease-in-out, opacity 0.6s ease-in-out;
  pointer-events: none;
  object-fit: cover;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: none;
}

.cell.active {
  transform: translateZ(300px);
  opacity: 1;
  z-index: 1000;
  pointer-events: auto;
}

.card {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
  cursor: pointer;
  will-change: transform;
  pointer-events: auto;
  object-fit: contain;
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  overflow: hidden;
  pointer-events: auto;
}

.card-front img,
.card-back img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: auto;
  pointer-events: auto;
}

.card-back {
  backface-visibility: hidden;
  transform: rotateY(180deg);
}

.card-front {
  pointer-events: auto;
}

.card-back {
  pointer-events: none;
}

.card.flipped {
  transform: rotateY(180deg);
}

@media (min-width: 1080px) {

  .cell.previous {
    transform: rotateY(40deg) translateZ(200px) translateX(-180px);
    opacity: 0.7;
    z-index: 2;
  }
  
  .cell.next {
    transform: rotateY(-40deg) translateZ(200px) translateX(180px);
    opacity: 0.7;
    z-index: 2;
  }
  
  
  .cell:hover .card {
    transform: none;
  }
  
  .cell.active:hover .card {
    transform: rotateY(180deg);
    transition: transform 0.6s ease-in-out;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .carousel-container {
    height: 300px;
    perspective: 650px;
  }

  .cell {
    width: 120px;
    height: 170px;
    pointer-events: none;
  }

  .cell.active {
    pointer-events: auto;
    transform: translateZ(250px);
  }

  .card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    cursor: pointer;
    will-change: transform;
    pointer-events: auto;
  }

  .card.flipped {
    transform: rotateY(180deg);
  }
}



@media (max-width: 480px) {
  .section-title h2 {
    font-size: 30px;
  }

  .carousel-container {
    height: 300px;
    perspective: 950px;
  }

  .cell {
    width: 120px;
    height: 170px;
    pointer-events: none; 
  }

  .cell.active {
    pointer-events: auto;
    transform: translateZ(250px);
  }

  .card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    cursor: pointer;
    will-change: transform;
    pointer-events: auto; 
  }

  .card.flipped {
    transform: rotateY(180deg);
  }
}


/* Button Styling für Pfeile */
.arrow {
  left: 94px;
  cursor: pointer;
  height: 60px;
  position: absolute;
  top: 68%;
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.1s;
  width: 50px;
}

.arrow-top,
.arrow-bottom {
  background-color: #666;
  height: 4px;
  left: -5px;
  position: absolute;
  top: 50%;
  width: 100%;
}

.arrow-top:after,
.arrow-bottom:after {
  background-color: #fa1b1b;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.15s;
}

.arrow-top {
  transform: rotate(45deg);
  transform-origin: bottom right;
}

.arrow-top:after {
  left: 100%;
  right: 0;
  transition-delay: 0s;
}

.arrow-bottom {
  transform: rotate(-45deg);
  transform-origin: top right;
}

.arrow-bottom:after {
  left: 0;
  right: 100%;
  transition-delay: 0.15s;
}

.arrow:hover .arrow-top:after {
  left: 0;
  transition-delay: 0.15s;
}

.arrow:hover .arrow-bottom:after {
  right: 0;
  transition-delay: 0s;
}

.arrow:active {
  transform: translateX(-50%) translateY(-50%) scale(0.9);
}

.left-arrow {
  cursor: pointer;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.1s;
  width: 50px;
  left: 100px;
  transform: rotate(180deg);
}

.right-arrow {
  cursor: pointer;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.1s;
  width: 50px;
  right: 120px;
}

@media (max-width: 768px) {
  .arrow {
    left: 50px;
  }

  .left-arrow {
    left: 20px;
  }

  .right-arrow {
    right: 20px;
  }
}

@media (max-width: 480px) {
  .arrow {
    left: 20px;
  }

  .left-arrow {
    left: 10px;
  }

  .right-arrow {
    right: -5px;
    top: 155px;
  }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

#testimonials h2 {
  position: relative;
  text-align: center;
  margin: 20px 0 0;
  margin-bottom: 5%;
  font-size: 38px; 
}

#testimonials .info p {
  font-size: 24px; 
}

.col-sm-12.col-md-7 {
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.swiper {
  border-radius: 10%;
}


@media (max-width: 1024px) {
  .testimonials{
    padding-top: 20%;
    margin-bottom: -30%;
  }

  #testimonials h2 {
    font-size: 38px; 
    margin-bottom: 5%;
    margin-left: -15%;
  }

  #testimonials .info p {
    text-align: center;
    margin: 0px 15px 30px; 
    font-size: 24px; 
    margin-left: -10%;
  }

  .testimonials .info {
    padding-top: 10%; 
  }

  .col-sm-12.col-md-7 {
    border-radius: 10%;
    height: 75vh;
  }
  
  .swiper {
    border-radius: 10%;
  }
}

@media (min-width: 1024px) and (max-width: 1024px) and (min-height: 600px) and (max-height: 600px) {

  .testimonials{
    margin-bottom: 0%;
  }
}

@media (max-width: 540px) {
  .testimonials{
    margin-bottom: -15%;
  }

  #testimonials h2 {
    font-size: 38px; 
    text-align: center;
    margin-left: 0%;
  }

  #testimonials h2::before,
  #testimonials h2::after {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); 
  }

  #testimonials .info p {
    text-align: center;
    margin: 0px 15px 30px; 
    font-size: 22px;  
  }

  #testimonials h2::before {
    left: 10%;
  }

  #testimonials h2::after {
    right: 10%;
  }

  .col-sm-12.col-md-7 {
    border-radius: 10%;
    height: 75vh;
  }
  
  .swiper {
    border-radius: 10%;
  }

}

@media (max-width: 480px) {
  #testimonials h2 {
    font-size: 32px; 
  }

  #testimonials h2::before,
  #testimonials h2::after {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); 
  }

  #testimonials .info p {
    text-align: center;
    margin: 0px 15px 30px; 
    font-size: 16px;  
  }

  #testimonials h2::before {
    left: -10px;
  }

  #testimonials h2::after {
    right: -10px;
  }

  .col-sm-12.col-md-7 {
    border-radius: 10%;
    height: 75vh;
  }
  
  .swiper {
    border-radius: 5%;
  }


}



/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

.faq-container {
  margin-top: 0px;
}

.faq-item h3 {
  font-size: 1.1rem; 
  line-height: 1.5;
}

.faq-content p {
  font-size: 2.3rem;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faq-toggle:hover {
  transform: rotate(90deg);
}

@media (min-width: 1024px) {
  .faq{
    margin-top: 15%;
  }

  .faq .content h3 {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 5%;
    }
  
    .faq .content p {
      font-size: 1.2rem;
      line-height: 1.6;
    }
  .container {
    max-width: 1180px; 
  }
}

@media (min-width: 1400px) {
  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .faq-item h3 {
    font-size: 1.3rem; 
  }
  .faq-content p {
    font-size: 1rem;
  }
}

@media (max-width: 540px) {
  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
    top: 0%;
  }
  .faq-content p {
    font-size: 1rem;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.wrapper {
  display: flex; 
  justify-content: center; 
  align-items: center;
  gap: 10px; 
}

.wrapper .icon {
  display: inline-flex;
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  margin-left: 0%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media (min-width: 1024px) {
  .footer-about {
    display: flex;
    align-items: center;
    gap: 1rem; 
  }
  
  .footer-logo {
    max-width: 80px; 
    height: auto;
  }
  
  .footer-image {
    max-width: 200px; 
    height: auto;
    transform: translateX(-20px); 
    transform: translateY(-10px); 
  }

  .wrapper {
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 10px; 
  }

  .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }

  .wrapper .facebook:hover,
  .wrapper .facebook:hover .tooltip,
  .wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
  }

  .wrapper .twitter:hover,
  .wrapper .twitter:hover .tooltip,
  .wrapper .twitter:hover .tooltip::before {
    background: #000;
    color: #fff;
  }

  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #fff;
  }

  .wrapper .linkedin:hover,
  .wrapper .linkedin:hover .tooltip,
  .wrapper .linkedin:hover .tooltip::before {
    background: #0077B5;
    color: #fff;
  }
}

@media (max-width: 1023px) {
  .footer-about {
    display: flex;
    align-items: center;
  }
  
  .footer-logo {
    max-width: 80px; 
    height: auto;
  }
  
  .footer-image {
    max-width: 170px; 
    height: auto;
    padding-left: -25%;
    transform: translateY(-10px); 
  }
  
  .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 30%; 
  }

  .wrapper .icon {
    width: 40px;
    height: 40px;
    margin: 5px; 
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .wrapper .facebook {
    background: #1877f2;
    color: #fff;
  }

  .wrapper .twitter {
    background: #000;
    color: #fff;
    border: 1px solid #fff; 
  }

  .wrapper .instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #fff;
  }

  .wrapper .linkedin {
    background: #0077B5;
    color: #fff;
  }

  .wrapper .tooltip {
    display: none; 
  }
}


@media (max-width: 767px) {
  .footer-about {
    display: flex;
    align-items: center;
  }
  
  .footer-logo {
    max-width: 80px; 
    height: auto;
  }
  
  .footer-image {
    max-width: 170px; 
    height: auto;
    padding-left: -25%;
    transform: translateY(-10px); 
  }

  .wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start; 
    padding-left: 0px; 
  }

  .wrapper .icon {
    width: 30px;
    height: 30px;
    margin-top: 5%;
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .wrapper .facebook {
    background: #1877f2;
    color: #fff;
  }

  .wrapper .twitter {
    background: #000;
    color: #fff;
    border: 1px solid #fff; 
  }

  .wrapper .instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #fff;
  }

  .wrapper .linkedin {
    background: #0077B5;
    color: #fff;
  }

  .wrapper .tooltip {
    display: none; 
  }
}

#untertitel {
  margin: 0 0 30px 0;
}


.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/landingpage/Landingpage6.png');
  background-size: 100% 70%; 
  background-repeat: no-repeat;
  background-position: center 90%;
  background-color: rgba(6, 6, 6, 6);
}

@media (max-width: 768px) {
  .background-overlay {
    background-size: 100% 50%;
    background-position: center center; 
    background-position: center 30%;
  }
}