.greenerhub-header {
  width: 100vw;
  padding: 0 20px;
  display: flex;
  justify-content:space-between;
  background-color: rgb(255, 255, 255);

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 100;
}

.header-home-link {
  flex-shrink: 0;
  width: 200px;
}

@media screen and (min-width: 768px) {
  .header-home-link {
    width: auto;
  }
}

.header-greenerhub-logo {
  padding: 0;
  height: 100px; 
  margin-right: 10px;
  border: none;
}

.header-right-section {
  float: right;
  width: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  flex-direction: column;
  row-gap: 6px;
}


@media screen and (min-width: 768px) {
  .header-right-section {
    width: auto;
    justify-content: space-around;
    padding: auto;
    flex-direction: row;
    row-gap: none;
  } 
}

.header-call-us {
  display: flex;
  margin-right: 20px;
  height: 32px;
  font-size: 18px;
  align-items: center;
  padding: 20px 4px;
  background-color: #FFD52C;
  border: 1px solid #07301a;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .header-call-us {
    background-color: inherit;
    font-size: 18px;
    border: none;
  }
}

.header-phone-icon {
  height: 32px;
}

.header-button {
  height: 32px;
  padding: 4px;
  background-color: inherit;
  border: none;
  margin-right: 20px;
  border-radius: 4px;
}

.header-button a {
  font-family: "gentiumregular", Verdana, Tahoma, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.header-button-contact-us {
  display: block;
}

.header-button-about-us {
  display: none;
}

@media screen and (min-width: 768px) {
  .header-button-contact-us{
    display: block;
  }

  .header-button-about-us{
    display: block;
  }

}