@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;
}
.en_font {
    font-family: 'Roboto', sans-serif;
}
.serif {
    font-family: 'Noto Serif KR', serif;
}
.pre {
    font-family: 'Pretendard', sans-serif;
}
.sans {
    font-family: 'Noto Sans KR', 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;
    min-width: 1903px;
    /* padding-top: 80px; */
}
a {
    color: #333;
    text-decoration: none;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0px;
}
li {
    list-style: none;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
.m_con {
    display: none;
}
.blind {
    text-indent: -9999px;
    line-height: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong {
    margin: 0;
}
.center {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
/* header */
.header {
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 101;
    transition: all 0.2s;
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.hd_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hd_wrap > ul {
    display: flex;
}
.hd_wrap > ul > li > a {
    font-size: 21px;
    font-weight: 400;
    color: #282627;
    position: relative;
    line-height: 80px;
    display: inline-block;
    margin-left: 51px;
}
.hd_wrap > ul > li > a::after {
    content: '';
    display: block;
    width: 0%;
    height: 3px;
    position: absolute;
    background-color: #2e3349;
    left: 50%;
    transform: translateX(-50%);
    bottom: 17px;
    transition: all 0.2s;
}
.hd_wrap > ul > li > a:hover::after {
    width: 102%;
}
.hd_wrap > ul > li > a:hover {
    color: #2e3349;
    font-weight: 700;
}
