@charset "utf-8";

/*
*
* CSS CONTENTS:
*
* 01. Web Font
* 02. Type Selector Reset
* 03. Accessibility Navigation
* 04. Layout Selector
* 05. Components
* 06. Entry Content
* 07. Comment
* 09. ETC
* 10. Column & Color Type
* 11. Retina Display
* 12. Media Screen - Tablet
* 13. Media Screen - Mobie
*
*/
.white-cover {
    display:none;
    position: fixed;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
}
/* Web Font Load */
@import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);

@font-face {
font-family: 'NanumSquare';
font-weight: 400;
src: url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareR.eot);
src: url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareR.eot?#iefix) format('embedded-opentype'),
    url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareR.woff) format('woff'),
    url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareR.ttf) format('truetype');
}
@font-face {
font-family: 'NanumSquare';
font-weight: 700;
src: url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareB.eot);
src: url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareB.eot?#iefix) format('embedded-opentype'),
    url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareB.woff) format('woff'),
    url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareB.ttf) format('truetype');
}
@font-face {
font-family: 'NanumSquare';
font-weight: 800;
src: url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareEB.eot);
src: url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareEB.eot?#iefix) format('embedded-opentype'),
    url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareEB.woff) format('woff'),
    url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareEB.ttf) format('truetype');
}
@font-face {
font-family: 'NanumSquare';
font-weight: 300;
src: url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareL.eot);
src: url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareL.eot?#iefix) format('embedded-opentype'),
    url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareL.woff) format('woff'),
    url(https://tistory3.daumcdn.net/tistory/938012/skin/images/NanumSquareL.ttf) format('truetype');
}

.mont {
font-family: 'Montserrat', 'NanumSquare', sans-serif;
}
/* Accessibility Navigation */
#acc-nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 0;
}
#acc-nav a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin-left: -1px;
    margin-bottom: -1px;
    text-align: center;
    font-weight: bold;
    font-size: 0.875em;
    color: #000;
    white-space: nowrap;
}
#acc-nav a:focus, #acc-nav a:hover, #acc-nav a:active {
    width: 100%;
    height: auto;
    padding: 10px 0;
    background: #000;
    color: #fff;
    z-index: 1000;
}

/* 박스 라인 */
.guide {
    position:relative;
    width:1680px;
    margin:0 auto;
    border-left:1px solid #d3d3d4;
    border-right:1px solid #d3d3d4;
}
.guide:after {
    content:'';
    display:block;
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:100vw;
    height:1px;
    background-color:#d3d3d4;
}
.guide-blue {
    position:relative;
    width:1680px;
    margin:0 auto;
    border-left:1px solid #696f83;
    border-right:1px solid #696f83;
}
.guide-blue:after {
    content:'';
    display:block;
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:100vw;
    height:1px;
    background-color:#696f83;
}

@media screen and (max-width:1750px) {
    .guide-blue {
        width: 90%;
    }
}
@media screen and (max-width: 840px) {
#sub-title {
    margin-bottom: 8em;
}
body {
    font-size: 13px;
}
}

@media screen and (max-width: 601px) {
.guide-blue {
    width: 95%;
    border-left: none;
    border-right: none;
}
.guide-blue::after {
    content: none;
}
.pc {
    display: none;
}
.mobile {
    display: block;
}
}


/* Components */
.btn, a.btn {
    display: inline-block;
    position: relative;
    width: 158px;
    padding: 0 10px;
    border: 1px solid #7a583a;
    text-decoration: none;
    text-align: left;
    font-size: 12px;
    line-height: 38px;
    color: #7a583a;
    -webkit-transition: color .2s, background-color .2s;
    transition: color .2s, background-color .2s;
}
.btn:after {
    content: "";
    position: absolute;
    top:50%;
    right:10px;
    width: 11px;
    height: 9px;
    margin-top: -5px;
    background: url(./images/ico_package.png) no-repeat -100px 0;
}
.btn:hover {
    background-color: #7a583a;
    border-color: #7a583a;
    color: #fff;
}
.btn:hover:after {
    background-position-x: 0;
}
.main-title {
    font-size: 2em;
    color: #002d72;
font-family: 'Montserrat', 'NanumSquare', sans-serif;
}
.view-more {
    display:block;
    padding:3em 0 0;
    font-weight: 700;
    text-transform: uppercase;
}
.view-more span,
.view-more a {
    display:inline-block;
    padding: 1em 3em;
    border: 1px solid #67707d;
    text-align:center;
    color: #67707d;
    font-size: 0.95em;
font-family: 'Montserrat', 'NanumSquare', sans-serif;
}

/* 커버 */
.cover-slider {
    position: relative;
    overflow:hidden;
    height: 0;
    padding-bottom: 40%;
    margin:-1px 0 80px;
}
.cover-slider .prev,
.cover-slider .next {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index:20;
    width: 49px;
    height: 83px;
    margin-top: -42px;
    background-image: url(./images/ico_package.png);
    background-repeat: no-repeat;
    text-indent: -999em;
}
.cover-slider .prev {
    margin-left: -600px;
    background-position: 0 -200px;
}
.cover-slider .prev:hover {
    background-position-x: -100px
}
.cover-slider .next {
    margin-left: 551px;
    background-position: -50px -200px;
}
.cover-slider .next:hover {
    background-position-x: -150px
}
.cover-slider .paging {
    position: absolute;
    left: 0;
    bottom: 30px;
    z-index: 20;
    width: 100%;
    text-align: center;
}
.cover-slider .paging button {
    display: inline-block;
    overflow: hidden;
    width: 20px;
    height: 1px;
    margin: 0 5px;
    background-color: #b2b2b2;
    text-indent: -999em;
    vertical-align: bottom;
}
.cover-slider .paging .current {
    height: 5px;
    margin-top: 0;
    background-color: #333;
}
.cover-slider ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cover-slider ul li {
    display: table;
    width:100%;
    height:100%;
    background-size: cover;
    background-position: 50% 50%;
}
.cover-slider ul li .text-box {
    display: table-cell;
    background-color: rgba(0,0,0,0.25);
    text-align:center;
    vertical-align: middle;
    font-weight:100;
    text-decoration: none;
}
.cover-slider ul li .text-box strong {
    font-weight: 700;
}
.cover-slider ul li .text-box .title {
    display: block;
    margin-bottom: 40px;
    text-shadow: 0 0 24px rgba(0,0,0,0.4);
    font-size: 3.75em;
    line-height:1;
    color: #fff;
}
.cover-slider ul li .text-box .title em {
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 0 24px rgba(0,0,0,0.4);
    font-style: normal;
    font-size: 0.5em;
    line-height:1;
    color: #fff;
}
.cover-slider ul li .text-box .btn {
    z-index: 10;
    border-color: #fff;
    color: #fff;
    background-color: rgba(170,170,170,0.1);
    box-shadow: 0 0 24px rgba(170,170,170,0.3);
}
.cover-slider ul li .text-box .btn:after {
    background-position-x: 0;
}
.cover-slider ul li .text-box .btn:hover {
    background-color: #fff;
    color: #7a583a;
}
.cover-slider ul li .text-box .btn:hover:after {
    background-position-x: -100px;
}

.cover-slider.slide-on ul li {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* 메인 슬라이드 */
.cover-slider-1 {
    position:relative;
    width: 100%;
}
.cover-slider-1.mobile {
    display: none;
}
.cover-slider-1 li.slick-slide {
    position: relative;
    padding-bottom: 38vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
}
.cover-slider-1 li.slick-slide > a {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}
.cover-slider-1 li.slick-slide a .title {
    position: absolute;
    width: 1200px;
    height:100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #002d72;
}
.cover-slider-1 li.slick-slide a .title .slide-content {
    display:inline-block;
    position:absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.cover-slider-1 li.slick-slide a .title .slide-content h3 {
    font-size: 4em;
    text-transform: uppercase;
    font-weight: 700;
font-family: 'Montserrat', 'NanumSquare', sans-serif;
}
.cover-slider-1 li.slick-slide a .title .slide-content .article p {
    margin-top: 1em;
    font-size: 2em;
    font-weight: 700;
}
.cover-slider-1 .slick-slide img {
        max-height: 30vw;
    }
.cover-slider-1 li.slick-slide#slick-slide01 .title .slide-content h3,
.cover-slider-1 li.slick-slide#slick-slide01 a .title .slide-content .article p {
    color: #fff;
}
.cover-slider-1 li.slick-slide#slick-slide01 a .title .slide-content .article .view-more span {
    color: #fff;
    border: 1px solid #fff;
}
.cover-slider-1 li.slick-slide#slick-slide02 .title .slide-content h3,
.cover-slider-1 li.slick-slide#slick-slide02 a .title .slide-content .article p {
    color: #002d72;
}
.cover-slider-1 li.slick-slide#slick-slide02 a .title .slide-content .article .view-more span {
    color: #002d72;
    border: 1px solid #002d72;
}
.cover-slider-1 .slick-dots li {
    display:none;
}
.cover-slider-1 .pager-wrap {
    display: inline-block;
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    color: #bfc8d4;
    font-size: 1.2em;
}
.cover-slider-1 .pager-wrap > * {
    vertical-align: middle;
}
.cover-slider-1 .pager-wrap .slick-arrow img {
    margin-bottom: 5px;
    vertical-align: middle;
}
.cover-slider-1 .pager-wrap .slick-arrow.prev {
    margin-right: 5px;
}
.cover-slider-1 .pager-wrap .slick-arrow.next {
    margin-left: 5px;
}
.cover-slider-1 .pager-wrap .paging {
    font-weight: 700;
}

