html,
body,
div,
span,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
fieldset,
legend,
input,
select,
textarea,
table,
col,
colgroup,
thead,
tfoot,
tbody,
th,
td,
figure,
figcaption,
button {
    margin: 0;
    padding: 0;
    color: #333;
    font-family: 'Open Sans', 'Noto Sans KR', '맑은 고딕', '돋움', Dotum, Arial, sans-serif;
    border: 0;
    -webkit-text-size-adjust: 100%;
}

button,
input,
select {
    outline: 0;
}

html,
body {
    min-width: 320px;
}

/* 기본폰트 16px, 1rem=10px */
html {
    font-size: 62.5%;
}

body {
    color: #333;
    font-size: 16px;
    line-height: 1;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    -ms-word-wrap: break-word;
    -moz-word-break: keep-all;
    -ms-word-break: keep-all;
    word-break: keep-all;
}

/* form */

/* checkbox, radio */

.checks,
.radios {
    position: relative;
    display: flex;
    align-items: center;
}

.checks input[type="checkbox"],
.radios input[type="radio"] {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.checks input[type="checkbox"] + label,
.radios input[type="radio"] + label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    color: #333;
}

.checks input[type="checkbox"] + label {
    height: 2.4rem;
    padding-left: 4rem;
    padding-top: 0.2rem;
    line-height: 21px;
    font-size: 1.8rem;
    font-weight: 400;
}

.checks input[type="checkbox"] + label strong {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.checks input[type="checkbox"]:disabled + label,
.radios input[type="radio"]:disabled + label {
    cursor: default;
    pointer-events: none;
}

.checks input[type="checkbox"] + label:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 2.4rem;
    height: 2.4rem;
    content: "";
    border: 1px solid #d8dce6;
    border-radius: 3px;
    background: #fff;
}

.checks input[type="checkbox"] + label.big:before {
    width: 2.4rem;
    height: 2.4rem;
}

.checks input[type="checkbox"] + label:active:before,
.checks input[type="checkbox"]:checked + label:active:before {
    display: inline-block;
}

.checks input[type="checkbox"]:checked + label:before {
    color: #939393;
    border-color: #00b498;
    background: #00b498;
}

.checks input[type="checkbox"]:disabled:checked + label:before {
    vertical-align: middle;
    color: #939393;
    border-color: #ffaac0;
    background: #ffaac0;
}

.checks input[type="checkbox"]:disabled + label:before {
    vertical-align: middle;
}

.checks input[type="checkbox"]:checked + label:after {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.6rem;
    content: "\e908";
    color: #fff;
    font-family: 'icomoon' !important;
    font-size: 1.6rem;
}

.checks input[type="checkbox"]:checked + label.big:after {
    width: 2.4rem;
    height: 2.6rem;
    content: "\e908";
    color: #fff;
    font-family: 'icomoon' !important;
    font-size: 1.6rem;
}

.checks input[type="checkbox"]:disabled:checked + label:after {
    color: #fef5f6;
}

.checks input[type="checkbox"]:disabled + label {
    color: #939393;
}

.radios input[type="radio"] + label {
    height: 2.4rem;
    padding-left: 3.4rem;
    line-height: 2.4rem;
}

.radios input[type="radio"] + label:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 2.4rem;
    height: 2.4rem;
    content: "";
    text-align: center;
    vertical-align: middle;
    border: 1px solid #d8dce6;
    border-radius: 50%;
    background: #fff;
}

.radios input[type="radio"]:disabled:checked + label:before {
    border-color: #ffaac0;
    background: #ffaac0;
}

.radios input[type="radio"]:disabled + label {
    color: #939393;
}

.radios input[type="radio"]:checked + label:before {
    content: '';
    color: #4a4a4a;
    border-color: #00b498;
    background: #00b498;
}

.radios input[type="radio"]:checked + label:after {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    width: 1.2rem;
    height: 1.2rem;
    content: '';
    border-radius: 50%;
    background: #fff;
}

.radios input[type="radio"]:disabled:checked + label:after {
    background: #fef5f6;
}

/* select box */

.select-wrap {
    position: relative;
}

