/*
 * Copyright inpleworks, Co.
 * default is Mobile
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');

@font-face {
    font-family: "CeraRoundPro-Bold";
    src: url('/layouts/xet_debut/fonts/Cera-Round-Pro-Bold.eot');
    src: url('/layouts/xet_debut/fonts/Cera-Round-Pro-Bold.eot?#iefix') format('embedded-opentype'),
        url('/layouts/xet_debut/fonts/Cera-Round-Pro-Bold.woff2') format('woff2'),
        url('/layouts/xet_debut/fonts/Cera-Round-Pro-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gosanja';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.0/Gosanja.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* reset
/* ------------------------------------------------------------------------------------------------------------------ */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    /* font-size: 14px; */
    line-height: 1.42857143;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

body {
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    scroll-behavior: smooth; /* 전체 스크롤 부드럽게 */
}

html,
body,
table,
th,
td,
button,
input,
select {
    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: 500;
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
textarea,
p,
figure,
fieldset {
    margin: 0;
    padding: 0;
}

fieldset,
img {
    border: 0 none;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

a,
input {
    outline: none;
}

:focus {
    outline: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

section h3 {
    font-size: 35px;
}

section h6 {
    font-size: 20px;
    line-height: 1.5;
}

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

audio:not([controls]) {
    display: none;
}

/* embed,
object,
video {
    max-width: 100%;
} */

.xet-layout-body {
    overflow: hidden;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Typography
/* ------------------------------------------------------------------------------------------------------------------ */
h1 {
    font-weight: 600;
    letter-spacing: -1px;
    font-size: 70px;
    word-break: keep-all;
    font-family: "Gosanja", "Noto Sans KR", "Apple SD Gothic Neo", "Nanum Gothic", "Malgun Gothic", "�뗭�", Dotum, "Lucida Sans", "Trebuchet MS", Arial, Tahoma, sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.3em;
}

h1 .thin {
    font-weight: 400;
}

h2 {
    font-weight: 500;
    font-size: 45px;
}

h2 .thin {
    font-weight: 300;
}

h3 {
    font-weight: 400;
}

h3 .thin {
    font-weight: 200;
}

h4 {
    font-weight: 400;
}

h5 {
    font-weight: 400;
    font-size: 25px;
}

h6 {
    font-weight: 400;
    font-size: 22px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* HEADER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-header {
    width: 100%;
    z-index: 1000;
    position: relative;
    height: 60px;
    background: #fff;
}

#xet-header>div {
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* scroll to fixed */
#xet-header>.scroll-fixed {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    -moz-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    -webkit-animation-name: animationFade;
    -moz-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-moz-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        transform: none;
    }
}

#xet-header>.scroll-fixed .xet-logo a,
#xet-header>.scroll-fixed .xet-nav-ul>li>a,
#xet-header>.scroll-fixed .xet-nav-ul>li>button {}

#xet-header>.scroll-fixed .xet-logo a .logo-img-b {
    display: block !important;
}

/* dark */
#xet-header.dark>.scroll-fixed {
    background: #1e1e1e !important;
    border-bottom: 0 !important;
}

#xet-header.dark>.scroll-fixed .xet-logo a,
#xet-header.dark>.scroll-fixed .xet-nav-ul>li>a,
#xet-header.dark>.scroll-fixed .xet-nav-ul>li>button {
    color: #fff !important;
}

#xet-header.dark>.scroll-fixed .xet-logo a .logo-img-w {
    display: block !important;
}

#xet-header.dark>.scroll-fixed .xet-logo a .logo-img-b {
    display: none !important;
}

/* Logo
----------------------------------------------------------- */
.xet-logo {
    width: 50%;
    margin: 0 auto;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.xet-logo a {
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 40px;
    /* margin-top: 13%; */
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #111;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    font-family: "CeraRoundPro-Black", "Noto Sans KR", "Apple SD Gothic Neo", "Nanum Gothic", "Malgun Gothic", "�뗭�", Dotum, "Lucida Sans", "Trebuchet MS", Arial, Tahoma, sans-serif;
}

.xet-logo a img {
    max-width: 100px;
}

#xet-header .xet-logo a .logo-img-b,
#xet-header.dark .xet-logo a .logo-img-w {
    display: block;
}

/* NAV - Dropdown
----------------------------------------------------------- */
.xet-nav-ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.xet-nav-ul>li {
    position: relative;
    float: left;
    margin: 25px 0 25px 25px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.xet-nav-ul>li>a .child {
    display: none;
    padding-left: 5px;
    color: #777;
}

.xet-nav-ul>li>a,
.xet-nav-ul>li>button {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    height: 60px;
    line-height: 60px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    margin: 0;
    padding: 0;
    background: none;
    color: #111;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    font-family: "CeraRoundPro-Bold", sans-serif;
}

.xet-nav-ul>li>a::after,
.xet-nav-ul>li>button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #1a1f71;
    width: 0;
    height: 2px;
}

.xet-nav-ul>li.li-btn {
    margin: 0;
}

.xet-nav-ul>li.li-btn>a,
.xet-nav-ul>li.li-btn>button {
    width: auto;
    font-size: 16px;
    text-align: center;
    color: #111;
}

/* .xet-nav-ul>li>a:hover {
    color: #1a1f71;
    border-bottom: 2px solid #1a1f71;
    transition: none;
} */

.xet-nav-ul>li>a:hover::after,
.xet-nav-ul>li>button:hover::after {
    animation: bar 0.3s normal forwards;
}

@keyframes bar{
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
}

/* Hover color NAV 1차 */

.xet-nav-ul>li>a.current {
    color: #ff0000 !important;
    /* border-bottom: 2px solid #1a1f71; */
    border-bottom: none !important;
}

/* 2차 메뉴 */
.xet-nav-ul ul {
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -15px;
    top: calc(100% + 25px);
    width: 200px;
    list-style: none;
    margin: 0;
    padding: 1px 0;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 0;
    box-shadow: 0 4px 5px -3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;
}

/* 언어선택 리스트 */
.xet-nav-ul ul.lang-list {
    left: auto;
    right: -15px;
    width: 140px;
}

.xet-nav-ul ul.lang-list li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.xet-nav-ul ul.lang-list li button {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 12px;
    cursor: pointer;
    font-weight: normal;
    padding: 10px 12px;
    border: 0;
    background: none;
    color: #555;
    border-left: solid 6px transparent;
    -o-transition: border 0.2s linear;
    -moz-transition: border 0.2s linear;
    -webkit-transition: border 0.2s linear;
    transition: border 0.2s linear;
}

.xet-nav-ul ul li {
    position: relative;
    float: none;
    height: auto;
    line-height: 1.42857143;
}

.xet-nav-ul ul li:first-child {
    border-top: 0;
}

.xet-nav-ul ul li a {
    position: relative;
    display: block;
    font-size: 13px;
    cursor: pointer;
    white-space: normal;
    font-weight: normal;
    padding: 14px 22px 14px 14px;
    margin: 0;
    color: #333;
    border-left: solid 6px transparent;
    -o-transition: border 0.2s linear;
    -moz-transition: border 0.2s linear;
    -webkit-transition: border 0.2s linear;
    transition: border 0.2s linear;
    font-family: 'Noto Sans KR', sans-serif;
    text-align: left;
}

.xet-nav-ul ul li span.child {
    position: absolute;
    right: 12px;
    top: 14px;
    font-size: 11px;
    font-weight: normal;
    text-align: center;
    padding: 0;
    width: 12px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    color: #111;
}

.xet-nav-ul ul li:hover>a,
.xet-nav-ul ul li:hover>button {
    border-left-color: #1a1f71;
}

.xet-nav-ul ul li:hover span.child {
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/* 3차 메뉴 */
.xet-nav-ul ul ul {
    top: 0;
    left: 100%;
}

/* Show NAV 2차, 3차 */
.xet-nav-ul li.hovered>ul,
.xet-nav-ul ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;
}

/* Hover NAV 2차, 3차 */
.xet-nav-ul ul li:hover>a::after {
    width: 100%;
}

.xet-nav-ul ul li.current::after {
    height: 1px;
    background-color: #58c4a7;
}

.xet-nav-ul ul li.current>a {}

/* Mobile Login icon 
----------------------------------------------------------- */
#xet-xs-login {
    z-index: 3;
    position: absolute;
    right: 0;
    top: 0;
    display: none;
}

#xet-xs-login.toggle-btn-right {
    left: 0;
    right: auto;
}

/* Mobile hamburger icon 
----------------------------------------------------------- */
#xet-toggle-btn {
    z-index: 3;
    position: absolute;
    left: 0;
    top: 0;
}

#xet-toggle-btn.toggle-btn-right {
    left: auto;
    right: 0;
}

.xet-toggle-menu {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    font-size: 0 !important;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    color: transparent;
    border: 0;
    background: none;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.xet-toggle-menu span,
.xet-toggle-menu span::before,
.xet-toggle-menu span::after {
    /* hamburger icon in CSS */
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 24px;
    background: #333;
}

.xet-toggle-menu span {
    /* line in the center */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -2px;
    margin-left: -12px;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
    background: #333;
}

.xet-toggle-menu span::before,
.xet-toggle-menu span::after {
    /* other 2 lines */
    content: "";
    right: 0;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}

.xet-toggle-menu span::before {
    /* menu icon top line */
    top: -6px;
}

.xet-toggle-menu span::after {
    /* menu icon bottom line */
    top: 6px;
}

.xet-toggle-menu.push-active span {
    /* hide line in the center */
    background: none;
}

.xet-toggle-menu.push-active span::before,
.xet-toggle-menu.push-active span::after {
    /* keep visible other 2 lines */
    background: #333;
}

.xet-toggle-menu.push-active span::before {
    -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
    transform: translateX(4px) translateY(-3px) rotate(45deg);
}

.xet-toggle-menu.push-active span::after {
    -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
    transform: translateX(4px) translateY(2px) rotate(-45deg);
}

/* Header Dark Color
----------------------------------------------------------- */
#xet-header.dark>div {
    background: #1e1e1e;
}

#xet-header.dark .xet-logo a {
    color: #fff;
}

#xet-header.dark .xet-nav-ul>li>a,
#xet-header.dark .xet-nav-ul>li>button {
    color: #fff;
}

#xet-header.dark .xet-nav-ul ul {
    background: #3b3b3b;
    border: 0;
}

#xet-header.dark .xet-nav-ul ul li a {
    color: #ccc;
}

#xet-header.dark .xet-nav-ul ul li span.child {
    color: #ccc;
}

#xet-header.dark .xet-nav-ul ul.lang-list li button {
    color: #ccc;
}

#xet-header.dark .xet-toggle-menu.push-active span {
    background: none;
}

#xet-header.dark .xet-toggle-menu span,
#xet-header.dark .xet-toggle-menu span::before,
#xet-header.dark .xet-toggle-menu span::after {
    background: #fff;
}

.side-panel-top .xet-toggle-menu.push-active span::before,
.side-panel-top .xet-toggle-menu.push-active span::after,
#xet-header.dark .xet-toggle-menu.push-active span::before,
#xet-header.dark .xet-toggle-menu.push-active span::after {
    background: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* MAIN - SECTIONS
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-main-sections {
    /* background: #f5f5f5; */
}

.xet-section {
    position: relative;
    padding: 60px 0 120px 0;
}

.xet-section img {
    vertical-align: top;
    max-width: 100%;
}

.xet-feature .feature_text {
    width: 100%;
    background: #6b33eb;
    padding: 35px 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

.xet-section .subTitle {
    color: #111;
}

.xet-section .subContent,
.xet-section .subContent a {
    color: #555;
}

/* BG parallax scroll */
.xet-parallax-scroll {
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    /* ie8- graceful degradation */
    background-position: 50% 50%\9 !important;
}

/* 섹션 구분선 */
.xet-dash-icon-wrp {
    position: relative;
    text-align: center;
}

.xet-with-icon {
    display: none;
    vertical-align: middle;
    width: 150px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.xet-diamond-icon {
    width: 75px;
    height: 40px;
    background-image: url("/img/title_icon.png");
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px;
}

/* Box */
.xet-icon-box {
    cursor: default;
    padding: 35px 30px;
    position: relative;
    text-align: center;
}

.xet-icon-box::before,
.xet-icon-box::after {
    border: 1px solid rgba(0, 0, 0, 0.1);
    content: "";
    height: calc(50% - 40px);
    pointer-events: none;
    position: absolute;
    transition: all 0.33s ease 0s;
    width: calc(100%);
}

.xet-icon-box::before {
    border-width: 1px 1px 0 1px;
    left: 0;
    top: 0;
}

.xet-icon-box::after {
    border-width: 0 1px 1px 1px;
    bottom: 0;
    right: 0;
}

.xet-icon-box:hover::before,
.xet-icon-box:hover::after {
    border-color: #58c4a7;
    height: calc(50% - 5px);
    width: 100%;
}

.xet-icon-box:hover {
    background-color: #fff;
    transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;
}

.xet-icon-box .moreLink {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.xet-service {}

.xet-service .subTitle p {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -1px;
}

.xet-service .subTitle span {
    font-size: 20px;
}

.xet-add-logo ul {
    width: 90%;
    margin: 0 auto;
    list-style: none;
    overflow: hidden;
    padding: 40px 0 60px 0;
    text-align: center;
}

.xet-add-logo ul li {
    text-align: center;
    width: 10%;
    display: inline-block;
    padding: 10px;
    margin: 0.4%;
    background: #fff;
}

.xet-add-logo ul li img {
    width: 90%;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* SLIDER 
/* ------------------------------------------------------------------------------------------------------------------ */

/* 슬라이드 고정 텍스트 추가 */
.slider_text {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 999999;
    color: #fff;
    text-align: center;
    width: 100%;
}

.slider_text h2 {
    font-weight: 600;
    font-size: 65px;
    margin-bottom: 20px;
}

.slider_text h2 br {
    display: none;
}

.slider_text p {
    font-size: 24px;
    font-weight: 300;
}

.xet-slider {
    overflow: hidden;
    position: relative;
    background: #000;
}

.xet-slider h1,
.xet-slider h5,
.xet-slider .xet-more {
    opacity: 0;
}

.xet-slider h1 br {
    display: none;
}

.xet-slider .xet-slider-container {
    position: relative;
    width: 100%;
    height: calc(70vh - 60px);
}

.xet-slider .xet-slider-container .swiper-slide {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(100, 100, 100, 0.6);
    background-position: center center !important;
}

.xet-slider .xet-slider-container .vertical-align {
    background-color: rgba(0, 0, 0, 0.3);
}

.xet-slider .xet-slider-next,
.xet-slider .xet-slider-prev {
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    height: 100px;
    margin-top: -50px;
    width: 60px;
    background-size: 40px;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.xet-slider .xet-slider-next {
    transform: translateX(60px);
    -moz-transform: translateX(60px);
    -webkit-transform: translateX(60px);
    right: 0;
    background-image: url("../img/next.png");
}

.xet-slider .xet-slider-prev {
    transform: translateX(-60px);
    -moz-transform: translateX(-60px);
    -webkit-transform: translateX(-60px);
    left: 0;
    background-image: url("../img/prev.png");
}

.xet-slider:hover .xet-slider-next,
.xet-slider:hover .xet-slider-prev {
    transform: translateX(0px);
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    opacity: 1;
}

.xet-slider-next.swiper-button-disabled,
.xet-slider-prev.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
}

.xet-slider-pagination {
    z-index: 10;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    color: #ccc;
    text-align: center;
}

.xet-slider-pagination.swiper-pagination-progress {
    top: auto !important;
    bottom: 0 !important;
}

/* OIE */
.xet-slider-pagination .swiper-pagination-switch {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #fff;
    margin: 0 3px;
    cursor: pointer;
}

.xet-slider-pagination .swiper-active-switch {
    background-color: #58c4a7;
}

/* */

.xet-slider-pagination .swiper-pagination-current {
    font-size: 200%;
    color: #fff;
}

.xet-slider-pagination .swiper-pagination-bullet {
    opacity: 0.4;
    width: 40px;
    height: 2px;
    border-radius: 0;
    background-color: #fff;
}

.xet-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #58c4a7;
}

.xet-slider .swiper-pagination-progress {
    z-index: 10;
}

.xet-slider .swiper-pagination-progress .swiper-pagination-progressbar {
    background: #58c4a7;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - About 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-about img {
    max-width: 70%;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Service 
/* ------------------------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Video 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-video {
    position: relative;
    background-color: #000;
    color: #fff;
    margin-bottom: 120px;
}

.xet-video h3,
.xet-video h6 {
    position: relative; //ie9에서 텍스트 보이도록
}

.xet-video:before {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.8);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Feature 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-feature a.xet-icon-box {
    display: block;
    cursor: pointer;
    align-items: center;
    padding: 35px 30px;
    position: relative;
    text-align: center;
    color: #111;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Work 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-work {}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Chain 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-chain-item {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: transparent;
    text-align: center;
}

.xet-chain-item .chain-img {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.xet-chain-item .chain-img img {
    pointer-events: auto;
    transition: opacity 300ms ease-out, transform 300ms ease-out,
        filter 300ms ease-out;
    -webkit-transition: opacity 300ms ease-out, -webkit-transform 300ms ease-out,
        -webkit-filter 300ms ease-out;
}

.xet-chain-item .chain-img-inner {
    position: absolute;
    right: 1px;
    left: 1px;
    top: 0;
    bottom: 0;
    text-align: center;
    padding: 10px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;
}

.xet-chain-item .chain-img:hover .chain-img-inner {
    opacity: 1;
    visibility: visible;
}

.xet-chain-item .chain-img:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.xet-chain-item .chain-img-inner a {
    z-index: 3;
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    color: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Partner 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-partner .more-link {
    text-decoration: underline;
    color: #555;
}

#xet-partner-owl .item a {
    display: block;
    padding: 30px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Blog 
/* ------------------------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Contact 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-contact p {
    color: #555;
}

.xet-contact .contact-tel {
    display: block;
    color: #111;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* BODY - CONTENT - PAGE
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-content-body {
    background-color: #fff;
    padding: 0 !important;
}

/* page top */
.xet-page-top {
    background-color: rgba(53, 53, 53, 0.9);
    color: #fff;
}

.xet-page-top>div {
    position: relative;
    height: auto;
}

.xet-page-top a {
    color: #fff;
}

.xet-page-top .page-title-inner {
    line-height: 36px;
}

.xet-page-top .page-title-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.xet-page-top .page-title-inner ul li {
    float: left;
    margin: 0 0 0 10px;
    padding: 0;
    vertical-align: baseline;
}

.xet-page-top .page-title-inner ul li:after {
    content: " -";
    margin: 0 0 0 5px;
    opacity: 0.6;
}

.xet-page-top .page-title-inner ul li:last-child:after {
    content: "";
    margin: 0;
}

.xet-page-top .page-title-inner ul li a {
    font-size: 13px;
}

/* LNB */
.xet-lnb {
    background-color: #fff;
}

.xet-lnb ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.xet-lnb ul>li {
    position: relative;
    display: inline-block;
    margin: 0 15px;
    padding: 0;
}

.xet-lnb>ul>li>a {
    display: inline-block;
    white-space: nowrap;
    height: 60px;
    line-height: 60px;
    padding: 0;
    margin-bottom: -1px;
    color: #111;
}

.xet-lnb>ul>li>.child {
    display: inline-block;
    padding-left: 5px;
    color: #777;
}

.xet-lnb a img {
    vertical-align: middle;
}

.xet-lnb ul>li>a.current {
    border-bottom: 1px solid #58c4a7;
    color: #58c4a7;
}

.xet-lnb ul ul {
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -30px;
    top: 99%;
    width: 200px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background: #fff;
    border: 1px solid #e1e1e1;
    box-shadow: 0 4px 5px -3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;
}

.xet-lnb ul>li.hovered ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;
}

.xet-lnb ul ul>li {
    display: block;
}

.xet-lnb ul ul>li>a {
    display: block;
    text-align: left;
    padding: 8px 15px;
    color: #111;
}

.xet-lnb ul ul>li:hover a,
.xet-lnb ul ul>li.current>a {
    color: #58c4a7;
}

/* content */
.xet-content {
    background-color: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* FOOTER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-footer .text-md-left {
    width: 100%;
    text-align: left;
}

#xet-footer .text-center {
    width: 100%;
    text-align: right !important;
}

#xet-footer {
    position: relative;
    color: #7b7b7b;
    background-color: #f1f1f1;
}

#xet-footer img {
    width: 100%;
}

#xet-footer .xet-container {
    width: 100%;
    padding: 0 10% !important;
}

