.navbar-container {
  height: 120px;
  padding: 0 65px;
  display: flex;
  align-items: center;
  position: sticky;
}

.desktop-navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.15em;
}
#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, 1);
  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: 80px;
  width: 80px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal .modal-content {
  height: 100%;
  width: 100%;
  padding: 100px 40px;
}

.modal .modal-content ul {
  font-family: "Libre Baskerville", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 16px;
}
.modal .modal-content ul li {
  letter-spacing: 0.15em;
  line-height: 1.8em;
}
.modal .icons-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}
.modal .icons-wrapper svg {
  padding: 10px;
}

@media screen and (max-width: 1260px) {
  .desktop-navbar-container .list-wrapper {
    font-size: 14px;
    gap: 10px;
  }
}

@media screen and (max-width: 1140px) {
  .navbar-container {
    padding: 0 40px;
  }
  .desktop-navbar-container {
    display: none;
  }
  .mobile-navbar-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .navbar-container {
    height: 100px;
  }
}
@media screen and (max-width: 540px) {
  .navbar-container {
    padding: 0 25px;
  }
  .navbar-container {
    height: 80px;
  }
}

@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: 2px;
  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;
}
