#title_wrap {
  width: 100%;
  height: 500px;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/common/title_bg.png) no-repeat center / cover;
} 

#title_wrap .wrapper {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#title_wrap .wrapper h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 50px;
  color: #fff;
}

#title_wrap .wrapper .inner {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

#title_wrap .wrapper .inner img {
  width: auto;
  height: auto;
}

#title_wrap .wrapper .inner p {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 18px;
  color: #fff;
}

#category_wrap {
  width: 100%;
  height: 80px;
  background: #0B1633;
  display: flex;
  align-items: center;
  justify-content: center;
}

#category_wrap ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

#category_wrap ul li {
  height: 100%;
}

#category_wrap ul li a {
  font-family: 'PB_R';
	font-weight: normal;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s;
  position: relative;
}

#category_wrap ul li.active a::after {
  content: "";
  width: 150px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}

#category_wrap ul li.active a {
  font-family: 'PB_B';
	font-weight: bold;
}

#category_wrap ul li:hover a {
  font-family: 'PB_B';
	font-weight: bold;
}

@media (max-width: 1200px) {
  #title_wrap {
    padding-top: 50px;
  }

  #title_wrap .wrapper h2 {
    font-size: 40px;
  }
}

@media (max-width: 700px) {
  #title_wrap {
    height: 350px;
  }

  #title_wrap .wrapper h2 {
    font-size: 30px;
  }

  #title_wrap .wrapper .inner {
    gap: 15px;
  }

  #category_wrap {
    height: 60px;
  }

  #category_wrap ul li a {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  #title_wrap {
    padding-top: 50px;
    height: 250px;
  }

  #title_wrap .wrapper h2 {
    font-size: 20px;
  }

  #title_wrap .wrapper .inner p {
    font-size: 12px;
  }

  #title_wrap .wrapper .inner img.arrow {
    width: 6px;
  }

  #title_wrap .wrapper .inner img {
    width: 16px;
  }

  #category_wrap {
    height: 50px;
  } 

  #category_wrap ul li a {
    font-size: 12px;
  }

  #category_wrap ul {
    gap: 30px;
  }

  #category_wrap ul li.active a::after {
    width: 50px;
  }
}

@media (max-width: 400px) {
  #category_wrap ul {
    gap: 20px;
  }
}