#xet-footer .xet-container .mg-sm-b30{
    margin-bottom: 2em !important;
    line-height: 43px;
}

#xet-footer .foot-pc{
    width: 250px;
    display: block;
}

#xet-footer .foot-mo{
    width: 140px;
    display: none;
}

#xet-footer .foot-top p>br{
    display: none;
}

#xet-footer .foot-top p>.on{
    display: block;
}

#xet-footer p>a {
    color: #7b7b7b;
}

#xet-footer p, #xet-footer a {
    font-family: 'Noto Sans KR', sans-serif;
}

#xet-footer h5 {
    color: #111;
}

.xet-footer-nav>li , .xet-footer .footer-info p{
    font-size: 1rem;
    line-height: 1.5em;
}

/* Footer Nav */

.xet-footer-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.xet-footer-nav>li {
    display: inline-block;
    margin-left: 15px;
    padding: 0;
}

.xet-footer-nav>li a {
    display: inline-block;
    font-weight: 700;
    cursor: pointer;
    color: #7b7b7b;
}

.xet-footer-nav>li a:hover {
    text-decoration: underline;
}

.xet-footer .footer-logo{
    position: absolute;
    left: 10%;
    top: 0;
}

.xet-footer .foot-top>p{
    text-align: right;
    word-break: keep-all;
}

.xet-footer-ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.xet-footer-ul>li {
    display: inline;
    margin: 0 5px 10px;
    padding: 0;
}

.xet-footer-ul>li a {
    font-size: 16px;
    display: inline-block;
    font-weight: normal;
    cursor: pointer;
    color: #111;
}

.xet-footer-ul>li a:hover {
    text-decoration: underline;
}

.xet-footer .foot-top{
    padding-bottom: 60px;
}

.xet-footer .foot-bot{
    padding-top: 60px;
    border-top: 1px solid #bcbcbc;
}

.xet-footer .foot-bot , .xet-footer .foot-bot .foot-bot-snslist{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xet-footer .foot-bot .foot-bot-snslist{
    padding: 0;
    margin: 0;
}

.xet-footer .foot-bot-snslist>li{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    list-style: none;
}

.xet-footer .foot-bot-snslist>li img{
    width: 100%;
    cursor: pointer;
}

/* Dark */

#xet-footer.dark {
    background-color: #1a1b29;
    color: #bcbcbc;
}

#xet-footer.dark p>a {
    color: #bcbcbc;
}

#xet-footer.dark h5 {
    color: #fff;
}

#xet-footer.dark .xet-footer-ul>li a {
    color: #fff;
}

#xet-footer.dark .xet-footer-nav>li a {
    color: #bcbcbc;
}

@media(max-width: 992px){

    #xet-footer .text-center , .xet-footer .foot-top>p{
        text-align: center !important;
    }

    #xet-footer .xet-container{
        padding: 100px 5% 0 !important;
    }

    #xet-footer .footer-logo{
        left: 50%;
        transform: translateX(-50%);
    }

    #xet-footer .foot-pc{
        display: none;
    }

    #xet-footer .foot-mo{
        display: block;
    }

    #xet-footer .xet-container .mg-sm-b30{
        margin-bottom: 20px !important;
        line-height: 1.5em;
    }

    #xet-footer .xet-footer-nav>li{
        margin: 0 7px;
    }

    #xet-footer .foot-top{
        padding-bottom: 50px;
    }

    #xet-footer .foot-top p>span{
        display: none;
    }

    #xet-footer .foot-top p>br{
        display: block;
    }

    .xet-footer .foot-bot{
        flex-direction: column-reverse;
        align-items: center;
    }

    .xet-footer .foot-bot-left{
        margin-top: 50px;
    }

    .xet-footer .foot-bot{
        padding-top: 0;
        border: none;
    }

    #xet-footer.pd-xs-t30{
        padding-top: 5em !important;
    }

    #xet-footer.pd-xs-b30{
        padding-bottom: 6em !important;
    }

    .xet-footer .foot-bot-snslist>li{
        width: 40px;
        height: 40px;
    }

    .xet-footer-nav>li, .xet-footer .footer-info p{
        font-size: 14px;
    }
}

@media(max-width: 480px){
    #xet-footer .xet-container .mg-sm-b30{
        padding: 0 5%;
    }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Mobile Side Panel
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-side-panel {
    z-index: 999999;
    position: fixed;
    background: #fff;
    color: #111;
}

.xet-side-panel .side-panel-top {
    position: relative;
    height: 60px;
    padding: 0 15px;
    background: #fff;
}

.xet-side-panel .side-panel-top .xet-nav-ul>li.li-btn>button {
    width: 45px;
    font-size: 18px;
}

.xet-side-panel .side-panel-top button.xet-toggle-menu {
    position: absolute;
    right: 6px;
    top: 0;
    margin: 0;
    border: 0;
}

.xet-side-panel .side-panel-top .xet-toggle-menu.push-active span::before,
.xet-side-panel .side-panel-top .xet-toggle-menu.push-active span::after {
    background: #333;
}

.xet-side-panel .side-panel-body {
    position: relative;
}

/* Push */
.xet-push-left,
.xet-push-right {
    height: 100%;
    top: 0;
}

.xet-push-left {
    width: 100%;
    left: -100%;
}

.xet-push-right {
    width: 100%;
    right: -100%;
}

.xet-push-left.push-open {
    left: 0;
    -webkit-box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.3);
}

.xet-push-right.push-open {
    right: 0;
    -webkit-box-shadow: -2px 0px 6px rgba(0, 0, 0, 0.3);
    box-shadow: -2px 0px 6px rgba(0, 0, 0, 0.3);
}

.push {
    left: 0;
    position: relative;
}

.push-toright {
    left: 100% !important;
}

.push-toleft {
    left: -100% !important;
}

body,
.xet-side-panel,
.push {
    transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    -moz-transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}

/* push nav */

#xet-shadow-layer {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* TOP SCROLL BUTTON
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-top-scroll {
    z-index: 999;
    display: none;
    position: fixed;
    bottom: 75px;
    right: 15px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

#xet-top-scroll a {
    display: block;
    text-decoration: none;
    font-size: 0;
    opacity: 0.5;
    color: #fff;
    background: url(../img/up.png) center no-repeat rgba(0, 0, 0, 0.5);
    background-size: 16px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

#xet-top-scroll a:hover {
    opacity: 1;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* waypoint - scroll animate
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-animate {
    opacity: 0;
}

/* delay time
---------------------------------*/
.delay-01s {
    animation-delay: 0.1s;
    -webkit-animation-delay: 0.1s;
}

.delay-02s {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

.delay-03s {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}

.delay-04s {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

.delay-05s {
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}

.delay-06s {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

.delay-07s {
    animation-delay: 0.7s;
    -webkit-animation-delay: 0.7s;
}

.delay-08s {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
}

.delay-09s {
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
}

.delay-10s {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.delay-12s {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

.delay-15s {
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
}

.delay-18s {
    animation-delay: 1.8s;
    -webkit-animation-delay: 1.8s;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Preloader
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-preloader-wrp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: #000;
}

.xet-preloader {
    display: block;
    position: relative;
    text-align: center;
    left: 0;
    top: 50%;
    width: 100%;
    height: 20px;
    margin: -10px 0 0 0;
}

@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    45% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    45% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.ball-pulse>div:nth-child(1) {
    -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse>div:nth-child(2) {
    -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse>div:nth-child(3) {
    -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse>div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 0;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Custom buttons
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-btn-theme {
    padding: 10px 40px;
    position: relative;
    text-align: center;
    color: #111;
}

.xet-btn-theme::before,
.xet-btn-theme::after {
    border: 1px solid rgba(0, 0, 0, 0.9);
    content: "";
    height: calc(50% - 10px);
    pointer-events: none;
    position: absolute;
    transition: all 0.33s ease 0s;
    width: calc(100%);
}

.xet-btn-theme.invert {
    color: #fff;
}

.xet-btn-theme.invert::before,
.xet-btn-theme.invert::after {
    border-color: rgba(255, 255, 255, 0.9);
}

.xet-btn-theme::before {
    border-width: 1px 1px 0 1px;
    left: 0;
    top: 0;
}

.xet-btn-theme::after {
    border-width: 0 1px 1px 1px;
    bottom: 0;
    right: 0;
}

.xet-btn-theme:hover::before,
.xet-btn-theme:hover::after {
    border-color: #58c4a7;
    height: calc(50% - 0px);
    width: 100%;
}

.xet-btn-theme:hover {
    transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;
}

.xet-btn-default {
    border: 2px solid #111;
}

.xet-btn-bg-theme {
    padding: 10px 30px;
    background-color: #58c4a7 !important;
    color: #fff !important;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0;
}

/* hover */
.xet-btn:hover {}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Theme
/* ------------------------------------------------------------------------------------------------------------------ */
.theme-color {
    color: #58c4a7;
}

/* 추가 리뉴얼 */
.mn_tit {
    text-align: center;
    margin-top: 60px;
}

.mn_tit h1 {
    font-size: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.mn_tit p {
    font-size: 25px;
}

.mn_bt {
    text-align: center;
}

.mn_bt a {
    display: inline-block;
    color: #6a32eb;
    border: 2px solid #6a32eb;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 50px;
}

.mn_bt a:hover {
    background: #6a32eb;
    transition: 0.5s;
    color: #fff;
}

.mn_bt.bgpp a {
    background: #6a32eb;
    color: #fff;
}

.mn_bt.bgpp a:hover {
    background: transparent;
    color: #6a32eb;
    border: 2px solid #6a32eb;
}

.xet-section.mn_contactus .contactus {
    width: 1100px;
    margin: 60px auto;
    overflow: hidden;
}

.xet-section.mn_contactus .contactus .left {
    width: 49%;
    float: left;
    margin-right: 1%;
    box-sizing: border-box;
}

.xet-section.mn_contactus .contactus .left .cscenter {
    background: #fff;
    padding: 10% 8% 13% 8%;
}

.xet-section.mn_contactus .contactus .left .cscenter h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    color: #6a32eb;
    font-weight: bold;
}

.xet-section.mn_contactus .contactus .left p.tel {
    font-family: "Montserrat", sans-serif;
    font-size: 55px;
    font-weight: 500;
}

.xet-section.mn_contactus .contactus .left p.time {
    font-size: 18px;
    color: #8a8a8a;
    margin-bottom: 40px;
}

.xet-section.mn_contactus .contactus .left .cscenter .icon a {
    color: #6a32eb;
    font-size: 18px;
    margin-right: 20px;
    line-height: 1;
}

.xet-section.mn_contactus .contactus .left .cscenter .icon a img {
    width: 27px;
    padding-right: 5px;
}

.xet-section.mn_contactus .contactus .right {
    width: 49%;
    margin-left: 1%;
    float: left;
}

.xet-section.mn_contactus .contactus .right .ban {
    min-height: 120px;
    padding: 34px 30px;
    overflow: hidden;
}

.xet-section.mn_contactus .contactus .right .ban img {
    max-width: 100px;
    float: right;
}

.xet-section.mn_contactus .contactus .right .ban a p {
    font-size: 30px;
    font-weight: bold;
    float: left;
    padding-top: 8px;
}

.xet-section.mn_contactus .contactus .right .ban a p span {
    font-size: 20px;
    display: block;
    font-weight: 400;
}

.xet-section.mn_contactus .contactus .right .ban.kakao {
    background: #fae300;
    margin-bottom: 22px;
}

.xet-section.mn_contactus .contactus .right .ban.kakao a p {
    color: #3c1e1e;
}

.xet-section.mn_contactus .contactus .right .ban.inquiry {
    background: #6a32eb;
}

.xet-section.mn_contactus .contactus .right .ban.inquiry a p {
    color: #fff;
}

.xet-section.mn_family {
    padding: 60px 0;
}

.xet-section.mn_family .family ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 60px;
}

.xet-section.mn_family .family ul li {
    display: inline-block;
    text-align: center;
    margin: 15px 20px;
}

.xet-section.mn_family .family ul li img {
    margin-bottom: 15px;
}

.xet-section.mn_family .family ul li:nth-child(1) img {}

.xet-section.mn_family .family ul li span {
    display: block;
    font-size: 17px;
}

.xet-section.mn_family .family ul li p {
    font-size: 20px;
    font-weight: 500;
}

.xet-section.mn_media {
    padding: 60px 0 120px 0;
    background-color: #222;
    color: #Fff;
}

.xet-section.mn_media .media_wrap {
    margin: 60px 0 30px 0;
}

.xet-section.mn_media .media_wrap .media {
    width: 48%;
    margin: 0 1%;
    float: left;
}

.xet-section.mn_media .media_wrap .media p {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    letter-spacing: -1px;
}

.xet-section.mn_studio {
    background: #222;
    display: none;
}

.xet-section.mn_studio .xet-container {
    padding-top: 60px;
}

.xet-section.mn_studio .mn_tit {
    color: #fff;
}

.xet-section.mn_studio .carousel-inner {
    margin: 60px 0 20px 0;
}

.xet-section.mn_studio h6 {
    color: #fff;
    margin-top: 0 !important;
}

.xet-section.mn_studio h6 span {
    box-shadow: inset 0 -1.2em 0 0 #6a32eb;
}

.xet-section.mn_sec02 {
    background: #fff;
}

.xet-section.mn_sec02 .mn_tit {
    padding-top: 60px;
}

.xet-section.mn_sec02 .works ul {
    list-style: none;
    padding: 0;
    margin: 80px 0 100px 0;
    overflow: hidden;
}

.xet-section.mn_sec02 .works ul li {
    float: left;
    width: 32%;
    height: 450px;
    margin-right: 2%;
    margin-bottom: 2%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #222;
    color: #fff;
    cursor: pointer;
}

.xet-section.mn_sec02 .works ul li:nth-child(3n) {
    margin-right: 0;
}

.xet-section.mn_sec02 .works ul li>div {
    width: 100%;
    min-height: 450px;
    background-size: cover;
    background-position: 50% 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.xet-section.mn_sec02 .works ul li .bg01 {
    background-image: url("/img/main_n/work1.png");
}

.xet-section.mn_sec02 .works ul li .bg02 {
    background-image: url("/img/main_n/work2.png");
}

.xet-section.mn_sec02 .works ul li .bg03 {
    background-image: url("/img/main_n/work3.png");
}

.xet-section.mn_sec02 .works ul li .bg04 {
    background-image: url("/img/main_n/workbg_metaverse.png");
    background-position: 50% 33%;
    background-size: 110%;
}

.xet-section.mn_sec02 .works ul li .bg05 {
    background-image: url("/img/main_n/workbg_esports.png");
    background-position: 70% 100%;
}

.xet-section.mn_sec02 .works ul li .bg06 {
    background-image: url("/img/main_n/workbg_xrstudio.jpg");
}

.xet-section.mn_sec02 .works ul li:hover {
    background: #6a32eb;
}

.xet-section.mn_sec02 .works ul li:hover>div {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    /* IE 9 */
    transform: scale(1.3);
    opacity: 0.5;
}

.xet-section.mn_sec02 .works ul li h1 {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 17%;
    left: 10%;
}

.xet-section.mn_sec02 .works ul li p {
    color: #fff;
    position: absolute;
    top: 10%;
    left: 10%;
    padding: 0 5% 0 0;
    text-align: left;
    font-size: 17px;
    letter-spacing: -1px;
}

.xet-section.mn_sec02 .works ul li p.tag {
    top: 32%;
}

.xet-section.mn_sec02 .works ul li p.tag span {
    background: #6a32eb;
    color: #fff;
    font-size: 13px;
    display: inline-block;
    margin: 0 1px 5px 0;
    padding: 9px 15px;
    border-radius: 30px;
}

.xet-section.mn_sec02 .works ul li:hover p.tag span {
    background: #111;
    transition: 0.5s;
}

/* 추가 리뉴얼 서브(게시판) */
.board_tit {
    text-align: center;
    color: #111;
    margin: 50px 0 50px 0;
}

.board_tit h2 {
    font-size: 30px;
    font-family: "CeraRoundPro-Bold", "Noto Sans KR", "Apple SD Gothic Neo", "Nanum Gothic", "Malgun Gothic", "�뗭�", Dotum, "Lucida Sans", "Trebuchet MS", Arial, Tahoma, sans-serif;
    font-weight: 800;
    box-shadow: inset 0 -0.75em 0 0 #fff373;
    display: inline-block;
    margin-bottom: 30px;
}

.board_tit h1 {
    font-size: 50px;
}

.board_tit p {
    line-height: 1.7;
    font-size: 18px;
    margin-top: 20px;
}

/* 추가 - 서브 하단 퀵메뉴 */
.mobile_view {
    display: none;
}

#sub_bottom_quick {
    position: fixed;
    right: 10px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 100;
}

#sub_bottom_quick>.quick {
    width: 70px;
    height: 70px;
    border-radius: 70px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 15px 0;
    transition: all 1s ease;
}

#sub_bottom_quick>.tel {
    background: #333;
}

#sub_bottom_quick>.inquiry {
    background: #6a32eb;
}

#sub_bottom_quick>.kakao {
    background: #fee101;
}

#sub_bottom_quick .cont {
    display: inline-block;
    width: 200px;
    height: 70px;
    position: relative;
    cursor: pointer;
    /* display: none; */
    transition: all 1s;
    overflow: hidden;
    color: #Fff;
}

#sub_bottom_quick .wrap {
    width: 200px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(20px, -50%);
    overflow: hidden;
    transition: all 1s ease;
}

#sub_bottom_quick .icon {
    opacity: 1;
    margin-right: 20px;
    vertical-align: middle;
    transition: all 1s ease;
    display: inline-block;
}

#sub_bottom_quick .txt {
    opacity: 0;
    vertical-align: middle;
    transition: opacity 0.3s ease;
    transition-delay: 0.1s;
}

