* {
    margin: 0;
    padding: 0;
    font-family: 'LINESeedKR-Rg';
    scroll-behavior: smooth;
}
/* 
a:hover {cursor: none;}
 */

/* 스크롤 바 넓이 16px */
::-webkit-scrollbar {
    width: 8px;
}
/* 스크롤 바 기본 색상 */
::-webkit-scrollbar-track {
    background-color: #e9e9e9;
}
/* 스크롤 구간 배경 색상 */
::-webkit-scrollbar-thumb {
    background-color: #02C75A;
}
/* 스크롤 바 위에 마우스 올렸을 때(hover) 색상 */
::-webkit-scrollbar-thumb:hover {
    background-color: #02C75A;
}
/* 스크롤 상하단 버튼 넓이와 색상 */
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    width: 8px;
    height: 8px;
    background-color: #d3d3d3;
}

#scrollDown {
    position: fixed;
    top: 45%;
    right: 120px;
    z-index: 99;
    transition: all 0.4s;
}
#scrollDown .scroll-down {
    display: block;
    width: 16px;
    height: 124px;
    background: url("http://modoomkt.com/img/sub_scroll_down.png") center/contain no-repeat;
    transition: background 0.4s;
    animation: upDown 1.5s ease-in-out infinite;
}
/* #scrollDown.black .scroll-down {background-image:url("http://modoomkt.com/images/content/sub_scroll_down.png");} */
@keyframes upDown {
    0% {
        opacity: 0.5;
        transform: translateY(-5px);
    }
    50% {
        opacity: 1;
        transform: translateY(5px);
    }
    100% {
        opacity: 0.5;
        transform: translateY(-5px);
    }
}
@media all and(max-width:1660px) {
    #scrollDown {
        display: none;
    }
}

#hd_pops_4{display:none;}

/* 
:root {
  font-size: 16px;
}
body {
  --color-text : #fff;
    --color-bg : linear-gradient(to top, #a3bded 0%, #6991c7 100%);
  --color-link : #000;
  --font-h1 : 2rem;
  cursor: none;
}


.cursor {
  position: absolute;
  width: 20px; height: 20px;
  background: #02C75A; border-radius: 50%;
  z-index: 1000;
  user-select: none;
  pointer-events: none;
  transform: scale(1);
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;

}
.cursor.active {
  opacity: 0.5; transform: scale(0);
}
.cursor-follower {
  position: absolute;
  z-index: 1001;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  user-select: none;
  pointer-events: none;
  transition: transform 0.6s ease-in-out, opacity 0.2s ease-in-out;
  padding: 10px;
  mix-blend-mode: difference;
}
.cursor-follower.active {
  opacity: 1; transform: scale(4);
  background: rgba(255,255,255,0.1);
}
 */


.iframe_wrap {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;

}

.iframe_wrap  iframe{

  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  border:none;

}

@media (min-aspect-ratio: 16/9) {
.iframe_wrap  iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
.iframe_wrap  iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}





