.hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.hero-text {
  position: absolute;
  max-width: 100%;
  bottom: 10vw;
  color: var(--secondary-color);
  text-shadow: var(--drop-shadow);
}

@media all and (max-width: 900px) {
  .hero-text {
    bottom: 25vw;
  }

}

@media all and (max-width: 750px) {

  .hero-text {
    font-size: 3rem;
    width: 85%;
  }
}

.down-chevron {
  position: absolute;
  right: 80px;
  bottom: 80px;
  height: var(--gen-spacing);
  width: var(--gen-spacing);
  animation-name: bounce-2;
  animation-timing-function: ease;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  cursor: pointer;
}

@keyframes bounce-2 {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.section-link {
  color: #595959;
}

.section-link:hover {
  color: var(--main-color);
}

/*==== Home header ====*/
.header-top {
  background-color: transparent;
}

.header-top .black-logo {
  opacity: 0;
}

.header-top .white-logo {
  opacity: 1;
}

.header-top .menu-div p {
  color: var(--secondary-color);
}


.header-top .hamburger-inner, .header-top .hamburger-inner::before, .header-top .hamburger-inner::after {
  background-color: var(--secondary-color);
}


@media only screen and (max-width: 900px) { 
  .section-info{
    position: relative;
    top: 0;
  }
}