/* 최신글 */
.cover-thumbnail-list-1 {
    width: 100%;
    padding: 3em 0 16em;
    margin: 0 auto;
    background-color: #e8edfb;
    text-align:center;
}
.cover-thumbnail-list-1 h2 {
    text-align:center;
}
.cover-thumbnail-list-1 ol {
    display: inline-block;
    position: relative;
    margin: 3em 0 2em;
    padding-inline-start: 0;
}
.cover-thumbnail-list-1 ol li {
    display: inline-block;
    padding: 0 0.5em;
}
.cover-thumbnail-list-1 ol button {
    display:block;
    width:50px;
    height:50px;
}
.cover-thumbnail-list-1 ul li a {
    display: block;
    padding: 0 1em;
    text-decoration: none;
    color: #666;
    -webkit-transition: color .2s;
    transition: color .2s;
}
.cover-thumbnail-list-1 ul li .thum {
    display: block;
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 98.4848%;
    background-color: #ebebeb;
}
.cover-thumbnail-list-1 ul li .thum img {
    width: 100%;
    height: auto;
}
.cover-thumbnail-list-1 ul li .title {
    display: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.cover-thumbnail-list-1 .slick-list::before {
    content: '';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width: 14%;
    height: 100%;
    z-index:2;
    background-image:url(./images/white-gra.png);
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
    transform: rotate(180deg);
}
.cover-thumbnail-list-1 .slick-list::after {
    content: '';
    display:block;
    position:absolute;
    top:0;
    right:0;
    width: 14%;
    height: 100%;
    z-index:2;
    background-image:url(./images/white-gra.png);
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
}
/* 스페셜 컨텐츠 */
.cover-special-contents-1,
.cover-special-contents {
    width: 1100px;
    margin: 1.5em auto 2em;
    padding: 3em 0;
}
.cover-special-contents {
    margin-top: 8em;
    background-color: #e8edfb;
}
.cover-special-contents-1 ul li ,
.cover-special-contents ul li {
    position: relative;
    text-align: center;
}
.cover-special-contents-1 ul li .thum,
.cover-special-contents ul li .thum {
    display: inline-block;
    vertical-align: middle;
}
.cover-special-contents-1 ul li .thum {
    position: relative;
    z-index: 2;
    margin-left: 10em;
}
.cover-special-contents-1 ul li .thum img {
    position:relative;
    z-index: 3;
}/*
.cover-special-contents-1 ul li .thum::after {
    content: '';
    display: block;
    position:absolute;
    z-index: 1;
    right: 1em;
    top: 1em;
    width: 100%;
    height: 100%;
    background-color: #e8edfb;
}*/
.cover-special-contents-1 ul li .thum img,
.cover-special-contents ul li .thum img {
    max-width: 100%;
    height: auto;
}
.cover-special-contents-1 ul li .box,
.cover-special-contents ul li .box {
    display: inline-block;
    vertical-align: middle;
    max-width: 18em;
    word-break: keep-all;
    text-align:left;
}
.cover-special-contents ul li .box {
    margin-left: 8em;
}
.cover-special-contents ul li:nth-child(even) .thum {
    float: right;
}
.cover-special-contents ul li:nth-child(even) .box {
    left: 0;
}
.cover-special-contents ul li .category {
    display: block;
    margin: 0 0 17px;
    font-weight: 700;
    font-size: 0.875em;
    color: #7a583a;
}
.cover-special-contents-1 ul li .title ,
.cover-special-contents ul li .title {
    display: block;
    margin: 0 0 32px;
    font-weight: 900;
    font-size: 2em;
    line-height: 1.2;
    color: #002d72;
font-family: 'Montserrat', 'NanumSquare', sans-serif;
    text-transform: uppercase;
}
.cover-special-contents-1 ul li .excerpt,
.cover-special-contents ul li .excerpt {
    display: block;
    display:-webkit-box;
    -webkit-line-clamp:6;
    -webkit-box-orient:vertical;
    overflow: hidden;
    font-size: 1.05em;
    line-height: 1.4;
    text-overflow:ellipsis;
    color: #252525;
    transform: skew(-0.03deg);
}
.cover-special-contents-1 ul li .box {
    margin-left: 5em
}
@media screen and (max-width: 1100px) {
    .cover-special-contents-1 ul li .box {
        margin-left: 2em;
    }
}
@media screen and (max-width: 950px) {
    .cover-special-contents-1 ul li .box {
        margin-left: 0;
    }
}
/* 와이드패널 */
.cover-wide-panel {
    width:100%;
    margin: 0 auto 120px;
}
.main-title.cover-wide-title {
    margin: 5em 0 1em;
    text-align: center;
}
.cover-wide-panel-in {
    padding: 27px;
}
.cover-wide-panel-in.slick-slide {

}
.cover-wide-panel .bg {
    height:523px;
    border-radius: 3em 3em 0 0;
    background-position: 50% 50%;
    background-size: auto 100%;
    background-repeat: no-repeat;
}
.cover-wide-panel .box {
    text-align: center;
}
.cover-wide-panel .category {
    display: block;
    margin-bottom:9px;
    font-weight: 700;
    font-size: 0.875em;
    color: #7a583a;
}
.cover-wide-panel h2 {
    display: block;
    padding:2em 0 1.5em;
    font-weight: 700;
    font-size: 1.66em;
    line-height: 1.3333;
    color: #000;
}
.cover-wide-panel p {
    display: block;
    margin-bottom: 0;
    padding:0 0;
    font-size: 0.875em;
    line-height: 2.1428;
    color: #666;
}

.cover-wide-panel .slick-arrow {
    position:absolute;
    z-index: 2;
    top: 210px;
    width: 50px;
    height: 50px;
    text-indent: -9999px;
}
.cover-thumbnail-list-1 .thum-prev,
.cover-wide-panel .slick-prev {
    background-image: url(./images/prev.png);
}
.cover-thumbnail-list-1 .thum-next,
.cover-wide-panel .slick-next {
    background-image: url(./images/next.png);
}
.cover-wide-panel .slick-prev {
    left: 9.5vw;
}
.cover-wide-panel .slick-next {
    right: 9.5vw;
}
@media screen and (max-width:1700px) {
    .cover-wide-panel .slick-prev {
        left: 8.5vw;
    }
    .cover-wide-panel .slick-next {
        right: 8.5vw;
    }
}
.cover-wide-panel .slick-dots {
    display:block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.cover-wide-panel .slick-dots li {
    display: inline-block;
    text-indent: -9999px;
    width: 12px;
    height: 12px;
    margin: 0 0.6em;
    border-radius: 6px;
    background-color: #bfc8d4;
    cursor: pointer;
}
.cover-wide-panel .slick-dots li.slick-active {
    background-color: #002d72;
}

.post-header {
    display: none;
    position: relative;
    z-index: 10;
    overflow: hidden;
    max-width: 860px;
    margin: 40px auto 0;
    border-bottom: 1px solid #7a583a;
    text-align: left;
    color: #7a583a;
}
.post-header:first-child {
    margin-top: 75px;
}
.post-header h2 {
    display: inline-block;
    font-size: 0.875em;
    line-height: 40px;
    vertical-align: top;
}
.post-header .list-type {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -15px;
}
.post-header .list-type button {
    float: left;
    width:30px;
    height: 30px;
    margin: 0 0 0 5px;
    border: 1px solid #D4BCA7;
    background-image: url(./images/ico_package.png);
    text-indent: -999em;
    box-sizing: border-box;
}
.post-header .list-type .thum {
    background-position: 0 -100px;
}
.post-header .list-type .thum:hover,
.post-header .list-type .thum.current {
    background-position: -100px -100px;
    outline: none;
}
.post-header .list-type .list {
    background-position: -50px -100px;
    outline: none;
}
.post-header .list-type .list:hover,
.post-header .list-type .list.current {
    background-position: -150px -100px;
    outline: none;
}

.post-item {
    float: left;
    width: 23.255813953488372%;
    padding:30px 0 20px 2.325581395348837%;
    border-bottom: 1px solid #e6e6e6;
}
.post-item:nth-child(4n+1) {
    padding-left: 0;
}

.cover-thumbnail-list-2 {
    width: 100%;
    margin: 0 auto 40px;
}
.cover-thumbnail-list-2 h2 {
    text-align:center;
}
.cover-thumbnail-list-2 ul {
    margin-left: -16px;
}
.cover-thumbnail-list-2 ul li {
    float: left;
    width: 25%;
    padding:20px 1em 33px;
    box-sizing: border-box;
}
.post-item .thum,
.cover-thumbnail-list-2 ul li .thum {
    display: block;
    position: relative;
    overflow: hidden;
    height: 0;
    margin-bottom: 17px;
    padding-bottom: 98.4848%;
    background-color: #ebebeb;
}
.post-item .thum:before,
.cover-thumbnail-list-2 ul li .thum:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: 22px;
    height: 18px;
    margin: -9px 0 0 -11px;
    background: url(./images/ico_package.png) no-repeat -150px -300px;
}
.post-item .thum img,
.cover-thumbnail-list-2 ul li .thum img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
}
.post-item a,
.cover-thumbnail-list-2 ul li a {
    display: block;
    text-decoration: none;
}
.post-item .title,
.cover-thumbnail-list-2 ul li .title {
    display: block;
    overflow: hidden;
    width: 100%;
    margin-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    font-size: 1.2em;
    color: #000;
    -webkit-transition: color .2s;
    transition: color .2s;
}
.post-item .date {
    display:block;
    margin-top: 0.8em;
    font-size: 1.1em;
    color: #9194a3;
    letter-spacing: -0.2px;
}
.post-item .excerpt,
.cover-thumbnail-list-2 ul li .excerpt {
    display: block;
    display:-webkit-box;
    overflow: hidden;
    width: 90%;
    height: 4.125rem;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    margin-bottom: 16px;
    text-overflow:ellipsis;
    font-size: 0.875em;
    line-height: 1.375rem;
    color: #666;
    -webkit-transition: color .2s;
    transition: color .2s;
}
.post-item .excerpt.protected:before,
.cover-thumbnail-list-2 ul li .excerpt.protected:before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 13px;
    margin-right: 10px;
    background: url(./images/ico_package.png) no-repeat -100px -350px;
    vertical-align: middle;
}
.post-item .more,
.cover-thumbnail-list-2 ul li .more {
    display: inline-block;
    font-size: 0.75em;
    color: #d4bca7;
    vertical-align: top;
}
.post-item .more:after,
.cover-thumbnail-list-2 ul li .more:after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 8px;
    margin: 3px 0 4px 6px;
    background: url(./images/ico_package.png) no-repeat 0 -300px;
    vertical-align: top;
}
.post-item .thum:after,
.cover-thumbnail-list-2 ul li .thum:after {
    content: "";
    background-color: rgba(255,255,255,0);
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
}
.post-item a:hover .thum:after,
.cover-thumbnail-list-2 ul li a:hover .thum:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    /* //background-color: rgba(255,255,255,0.5); */
}
.post-item a:hover .title,
.cover-thumbnail-list-2 ul li a:hover .title{
    color: #002d72;
    font-weight:900;
}
.post-item a:hover .excerpt,
.cover-thumbnail-list-2 ul li a:hover .excerpt{
    color: #000;
}
.post-item a:hover .more,
.cover-thumbnail-list-2 ul li a:hover .more {
    color: #7A583A;
}
.post-item a:hover .more:after,
.cover-thumbnail-list-2 ul li a:hover .more:after {
    background-position-x: -50px;
}

.post-type-text .post-item {
    float: none;
    width: auto;
    margin-left: 0;
    padding: 28px 0;
}
.post-type-text .post-item a {
    overflow: hidden;
    width: 100%;
}
.post-type-text .post-item .thum {
    float: right;
    width: 210px;
    height: 148px;
    margin: 0 0 0 78px;
    padding-bottom:0;
}
.post-type-text .post-item .thum:before {
    display: none;
}
.post-type-text .post-item .thum img {
    position: relative;
    width: 100%;
    height: auto;
    margin: -29px 0 0;
}
.post-type-text .post-item .title {
    width: auto;
    margin-bottom: 3px;
    padding: 10px 0 0;
    font-size: 1.125em;
}
.post-type-text .post-item .excerpt {
    width: auto;
}
.post-type-text .post-item .more {
    line-height: 1.25;
}

.hgroup {
    max-width: 1200px;
    margin: 0 auto;
    padding: 23em 0 2em;
    border-bottom: 1px solid #242425;
}
.hgroup .category {
    display:none;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.875em;
    color: #000;
}
.hgroup h1 {
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.0666;
    color: #242425;
}
.hgroup .post-meta {
    margin: 10px 0 -2px;
    font-size: 1.1em;
    font-weight: 300;
    color: #b2b2b2;
}
.hgroup .post-meta a {
    text-decoration: none;
    color: #d4bca7;
}
.hgroup .post-meta a:hover {
    color: #7A583A;
}
.hgroup .post-meta .author {
    display: none;
}
/*
.hgroup .post-meta span:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 9px;
    margin:0 9px;
    background-color: #b3b3b3;
    vertical-align: middle;
}
.hgroup .post-meta span:first-child:before {
    content: none;
}
*/

.hgroup.guest h2 {
    font-size: 0.875em;
    font-weight: bold;
    line-height: 40px;
    color: #7a583a;
}
.hgroup.guest {
    max-width: 860px;
    margin: 0 auto 60px;
    padding: 75px 0 0;
    border-bottom: 1px solid #7a583a;
}

.hgroup.tag {
    max-width: 860px;
    margin: 0 auto 60px;
    padding: 75px 0 0;
    border-bottom: 1px solid #7a583a;
}
.hgroup.tag h2 {
    font-size: 0.875em;
    font-weight: bold;
    line-height: 40px;
    color: #7a583a;
}


.post-btn {
    max-width: 1200px;
    margin: 200px auto 20px;
}
.post-btn button {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 2px;
    text-align: left;
    text-indent: -999em;
    background-image: url(./images/ico_package.png);
    background-repeat: no-repeat;
    border: 1px solid #D4BCA7;
    box-sizing: border-box;
}
.post-btn .share {
    background-position: 0 -50px;
}
.post-btn .report {
    background-position: -50px -50px;
}
.post-btn .share:hover {
    background-position: -100px -50px;
}
.post-btn .report:hover {
    background-position: -150px -50px;
}

.another-category {
    max-width: 1200px;
    margin: 20px auto 36px;
    padding:38px 0 0;
    border-top: 1px solid #7a583a;
}
.another-category h4 {
    margin-bottom: 10px;
    font-size: 1em;
    color: #666;
}
.another-category table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875em;
    color: #b2b2b2;
}
.another-category table th {
    padding: 8px 0 4px;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
    font-weight: 400;
}
.another-category table th a {
    text-decoration: none;
    color: #b2b2b2;
}
.another-category table th a:hover {
    color: #7A583A;
}
.another-category table th span {
    font-size: 0.75em;
}
.another-category td {
    width: 60px;
    padding: 8px 0 4px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 0.75em;
    line-height: 1;
    color: #b2b2b2;
}

