@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

* {
  scrollbar-width: 16px;
  scrollbar-color: #1c345f black;
}

*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #1c345f;
}

*::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 20px;
  border: 3px solid black;
}

body {
  margin: 0px;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

.secondary-font {
  font-family: 'Bebas Neue', serif !important;
}

html {
  overflow-x: hidden;
}

.main-container {
  margin-bottom: 25px;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}



/* START Split Container Section */
.split-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  min-height: calc(100vh - 100px);
  margin-bottom: 100px;
}

.split-container-left,
.split-container-right {
  width: 45%;
  height: auto;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1 1 300px;
}

.split-container-textcontent {
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #333;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* END Split Container Section */


/* START Menu Section */
.navbar {
  top: 0;
  width: 100%;
  z-index: 10;
  min-height: 120px;
  background-color: #f8f8f8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#home .navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  min-height: 120px;
  background-color: transparent;
  box-shadow: none;
  padding-bottom: 80px;
}


#home .navbar .nav-link {
  color: white !important;
}

.dropdown-menu {
  border: none !important;
  border-radius: none !important;
}

.dropdown-item {
  font-size: 22px;
  background-color: transparent !important;
}

.dropdown-item:hover {
  font-size: 22px;
  background-color: black !important;
  color: white !important;
}

.nav-item {
  font-family: 'Bebas Neue', serif !important;
  font-size: 22px !important;
}

.navbar-brand {
  padding-left: 40px;
}

.header-logo {
  width: 125px;

}

/* END Menu Section */


/* START Footer Section */
footer {
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.4);
  background-color: black;
  color: #fff;
  padding: 20px;
  width: 100%;
  bottom: 0;
  position: relative;
}

/* END Footer Section */


/* START Optimaxx-Daten Section */
.plug-version {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.plug-version thead {
  background: linear-gradient(to right, #ff4b2b, #ff416c);
  color: white;
  font-weight: bold;
}

.head {
  width: 100%;
  text-align: left;
  padding-left: 12px;
  float: left;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, rgb(22, 22, 22), rgb(48, 47, 47));
  color: white;
  font-weight: bold;
}

.plug-version th,
.plug-version td {
  padding: 12px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
}

.plug-version tbody tr:hover {
  background: #f2f2f2;
}

.plug-version th {
  text-transform: uppercase;
}

/* END Optimaxx-Daten Section */




.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50% !important;
  transform: translate(-50%, -50%);
  text-align: center;
}

.carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  width: 1200px;
}

.carousel-caption p {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 1200px;
  line-height: 1.5;
}


/* START General Section */
.zoom-img {
  width: 100%;
  overflow: clip;
}

.zoom-img img {
  width: 100%;
  transition: all 0.3s ease;
}

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

#scrollToTopBtn {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: black;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  display: none;
}

#scrollToTopBtn:hover {
  background-color: #1d345f;
}

.headline {
  margin-top: 25px;
  margin-bottom: 25px;
}

.headline-animation {
  animation: 1s headline-animation;
}

.slide-from-left {
  animation: slide-from-left 1s ease-in-out;
}

.slide-from-right {
  animation: slide-from-right 1s ease-in-out;
}

.fadeIn {
  animation: fadeIn 1s ease-in-out;
}

/* END General Section */

/* START Carousel Section */
#home .carousel-item img {
  object-fit: cover;
  height: 800px;
}

#home .carousel-caption h1 {
  font-size: 2.5rem;
}

#home .carousel-caption p {
  font-size: 1.2rem;
}


#home .carousel {
  animation: fadeIn 1.25s ease-in-out forwards;
}


.carousel-image {
  filter: blur(6px) brightness(0.8);
  transform: scale(1.1);
}


.explanatoryVideo {
  background-color: black;
  border-radius: 15px;
  width: 50%;
}

.explanatoryVideo video {
  width: 100%;
  height: auto;
}

#optimaxx-container {
  padding-top: auto !important;
  margin-top: 5px !important;
}

#optimaxx-text-l {
  padding-top: 15% !important;
  text-align: left;
  font-size: 45px !important;
}

#optimaxx-text-m {
  font-size: 35px !important;
  padding-top: 10px !important;
  text-align: left;
}

#optimaxx-bild {
  width: 63% !important;
  height: auto !important;
  padding-top: 15% !important;
}

#video-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease;
}

/* END Carousel Section */


/* START Content Page Section */
.content-container {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding: 20px;
}

.content-bild {
  flex: 1;
  overflow: hidden;
}

