header {
    position: absolute;
    top: 0;
    left: 0;
    height: fit-content;
    z-index: 99;
    width: 100%;
    padding: 20px 0;
}

header .wrap a {
    height: 60px;
    position: relative;
    display: flex;
}

header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .wrap .menu {
    display: flex;
    align-items: center;
    gap: 20px;
    height: auto;
}

header .wrap .menu a {
    display: flex;
    align-items: center;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    height: fit-content;
}

header.homepage-header .wrap .menu a {
    color: var(--white);
}

.homepage-header {
    display: none;
}

header .wrap a img {
    object-fit: contain;
}

header.homepage-other .wrap a.logo-home-url {
    height: 40px;
}

.menu {
    display: none;
  }
  
  .menu.active {
    display: flex; 
  }
  
  .menu-svg {
    display: none; 
  }
  
  .menu-svg.active {
    display: block; 
  }
  header.mobile-header {
    display: none;
  }

  button.menu-button {
    background: none;
    outline: none;
    border: none;
    display: flex;
    width: 30px;
    height: 30px;
    position: relative;
    padding: 0;
}

button.menu-button .menu-svg {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

header.mobile-header .menu {
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0;
    background: var(--white);
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

header.mobile-header .wrap {
    position: relative;
    z-index: 99;
}

header.mobile-header {
    position: fixed;
    background: rgba(0,0,0,0.5);
}

header.mobile-header .menu a {
    color: var(--black);
    text-decoration: none;
    font-size: 24px;
}

header.mobile-header .wrap a {
    height: 30px;
}

header.mobile-header .wrap a img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
aside.whatsapp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  z-index: 99;
  background: #24CC63;
  border-radius: 50%;
  transition: ease 0.6s;
}

aside.whatsapp a {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

aside.whatsapp a svg {
  width: 60%;
  height: 60%;
  fill: var(--white);
}

aside.valuation-tool {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99;
  margin: auto;
  display: flex;
  height: fit-content;
}

aside.valuation-tool .btn {
  font-size: 12px;
}

aside.whatsapp:hover {
  opacity: 0.6;
}
  @media (max-width: 960px) {
    .homepage-header,
    .homepage-other {
      display: none!important;
      opacity: 0!important;
      height: 0!important;
      pointer-events: none!important;
      width: 0!important;
    }
    header.mobile-header {
      display: flex;
    }

  }

  @media (max-width: 800px) {
    aside.valuation-tool {
      display: none;
    }
  }