@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    letter-spacing: -0.05em;
}
.pre {
    font-family: 'Pretendard', sans-serif;
}
.en_font {
    font-family: 'Montserrat', 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;
}
a {
    color: #1a1a1a;
    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: 1440px;
    width: 100%;
    margin: 0 auto;
}
/* header */
.header {
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 102;
    background-color: #fff;
    transition: all 0.2s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.hd_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
.hd_menu {
    display: flex;
    align-items: center;
}
.hd_menu li {
    margin-right: 35px;
}
.hd_menu li:last-child {
    margin-right: 0px;
}
.hd_menu > li > a {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    position: relative;
    line-height: 100px;
    display: inline-block;
}
.hd_menu a:hover {
    color: #1b6ba8;
    font-weight: 600;
}
.hd_menu > li > a:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 38px;
    background-color: #1b6ba8;
    width: 0%;
    transition: all 0.2s;
    height: 2px;
}
.hd_menu > li > a:hover::after {
    width: 100%;
}
