@charset "utf-8";

img {
    vertical-align: middle;
    max-width: 100%;
    transition: all 0.3s;
}
a {
    transition: all 0.3s;
    cursor: pointer;
}
tag {
    transition: all 0.3s;
    cursor: pointer;
}
button {
    border:none;
    transition: all 0.3s;
    cursor: pointer;
}
p, ul, li, div, section, header, footer, aside, article, h1, h2, h3, h4, h5, h6 {
    position: relative;
}
input[type="text"] {
    padding:13px 20px;
    width:240px;
    height:50px;
    border:1px solid #c2c2c2;
    border-radius: 5px;
    font-size:16px;
    box-sizing: border-box;
}
textarea {
    padding:13px 20px;
    width:240px;
    height:50px;
    border:1px solid #c2c2c2;
    border-radius: 5px;
    font-size:16px;
    box-sizing: border-box;
    resize: none;
}

/* 포지션 */
.absol {
    position: absolute;
}

/* 불투명도 */
.op100 {
    opacity: 1.0 !important;
}
.op50 {
    opacity: 0.5 !important;
}

/* pc mobile show */
.pc-show {
    display: block;
}
.mb-show {
    display: none;
}

/* 텍스트 숨김 */
.txt-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}

/* 폰트 컬러 */
.fc-blue {
    color:#3B68D7;
}
.fc-red {
    color:#FF4848;
}

/* 폰트 굵기 */
.fw-bold {
    font-weight: bold;
}
.fw-nm {
    font-weight: normal;
}

/* 무조건 안보이게 */
.invisible {
    display: none !important;
}

/* 그냥 안보이게 */
.none {
    display: none;
}

/* 텍스트 정렬 */
.tac {
    text-align: center;
}
.tal {
    text-align: left;
}
.tar {
    text-align: right;
}

/* block 요소 가운데 정렬 */
.mlr-auto {
    margin-left:auto;
    margin-right:auto;
}

/* flex css */
.flex {
    display: flex;
}
.flex-ac {
    align-items: center;
}
.flex-afs {
    align-items: flex-start;
}
.flex-afe {
    align-items: flex-end;
}
.flex-as {
    align-items: stretch;
}
.flex-jsb {
    justify-content: space-between;
}
.flex-jfs {
    justify-content: flex-start;
}
.flex-jc {
    justify-content: center;
}
.flex-jl {
    justify-content: left;
}
.flex-jr {
    justify-content: right;
}
.flex-dc {
    flex-direction: column;
}

/* overflow */
.of-y-h {
    overflow-y: hidden;
}
.of-w-h {
    overflow-w: hidden;
}
.of-h {
    overflow: hidden;
}

/* text */
.underline {
    text-decoration: underline;
}

/* header */
header {
    position: fixed;
    top:0;
    width:100%;
    height: 105px;
    z-index: 999;
    transition: 0.2s;
}
header.top {
    background: none;
}
header.scroll {
    height: 67px;
    background: #fff;
    box-shadow: 0px 0px 4px rgba(100,100,100,0.1);
}
header .header-inner {
    padding:0 20px;
    margin:0 auto;
    width:100%;
    max-width: 1200px;
    height: inherit;
}
header .logo-img {
    height: 33px;
}
.lang-menu {
    gap:0 19.5px;
}
.header-menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 30px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}
.header-menu-btn a {
    font-size:16px;
    position: relative;
    font-weight: normal;
    color:#707070;
}
.header-menu-btn a.lang-btn {
    opacity: 0.46;
}
.header-menu-btn a.lang-btn.active {
    opacity: 1.0;
}
.header-menu-btn a:hover {
    text-decoration: underline;
    text-underline-offset:4px;
}

footer {
    padding:56px 0 48px 0;
    background: #000;
}
footer .cont-wrap {
    gap:25px;
    margin:0 auto;
    width:100%;
    max-width: 1200px;
    color:#fff;
    font-size:15px;
    letter-spacing: -0.5px;
}
footer .cont-wrap a:hover {
    text-decoration: underline;
    text-underline-offset:4px;
}


/* 반응형 코드 */
@media all and (max-width: 1240px) {
    footer .cont-wrap {
        padding:0 20px;
    }
}
@media all and (max-width: 1023px) {
    .pc-show {
        display: none;
    }
    .mb-show {
        display: block;
    }
}
@media all and (max-width: 640px) {
    header {
        height: 19.5vw;
    }
    header.scroll {
        height: 12.5vw;
    }
    header .header-inner {
        padding:0 4.65vw;
    }
    header .logo-img {
        height: 7.65vw;
    }
    .header-menu-btn {
        padding:0 2.3vw;
    }
    .header-menu-btn a {
        font-size:2.8vw;
    }
    .lang-menu {
        gap:0 2.3vw;
        font-size:2.8vw;
    }

    input[type="text"] {
        padding:3.75vw 4.5vw;
        height: 11.6vw;
        font-size:3.25vw;
    }
    textarea {
        padding:3.75vw 4.5vw;
        font-size:3.25vw;
    }

    footer {
        padding:8.85vw 0 8.15vw 0;
    }
    footer .cont-wrap {
        gap:5.5vw;
        flex-wrap: wrap;
        padding:0 4.65vw;
        font-size:3.45vw;
    }
    footer .cont-wrap .copy {
        width: 100%;
    }
}




