.select {
    width: 100%;
    height: 4rem;
    font-size: 1.6rem;
    padding: 0 28px 0 10px;
    cursor: pointer;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

.select-wrap::after {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    content: "\e911";
    pointer-events: none;
    color: #4a4a4a;
    font-family: 'icomoon' !important;
    font-size: 10px;
}

/* input */

input:disabled {
    cursor: default;
    background: #929292 !important;
}

input:focus {
    outline: none;
    border-color: #00b498 !important;
}

input::placeholder {
    color: #bdbdbd;
}

input:-ms-input-placeholder {
    color: #bdbdbd;
}

input::-moz-placeholder {
    color: #bdbdbd;
}

input::-webkit-input-placeholder {
    color: #bdbdbd;
}

input {
    width: 100%;
    height: 4rem;
    font-size: 1.6rem;
    color: #4A4A4A;
    background: #fff;
    border: 1px solid #d2d2d2;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 0 1rem;
}

/* textarea */

textarea {
    resize: none;
}

textarea:focus {
    border-color: #00b498;
}

textarea:disabled {
    background: #929292 !important;
}

textarea::placeholder {
    color: #bdbdbd;
}

textarea:-ms-input-placeholder {
    color: #bdbdbd;
}

textarea::-moz-placeholder {
    color: #bdbdbd;
}

textarea::-webkit-input-placeholder {
    color: #bdbdbd;
}

textarea {
    display: block;
    width: 100%;
    height: auto;
    font-size: 1.6rem;
    padding: 1rem;
    resize: none;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
}

textarea.textarea-default {
    height: 10rem;
}


/* 버튼 */

.btn {
    border: 0;
    border-radius: 5px;
    outline: 0;
    cursor: pointer;
}

.btn-m-mint {
    height: 4rem;
    font-size: 1.8rem;
    color: #fff;
    background: #00b498;
    padding: 0 2rem;
}

.btn-m-mint i {
    font-size: 1.4rem;
}

.btn-m-mint-line,
.btn-m-mint-line::after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-m-mint-line {
    display: block;
    position: relative;
    height: 4rem;
    font-size: 1.8rem;
    color: #00b498;
    background: none;
    border: 2px solid #00b498;
    padding: 0 2rem;
}

.btn-m-mint-line::before,
.btn-m-mint-line::after {
    position: absolute;
    content: '';
    background: #00b498;
    z-index: -1;
}

.btn-m-mint-line:hover {
    color: #fff;
}

.btn-m-mint i,
.btn-m-mint-line i {
    font-size: 1.4rem;
}

.btn-m-mint-line::after {
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
}

.btn-m-mint-line:hover::after {
    width: 100%;
}

.btn-m-gray {
    height: 4rem;
    font-size: 1.8rem;
    color: #fff;
    background: #929292;
    padding: 0 2rem;
}

.btn-mint {
    width: 30rem;
    height: 5rem;
    font-size: 2rem;
    color: #fff;
    background: #00b498;
    padding: 0 1rem;
}

.btn-search {
    width: 6.6rem;
    height: 6.6rem;
    background-color: #fff;
    border-radius: 0 1rem 1rem 0;
    padding: 1.8rem;
    margin-top: -6.6rem;
}

.btn-search img {
    width: 3rem;
    height: 3rem;
}

/* layout */
.container {
    width: 1200px;
    margin: 0 auto;
}

.row {
    padding: 0 3rem;
}


/* --------------------------------------- header ---------------------------------------*/
.back-mask {
    width: 100%;
    height: 1000rem;
    position: absolute;
    background: #000;
    opacity: 0.6;
    top: 0;
    left: 0;
    display: none;
    z-index: 999;
}

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
}

.header.mact {
    background: #fff;
}

.header.scrolled,
.header.hovered {
    background: #fff;
    border-bottom: 1px solid #dedede;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header:after {
    position: absolute;
    top: 80px;
    left: 0;
    display: none;
    visibility: hidden;
    width: 100%;
    height: 0;
    content: '';
    opacity: 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    background: #fff;
}

.header .container .logo-white {
    display: inline-block;
}

.header .container .logo {
    display: none;
}

.header .container .logo-white img,
.header .container .logo img {
    padding-left: 30px;
    width: 25rem;
}


.header .gnb > ul > li {
    position: relative;
    float: left;
}

.header .gnb > ul > li > span {
    display: inline-block;
    width: 12rem;
    cursor: pointer;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
}

.header.hovered:after {
    display: block;
    visibility: visible;
    height: 216px;
    opacity: 1;
}

.header.scrolled .container .logo-white,
.header.hovered .container .logo-white {
    display: none !important;
}

.header.scrolled .container .logo,
.header.hovered .container .logo {
    display: inline-block !important;
}

/* 메뉴 */

