navbar .headerMenu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  height: 150px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  padding: 0 3%;
}
navbar .headerMenu .headerLogo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 300px;
}
navbar .headerMenu .headerLogo img {
  width: 300px;
  height: auto;
}
navbar .headerMenu .headerLinks {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 20px;
  font-weight: 700;
}
navbar .headerMenu .headerLinks a {
  text-decoration: none;
  color: #8a39a5;
  font-size: 20px;
}
navbar .headerMenu .headerLinks a:hover {
  color: #FF7F50;
}
navbar .headerMenu .headerButton {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 20px;
}
navbar .headerMenu .headerButton a {
  text-decoration: none;
  color: #8a39a5;
}
navbar .headerMenu .headerButton a img {
  width: 30px;
  height: 30px;
}
navbar .headerMenu .headerButton #login {
  background-color: #8a39a5;
  color: #E9E7EC;
  border: none;
  padding: 6px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid #8a39a5;
  font-weight: 700;
}
navbar .headerMenu .headerButton #login:hover {
  background-color: #E9E7EC;
  border: 1px solid #FF7F50;
  color: #FF7F50;
}
navbar .mobileMenu {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #E9E7EC;
}
navbar .mobileMenu .logo {
  width: 150px;
  height: 100px;
}
navbar .mobileMenu .logo img {
  width: 100%;
  height: 100%;
}
navbar .mobileMenu .menuToggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
}
navbar .mobileMenu .menuToggle span {
  width: 25px;
  height: 3px;
  background-color: #8a39a5;
}
navbar .mobileMenu .mobileMenuList {
  display: none;
  position: absolute;
  z-index: 99;
  top: 120px;
  left: 0;
  width: 100vw;
  background-color: #E9E7EC;
  flex-direction: column;
  list-style-type: none;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
navbar .mobileMenu .mobileMenuList li {
  margin: 10px 0;
  padding: 8px 0;
  list-style-type: none;
  width: 90%;
  border-bottom: 1px solid #8a39a5;
  border-bottom-width: 50%;
}
navbar .mobileMenu .mobileMenuList li #login {
  background-color: #8a39a5;
  color: #E9E7EC;
  border: none;
  padding: 6px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid #8a39a5;
  font-weight: 700;
}
navbar .mobileMenu .mobileMenuList #login:hover {
  background-color: #E9E7EC;
  border: 1px solid #FF7F50;
  color: #FF7F50;
}
navbar .mobileMenu .mobileMenuList li:last-child {
  border: none;
  text-align: center;
}
navbar .mobileMenu .mobileMenuList li a {
  color: #8a39a5;
  text-decoration: none;
  font-weight: 600;
}
navbar .mobileMenu .mobileMenuList li a img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  margin-bottom: 30px;
}
navbar .mobileMenu .mobileMenuList li a:hover {
  color: #EC6608;
}
navbar .mobileMenu .mobileMenu.open {
  display: flex;
}
@media (max-width: 998px) {
  navbar .headerMenu {
    display: none !important;
  }
  navbar .mobileMenu {
    display: flex;
  }
  navbar .mobileMenuList.open {
    display: flex;
  }
}