#start {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 115px; /* Passe die maximale Breite entsprechend an */
  height: auto; /* Damit das Seitenverhältnis erhalten bleibt */
}


#websec {
    min-height: 100vh;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}



.row-split {
  position: relative;
  overflow: hidden;
  background-color: #2b6777;
}

.left-half {
  background-color: #3b5957;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  transform: skewX(-20deg);
  transform-origin: bottom left;
}

.right-half {
  background-color: #577670;
  width: 100%;
  height: 100vh;
  position: absolute;
  right: 0;
  transform: skewX(20deg);
  transform-origin: bottom right;
}

.skewed-img {
  transform: skewX(-20deg);
  z-index: -1;
}

.content-wrapper h1 {
  white-space: nowrap;
    overflow: visible;
  text-overflow: ellipsis;
}
/* Styles für Geräte mit einer Breite von bis zu 320px (sehr kleine Geräte) */
@media (max-width: 320px) {
  .content-wrapper {
    font-size: 0.6em; /* Schriftgröße weiter verringert */
  }

  .skewed-img {
    width: 90%;
  }
}


/* Styles für Geräte mit einer Breite von bis zu 576px (Portrait-Handys) */
@media (max-width: 576px) {
  .content-wrapper {
    font-size: 1em; /* Schriftgröße erhöht */
  }

  .skewed-img {
    width: 90%;
  }
}

/* Styles für Geräte mit einer Breite von 577px bis 768px (Tablets) */
@media (min-width: 577px) and (max-width: 768px) {
  .content-wrapper {
    font-size: 1em;
  }

  .skewed-img {
    width: 95%;
  }
}

/* Styles für Geräte mit einer Breite von 769px bis 992px (Laptops) */
@media (min-width: 769px) and (max-width: 992px) {
  .content-wrapper {
    font-size: 1.1em; /* Schriftgröße erhöht */
  }

  .skewed-img {
    width: 100%;
  }
}

/* Styles für Geräte mit einer Breite von 993px bis 1200px (Große Geräte) */
@media (min-width: 993px) and (max-width: 1200px) {
  .content-wrapper {
    font-size: 1.2em; /* Schriftgröße erhöht */
  }

  .skewed-img {
    width: 100%;
  }
}

/* Styles für Geräte mit einer Breite von über 1200px (Sehr große Geräte) */
@media (min-width: 1201px) {
  .content-wrapper {
    font-size: 1.3em; /* Schriftgröße erhöht */
  }

  .skewed-img {
    width: 100%;
  }
}




#cybersec {
  min-height: 139vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  animation: backgroundAnimation 10s ease infinite alternate;
}

/* Stile für den #cybersec-Bereich */
#cybersec h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 18.4rem;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(50px);
  animation-name: fadeInUp;
  animation-duration: 2s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  text-align: center;
  animation-fill-mode: forwards;
}

/* Stile für den Absatz */
#cybersec p {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 3rem;
  max-width: 800px;
  line-height: 1.6;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(100px);
  animation-name: fadeInUp;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

/* Hintergrundstil für den #cybersec-Bereich */
#cybersec::before {
  content: "";
  background: linear-gradient(135deg, rgba(0, 216, 255, 0.3) 0%, rgba(63, 81, 181, 0.3) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* Animation für das Einblenden und Aufwärtsbewegen der Überschrift und des Absatzes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.chart-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 100px;
  position: relative;
  flex-wrap: wrap;
}

.chart {
  max-width: 33%;
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 5px;
}
.chart {
  position: relative;
  transition: transform 0.3s ease;
}

.chart:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.4), 0 10px 30px 0 rgba(0, 0, 0, 0.3);
}

.chart-3d {
  width: 200px;
  height: 200px;
  max-width: 100%;
  position: bottom;
  perspective: 1000px;
  margin: 0 auto;
  transform: translateY(-120%);
}

.chart-label {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: -100px;
  position: relative;
  top: -240px;
}

@media only screen and (max-width: 767px) {
  #cybersec {
    min-height: auto;
    padding: 60px 20px;
  }

  #cybersec h2 {
    margin-bottom: 3rem;
  }

  .chart-container {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .chart {
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 40px;
  }

  .chart-3d {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    transform: none;
  }

  .chart-label {
    font-size: 1.6rem;
    margin-bottom: 10px;
    position: static;
    top: auto;
  }

  #cybersec h2,
  #cybersec p {
    text-align: center;
  }

  #cybersec p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

