@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);
* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    border-collapse: collapse;
    word-break: keep-all;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 10px;
    color: #111;
}
img {
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    /* -ms-interpolation-mode: nearest-neighbor; IE (non-standard property) */
}
::selection {
    color: #ffffff;
    background: #111;
}
html {
    width:100vw;
    overflow-x:hidden;
    scroll-behavior: smooth;
}
.container {
    width: 100%;
    max-width: calc(1100px + 3em);
    margin: 0 auto;
    padding: 0 3em;
}
header {
    height: 32em;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 8em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
header.header-company {
    background-image: url(../img/bg-a.png);
}
header.header-packing {
    background-image: url(../img/bg-e.png);
}
header.header-machine {
    background-image: url(../img/bg-d.png);
}
header.header-service {
    background-image: url(../img/bg-c.png);
}
header h1 {
    position: relative;
    font-size: 2.4rem;
    color: #fff;
}
header h1::before {
    position: absolute;
    content: "";
    top: -1.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 4px;
    background: #fff;
}
header h3 {
    font-size: 1.6rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}
.switchWrapper {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: -2.2em 0 5em;
    /* overflow-x: hidden; */
    z-index: 9;
}
.switchWrapper::before {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 100vw;
    height: 4px;
    border-radius: 2px;
    background: #ffbc00;
    z-index: -1;
}
.switches {
    display: inline-block;
    white-space: nowrap;
    border-radius: 5em;
    /* overflow: hidden; */
    background: #f4f4f4;
}
.switches > li {
    position: relative;
    display: inline-block;
    width: 140px;
}
.switches.many > li {
    width: 120px;
}
.switches > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 4.3rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #a8a8a8;
}
.switches > li > a.currentPage {
    background: #ffbc00;
    color: #fff;
    border-radius: 5em;
}
.switches .switchDepth {
    position: absolute;
    display: none;
    min-width: 150%;
    padding: 4%;
    top: 100%;
    left: 50%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transform: translateX(-50%);
    z-index: 7;
}
.switches > li:hover .switchDepth {
    display: block;
}
.switches .switchDepth a {
    display: block;
    background: #fff;
    text-align: center;
    padding: 0.6em 0.4em;
    color: #777;
    font-weight: 500;
    font-size: 1.4rem;
    border-bottom: 1px solid #eee;
    border-radius: 5px;
}
.switches .switchDepth li:last-child a {
    border-bottom: 0px;
}
.switches .switchDepth a:hover {
    background: #ffbc00;
    color: #fff;
}
section {
    padding-bottom: 14em;
}
section.companyBg {
    background: url(../img/contentBg.png) no-repeat center bottom/contain;
}
input{
-webkit-appearance: none;
-webkit-border-radius:0;
}
button,
select,
input,
textarea {
    border: none;
    background-color: none;
    resize: none;
}
a,
button,
label,
input[type="checkbox"],
input[type="radio"] {
    cursor: pointer;
}
@media (max-width: 800px) {
    * {
        font-size: 8px;
    }
    .switches {
        overflow-x: scroll;
    }
    .switches li {
        width: 100px;
    }
    .switches.many li {
        width: 94px;
    }
}