#sub_bottom_quick img {
    display: block;
    margin: 0 auto;
    max-width: 30px;
}

#sub_bottom_quick>div:hover img {
    transform: rotate(360deg);
    transition: .5s;
}

#sub_bottom_quick.on>.quick {
    width: 220px;
}

#sub_bottom_quick.on .txt {
    opacity: 1;
}


/* 퀵메뉴 - 메타버스 */

/* #sub_bottom_quick.meta {
    position: static;
    right: auto;
    bottom: auto;
    transform: none;
}

#sub_bottom_quick.meta ul {
    position: fixed;
    right: 10px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 9;
} */

#sub_bottom_quick.meta .panel {
    margin-bottom: 0;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    bottom: 0;
    cursor: default;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 99999;

    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background-color: #fff;
    display: inline-block;
    left: 50%;
    opacity: 0;
    padding: 75px 30px 25px 30px;
    position: fixed;
    text-align: justify;
    top: 40%;
    visibility: hidden;
    z-index: 999999;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    -webkit-transition: opacity .5s, top .5s;
    -moz-transition: opacity .5s, top .5s;
    -ms-transition: opacity .5s, top .5s;
    -o-transition: opacity .5s, top .5s;
    transition: opacity .5s, top .5s;
}

.popup h2 {
    font-family: 'DungGeunMo';
    color: #6a32eb;
    text-align: center;
}

.popup p {
    font-family: 'DungGeunMo';
    text-align: center;
    font-size: 18px;
}

.popup::before {
    display: block;
    content: '';
    width: 100%;
    height: 50px;
    background: #6a32eb;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay:target+.popup {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.close {
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: 10px;
    text-align: center;
    text-decoration: none;
    top: 8px;
    width: 30px;
    opacity: 1;

    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}

.close:before {
    color: rgba(255, 255, 255, 1);
    content: "X";
    font-size: 30px;
}

.popup form {
    margin-top: 20px;
}

.popup p,
.popup div {
    margin-bottom: 10px;
}

.popup label {
    display: inline-block;
    text-align: left;
    width: 120px;
}

.popup input[type="text"] {
    border: 1px solid #111;
    margin: 0;
    padding: 7px 10px;
    width: 49%;
    margin: 0.5%;
    float: left;
    font-size: 14px;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.popup input[type="email"] {
    border: 1px solid #111;
    margin: 0;
    padding: 7px 10px;
    width: 49%;
    margin: 0.5%;
    float: left;
    font-size: 14px;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.popup textarea {
    width: 99%;
    height: 120px;
    border: 1px solid #111;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    margin: 0.5%;
    font-size: 14px;
    padding: 7px 10px;
}

.popup .agree {
    font-size: 13px;
    margin-top: 10px;
}

.popup .agree a {
    background: #111;
    color: #fff;
    font-size: 12px;
    padding: 3px 5px;
    border-radius: 3px;
    margin-left: 5px;
}

.popup input[type="submit"] {
    border: 0;
    border-radius: 0;
    background: #111;
    color: #fff;
    font-size: 18px;
    font-family: 'DungGeunMo';
    padding: 15px 60px;
    margin: 20px auto;
    display: block;
}


/* 추가 - 오시는 길*/
.map {
    font-size: 16px;
    font-family: "Montserrat", "Noto Sans KR", sans-serif;
}

.map .line {
    width: 100%;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden;
    padding: 18px 0;
}

.map .line .left {
    width: 10%;
    float: left;
    font-weight: bold;
}

.map .line .right {
    width: 90%;
    float: left;
}

/* 추가 */
.xet-section.xet-add-logo {
    background: url("/img/main_n/companybg.png") no-repeat 50% 50%;
}

.sec1_conunt_wrap {
    width: 1400px;
    margin: 0 auto;
    padding: 100px 50px;
    overflow: hidden;
}

.sec1_tit {
    text-align: center;
    width: 33.3%;
    float: left;
    padding: 3% 2%;
}

.sec1_tit {
    border-right: 1px solid #eaeaea;
}

.sec1_tit:last-child {
    border-right: 0;
}

.sec1_tit .count {
    letter-spacing: -1px;
    color: #6a32eb;
    font-size: 30px;
    font-weight: bold;
}

.sec1_tit .count .counter {
    font-size: 50px;
    font-weight: bold;
}

.sec1_tit h2 {
    font-size: 25px;
    letter-spacing: -1px;
}

.xet-debut-effect figure figcaption p.icon>a {
    display: none !important;
}

.xet-debut-effect figure figcaption p.subject {
    font-size: 18px;
}

.xet-debut-container p span {
    display: none !important;
}

.xet-debut-container a.title {
    pointer-events: none;
}

.xet-vlist {
    margin-bottom: 60px;
}

.xet-vlist>div {
    width: 90%;
    margin: 0 auto;
}

.xet-vlist h2 {
    color: #fff;
}

.xet-vlist ul {
    width: 100%;
    padding: 0;
    margin: 30px 0 0 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.xet-vlist ul li {
    width: 18%;
    margin: 1%;
}

.xet-vlist ul li iframe {
    height: 200px;
}

.xet-vlist ul li p {
    color: #111;
    font-size: 19px;
    font-weight: 500;
    padding: 10px 0 15px 0;
    letter-spacing: -1px;
    text-align: left;
}

.xet-vlist ul li p span {
    font-size: 14px;
    display: block;
    font-weight: 300;
    color: #eb1000;
    margin-top: 3px;
}

.xet-vlist .mvideo_bt {
    background: #6a32eb;
    padding: 15px 35px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 60px;
    display: inline-block;
}

.main_studio {
    margin-top: 50px;
}

.main_studio ul {
    list-style: none;
    padding: 0;
}

.main_studio ul.slick-dots {
    position: absolute;
    bottom: 20px;
}

section h6 span {
    box-shadow: inset 0 -0.65em 0 0 #6a32eb;
    color: #fff;
    font-weight: bold;
}

.swiper-container {
    width: 500px;
    height: 300px;
    margin: 20px auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.wrapper {
    margin-top: 80px;
    margin-right: auto;
    margin-left: auto;
}

.wrapper h1 {
    display: none;
}

/* tabs */
.tabs {
    margin-bottom: 60px;
}

.tabs:after {
    content: "";
    display: table;
    clear: both;
}

.tabs input[type="radio"] {
    display: none;
}

.tabs label {
    display: inline-block;
    padding: 0 0 5px 0;
    margin: 0 15px;
    text-align: center;
    font-weight: 700;
    color: #a5a5a5;
    cursor: pointer;
    -webkit-transition: background-color 150ms ease-in-out;
    transition: background-color 150ms ease-in-out;
    font-size: 18px;
}

.tabs [id^="tab"]:checked+label {
    color: #6a32eb;
    border-bottom: 3px solid #6a32eb;
}

.tab-content {
    display: none;
    float: left;
    width: 100%;
    padding: 0;
}

#tab1:checked~#tab-content1,
#tab2:checked~#tab-content2,
#tab3:checked~#tab-content3,
#tab4:checked~#tab-content4,
#tab5:checked~#tab-content5,
#tab6:checked~#tab-content6,
#tab7:checked~#tab-content7 {
    display: block;
}

.other-content {
    color: white;
}

.mvideo ul {
    list-style: none;
    padding: 0 0 120px 0;
    width: 100%;
    overflow: hidden;
}

.mvideo ul li {
    width: 50%;
    float: left;
    box-sizing: border-box;
}

.mvideo ul li p {
    display: inline-block;
    color: #fff;
    background: #111;
    font-weight: bold;
    margin-top: 20px;
    font-size: 22px;
    padding: 10px 30px;
    border-radius: 30px;
}

.mvideo ul li p.cine {
    background: #e72818;
}

.mvideo ul li video {
    max-width: 90%;
    border-radius: 20px;
}

.mvideo ul li:nth-child(2) img {
    border: 5px solid #eb1000;
    box-sizing: border-box;
    border-radius: 20px;
}

p.stitle span {
    box-shadow: inset 0 -0.65em 0 0 #fff373;
    color: #eb1000;
    font-weight: bold;
    font-size: 30px;
}

@media only screen and (max-width: 768px) {

    body,
    html {
        /* font-size: 18px; */
    }

    .mvideo ul {
        padding: 0;
    }

    .mvideo ul li {
        width: 100%;
        float: left;
        margin-bottom: 60px;
    }

    p.stitle span {
        font-size: 22px;
    }
}

@media only screen and (max-width: 645px) {
    .tabs label {
        font-size: 15px;
    }

    .wrapper {
        margin-top: 30px;
    }

    .xet-vlist .mvideo_bt {
        margin-top: 30px;
    }
}

/* 서브-참고영상 */
.sub_video {
    width: 30.3%;
    margin: 1.5%;
    float: left;
    text-align: center;
    margin-bottom: 35px;
    min-height: 340px;
}

.sub_video iframe {
    height: 250px;
}

.sub_video p {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0 2px 0;
}

.sub_video span {
    color: #6a32eb;
}

/* 서브 - 라이브커머스 */
.lc_video {
    height: 100vh;
}

.lc_video .vidbg-container {
    background-image: url(/img/sub_n/video_bg.png) !important;
}

.lc_video .block-container {
    position: relative;
    top: 45%;
    transform: translateY(-50%);
}

.lc_video .block-container>.block {
    margin: 0 auto;
    max-width: 1200px;
}

.lc_video .block-container>.block>h1 {
    font-size: 67px;
    color: #fff;
    border-bottom: 0;
    margin: 0 0 45px;
    font-weight: 100;
    font-family: "Gosanja", "Noto Sans KR", "Apple SD Gothic Neo", "Nanum Gothic", "Malgun Gothic", "�뗭�", Dotum, "Lucida Sans", "Trebuchet MS", Arial, Tahoma, sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.3em;
}

/* .lc_video .block-container>.block>h1 b {
    font-weight: bold;
}

.lc_video .block-container>.block>h1 b span {
    display: inline-block;
    border: 6px solid #6a32eb;
    padding: 0 14px 7px 14px;
    margin-right: 5px;
} */

.lc_video .block-container>.block>p {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
}

.vidbg-overlay {
    background: none !important;
}

#sub_livecommerce {
    padding: 0 0 0 0;
}

#sub_livecommerce .sec_inner {
    width: 90%;
    margin: 0 auto;
}

#sub_livecommerce .tit h2 {
    font-size: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    box-shadow: inset 0 -0.75em 0 0 #fff373;
    display: inline-block;
    margin-bottom: 30px;
}

#sub_livecommerce .tit h1 {
    font-size: 50px;
    font-weight: 300;
}

#sub_livecommerce .tit h1 b {
    font-weight: bold;
}

#sub_livecommerce .tit h1 span.red_point {
    background: #eb1000;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-left: 11px;
}

#sub_livecommerce .tit p {
    font-size: 20px;
    line-height: 1.5;
    padding-top: 80px;
}

#sub_livecommerce .con {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 120px 0 50px 0;
}

#sub_livecommerce .con .left,
.right {
    float: left;
}

#sub_livecommerce .con .left {
    width: 55%;
}

#sub_livecommerce .con .right {
    width: 45%;
}

#sub_livecommerce .sec01 .regular {
    width: 1200px;
    margin: 0 auto;
}

.regular .slick-slide {
    padding: 0 10px;
}

#sub_livecommerce .sec01 .img ul {
    padding: 0;
    overflow: hidden;
    width: 100%;
    list-style: none;
}

#sub_livecommerce .sec01 .img ul li {
    width: 33.3%;
    float: left;
}

#sub_livecommerce .sec01 .img ul li img {
    width: 100%;
}

#sub_livecommerce .sec02 .camera ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
}

#sub_livecommerce .sec02 .camera ul li {
    width: 20%;
    float: left;
    text-align: center;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.5);
}

#sub_livecommerce .sec02 .camera ul li:nth-child(2) {
    background: #fff;
    filter: drop-shadow(11px 15px 7px #eaeaea);
}

#sub_livecommerce .sec02 .camera ul li:nth-child(4) {
    background: #fff;
    filter: drop-shadow(11px 15px 7px #eaeaea);
}

#sub_livecommerce .sec02 .camera ul li img {
    width: 70%;
}

#sub_livecommerce .sec02 .naver ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
}

#sub_livecommerce .sec02 .naver ul li {
    width: 48%;
    float: left;
    margin: 0 1%;
    text-align: center;
}

#sub_livecommerce .sec02 .naver ul li img {
    width: 100%;
}

#sub_livecommerce .sec03 .tit {
    color: #fff;
}

#sub_livecommerce .sec03 .tit h2 {
    color: #fff373;
    box-shadow: inset 0 -0.75em 0 0 #111;
}

#sub_livecommerce .sec03 .tit p {
    padding-top: 40px;
}

#sub_livecommerce .sec03 .tit p span {
    color: #fff373;
}

#sub_livecommerce .sec03 {
    background: url("/img/sub_n/lcm_bg.jpg") 50% 50% no-repeat;
    padding: 0 0 10% 0;
    position: relative;
    background-size: cover;
}

