@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard.css");
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  letter-spacing: -0.05em;
}
.serif {
  font-family: "Noto Serif KR", serif;
}
.pre {
  font-family: "Pretendard", sans-serif;
}
body {
  position: relative;
  overflow-x: hidden;
  font-family: "Pretendard", sans-serif;
  margin: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  padding-top: 186.94px;
  margin: 0 auto;
}
a {
  color: #202020;
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0px;
}
li {
  list-style: none;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong {
  margin: 0;
}
small {
  font-style: normal;
}
.center {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.point_color {
  color: #b0cf00;
}
.sub_color {
  color: #0350a0;
}
/* header */
.header {
  width: 1920px;
  position: fixed;
  left: 50%;
  top: 0px;
  z-index: 102;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.5s;
  transform: translateX(-50%);
}
.header.headroom--unpinned {
  top: -98px;
}
.hd_top {
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
.hd_top h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.hd_center {
  max-width: 1670px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0px;
}
.hd_menu {
  display: flex;
  align-items: center;
}
.hd_menu a {
  display: flex;
  align-items: center;
  padding-left: 10px;
  line-height: 40px;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  border-radius: 999px;
  border: 2px solid #558ed5;
  padding-right: 19px;
  margin-right: 8px;
}

.hd_menu a.hd_menu01 {
  border-color: #41d51f;
}

.hd_menu a.hd_menu02 {
  border-color: #eecf09;
}

.hd_menu a.hd_menu03 {
  border-color: #df1f19;
}

.hd_menu a > img {
  margin-right: 7px;
}
.hd_menu a:last-child {
  margin: 0;
}
.main_menu {
  display: flex;
  align-items: center;
  max-width: 1725px;
  width: 100%;
  margin: 0 auto;
}
.main_menu > li > a {
  font-size: 18px;
  font-weight: 400;
  color: #333;
  position: relative;
  transition: all 0.2s;
  width: 195px;
  text-align: center;
  display: inline-block;
  padding: 16.5px 0 16px 0;
}
.main_menu > li > a span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 26px;
}

.main_menu > li > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  height: 4px;
  background-color: #558ed5;
  transition: all 0.2s;
}
.main_menu > li > a::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 24px;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e2e2e2;
}
.main_menu > li:last-child > a::before {
  display: none;
}
.main_menu a:hover {
  color: #558ed5;
}
.main_menu a:hover:after {
  width: 100%;
}
@media all and (max-width: 1024px) {
  .main_menu {
    justify-content: space-evenly;
  }
  .main_menu > li > a {
    width: initial;
  }
  .hd_center {
    justify-content: center;
  }
  .hd_center > img {
    display: none;
  }
  .hd_menu {
    display: none;
  }

  .main_menu > li > a::before {
    display: none;
  }
}