@media only screen and (max-width: 479px) {
  #cybersec {
    padding: 40px 10px;
  }

  #cybersec h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  #cybersec p {
    font-size: 1.2rem;
  }
}
/* Stil für die chart-label-Klasse */
.chart-label {
  text-align: center; /* Zentriert den Text */
}

/* Stil für die Absätze in der chart-label-Klasse */
.chart-label p {
  font-size: 1.4rem; /* Größere Schrift */
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Stil, um die Zahlen in fett zu drucken */
.chart-label p:first-child {
  font-weight: bold; /* Fettdruck */
  font-size: 2.5rem; /* Größere Schrift */
}

@media only screen and (max-width: 767px) {
  .chart-label p {
    font-size: 1.2rem; /* Größere Schrift */
  }
  
  .chart-label p:first-child {
    font-size: 2rem; /* Größere Schrift */
  }
}

@media only screen and (max-width: 479px) {
  .chart-label p {
    font-size: 1rem; /* Größere Schrift */
  }
  
  .chart-label p:first-child {
    font-size: 1.5rem; /* Größere Schrift */
  }
}


#cybersec p1 {
  font-size: 1.7rem; /* Vergrößerte Schriftgröße */
  color: #ffffff;
  margin: 0 auto; 
  max-width: 800px;
  line-height: 1.6;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(100px);
  animation-name: fadeInUp;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  text-align: center;
  
  /* Flexbox-Eigenschaften für vertikale und horizontale Ausrichtung */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Sie können die Höhe nach Bedarf anpassen */
}

@media only screen and (max-width: 767px) {
  #cybersec p1 {
    margin: 0;
    font-size: 1.5rem; /* Vergrößerte Schriftgröße */
    line-height: 1.8;
  }
}

@media only screen and (max-width: 479px) {
  #cybersec p1 {
    font-size: 1.2rem; /* Vergrößerte Schriftgröße */
  }
}





@media (max-width: 480px) {
  h2.section-title {
    font-size: 24px;
  }
  
  hr.my-4 {
    width: 80%;
  }

  p.lead {
    font-size: 18px;
  }

  h3.features-title {
    font-size: 24px;
  }

  h4.feature-title {
    font-size: 18px;
  }

  p.feature-description {
    font-size: 14px;
  }

  .feature-item {
    margin-bottom: 20px;
  }

  .feature-icon {
    margin-right: 10px;
  }
}
















/* Gemeinsame Styles für Feature-Items */
.feature-item {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.feature-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.arrow-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.arrow-icon:hover {
  transform: translateY(-50%) rotate(90deg);
}

/* Icon-Stile */
.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Feature-Details-Stile */
.feature-details {
  margin-top: 15px;
}

/* Hervorhebung des aktiven Feature-Items */
.feature-item.active {
  background-color: #f2f2f2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.feature-item.active .feature-icon {
  color: #007bff;
}









#verwendetetools {
  padding: 50px 0;
  background-color: #f8f9fa;
}

#verwendetetools h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.tool-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.tool-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tool-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.tool-title {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  text-align: center;
}




.section-title {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}




@keyframes rotateAnimation {
    0% {
        transform: rotateX(0);
    }
    50% {
        transform: rotateX(360deg);
    }
    100% {
        transform: rotateX(0);
    }
}

@keyframes quoteAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.display-4 {
    font-size: 2.5rem;
}

.blockquote {
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.animate__fadeIn {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeIn;
}

.animate__quote {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: quoteAnimation;
}

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










#faq {
  background-color: #2b6777;
  color: #52ab98;
  font-family: "Arial", sans-serif;
}


  .accordion-item {
      border: none;
      margin-bottom: 1rem;
    }
    
   .accordion-button.collapsed {
  color: #52ab98;
}

.accordion-header {
  background-color: #f2f2f2;
  border-radius: 0.5rem;
  padding: 1rem;
  position: relative;
}

.accordion-button {
  background-color: transparent;
  border: none;
  color: #52ab98;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  width: 100%;
}

.accordion-button:hover {
  color: #0069d9;
}

.accordion-collapse {
  background-color: #f2f2f2;
  border-radius: 0.5rem;
  border: 1px solid #dee2e6;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-collapse.show {
  max-height: 1000px;
}

.accordion-body {
  padding: 1rem;
}




.btn-custom {
  background-color: #7fbcd7;
  color: #fff;
  border-color: #7fbcd7;
}
.text-custom {
  color: #52ab98;
}
.fade-out {
    opacity: 0;
}

.transition {
    transition: opacity 0.5s ease-in-out;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.transition {
  transition: opacity 0.5s ease;
  opacity: 0;
}
 .card {
    transition: transform .2s, box-shadow .2s;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}
