.navbar-container {
  height: 80px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
  font-family: var(--secondary-font);
  position: sticky;
  z-index: 1000;
  background-color: white;
}

.desktop-navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.15em;
}

.navbar-container a {
  width: 130px;
  display: flex;
  justify-content: center;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.navbar-container a:has(img) {
  width: 170px;
}

.navbar-container a:has(img) img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
#my-page {
  position: relative;
  cursor: pointer;
  user-select: none;
}

#dropdown-content {
  border-radius: 4px;
  display: none;
  position: absolute;
  margin-top: 20px;
  padding: 20px;
  top: 100%;
  left: 0;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #dcdcdc;
  opacity: 0;
  transition: 0.5s all ease;
  background-color: white;
  z-index: 10;
}

#dropdown-content a {
  /* border-bottom: 1px solid #dcdcdc; */
}

#dropdown-content.active {
  display: flex;
  opacity: 1;
}

.mobile-navbar-container {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 1;
}

.modal.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

.modal-content {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
}

.close-btn {
  height: 12vw;
  width: 12vw;
  position: fixed;
  top: 3vw;
  right: 3vw;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal .modal-content {
  height: 100%;
  width: 100%;
  padding: 20vw 0 15vw;
  font-family: var(--secondary-font);
}

.modal .modal-content ul {
  display: flex;
  flex-direction: column;
}
.modal .modal-content ul li {
  letter-spacing: 0.15em;
  line-height: 2.5;
  margin: 2vw 0 0;
  display: flex;
  justify-content: center;
}

.modal .modal-content ul li a {
  font-size: 15px !important;
}

.modal .icons-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15vw;
  border-top: 1px solid white;
  color: white;
}
.modal .icons-wrapper a {
  padding: 7vw 4vw 0 0;
  font-size: 4vw;
  line-height: 1;
}

.mobilelogo {
   display: none;
  }

@media screen and (max-width: 1024px) {
  .desktop-navbar-container {
    display: none;
  }

  .navbar-container {
    height: auto;
    position: fixed;
    top: 0;
    border: none;
    background: transparent;
    color: black;
    z-index: 1000000;
    padding: 0;
  }
  .navbar-container a {
    width: 100%;
  }
  .mobile-navbar-container {
    display: flex;
    justify-content: end;
    width: 100%;
  }

  .hamburger {
    height: 12vw;
    width: 12vw;
    margin: 3vw 3vw 0 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
  }

  .modal-logo {
    position: absolute;
    width: 11% !important;
    left: 8vw;
    top: 5vw;
  }
}
@media screen and (max-width: 1260px) {
  .desktop-navbar-container .list-wrapper {
    font-size: 14px;
    gap: 10px;
    display: flex;
  }
      .mobilelogo {
   display: none;
  }
}

@media screen and (max-width: 1140px) {
  .navbar-container {
    /* padding: 0 40px; */
        display: flex;
  }

}
@media screen and (max-width: 540px) {
    .mobilelogo {
   display: block;
  }
}

@media screen and (max-width: 1140px) {
  .desktop-navbar-container .list-wrapper {
    gap: 15px;
  }
  .desktop-navbar-container {
    font-size: 14px;
  }
}
/* @media screen and (min-width: 960px) {
  .mobile-navbar-container {
    display: none !important;
  }
} */

.burger {
  position: relative;
  width: 20px;
  height: 15px;
  background: transparent;
  cursor: pointer;
  display: block;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input.burger-active ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input.burger-active ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input.burger-active ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 14px;
  left: 5px;
}
