.Header {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 142, 0.7),
      rgba(1, 114, 128, 0.7)
    ),
    url("../img/Founder/FounderHeader.webp") center/cover no-repeat;
  z-index: 1;
}
.Founder-Sppech-Container {
  width: 70%;
  margin: 10vh auto;
}
.Founder-Image-Container {
  width: 100%;
  margin: 0 auto;
}
.Founder-Image-Container img {
  width: 100%;
  margin: 0 auto;
  object-position: center center;
  height: 500px;
}
.Founder-Quote {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 5vh;
  margin: 5vh 0;
}

/* Paragraph Styles */
.Founder-Quote p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.Founder-Quote p.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Special classes for first two paragraphs */

/* Responsive Design */
@media screen and (max-width: 992px) {
  .Founder-Sppech-Container {
    width: 75%;
  }
}

@media screen and (max-width: 768px) {
  .Founder-Sppech-Container {
    width: 85%;
  }

  .Founder-Quote-first {
    font-size: 1.2rem !important;
  }
}

@media screen and (max-width: 575.98px) {
  .Founder-Image-Container img {
    width: 80%;
    height: 200px;
  }
  .Founder-Sppech-Container {
    width: 90%;
  }

  .Founder-Quote-first {
    font-size: 1.1rem !important;
  }
}
.Brand-History-Container {
  width: 70%;
  margin: 10vh auto;
}
.Brand-History-Container p {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 5vh;
}
h3 {
  margin-bottom: 5vh;
}
@media screen and (max-width: 992px) {
  .Brand-History-Container {
    width: 90%;
  }
  .Brand-History-Container p {
    font-size: 1.1rem;
  }
}
.Brand-History-Content p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.Brand-History-Content p.visible {
  opacity: 1;
  transform: translateY(0);
}