/* Style Important */
.another_category table {border: none !important;}
.another_category td {border: none !important;}

.tags {
    position: relative;
    overflow: hidden;
    max-width: 860px;
    margin: 35px auto 32px;
    color: #b2b2b2;
}
.tags h2 {
    margin-bottom: 10px;
    font-size: 1em;
    color: #666;
}
.tags .items {
    margin: 0 0 0 -18px;
}
.tags .items a {
    display:inline-block;
    margin-left: 18px;
    text-decoration:none;
    font-size: 0.875em;
    line-height: 2.1428;
    color: #b2b2b2;
}

.tags .items a:hover {
    color: #7a583a;
}
.tags .items a:before {
    content: "#";
}
#content .tags .items a {
    margin-left: 8px;}
#content .tags .items {
    margin: 0 0 0 -18px;
        padding-left: 10px;
}


.related-articles {
    overflow: hidden;
    max-width: 1200px;
    margin: 40px auto 80px;
}
.related-articles h2 {
    margin-bottom: 28px;
    border-top: 1px solid #1d2e60;
    border-bottom: 1px solid #1d2e60;
    text-align: center;
    font-weight: 400;
    font-size: 1em;
    line-height: 40px;
    color: #666;
font-family: 'Montserrat', 'NanumSquare', sans-serif;
}
.related-articles h2 strong {
    font-weight: 700;
    color: #000;
    font-size: 1.1em;
    text-transform: uppercase;
    margin-right: 0.5em;
}
.related-articles ul {
    margin-left: -20px;
    vertical-align: top;
}
.related-articles ul li {
    float: left;
    position: relative;
    width:25%;
    padding:0 0 0 20px;
    box-sizing: border-box;
}
.related-articles ul li a {
    overflow: hidden;
    display: block;
    position: relative;
}
.related-articles ul li .thum {
    display: block;
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 98.4848%;
    background-color: #ebebeb;
}
.related-articles ul li .thum:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: 22px;
    height: 18px;
    margin: -9px 0 0 -11px;
    background: url(./images/ico_package.png) no-repeat -150px -300px;
}
.related-articles ul li .thum img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
}
.related-articles ul li .title {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    overflow: hidden;
    width: 100%;
    padding: 0 10px;
    background-color: rgba(0,0,0,0.3);
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1em;
    line-height: 40px;
    color: #fff;
    box-sizing: border-box;
}

.comments {
    display: none;
    max-width: 860px;
    margin: 0 auto;
    border-bottom: 1px solid #e6e6e6;
}
.comments h2 {
    font-size: 1em;
    color: #666;
}
.comments h2 .count {
    color: #7a583a;
}
.comments .comment-list {
    font-size:16px;
    margin-bottom: 6px;
    overflow:hidden;
}
.comments .comment-list ul li {
    padding: 30px 0 25px;
    border-top: 1px solid #e6e6e6;
    position: relative;
    min-height: 48px;
}
.comments .comment-list ul li:first-child {
    border: none;
}
.comments .comment-list ul li ul li {
    padding: 26px 0 0 60px;
    border-top: 0;
    border-bottom: 0;
}
.comments .comment-list ul li .author-meta {
    position: absolute;
    overflow: hidden;
    top:30px; height:48px;
    left:0; right:0;
    padding: 4px 0 0 60px;
}
.comments .comment-list ul li ul li .author-meta {
    top:26px;
    left:60px;
}
.comments .comment-list ul li .author-meta .avatar {
    position: absolute;
    left:0; top:0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.comments .comment-list ul li .author-meta span {
    display:inline-block;
}

.comments .comment-list ul li .author-meta a {
    text-decoration:none;
    color: #000;
}
.comments .comment-list ul li .author-meta .nickname {
    float:left;
    font-size: 0.875em;
    line-height: 20px;
}
.comments .comment-list ul li .author-meta .nickname .tistoryProfileLayerTrigger {
    margin-bottom: 3px;
    margin-right: 0;
    vertical-align: bottom;
}

.comments .comment-list ul li .author-meta .date {
    float:left;
    margin-left: 10px;
    font-size: 0.75em;
    color: #999;
    line-height:20px;
}
.comments .comment-list ul li .author-meta .date:before,
.comments .comment-list ul li .author-meta .date a:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 9px;
    margin-right: 10px;
    background-color: #b2b2b2;
}
.comments .comment-list ul li .author-meta .date a {
    margin-left: 10px;
}
.comments .comment-list ul li .control {
    position: absolute;
    top: 33px;
    right:0;
}
.comments .comment-list ul li ul li .control {
    top: 29px;
}
.comments .comment-list ul li .control a {
    margin:0 2px;
    text-decoration: none;
    font-size: 12px;
    color: #999;
}
.comments .comment-list ul li p {
    position:relative;
    margin: 29px 0 0 60px;
    font-size: 0.875em;
    line-height: 1.5714;
    color: #666;
}
.comments .comment-form .field {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 10px;
}
.comments .comment-form input[type=text],
.comments .comment-form input[type=password],
.comments .comment-form textarea {
    border: 1px solid #e6e6e6;
    font-size: 0.875em;
    line-height: 1.25;
    color: #666;
}
.comments .comment-form input[type=text],
.comments .comment-form input[type=password] {
    width: 120px;
    height: 40px;
    padding: 10px;
    box-sizing: border-box;
}
.comments .comment-form input::-webkit-input-placeholder,
.comments .comment-form textarea::-webkit-input-placeholder {color: #d6d6d6;}
.comments .comment-form textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    resize: none;
    box-sizing: border-box;
}
.comments .comment-form .field .secret {
    float: right;
}
.comments .comment-form .field .secret input {
    display: none;
}
.comments .comment-form .field .secret label {
    font-size: 0.875em;
    line-height: 40px;
    color: #666;
    outline: none;
    cursor: pointer;
}
.comments .comment-form .field .secret label:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 9px;
    border: 1px solid #e1e1e1;
    vertical-align: middle;
    background-color: #fff;
}
.comments .comment-form .field .secret input[type=checkbox]:checked+label:before {
    background-image: url(./images/ico_package.png);
    background-repeat: no-repeat;
    background-position: -97px -295px;
}
.comments .comment-form .submit {
    margin-bottom: 10px;
    text-align: right;
}

.pagination {
    max-width: 860px;
    margin: 60px auto 160px;
    text-align: center;
}
.pagination a {
    display: inline-block;
    margin: 4em 10px 0;
    text-decoration: none;
    font-size: 1.1em;
    line-height: 30px;
    color: #bfc8d4;
    vertical-align: middle;
}
.pagination a:hover {
    color: #1d2e60;
}
.pagination .selected {
    color: #1d2e60;
}
.pagination .prev,
.pagination .next {
    width: 30px;
    height: 30px;
    background-image: url(./images/page.png);
    background-repeat: no-repeat;
    text-indent: -999em;
    vertical-align: middle;
    box-sizing: border-box;
}
.pagination .prev {
    transform: rotate(180deg);
}
.pagination .prev:hover {
}
.pagination .next {
}
.pagination .next:hover {
}
.pagination .no-more-prev {
    background-image:url(./images/no-page.png);
}
.pagination .no-more-next {
    background-image:url(./images/no-page.png);
}

.pagination .view-more {
    display: block;
    width: 100%;
    margin: 0;
    padding: 14px 0 11px;
    border: 1px solid #d4bca7;
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    color: #d4bca7;
}
.pagination .view-more:before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 9px;
    background: url(./images/ico_package.png) no-repeat 0 -400px;
}
.pagination .view-more:hover {
    background-color: #d4bca7;
    color: #fff;
}
.pagination .view-more:hover:before {
    background-position-x: -50px;
}

/* Entry Content */
.entry-content {
    max-width: 1200px;
    margin: 0 auto;
}
.entry-content h1 {
    clear: both;
    margin: 29px 0 22px;
    font-size: 1.6875em;
    line-height: 1.5;
    color: #000;
}
.entry-content h2 {
    clear: both;
    margin: 29px 0 22px;
    font-size: 1.5em;
    line-height: 1.5;
    color: #000;
}
.entry-content h3 {
    clear: both;
    margin: 29px 0 22px;
    font-size: 1.3125em;
    line-height: 1.5;
    color: #000;
}
.entry-content h4 {
    clear: both;
    margin: 29px 0 22px;
    font-weight: 400;
    font-size: 1.125em;
    line-height: 1.5;
    color: #000;
}
.entry-content p {
    margin-bottom: 22px;
    word-break: break-all;
    font-size: 1.1em;
    line-height: 1.5714;
    color: #666;
}
.entry-content p img {
    max-width: 100%;
    height: auto;
}
.entry-content hr {
    display: block;
    height: 0;
    border: 0;
    border-bottom: 1px solid #000;
}
.entry-content pre {
    word-break:break-all;
    white-space:pre-wrap;
    word-wrap:break-word;
}
.entry-content pre code.hljs {
    padding: 20px;
}
.entry-content ul {
    list-style: disc inside;
    margin-bottom: 22px;
}
.entry-content ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 22px;
    font-size: 1em;
    line-height: 1.5714;
    color: #666;
    text-indent: -22px;
    list-style: inherit;
}
.entry-content ol {
    list-style: decimal inside;
    margin-bottom: 22px;
}
.entry-content ol li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 16px;
    font-size: 1em;
    line-height: 1.5714;
    color: #666;
    text-indent: -15px;
    list-style: inherit;
}
.entry-content a {
    color: #d4bca7;
}
.entry-content img.alignleft {
    float: left;
    margin: 0 22px 22px 0;
}
.entry-content img.aligncenter {
    display: block;
    margin: 0 auto 22px;
}
.entry-content img.alignright {
    float: right;
    margin: 0 0 22px 22px;
}
.entry-content blockquote {
    margin-top: 10px;
    padding: 16px 20px;
    border-left: 4px solid #e6e6e6;
}
.entry-content blockquote p {
    margin: 22px 0 0;
}
.entry-content blockquote p:first-child {
    margin-top: 0;
}
.entry-content table {
    width:100%;
    margin-bottom: 22px;
    border: 1px solid #e6e6e6;
    border-collapse: collapse;
    text-align: center;
    font-size: 1em;
    line-height: 1.5714;
    color: #666;
}
.entry-content table thead th {
    padding:7px 0 11px;
    border-left: 1px solid #e6e6e6;
}
.entry-content table tbody td {
    padding:7px 0 11px;
    border-left: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
}
.entry-content input {
    height: 40px;
    padding: 0 10px;
    border: 1px solid #e6e6e6;
    font-size: 0.875em;
    line-height: 1.25;
    color: #666;
    box-sizing: border-box;
    vertical-align: middle;
}
.entry-content .protected_form {
    margin-bottom: 40px;
    padding: 120px 0 200px;
    border-bottom: 1px solid #7a583a;
    text-align: center;
}
.entry-content .protected_form input {
    width: 200px;
    margin-bottom: 10px;
    vertical-align: top;
}
.entry-content .cap1 {
    text-align: center;
    font-size: 0.875em;
    font-style: italic;
}
.entry-content .iframe-wrap {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
}
.entry-content .iframe-wrap iframe:not([mapdata]) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Comment */

/* Widget & Template Page */

/* ETC */
#dimmed {
    position:fixed;
    top:0;
    left:0;
    z-index:101;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.4);
}

#mediaLogNest {
    max-width:1200px;
    margin: 0 auto;
}

