#header-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: #e3e6f3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

#header-about.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

#header-about.visible {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

#header-about.sticky {
  background-color: #e3e6f3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

#navbar {
  display: flex;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}
#about-info {
  background-image: url(images/about/about_info_background.jpg);
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  /* padding: 20px; */
  height: 130vh;
  position: relative;
  z-index: 2;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about-info > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 70px;
  margin-left: 0;
  padding-left: 0;
}

#about-info h1 {
  color: #fff;
}

#about-info h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
}

#about-info p {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  margin-top: -5px;
  text-align: center;
}

.cola {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  /* text-align: center; */
  color: white;
  font-size: 50px;
  font-weight: bold;
  background-color: black;
  width: 100%;
}

/* Media queries */

@media (max-width: 1024px) {
  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  #about-video .video iframe {
    border-radius: 20px;
    width: 600px;
    height: 400px;
  }
  #about-info {
    margin-top: 70px;
  }
  #close {
    display: block;
  }
}

@media (max-width: 477px) {
  #hero h4,
  h2,
  p {
    color: #1a1a1a;
    padding-bottom: 10px;
  }

  #close {
    display: blockblock;
  }

  #about-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  #about-info div {
    text-align: center;
    padding-left: 0;
  }

  #about-video.section-p1 {
    padding: 40px 20px;
  }

  #about-video .video iframe {
    border-radius: 20px;
    width: 300px;
    height: 200px;
  }
}
