@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;
}
body {
    position: relative;
    overflow-x: hidden;
    font-family: 'Pretendard', sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    word-break: keep-all;
}
a {
    color: #fff;
    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: 1264px;
    width: 100%;
    margin: 0 auto;
}
/* header */
.header {
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 102;
    padding: 0px 110px;
}
.header > a {
    position: absolute;
    top: 50%;
    right: 29px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: #222;
}

.header > a > img {
    margin-bottom: 6px;
}
.hd_wrap {
    padding: 0px 130px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    background-color: #153d81;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.hd_menu {
    display: flex;
    align-items: center;
}
.hd_menu a {
    /* margin-left: 39px; */
    padding: 0px 18px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    position: relative;
    transition: all 0.2s;
    z-index: 1;
    letter-spacing: normal;
}
.hd_menu a::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 39px;
    transition: all 0.2s;
    border-radius: 8px;
    z-index: -1;
}
.hd_menu a:hover {
    color: #153d81;
}
.hd_menu a:hover::before {
    background-color: #fff;
}
@media screen and (max-width: 1600px) {
    .header {
        padding: 0px 40px;
    }
    .hd_wrap {
        padding: 0px 35px;
        height: 60px;
    }
    .hd_menu a {
        margin-left: 16px;
        font-size: 14px;
    }
    body > header > nav > h1 {
        width: 17%;
    }
}