.header.hovered .gnb ul > li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    color: #333;
}

.header .gnb > ul > li > span > i {
    display: none;
}

.header.hovered .gnb ul > li:hover > span {
    color: #00B498;
    font-weight: 500;
}

.header.hovered .gnb ul > li > span:after {
    position: absolute;
    z-index: 3;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    content: "";
    transition: width .3s;
    transform: translateX(-50%);
    background-color: #00B498;
}

.header.hovered .gnb ul > li:hover > span:after {
    width: 100%;
    transition: width .3s;
}

.header .snb {
    display: none;
}

.header.hovered .snb {
    position: absolute;
    z-index: 2;
    top: 80px;
    left: 0;
    display: block !important;
    width: 100%;
    height: 216px;
}

.header.hovered .snb > li {
    text-align: center;
}

.header.hovered .snb > li > a {
    display: block;
    height: auto;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 400;
}

.header.hovered .snb > li > a:hover {
    color: #00B498;
}

.header.hovered .snb > li:first-child > a {
    padding-top: 30px;
}

.header.hovered .snb > li:last-child > a {
    padding-bottom: 30px;
}


/* 모바일 메뉴버튼  */

.header .mobile-btn {
    display: none;
    position: fixed;
    z-index: 100;
    top: 17px;
    right: 30px;
    width: 20px;
    height: 16px;
    cursor: pointer;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.header .mobile-btn.active .top {
    -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
    transform: translateY(9px) translateX(0) rotate(45deg);
    background: #333;
}

.header .mobile-btn.active .middle {
    opacity: 0;
}

.header .mobile-btn.active .bottom {
    -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
    transform: translateY(-7px) translateX(0) rotate(-45deg);
    background: #333;
}

.header .mobile-btn span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    cursor: pointer;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    background: #333;
}

.header.scrolled .mobile-btn span {
    background: #333;
}

.header .mobile-btn span:nth-of-type(2) {
    top: 8px;
}

.header .mobile-btn span:nth-of-type(3) {
    top: 16px;
}


/* 모바일 메뉴 */
.gnb_mb {
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    overflow-y: auto;
}

.header .gnb_mb.active,
.header.hovered .gnb_mb.active {
    background: #fff;
    border-bottom: 1px solid #dedede;
}