#sub_livecommerce .sec03 .phones {
    width: 1200px;
    margin: 30px auto;
}

#sub_livecommerce .sec03 .phones .slider {
    width: 100%;
}

#sub_livecommerce .sec03 .phones .slick-slide {
    margin: 0px 20px;
}

#sub_livecommerce .sec03 .phones .slick-slide img {
    width: 100%;
}

#sub_livecommerce .sec03 .phones .slick-prev:before,
.slick-next:before {
    color: black;
}

#sub_livecommerce .sec03 .phones .slick-slide {
    transition: all ease-in-out 0.3s;
    opacity: 0.2;
}

#sub_livecommerce .sec03 .phones .slick-active {
    opacity: 1;
}

#sub_livecommerce .sec03 .phones .slick-current {
    opacity: 1;
}

#sub_livecommerce .sec04 .studio {
    width: 1200px;
    margin: 0 auto;
}

#sub_livecommerce .sec04 .studio ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
}

#sub_livecommerce .sec04 .studio ul li {
    width: 50%;
    float: left;
    line-height: 0;
    padding: 1%;
}

#sub_livecommerce .sec04 .studio ul li img {
    width: 100%;
}

.typo_wrap {
    background: #fee101;
    width: 100%;
}

.typo_wrap .hidden {
    opacity: 0;
}

.typo_wrap .console-container {
    font-size: 30px;
    text-align: center;
    height: 150px;
    line-height: 150px;
    width: 1200px;
    display: block;
    color: #111;
    margin: 0 auto;
    font-weight: bold;
}

.typo_wrap .console-underscore {
    display: inline-block;
    position: relative;
    top: -0.14em;
    left: 10px;
}

.mk_video {
    position: relative;
    z-index: 10;
    line-height: 0;
}

.mk_video video {
    background: #000;
    height: 90vh;
}

#sub_making .sec_inner {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 160px 0 0 0;
}

#sub_making .sec_inner p {
    font-size: 30px;
    padding: 30px 0;
}

#sub_making .sec_inner p span {
    box-shadow: inset 0 -0.75em 0 0 #fff373;
}

#sub_making .sec_inner p span.purple {
    box-shadow: inset 0 -0.75em 0 0 #6a32ea;
}

#sub_making .sec_inner p span.red {
    box-shadow: none;
    background: url("/img/sub/underline.png") 0 100% no-repeat;
    background-size: 100%;
}

#sub_making .sec01 .con {
    margin-top: 20px;
}

#sub_making .sec01 .con img {
    filter: drop-shadow(11px 15px 7px #eaeaea);
    margin: 20px 30px;
}

#sub_making .sec03 {
    width: 100%;
    float: left;
    padding: 0 0 160px 0;
}

#sub_making .sec03 .tit {
    margin-bottom: 50px;
}

#sub_making .sec04 {
    background: url("/img/sub/mk_bg.jpg") 50% 50% no-repeat;
    margin: 60px 0 30px 0;
}

#sub_making .sec04 .tit p {
    color: #fff;
}

#sub_making .sec04 .video {
    padding: 30px 0 160px 0;
}

#sub_making .sec05 {
    padding: 0 0 120px 0;
}

#sub_making .sec05 .tit p {
    color: #fff;
}

#sub_making .sec05 .tit p span {
    box-shadow: none;
    color: #fff373;
}

#sub_making .sec05 .photo {
    margin: 50px 0 0 0;
}

#sub_making .sec05 .photo ul {
    list-style: none;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

#sub_making .sec05 .photo ul li {
    width: 50%;
    float: left;
    line-height: 0;
}

#sub_making .sec05 .photo ul li img {
    width: 100%;
}

#sub_making .sec05 {
    width: 100%;
    float: left;
    background: #6a32eb;
}

#sub_making .sec05 h3.tit {
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 35px;
}

#sub_making .sec05 p.stit {
    color: #fff336;
    font-size: 18px;
    padding: 10px 0 0 0;
}

#sub_making .sec05 .interactive01 {
    padding: 100px 0 60px 0;
}

#sub_making .sec05 .interactive01 .recommend ul {
    list-style: none;
    padding: 0;
    margin: 50px 0;
    overflow: hidden;
}

#sub_making .sec05 .interactive01 .recommend ul li {
    width: 50%;
    float: left;
    text-align: center;
    padding: 30px 0;
    box-sizing: border-box;
}

#sub_making .sec05 .interactive01 .recommend ul li:first-child {
    border-right: 1px solid #804bfa;
}

#sub_making .sec05 .interactive01 .recommend ul li img {
    width: 100px;
}

#sub_making .sec05 .interactive01 .recommend ul li>p {
    padding: 30px 0 0 0;
    color: #fff;
    font-size: 22px;
}

#sub_making .sec05 .interactive02 ul {
    list-style: none;
    padding: 0;
    overflow: hidden;
    margin: 30px 0;
}

#sub_making .sec05 .interactive02 ul li {
    width: 30.3%;
    margin: 1.5%;
    float: left;
}

#sub_making .sec05 .interactive02 ul li img {
    width: 100%;
}

#sub_making .sec06 {
    width: 100%;
    overflow: hidden;
    padding: 0 0 100px 0;
    background: #222222;
}

#sub_making .sec06 form {
    margin: 60px auto 0;
    max-width: 900px;
}

#sub_making .sec06 form input {
    color: #000;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px 15px;
    width: 49.5%;
    float: left;
    margin-right: 1%;
    margin-bottom: 1%;
}

#sub_making .sec06 form input:nth-child(2n) {
    margin-right: 0;
}

#sub_making .sec06 form input[type="submit"] {
    background: #fff;
    border-radius: 0;
    font-size: 18px;
    font-weight: bold;
    border: 0;
    letter-spacing: 2px;
    margin: 50px auto;
    float: none;
    display: block;
    color: #000;
}

#sub_making .sec06 form textarea {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 15px 15px;
    box-sizing: border-box;
    height: 200px;
    color: #000;
}

#sub_making .sec06 form p.agree {
    color: #fff;
    width: 100%;
    text-align: left;
    padding: 10px 0;
    font-size: 13px;
}

#sub_making .sec06 form p.agree input {
    width: auto;
    margin: 3px 5px 0 0;
}

#sub_making .sec06 form p.agree a {
    background: #000;
    color: #fff;
    padding: 5px 8px;
    border-radius: 10px;
    margin-left: 5px;
    font-size: 12px;
}

.mk_logo {
    width: 100%;
    padding: 30px 0 150px 0;
}

.mk_logo ul {
    padding: 0;
    width: 1200px;
    margin: 0 auto;
    list-style: none;
    overflow: hidden;
}

.mk_logo ul li {
    width: 18%;
    float: left;
    background: #fff;
    margin: 1% 1%;
    text-align: center;
}

.mk_logo ul li img {
    width: 80%;
}

.sec_talk .sec_inner .talk {
    overflow: hidden;
    margin: 60px 0 0 0;
}

.sec_talk .sec_inner .talk .question {
    float: left;
    width: 50%;
    background: #e6e6e6;
    padding: 3% 3%;
    box-sizing: border-box;
    margin: 0 50% 5% 0;
    border-radius: 20px;
    position: relative;
}

.sec_talk .sec_inner .talk .answer {
    float: right;
    width: 70%;
    background: #6a32ea;
    padding: 3% 3%;
    box-sizing: border-box;
    margin: 0 0 5% 30%;
    border-radius: 20px;
}

.sec_talk .sec_inner .talk span {
    display: inline-block;
    float: left;
    background: #333;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 20px;
    border-radius: 40px;
    font-weight: bold;
}

.sec_talk .sec_inner .talk .answer span {
    background: #fff;
    color: #111;
}

.sec_talk .sec_inner .talk p {
    display: inline-block;
    padding: 0 !important;
    text-align: left;
    float: left;
    margin-left: 20px;
    font-size: 27px !important;
}

.sec_talk .sec_inner .talk .answer p {
    color: #fff;
}

/* 추가 리뉴얼 서브 */
#sub_renewal .sec01 h1 {
    font-size: 45px;
    color: #fff;
    border-bottom: 0;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.3em;
    font-weight: 100;
    text-align: center;
    font-family: "Gosanja", "Noto Sans KR", "Apple SD Gothic Neo", "Nanum Gothic", "Malgun Gothic", "�뗭�", Dotum, "Lucida Sans", "Trebuchet MS", Arial, Tahoma, sans-serif;
}

#sub_renewal .sec01 h1 span {
    display: inline-block;
    /* background: #6a32eb; */
    padding: 0 14px 5px 14px;
    margin-right: 5px;
    font-weight: 500;
}

#sub_renewal .sec_inner {
    width: 1200px;
    margin: 0 auto;
}

#sub_renewal .con_tit h2 {
    font-size: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    box-shadow: inset 0 -0.75em 0 0 #fff373;
    display: inline-block;
    margin-bottom: 30px;
}

#sub_renewal .con_tit h1 {
    font-size: 40px;
    font-weight: 300;
}

#sub_renewal .con_tit p {
    font-size: 20px;
    line-height: 1.5;
    padding-top: 30px;
}

.company .sec01 {
    background: #111111 url("/img/sub_n/com01.png") no-repeat 50% 50%;
    padding: 120px 0 120px 0;
    background-size: cover;
}

.company .sec02 {
    padding: 120px 0;
}

.company .sec02 .con_tit {
    text-align: center;
}

.company .sec02 .com01 ul {
    list-style: none;
    padding: 0;
    overflow: hidden;
    margin: 100px 0 0 0;
}

.company .sec02 .com01 ul li {
    width: 48%;
    float: left;
    letter-spacing: -1px;
    margin-bottom: 70px;
}

.company .sec02 .com01 ul li:nth-child(2n) {
    margin-left: 4%;
}

.company .sec02 .com01 ul li .img {
    min-height: 280px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.company .sec02 .com01 ul li .img.bg01 {
    background-image: url("/img/sub_n/com02.jpg");
}

.company .sec02 .com01 ul li .img.bg02 {
    background-image: url("/img/sub_n/com03.jpg");
}

.company .sec02 .com01 ul li .img.bg03 {
    background-image: url("/img/sub_n/com04.jpg");
}

.company .sec02 .com01 ul li .img.bg04 {
    background-image: url("/img/sub_n/com05.jpg");
}

.company .sec02 .com01 ul li h2 {
    font-size: 22px;
    color: #6a32eb;
    font-weight: bold;
    margin-top: 15px;
}

.company .sec02 .com01 ul li h1 {
    font-size: 28px;
    font-weight: 500;
}

.company .sec02 .com01 ul li p {
    font-size: 18px;
    color: #949494;
    margin-top: 10px;
}

.company .sec03 {
    background: #f1f1ff;
    padding: 150px 0 100px 0;
}

.company .sec03 .sec_inner {
    position: relative;
}

.company .sec03 .history {
    margin-top: 40px;
}

.company .sec03 .history .wrapper {
    margin-top: 0;
}

.company .sec03 .history .tabs label {
    display: block;
    float: left;
    width: 33.33333%;
    padding: 1em;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    color: #c7c7c7;
    margin: 0;
}

.company .sec03 .history .tabs label::before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #c7c7c7;
    content: "";
}

.company .sec03 .history .tabs label span {
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #c7c7c7;
    content: "";
}

.company .sec03 .history .tabs [id^="tab"]:checked+label span {
    background: #6a32eb;
}

.company .sec03 .history .tabs [id^="tab"]:checked+label span::before {
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 20px;
    border: 1px solid #6a32eb;
    border-radius: 50%;
    content: "";
}

.company .sec03 .history .tabs [id^="tab"]:checked+label {
    color: #6a32eb;
    border-bottom: 0;
}

.company .sec03 .history .tab-content {
    margin-top: 60px;
}

.company .sec03 .history .tab-content ul {
    list-style: none;
    padding: 0;
    width: 100%;
    overflow: hidden;
    margin-bottom: 80px;
}

.company .sec03 .history .tab-content ul li {
    float: left;
    font-size: 16px;
    line-height: 1.8;
    color: #464646;
}

.company .sec03 .history .tab-content ul li.date {
    font-size: 28px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    width: 13%;
    line-height: 1.2;
    color: #111;
}

.company .sec03 .history .tab-content ul li.date.ing {
    color: #6a32eb;
}

.company .sec03 .history .tab-content ul li.cus {
    width: 33%;
}

.company .sec03 .history .tab-content .btext {
    color: #ccc;
    text-align: right;
}

.company .sec04 {
    padding-top: 150px;
}

.company .sec04 .logo {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 0 150px 0;
}

.company .sec04 .logo ul {
    list-style: none;
    padding: 0;
    /* overflow-y: scroll;
    height: 450px; */
}

.company .sec04 .logo ul li {
    background: #fff;
    display: inline-block;
    width: 8%;
    margin: 1%;
    text-align: center;
}

.company .sec04 .logo ul li img {
    width: 80%;
}

.company .sec05 {
    padding: 100px 0;
    text-align: center;
    background: #111;
    position: relative;
    min-height: 500px;
}

.company .sec05::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url("/img/sub_n/com06.jpg") no-repeat 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.company .sec05 .sec_inner {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.company .sec05 .sec_inner h1 {
    font-family: "Montserrat", sans-serif;
}

.company .sec05 .sec_inner p {
    font-size: 30px;
    margin-bottom: 60px;
}

.company .sec05 .sec_inner p br {
    display: none;
}

.company .sec05 .sec_inner .bt a {
    color: #fff;
    border: 1px solid #fff;
    font-size: 15px;
    padding: 15px 30px;
    display: inline-block;
    margin: 0 5px;
}

.company .sec05 .sec_inner .bt a:hover {
    border: 1px solid #6a32eb;
    background: #6a32eb;
    transition: 0.5s;
}

.livebc .sec01 .onestep {
    width: 1200px;
    margin: 0 auto;
}

.livebc .sec01 .onestep ul {
    list-style: none;
    padding: 0;
    overflow: hidden;
}

.livebc .sec01 .onestep ul li {
    width: 23%;
    margin: 0 1%;
    background: #fff;
    border-radius: 15px;
    float: left;
    filter: drop-shadow(10px 10 + px 7px #eaeaea);
    padding: 2% 3% 4% 3%;
}

.livebc .sec01 .onestep ul li p.num {
    font-family: "Montserrat", sans-serif;
    font-size: 55px;
    color: #eaeaea;
    font-weight: bold;
}

.livebc .sec01 .onestep ul li p.text {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: -1px;
}

.livebc .sec01 .onestep ul li p.text span {
    color: #6a32eb;
}

.livebc .sec02 {
    padding: 0;
}

.livebc .sec02 .cinecam {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.livebc .sec02-1 {
    background: #Fff;
    padding-bottom: 120px;
}

.livebc .sec02-1 img {
    width: 100%;
}

.livebc .sec02-1 .cop-cont {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.livebc .sec02-1 .cop-cont .left {
    width: 30%;
    border: 10px solid #f5f5f5;
    box-shadow: 5px 10px 15px 0px rgb(0 0 0 / 20%);
}

.livebc .sec02-1 .cop-cont .right {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.livebc .sec02-1 .right>li {
    background-color: #f5f5f5;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4% 6%;
}

.livebc .sec02-1 .right>li:first-child {
    margin-bottom: 30px;
}

.livebc .sec02-1 .right>li .r-txt {
    width: 55%;
}

.livebc .sec02-1 .right>li .r-icon {
    width: 25%;
}

.livebc .sec02-1 .right .r-txt>p:first-child {
    font-size: 55px;
    font-weight: bold;
    color: #eaeaea;
}

.livebc .sec02-1 .right .r-txt>p {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: -1px;
}

.livebc .sec02-1 .right .r-txt>p>span {
    color: #6a32eb;
}

#sub_livecommerce.livebc .sec03 {
    background: url("/img/sub_n/bcbg.jpg") 50% 50% no-repeat;
    background-size: cover;
    padding: 0 0 120px 0;
}

#sub_livecommerce.livebc .sec03 .tit h2 {
    color: #fee101;
    box-shadow: inset 0 -0.75em 0 0 #111;
}

#sub_livecommerce.livebc .sec03 .tit h1 {
    color: #fff;
}

#sub_livecommerce.livebc .sec03 .media {
    width: 1200px;
    margin: 0 auto;
}

#sub_livecommerce.livebc .sec03 .media ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
}

#sub_livecommerce.livebc .sec03 .media ul li {
    width: 33.3%;
    float: left;
    text-align: center;
    padding: 0 1%;
    box-sizing: border-box;
}

#sub_livecommerce.livebc .sec03 .media ul li p {
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
}

#sub_livecommerce.livebc .sec03 .media ul li img {
    width: 100%;
}

#sub_livecommerce.livebc .sec04 {
    background: #fff;
    padding: 0 0 120px 0;
}

#sub_livecommerce.livebc .sec04 .livebc_pp {
    width: 1200px;
    margin: 0 auto;
}

#sub_livecommerce.livebc .sec04 .livebc_pp ul {
    list-style: none;
    overflow: hidden;
    padding: 0 0 60px 0;
}

#sub_livecommerce.livebc .sec04 .livebc_pp ul li {
    width: 48%;
    float: left;
}

