.navbar {
  height: 100px;
  width: 100%;
  max-width: 100%;
  color: transparent;
  position: absolute;
  top: 0;
  /* overflow: hidden; */
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-background {
  transition: all 0.5s ease-in;
}

.navbar-content {
  /* width: 100%; */
  height: 100%;
  margin-top: 30px;
  display: flex;
  color: transparent;
  background-color: var(--colorHeaderBG);
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
}

.hamburger {
  display: none;
}
.close {
  display: none;
}

.button-nav {
  font-weight: 900;
  margin: 0px 20px;
  color: var(--colorText);
}

.button-nav-selected {
  color: var(--colorButtons);
}

.button-nav-highlight {
  color: var(--colorWhite);
  background-color: var(--colorButtons);
  padding: 10px 20px;
  border-radius: 20px;
}

.logo-with-text {
  display: flex;
  align-items: center;
}

.logo-with-text img {
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
  margin-right: 20px;
}

.logo-with-text h1 {
  font-size: 30px;
  font-weight: normal;
  color: white;
}

.overlay {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    height: 70px;
  }
  .navbar-content {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    margin-top: 0;
    justify-content: right;
    background-color: transparent;
  }

  .logo-with-text h1 {
    display: none;
  }

  .navbar-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
  }
  .hamburger i {
    color: var(--colorText);
  }

  .close {
    display: none;
    color: var(--colorText);
    position: absolute;
    right: 20px;
    z-index: 1001;
    height: 100px;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transform: scaleX(-1);
  }

  .overlay {
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: var(--colorHeaderBG);
    position: absolute;
    top: 0;
    left: 100%;
    transition: all 0.2s ease-in-out;
    z-index: 999;
  }

  .mobile-container {
    width: 100%;
    height: 100%;
    padding: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
  .navbar-links-mobile-top {
    list-style: none;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    display: flex;
    width: 100%;
    padding-top: 100px;
  }

  .navbar-links-mobile-top a {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
    font-size: 30px;
  }
  .button-nav-selected {
    color: var(--colorSecondary);
  }

  .logo-with-text-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .logo-with-text-mobile img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: contain;
  }

  .logo-with-text-mobile h1 {
    font-size: 30px;
    font-weight: normal;
    color: white;
    text-align: center;
  }
}
