#mob-header {
  display: none;
}

#menu-container {
  display: none;
}

@media (max-width: 768px) {
  #mob-header {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0); /* ¹è°æÀ» ¿ÏÀüÈ÷ Åõ¸íÇÏ°Ô ¼³Á¤ */
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
  }

  #header-subdiv {
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
	
  }

  #hamburger-menu {
    cursor: pointer;
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }

  .mob-logo img {
  max-width: 60px; /* ¿øÇÏ´Â Å©±â·Î ¼³Á¤ */
  height: auto; /* ºñÀ²À» À¯ÁöÇÏ¸é¼­ ³ôÀÌ´Â ÀÚµ¿À¸·Î Á¶Á¤ */
 }

  #hamburger-menu span {
    width: 30px;
    height: 1.5px;
    background-color: #fff;
    position: absolute;
    margin-right: 30px;
    transition: 0.4s ease-in-out;
	z-index:99999;
  }

  /* ÇÜ¹ö°Å ¿­·ÈÀ» ¶§ */
  #hamburger-menu.open span:nth-child(1) {
    top: 40px;
    transform: rotate(135deg);
  }
  #hamburger-menu.open span:nth-child(2) {
    opacity: 0;
  }
  #hamburger-menu.open span:nth-child(3) {
    top: 40px;
    transform: rotate(-135deg);
  }

  /* ÇÜ¹ö°Å ´ÝÇûÀ» ¶§ */
  #hamburger-menu span:nth-child(1) {
    top: 30px;
  }
  #hamburger-menu span:nth-child(2) {
    top: 40px;
  }
  #hamburger-menu span:nth-child(3) {
    top: 50px;
  }

  /* ¸Þ´º */
  #menu-container {
     background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(10px); /* ºí·¯ È¿°ú */
    position: absolute;
    width: 100%;
    height: 0; /* ±âº» ³ôÀÌ¸¦ 0À¸·Î ¼³Á¤ÇÏ¿© ¸Þ´º°¡ ´ÝÇôÀÖÀ» ¶§ º¸ÀÌÁö ¾Ê°Ô */
    z-index: 99;
    display: none; /* ±âº»ÀûÀ¸·Î ¸Þ´º´Â º¸ÀÌÁö ¾ÊÀ½ */
    flex-direction: column;
    top: 0px; /* Çì´õ ¾Æ·¡·Î À§Ä¡ */
	right: 0;
    transition: height 0.3s ease, display 0s 0.3s; /* ¾Ö´Ï¸ÞÀÌ¼Ç Ãß°¡ ¹× display º¯°æ Áö¿¬ */
	padding-top:80px;
	
  }

  /* ¸Þ´º°¡ ¿­·ÈÀ» ¶§ */
  #menu-container.open {
    display: flex; /* ¿­·ÈÀ» ¶§¸¸ flex·Î Ç¥½Ã */
    height: 100vh; /* È­¸éÀÇ ³ôÀÌ¸¸Å­ Â÷Áö */
  }

  .menu-list {
    display: none;
  }

  /* ¸Þ´º°¡ ¿­·ÈÀ» ¶§ */
  .menu-list.active {
    display: flex;
    flex-direction: column;
  }

  .accordion-toggle {
    display: flex;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: black;
/*     border-top: 1px solid #dbdbdb; */
    flex-direction: column;
    width: 100%;
	margin-top:20px;
  }

  .accordion-toggle a {
    color: #fff;
    padding: 15px 20px;
    text-align: right;
  }

  .menu-submenu {
    display: none; /* ±âº»ÀûÀ¸·Î ¼û±è */
    padding: 10px 25px;
    text-align: center;
    background-color: rgba(100, 100, 100, 0.2); /* ¹ÝÅõ¸í ºí·¢ */
  }

  .menu-submenu li {
    font-size: 16px;
    color: #bfbfbf;
    display: inline;
    margin-right: 15px;
    font-weight: 400;
  }

  .menu-submenu li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #555;
  }
}