/* folding_new */
.foldingOpen{position:fixed; left:-100%; top:200px; z-index:8; width:50px; transition: all .7s ease-out; font-family: 'LINESeedKR-Bd';}
.foldingOpen.on{left:0;}
.foldingOpen .box{border-top-right-radius:15px; border-bottom-right-radius:15px; cursor:pointer;}
.foldingOpen .box1{position:relative; padding:25px 18px 50px 18px; font-size:18px; font-weight:500; color:#fff; background:#02C75A;}
.foldingOpen .box1:before,
.foldingOpen .box1:after{content:""; position:absolute; bottom:30px; left:22px; width:10px; height:2px; background:#fff; transform-origin:right center;}
.foldingOpen .box1:before{transform:rotate(-45deg);}
.foldingOpen .box1:after{transform:rotate(45deg);}
.foldingOpen .box2{margin-top:10px; padding:20px 0 16px 10px; background:#fff;}

#foldingArea_new{position:fixed; left:0; top:200px; z-index:8; width:290px; transition: all .7s ease-out; }
#foldingArea_new.on{left:-320px;}
/*#foldingArea_new.onOpen{transition-delay:2s;}*/
#foldingArea_new *{line-height:normal;}
#foldingArea_new .foldingClose{display:block; position:absolute; top:10px; right:-30px; width:20px; height:20px; padding:10px; cursor:pointer; background:#02C75A; border-radius:30px;}
#foldingArea_new .foldingClose:before,
#foldingArea_new .foldingClose:after{content:""; position:absolute; top:50%; left:50%; width:60%; height:2px; background:#fff;}
#foldingArea_new .foldingClose:before{transform:translate(-50%, -50%) rotate(45deg); transform-origin:center;}
#foldingArea_new .foldingClose:after{transform:translate(-50%, -50%) rotate(-45deg); transform-origin:center;}
#foldingArea_new .box{padding:25px; border-top-right-radius:30px; border-bottom-right-radius:30px; border:2px solid #02C75A;}
#foldingArea_new .wbox{background:#fff; box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;}
/*
#foldingArea_new .wbox h5{padding-bottom:15px; font-size:18px; font-weight:500; color:#222; border-bottom:1px solid #e6e6e6;}
#foldingArea_new .wbox h5 strong{color:#02C75A;}
*/
#foldingArea_new .wbox h5{padding:20px 0; font-size:16px; font-weight:500; color:#222; border-bottom:1px solid #e6e6e6; font-family: 'LINESeedKR-Bd';}
#foldingArea_new .wbox h5 strong{font-family: 'LINESeedKR-Rg';font-size:18px; font-weight:700; color:#02C75A;}
#foldingArea_new .wbox h6{font-family: 'LINESeedKR-Bd'; margin-top:15px; font-size:18px; font-weight:500; color:#222;}
#foldingArea_new .wbox h2{font-family: 'LINESeedKR-Bd'; font-size:36px; font-weight:bold; color:#222; word-spacing:-10px}
#foldingArea_new .wbox a{width:100%; height:40px; margin-top:10px; display:block; padding:12px; font-size:14px; font-weight:500; color:#fff; text-align: center; border-radius:5px; background:#02C75A;}

#foldingArea_new .wbox table{margin-top:15px;}
#foldingArea_new .wbox table th,
#foldingArea_new .wbox table td{font-size:12px; color:#ccc; text-align:left;}
#foldingArea_new .wbox table th strong,
#foldingArea_new .wbox table td strong{font-weight:500; color:#222;}


#foldingArea_new .bbox{margin-top:10px; background:#02C75A;}
/*
#foldingArea_new .bbox h5{font-size:16px; font-weight:500; color:#fff;}
#foldingArea_new .bbox h5 strong{font-size:18px; font-weight:700;}

#foldingArea_new .bbox h6{margin-top:20px; font-size:18px; font-weight:500; color:#fff;}

#foldingArea_new .bbox table{margin-top:20px;}
#foldingArea_new .bbox table th,
#foldingArea_new .bbox table td{font-size:15px; color:#688db9; text-align:left;}
#foldingArea_new .bbox table th strong,
#foldingArea_new .bbox table td strong{font-weight:500; color:#fff;}
*/
#foldingArea_new .bbox h6{margin-top:0px; font-size:18px; font-weight:500; color:#fff;}
#foldingArea_new .bbox input[type=text]{width:100%; height:40px; margin-top:10px; padding:0 15px; background-color:#fff; border:1px solid #777; font-weight: 300; font-size:14px; line-height:38px; color:#444754; box-sizing: border-box; display:block;}
#foldingArea_new .bbox input[type=submit]{width:100%; height:40px; margin-top:10px; background-color:#020a51; border:none; border-radius:5px; font-weight: 500; font-size:15px; line-height:38px; color:#fff; text-align: center; cursor: pointer; box-sizing: border-box; display:block;}
#foldingArea_new .bbox a{width:100%; height:40px; margin-top:5px; background-color:#020a51; border:none; border-radius:5px; font-weight: 500; font-size:15px; line-height:38px; color:#fff; text-align: center; cursor: pointer; box-sizing: border-box; display:block;}



/* 로딩전 화면을 가리기 위한 */
#loadings {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 999999;
}
/* 로더 */
#loading_api {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 0, 0, 0.1); /* 컬러 */
    border-radius: 50%;
    border-top-color: #02C75A; /* 컬러 */
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
/* 로더 애니메이션 */
@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
/* 전체레이아웃 */
#wrap {
    overflow: hidden;
    position: relative;
}
.container {
    width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}
.container2 {
    width: 1800px;
    margin: 0 auto;
    overflow: hidden;
}
.room {
    margin-top: 100px;
}
/* navigation */
.navigation {
    position: fixed;
    width: 100%;
    height: 83px;
    top: 0;
    z-index: 999;
    box-shadow: 0 0 20rem rgba(0, 0, 0, .06);
    backdrop-filter: blur(5px);
}
.brand {
    position: absolute;
    padding-top: 5px;
    float: left;
    text-transform: uppercase;
}
.brand img {
    width: 160px;
    height: 70px;
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
}
nav {
    float: left;
    padding-left: 19.9%;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav ul li {
    float: left;
    position: relative;
}
.order {
    position: absolute;
    overflow: hidden;
    top: 18px;
    right: 250px;
    padding: 10px 30px;
    border-radius: 20px;
    background: #00C896;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: ease all .5;
}
.order:before {
    content: "";
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    filter: blur(30px);
    transform: translateX(-100px) skewX(-15deg);
}
.order:after {
    content: "";
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100px) skewX(-15deg);
}
.order:hover {
    background: #3AB991;
    cursor: pointer;
    color: #fff;
    transition: ease all .5;
}
.order:hover:before {
    transform: translateX(300px) skewX(-15deg);
    opacity: 0.6;
    transition: 0.7s;
}
.order:hover:after {
    transform: translateX(300px) skewX(-15deg);
    opacity: 1;
    transition: 0.7s;
}
.order2 {
    position: absolute;
    overflow: hidden;
    top: 18px;
    right: 120px;
    padding: 10px 30px;
    border-radius: 20px;
    background: #02C75A;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: ease all .5;
}
.order2:before {
    content: "";
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    filter: blur(30px);
    transform: translateX(-100px) skewX(-15deg);
}
.order2:after {
    content: "";
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100px) skewX(-15deg);
}
.order2:hover {
    background: #3AB991;
    cursor: pointer;
    color: #fff;
    transition: ease all .5;
}
.order2:hover:before {
    transform: translateX(300px) skewX(-15deg);
    opacity: 0.6;
    transition: 0.7s;
}
.order2:hover:after {
    transform: translateX(300px) skewX(-15deg);
    opacity: 1;
    transition: 0.7s;
}
nav ul li a,
nav ul li a:visited {
    display: block;
    padding: 0 20px;
    line-height: 80px;
    color: #202020;
    text-decoration: none;
}
nav ul li a {
    position: relative;
    background: transparent;
    color: #202020;
    font-size: 17px;
}
nav ul li a:hover,
nav ul li a:visited:hover {
    color: #02C75A;
}
nav ul li a:hover {
    color: #02C75A;
    transition: color 0.4s cubic-bezier(0.37, 0.16, 0.12, 1)
}
nav ul li a::before {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: none;
    transform: scaleX(1);
    transform-origin: left top;
    transition: transform 0.6s cubic-bezier(0.37, 0.16, 0.12, 1), background-color 0.8s cubic-bezier(0.52, 0.08, 0.18, 1);
}
nav ul li a:hover::before {
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.3s cubic-bezier(0.37, 0.16, 0.12, 1), background-color 0.4s cubic-bezier(0.37, 0.16, 0.12, 1);
}
nav ul li a::after {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background-color: #02C75A;
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.3s cubic-bezier(0.37, 0.16, 0.12, 1);
}
nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left top;
    transition: transform 0.6s cubic-bezier(0.37, 0.16, 0.12, 1);
}
.navbar-dropdown li a {}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: '';
}
nav ul li ul li {
    min-width: 190px;
}
nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}
.navbar-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    background: rgba(255, 255, 255, .9);
    margin-top: 1px;
}
.m_card {
    display: none;
}
#section01 {
    background: url('http://modoomkt.com/img/section01-1_bg.png') no-repeat;
    background-size: cover;
	background-position: center;
    position: relative;
	height:100vh;
	display: none;
}