#sub_livecommerce.livebc .sec04 .livebc_pp ul li:nth-child(1) {
    margin-right: 4%;
}

#sub_livecommerce.livebc .sec04 .livebc_pp ul li p {
    font-size: 23px;
    margin: 13px 0 0 0;
}

#sub_livecommerce.livebc .sec04 .livebc_pp ul li p.date {
    font-size: 17px;
    color: #858585;
    margin-top: 5px;
}

.event .sec01 {
    background: #111111 url("/img/sub_n/event01.png") no-repeat 50% 60%;
    padding: 120px 0 120px 0;
    background-size: cover;
}

.event .sec02 {
    padding: 120px 0;
    text-align: center;
    background: #fff;
}

.event .sec03 {
    background: #222;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.event .sec03 .strengths .str {
    width: 100%;
    float: left;
    padding: 50px 0;
}

.event .sec03 .strengths .str .icon {
    margin-bottom: 15px;
}

.event .sec03 .strengths .str .icon img {
    max-width: 80px;
}

.event .sec03 .strengths .str .main_text {
    float: left;
    width: 45%;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: -1px;
}

.event .sec03 .strengths .str .sub_text {
    float: left;
    width: 55%;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
}

.event .sec04 {
    padding: 120px 0;
}

.event .sec04 .difference {
    margin-top: 60px;
}

.event .sec04 .difference .dfr {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 50px 70px;
    box-sizing: border-box;
    margin: 25px 0;
}

.event .sec04 .difference .dfr .main_text {
    float: left;
    width: 30%;
    font-size: 43px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -1px;
    line-height: 1;
}

.event .sec04 .difference .dfr .main_text span {
    color: #6a32eb;
}

.event .sec04 .difference .dfr .sub_text {
    float: left;
    width: 70%;
}

.event .sec04 .difference .dfr .sub_text h1 {
    font-size: 28px;
}

.event .sec04 .difference .dfr .sub_text p {
    font-size: 17px;
    line-height: 1.5;
    padding: 20px 0 10px 0;
}

.event .sec05 {
    padding-bottom: 120px;
}

.event .sec05 .process ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 50px;
}

.event .sec05 .process ul li {
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
    width: 28%;
    text-align: center;
    margin: 0 -2%;
    max-width: 336px;
    height: 336px;
    border-radius: 100%;
    font-size: 22px;
    line-height: 336px;
}

.event .sec06 {
    padding-bottom: 80px;
}

.event .sec06 .con_tit {
    margin-bottom: 20px;
}

.event .sec06 ul {
    list-style: none;
    padding: 30px 0 0 0;
    width: 100%;
    overflow: hidden;
}

.event .sec06 ul li {
    float: left;
    width: 31.3%;
    margin-right: 3%;
    text-align: center;
    margin-bottom: 4%;
}

.event .sec06 ul li:nth-child(3n) {
    margin-right: 0;
}

.event .sec06 ul li a img {
    width: 100%;
}

.event .sec06 ul li a img {
    border-radius: 0;
}

.event .sec06 ul li a p {
    color: #111;
    font-size: 17px;
    padding-top: 10px;
}

.event .sec06 .needpopup {
    border-radius: 6px;
    box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 1);
}

.event .sec06 .needpopup p {
    margin: 0;
}

.event .sec06 .needpopup p+p {
    margin-top: 10px;
}

.needpopup.stacked img {
    width: 100%;
}

.event .sec07 {
    background: url("/img/sub_n/event_bg.jpg") 50% 50% no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.event .sec07 .con_tit {
    text-align: center;
}

#sub_renewal.event .sec07 .con_tit h2 {
    color: #fff;
    box-shadow: inset 0 -0.75em 0 0 #6a32eb;
}

.event .sec07 .con_tit h1 {
    color: #fff;
}

.event .sec07 .program .tabs {
    text-align: center;
}

.event .sec07 .program .tabs [id^="tab"]:checked+label {
    background: #6a32eb;
    color: #fff;
    border-bottom: 0;
    padding: 10px 30px;
    border-radius: 100px;
}

.event .sec07 .program .tab-content .text {
    color: #fff;
    padding: 80px 0 40px 0;
}

.event .sec07 .program .tab-content .text h1 {
    font-size: 53px;
}

.event .sec07 .program .tab-content .text p {
    font-size: 20px;
    padding: 20px 0 10px 0;
    line-height: 1.5;
}

.event .sec07 .program .tab-content .text p.tag {
    color: #fee101;
    font-weight: bold;
    font-size: 18px;
}

.event .sec07 .program .tab-content .img ul {
    list-style: none;
    padding: 0;
}

.event .sec07 .program .tab-content .img ul li {
    width: 50%;
    float: left;
    padding: 10px;
    box-sizing: border-box;
}

.event .sec07 .program .tab-content .img ul li:first-child {
    width: 100%;
}

.event .sec07 .program .tab-content .img ul li img {
    width: 100%;
}

.event .sec08 {
    padding: 120px 0;
}

.event .sec08 .sec_inner .con_tit {
    text-align: center;
}

.event .sec08 form {
    margin: 60px auto;
    max-width: 900px;
}

.event .sec08 form input::placeholder {
    color: #221c24;
    font-size: 15px;
}

.event .sec08 form input {
    background: #fff;
    border-radius: 10px;
    padding: 15px 15px;
    width: 49.5%;
    float: left;
    color: #221c24;
    margin-right: 1%;
    margin-bottom: 1%;
    border: 1px solid #221c24;
}

.event .sec08 form input:nth-child(2n) {
    margin-right: 0;
}

.event .sec08 form textarea::placeholder {
    color: #221c24;
    font-size: 15px;
}

.event .sec08 form textarea {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 15px 15px;
    box-sizing: border-box;
    color: #221c24;
    height: 200px;
    border: 1px solid #221c24;
}

.event .sec08 form p.agree {
    width: 100%;
    text-align: left;
    padding: 10px 0;
    font-size: 15px;
    /* line-height: 17px; */
}

.event .sec08 form p.agree input {
    width: auto;
    margin: 5px 5px 0 0;
}

.event .sec08 form p.agree a {
    background: #221c24;
    color: #fff;
    padding: 5px 8px;
    border-radius: 10px;
    margin-left: 5px;
    font-size: 12px;
}

.event .sec08 form input[type="submit"] {
    background: #6a32eb;
    color: #fff;
    border-radius: 0;
    border: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 50px auto;
    float: none;
    display: block;
}

#sub_making .sec03 .video_portfolio ul {
    list-style: none;
    padding: 0;
    overflow: hidden;
}

#sub_making .sec03 .video_portfolio ul li {
    width: 33.3%;
    margin: 0;
    float: left;
    line-height: 0;
}

#sub_making .sec03 .video_portfolio ul li a .txt {
    line-height: normal;
}

#sub_making .sec03 .video_portfolio ul li a .img {
    position: relative;
}

#sub_making .sec03 .video_portfolio ul li a img {
    width: 100%;
}

#sub_making .sec03 .video_portfolio ul li a .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    opacity: 0;
    width: 90%;
    text-align: center;
}

#sub_making .sec03 .video_portfolio ul li a .txt h3 {
    font-size: 19px;
}

#sub_making .sec03 .video_portfolio ul li a .txt p {
    font-size: 14px;
    color: #fee101;
    padding: 5px 0 0 0;
}

#sub_making .sec03 .video_portfolio ul li a .cover {
    width: 100%;
    height: 100%;
    border: 7px solid #6a32eb;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
}

#sub_making .sec03 .video_portfolio ul li a:hover .txt {
    opacity: 1;
    transition: 0.5s;
}

#sub_making .sec03 .video_portfolio ul li a:hover .cover {
    opacity: 1;
    transition: 0.5s;
}

p.pp_tit {
    text-align: left;
    font-size: 22px;
    border-bottom: 2px solid #221c24;
    margin-bottom: 15px;
}

/* 메타버스 */
#sub_renewal.metaverse .sec01 {
    background: url('/img/sub_n/meta01.png')no-repeat;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

#sub_renewal.metaverse .sec01::before {
    content: '';
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
}

#sub_renewal.metaverse .sec01 .subMainTitle {
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

#sub_renewal.metaverse .sec01 .subMainTitle h1 {
    font-size: 55px;
    font-weight: bold;
}

#sub_renewal.metaverse .sec01 .subMainTitle p {
    font-size: 28px;
    padding-top: 10px;
    font-weight: 300;
}

#sub_renewal.metaverse .sec01 .subMainTitle img {
    padding-top: 5px;
    vertical-align: -8px;
    margin-left: 15px;
}

#sub_renewal.metaverse .sec02 {
    background: #fff;
    text-align: center;
    padding: 120px 0;
}

#sub_renewal.metaverse .sec_add01 {
    display: none;
    padding: 60px 0 120px 0;
    background: #fff;
}

#sub_renewal.metaverse .sec_add01 .zep_map ul {
    overflow: hidden;
    list-style: none;
    padding: 0 5%;
    margin-top: 60px;
}

#sub_renewal.metaverse .sec_add01 .zep_map ul li {
    width: 31.3%;
    margin: 1%;
    float: left;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px 2px #eaeaea;
}

#sub_renewal.metaverse .sec_add01 .zep_map ul li .img {
    width: 100%;
    min-height: 300px;
    background-position: 50% 50%;
    background-size: cover;
}

#sub_renewal.metaverse .sec_add01 .zep_map ul li .text {
    background: #6a32eb;
    padding: 15px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

#sub_renewal.metaverse .con_tit {
    text-align: center;
}

#sub_renewal.metaverse .con_tit h1 {
    font-weight: bold;
}

#sub_renewal.metaverse .con_tit h1 span {
    color: #6a32eb;
}

#sub_renewal.metaverse .con_tit p span {
    color: #6a32eb;
    font-weight: bold;

}

#sub_renewal.metaverse .sec02 .macbook {
    margin-top: 60px;
}

#sub_renewal.metaverse .sec03 {
    padding: 120px 0;
}

#sub_renewal.metaverse .sec03 .comparison {
    margin-top: 60px;
}

#sub_renewal.metaverse .sec03 .chart_img {
    margin: 60px 0 0 0;
}

#sub_renewal.metaverse .sec03 .chart table {
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin: 60px 0 0 0;
    display: none;
}

#sub_renewal.metaverse .sec03 .chart table caption {
    display: none;
}

#sub_renewal.metaverse .sec03 .chart table thead tr th {
    padding: 15px 0;
    background: #9c9c9c;
    color: #fff;
}

#sub_renewal.metaverse .sec03 .chart table thead tr th.point {
    background: #6a32eb;
}

#sub_renewal.metaverse .sec03 .chart table tbody tr td {
    background: #fff;
    padding: 15px 0;
}

#sub_renewal.metaverse .sec03 .chart table tbody tr td.tit {
    background: #111;
    font-weight: bold;
    color: #fff;
    padding: 15px 15px;

}

#sub_renewal.metaverse .sec03 .chart table tbody tr td.point {
    background: #eeebf5;
    font-weight: bold;
}

#sub_renewal.metaverse .sec_add02 {
    background: url('/img/sub_n/meta_bg1.png')50% 50% no-repeat;
    background-size: cover;
    padding: 120px 0;
}

#sub_renewal.metaverse .sec_add02 .video {
    width: 900px;
    margin: 60px auto 0;
    box-shadow: 0 0 10px 5px #111;
}

#sub_renewal.metaverse .sec_add02 .video>video {
    max-width: 100%;
}

#sub_renewal.metaverse .sec_add02 .con_tit h2 {
    box-shadow: inset 0 -0.75em 0 0 #6a32eb;
    color: #fff;
}

#sub_renewal.metaverse .sec_add02 .con_tit h1 {
    color: #fff;
}

#sub_renewal.metaverse .sec_add02 .con_tit h1 span {
    color: #fff373;
}

#sub_renewal.metaverse .sec_add03 {
    padding: 120px 0 300px;
    background: linear-gradient(to bottom, #deeef5, #b1b1d8);
    background-size: 100%;
}

#sub_renewal.metaverse .sec_add03 .sec_inner {
    position: relative;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul {
    padding: 0;
    position: relative;
    height: 930px;
    width: 90%;
    margin: 80px 5% 0 5%;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li {
    width: 40%;
    margin: 0 5%;
    position: absolute;
    background: #fff;
    border-radius: 15px;
    min-height: 450px;
    overflow: hidden;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li:nth-child(1) {
    top: 0;
    left: 0;

}

#sub_renewal.metaverse .sec_add03 .gather02 ul li:nth-child(2) {
    top: 120px;
    right: 0;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li:nth-child(3) {
    top: 550px;
    left: 0;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li:nth-child(4) {
    top: 670px;
    right: 0;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li:nth-child(3) {}

#sub_renewal.metaverse .sec_add03 .gather02 ul li:nth-child(4) {}

#sub_renewal.metaverse .sec_add03 .gather02 ul li .bg0 {
    width: 100%;
    min-height: 300px;
    background: url('/img/sub_n/meta24.png')no-repeat 0 0 / contain;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li .bg1 {
    width: 100%;
    min-height: 300px;
    background: url('/img/sub_n/meta18.png')no-repeat center center / cover;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li .bg2 {
    width: 100%;
    min-height: 300px;
    background: url('/img/sub_n/meta19.jpg')no-repeat center center / cover;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li .bg3 {
    width: 100%;
    min-height: 300px;
    background: url('/img/sub_n/meta20.png')no-repeat center center / cover;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li .text {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #6a32eb;
    color: #fff;
    text-align: center;
    padding: 20px 10px 30px 10px;
    min-height: 180px;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li .text h2 {
    font-size: 25px;
    line-height: 1;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li .text h2 span {
    font-weight: normal;
    font-size: 15px;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li .text h2::before {
    content: '';
    display: inline-block;
    width: 80%;
    margin: 0 10% 10px 10%;
    height: 1px;
    background: #fff;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li .text h2::after {
    content: '';
    display: inline-block;
    width: 80%;
    margin: 0 10% 0 10%;
    height: 1px;
    background: #fff;
}

#sub_renewal.metaverse .sec_add03 .gather02 ul li .text p {
    margin-top: 15px;
    font-size: 17px;
}

#sub_renewal.metaverse .sec_add03 .cloud_wrap img {
    max-width: 280px;
    position: absolute;
}

#sub_renewal.metaverse .sec_add03 .cloud_wrap .cloud01 {
    top: 630px;
}

#sub_renewal.metaverse .sec_add03 .cloud_wrap .cloud02 {
    top: 760px;
    right: 30px;
}

#sub_renewal.metaverse .sec_add03 .cloud_wrap .cloud03 {
    top: 1260px;
    left: 20px;

}

#sub_renewal.metaverse .sec_add03 .cloud_wrap .cloud04 {
    top: 1350px;
    right: 0;
}

#sub_renewal.metaverse .sec04 {
    background: #fff;
    padding: 120px 0;
    overflow: hidden;
}

#sub_renewal.metaverse .sec04 .venture {
    margin-top: 60px;
    padding: 0 7%;
}

#sub_renewal.metaverse .sec04 .venture .left {
    float: left;
    width: 30%;
}

#sub_renewal.metaverse .sec04 .venture .right {
    width: 70%;
    padding: 60px 0 0 60px;
}

#sub_renewal.metaverse .sec04 .venture .right .stit {
    font-size: 30px;
    letter-spacing: -1px;
    font-weight: bold;
}

#sub_renewal.metaverse .sec04 .venture .right .stit span {
    background: #6a00eb;
    padding: 0 8px 5px 8px;
    color: #fff;
}

#sub_renewal.metaverse .sec04 .venture .right .scon {
    font-size: 17px;
    padding: 20px 0 40px 0;
}

#sub_renewal.metaverse .sec04 .venture .right .refer {
    background: #f5f5f5;
    padding: 15px 20px;
    font-size: 13px;
    width: 80%;
}

#sub_renewal.metaverse .sec04 .venture .right .refer .question {
    color: #eb1000;
    font-weight: bold;
}

#sub_renewal.metaverse .sec05 {
    background: #eeeaf7 url('/img/sub_n/meta06.png') no-repeat 0 100%;
    background-size: 100%;
    padding: 120px 0 160px 0;
}

#sub_renewal.metaverse .sec05 .gather01 {
    overflow: hidden;
    margin-top: 60px;
    padding: 0 20px;
    box-sizing: border-box;
}

#sub_renewal.metaverse .sec05 ul {
    padding: 0;
}

#sub_renewal.metaverse .sec05 ul.tabs {
    list-style: none;
    margin: 0 0 30px 0;
    text-align: center;
}

#sub_renewal.metaverse .sec05 ul.tabs li {
    display: inline-block;
    ;
    margin: 0 10px;
}

#sub_renewal.metaverse .sec05 ul.tabs li a {
    display: table-cell;
    font-size: 27px;
    width: 95px;
    height: 95px;
    border-radius: 100%;
    background: #fff;
    font-family: 'DungGeunMo';
    text-decoration: none;
    position: relative;
    color: #000;
    outline: none;
    text-align: center;
    vertical-align: middle;
}

#sub_renewal.metaverse .sec05 ul.tabs li a:visited {
    color: #000;
}

