@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=Noto+Serif+KR:wght@200..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;
}
.serif {
    font-family: 'Noto Serif KR', 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;
}
:root {
    --main-color: #003777;
    --black-color: #333;
    --white-color: #fff;
}
.main_color {
    color: var(--main-color);
}
/* header */
.header {
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 102;
    background-color: var(--white-color);
    transition: all 0.2s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 60px;
}
.hd_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
.hd_menu {
    display: flex;
    align-items: center;
}
.hd_menu > li > a {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    position: relative;
    padding: 0px 20px;
    line-height: 100px;
    display: inline-block;
}
.hd_menu a:hover {
    color: var(--main-color);
    font-weight: 700;
}
