.container {
  width: 100%;
  /* margin: 0 auto; */
}

/* Header Banner Styles */

.mission-statement {
  text-align: right;
  font-family: "Pacifico", cursive;
  /* flex-grow: 1; This will make sure the 'WE ARE' div takes up all available space */
  text-align: right; /* Align text to the right */
}

.mission-statement h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #da1c5c;
  font-size: 50px;
  font-family: "Pacifico", cursive;
}

.mission-statement p {
  font-size: 1.2em;
  font-family: "Pacifico", cursive;
}

/* Footer Styles */
.footer {
  background-color: #ffffff;
  color: #da1c5c;
  width: 100%;
  /* position: fixed;
    bottom: 0; */
  font-family: "Pacifico", cursive;
  text-align: center; /* Add text-align center */
}

#typewriterElement.innerHTML {
  color: #da1c5c;
  font-size: 22px;
}

p.innerHTML {
  color: #da1c5c;
  font-size: 22px;
}

/* Show md/lg logos on medium screens and larger */
@media (min-width: 992px) {
  .md-lg-logo {
    display: flex;
  }
}

/* Show small screen logos on screens smaller than medium */
@media (max-width: 991px) {
  .small-logo {
    display: flex;
  }
}

/* Hide md/lg logos on screens smaller than medium */
@media (max-width: 991px) {
  .md-lg-logo {
    display: none;
  }
}

/* Hide small screen logos on medium screens and larger */
@media (min-width: 992px) {
  .small-logo {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  #header-container {
    flex-direction: column;
  }
}

/* Media query for 'md/lg logos' */
@media (max-width: 440px) {
  /* reveal when less than 440px */
  .logo.md-lg-logo {
    display: block;
  }
}

/* Media query for 'small screen logos' */
@media (max-width: 440px) {
  /* hide when less than 440px */
  .logo.small-logo {
    display: none;
  }
}

/* Media query for 'WE ARE' */
@media (max-width: 440px) {
  /* hide when less than 440px */
  #weareh1 {
    display: none;
  }

  #typewriter {
    display: none;
  }
}

/* Media query for 'WE ARE' */
@media (max-width: 800px) {
  /* hide when less than 440px */
  #weareh1 {
    font-size: 18px;
  }
}

@media screen and (max-width: 450px) {
  #biglogo {
    width: 100%;
    /* max-width: 100%; */
    height: auto;
  }
}

@media screen and (min-width: 450px) {
  #biglogo {
    width: 300px;
    /* max-width: 100%; */
    height: auto;
  }
}

@media screen and (min-width: 1000px) {
  .gradient-text {
      background: linear-gradient(to bottom, #9E1F63, #DA1C5C);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 35px;
      font-weight: bold;
      font-family: Arial, sans-serif;
      position: relative;
      left: 0;
      right: 0;
      margin: auto;
      text-align: center;
      padding-left: 40px;
  }
}

@media screen and (max-width: 1000px) {
  .gradient-text {
      display: none;
  }
}

.video-section {
  width: 100%;
  background-color: #f8f9fa;
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-section p {
  margin: 0;
  font-size: 16px;
}

.video-section .btn {
  margin-left: 10px;
}

.video-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.video-container img {
  max-width: 200px;
  height: auto;
}

.video-container .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container .play-icon::before {
  content: '\25BA';
  color: white;
  font-size: 30px;
}