#sub_renewal.metaverse .sec05 ul.tabs li a:hover {
    background: #6a32eb;
    color: #fff;
}

#sub_renewal.metaverse .sec05 ul.tabs li.selected a,
ul.tabs li.selected a:hover {
    position: relative;
    top: 0px;
    background: #6a32eb;
    color: #fff;
}


#sub_renewal.metaverse .sec05 ul.tabs li.selected a:hover {
    text-decoration: none;
}


#sub_renewal.metaverse .sec05 div.tabcontents {
    width: 100%;
}

#sub_renewal.metaverse .sec05 div.tabcontents .slick-list {
    background: #cac1e9;
    border-radius: 15px;
    padding: 60px 50px !important;
}

#sub_renewal.metaverse .sec05 div.tabcontents .img {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    min-height: 450px;
}

#sub_renewal.metaverse .sec05 div.tabcontents .img.bg01 {
    background: url('/img/sub_n/meta15.png')no-repeat 50% 80%;
    background-size: 100%;
}

#sub_renewal.metaverse .sec05 div.tabcontents .img.bg02 {
    background: url('/img/sub_n/meta16.jpg')no-repeat 50% 45%;
    background-size: 100%;
}

#sub_renewal.metaverse .sec05 div.tabcontents .img.bg03 {
    background: url('/img/sub_n/meta17.png')no-repeat 50% 0%;
    background-size: 100%;
}

#sub_renewal.metaverse .sec05 div.tabcontents .img img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    max-width: 320px;
}

#sub_renewal.metaverse .sec05 div.tabcontents .text {
    margin-top: 30px;
    overflow: hidden;
}

#sub_renewal.metaverse .sec05 div.tabcontents .text .textLeft {
    float: left;
    width: auto;
}

#sub_renewal.metaverse .sec05 div.tabcontents .text .textLeft h3 {
    font-weight: bold;
    letter-spacing: -1px;
}

#sub_renewal.metaverse .sec05 div.tabcontents .text .textLeft h3 span {
    color: #6a32eb;
}

#sub_renewal.metaverse .sec05 div.tabcontents .text .textRight {
    width: 70%;
    float: left;
    padding: 5px 0 0 5%;
}

#sub_renewal.metaverse .sec05 div.tabcontents .text .textRight p.recommend {
    display: inline-block;
    background: #fff;
    padding: 10px 20px 10px 0;
    border-radius: 100px;
    margin: 15px 0 0 0;

}

#sub_renewal.metaverse .sec05 div.tabcontents .text .textRight p.recommend span {
    background: #111;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 100px;
    margin-right: 10px;
}

#sub_renewal.metaverse .sec05 .slick-slide img {
    border-radius: 15px;
}

#sub_renewal.metaverse .sec06 {
    padding-bottom: 75%;
    background: #b1b1d8 url('/img/sub_n/meta10.png')no-repeat 35% 0 / cover;
}

#sub_renewal.metaverse .sec06 .gather02 ul {
    overflow: hidden;
    margin-top: 60px;
}

#sub_renewal.metaverse .sec06 .gather02 ul li {
    width: 30.3%;
    margin: 1% 1.5%;
    float: left;
    background: #fff;
    border-radius: 15px;
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

#sub_renewal.metaverse .sec06 .gather02 ul li .bg1 {
    width: 100%;
    min-height: 200px;
    background: url('/img/sub_n/meta18.png')no-repeat 50% 100%;
    background-size: 100%;
}

#sub_renewal.metaverse .sec06 .gather02 ul li .bg2 {
    width: 100%;
    min-height: 250px;
    background: url('/img/sub_n/meta19.jpg')no-repeat 50% 100%;
    background-size: 160%;
}

#sub_renewal.metaverse .sec06 .gather02 ul li .bg3 {
    width: 100%;
    min-height: 200px;
    background: url('/img/sub_n/meta20.png')no-repeat 50% 0;
    background-size: 100%;
}

#sub_renewal.metaverse .sec06 .gather02 ul li .text {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #6a32eb;
    color: #fff;
    text-align: center;
    padding: 20px 10px 30px 10px;
    min-height: 180px;
}

#sub_renewal.metaverse .sec06 .gather02 ul li .text h2 {
    font-size: 18px;
    line-height: 1;
}

#sub_renewal.metaverse .sec06 .gather02 ul li .text h2 span {
    font-weight: normal;
    font-size: 13px;
}

#sub_renewal.metaverse .sec06 .gather02 ul li .text h2::before {
    content: '';
    display: inline-block;
    width: 80%;
    margin: 0 10% 10px 10%;
    height: 1px;
    background: #fff;
}

#sub_renewal.metaverse .sec06 .gather02 ul li .text h2::after {
    content: '';
    display: inline-block;
    width: 80%;
    margin: 0 10% 0 10%;
    height: 1px;
    background: #fff;
}

#sub_renewal.metaverse .sec06 .gather02 ul li .text p {
    margin-top: 15px;
}

#sub_renewal.metaverse .sec06 .gather03 {}

#sub_renewal.metaverse .sec06 .gather03 .gathertown {
    width: 50%;
    background: url('/img/sub_n/meta12.png')no-repeat 0 0 / 100%;
    min-height: 250px;
    margin: 0 auto 300px;
    font-family: 'DungGeunMo';
    text-align: center;
}

#sub_renewal.metaverse .sec06 .gather03 .gathertown h3 {
    font-size: 25px;
    padding-top: 6%;
}

#sub_renewal.metaverse .sec06 .gather03 .gathertown h3 span {
    font-size: 30px;
    color: #6a32eb;
}

#sub_renewal.metaverse .sec06 .gather03 .gathertown a {
    margin-top: 20px;
    display: inline-flex;
    padding: 20px;
    background: #6a32eb;
    border: 3px solid #111;
    color: #fff;
    border-radius: 10px;
    font-size: 17px;
    width: 40%;
    height: 60px;
    justify-content: center;
    align-items: center;
}

/* e스포츠 */
#sub_renewal.esports .con_tit {
    overflow: hidden;
}

#sub_renewal.esports .con_tit .left {
    width: 55%;
    float: left;
}

#sub_renewal.esports .con_tit .right {
    width: 45%;
    float: left;
}

#sub_renewal.esports .con_tit .right p {
    padding-top: 80px;
}

#sub_renewal.esports .sec01 {
    padding: 120px 0;
    background: #111 url('/img/sub_n/esports01.png') no-repeat 100% 70%;
    background-size: 80%;
}

#sub_renewal.esports .sec01 h1 {
    text-align: left;
}

#sub_renewal.esports .sec01 h1 span.grey {
    background: #959595;
    margin-bottom: 10px;
}

#sub_renewal.esports .sec02 {
    padding: 120px 0;
}

#sub_renewal.esports .sec02 .esports01 {
    margin: 60px 0 0 0;
    width: 100%;
    overflow: hidden;
}

#sub_renewal.esports .sec02 .esports01 .why {
    width: 50%;
    float: left;
}

#sub_renewal.esports .sec02 .esports01 .why img {
    max-width: 90%;
}

#sub_renewal.esports .sec02 .esports01 ul {
    width: 50%;
    float: left;
    list-style: none;
    overflow: hidden;
    padding: 10px 0 0 0;
}

#sub_renewal.esports .sec02 .esports01 ul li {
    background: #fff;
    font-size: 17px;
    color: #7d7d7d;
    padding: 20px 0;
    text-align: center;
    width: 80%;
    margin-bottom: 3%;
    float: left;
    border-radius: 50px;
}

#sub_renewal.esports .sec02 .esports01 ul li:nth-child(2n) {
    margin-left: 20%;
}

#sub_renewal.esports .sec03 {
    padding: 0 0 120px 0;
}

#sub_renewal.esports .sec03 .esports02 img {
    max-width: 100%;
    margin-top: 0;
}

#sub_renewal.esports .sec04 {
    background: #000000 url('/img/sub_n/esports02.png')no-repeat 0 0;
    background-size: 100%;
    padding: 120px 0;
}

#sub_renewal.esports .sec04 .con_tit {
    margin-bottom: 60px;
}

#sub_renewal.esports .sec04 .con_tit h2 {
    color: #fff;
    box-shadow: inset 0 -0.75em 0 0 #6a32eb;
}

#sub_renewal.esports .sec04 .con_tit h1 {
    color: #fff;
}

#sub_renewal.esports .sec04 .con_tit .right p {
    color: #fff;
}

#sub_renewal.esports .sec04 .video_wrap #video {
    position: relative;
    width: 100%;
}

#sub_renewal.esports .sec04 .video_wrap #video #btn-play {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    color: #fff;
    z-index: 99;
    width: 100%;
    text-align: center;
}

#sub_renewal.esports .sec04 .video_wrap #video #btn-play h2 {
    font-size: 35px;
    letter-spacing: -1px;
    font-weight: bold;
}

#sub_renewal.esports .sec04 .video_wrap #video #btn-play p {
    font-size: 22px;
    font-weight: 300;
    margin-top: 5px;
}

#sub_renewal.esports .sec04 .video_wrap #video #btn-play p.bt {
    display: inline-block;
    background: #6a32eb;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    border-radius: 5px;
    padding: 15px 60px;
    margin: 30px 0 0 0;
    cursor: pointer;
}

#sub_renewal.esports .sec04 .text {
    text-align: center;
    color: #fff;
    padding: 80px 0 40px;
    letter-spacing: -1px;
}

#sub_renewal.esports .sec04 .text h2 {
    font-size: 35px;
    font-weight: bold;
}

#sub_renewal.esports .sec04 .text p {
    font-size: 20px;
    padding-top: 20px;
}

#sub_renewal.esports .sec04 .text p span {
    color: #ffea39;
}

#sub_renewal.esports .sec04 .refer {
    overflow: hidden;
}

#sub_renewal.esports .sec04 .refer img{
    width: 100%;
    display: block;
}

#sub_renewal.esports .sec04 .refer .swiper-container{
    width: 100%;
    height: auto;
    margin: 0;
}

#sub_renewal.esports .sec04 .refer .sw1-container{
    padding: 5% 0;
}

#sub_renewal.esports .sec04 .refer .sw1 {
    background: #000;
}

#sub_renewal.esports .swiper-pagination-progressbar{
    background: rgba(255,255,255,.8);
}

#sub_renewal.esports .swiper-container-horizontal>.swiper-pagination-progressbar{
    width: 50%;
    left: 50%;
    top: auto;
    bottom: 0;
    margin-left: -25%;
}

#sub_renewal.esports .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background: #6a32eb ;
}

#sub_renewal.esports .sw2-pagination .swiper-pagination-bullet{
    background: #Fff;
    opacity: .5;
}

#sub_renewal.esports .sw2-pagination .swiper-pagination-bullet-active{
    opacity: 1;
    background: #6a32eb;
}

#sub_renewal.esports .swiper-button-prev{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background:#6a32eb url(/img/sub_n/arrow_prev.png) no-repeat center center;
    background-size: 25px auto;
}
#sub_renewal.esports .swiper-button-prev::after,#sub_renewal.esports .swiper-button-next::after{
    display: none;
}

#sub_renewal.esports .swiper-button-next{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #6a32eb url(/img/sub_n/arrow_next.png) no-repeat center center;
    background-size: 25px auto;
}

#sub_renewal.esports .sec05 {
    padding: 120px 0;
}

#sub_renewal.esports .sec05 .esports04 {
    margin-top: 60px;
}

#sub_renewal.esports .sec05 .esports04 img {
    width: 100%;
}

#sub_renewal.esports .sec06 {
    padding: 0 0 120px 0;
}

#sub_renewal.esports .sec06 .esports05 ul {
    list-style: none;
    padding: 60px 0 0 0;
    overflow: hidden;
}

#sub_renewal.esports .sec06 .esports05 ul li {
    width: 18%;
    float: left;
    margin: 1%;
}

#sub_renewal.esports .sec06 .esports05 ul li img {
    width: 100%;
}

#sub_renewal.esports .sec07 {
    padding: 120px 0;
    background: #fff;
}

#sub_renewal.esports .sec07 .con_tit {
    text-align: center;
}

#sub_renewal.esports .sec07 form {
    margin: 60px auto;
    max-width: 900px;
}

#sub_renewal.esports .sec07 form input::placeholder {
    color: #221c24;
    font-size: 15px;
}

#sub_renewal.esports .sec07 form input {
    background: #fff;
    border-radius: 10px;
    padding: 15px 15px;
    width: 49.5%;
    float: left;
    margin-right: 1%;
    margin-bottom: 1%;
    color: #221c24;
}

#sub_renewal.esports .sec07 form input:nth-child(2n) {
    margin-right: 0;
}

#sub_renewal.esports .sec07 form input#game {
    width: 100%;
    margin-right: 0;
}

#sub_renewal.esports .sec07 form textarea::placeholder {
    color: #221c24;
    font-size: 15px;
}

#sub_renewal.esports .sec07 form textarea {
    width: 100%;
    background: #fff;
    color: #221c24;
    border-radius: 10px;
    padding: 15px 15px;
    box-sizing: border-box;
    height: 200px;
    border: 1px solid #221c24;
}

#sub_renewal.esports .sec07 form p.agree {
    width: 100%;
    text-align: left;
    padding: 10px 0;
    font-size: 15px;
    line-height: 17px;
}

#sub_renewal.esports .sec07 form p.agree input {
    width: auto;
    margin: 3px 5px 0 0;
}

#sub_renewal.esports .sec07 form p.agree a {
    background: #221c24;
    color: #fff;
    padding: 5px 8px;
    border-radius: 10px;
    margin-left: 5px;
    font-size: 12px;
}

#sub_renewal.esports .sec07 form input[type="submit"] {
    background: #6a32eb;
    color: #fff;
    border-radius: 0;
    font-size: 18px;
    font-weight: bold;
    border: 0;
    letter-spacing: 2px;
    margin: 50px auto;
    float: none;
    display: block;
}

/* 
@media (max-width:2000px) {
    #sub_renewal.metaverse .sec06 {
        background: #b1b1d8 url('/img/sub_n/meta10.png')no-repeat 50% -500%;
    }
}

@media (max-width:1320px) {
    #sub_renewal.metaverse .sec06 {
        background: #b1b1d8 url('/img/sub_n/meta10.png')no-repeat 50% -230%;
        background-size: 180% !important;
    }

    #sub_renewal.metaverse .sec06 .gather03 .gathertown {
        background-position: 50% 0;
        background-size: 80%;
    }
} */