/* Column & Color Type */
.layout-float #wrap {
    padding-left: 240px;
}
.layout-float #header {
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
    width: 240px;
    height: 100%;
    border-bottom-width: 0;
    border-right: 1px solid #e6e6e6;
    background-color: #fff;
}
.layout-float #header h1 {
    float: none;
    padding: 80px 0 60px;
    text-align: center;
}
.layout-float #gnb {
    float: none;
    padding: 0 40px;
}
.layout-float #gnb ul li {
    float: none;
    padding: 0;
    border-bottom: 1px solid #e6e6e6;
    text-align: center;
}
.layout-float #gnb ul li a {
    padding: 10px 0 1px;
}
.layout-float #gnb ul li a:hover:after {
    margin: 0;
}
.layout-float #content {
    max-width: 900px;
    padding: 80px 0 0 60px;
}
.layout-float #aside {
    padding-left: 60px;
}
.layout-float #aside .inner {
    max-width: 900px;
    margin: 0;
}
.layout-float #footer .copyright {
    max-width: 900px;
    padding-left: 60px;
}
.layout-float .cover-slider {
    padding-bottom: 53.3333%;
}
.layout-float .cover-slider .prev {
    margin-left: -430px;
}
.layout-float .cover-slider .next {
    margin-left: 381px;
}
.layout-float .cover-slider ul li .text-box .title {
    font-size: 3em;
}
.layout-float .cover-thumbnail-list-1 ul li {
    padding-left: 36px;
}
.layout-float .cover-special-contents ul li .category {
    margin-top: 57px;
}
.layout-float .cover-special-contents ul li .title {
    margin-bottom: 26px;
    font-size: 1.5em;
}
.layout-float .cover-special-contents ul li .title:after {
    margin-top: 22px;
}
.layout-float .cover-special-contents ul li .excerpt {
    height: 10em;
    margin-bottom: 35px;
    padding: 0 55px;
    line-height: 1.7142;
}
.layout-float .cover-wide-panel .box {
    width: 800px;
    margin-top: -80px;
}
.layout-float .cover-wide-panel h2 {
    font-size: 1.5em;
}
.layout-float .cover-wide-panel p {
    padding:0 60px;
}

.layout-float .post-item {
    width: 30.6666%;
}
.layout-float .post-item:nth-child(4n+1) {
    padding-left: 4%;
}
.layout-float .post-item:nth-child(3n+1) {
    padding-left: 0;
}
.layout-float.post-type-text .post-item {
    width: auto;
    padding-left: 0;
}
.layout-float .related-articles ul li .thum {
    padding-bottom: 100% ;
}
.layout-float .cover-thumbnail-list-2 ul {
    margin-left: -36px;
}
.layout-float .cover-thumbnail-list-2 ul li {
    width: 33.3333%;
    padding-left: 36px;
}
.layout-float #aside .sidebar-1,
.layout-float #aside .sidebar-2,
.layout-float #aside .sidebar-3 {
    width: 33.3333%;
}
.layout-float #aside .sidebar-1 {
    padding-right: 24px;
}
.layout-float #aside .sidebar-3 {
    padding-left: 24px;
}
.layout-float .related-articles ul {
    margin-left: -36px;
}
.layout-float .related-articles ul li {
    padding-left: 36px;
}

/* Black Type */
.color-dark,
.color-dark #header,
.color-dark .cover-wide-panel .box,
.color-dark #aside .search input,
.color-dark .comments .comment-form input[type=text],
.color-dark .comments .comment-form input[type=password],
.color-dark .comments .comment-form textarea {
    background-color: #141414;
}
.color-dark .entry-content ul li:before {
    background-color: #333;
}
.color-dark #footer {
    background-color: #000;
}
.color-dark #gnb ul li a:hover:after,
.color-dark .cover-thumbnail-list-1 h2:after,
.color-dark .cover-special-contents ul li .title:after {
    background-color: #d4bca7;
}
.color-dark .btn:hover,
.color-dark .pagination .view-more:hover {
    background-color: #7A583A;
}
.color-dark #header,
.color-dark #aside,
.color-dark .post-item,
.color-dark .cover-thumbnail-list-2 ul li,
.color-dark .comments .comment-list ul li,
.color-dark .comments {
    border-color: #000;
}
.color-dark .hgroup,
.color-dark .another-category,
.color-dark .related-articles h2 {
    border-color: #d4bca7;
}
.color-dark #gnb ul li,
.color-dark #aside .posts li,
.color-dark #aside .count ul li,
.color-dark #aside .search fieldset,
.color-dark .entry-content blockquote,
.color-dark .entry-content table,
.color-dark .entry-content table thead th,
.color-dark .entry-content table tbody td,
.color-dark .another-category table th,
.color-dark .another-category table td,
.color-dark .comments .comment-form input[type=text],
.color-dark .comments .comment-form input[type=password],
.color-dark .comments .comment-form textarea,
.color-dark .comments .comment-form .field .secret label:before {
    border-color: #333;
}
.color-dark .btn,
.color-dark .pagination .view-more,
.color-dark .post-header .list-type button,
.color-dark .pagination .prev,
.color-dark .pagination .next,
.color-dark .entry-content a,
.color-dark .cover-thumbnail-list-2 h2,
.color-dark .post-header {
    border-color: #7A583A;
}
.color-dark .post-item .more,
.color-dark .cover-thumbnail-list-2 ul li .more,
.color-dark .pagination a,
.color-dark .entry-content a {
    color: #7a583a;
}
.color-dark #header h1 a {
    color: #d4bda9;
}
.color-dark #gnb ul li a:hover,
.color-dark #aside .posts li a:hover,
.color-dark #aside .tags .more:hover,
.color-dark #aside .count .total,
.color-dark #footer a,
.color-dark .tags .items a:hover,
.color-dark .cover-thumbnail-list-1 h2,
.color-dark .cover-special-contents ul li .title,
.color-dark .cover-wide-panel h2,
.color-dark .post-item a:hover .title,
.color-dark .post-item a:hover .more,
.color-dark .cover-thumbnail-list-2 ul li a:hover .title,
.color-dark .cover-thumbnail-list-2 ul li a:hover .more,
.color-dark .pagination a:hover,
.color-dark .hgroup h1,
.color-dark .pagination .selected,
.color-dark .comments h2 .count,
.color-dark .cover-thumbnail-list-1 ul li a:hover {
    color: #d4bca7;
}
.color-dark #gnb ul li a,
.color-dark #aside h2,
.color-dark .hgroup .category,
.color-dark .cover-thumbnail-list-1 h2 em,
.color-dark .cover-special-contents ul li .category,
.color-dark .cover-wide-panel .category,
.color-dark .entry-content h2,
.color-dark .post-item a:hover .excerpt,
.color-dark .cover-thumbnail-list-2 h2,
.color-dark .cover-thumbnail-list-2 ul li a:hover .excerpt,
.color-dark .post-header h2,
.color-dark .another-category h4,
.color-dark .tags h2,
.color-dark .related-articles h2 strong,
.color-dark .comments h2,
.color-dark .comments .comment-list ul li .author-meta .nickname,
.color-dark .comments .comment-list ul li .author-meta a,
.color-dark .btn:hover,
.color-dark .pagination .selected,
.color-dark .pagination .view-more:hover {
    color: #fff;
}
.color-dark #aside .posts li a,
.color-dark #aside .count ul li,
.color-dark #aside .search input,
.color-dark .cover-thumbnail-list-1 ul li a,
.color-dark .cover-special-contents ul li .excerpt,
.color-dark .cover-wide-panel p,
.color-dark .post-item .excerpt,
.color-dark .cover-thumbnail-list-2 ul li .excerpt,
.color-dark .entry-content p,
.color-dark .entry-content ul li,
.color-dark .entry-content ol li,
.color-dark .entry-content table,
.color-dark .tags .items a,
.color-dark .another-category table th a {
    color: #808080;
}
.color-dark #aside .search input::-webkit-input-placeholder,
.color-dark .comments .comment-form input::-webkit-input-placeholder,
.color-dark .comments .comment-form textarea::-webkit-input-placeholder {
    color: #333;
}
.color-dark #aside .tags .more,
.color-dark .btn,
.color-dark .pagination .view-more,
.color-dark .comments .comment-list ul li .author-meta .control a {
    color: #7a583a;
}
.color-dark .post-item .title,
.color-dark .cover-thumbnail-list-2 ul li .title {
    color: #ccc;
}
.color-dark #aside .search button {
    background-position-x: -37px;
}
.color-dark #aside .search button:hover,
.color-dark #aside .search button:focus,
.color-dark #aside .search input:focus+button {
    background-position-x: 13px;
}
.color-dark #aside .tags .more:after {
    background-position-x: -50px;
}
.color-dark #aside .tags .more:hover:after {
    background-position-x: 0;
}
.color-dark .pagination .prev {
    background-position-x: -100px;
}
.color-dark .pagination .next {
    background-position-x: -150px;
}
.color-dark .pagination .prev:hover {
    background-position-x: 0;
}
.color-dark .pagination .next:hover {
    background-position-x: -50px;
}
.color-dark .post-header .list-type .thum {
    background-position-x: -100px;
}
.color-dark .post-header .list-type .thum:hover,
.color-dark .post-header .list-type .thum.current {
    background-position-x: 0;
}
.color-dark .post-header .list-type .list {
    background-position-x: -150px;
}
.color-dark .post-header .list-type .list:hover,
.color-dark .post-header .list-type .list.current {
    background-position-x: -50px;
}
.color-dark .pagination .view-more:before {
    background-position-x: -100px;
}
.color-dark .pagination .view-more:hover:before {
    background-position-x: -50px;
}
.color-dark .btn:after {
    background-position-x: -100px;
}
.color-dark .btn:hover:after,
.color-dark .pagination .view-more:hover {
    background-position-x: 0;
}
.color-dark .post-item .more:after,
.color-dark .cover-thumbnail-list-2 ul li .more:after {
    background-position-x: -50px;
}
.color-dark .post-item a:hover .more:after,
.color-dark .cover-thumbnail-list-2 ul li a:hover .more:after {
    background-position-x: 0;
}

.color-dark #header .mobile-menu span,
.color-dark #header .mobile-menu:before,
.color-dark #header .mobile-menu:after {
    background-color: #D4BCA7;
}
.color-dark #gnb {
    background-color: #141414;
}

.container_postbtn.none {
    display:none;
}

.color-dark .container_postbtn .postbtn_like .txt_like {
    color: #808080;
}


.revenue_unit_wrap.position_list{
    max-width: 860px;
    margin: 30px auto
}

/* 일반페이지 타이틀 */
.hgroup.pageTitle {
    display:none;
}


/* 서브 페이지 공통 */
.mobile {
display: none;
}

sup {
position: relative;
top: 0.1em;
font-size: 60%;
line-height: 1;
}

#sub-title {
font-family: 'Montserrat', 'NanumSquare', sans-serif;
margin-bottom: 12em;
color: #fff;
text-align: center;
background-color: #1d2e60;
}

#sub-title h2 {
padding-top: 5.6rem;
padding-bottom: 3.6rem;
font-size: 3.33em;
text-transform: uppercase;
}

.inner #sub-title {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    transform: translateX(-50%);
}

.inner #sub-title::after {
    content: '';
    display:block;
    position:relative;
    z-index: 11;
    width: 100%;
    height: 5em;
    background: #fff;
}

@media screen and (max-width: 601px) {
#sub-title h2 {
    padding-top: 3.6rem;
    padding-bottom: 1.6rem;
    font-size: 2em;
}
}

#sub-title .guide-blue:nth-child(2) {
padding: 1em 0;
}

@media screen and (max-width: 1750px) {
.guide-blue {
    width: 90%;
}
}

@media screen and (max-width: 840px) {
#sub-title {
    margin-bottom: 3em;
}
    .inner #sub-title::after {
        height: 0em;
    }
body {
    font-size: 13px;
}
}

@media screen and (max-width: 601px) {
.guide-blue {
    width: 95%;
    border-left: none;
    border-right: none;
}
.guide-blue::after {
    content: none;
}
.pc {
    display: none;
}
.mobile {
    display: block;
}
}
/* 블로그 목록 */

/* 하단 */

#list-add {
padding: 6.6em 0 17em;
background-color: #e8edfb;
text-align: center;
word-break: keep-all;
}

@media screen and (max-width: 834x) {
#list-add {
    padding: 4em 0 10em;
}
}

@media screen and (max-width: 601px) {
#list-add {
    padding: 3.5em 0 6em;
}
}

#list-add .responsive {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
width: 1200px;
margin: 0 auto;
text-align: left;
}

@media screen and (max-width: 1250px) {
#list-add .responsive {
    display: inline-block;
    width: 95%;
    font-size: 95%;
}
}