.mainmenu_mb {
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

.mainmenu_mb a {
    display: block;
    color: #fff;
}

.mainmenu_mb > li {
    position: relative;
    background: #fff;
}

.mainmenu_mb > li > a {
    width: 100%;
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    text-align: left;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    border-top: 1px solid #e9e9e9;
    box-sizing: border-box;
}

.mainmenu_mb > li:last-child > a {
    border-bottom: 1px solid #e9e9e9;
}

/* moible web 에서는 touch시 hover 가 적용되어 한번 더 터치 해야 hover 효과가 사라짐
.header.hovered .mainmenu_mb > li:hover > a {
    color: #00B498;
    font-weight: 400;
}
*/

.submenu_mb {
    position: relative;
    display: none;
    padding-bottom: 1rem;
}

.submenu_mb li {
    position: relative;
    background: #fff;
}

.submenu_mb li a {
    border-top: 0;
    font-size: 1.5rem;
    line-height: 40px;
    padding: 0 50px;
    color: #333;
}

.submenu_mb li a:hover {
    color: #00B498;
}



/* --------------------------------------- footer ---------------------------------------*/
.footer {
    padding: 5rem 0 8rem;
    background: #f5f5f5;
}

.footer-keyword {
    position: relative;
    display: block;
}

.footer-bullet:nth-child(1):after {
    content: '';
    position: absolute;
    right: 23.2rem;
    top: -6rem;
    width: 2rem;
    height: 2rem;
    background: rgba(39, 126, 214, 0.4);
    transform: rotate(45deg);
    z-index: 3;

}

.footer-bullet:nth-child(2):after {
    content: '';
    position: absolute;
    right: 12.2rem;
    top: -6rem;
    width: 2rem;
    height: 2rem;
    background: rgba(0, 191, 165, 0.4);
    transform: rotate(45deg);
    z-index: 3;

}

.footer-bullet:nth-child(1) em {
    position: absolute;
    right: 27.7rem;
    top: -7.5rem;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.1rem;
    text-align: center;
    color: #FFFFFF;
    z-index: 1;
}

.footer-bullet:nth-child(2) em {
    position: absolute;
    right: 16.4rem;
    top: -6.4rem;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.1rem;
    text-align: center;
    color: #FFFFFF;
    z-index: 1;
}

.footer-bullet:nth-child(3) em {
    position: absolute;
    right: 5.3rem;
    top: -6.2rem;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.1rem;
    text-align: center;
    color: #FFFFFF;
    z-index: 1;
}

.footer-bullet:nth-child(1) span {
    position: absolute;
    right: 24.8rem;
    top: -10rem;
    display: inline-block;
    width: 10rem;
    height: 10rem;
    transform: rotate(45deg);
    background: #2D8AE7;
}

.footer-bullet:nth-child(2) span {
    position: absolute;
    right: 13.5rem;
    top: -10rem;
    display: inline-block;
    width: 10rem;
    height: 10rem;
    transform: rotate(45deg);
    background: #00B498;
}

.footer-bullet:nth-child(3) span {
    position: absolute;
    right: 2.5rem;
    top: -10rem;
    display: inline-block;
    width: 10rem;
    height: 10rem;
    transform: rotate(45deg);
    background: #079EBF;
}

.footer .footer-info-wrap {
    overflow: hidden;
    margin-bottom: 3rem;
}
.pc_footer ul li {
    position: relative;
    display: inline-block;
    padding-right: 2rem;
}

.pc_footer ul li:after {
    position: absolute;
    content: '';
    right: 0.7rem;
    top: 0.5rem;
    width: 0.1rem;
    height: 1rem;
    background: #929292;
}

.pc_footer ul li:last-child:after {
    display: none;
}

.m_footer {
    display: none;
}

.footer_adress h5 {
    position: relative;
    display: inline-block;
    color: #333;
    font-size: 1.4rem;
    line-height: 1.9rem;
    padding-bottom: 1.5rem;
}

.footer_adress a {
    color: #929292;
}

.pc_footer {
    position: relative;
    display: block;
    color: #929292;
    font-size: 1.2rem;
    line-height: 1.8rem;
}

.footer .txt {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.4rem;
    font-weight: 500;
}

.footer .txt2 {
    margin-bottom: 20px;
    ;
    color: #333;
    font-size: 1.4rem;
    font-weight: 500;
}

.footer .footer-link-wrap {
    position: relative;
    padding-bottom: 36px;
}

.footer_link {
    display: flex;
}

.footer_link li {
    padding-right: 3rem;
    font-size: 1.2rem;
    font-weight: 400;
    color: #929292;
    word-break: keep-all;
    line-height: 1.8rem;
}

.footer_link li:last-child {
    padding-right: 0;
}

/*****************************************
반응형 코드
*****************************************/

@media (max-width: 1200px) {
    .container {
        width: 100%;
    }

    .header .gnb > ul > li > span {
        width: 10rem;
    }

    .header.hovered .snb > li > a {
        font-size: 14px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .gnb_mb {
        display: none;
    }
}

@media (max-width: 1024px) {

    .gnb {
        display: none;
    }

    .mainmenu_mb {
        display: block;
    }

    .mbtn {
        position: absolute;
        background: url(../image/btn.svg);
        right: 25px;
        top: 10px;
        width: 30px;
        height: 30px;
        transition: transform 0.3s;
    }

    .mbtn.on {
        transform: rotate(180deg);
    }

    .header:after,
    .header.hovered:after {
        display: none;
    }

    .header .container {
        position: relative;
        display: block;
        height: 50px;
        padding: 0;
    }

    .header .container .logo-white,
    .header .container .logo {
        position: relative;
        padding: 15px 30px;
    }

    .header .container .logo-white img,
    .header .container .logo img {
        padding-left: 0;
        width: 180px;
    }

    .header .container .logo {
        display: none;
    }


    .header .mobile-btn {
        display: block;
    }

    .footer-keyword {
        display: none;

    }

}

@media (max-width: 768px) {
    .pc_footer {
        display: none;
    }

    .m_footer {
        position: relative;
        display: block;
        color: #929292;
        font-size: 1.3rem;
        line-height: 2rem;
    }
}

@media (max-width: 480px) {

    .footer-link-wrap {
        position: relative;
        display: block;
        width: 100%;
    }

    .footer_link {
        justify-content: space-between;
    }
}

/*
 * 2021-03-09 핫산
 * 추가모바일 웹에서 hover 효과 제거
*/
@media (hover: hover) and (pointer : fine) {
    .header.hovered .mainmenu_mb > li:hover > a {
        color: #00B498;
        font-weight: 400;
    }
}