@media (max-width: 767px) {
    .sec1_conunt_wrap {
        width: 100%;
        padding: 50px 0 0 0;
    }

    .sec1_tit {
        width: 96%;
    }

    .sec1_tit:first-child {
        border-right: none;
    }

    .sec1_tit .count .counter {
        font-size: 50px;
    }

    .sec1_tit h2 {
        font-size: 25px;
    }

    .board_tit p {
        font-size: 13px;
        line-height: 1.5;
    }

    .xet-add-logo ul {
        width: 90%;
        margin: 0 5%;
        padding: 5% 0;
    }

    .xet-add-logo ul li {
        width: 14%;
        padding: 5px 0;
    }

    .xet-feature .feature_text {
        padding: 5%;
        box-sizing: border-box;
        font-size: 14px;
    }

    .xet-vlist {
        padding: 60px 0;
    }

    .xet-vlist ul li {
        width: 98%;
        float: left;
        margin: 1%;
        min-height: 250px;
    }

    .xet-vlist ul li p {
        padding: 10px 0 20px 0;
    }

    .xet-vlist ul li p span {
        clear: both;
        display: inline-block;
    }

    .xet-vlist ul li iframe {
        height: 150px;
    }

    section h6 {
        font-size: 16px;
    }

    .slider_text {
        width: 90%;
    }

    .slider_text h2 {
        font-size: 35px;
    }

    .slider_text h2 br {
        display: block;
    }

    .slider_text p {
        font-size: 17px;
    }

    .sub_video {
        width: 97%;
        border-bottom: 1px solid #eaeaea;
        text-align: left;
        min-height: auto;
        padding: 5% 0;
        margin-bottom: 0;
    }

    .sub_video iframe {
        width: 33%;
        float: left;
        height: 90px;
        margin-right: 3%;
    }

    .sub_video p {
        font-size: 15px;
        line-height: 1.3;
    }

    .sub_video span {
        font-size: 12px;
    }

    #sub_livecommerce .con {
        width: 100%;
    }

    .lc_video {
        height: 78vh;
    }

    .lc_video .block-container>.block {
        text-align: center;
    }

    .lc_video .block-container>.block>h1 {
        font-size: 30px;
    }

    .lc_video .block-container>.block>p {
        font-size: 18px;
        padding: 0 9%;
    }

    .lc_video .block-container>.block>p br {
        display: none;
    }

    .mk_video video {
        height: auto;
    }

    #sub_livecommerce {
        padding: 0;
    }

    #sub_livecommerce .con {
        padding: 60px 0 30px 0;
    }

    #sub_livecommerce .studio .con {
        padding: 0;
    }

    #sub_livecommerce.livecmr .studio .con {
        padding-top: 160px;
    }

    #sub_livecommerce .con .left {
        width: 100%;
    }

    #sub_livecommerce .con .right {
        width: 100%;
    }

    #sub_livecommerce .tit h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    #sub_livecommerce .tit h1 {
        font-size: 26px;
    }

    #sub_livecommerce .tit p {
        font-size: 13px;
        padding-top: 30px;
    }

    #sub_livecommerce .sec01 .img ul li {
        width: 100%;
    }

    #sub_livecommerce .sec02 .left h1 img {
        max-height: 20px;
    }

    #sub_livecommerce .sec02 .camera ul {
        margin-bottom: 100px;
    }

    #sub_livecommerce .sec02 .camera ul li {
        width: 33.3%;
    }

    #sub_livecommerce .sec02 .camera ul li:last-child {
        display: none;
    }

    #sub_livecommerce .sec03 {
        padding: 0 0 10% 0;
        background-size: cover;
    }

    #sub_livecommerce .sec03 .phones {
        position: relative;
        margin: 30px auto 60px;
    }

    #sub_livecommerce .sec03 .phones img {
        width: 130%;
    }

    #sub_livecommerce .sec03 .tit p {
        padding-top: 20px;
    }

    .typo_wrap .console-container {
        width: 100%;
        font-size: 18px;
        height: 100px;
        line-height: 100px;
    }

    #sub_making .sec_inner {
        width: 100%;
        padding: 60px 0 0 0;
    }

    #sub_making .tit img {
        width: 90%;
    }

    #sub_making .sec_inner p {
        font-size: 15px;
        padding: 10px 0;
    }

    #sub_making .sec01 .con img {
        width: 50%;
        margin: 10px 25%;
        clear: both;
    }

    #sub_making .sec02 .con img {
        width: 80%;
        margin-top: 10px;
    }

    #sub_making .sec04 {
        margin: 0 0 60px 0;
    }

    #sub_making .sec04 .tit p {
        padding: 0 5%;
    }

    #sub_making .sec04 .tit p br {
        display: none;
    }

    #sub_making .sec04 .video {
        padding: 30px 0 100px 0;
    }

    #sub_making .sec04 .video iframe {
        width: 90%;
        height: 300px;
    }

    .baord_gallery .item {
        width: 100% !important;
        left: 0 !important;
    }

    .mk_logo {
        padding: 0 0 100px 0;
        width: 90%;
        margin: 0 auto;
    }

    .mk_logo ul {
        width: 100%;
        padding: 0;
    }

    .mk_logo ul li {
        width: 31.3%;
    }

    .sec_talk .sec_inner .talk {
        width: 90%;
        margin: 0 auto 20px;
    }

    .sec_talk .sec_inner .talk .question {
        width: 80%;
        margin: 5% 20% 3% 0;
        padding: 5% 5%;
    }

    .sec_talk .sec_inner .talk .answer {
        width: 90%;
        margin: 0 0 0 10%;
        padding: 5% 5%;
    }

    .sec_talk .sec_inner .talk p {
        font-size: 16px !important;
        font-weight: bold;
        margin: 5px 0 0 0;
        display: block;
        float: none;
    }

    .sec_talk .sec_inner .talk span {
        font-size: 15px;
        width: 30px;
        height: 30px;
        line-height: 28px;
        display: block;
        float: none;
    }
}

/* 리뉴얼 반응형(태블릿) */
@media (max-width:1600px) {
    .xet-vlist ul li {
        min-height: 310px;
    }

    #sub_renewal.metaverse .sec_add02 .video {
        width: 100%;
    }
}

/* 리뉴얼 반응형(태블릿) */
@media (max-width:1320px) {
    .sec1_conunt_wrap {
        width: 100%;
    }

    .sec1_tit h2 {
        font-size: 22px;
    }

    .sec1_tit .count .counter {
        font-size: 35px;
    }

    .xet-section.mn_contactus .contactus {
        width: 100%;
    }

    #sub_renewal .sec_inner {
        width: 100%;
        padding: 0 5%;
    }

    .lc_video .block-container {
        margin: 0 5%;
    }

    #sub_livecommerce .con {
        width: 100%;
    }

    #sub_livecommerce .con .left {
        width: 100%;
    }

    #sub_livecommerce .con .right {
        width: 100%;
    }

    #sub_livecommerce .tit p {
        padding-top: 30px;
    }

    .livebc .sec01 .onestep {
        width: 100%;
    }

    .livebc .sec01 .onestep ul li {
        width: 49%;
        margin: 0 2% 2% 0;
    }

    .livebc .sec01 .onestep ul li:nth-child(2n) {
        margin-right: 0;
    }

    .livebc .sec02 .cinecam {
        width: 100%;
    }

    .livebc .sec02-1 .cop-cont {
        width: 100%;
    }

    .livebc .sec02-1 .right .r-txt>p {
        font-size: 25px;
    }

    #sub_livecommerce .sec01 .regular,
    #sub_livecommerce .sec04 .studio {
        width: 100%;
    }

    #sub_livecommerce.livebc .sec04 .livebc_pp {
        width: 100%;
    }

    #sub_livecommerce.livebc .sec04 .livebc_pp ul li iframe {
        height: 250px;
    }

    .xet-section.mn_family .family ul li {
        margin: 15px 10px;
    }

    #sub_livecommerce .sec03 .phones {
        width: 100%;
    }

    #sub_renewal.metaverse img {
        max-width: 100%;
    }

    #sub_renewal.metaverse .sec04 .venture .right {
        padding: 15px 0 0 60px;
    }

    #sub_renewal.metaverse .sec04 .venture .right .refer {
        width: 100%;
    }

    #sub_renewal.metaverse .sec05 ul.tabs li a {
        width: 80px;
        height: 80px;
    }

    #sub_renewal.metaverse .sec06 .gather02 ul li {
        min-height: 310px;
    }

    #sub_renewal.metaverse .sec06 .gather03 .gathertown {
        width: 70%;
        min-height: 340px;
    }

    #sub_renewal.metaverse .sec06 .gather03 .gathertown h3 {
        padding-top: 8%;
    }

    #sub_renewal.esports .sec03 .esports02 img {
        margin-top: 20px;
    }

    #sub_renewal.esports .con_tit .left {
        width: 100%;
    }

    #sub_renewal.esports .con_tit .right {
        width: 100%;
    }

    #sub_renewal.esports .con_tit .right p {
        padding-top: 30px;
    }

    #sub_renewal.esports .sec04 .video_wrap #video video {
        height: 550px;
    }

    .typo_wrap .console-container {
        width: 100%;
    }

    #sub_making .sec_inner {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }

    #sub_making .sec01 .con img {
        max-width: 40%;
    }

    .sec_talk .sec_inner .talk p {
        font-size: 20px !important;
    }

    #sub_making .sec05 img {
        max-width: 100%;
    }

    #sub_renewal.metaverse .sec_add01 .zep_map ul li .img {
        min-height: 200px;
    }

    #sub_renewal.metaverse .sec03 .chart table {
        font-size: 14px;
        table-layout: fixed;
    }

    #sub_renewal.metaverse .sec_add03 .gather02 ul li {
        /* width: 46%; */
        min-height: 380px;
    }

    /* #sub_renewal.metaverse .sec_add03 .gather02 ul li .bg2 {
        background: url('/img/sub_n/meta19.jpg')no-repeat 50% 50%;
        background-size: cover;
    } */

}

/* 리뉴얼 반응형(태블릿) */
@media (max-width:1024px) {
    #sub_renewal.metaverse .sec06 .gather03 .gathertown {
        width: 90%;
    }

    #sub_renewal.metaverse .sec06 .gather03 .gathertown h3 {
        font-size: 25px;
        padding-top: 7%;
    }

    #sub_renewal.metaverse .sec_add02 .video {
        width: 100%;
    }

    #sub_renewal.metaverse .sec_add02 .video video {
        width: 100%;
    }

    #sub_renewal.metaverse .sec_add03 .gather02 ul {
        width: 100%;
        margin: 80px 0 0 0;
    }

    #sub_renewal.metaverse .sec_add03 .gather02 ul li {
        width: 46%;
        margin: 0 2%;
    }

    .pc_view {
        display: none;
    }

    .mobile_view {
        display: block;
    }


    #sub_bottom_quick {
        width: 100%;
        right: 0;
        bottom: 0;
        transform: translateY(0);
    }

    #sub_bottom_quick ul {
        padding: 0;
    }

    #sub_bottom_quick ul li {
        width: 33.33%;
        height: 40px;
        border-radius: 0;
        margin: 0;
        display: block;
        position: static;
        float: left;
        text-align: center;
        padding: 10px 0;
    }

    /* #sub_bottom_quick.meta ul {
        width: 100%;
        right: 0;
        bottom: 0;
        transform: translateY(0);
    }

    #sub_bottom_quick.meta ul li {
        width: 50%;
    } */

    #sub_bottom_quick ul li:hover img {
        transform: rotate(0);
    }

    #sub_bottom_quick ul li.tel {
        background: #333;
    }

    #sub_bottom_quick ul li.inquiry {
        background: #6a32eb;
    }

    #sub_bottom_quick ul li.kakao {
        background: #fee101;
    }

    #sub_bottom_quick ul li img {
        margin: 0 auto;
        max-width: 20px;
    }
}