@media screen and (max-width: 1024px) {
#list-add .responsive {
    font-size: 90%;
}
}

@media screen and (max-width: 834px) {
#list-add .responsive {
    font-size: 85%;
}
}

#list-add .responsive h4 {
width: 100%;
margin-bottom: 1.2em;
font-size: 2.333em;
font-weight: 900;
color: #002d72;
}

@media screen and (max-width: 834px) {
#list-add .responsive h4 {
    text-align: center;
}
}

#list-add .responsive .left {
display: inline-block;
width: 58.35%;
vertical-align: middle;
}

@media screen and (max-width: 601px) {
#list-add .responsive .left {
    width: 100%;
}
}

#list-add .responsive .left ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
list-style: none;
}
/*
#list-add .responsive .left ul li:nth-child(1) {
width: 54.3%;
}
*/
#list-add .responsive .left ul li:nth-child(2) {
width: 42.8%;
}

#list-add .responsive .left ul li:nth-child(3) {
width: 42.8%;
}

#list-add .responsive .left ul li:nth-child(4) {
width: 54.3%;
}

#list-add .responsive .left img {
margin-bottom: 1em;
max-width: 100%;
}

#list-add .responsive .right {
display: inline-block;
width: calc(100% - 63.35%);
margin-left: 4%;
vertical-align: middle;
}

@media screen and (max-width: 601px) {
#list-add .responsive .right {
    width: 100%;
    /*min-width: ;*/
    margin-left: 0;
    margin-top: 2em;
}
}

#list-add .responsive .right > img {
width: 11em;
}

#list-add .responsive .right P {
padding: 2em 0;
font-size: 1.66em;
font-weight: 700;
color: #454545;
}

@media screen and (max-width: 601px) {
#list-add .responsive .right P {
    padding: 1em 0;
}
}

#list-add .responsive .right ul {
list-style: none;
}

#list-add .responsive .right ul li {
display: inline-block;
margin-right: 1em;
}

@media screen and (max-width: 1024px) {
#list-add .responsive .right ul li {
    width: 55px;
}
}

@media screen and (max-width: 834px) {
#list-add .responsive .right ul li {
    width: 45px;
    margin-right: 0.5em;
}
}

#list-add .responsive .right ul li a {
display: block;
}

#list-add .responsive .right ul li img {
max-width: 100%;
}

/* Retina Display */
/*@media  only screen and (-webkit-min-device-pixel-ratio:1.5) {
    #aside .tags .more:after,
    #aside .search button,
    .btn:after,
    .cover-slider .prev,
    .cover-slider .next,
    .post-header .list-type button,
    .post-item .thum:before,
    .cover-thumbnail-list-2 ul li .thum:before,
    .post-item .more:after,
    .cover-thumbnail-list-2 ul li .more:after,
    .post-btn button,
    .related-articles ul li .thum:before,
    .comments .comment-form .field .secret input[type=checkbox]:checked+label:before,
    .pagination .prev,
    .pagination .next,
    .pagination .view-more:before {background-image: url(./images/ico_package_2x.png); background-size: 200px auto;}
}*/

/* Media Screen - PC */
@media screen and (max-width:1750px) {
    .guide {
        width: 90%;
    }
}
@media screen and (max-width:1400px) {
    .cover-slider-1 .slick-slide img {
        max-height: 20vw;
    }
}
@media screen and (max-width:1250px) {
    .cover-slider-1 li.slick-slide a .title {
        width: 90%;
        font-size: 70%;
    }

    .cover-thumbnail-list-1 .slick-list::before,
    .cover-thumbnail-list-1 .slick-list::after {
        content: none;
    }
    .cover-special-contents-1,
    .cover-special-contents {
        width: 90%;
        padding: 2em 5%;
    }
    .cover-special-contents-1 ul li .thum, .cover-special-contents ul li .thum {
        width: 60%;
    }
    .cover-special-contents ul li .box,
    .cover-special-contents-1 ul li .box  {
        width: 35%;
    }
    .cover-special-contents ul li .box,
    .cover-special-contents-1 ul li .thum {
        margin-left: 4%;
    }
}
/* Media Screen - Tablet */
@media screen and (max-width:1200px) {
    /*#header,
    #aside,
    #content .inner,
    .cover-thumbnail-list-1,
    .cover-special-contents,
    .cover-thumbnail-list-2,
    .pagination {
        padding-left: 34px;
        padding-right: 34px;
    }*/
    .w1200,
    #header .inner,
    #content .w1200,
    #aside .inner,
    #aside .sidebar-3,
    #footer .foot-top .foot-top-wrap,
    #footer .foot-top .copy,
    #footer .foot-bottom,
    .hgroup,
    .post-btn,
    .another-category,
    .related-articles,
    .entry-content,
    #mediaLogNest,
    #list-add .responsive {
        width: 95%;
    }
    #gnb ul li a {
        padding: 0 0.7em;
    }
    .cover-slider .prev {
        left: 20px;
        margin-left: 0;
    }
    .cover-slider .next {
        left: auto;
        right: 20px;
        margin-left: 0;
    }
    .cover-wide-panel .box {
        max-width: none;
    }
    .entry-content img.alignleft,
    .entry-content img.alignright {
        max-width: 50%;
    }
    .layout-float .cover-wide-panel {
        margin-bottom: 80px;
    }
    .layout-float .cover-wide-panel p {
        padding: 0 10%;
        font-size: 0.75em;
    }
    .layout-float .cover-thumbnail-list-2 ul {
        margin-left: -20px;
    }
    .layout-float .cover-thumbnail-list-2 ul li {
        padding-left: 20px;
    }
    .layout-float .cover-thumbnail-list-2 ul li .title,
    .layout-float .post-item .title {
        font-size: 1em;
    }
    .layout-float .cover-thumbnail-list-2 ul li .excerpt,
    .layout-float .post-item .excerpt {
        height: 5em;
        font-size: 0.75em;
        line-height: 1.6666;
    }
    .layout-float .post-header {
        margin: 0;
    }
    .layout-float #content {
        padding: 80px 34px 0;
    }
    .layout-float .cover-wide-panel .box {
        width: auto;
    }
    .layout-float #aside {
        padding-left: 34px;
        padding-right: 34px;
    }
    .layout-float #aside .sidebar-1 {
        width: 50%;
        padding: 0 10px 0 0;
    }
    .layout-float #aside .sidebar-2 {
        width: 50%;
        margin: 0;
        padding: 0 0 0 10px;
    }
    .layout-float #aside .sidebar-3 {
        clear: both;
        float: none;
        width: auto;
        padding: 0;
    }
    .layout-float #aside .search {
        float: left;
        width: 50%;
        padding-right: 10px;
        box-sizing: border-box;
    }
    .layout-float #aside .count {
        float: right;
        width: 50%;
        margin: 0;
        padding-left: 10px;
        box-sizing: border-box;
    }
}
@media screen and (max-width:1023px) {
    .guide {
        width: 95%;
        border-left: none;
        border-right: none;
    }
    .guide:after {
        width: 110vw;
    }
    #header .top {
        text-align: left;
    }
    #header h1 {
        float: none;
        padding: 10px 50px 5px 0;
    }
    #header h1 img {
        width: auto;
        height: 28px;
    }
    #header .mobile-menu {
        display: block;
        position: absolute;
        right: 19px;
        width: 48px;
        height: 50px;
        margin-top: -50px;
        text-indent: -999em;
        outline: none;
    }
    #header .mobile-menu span,
    #header .mobile-menu:before,
    #header .mobile-menu:after {
        position: absolute;
        top: 50%;
        right: 0;
        height: 2px;
        margin-left: -9px;
        background-color: #4b4c4c;
        -webkit-transition: -webkit-transform .3s;
        transition: transform .3s;
    }
    #header .mobile-menu span {
        width: 15px;
        top: 50%;
        margin-top: -1px;
    }
    #header .mobile-menu:before {
        content: "";
        margin-top: -8px;
        width: 20px;
    }
    #header .mobile-menu:after {
        content: "";
        margin-top: 6px;
        width: 20px;
    }
    #header .mobile-menu.on {
    }
    #header .mobile-menu.on span {
        display: none;
    }
    #header .mobile-menu.on:before {
        margin-top: -1px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #header .mobile-menu.on:after {
        margin-top: -1px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #gnb {
        position: fixed;
        top: 0;
        right: -300px;
        z-index: 600;
        width: 300px;
        height: 100%;
        margin-top: 45px;
        background-color: #fff;
        box-sizing: border-box;
        -webkit-transition: right .3s;
        transition: right .3s;
    }
    #gnb ul {
        overflow-y: auto;
        height: 100%;
    }
    #gnb ul li {
        display: block;
        float: none;
        padding: 0;
        font-size: 1.125em;
        text-align: left;
    }
    #gnb ul li a {
        padding: 10px 30px 5px;
        line-height: 40px;
    }
    #gnb ul li a:hover:after {
        display: none;
    }
    #gnb.on {
        right: 0;
    }
    #aside {
        margin-top: 0;
    }
    #aside .sidebar-1 {
        width: 50%;
        padding: 0 10px;
    }
    #aside .sidebar-2 {
        width: 50%;
        margin: 0;
        padding: 0 10px;
    }
    #aside .sidebar-3 {
        clear: both;
        float: none;
        width: auto;
        padding: 0;
    }
    #aside .search {
        float: left;
        width: 50%;
        padding-right: 10px;
        box-sizing: border-box;
    }
    #aside .count {
        float: right;
        width: 50%;
        margin: 0;
        padding-left: 10px;
        box-sizing: border-box;
    }
    .container {
        padding-top: 47px;
    }
    .cover-slider {
        margin-bottom: 50px;
        padding-bottom: 39.0625%;
    }
    .cover-slider-1 li.slick-slide {
        padding-bottom: 400px;
    }
    .cover-slider-1 .pager-wrap {
        bottom: 2em;
    }
    .cover-slider ul li .text-box .title {
        margin-bottom: 21px;
        font-size: 2.25em;
    }
    .cover-slider ul li .text-box .title em {
        margin-bottom: 8px;
        font-size: 0.5555em;
    }
    .btn, a.btn {
        width: 138px;
    }
    .cover-thumbnail-list-1 h2 {
        font-size: 1.5em;
    }
    .cover-thumbnail-list-1 h2 em {
        margin-bottom: 3px;
        font-size: 0.5833em;
    }
    .cover-thumbnail-list-1 h2:after {
        width: 40px;
        margin-top: 24px;
    }
    .cover-wide-panel {
        margin-bottom: 100px;
    }
    .cover-wide-panel .bg {
        height: 50vw;
    }
    .cover-wide-panel .box {
        margin-top: -65px;
        padding-top: 48px;
    }
    .cover-wide-panel .category {
        margin-bottom: 0;
    }
    .cover-wide-panel h2 {
        margin-bottom: 20px;
        font-size: 1.5em;
    }
    .cover-wide-panel h2:after {
        margin-top: 24px;
    }
    .cover-wide-panel .slick-prev {
        left: 85px;
    }
    .cover-wide-panel .slick-next {
        right: 85px;
    }
    .post-header:first-child {
        margin-top: 50px;
    }
    .cover-thumbnail-list-2 ul {
        margin-left: -20px;
    }
    .cover-thumbnail-list-2 ul li {
        padding: 20px 0 0 20px;
    }
    .post-header {
        margin: 0 34px;
    }
    .post-item .title,
    .cover-thumbnail-list-2 ul li .title {
        font-size: 1.125em;
    }
    .post-item {
        width: 22.75%;
        padding-left: 3%;
    }
    .post-type-text .post-item {
        padding: 30px 0 22px;
    }
    .post-type-text .post-item .title {
        margin: 0 0 2px;
        padding: 0;
        font-size: 1em;
    }
    .post-type-text .post-item .excerpt {
        margin-bottom: 9px;
        -webkit-line-clamp: 2;
        font-size: 0.75em;
    }
    .hgroup {
        margin-bottom: 50px;
        padding-bottom: 30px;
    }
    .related-articles {
        margin-bottom: 80px;
    }
    .related-articles ul {
        margin-left: -20px;
    }
    .related-articles ul li {
        padding-left: 20px;
    }
    .related-articles ul li .title {
        font-size: 0.75em;
    }
    .comments {
        margin-bottom: 40px;
    }
    .layout-float #wrap {
        padding-left: 180px;
    }
    .layout-float #header {
        width: 180px;
    }
    .layout-float #gnb {
        position: relative;
        width: auto;
        top: auto;
        right: auto;
        padding:0 30px;
    }
    .layout-float #gnb ul li {
        font-size: 0.875em;
        border-top: 0;
    }
    .layout-float .post-item {
        padding-left: 4%;
    }
    .layout-float #header .mobile-menu {
        display: none;
    }
    .layout-float .cover-slider {
        padding-bottom: 57.6923%;
    }
    .layout-float .cover-slider ul li .text-box .title {
        font-size: 1.875em;
    }
    .layout-float .related-articles ul {
        margin-left: -20px;
    }
    .layout-float .related-articles ul li {
        padding-left: 20px;
    }
}

