/*서브탭메뉴*/
.smenu_wrap {
  display: none;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #1b3955;
}
.smenu_wrap ul {
  width: 1400px;
  height: 60px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;
}

.smenu_wrap ul li {
  /* flex: 1; */
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  border-right: 1px solid white;
}
.smenu_wrap ul li:last-child {
  border-right: 0;
}
.smenu_wrap ul li a {
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0 25px;
  /* background: #000; */

  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 60px;
  color: #1b3955;

  /* opacity: 0.8; */
}

.smenu_wrap ul li a.smtab_on {
  /* opacity: 1; */
  font-weight: 700;
  position: relative;
}

.smenu_wrap ul li a.smtab_on::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);

  width: 100%;
  height: 5px;
  background: #a05f2d;
  display: block;
}