/* 리뉴얼 모바일 */
@media (max-width: 767px) {
    .xet-slider h1 br {
        display: block;
    }

    .xet-btn-bg-theme {
        font-size: 14px;
    }

    .xet-section {
        padding: 30px 0 80px 0;
    }

    .mn_tit h1 {
        font-size: 35px;
    }

    .mn_tit p {
        font-size: 23px;
    }

    .sec1_conunt_wrap {
        padding: 60px 0;
    }

    .sec1_tit h2 {
        font-size: 22px;
    }

    .mn_bt a {
        font-size: 15px;
    }

    .xet-section.mn_sec02 .mn_tit {
        padding-top: 0;
    }

    .xet-section.mn_sec02 .works ul {
        margin: 50px 0 60px 0;
    }

    .xet-section.mn_sec02 .works ul li {
        width: 100%;
        height: 300px;
        margin: 0 0 5% 0;
    }

    .xet-section.mn_sec02 .works ul li h1 {
        top: 15%;
        font-size: 30px;
    }

    .xet-section.mn_sec02 .works ul li p {
        top: 32%;
    }

    .xet-section.mn_sec02 .works ul li p.tag {
        top: 45%;
        padding: 0 5% 0 0;
    }

    .xet-section.mn_sec02 .works ul li p.tag span {
        font-size: 12px;
        padding: 7px 15px 9px 15px;
    }

    .xet-section.mn_sec02 .works ul li>div {
        background-position: 50% 150%;
        opacity: 0.5;
        min-height: 400px;
    }

    .tabs {
        margin-bottom: 30px;
    }

    .xet-section.mn_studio .xet-container {
        padding-top: 30px;
    }

    .xet-vlist {
        padding: 30px 0 50px 0;
    }

    .xet-section.mn_studio .xet-container {
        padding-top: 30px;
    }

    .main_studio ul.slick-dots {
        bottom: 5px;
    }

    .main_studio {
        margin-top: 20px;
    }

    .slick-dotted.slick-slider {
        margin-bottom: 0 !important;
    }

    .xet-section.mn_media {
        padding: 30px 0;
    }

    .xet-section.mn_media .media_wrap .media {
        width: 100%;
        margin: 0 0 10% 0;
    }

    .xet-section.mn_media .media_wrap .media p {
        font-size: 16px;
        margin-top: 10px;
    }

    .xet-section.mn_family .family ul li {
        width: 46%;
        margin: 2% 2% 5% 2%;
        float: left;
    }

    .xet-section.mn_contactus {
        padding: 0 0 80px 0;
    }

    .xet-section.mn_contactus .contactus {
        width: 100%;
    }

    .xet-section.mn_contactus .contactus .left {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .xet-section.mn_contactus .contactus .right .ban.kakao {
        margin: 0 0 15px 0;
    }

    .xet-section.mn_contactus .contactus .right {
        width: 100%;
        margin: 0;
    }

    .xet-section.mn_contactus .contactus .left p.tel {
        font-size: 37px;
    }

    .xet-section.mn_contactus .contactus .left p.time {
        font-size: 16px;
    }

    .xet-section.mn_contactus .contactus .right .ban a p {
        font-size: 25px;
    }

    .xet-section.mn_contactus .contactus .right .ban a p span {
        font-size: 17px;
    }

    .xet-section.mn_contactus .contactus .left p.time {
        margin-bottom: 15px;
    }

    .xet-section.mn_contactus .contactus .left .cscenter .icon a {
        display: block;
        margin: 5px 0;
    }

    .xet-section.mn_contactus .contactus .right .ban {
        padding: 20px 30px;
    }

    .xet-section.mn_contactus .contactus .right .ban img {
        width: 40px;
        padding-top: 20px;
    }

    #sub_renewal .sec_inner {
        width: 100%;
        padding: 0 5%;
    }

    #sub_renewal .sec01 h1 {
        font-size: 22px;
        padding: 0 5%;
    }

    #sub_renewal .sec01 h1 br {
        display: none;
    }

    #sub_renewal .sec01 h1 span {
        padding: 3px 7px 7px 7px;
    }

    #sub_renewal .con_tit h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    #sub_renewal .con_tit h1 {
        font-size: 23px;
    }

    #sub_renewal .con_tit p {
        font-size: 15px;
    }

    .company .sec02 {
        padding: 60px 0;
    }

    .company .sec02 .com01 ul {
        margin: 60px 0 0 0;
    }

    .company .sec02 .com01 ul li {
        width: 100%;
        margin-bottom: 40px;
    }

    .company .sec02 .com01 ul li .img {
        min-height: 150px;
    }

    .company .sec02 .com01 ul li h2 {
        font-size: 17px;
    }

    .company .sec02 .com01 ul li h1 {
        font-size: 20px;
    }

    .company .sec02 .com01 ul li:nth-child(2n) {
        margin-left: 0;
    }

    .company .sec02 .com01 ul li p {
        font-size: 15px;
    }

    #sub_livecommerce .sec04 .studio ul li {
        width: 100%;
        padding: 20px 0;
    }

    .company .sec03 .history .tab-content {
        margin-top: 30px;
    }

    .company .sec03 .history .tab-content ul {
        margin-bottom: 30px;
    }

    .company .sec03 .history .tabs label {
        position: inherit;
        font-size: 18px;
        padding: 10px 25px 5px 25px;
        margin: 25px 0 0 0;
    }

    .company .sec03 .history .tab-content ul li.date {
        width: 100%;
        margin-bottom: 15px;
    }

    .company .sec03 .history .tab-content ul li.cus {
        display: none;
    }

    .company .sec03 .history .tab-content ul li {
        font-size: 12px;
        letter-spacing: -1px;
    }

    .company .sec04 .logo {
        width: 100%;
        padding: 0 5%;
        margin: 30px auto 60px;
    }

    .company .sec04 .logo ul li {
        /* float: left; */
        width: 22%;
        margin: 1% 1%;
    }

    .company .sec05 {
        padding: 60px 0;
        min-height: 450px;
    }

    .company .sec05 .sec_inner p {
        font-size: 25px;
    }

    .company .sec05 .sec_inner p br {
        display: block;
    }

    .company .sec05 .sec_inner .bt a {
        width: 220px;
        padding: 15px 0;
        margin-bottom: 10px;
    }

    .event .sec03 {
        padding: 30px 0 60px 0;
    }

    .event .sec03 .strengths .str {
        padding: 50px 0;
        border-bottom: 1px solid #333;
    }

    .event .sec03 .strengths .str:last-child {
        border-bottom: 0;
    }

    .event .sec03 .strengths .str .main_text {
        width: 100%;
        font-size: 22px;
        padding-bottom: 10px;
    }

    .event .sec03 .strengths .str .sub_text {
        width: 100%;
        font-size: 15px;
        padding-right: 10px;
    }

    .event .sec03 .strengths .str .sub_text br {
        display: none;
    }

    .event .sec04 {
        padding: 80px 0;
    }

    .event .sec04 .difference .dfr {
        padding: 50px 30px;
    }

    .event .sec04 .difference .dfr .main_text {
        width: 100%;
        font-size: 25px;
    }

    .event .sec04 .difference .dfr .sub_text {
        width: 100%;
    }

    .event .sec04 .difference .dfr .sub_text h1 {
        font-size: 20px;
    }

    .event .sec04 .difference .dfr .sub_text p {
        font-size: 14px;
    }

    .event .sec04 .difference .dfr .sub_text p br {
        display: none;
    }

    .event .sec05 {
        padding-bottom: 80px;
    }

    .event .sec05 .process ul li {
        width: 100%;
        height: auto;
        line-height: normal;
        border-radius: 10px;
        font-size: 18px;
        padding: 10px 0;
        margin-bottom: 10px;
    }

    .event .sec06 ul li {
        width: 48%;
    }

    .event .sec06 ul li:nth-child(3n) {
        margin-right: 3%;
    }

    .event .sec06 ul li:nth-child(2n) {
        margin-right: 0;
    }

    .event .sec06 ul li a p {
        font-size: 14px;
    }

    .tabs label {
        margin: 7px 10px;
    }

    .event .sec07 .program .tab-content .text {
        padding: 40px 0 20px 0;
    }

    .event .sec07 .program .tab-content .text h1 {
        font-size: 35px;
    }

    .event .sec07 .program .tab-content .text p {
        font-size: 15px;
    }

    .event .sec07 .program .tab-content .text p br {
        display: none;
    }

    .event .sec07 .program .tab-content .text p.tag {
        font-size: 14px;
    }

    .event .sec07 .program .tab-content .img ul li {
        padding: 5px;
        width: 100%;
    }

    .livebc .sec01 .onestep {
        width: 100%;
    }

    .livebc .sec01 .onestep ul li {
        width: 100%;
        margin: 0 0 5% 0;
        box-sizing: border-box;
        padding: 3% 7% 9% 7%;
    }

    .livebc .sec01 .onestep ul li p.text {
        font-size: 25px;
    }

    .livebc .sec01 .onestep ul li p.text br {
        display: none;
    }

    #sub_livecommerce .tit h1 span.red_point {
        font-size: 13px;
    }

    /* .livebc .sec02 {
        padding: 0 0 60px 0;
    } */

    .livebc .sec02 .cinecam {
        width: 100%;
    }

    .livebc .sec02-1 .cop-cont {
        flex-direction: column;
    }

    .livebc .sec02-1 .cop-cont .left {
        width: 60%;
        margin: 50px 0;
    }

    .livebc .sec02-1 .cop-cont .right {
        width: 100%;
        padding-left: 0;
        margin: 0 auto;
    }

    .livebc .sec02-1 .right>li {
        width: 100%;
    }

    .livebc .sec02-1 .right .r-txt>p {
        font-size: 20px;
    }

    .mvideo ul li p {
        font-size: 18px;
        margin-top: 5px;
    }

    #sub_livecommerce.livebc .sec03 {
        padding: 0 0 60px 0;
        margin-top: 0;
    }

    #sub_livecommerce.livebc .sec03 .media {
        width: 100%;
    }

    #sub_livecommerce.livebc .sec03 .media ul li {
        width: 100%;
    }

    #sub_livecommerce.livebc .sec03 .media ul li p {
        font-size: 16px;
        margin: 10px 0 30px 0;
    }

    /* #sub_livecommerce.livebc .con {
        padding: 80px 0 0 0 !important;
    } */

    #sub_livecommerce.livebc .sec04 {
        padding: 0 0 60px 0;
    }

    #sub_livecommerce.livebc .sec04 .livebc_pp {
        width: 100%;
    }

    #sub_livecommerce.livebc .sec04 .livebc_pp ul {
        padding: 0 0 30px 0;
    }

    #sub_livecommerce.livebc .sec04 .livebc_pp ul li {
        width: 100%;
        margin-bottom: 10%;
    }

    #sub_livecommerce.livebc .sec04 .livebc_pp ul li:nth-child(1) {
        margin-right: 0;
    }

    #sub_livecommerce.livebc .sec04 .livebc_pp ul li iframe {
        height: 200px;
    }

    #sub_livecommerce.livebc .sec04 .livebc_pp ul li p {
        font-size: 17px;
    }

    #sub_livecommerce .sec03 .phones {
        width: 100%;
    }

    #sub_livecommerce .sec04 .studio ul {
        margin-top: 30px;
    }

    #sub_livecommerce .sec02 .naver ul li {
        width: 100%;
    }

    #sub_livecommerce .sec02 .naver ul li img {
        width: 100%;
    }

    .needpopup {
        padding: 40px 0 !important;
    }

    .needpopup .needpopup_remover {
        top: 0 !important;
    }

    .needpopup iframe {
        height: 200px;
    }

    /* #sub_bottom_quick ul li a {
        font-size: 14px;
        padding: 13px 0;
    }

    #sub_bottom_quick ul li.tel a {
        padding: 12px 0 4px 0;
    }

    #sub_bottom_quick ul li img {
        margin: 0;
    }

    .pc_view {
        display: none;
    }

    .mobile_view {
        display: block;
    } */

    .board_tit h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .board_tit h1 {
        font-size: 30px;
    }

    .regular .slick-slide {
        padding: 0;
    }

    .regular .slick-dots {
        display: none !important;
    }

    .map .line .left {
        width: 100%;
    }

    .map .line .right {
        width: 100%;
    }

    #sub_making .sec03 {
        padding: 0 0 80px 0;
    }

    #sub_making .sec03 .video_portfolio ul li {
        width: 98%;
    }

    #sub_making .sec05 .tit p {
        padding: 0 10%;
    }

    #sub_making .sec05 h3.tit {
        font-size: 25px;
    }

    #sub_making .sec05 p.stit {
        font-size: 15px;
        letter-spacing: -1px;
    }

    #sub_making .sec05 .interactive {
        margin-top: 15px;
        padding: 0 5%;
    }

    #sub_making .sec05 .interactive img {
        width: 100%;
    }

    #sub_making .sec05 .interactive01 .recommend ul li {
        padding: 0 5%;
    }

    #sub_making .sec05 .interactive01 .recommend ul li img {
        width: 50px;
    }

    #sub_making .sec05 .interactive01 .recommend ul li>p {
        font-size: 16px;
    }

    #sub_making .sec05 .interactive02 ul li {
        width: 97%;
    }

    #sub_making .sec06 form {
        margin: 30px 0 0 0;
        padding: 0 5%;
    }

    #sub_making .sec06 form input {
        width: 100%;
        margin: 0 0 2% 0;
    }

    #sub_making .sec06 form p.agree input {
        padding: 0;
    }

    #sub_making .sec06 form input[type="submit"] {
        -webkit-appearance: none;
        -webkit-border-radius: 0;
    }

    #sub_renewal.metaverse .sec01 {
        height: calc(100vh - 60px);
        background-position: 50% 50%;
    }

    #sub_renewal.metaverse .sec01 .subMainTitle h1 {
        font-size: 33px;
    }

    #sub_renewal.metaverse .sec01 .subMainTitle h1 img {
        max-height: 45px;
    }

    #sub_renewal.metaverse .sec01 .subMainTitle p {
        font-size: 20px;
    }

    #sub_renewal.metaverse .sec02 {
        padding: 60px 0;
    }

    #sub_renewal.metaverse .sec02 .macbook img {
        width: 100%;
    }

    #sub_renewal.metaverse .sec03 {
        padding: 60px 0;
    }

    #sub_renewal.metaverse .sec03 .comparison img {
        width: 100%;
    }

    #sub_renewal.metaverse .sec04 {
        padding: 60px 0;
    }

    #sub_renewal.metaverse .sec04 .venture {
        margin-top: 20px;
    }

    #sub_renewal.metaverse .sec04 .venture .left {
        width: 100%;
        text-align: center;
    }

    #sub_renewal.metaverse .sec04 .venture .left img {
        width: 70%;
    }

    #sub_renewal.metaverse .sec04 .venture .right {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    #sub_renewal.metaverse .sec04 .venture .right .stit {
        font-size: 20px;
        margin-top: 10px;
    }

    #sub_renewal.metaverse .sec04 .venture .right .stit span {
        padding: 0 5px 3px 5px;
    }

    #sub_renewal.metaverse .sec04 .venture .right .scon {
        font-size: 14px;
    }

    #sub_renewal.metaverse .sec04 .venture .right .refer {
        width: 100%;
        text-align: left;
    }

    #sub_renewal.metaverse .sec05 {
        padding: 60px 0 100px 0;
        background-size: 200%;
    }

    #sub_renewal.metaverse .sec05 .gather01 {
        margin-top: 30px;
    }

    #sub_renewal.metaverse .sec05 ul.tabs {
        width: 100%;
        padding: 0;
        text-align: center;
        margin-bottom: 15px;
    }

    #sub_renewal.metaverse .sec05 ul.tabs li {
        display: inline-block;
    }

    #sub_renewal.metaverse .sec05 ul.tabs li a {
        height: auto;
        border-radius: 10px;
        font-size: 22px;
    }

    #sub_renewal.metaverse .sec05 div.tabcontents {
        width: 100%;
    }

    #sub_renewal.metaverse .sec05 div.tabcontents .img {
        min-height: 200px;
    }

    #sub_renewal.metaverse .sec05 div.tabcontents .img.bg01 {
        background-size: cover;
    }

    #sub_renewal.metaverse .sec05 div.tabcontents .img.bg02 {
        background-size: cover;
    }

    #sub_renewal.metaverse .sec05 div.tabcontents .img.bg03 {
        background-size: cover;
    }

    #sub_renewal.metaverse .sec05 div.tabcontents .img img {
        max-width: 250px;
        bottom: 10px;
    }

    #sub_renewal.metaverse .sec05 div.tabcontents .text .textLeft h3 {
        font-size: 20px;
    }

    #sub_renewal.metaverse .sec05 div.tabcontents .text .textRight {
        width: 100%;
        padding: 10px 0 0 0;
        font-size: 14px;
    }

    #sub_renewal.metaverse .sec05 div.tabcontents .text .textRight p.recommend {
        font-size: 13px;
    }

    #sub_renewal.metaverse .sec06 {
        padding-top: 60px;
        padding-bottom: 100%;
    }

    #sub_renewal.metaverse .sec06 .gather02 ul {
        padding: 0;
        margin-top: 30px;
    }

    #sub_renewal.metaverse .sec06 .gather02 ul li {
        width: 100%;
        margin: 0 0 10px 0;
        min-height: 330px;
    }

    #sub_renewal.metaverse .sec06 .gather02 ul li::marker {
        display: none;
    }

    #sub_renewal.metaverse .sec06 .gather02 ul li .bg1 {
        min-height: 220px;
    }

    #sub_renewal.metaverse .sec06 .gather02 ul li .text {
        min-height: auto;
    }

    #sub_renewal.metaverse .sec06 .gather02 ul li .text h2 {
        font-size: 16px;
    }

    #sub_renewal.metaverse .sec06 .gather02 ul li .text p {
        font-size: 14px;
    }

    /* #sub_renewal.metaverse .sec06 .gather03 .gathertown {
        width: 100%;
        margin: 180px auto 0;
        min-height: 170px;
    } */

    #sub_renewal.metaverse .sec06 .gather03 .gathertown h3 {
        padding: 15px 0 0 0;
        font-size: 14px;
    }

    #sub_renewal.metaverse .sec06 .gather03 .gathertown h3 span {
        font-size: 14px;
    }

    #sub_renewal.metaverse .sec06 .gather03 .gathertown a {
        margin-top: 10px;
        font-size: 12px;
        padding: 0;
    }

    /* #sub_bottom_quick.meta ul li {
        min-height: 48px;
    }

    #sub_bottom_quick.meta ul li img {
        display: none;
    } */

    .overlay:target+.popup {
        width: 90%;
    }

    .popup p {
        font-size: 15px;
        display: none;
    }

    .popup input[type="text"],
    .popup input[type="email"] {
        font-size: 12px;
        padding: 5px 10px;
        width: 99%;
    }

    .popup input[type="submit"] {
        font-size: 15px;
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
    }

    .popup textarea {
        font-size: 12px;
        height: 90px;
    }

    .popup .agree {
        font-size: 11px;
    }

    .popup .agree a {
        font-size: 11px;
    }

    #sub_renewal.esports .sec01 {
        background-size: cover;
        background-position: 0 70%;
    }

    #sub_renewal.esports .sec01 h1 {
        text-align: center;
        line-height: 1.2;
    }

    #sub_renewal.esports .sec01 h1 span.grey {
        margin-bottom: 5px;
    }

    #sub_renewal.esports .sec02 {
        padding: 60px 0;
    }

    #sub_renewal.esports .sec02 .esports01 .why {
        width: 100%;
        text-align: center;
    }

    #sub_renewal.esports .sec02 .esports01 ul {
        width: 100%;
        padding: 10px 0 0 0;
    }

    #sub_renewal.esports .sec02 .esports01 ul li {
        font-size: 15px;
        width: 90%;
        margin: 1% 0;
    }

    #sub_renewal.esports .sec02 .esports01 ul li:nth-child(2n) {
        margin-left: 10%;
    }

    #sub_renewal.esports .sec03 .esports02 img {
        margin-top: 30px;
    }

    #sub_renewal.esports .sec03 {
        padding: 0 0 60px 0;
    }

    #sub_renewal.esports .sec04 {
        padding: 60px 0;
        background-size: cover;
    }

    #sub_renewal.esports .con_tit .left {
        width: 100%;
    }

    #sub_renewal.esports .con_tit .right {
        width: 100%;
    }

    #sub_renewal.esports .con_tit .right p {
        padding-top: 10px;
    }

    #sub_renewal.esports .sec04 .video_wrap #video video {
        height: auto;
    }

    #sub_renewal.esports .sec04 .video_wrap #video #btn-play h2 {
        font-size: 18px;
    }

    #sub_renewal.esports .sec04 .video_wrap #video #btn-play p {
        font-size: 15px;
    }

    #sub_renewal.esports .sec04 .video_wrap #video #btn-play p.bt {
        font-size: 12px;
        padding: 15px 30px;
    }

    #sub_renewal.esports .sec04 .text h2 {
        font-size: 25px;
    }

    #sub_renewal.esports .sec04 .text p {
        font-size: 16px;
    }

    #sub_renewal.esports .sec04 .refer>div {
        width: 100%;
    }

    #sub_renewal.esports .sec04 .refer .refer01 video {
        height: auto;
        margin-bottom: 20px;
    }

    #sub_renewal.esports .sec04 .slick-dots {
        display: block !important;
        bottom: 10px;
    }

    #sub_renewal.esports .sec04 .slick-dots li {
        margin: 0;
    }

    #sub_renewal.esports .sec05 {
        padding: 80px 0;
    }

    #sub_renewal.esports .sec06 {
        padding: 0 0 60px 0;
    }

    #sub_renewal.esports .sec06 .esports05 ul {
        padding: 20px 0 0 0;
    }

    #sub_renewal.esports .sec06 .esports05 ul li {
        width: 23%;
    }

    #sub_renewal.esports .sec07 {
        padding: 60px 0;
    }

    #sub_renewal.esports .sec07 form {
        margin: 20px auto;
    }

    #sub_renewal.esports .sec07 form input {
        width: 100%;
        margin-right: 0;
    }

    .event .sec08 form p.agree input , #sub_renewal.esports .sec07 form p.agree input {
        padding: 0;
    }

    .event .sec08 form input[type="submit"] , #sub_renewal.esports .sec07 form input[type="submit"] {
        -webkit-appearance: none;
        -webkit-border-radius: 0;
    }

    #sub_renewal.metaverse .sec_add01 .zep_map ul li {
        width: 100%;
    }

    #sub_renewal.metaverse .sec_add01 .zep_map ul li .img {
        min-height: 250px;
    }

    #sub_renewal.metaverse .sec03 .chart {
        width: 100%;
        overflow: scroll;
    }

    #sub_renewal.metaverse .sec03 .chart table {
        white-space: nowrap;
        table-layout: auto;
        font-size: 13px;
    }

    #sub_renewal.metaverse .sec03 .chart table tbody tr td {
        padding: 15px 10px;
    }

    #sub_renewal.metaverse .sec_add03 .gather02 ul {
        list-style: none;
    }

    #sub_renewal.metaverse .sec_add03 .gather02 ul li {
        width: 100%;
        /* min-height: 320px; */
        margin: 0 0 30px 0;
    }

    #sub_renewal.metaverse .sec_add03 .gather02 ul li .text {
        min-height: auto;
    }

    #sub_renewal.metaverse .sec_add03 .gather02 ul li:nth-child(2) {
        top: 60px;
    }

    #sub_renewal.metaverse .sec_add03 .gather02 ul li:nth-child(3) {
        top: 120px;
    }

    #sub_renewal.metaverse .sec_add03 .gather02 ul li:nth-child(4) {
        top: 180px;
    }

    #sub_renewal.metaverse .sec05 .sec_inner {
        padding: 0 !important;
    }

    #sub_renewal.metaverse .sec05 .gather01 {
        padding: 0;
    }

    .slick-slider .bt {
        bottom: 10px !important;
    }

    .slick-slider .bt a {
        font-size: 11px !important;
        padding: 5px 10px !important;
    }

    .slick-dots {
        display: none !important;
    }

    #sub_renewal.metaverse .sec05 div.tabcontents .text {
        padding: 0 5%;
    }

    #sub_renewal.metaverse .sec06 .gather03 .gathertown {
        width: 100%;
        margin: -130px auto 0;
        background: #fff;
        min-height: auto;
        padding: 30px 0;
        border-radius: 10px;
        border: 2px solid #111;
    }

    #sub_renewal.metaverse .sec06 .gather03 .gathertown h3 {
        padding: 0;
    }

    #sub_renewal.metaverse .sec06 .gather03 .gathertown a {
        border: 2px solid #111;
    }

    #sub_renewal.metaverse .sec05 div.tabcontents .slick-list {
        margin: 0 5%;
        padding: 30px 50px !important;
    }

    #sub_renewal.metaverse .sec_add03 .gather02 ul {
        height: auto;
    }

    #sub_renewal.metaverse .sec_add03 .gather02 ul li {
        position: relative;
    }
}