/* sec1_title */
.sec1_title {
    padding: 28% 0;
    position: relative;
}
.sec1_title ul {text-align: center;}
.sec1_title ul p {
    font-size: 24px;
    color: #666;
}
.sec1_title ul h2 {
    font-size: 64px;
    font-family: 'LINESeedKR-Bd';
}
.sec1_title ul h2 span {
    color: #03c75b;
    font-family: 'LINESeedKR-Bd';
}
.sec1_title ul li {
    font-size: 17px;
    color: #666
}
.sec1_title ul a {
    font-size: 22px;
    padding: 15px 32px;
    background: #02C75A;
    color: #fff;
    border-radius: 30px;
    line-height: 4.5;
    font-family: 'LINESeedKR-Bd';
    transition: ease all 0.5s
}
.sec1_title ul a:hover {
    background: #3AB991;
    transition: ease all 0.5s;
}
.sec1_title img {
    position: absolute;
    width: 346px;
    height: 346px;
    top: 250px;
    right: 0;
}
.demo a {
    position: absolute;
    bottom: 0;
    left: 48.7%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #202020;
    font-family: 'Pretendard-Regular';
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: opacity 0.3s;
}
.demo a:hover {
    opacity: .5;
}
#scroll a {
    padding-top: 70px;
    color: #02C75A;
}
#scroll a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1px solid #02C75A;
    border-bottom: 1px solid #02C75A;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb05 1.5s infinite;
    animation: sdb05 1.5s infinite;
    box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}
@keyframes sdb05 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}
/* moma_title */
.moma_title {
    overflow: hidden;
    padding: 3% 0;
}
.moma_title p {
    font-size: 17px;
}
.moma_title h2 {
    font-size: 58px;
    font-family: 'LINESeedKR-Bd';
}
.moma_title h2 span {
    font-family: 'LINESeedKR-Bd';
    color: #03C75B;
}
/* section02 */
#section02 {
    position: relative;
    padding: 5% 0;
    background: url('http://modoomkt.com/img/section02.png') no-repeat;
    background-size: cover;
}
.sec_area {
    overflow: hidden;
    padding: 3% 0;
}
.sec2_boxcon {
    margin-top: 40px;
}
.sec2_box01 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}
.sec2_boxcon figure {
    position: relative;
    display: block;
    padding: 100px 50px;
    transform: translate(0, 0);
    transition: transform 0.3s;
}
.sec2_boxcon figure ul {}
.sec2_boxcon figure ul span {}
.sec2_boxcon figure ul h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-family: 'LINESeedKR-Bd';
}
.sec2_boxcon figure ul li {
    font-size: 14px;
    line-height: 1.7;
}
.sec2_boxcon figure ul p {
    margin-top: 30px;
    font-size: 14px;
}
.sec2_box01:hover {
    background: #03C75B;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95;
}
.sec2_box02:hover {
    background: #e65100 ;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95
}
.sec2_box03:hover {
    background: #01579b ;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95
}
.sec2_box04:hover {
    background: #03C75B;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95
}
.sec2_box05:hover {
    background: #03C75B;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95
}
.sec2_box06:hover {
    background: #FF0000;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95
}
.sec2_box07:hover {
    background: #03C75B;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95
}
.sec2_box08:hover {
    background: #03C75B;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95
}
.sec2_box09:hover {
    background: #03C75B;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95
}
.sec2_box10:hover {
    background: #03C75B;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95
}
.sec2_box11:hover {
    background: #03C75B;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95
}
.sec2_box12:hover {
    background: #03C75B;
    transition: ease all 0.3s;
    color: #fff;
    scale: 0.95
}

.sec2_box02 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}
.sec2_box03 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}
.sec2_box04 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}
.sec2_box05 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}
.sec2_box06 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}
.sec2_box07 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}
.sec2_box08 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}
.sec2_box09 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}
.sec2_box10 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}
.sec2_box11 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}
.sec2_box12 {
    width: 25%;
    height: 450px;
    border-radius: 10px;
    float: left;
    transition: ease all 0.3s;
    color: #000;
}

/* section04 */
#section03 {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(45deg, #03c75b 0%, #14d96d 99%, #0dba5b 100%);
}
/* sec1_title */
.sec3_left {
    width: 60%;
    float: left;
    padding: 14% 0;
}
.sec3_title {}
.sec3_title ul {
    color: #fff;
}
.sec3_title ul p {
    font-size: 17px;
}
.sec3_title ul h2 {
    font-size: 52px;
    font-family: 'LINESeedKR-Bd';
    line-height: 2;
}
.sec3_title ul h2 span {
    color: #03c75b;
    font-family: 'LINESeedKR-Bd';
}
.sec3_title ul li {
    font-size: 18px;
}
.sec3_title ul a {
    font-size: 18px;
    padding: 15px 32px;
    background: #02C75A;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    line-height: 4.5;
    transition: ease all 0.5s;
}
.sec3_title ul a:hover {
    background: #3AB991;
    transition: ease all 0.5s;
}
.sec3_right {
    overflow: hidden;
    padding: 10% 0;
    width: 40%;
    float: left;
}
.sec3_right img {
    border-radius: 10px;
}
#circle {
    overflow: hidden;
}
#circle text {
    font-size: 32px;
    font-weight: bold;
}
#circle svg {
    position: absolute;
    right: 10%;
    bottom: -5%;
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 5s;
    -moz-animation-duration: 5s;
    -ms-animation-duration: 5s;
    -o-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}