.content-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.content-text {
  flex: 1;
  font-family: sans-serif;
  line-height: 1.6;
}

/* END Content Page Section */




@media (min-width: 768px) and (max-width: 1023px) {
  #home .navbar {
    top: 0;
    width: 100%;
    z-index: 1 !important;
    min-height: 120px !important;
    background-color: black;
    padding-bottom: 15px;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }

  #default .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }

  .navbar-brand {
    padding-left: 20px;
  }

  #optimaxx-container {
    margin-top: -50px !important;
  }


  .nav-item {
    font-size: 18px;
  }

  .carousel {
    margin-top: 120px !important;
  }

  .carousel img {
    height: 800px;
  }


  #optimaxx-text-l {
    text-align: left !important;
    font-size: 2.5rem !important;
  }

  #optimaxx-text-m {
    font-size: 2.1rem !important;
    text-align: left;
  }

  #optimaxx-bild {
    width: 70% !important;
    height: auto !important;
    padding-top: 0% !important;
  }

  .explanatoryVideo {
    width: 75%;
  }
}


@media (min-width: 1024px) and (max-width: 1279px) {
  #home .navbar {
    top: 0;
    width: 100%;
    z-index: 1 !important;
    min-height: 120px !important;
    background-color: black;
    padding-bottom: 15px;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }

  #default .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }

  .navbar-brand {
    padding-left: 20px;
  }

  #optimaxx-container {
    margin-top: -50px !important;
  }


  .nav-item {
    font-size: 18px;
  }

  .carousel {
    margin-top: 120px !important;
  }

  .carousel img {
    height: 800px;
  }


  #optimaxx-text-l {
    text-align: left !important;
    font-size: 2.8rem !important;
  }

  #optimaxx-text-m {
    font-size: 2.2rem !important;
    text-align: left;
  }

  #optimaxx-bild {
    width: 70% !important;
    height: auto !important;
    padding-top: 0% !important;
  }

  .explanatoryVideo {
    width: 75%;
  }
}

@media (min-width: 1280px) and (max-width: 1650px) {
  #home .navbar {
    top: 0;
    width: 100%;
    z-index: 1 !important;
    min-height: 120px !important;
    background-color: black;
    padding-bottom: 15px;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }

  #default .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }


  .navbar-brand {
    padding-left: 20px;
  }

  #optimaxx-container {
    margin-top: -50px !important;
  }


  .nav-item {
    font-size: 18px;
  }

  .carousel {
    margin-top: 120px !important;
  }

  .carousel img {
    height: 800px;
  }


  #optimaxx-text-l {
    text-align: left !important;
    font-size: 3rem !important;
  }

  #optimaxx-text-m {
    font-size: 2.4 !important;
    text-align: left;
  }

  #optimaxx-bild {
    width: 70% !important;
    height: auto !important;
    padding-top: 0% !important;
  }

  .explanatoryVideo {
    width: 75%;
  }
}

@media (max-width: 767px) {
  #home .navbar {
    top: 0;
    width: 100%;
    z-index: 1 !important;
    min-height: 120px !important;
    background-color: black;
    padding-bottom: 15px;
  }

  #home .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }

  #default .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }

  .navbar-brand {
    padding-left: 20px;
  }

  #optimaxx-container {
    margin-top: -50px !important;
  }


  .nav-item {
    font-size: 18px;
  }

  .carousel {
    margin-top: 120px !important;
  }

  .carousel img {
    height: 800px;
  }


  #optimaxx-text-l {
    text-align: left !important;
    font-size: 1.5rem !important;
  }

  #optimaxx-text-m {
    font-size: 1.4rem !important;
    text-align: left;
  }

  #optimaxx-bild {
    width: 70% !important;
    height: auto !important;
    padding-top: 0% !important;
  }

  .explanatoryVideo {
    width: 75%;
  }

  .split-container {
    margin-top: 25px;
    flex-direction: column;
    height: auto;
  }

  .split-container-left,
  .split-container-right {
    width: 100%;
  }

  .split-container-textcontent {
    margin-top: -50px;
    font-size: 1rem;
    padding: 10px;
  }

  .content-container {
    flex-direction: column;
  }

  .content-bild,
  .content-text {
    width: 100%;
  }
}


@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slide-from-left {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

@keyframes slide-from-right {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0%);
  }
}

@keyframes headline-animation {
  from {
    margin-left: -100%;
  }

  to {
    margin-left: 0%;
  }
}