body {
  margin: 0;
  font-family: "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  
}
/* PC 버전 */
.navbar_main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  color: #000;
  z-index: 999;
  animation: navbarBottom 1s forwards;
}

.navbar_links {
  margin-right: 10%;
}

.navbar_links a {
  text-decoration: none;
  color: #000;
  margin-right: 4rem;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

.navbar_links a:last-child {
  margin-right: 0;
}

.navbar_links a::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #792626;
  transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
}

.navbar_links a:hover::before {
  width: 100%;
  left: 0;
}

.navbar_logo {
  margin-left: 10%;
  text-decoration: none;
  color: #000;
  font-size: 2.3rem;
  font-weight: 500;
}

.navbar_scroll {
  background-color: #fff;
  z-index: 5;
  border-bottom: 1px solid gray;
}

.navbar_scroll div a {
  color: black;
}

.navbar_scroll a {
  color: black;
}

@keyframes navbarBottom {
  0% {
    transform: translateY(-70%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 검색창 */
.search-box {
    display: none;
    position: absolute;
    top: 65px;
    right: 10px;
    width: 200px;
    z-index: 1050;
}

.search-box input {
    width: 100%;
    padding: 5px 10px;
}

@media (min-width: 768px) {
    .search-box {
    right: 170px;
    }
}

#searchIcon_Mobile {
  filter: invert(1) brightness(100%);
  width: 24px;
  height:24px;
}

/* 모바일 버전*/
.navbar_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease;
}

.navbar_burger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  color: #000;
}

.navbar_burger_back {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  color: #fff;
}

.navbar_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0e0e;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transform: translateX(100%);
  z-index: 999;
  color: #000;
  transition: transform 0.3s ease;
}

.navbar_menu a {
  position: relative;
  color: #ffffff;
  font-size: 1.5rem;
  margin-left: 1rem;
  margin-bottom: 3rem;
  text-decoration: none;
}

.navbar_menu.active {
  transform: translateX(0);
}

.navbar_overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* 컨텐츠 영역 */
.content-section {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

/* 메인화면 탭그룹*/
.nav-btn-group-active {
  background-color:#006934 !important;
  border: solid 1px #e3e5e6 !important;
  color:#ffffff !important;
  padding: 10px 40px !important;
}

.nav-btn-group-none {
  background-color:#ffffff !important;
  border: solid 1px #e3e5e6 !important;
  color:#000000 !important;
  padding: 10px 40px !important;
}

@media (min-width: 992px) {
  /* PC 버전 CSS 입력*/

  .content-section {
    padding-top: var(--nav-height, 140px);
  }

  .navbar_overlay {
    display: none;
  }

  .navbar_burger {
    display: none;
  }

  .navbar_menu {
    display: none;
  }

  #mLogo {
    display:none;
  }
}

@media (max-width: 991.98px) {
  /* 모바일 버전 CSS 입력*/
  .content-section {
    padding-top: var(--nav-height, 80px);
  }

  .container.content-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar_main {
    display: none;
  }
  #mLogo {
    display:block;
  }


}