@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(360deg);
    }
    to {
        -webkit-transform: rotate(0);
    }
}
@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(360deg);
    }
    to {
        -moz-transform: rotate(0);
    }
}
@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(360deg);
    }
    to {
        -ms-transform: rotate(0);
    }
}
@-o-keyframes rotate {
    from {
        -o-transform: rotate(360deg);
    }
    to {
        -o-transform: rotate(0);
    }
}
@keyframes rotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0);
    }
}
/* section04 */
#section04 {
    position: relative;
    padding: 5% 0;
}
#section04 .sec4_left {
    width: 40%;
    height: 800px;
    float: left;
}
#section04 .sec4_left ul {
    margin-bottom: 30px;
}
#section04 .sec4_left ul h4 {
    font-size: 20px;
}
#section04 .sec4_left ul li {
    font-size: 16px;
    color: #969696;
}
#section04 .sec4_right {
    position: relative;
    width: 60%;
    height: 800px;
    float: left;
}
#section04 .sec4_right .sec4_right_imgbox {}
#section04 .sec4_right .sec4_right_imgbox .sec4_ibox01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 444px;
    height: 420px;
    background: url('http://modoomkt.com/img/sec3_ibox01-1.png') no-repeat;
    border-radius: 3%;
    background-size: cover;
}
#section04 .sec4_right .sec4_right_imgbox .sec4_ibox02 {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 3%;
    width: 647px;
    height: 475px;
    background: url('http://modoomkt.com/img/sec3_ibox02-2.png')no-repeat;
    background-size: cover;
}
/* section05 */
#section05 {
    padding: 10% 0;
    background: url('http://modoomkt.com/img/section05_bg.png') no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 5%
}
#section05 ul {
    text-align: center;
    color: #fff;
}
#section05 ul h2 {
    font-family: 'LINESeedKR-Bd';
    font-size: 46px;
    margin: 25px;
}
#section05 ul li {
    font-size: 22px;
    line-height: 1.5;
}
/* section06 */
#section06 {
    padding: 5% 0;
}
.sec6_area {
    overflow: hidden;
    padding: 80px 0;
}
.sec6_area ul {
    margin: 0 auto;
    overflow-y: scroll;
    width: 95%;
    height: 80vh;
    display: flex;
    flex-wrap: wrap
}
.sec6_img1 {
    background: url('http://modoomkt.com/img/sec6_img1.png') no-repeat;
background-size:350px 300px;
}
.sec6_img2 {
    background: url('http://modoomkt.com/img/sec6_img2.png') no-repeat;
background-size:350px 300px;
}
.sec6_img3 {
    background: url('http://modoomkt.com/img/sec6_img3.png') no-repeat;
background-size:350px 300px;
}
.sec6_img4 {
    background: url('http://modoomkt.com/img/sec6_img4.png') no-repeat;
background-size:350px 300px;
}
.sec6_img5 {
    background: url('http://modoomkt.com/img/sec6_img5.png') no-repeat;
background-size:350px 300px;
}
.sec6_img6 {
    background: url('http://modoomkt.com/img/sec6_img6.png') no-repeat;
background-size:350px 300px;
}
.sec6_img7 {
    background: url('http://modoomkt.com/img/sec6_img7.png') no-repeat;
background-size:350px 300px;
}
.sec6_img8 {
    background: url('http://modoomkt.com/img/sec6_img28.png') no-repeat;
background-size:350px 300px;
}
.sec6_img9 {
    background: url('http://modoomkt.com/img/sec6_img27.png') no-repeat;
background-size:350px 300px;
}
.sec6_img10 {
    background: url('http://modoomkt.com/img/sec6_img10.png') no-repeat;
background-size:350px 300px;
}
.sec6_img11 {
    background: url('http://modoomkt.com/img/sec6_img26.png') no-repeat;
background-size:350px 300px;
}
.sec6_img12 {
    background: url('http://modoomkt.com/img/sec6_img12.png') no-repeat;
background-size:350px 300px;
}
.sec6_img13 {
    background: url('http://modoomkt.com/img/sec6_img13.png') no-repeat;
background-size:350px 300px;
}
.sec6_img14 {
    background: url('http://modoomkt.com/img/sec6_img14.png') no-repeat;
background-size:350px 300px;
}
.sec6_img15 {
    background: url('http://modoomkt.com/img/sec6_img15.png') no-repeat;
background-size:350px 300px;
}
.sec6_img16 {
    background: url('http://modoomkt.com/img/sec6_img16.png') no-repeat;
background-size:350px 300px;
}
.sec6_img17 {
    background: url('http://modoomkt.com/img/sec6_img17.png') no-repeat;
background-size:350px 300px;
}
.sec6_img18 {
    background: url('http://modoomkt.com/img/sec6_img18.png') no-repeat;
background-size:350px 300px;
}
.sec6_img19 {
    background: url('http://modoomkt.com/img/sec6_img19.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img20 {
    background: url('http://modoomkt.com/img/sec6_img20.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img21 {
    background: url('http://modoomkt.com/img/sec6_img21.png') no-repeat;
	background-size:350px 300px;
}

.sec6_img22 {
    background: url('http://modoomkt.com/img/sec6_img22.png') no-repeat;
	background-size:350px 300px;
}

.sec6_img23 {
    background: url('http://modoomkt.com/img/sec6_img23.png') no-repeat;
	background-size:350px 300px;
}

.sec6_img24 {
    background: url('http://modoomkt.com/img/sec6_img24.png') no-repeat;
	background-size:350px 300px;
}

.sec6_img25 {
    background: url('http://modoomkt.com/img/sec6_img25.png') no-repeat;
	background-size:350px 300px;
}

.sec6_img30 {
    background: url('http://modoomkt.com/img/sec6_img30.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img31 {
    background: url('http://modoomkt.com/img/sec6_img31.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img32 {
    background: url('http://modoomkt.com/img/sec6_img32.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img33 {
    background: url('http://modoomkt.com/img/sec6_img33.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img34 {
    background: url('http://modoomkt.com/img/sec6_img34.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img35 {
    background: url('http://modoomkt.com/img/sec6_img35.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img36 {
    background: url('http://modoomkt.com/img/sec6_img36.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img37 {
    background: url('http://modoomkt.com/img/sec6_img37.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img38 {
    background: url('http://modoomkt.com/img/sec6_img38.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img39 {
    background: url('http://modoomkt.com/img/sec6_img39.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img40 {
    background: url('http://modoomkt.com/img/sec6_img40.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img41 {
    background: url('http://modoomkt.com/img/sec6_img41.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img42 {
    background: url('http://modoomkt.com/img/sec6_img42.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img43 {
    background: url('http://modoomkt.com/img/sec6_img43.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img44 {
    background: url('http://modoomkt.com/img/sec6_img44.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img45 {
    background: url('http://modoomkt.com/img/sec6_img45.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img46 {
    background: url('http://modoomkt.com/img/sec6_img46.png') no-repeat;
	background-size:350px 300px;
}
.sec6_img47 {
    background: url('http://modoomkt.com/img/sec6_img47.png') no-repeat;
	background-size:350px 300px;
	
}

.sec6_img48 {
    background: url('http://modoomkt.com/img/sec6_img48.png') no-repeat;
	background-size:350px 300px;
	
}
.sec6_img49 {
    background: url('http://modoomkt.com/img/sec6_img49.png') no-repeat;
	background-size:350px 300px;}
	
	
.sec6_img50 {
    background: url('http://modoomkt.com/img/sec6_img50.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img51 {
    background: url('http://modoomkt.com/img/sec6_img51.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img52 {
    background: url('http://modoomkt.com/img/sec6_img52.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img53 {
    background: url('http://modoomkt.com/img/sec6_img53.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img54 {
    background: url('http://modoomkt.com/img/sec6_img54.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img55 {
    background: url('http://modoomkt.com/img/sec6_img55.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img56 {
    background: url('http://modoomkt.com/img/sec6_img56.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img57 {
    background: url('http://modoomkt.com/img/sec6_img57.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img58 {
    background: url('http://modoomkt.com/img/sec6_img58.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img59 {
    background: url('http://modoomkt.com/img/sec6_img59.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img60 {
    background: url('http://modoomkt.com/img/sec6_img60.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img61 {
    background: url('http://modoomkt.com/img/sec6_img61.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img62 {
    background: url('http://modoomkt.com/img/sec6_img62.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img63 {
    background: url('http://modoomkt.com/img/sec6_img63.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img64 {
    background: url('http://modoomkt.com/img/sec6_img64.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img65 {
    background: url('http://modoomkt.com/img/sec6_img65.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img66 {
    background: url('http://modoomkt.com/img/sec6_img66.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img67 {
    background: url('http://modoomkt.com/img/sec6_img67.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img68 {
    background: url('http://modoomkt.com/img/sec6_img68.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img69 {
    background: url('http://modoomkt.com/img/sec6_img69.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img70 {
    background: url('http://modoomkt.com/img/sec6_img70.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img71 {
    background: url('http://modoomkt.com/img/sec6_img71.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img72 {
    background: url('http://modoomkt.com/img/sec6_img72.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img73 {
    background: url('http://modoomkt.com/img/sec6_img73.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img74 {
    background: url('http://modoomkt.com/img/sec6_img74.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img75 {
    background: url('http://modoomkt.com/img/sec6_img75.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img76 {
    background: url('http://modoomkt.com/img/sec6_img76.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img77 {
    background: url('http://modoomkt.com/img/sec6_img77.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img78 {
    background: url('http://modoomkt.com/img/sec6_img78.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img79 {
    background: url('http://modoomkt.com/img/sec6_img79.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img80 {
    background: url('http://modoomkt.com/img/sec6_img80.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img81 {
    background: url('http://modoomkt.com/img/sec6_img81.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img82 {
    background: url('http://modoomkt.com/img/sec6_img82.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img83 {
    background: url('http://modoomkt.com/img/sec6_img83.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img84 {
    background: url('http://modoomkt.com/img/sec6_img84.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img85 {
    background: url('http://modoomkt.com/img/sec6_img85.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img86 {
    background: url('http://modoomkt.com/img/sec6_img86.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img87 {
    background: url('http://modoomkt.com/img/sec6_img87.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img88 {
    background: url('http://modoomkt.com/img/sec6_img88.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img89 {
    background: url('http://modoomkt.com/img/sec6_img89.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img90 {
    background: url('http://modoomkt.com/img/sec6_img90.png') no-repeat;
	background-size:350px 300px;}
	
.sec6_img91 {
    background: url('http://modoomkt.com/img/sec6_img91.png') no-repeat;
	background-size:350px 300px;}

	
	
	

.sec6_area li {
    width: 350px;
    height: 300px;
    margin: 25px;
    box-sizing: border-box;
    border-radius: 40px;
}
.sec6_area img {
    display: block;
    border-radius: 40px;
}
.sec6_li .text {
    width: 350px;
    height: 300px;
    border-radius: 40px;
    opacity: 0;
}
.sec6_area a:hover .text {
    background-color: #33bb93;
    opacity: 0.9;
    color: #fff;
    transition: ease all 0.5s;
}
.sec6_area a:hover .text p:nth-child(1) {
    font-size: 17px;
    padding: 200px 0 0 20px;
    color: #ddd;
}
.sec6_area a:hover .text p:nth-child(2) {
    font-size: 27px;
    font-family: 'LINESeedKR-Bd';
    padding-left: 20px;
}
.sec6_area .sec6_p {
    font-family: 'LINESeedKR-Bd';
    text-align: center;
    font-size: 35px;
    margin: 80px 0 35px;
}
.sec6_area .sec6_btn a {
    display: block;
    width: 100px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 30px;
    padding: 8px;
    background-color: #02C75A;
    color: #fff;
}
/* section07 */
#section07 {
    position: relative;
    padding: 5% 0;
    border-top: 1px solid #e9e9e9;
}
.sec7_area ul li {
    color: #666;
    text-align: center;
    font-size: 22px;
}
.sec7_area ul h2 {
    font-size: 58px;
    font-family: 'LINESeedKR-Bd';
    text-align: center;
    color: #03C75B;
}
/* sliders */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}
#sec2_brand {
    margin-top: 100px;
}
.sliders {
    /* background: white; */
    height: 200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 2000px;
}
.sliders::before,
.sliders::after {
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: 2;
}
.sliders::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}
.sliders::before {
    left: 0;
    top: 0;
}
.sliders .slide-track {
    animation: scroll 30s linear infinite;
    display: flex;
    width: calc(250px * 30);
}
.sliders .slide-track:hover {}
.sliders .slides {
    height: 230px;
    width: 230px;
    margin-right: 10px;
}
.slides:nth-child(1),
.slides:nth-child(10) {
    background: url('http://modoomkt.com/img/sec7_1.png') no-repeat;
}
.slides:nth-child(2),
.slides:nth-child(11) {
    background: url('http://modoomkt.com/img/sec7_2.png') no-repeat;
}
.slides:nth-child(3),
.slides:nth-child(12) {
    background: url('http://modoomkt.com/img/sec7_3.png') no-repeat;
}
.slides:nth-child(4),
.slides:nth-child(13) {
    background: url('http://modoomkt.com/img/sec7_4.png') no-repeat;
}
.slides:nth-child(5),
.slides:nth-child(14) {
    background: url('http://modoomkt.com/img/sec7_5.png') no-repeat;
}
.slides:nth-child(6),
.slides:nth-child(15) {
    background: url('http://modoomkt.com/img/sec7_6.png') no-repeat;
}
.slides:nth-child(7),
.slides:nth-child(16) {
    background: url('http://modoomkt.com/img/sec7_7.png') no-repeat;
}
.slides:nth-child(8),
.slides:nth-child(17) {
    background: url('http://modoomkt.com/img/sec7_8.png') no-repeat;
}
.slides:nth-child(9),
.slides:nth-child(18) {
    background: url('http://modoomkt.com/img/sec7_9.png') no-repeat;
}
.slides:nth-child(10),
.slides:nth-child(19) {
    background: url('http://modoomkt.com/img/sec7_10.png') no-repeat;
}
.slides:nth-child(11),
.slides:nth-child(20) {
    background: url('http://modoomkt.com/img/sec7_11.png') no-repeat;
}
.slides:nth-child(12),
.slides:nth-child(21) {
    background: url('http://modoomkt.com/img/sec7_12.png') no-repeat;
}
.slides:nth-child(13),
.slides:nth-child(22) {
    background: url('http://modoomkt.com/img/sec7_13.png') no-repeat;
}
.slides:nth-child(14),
.slides:nth-child(23) {
    background: url('http://modoomkt.com/img/sec7_14.png') no-repeat;
}
.slides:nth-child(15),
.slides:nth-child(24) {
    background: url('http://modoomkt.com/img/sec7_15.png') no-repeat;
}
.slides:nth-child(16),
.slides:nth-child(25) {
    background: url('http://modoomkt.com/img/sec7_16.png') no-repeat;
}
.slides:nth-child(17),
.slides:nth-child(26) {
    background: url('http://modoomkt.com/img/sec7_17.png') no-repeat;
}
.slides:nth-child(18),
.slides:nth-child(27) {
    background: url('http://modoomkt.com/img/sec7_18.png') no-repeat;
}
.slides:nth-child(19),
.slides:nth-child(28) {
    background: url('http://modoomkt.com/img/sec7_19.png') no-repeat;
}
.slides:nth-child(20),
.slides:nth-child(29) {
    background: url('http://modoomkt.com/img/sec7_20.png') no-repeat;
}
.slides:nth-child(21),
.slides:nth-child(30) {
    background: url('http://modoomkt.com/img/sec7_21.png') no-repeat;
}
.slides:nth-child(22),
.slides:nth-child(31) {
    background: url('http://modoomkt.com/img/sec7_22.png') no-repeat;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 9));
    }
}
/* slider */
@keyframes scroll2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(250px * 7));
    }
}
#sec2_brand_right {}
.slider_r {
    height: 200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 2000px;
}
.slider_r::before,
.slider_r::after {
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: 2;
}
.slider_r::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}
.slider_r::before {
    left: 0;
    top: 0;
}
.slider_r .slider_r-track {
    animation: scroll2 30s linear infinite;
    display: flex;
    width: calc(250px * 30);
}
.slider_r .slider_r-track:hover {}
.slider_r .slide_r {
    height: 70px;
    width: 200px;
    margin-right: 40px;
}
@keyframes scroll2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(250px * 9));
    }
}



#section_best{
    background: url(http://modoomkt.com/img/best_banner.png) no-repeat;
	height:600px;
    background-position: center;
	background-size:cover;
}

.best_layout{position: relative;}

.best_txt{width: 100%; display: block;}
.best_item{
    position: absolute;
    bottom: 0; right: 0;
    display: block;
}




#contents {
    width: 100%;
    overflow: hidden;
    background: url('http://modoomkt.com/img/contents_bg.png') no-repeat;
    position: relative;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}
.br {
    display: none;
}
#form {}
#form .form_left {
    position: relative;
    width: 55%;
    float: left;
}
#form .form_left figure {}
#form .form_left figure ul {
    padding: 250px 0;
}
#form .form_left figure ul li {
    font-family: 'LINESeedKR-Bd';
    margin: 10px 0;
    font-size: 50px;
    color: #fff;
    line-height: 1.25em;
}
#form .form_left figure ul li span {
    color: #33CC00;
    font-family: 'LINESeedKR-Bd';
}
#form .form_left figure ul h2 span {
    color: #1EC700;
}
#form .form_left figure ul h3 {
    font-size: 23px;
    color: #fff;
}
#form .form_left figure ul h3 span {
    color: #1EC700;
}
#form .form_left figure ul p {
    margin-top: 10px;
    font-size: 23px;
    color: #ccc;
}
#form .form_right {
    width: 40%;
    float: left;
    opacity: 0.9;
}

#captcha #captcha_img {
    width: initial;
}




#section08{
    position: relative;
    padding: 2% 0% 5% 0%;
	overflow:hidden;
}



#place_banner{padding-bottom: 100px;}
#place_banner .place_box{
	background-image: url(https://modoomkt.com/img/place_banner.png);
	position: relative;
    height: 360px;
    box-sizing: border-box;
    padding-top: 103px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    overflow: hidden;
}
#place_banner .place_box .place_text-box{
	width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 11;
}
#place_banner .place_box .place_text-box strong{
	display: inline;
    font-size: 32px;
    line-height: 36px;
	font-family: 'LINESeedKR-Bd';
    color: #111;
    letter-spacing: -0.25px;
}
#place_banner .place_box .place_text-box span{
	display: block;
    margin-top: 12px;
    font-size: 18px;
    line-height: 28px;
    color: #111;
    letter-spacing: -0.3px;
}
#place_banner .place_box .place_text-box a{
	display: inline-block;
    margin-top: 30px;
    height: 54px;
    line-height: 54px;
    padding: 0 41px;
    border-radius: 27px;
    font-size: 18px;
    color: #fff;
    background: #111;
}










/* footer */
#footer {
    background-color: #f7f7f7;
    padding: 50px 0;
    position: relative;
    margin-top: 0;
    font-size: 14px;
}
#footer .footer_box {
    display: flex;
}
#footer .footer_logo a {
    display: block;
    width: 150px;
    height: 66px;
}
#footer .footer_logo a img {
    width: 120px;
    height: 50px;
}
#footer .copyright {
    font-family: 'LINESeedKR-Bd';
}
#footer .security a {
    display: block;
    font-family: 'LINESeedKR-Bd';
    padding: 20px 0;
    color: #202020;
}
#footer .fl_right {
    text-align: right;
    position: absolute;
    top: 140px;
    right: 350px;
}
#footer .fl_right span {
    font-family: 'LINESeedKR-Bd';
    font-size: 40px;
}
#footer .costomer {
    display: none;
}
/* 패밀리사이트 */
.family {
    position: absolute;
    vertical-align: middle;
    top: -80px;
    right: -130px;
    width: 200px;
    background-color: #fff;
    border: 1px solid #ddd;
    display: block;
    position: relative;
    cursor: pointer;
    z-index: 10;
    height: 26px;
    padding-left: 10px;
    font-size: 13px;
    color: #202020;
    text-align: left;
    line-height: 30px;
    transition: all 0.2s;
    text-decoration: none;
    font-family: 'LINESeedKR-Bd';
}
.family .icon {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 17px;
    overflow: hidden;
    vertical-align: middle;
}
.family .icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30%;
    width: 8px;
    height: 8px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: 2px;
    border-top: 1px solid #202020;
    border-left: 1px solid #202020;
}
.family .icon.rotate:before {
    transform: translate(-50%, -50%) rotate(-135deg);
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
    margin-top: -4px;
}
.family ul {
    position: absolute;
    bottom: 2px;
    width: 197px;
    padding: 5px 23px 5px 37px;
    margin-bottom: 29px;
    margin-left: -10px;
    background: #fff;
    border-bottom: 0;
    display: none;
    border: 1px solid #ccc;
}
.family ul li a {
    display: block;
    position: relative;
    padding: 5px 0;
    font-size: 13px;
    color: #202020;
    text-decoration: none;
}
.family ul.display {
    display: block;
}
.family ul li a:hover {
    color: #02C75A;
}
.card_pay a {
    position: absolute;
    top: -40px;
    right: 0;
    padding: 5px 20px;
    background: #202020;
    font-size: 14px;
    color: #fff;
    transition: ease all 0.5s;
    line-height: 1.8;
}
.card_pay a:hover {
    color: #fff;
    background: #02C75A;
    transition: ease all 0.5s;
}




/* SNS */
#footer .footer_sns .sns {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 2px 10px 0;
}
#footer .footer_sns .blog {
    display: inline-block;
    background: url('http://modoomkt.com/img/blog.png') center no-repeat;
    width: 30px;
    height: 30px;
}
#footer .footer_sns .facebook {
    display: inline-block;
    background: url('http://modoomkt.com/img/facebook.png') center no-repeat;
    width: 30px;
    height: 30px;
}
#footer .footer_sns .instagram {
    display: inline-block;
    background: url('http://modoomkt.com/img/insta.png') center no-repeat;
    width: 30px;
    height: 30px;
}
#footer .footer_sns .youtube {
    display: inline-block;
    background: url('http://modoomkt.com/img/youtube.png') center no-repeat;
    width: 30px;
    height: 30px;
}

/* Mobile navigation */
 .nav-mobile {
     display: none;
     position: absolute;
     top: 0;
     right: 0;
     
     height: 80px;
     width: 70px;
}
 @media only screen and (max-width: 800px) {

 #scrollDown .scroll-down {
    display: none;
}

.m_card {
    display: block;
}


     .nav-mobile {
         display: block;
		 
    }
     nav {
         width: 100%;
         padding: 80px 0 15px;
		  background: #fff;
    }
     nav ul {
         display: none;
    }
     nav ul li {
         float: none;
    }
     nav ul li a {
         padding: 15px;
         line-height: 20px;
         background: #fff;
    }
     nav ul li ul li a {
         padding-left: 30px;
    }
     .navbar-dropdown {
         position: static;
}

 @media screen and (min-width:800px) {
     .nav-list {
         display: block !important;
    }
}
 #navbar-toggle {
     position: absolute;
     left: 18px;
     top: 30px;
     cursor: pointer;
     padding: 10px 35px 16px 0px;
}
 #navbar-toggle span, #navbar-toggle span:before, #navbar-toggle span:after {
     cursor: pointer;
     border-radius: 1px;
     height: 3px;
     width: 30px;
     background: #02C75A;
     position: absolute;
     display: block;
     content: '';
     transition: all 300ms ease-in-out;
}
 #navbar-toggle span:before {
     top: -10px;
}
 #navbar-toggle span:after {
     bottom: -10px;
}
 #navbar-toggle.active span {
     background-color: transparent;
}
 #navbar-toggle.active span:before, #navbar-toggle.active span:after {
     top: 0;
}
 #navbar-toggle.active span:before {
     transform: rotate(45deg);
}
 #navbar-toggle.active span:after {
     transform: rotate(-45deg);
}
 }







.item_box_list .thumb .zzim { display:block; position:absolute; top:0px; right:0px; z-index:10001;  width:45px; height:45px; background:url(https://xn--6j1br0ag3lba435lvsj96p.com/skin/demo/img/scrap_ic.png); background-size:100%;} 
.item_box_list .thumb .zzim.on{ display:block; position:absolute; top:0px; right:0px; z-index:10001;  width:45px; height:45px; background:url(https://xn--6j1br0ag3lba435lvsj96p.com/skin/demo/img/scrap_ic_on.png); background-size:100%;} 


.item_box_list .thumb .it_img {position:relative;width:100%; height:auto; overflow:hidden; border-radius:5px;}
.item_box_list .thumb .it_img img {float:left; width:100%;}

.item_box_list .top_info{padding:0px 0px 10px; letter-spacing:-1px;position:relative; }
.item_box_list .top_info span{ font-family: 'Spoqa Han Sans'!important;}
.item_box_list .top_info .instagram{color:#ff0055; font-size:12px; border:solid 1px #ff0055; display:inline-block; padding:2px 5px; margin-right:3px;}
.item_box_list .top_info .blog{color:#2ba406;font-size:12px;  border:solid 1px #2ba406; display:inline-block; padding:2px 5px;margin-right:3px;}
.item_box_list .top_info .facebook{color:#415fc1;font-size:12px;  border:solid 1px #415fc1; display:inline-block; padding:2px 5px;margin-right:3px;}
.item_box_list .top_info .youtube{color:#f41515;font-size:12px;  border:solid 1px #f41515; display:inline-block; padding:2px 5px;margin-right:3px;}
.item_box_list .top_info .kakaostory{color:#f3d710;font-size:12px;  border:solid 1px #f3d710; display:inline-block; padding:2px 5px;margin-right:3px;}
.item_box_list .top_info .shop{color:#3163d6;font-size:12px;  border:solid 1px #3163d6; display:inline-block; padding:2px 5px;margin-right:3px;}

.item_box_list .top_info .url_input{ display:inline-block; position:absolute; top:0px; right:0px; border:solid #43b549 1px; color:#43b549; font-size:12px;padding:2px 5px; } 
.item_box_list .top_info .url_input:hover{  border:solid #43b549 1px; background-color:#43b549; color:#fff;  } 


.item_box_list .it_info {padding:15px 0px; }
.item_box_list .it_name {display:block; padding-bottom:8px;color:#000;font-size:17px;line-height:1.2;text-overflow:ellipsis; overflow:hidden; white-space:nowrap; }
.item_box_list .it_description {display:block; color:#999; font-size:13px; height:26px; line-height:18px; letter-spacing:-1px;  margin-bottom:5px; overflow: hidden; height: 36px;text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

.item_box_list .option{position:relative; }
.item_box_list .option img{vertical-align:-3px; margin-right:5px;}
.item_box_list .option span{display:inline-block; margin-right:10px; font-family: 'Spoqa Han Sans'!important; color:#333; font-size:12px; }
.item_box_list .option span:last-child{ position:absolute; right:0px; top:2px; margin-right:0px;}
.item_box_list .option2{overflow:hidden;height:54px;margin:0 1px;padding:5px 9px 0 0px; text-align:left; font-size:12px; }


.item_box_list .option2 span{display:inline-block; border:solid 1px #ebebeb;margin-right:3px; padding:0px 5px;background-color:#ebebeb; letter-spacing:-1px; height:20px; line-height:20px; color:#333; }

.point_color1{color:#000; font-weight:normal;}
.point_color2{color:#1b84dd; font-weight:normal;}
.point_color3{color:#f42121; font-weight:normal;}
.point_color4{color:#43B549}
.point_color5{color:#454545;}

.swiper-pagination2 { text-align:center; }