/* Media Screen - Mobie */
@media screen and (max-width:840px) {
    body {
        font-size: 13px;
    }
    #content .inner {
        width: 95%;
        margin: 0 auto;
    }
    #aside .sidebar-1,
    #aside .sidebar-2,
    #aside .sidebar-3,
    #aside .search,
    #aside .count {
        float: none;
        width: auto;
        padding: 0;
    }
    #aside .posts li a {
        padding: 7px 0 4px;
    }
    .view-more {
        padding: 1.5em 0 0 ;
    }
    .cover-slider {
        padding-bottom: 75%;
    }
    .cover-slider .prev,
    .cover-slider .next {
        width: 24px;
        height: 42px;
        margin-top: -21px;
        background-size: 100px auto;
    }
    .cover-slider .prev {
        left: 10px;
        background-position: 0 -100px;
    }
    .cover-slider .prev:hover {
        background-position-x: -50px;
    }
    .cover-slider .next {
        right: 10px;
        background-position: -25px -100px;
    }
    .cover-slider .next:hover {
        background-position-x: -75px;
    }
    .cover-slider .paging {
        bottom: 20px;
    }
    .cover-slider ul li .text-box .title {
        margin-bottom: 28px;
        padding: 0 30px;
        font-size: 1.5em;
    }
    .cover-slider ul li .text-box .title em {
        margin-bottom: 10px;
        font-size: 0.75em;
    }
    .cover-special-contents-1 ul li .title, 
    .cover-special-contents ul li .title {
        margin: 0 0 1em;
        font-size: 1.8em;
    }
    .main-title.cover-wide-title {
        margin: 2em 0 1em;
    }
    .cover-wide-panel {
        margin: 0 auto 3em;
    }
    .cover-wide-panel h2 {
        margin-bottom: 0;
    }
    .cover-wide-panel .slick-arrow {
        top: 20vw;
    }
    .cover-wide-panel .slick-dots {
        width: 100%;
        text-align: center;
    }
    .cover-thumbnail-list-1 {
        padding: 3em 0 5em;
        background-color: transparent;
    }
    .cover-thumbnail-list-1 h2 {
        float: none;
        width: auto;
        margin-bottom: 20px;
        text-align: center;
    }
    .cover-thumbnail-list-1 h2 br {
        display: none;
    }
    .cover-thumbnail-list-1 h2:after {
        margin: 24px auto 0;
    }
    .cover-thumbnail-list-2 {
        margin-bottom: 20px;
    }
    .cover-thumbnail-list-2 ul {
        margin-left: -10px;
    }
    .cover-thumbnail-list-2 ul li {
        width: 50%;
        margin-bottom: 20px;
        padding-left: 10px;
    }
    .post-item .title,
    .cover-thumbnail-list-2 ul li .title {
        padding-right: 10%;
        font-size: 1em;
        box-sizing: border-box;
    }
    .post-item .excerpt,
    .cover-thumbnail-list-2 ul li .excerpt {
        height: 2.5rem;
        margin-bottom: 8px;
        padding-right: 10%;
        font-size: 0.75em;
        line-height: 1.25rem;
    }
    .post-header {
        margin: 0 20px;
    }
    .post-item {
        width: 50%;
        padding-left: 0;
        box-sizing: border-box;
    }
    .post-type-thumbnail .post-item {
        border-bottom: none;
    }

    .post-item:nth-child(odd) {
        padding-right: 5px;
    }
    .post-item:nth-child(even) {
        padding-left: 5px;
    }
    .post-type-text .post-item .thum {
        width: 100px;
        height: 100px;
        margin-left: 28px;
    }
    .post-type-text .post-item .thum img {
        width: 100px;
        margin: 0;
    }
    .hgroup.guest {
    margin: 0 20px 25px;
    }
    .hgroup.tag {
    margin: 0 20px;
    }
    #content .tags.section {
        padding: 0 20px;
    }
    .entry-content h2 {
        font-size: 1.125em;
    }
    .entry-content .table-wrap {
        overflow: auto;
        width: 100%;
    }
    .entry-content table {
        width: 680px;
        table-layout: fixed;
        font-size: 0.75em;
    }
    .entry-content img.alignleft,
    .entry-content img.alignright {
        max-width: 100%;
    }
    .related-articles ul {
        margin-left: -10px;
    }
    .related-articles ul li {
        width: 50%;
        margin-bottom: 10px;
        padding-left: 10px;
    }
    .comments {
        margin-bottom: 20px;
    }
    .comments .comment-list {
        margin-bottom:10px;
        border-top: 1px solid #e6e6e6;
    }
    .comments .comment-list ul li {
        padding-bottom:0;
    }
    .comments .comment-list ul li ul {
        border-top: 1px solid #e6e6e6;
    }
    .comments .comment-list ul li ul li {
        padding:20px 0 0 48px;
    }
    .comments .comment-list ul li .author-meta,
    .comments .comment-list ul li ul li .author-meta {
        position:relative;
        top:0;
        left:0;
    }
    .comments .comment-list ul li .author-meta img {
        position: absolute;
        top: 0;
        left: 0;
    }
    .comments .comment-list ul li .author-meta .nickname,
    .comments .comment-list ul li .author-meta .date {
        display: block;
        float: none;
        line-height: 1.5;
    }

    .comments .comment-list ul li .author-meta .nickname .tistoryProfileLayerTrigger {
        margin-bottom:4px;
    }

    .comments .comment-list ul li .author-meta .date {
        margin-left: 0;
        margin-top: 2px;
    }
    .comments .comment-list ul li .author-meta .date::before {
        display: none;
    }

    .comments .comment-list ul li p {
        margin: 14px 0 0;
    }

    .comments .comment-list ul li .control {
        position: relative;
        top: auto;
        right: auto;
        display: block;
        margin: 9px 0 18px -2px;
    }
    .comments .comment-list ul li ul li .control {
        top: auto;
    }
    .comments .comment-form .field {
        width: auto;
        margin: 0;
        padding-right: 80px;
    }
    .comments .comment-form .field .secret {
        float: none;
        position: absolute;
        bottom: 10px;
        right: 0;
    }
    .comments .comment-form .field .secret label {
        line-height: 20px;
    }
    .comments .comment-form input[type=text],
    .comments .comment-form input[type=password] {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    .comments.guest {
        margin-bottom: 20px;
        padding: 0 20px;
    }
    .pagination a {
        margin: 0 5px;
    }
    .layout-float #wrap {
        padding: 0;
    }
    .layout-float #header {
        float: none;
        position: relative;
        z-index: auto;
        width: 100%;
        height: auto;
        padding: 0 10px;
        border-bottom-width: 1px;
        box-sizing: border-box;
    }
    .layout-float #header h1 {
        float: none;
        padding: 20px 0;
        text-align: left;
    }
    .layout-float #header .mobile-menu {
        display: block;
    }
    .layout-float #gnb {
        position: fixed;
        top: 0;
        right: -300px;
        z-index: 600;
        width: 300px;
        height: 100%;
        padding: 60px 0 0;
        background-color: #fff;
        box-sizing: border-box;
        -webkit-transition: right .3s;
        transition: right .3s;
        box-sizing: border-box;
    }
    .layout-float #gnb.on {
        right: 0;
    }
    .layout-float #gnb ul li {
        float: none;
        padding: 0;
        border-top: 1px solid #ebebeb;
        border-bottom: none;
        font-size: 1.125em;
        text-align: left;
    }
    .layout-float #gnb ul li a {
        padding: 19px 30px 12px;
    }
    .layout-float #content {
        padding: 0;
    }
    .layout-float .cover-thumbnail-list-1 ul li {
        padding:0;
    }
    .layout-float #header,
    .layout-float .cover-thumbnail-list-1,
    .layout-float .cover-wide-panel,
    .layout-float .cover-thumbnail-list-2,
    .layout-float .pagination,
    .layout-float #content .inner {
        padding: 0 10px;
    }
    .layout-float .cover-slider {
        padding-bottom: 75%;
    }
    .layout-float .cover-slider .prev {
        left: 10px;
        margin-left: 0;
    }
    .layout-float .cover-slider ul li .text-box .title {
        margin-bottom: 28px;
        padding: 0 30px;
        font-size: 1.5em;
    }
    .layout-float .cover-slider ul li .text-box .title em {
        margin-bottom: 10px;
        font-size: 0.75em;
    }
    .layout-float .cover-thumbnail-list-1 h2,
    .layout-float .cover-wide-panel h2 {
        font-size: 1.5em;
    }
    .layout-float .cover-wide-panel .box {
        margin: -20px 10px 0;
    }
    .layout-float .cover-wide-panel p {
        margin-bottom: 48px;
        padding:0 10px;
        font-size: 0.875em;
        line-height: 2.1428;
    }
    .layout-float .cover-thumbnail-list-2 ul {
        margin-left: -10px;
    }
    .layout-float .cover-thumbnail-list-2 ul li {
        width: 50%;
        padding-left: 10px;
    }
    .layout-float .post-header {
        margin: 0 10px;
    }
    .layout-float .post-item {
        width: 50%;
        padding-left: 0;
    }
    .layout-float .post-item:nth-child(4n+1) {
        padding-left: 0;
    }
    .layout-float .post-item:nth-child(even) {
        padding-left: 5px;
    }
    .layout-float .related-articles ul {
        margin-left: -10px;
    }
    .layout-float .related-articles ul li {
        padding-left: 10px;
    }
    .layout-float #aside {
        padding: 40px 10px;
    }
    .layout-float #aside .sidebar-1,
    .layout-float #aside .sidebar-2,
    .layout-float #aside .sidebar-3,
    .layout-float #aside .search,
    .layout-float #aside .count {
        float: none;
        width: auto;
        padding: 0;
    }
    .layout-float.color-dark #gnb {
        background-color: #141414;
    }
    .layout-float.color-dark #gnb ul li {
        border-color: #333;
    }
    #footer .foot-top {
        padding: 1em 0 2em;
        line-height: 1.6;
    }
    #footer .foot-top .foot-top-wrap > div .title {
        padding: 1em 0 0.5em;
    }
    
    .related-articles {
        margin: 0 auto;
    }
}
@media screen and (max-width:601px) {
    .view-more a {
        padding: 0.8em 2em;
    }	
    /* 메인 슬라이더 */
    .cover-slider-1 li.slick-slide {
        padding-bottom: 0;
        background-size: auto 70vw;
        background-position: 10% top;
        text-align:center;
    }
    .cover-slider-1 li.slick-slide > a {
        position: relative;
        margin-top: 70vw;
    }
    .cover-slider-1 li.slick-slide > a:before {
        content:'';
        display:block;
        position:absolute;
        left: 0;
        top: -10vw;
        width: 100%;
        height: 14vw;
    }
    .cover-slider-1 li.slick-slide > a:after {
        content:'';
        display:block;
        position:absolute;
        left:0;
        top: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
    }
    
    .cover-slider-1 li.slick-slide#slick-slide01,
    .cover-slider-1 li.slick-slide#slick-slide02 {
        text-align:left;
    }
    .cover-slider-1 li.slick-slide#slick-slide00 a:before {
        background-image: linear-gradient(0deg, rgba(30,43,93,1) 10%, rgba(255,255,255,0) 100%);
    }
    .cover-slider-1 li.slick-slide#slick-slide00 a:after {
        background-color: #1e2b5d;
    }
    .cover-slider-1 li.slick-slide#slick-slide01 a:before {
        background-image: linear-gradient(0deg, #847269 40%, rgba(255,255,255,0) 100%);
    }
    .cover-slider-1 li.slick-slide#slick-slide01 a:after {
        background-color: #847269;
    }
    .cover-slider-1 li.slick-slide#slick-slide02 a:before {
        background-image: linear-gradient(0deg, #edebe3 40%, rgba(255,255,255,0) 100%);
    }
    .cover-slider-1 li.slick-slide#slick-slide02 a:after {
        background-color: #edebe3;
    }	
    .cover-slider-1 li.slick-slide#slick-slide03 a:before {
        background-image: linear-gradient(0deg, rgba(251,205,209,1) 70%, rgba(255,255,255,0) 100%);
    }
    .cover-slider-1 li.slick-slide#slick-slide03 a:after {
        background-color: #fbcdd1;
    }
    .cover-slider-1 li.slick-slide a .title {
        position:relative;
        max-width: none;
        width: 90%;
        padding: 0 5% 5em;
        top: auto;
        left: auto;
        transform: none;
    }
    .cover-slider-1 li.slick-slide a .title .slide-content {
        position:relative;
        right: auto;
        top: auto;
        transform: none;
    }
    .cover-slider-1 li.slick-slide#slick-slide00 a .title .slide-content,
    .cover-slider-1 li.slick-slide a .title .slide-content {
        height: 200px;
        margin-top: -12vw
    }
    .cover-slider-1 .slick-slide img {
        max-height: none;
        height: 120px;
        margin-top: 40px;
    }
    
    .hgroup {
        padding: 15em 0 2em;
    }
    
    
    /* 메인 커버 중간 컨텐츠 */
    .cover-special-contents {
        background-color: transparent;
    }
    .cover-special-contents-1 ul li .box,
    .cover-special-contents-1 ul li .thum,
    .cover-special-contents ul li .box,  
    .cover-special-contents ul li .thum {
        display:block;
        width: 100%;
    }
    .cover-special-contents-1 ul li .box, 
    .cover-special-contents ul li .box {
        max-width: 22em;
    }
    .cover-special-contents-1 ul li .excerpt, 
    .cover-special-contents ul li .excerpt {
        max-width: 17em;
    }
    .cover-special-contents-1 ul li {
        display: flex;
        flex-direction: column-reverse;
    }
    .cover-special-contents ul li .box, 
    .cover-special-contents-1 ul li .thum {
        margin-left: 0;
    }
    .cover-special-contents-1 ul li .box,
    .cover-special-contents ul li .box {
        margin-top: 1.5em;
    }
    .cover-thumbnail-list-1 ol {
        display:none;
    }
    .cover-wide-panel-in {
        padding: 10px;
    }
    .cover-wide-panel .slick-prev {
        left: 10px;
    }
    .cover-wide-panel .slick-next {
        right: 10px;
    }
    #footer .foot-top .copy {
        margin-top: 1.5em;
    }
    #footer .foot-bottom .privacy {
        float: none;
    }
    
    .entry-content {
        margin: 5em auto;
    }
}

