@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable.css");

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size:13px;
    font-weight:400;
    color:#666;
    width:100%;
    max-width:1920px;
    overflow-y:overlay;
    background-color:#F5F5F5;
}

body::-webkit-scrollbar {
    width:6px;
    background-color:transparent;
}

body::-webkit-scrollbar-thumb {
    height:17%;
    background-color:rgba(0,0,0,0.3);
}

body::-webkit-scrollbar-track {
    background-color:transparent;
}

input, select, button, textarea {
    appearance:none;
    border-radius:0;
    border:0;
    background:transparent;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-weight:400;
    outline:0;
}

textarea {
    resize:none;
}

a, a:hover, a:active, a:focus {
    color:#666;
    text-decoration:none;
}

li {
    list-style:none;
}

img {
    vertical-align:middle;
    border:0;
}

h1, h2, h3, h4, h5, h6 {
    font-size:100%;
    font-weight:200;
}

.hidden {
    position:absolute;
    top:-9999px;
    left:-9999px;
    width:1px;
    height:1px;
    overflow:hidden;
}

.container {
    margin:0 auto;
    width:100%;
    max-width:1200px;
    padding:0 10px;
}

header {
    background-color:#fff;
    width:100%;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

header div.container {
    width:100%;
    height:200px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

h1 a {
    display:block;
    width:160px;
    height:64px;
    background:url('/img/io_logo.png') 50% 50% no-repeat;
    background-size:contain;
}

h1 {
    margin-bottom:20px;
}

form.search-box {
    width:70%;
    display:grid;
    grid-template-columns:1fr 60px;
    height:60px;
    overflow:hidden;
    border-radius:30px;
}

form.search-box .search-input {
    background-color:#F1F1F1;
    height:100%;
    width:100%;
    padding:0 20px;
    font-size:18px;
}

form.search-box .search-icon {
    cursor:pointer;
    background-color:#a79ee1;
    background-image:url('/img/search-icon.svg');
    background-repeat:no-repeat;
    background-size:24px;
    background-position:50% 50%;
}

footer {
    background-color:#646464;
    color:#fff;
    padding:0 0 40px;
    line-height:160%;
}

footer a:hover, footer a:focus, footer a:active {
    color:#fff;
}

footer a.sitename {
    font-size:14px;
    font-weight:700;
    display:inline-block;
    padding-top:30px;
}

footer a {
    color:#fff;
}

footer span {
    font-weight:200;
}

footer .topline {
    padding-top:6px;
    padding-bottom:6px;
    border-bottom:1px solid #7c7c7c;
}

@media all and (max-width:1024px) {
    .container {
        padding:0 20px;
    }

    h1 a {
        width:104px;
        height:42px;
    }

    h1 {
        margin-bottom:10px;
    }

    form.search-box {
        height:42px;
        border-radius:21px;
        grid-template-columns:1fr 42px;
    }
}

@media all and (max-width:768px) {
    header div.container {
        height:130px;
    }

    form.search-box {
        width:100%;
    }
}