@media screen and (max-width:450px) {
    .cover-slider-1 li.slick-slide {
        background-size: auto 80vw;
        background-position: 15% top;
    }
    
    .cover-slider-1 li.slick-slide > a {
        margin-top: 80vw;
    }
}


/*** 서브 페이지 ***/


/* 레스틸렌 */
#sub-body #res-exp {
overflow: hidden;
width: 1200px;
margin: 0 auto;
}

@media screen and (max-width: 1200px) {
#sub-body #res-exp {
    width: 90%;
}
}

#sub-body #res-exp .left {
display: inline-block;
vertical-align: top;
width: 45%;
}

@media screen and (max-width: 840px) {
#sub-body #res-exp .left {
    display: block;
    width: 60%;
}
}

@media screen and (max-width: 1200px) {
#sub-body #res-exp .left img {
    max-width: 100%;
}
}

@media screen and (max-width: 840px) {
#sub-body #res-exp .left img {
    display: block;
}
}

#sub-body #res-exp .right {
display: inline-block;
vertical-align: top;
width: 50.5%;
padding-left: 4%;
}

@media screen and (max-width: 840px) {
#sub-body #res-exp .right {
    float: right;
    width: 75%;
    margin-top: 1.5em;
    padding-left: 0;
}
}

@media screen and (max-width: 601px) {
#sub-body #res-exp .right {
    float: none;
    width: 100%;
}
}

#sub-body #res-exp .right .right-img {
max-width: 100%;
}

@media screen and (max-width: 840px) {
#sub-body #res-exp .right .right-img {
    display: block;
}
}

@media screen and (max-width: 601px) {
#sub-body #res-exp .right .right-img {
    float: right;
    width: 75%;
}
}

#sub-body #res-exp .right hr {
display: block;
width: 100%;
border-width: 0;
}

#sub-body #res-exp .right .right-logo {
height: 67px;
margin: 3em 0 2em;
max-height: 100%;
}

@media screen and (max-width: 1200px) {
#sub-body #res-exp .right .right-logo {
    height: 50px;
    margin: 1.5em 0 1em;
}
}

#sub-body #res-exp .right article {
max-width: 415px;
word-break: keep-all;
}

@media screen and (max-width: 1200px) {
#sub-body #res-exp .right article {
    font-size: 90%;
}
}

@media screen and (max-width: 840px) {
#sub-body #res-exp .right article {
    max-width: 340px;
    font-size: 100%;
}
}

#sub-body #res-exp .right article h3 {
padding: 1.2em 0 0.8em;
font-size: 1.33em;
font-weight: 900;
}

@media screen and (max-width: 1200px) {
#sub-body #res-exp .right article h3 {
    padding: 1em 0 0.5em;
}
}

#sub-body #res-exp .right article p {
font-size: 1.07em;
color: #252525;
line-height: 1.3;
}

#sub-body #res-exp .right article p span {
font-weight: 900;
}

#res-history {
margin-top: 10em;
padding-top: 10em;
padding-bottom: 20em;
background-image: url(./images/sub01-bg.jpg);
}

@media screen and (max-width: 840px) {
#res-history {
    padding-top: 7em;
    padding-bottom: 10em;
}
}

#res-history .history-wrap {
position: relative;
width: 980px;
margin: 0 auto;
}

@media screen and (max-width: 1023px) {
#res-history .history-wrap {
    width: 90%;
    word-break: keep-all;
}
}

#res-history .history-wrap .start {
text-align: center;
font-family: 'Montserrat', 'NanumSquare', sans-serif;
font-size: 2.33em;
color: #002d72;
text-transform: uppercase;
}

#res-history .history-wrap .start::after {
content: '';
display: block;
position: absolute;
top: 9.3rem;
left: calc(50% - 0.5px);
width: 1px;
height: calc(100% - 70px);
background-color: #9194a3;
}

@media screen and (max-width: 840px) {
#res-history .history-wrap .start::after {
    top: 4.3rem;
}
}

@media screen and (max-width: 840px) {
#res-history .history-wrap .hi-content {
    text-align: center;
}
}

#res-history .history-wrap .hi-content ul {
width: 100%;
margin-top: 4em;
list-style: none;
}

@media screen and (max-width: 840px) {
#res-history .history-wrap .hi-content ul {
    display: inline-block;
    width: auto;
    max-width: 370px;
    margin: 0 auto;
}
}

#res-history .history-wrap .hi-content ul > li {
position: relative;
width: calc(50% - 5em);
margin-top: -1em;
padding: 1.5em;
min-height: 20px;
background-color: #fff;
    list-style: none;
    font-weight: 900;
}

@media screen and (max-width: 840px) {
#res-history .history-wrap .hi-content ul > li {
    width: calc(100% - 3em);
    margin-top: 5em;
    text-align: left;
}
}

#res-history .history-wrap .hi-content ul > li:nth-child(2n) {
margin-left: calc(50% +  2em);
}

@media screen and (max-width: 840px) {
#res-history .history-wrap .hi-content ul > li:nth-child(2n) {
    margin-left: 0;
}
}

#res-history .history-wrap .hi-content ul > li:nth-child(2n)::before {
left: calc(-2em - 10px);
}

@media screen and (max-width: 840px) {
#res-history .history-wrap .hi-content ul > li:nth-child(2n)::before {
    left: 50%;
}
}

#res-history .history-wrap .hi-content ul > li:nth-child(2n+1) {
margin-right: 50%;
}

@media screen and (max-width: 840px) {
#res-history .history-wrap .hi-content ul > li:nth-child(2n+1) {
    margin-right: 0;
}
}

#res-history .history-wrap .hi-content ul > li:nth-child(2n+1)::before {
right: calc(-2em - 10px);
}

@media screen and (max-width: 840px) {
#res-history .history-wrap .hi-content ul > li:nth-child(2n+1)::before {
    right: auto;
    left: 50%;
}
}

#res-history .history-wrap .hi-content ul > li::before {
content: '';
display: block;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
width: 13px;
height: 13px;
border: 3px solid #fff;
background-color: #002d72;
}

@media screen and (max-width: 840px) {
#res-history .history-wrap .hi-content ul > li::before {
    width: 10px;
    height: 10px;
    top: -3em;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
}
}

#res-history .history-wrap .hi-content ul > li p.year {
font-size: 1.25em;
font-weight: 900;
}

#res-history .history-wrap .hi-content ul > li ol {
margin-top: 0.5em;
padding-left: 1em;
list-style: none;
    font-weight: 400;
}

#res-history .history-wrap .hi-content ul > li ol li {
position: relative;
margin-top: 0.5em;
font-size: 1.1em;
line-height: 1.5;
letter-spacing: -0.5px;
}

#res-history .history-wrap .hi-content ul > li ol li.after::after {
display: inline-block;
position: relative;
height: 25px;
margin-left: 0.5em;
vertical-align: bottom;
}

#res-history .history-wrap .hi-content ul > li ol li.fda::after {
content: url(./images/fda-ico.png);
}

#res-history .history-wrap .hi-content ul > li ol li.ce::after {
content: url(./images/ce-ico.png);
}

#res-history .history-wrap .hi-content ul > li ol li.launch25::after {
    position:absolute;
    top: -0.3em;
content: url(./images/25-ico.png);
}

#res-history .history-wrap .hi-content ul > li ol li::before {
content: '·';
position: absolute;
left: -0.9em;
}

.main-title {
font-size: 2em;
color: #002d72;
font-family: 'Montserrat', 'NanumSquare', sans-serif;
}

/* technology 페이지 */
.technology {
width: 1200px;
margin: 0 auto;
padding-bottom: 20em;
}

@media screen and (max-width: 1200px) {
.technology {
    width: 95%;
    word-break: keep-all;
}
}

@media screen and (max-width: 601px) {
.technology {
    width: 90%;
}
}

.technology > div {
display: inline-block;
vertical-align: top;
}

.technology .left {
width: 49%;
}

@media screen and (max-width: 601px) {
.technology .left {
    width: 100%;
    margin: 2em 0;
}
.technology .left.pc {
    display: none;
}
}

@media screen and (max-width: 1200px) {
.technology .left img {
    max-width: 100%;
}
}

.technology .right {
width: 44%;
padding-left: 5%;
}

@media screen and (max-width: 601px) {
.technology .right {
    width: 100%;
    padding-left: 0;
}
}

.technology .right .tech-des {
margin: 1.35em 0 2.23em;
font-family: 'Montserrat', 'NanumSquare', sans-serif;
color: #aaaaaa;
}

@media screen and (max-width: 1200px) {
.technology .right .tech-des {
    margin: 0 0 1em;
}
}

.technology .right .tech-des02 {
font-size: 1.1em;
}

.technology .right ul {
margin-top: 5em;
list-style: none;
}

@media screen and (max-width: 840px) {
.technology .right ul {
    margin-top: 1em;
}
}

.technology .right ul li {
display: inline-block;
font-size: 1.1em;
vertical-align: top;
}

@media screen and (max-width: 840px) {
.technology .right ul li {
    width: 47%;
}
.technology .right ul li img {
    max-width: 100%;
}
}

.technology .right ul li .image-wrap {
display: inline-block;
position: relative;
border: 3px solid;
}

.technology .right ul li .image-wrap::before {
content: '';
display: block;
position: absolute;
left: -12.5px;
top: -12.5px;
width: 20px;
height: 20px;
border: 5px solid #fff;
border-radius: 20px;
}

.technology .right ul li .image-wrap {
    margin-bottom: 1em;
}

.technology .right ul li:nth-child(1) {
margin-right: 1.5em;
}

@media screen and (max-width: 840px) {
.technology .right ul li:nth-child(1) {
    margin-right: 4%;
}
}

.technology .right ul li:nth-child(1) .image-wrap {
border-color: #1d2e60;
}

.technology .right ul li:nth-child(1) .image-wrap::before {
background-color: #1d2e60;
}

.technology .right ul li:nth-child(2) .image-wrap {
border-color: #7f8143;
}

.technology .right ul li:nth-child(2) .image-wrap::before {
background-color: #7f8143;
}

.technology .right ul li p {
margin-top: 0.5em;
line-height: 1.3;
}

.technology .right ul li p span {
color: #1d2e60;
font-weight: 900;
}

/* 블로그 목록 */
#list-add {
padding: 6.6em 0 17em;
background-color: #e8edfb;
text-align: center;
word-break: keep-all;
}

@media screen and (max-width: 834x) {
#list-add {
    padding: 4em 0 10em;
}
}

@media screen and (max-width: 601px) {
#list-add {
    padding: 3.5em 0 6em;
}
}

#list-add .responsive {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
width: 1200px;
margin: 0 auto;
text-align: left;
}

@media screen and (max-width: 1250px) {
#list-add .responsive {
    display: inline-block;
    width: 95%;
    font-size: 95%;
}
}

@media screen and (max-width: 1024px) {
#list-add .responsive {
    font-size: 90%;
}
}

@media screen and (max-width: 834px) {
#list-add .responsive {
    font-size: 85%;
}
}

#list-add .responsive h4 {
width: 100%;
margin-bottom: 1.2em;
font-size: 2.333em;
font-weight: 900;
color: #002d72;
}

@media screen and (max-width: 834px) {
#list-add .responsive h4 {
    text-align: center;
}
}

#list-add .responsive .left {
display: inline-block;
width: 58.35%;
vertical-align: middle;
}

@media screen and (max-width: 601px) {
#list-add .responsive .left {
    width: 100%;
}
}

#list-add .responsive .left ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
list-style: none;
}
/*
#list-add .responsive .left ul li:nth-child(1) {
width: 54.3%;
}
*/
#list-add .responsive .left ul li:nth-child(2) {
width: 42.8%;
}

#list-add .responsive .left ul li:nth-child(3) {
width: 42.8%;
}

#list-add .responsive .left ul li:nth-child(4) {
width: 54.3%;
}

#list-add .responsive .left img {
margin-bottom: 1em;
max-width: 100%;
}

#list-add .responsive .right {
display: inline-block;
width: calc(100% - 63.35%);
margin-left: 4%;
vertical-align: middle;
}

@media screen and (max-width: 601px) {
#list-add .responsive .right {
    width: 100%;
    /*min-width: ;*/
    margin-left: 0;
    margin-top: 2em;
}
}

#list-add .responsive .right > img {
width: 11em;
}

#list-add .responsive .right P {
padding: 2em 0;
font-size: 1.66em;
font-weight: 700;
color: #454545;
}

@media screen and (max-width: 601px) {
#list-add .responsive .right P {
    padding: 1em 0;
}
}

#list-add .responsive .right ul {
list-style: none;
}

#list-add .responsive .right ul li {
display: inline-block;
margin-right: 1em;
}

@media screen and (max-width: 1024px) {
#list-add .responsive .right ul li {
    width: 55px;
}
}

@media screen and (max-width: 834px) {
#list-add .responsive .right ul li {
    width: 45px;
    margin-right: 0.5em;
}
}

#list-add .responsive .right ul li a {
display: block;
}

#list-add .responsive .right ul li img {
max-width: 100%;
}

/* safety 페이지 */
.safety {
overflow-x: hidden;
width: 100%;
text-align: center;
}

.safety .safety-res {
position: relative;
width: calc(1200px - 14em);
min-height: 600px;
padding: 0 7em;
margin: 0 auto;
text-align: left;
}

@media screen and (max-width: 1250px) {
.safety .safety-res {
    padding: 2em;
}
}

@media screen and (max-width: 1050px) {
.safety .safety-res {
    width: 90%;
    padding: 0;
}
}

@media screen and (max-width: 900px) {
.safety .safety-res {
    min-height: 400px;
}
}

@media screen and (max-width: 601px) {
.safety .safety-res {
    min-height: 250px;
    padding-top: 55vw;
    word-break: keep-all;
}
}

.safety .safety-res img {
max-width: 100%;
}

.safety .safety-res .logo {
width: 165px;
}

.safety .safety-res .sa-title {
padding: 1em 0 0.5em;
font-size: 1.66em;
    font-weight: 700 !important;
}

.safety .safety-res .des {
font-size: 1.2em;
line-height: 1.4;
}

.safety .safety-res .pack {
position: absolute;
top: 0;
right: 7em;
}

@media screen and (max-width: 1250px) {
.safety .safety-res .pack {
    right: 2em;
}
}

@media screen and (max-width: 1050px) {
.safety .safety-res .pack {
    right: 0;
    width: 60%;
}
}

@media screen and (max-width: 700px) {
.safety .safety-res .pack {
    top: 7em;
}
}

@media screen and (max-width: 601px) {
.safety .safety-res .pack {
    top: 0em;
    right: auto;
    left: 50%;
    width: 80%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
}

.safety .certi {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
width: 1200px;
margin: 0 auto;
}

@media screen and (max-width: 1250px) {
.safety .certi {
    width: 90%;
}
}

@media screen and (max-width: 601px) {
.safety .certi {
    display: block;
}
}

.safety .certi > div {
position: relative;
width: 50%;
padding: 7.4em 8.8em 14.66em;
text-align: center;
}

@media screen and (max-width: 1250px) {
.safety .certi > div {
    padding: 6em 2em;
}
.safety .certi > div img {
    max-width: 100%;
}
}

@media screen and (max-width: 601px) {
.safety .certi > div {
    width: 100%;
    padding: 3em 0;
}
}

.safety .certi > div::before {
content: '';
display: block;
position: absolute;
top: 0;
z-index: -1;
width: 60vw;
height: 100%;
}

@media screen and (max-width: 601px) {
.safety .certi > div::before {
    width: 120vw;
}
}

.safety .certi > div .body-img {
margin: 3em 0 2em;
}

.safety .certi > div .certi-en {
font-size: 1.3334em;
font-weight: 700;
font-family: 'Montserrat', 'NanumSquare', sans-serif;
}

.safety .certi > div .certi-kr {
display: inline-block;
padding: 1em 2em;
margin-top: 1em;
border-radius: 2em;
background-color: #fff;
font-size: 1.2em;
}

.safety .certi .left::before {
right: 0;
background-color: #e8edfb;
}

@media screen and (max-width: 601px) {
.safety .certi .left::before {
    right: -10vw;
}
}

.safety .certi .right::before {
left: 0;
background-color: #e3e4e7;
}

@media screen and (max-width: 601px) {
.safety .certi .right::before {
    left: -10vw;
}
}

/* 제품 */
#products {
width: 1200px;
margin: 0 auto;
}

@media screen and (max-width: 1250px) {
#products {
    width: 90%;
}
}

#products h3 {
position: relative;
text-align: center;
}

#products h3::before {
content: '';
display: block;
position: absolute;
top: 50%;
left: 0;
z-index: -1;
width: 100%;
height: 2px;
background-color: #9194a3;
}

#products h3 span {
display: inline-block;
padding: 1em;
background-color: #fff;
font-size: 2.34em;
font-family: 'Montserrat', 'NanumSquare', sans-serif;
color: #1d2e60;
}

@media screen and (max-width: 840px) {
    #products h3 span {
        font-size: 1.84em;
    }
}

#products h4 {
margin: 1em 0 0.2em;
font-size: 1.34em;
font-family: 'Montserrat', 'NanumSquare', sans-serif;
font-weight: 900;
}

#products p.des {
font-size: 0.93em;
font-weight: 300;
}

@media screen and (max-width: 840px) {
    #products p.des {
        font-size: 1.1em;
    }
}

#products ul, #products ol {
list-style: none;
}

#products ul > li {
position: relative;
height: 420px;
width: 380px;
margin-bottom: 5em;
text-align: center;
}

@media screen and (max-width: 840px) {
#products ul > li {
    width: 47%;
}
}

@media screen and (max-width: 601px) {
#products ul > li {
    width: 100%;
    height: auto;
}
}

#products ul > li::after {
content: '';
display: block;
position: absolute;
left: 0;
bottom: 0;
z-index: -1;
width: 100%;
height: 350px;
border-radius: 0 0 1.5em 1.5em;
background-color: crimson;
}

@media screen and (max-width: 601px) {
#products ul > li::after {
    height: 85%;
}
}

#products ul > li img {
margin-left: 1.2em;
max-width: 100%;
}

@media screen and (max-width: 840px) {
#products ul > li img {
    margin-left: 0.5em;
}
}

#products ul > li .text-wrap {
padding: 0 2em;
text-align: left;
}

#products ul > li ol {
max-width: 275px;
margin-top: 2.6em;
}

@media screen and (max-width: 601px) {
#products ul > li ol {
    margin: 2.6em 0 4em;
}
}

#products ul > li ol li {
position: relative;
padding-left: 10px;
margin-top: 0.5em;
word-break: keep-all;
font-size: 1.1em;
font-weight: 700;
line-height: 1.4;
}

@media screen and (max-width: 840px) {
    #products ul > li ol li {
    margin-top: 0.2em;
        font-weight: 500;
}
}

#products ul > li ol li::before {
content: '·';
display: inline-block;
position: absolute;
left: 0;
}

#products .nasha ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-ms-flex-pack: distribute;
    justify-content: space-around;
width: 800px;
margin: 2em auto;
}

@media screen and (max-width: 840px) {
#products .nasha ul {
    width: 100%;
}
}

@media screen and (max-width: 601px) {
#products .nasha ul > li {
    max-width: 380px;
}
}

#products .nasha ul > li:nth-child(1)::after {
background-color: #e8edfb;
}

#products .nasha ul > li:nth-child(2)::after {
background-color: #ebf2f3;
}


#products .nasha ul > li.or::after {
background-color: #f6e9de;
}

#products .obt ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-ms-flex-pack: distribute;
    justify-content: space-around;;
    width: 800px;
margin: 2em auto 10em;
}

@media screen and (max-width: 1250px) {
#products .obt ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap
}
}

@media screen and (max-width: 840px) {
#products .obt ul {
    width: 100%;
}
}

#products .obt ul > li {
max-width: 380px;
}

#products .obt ul > li:nth-child(1)::after {
background-color: #f0eff2;
}

#products .obt ul > li:nth-child(2)::after {
background-color: #f1f7f7;
}

#products .obt ul > li:nth-child(3)::after {
background-color: #f4f4f4;
}

#products .obt ul > li:nth-child(4)::after {
background-color: #faf5f8;
}

.cookie {
width: 61%;
margin: 0 auto;
padding-bottom: 20em;
line-height: 1.4;
word-break: keep-all;
}
@media screen and (max-width: 1250px) {
.cookie {
    width: 90%;
}
}
.cookie h4 {
margin: 2em 0 1.5em;
font-size: 1.334em;
font-weight: 900;
}
.cookie p {
font-size: 1.05em;
letter-spacing: -0.01em;
font-weight: 400;
text-indent: 1em;
}
.cookie ul {
padding-left: 3em;
margin: 1.875em 0;
}
.cookie ul li {
font-size: 1.05em;
    list-style: disc;
}
.cookie a {
color: #002d72;
text-decoration: underline;
-webkit-text-stroke: #002d72;
}

#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table {
    margin-top: 0.5em !important;
}

#onetrust-consent-sdk #onetrust-banner-sdk {transform: translateX(-50%);    left: 50%;}