@charset "utf-8";

html {
    height: 100%;
}

body, html {
    padding: 0;
    margin: 0;
    -ms-overflow-style: scrollbar;
}

/* 기존 : #304c7a */
body {
    font-size: 17px;
    color: #333;
    font-weight: 400;    /* 모바일에서 글자 크기 깨짐 방지 */
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    font-family: "Open Sans", 'Noto Sans KR', sans-serif;
    word-break: keep-all;
}

/* background-image fixed 일때 IE에서 화면 떨림 방지 */

/*Edge*/
@supports (-ms-accelerator:true) {
    html {
        overflow: hidden;
        height: 100%;
    }

    body {
        overflow: auto;
        height: 100%;
    }

}

/*Ie 10/11*/
@media screen and (-ms-high-contrast:active), (-ms-high-contrast:none) {
    html {
        overflow: hidden;
        height: 100%;
    }

    body {
        overflow: auto;
        height: 100%;
    }

}

html, h1, h2, h3, h4, h5, h6, form, fieldset, img {
    margin: 0;
    padding: 0;
    border: 0;
}

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

a:active, a:hover, a:focus {
    text-decoration: none;
}

::-moz-selection {
    color: #fff;
    background: #d93920;
}

::selection {
    color: #fff;
    background: #d93920;
}

body {
    animation: skyfadein .7s ease-out none;
    -webkit-animation: skyfadein .7s ease-out none
}

@keyframes skyfadein {
    from {
        opacity: 0;
        filter: alpha(opacity=0)
    }

    to {
        opacity: 1;
        filter: alpha(opacity=100)
    }

}

@-webkit-keyframes skyfadein {
    from {
        opacity: 0;
        filter: alpha(opacity=0)
    }

    to {
        opacity: 1;
        filter: alpha(opacity=100)
    }

}

@-webkit-keyframes fixed_menu_animation {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }

}

@keyframes fixed_menu_animation {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }

}

#main-nav {
    position: fixed;
    right: 26px;
    top: 50%;
    margin-top: -139px;
}

#main-nav > li {
    text-align: center;
}

#main-nav > li > a {
    color: #bcbcbc;
    font-family: "Montserrat";
    font-weight: 700;
    font-size: 13px;
}

#main-nav > li > span {
    display: block;
    width: 1px;
    height: 27px;
    background: #bcbcbc;
    margin: 17px auto;
}

#main-nav > li.active a {
    color: #d93920;
}

/* 메인 하단 휠 애니메이션 */
.main-wheel-simbol {
    width: 100%;
    position: absolute;
    bottom: 12px;
    left: 0;
    display: block;
}

.main-wheel-simbol.message {
    width: auto;
    bottom: 3%;
    left: auto;
    right: -50px;
}

.circle-animation {
    height: 86px;
    width: 86px;
    margin: 0px auto;
}

.circle-animation img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -23px 0 0 -23px;
    z-index: 8
}

.circle-animation.inquiry {
    width: 106px;
    height: 106px;
}

.circle-animation.inquiry img {
    margin: -31px 0 0 -31px;
}

@keyframes circle-scale-multiple {
    0% {
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
        opacity: 0.3;
    }

    5% {
        opacity: 0.8;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

}

@-webkit-keyframes circle-scale-multiple {
    0% {
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
        opacity: 0.3;
    }

    5% {
        opacity: 0.8;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

}

.circle-scale-multiple {
    position: relative;
}

.circle-scale-multiple > div:nth-child(2), .circle-scale-multiple2 > div:nth-child(2) {
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.circle-scale-multiple > div:nth-child(3), .circle-scale-multiple2 > div:nth-child(3) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.circle-scale-multiple > div {
    border-radius: 100%;
    position: absolute;
    top: 0px;
    opacity: 0;
    margin: 0;
    width: 86px;
    height: 86px;
    border: 2px solid #fff;
    -webkit-animation: circle-scale-multiple 3s 0s linear infinite;
    animation: circle-scale-multiple 3s 0s linear infinite;
}

.circle-scale-multiple2 > div {
    border-radius: 100%;
    position: absolute;
    bottom: 6px;
    right: 10px;
    opacity: 0;
    margin: 0;
    width: 78px;
    height: 78px;
    border: 2px solid #fff;
    -webkit-animation: circle-scale-multiple 3s 0s linear infinite;
    animation: circle-scale-multiple 3s 0s linear infinite;
}

.circle-scale-multiple.inquiry > div {
    width: 106px;
    height: 106px;
    border: 2px solid #f1b524;
}

/*
@media all and (max-width:1220px){
.main-wheel-simbol{bottom:10%;}
.main-wheel-simbol.sitemap{right:3%;}
}

@media all and (max-width:768px){
.main-wheel-simbol{bottom:3%;}
.circle-animation img{margin:-22px 0 0 -22px;}
}

@media all and (max-width:480px){
.main-wheel-simbol{bottom:5%;}
.circle-animation{height:80px; width:80px; margin:0px auto;}
.circle-animation img{width:40px; margin:-18px 0 0 -18px;}
.circle-scale-multiple > div{width:80px; height:80px;}
}
*/

/* 섹션 1 시작 */

/*#section0 {
    background: #fff url(/images/main_bg_sec_1.jpg) top center;
    background-size: cover;
}
*/
#section1 {
    background: #fff url(/images/main_bg_sec_2.jpg) top center;
    background-size: cover;
}

#section2 {
    background: #fff url(/images/main_bg_sec_3.jpg) top center;
    background-size: cover;
}

.main-logo {
    position: absolute;
    top: 39px;
    left: 59px;
    width: 395px;
    height: 33px;
    z-index: 200;
}

.section1_polygon {
    width: 1200px;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    height: 724px;
    margin: -362px 0 0 -600px;
    overflow: hidden
}

.section1_polygon > ul {
    position: relative;
    width: 724px;
    height: 724px;
    margin: 0 auto;
    overflow: hidden
}

.section1_polygon > ul > li {
    position: absolute;
    left: 0;
    top: 0;
    width: 724px;
    height: 724px;
    text-align: center;
    line-height: 724px;
}

.section1_polygon > ul > li.polygon1 > img {
    transform: rotate(90deg);
    animation: rotate_polygon 80s linear none 0s infinite
}

.section1_polygon > ul > li.polygon2 > img {
    transform: rotate(0deg);
    animation: rotate_polygon2 100s linear none 0s infinite
}

.section1_polygon > ul > li.polygon3 > img {
    transform: rotate(0deg);
    animation: rotate_polygon 120s linear none 0s infinite
}

@keyframes rotate_polygon {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }

}

@keyframes rotate_polygon2 {
    from {
        transform: rotate(360deg)
    }

    to {
        transform: rotate(0deg)
    }

}

.main-section1-title-wrap {
    position: absolute;
    z-index: 1;
    left: 42%;
    margin-left: -350px;
    top: 30%;
}

/* .main-section1-title-wrap {
    position: absolute;
    z-index: 3;
    left: 50%;
    margin-left: -587px;
    top: 30%;
} */

.main-section1-title-wrap li {
    text-align: center;
}

.main-section1-title-wrap li.second {
    margin-top: 40px;
	margin-right: -55px;
}

.main-section1-title-wrap li.third {
    margin-top: 130px;
}

/********************************************
사이드바
*********************************************/
#main-menu {
    display: none;
    z-index: 1;
}

#main-menu .nav-open {
    position: fixed;
    top: 23px !important;
    height: 48px !important;
    width: 57px;
    z-index: 99;
}

#main-menu.left .nav-open {
    left: 5px !important;
    right: inherit !important;
}

#main-menu.right .nav-open {
    left: inherit !important;
    right: 25px !important;
}

/********************************************
메뉴
*********************************************/
#main-menu.left .burger-wrap {
    margin: 10px 0 0 10px;
}

#main-menu.right .burger-wrap {
    margin: 10px 10px 0 0;
}

.menu-burger {
    width: 40px;
    height: 22px;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.menu-burger:hover {
    height: 38px;
    margin-top: -8px;
    -webkit-transition: all 0.3s linear;
    -webkit-transform: rotate(360deg);
    -moz-transition: all 0.3s linear;
    -moz-transform: rotate(360deg);
    -ms-transition: all 0.3s linear;
    -ms-transform: rotate(360deg);
    transition: all 0.3s linear;
    transform: rotate(360deg);
    cursor: pointer;
}

.menu-burger .menu1 {
    width: 40px;
    height: 4px;
    margin-bottom: 5px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.menu-burger:hover .menu1 {
    -webkit-transition: all 0.3s linear;
    -webkit-transform: rotate(-45deg);
    -moz-transition: all 0.3s linear;
    -moz-transform: rotate(-45deg);
    -ms-transition: all 0.3s linear;
    -ms-transform: rotate(-45deg);
    transition: all 0.3s linear;
    transform: rotate(-45deg);
    width: 25px;
    margin-left: -2px;
    margin-top: 8px;
    margin-bottom: 5px;
}

.menu-burger .menu2 {
    width: 40px;
    height: 4px;
}

.menu-burger:hover .menu2 {
    border-radius: 4px;
}

.menu-burger .menu3 {
    width: 40px;
    height: 4px;
    margin-top: 5px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.menu-burger:hover .menu3 {
    -webkit-transition: all 0.3s linear;
    -webkit-transform: rotate(45deg);
    -moz-transition: all 0.3s linear;
    -moz-transform: rotate(45deg);
    -ms-transition: all 0.3s linear;
    -ms-transform: rotate(45deg);
    transition: all 0.3s linear;
    transform: rotate(45deg);
    width: 25px;
    margin-left: -2px;
    margin-top: 5px;
}

#main-menu.right .menu-burger:hover .menu1 {
    -webkit-transition: all 0.3s linear;
    -webkit-transform: rotate(45deg);
    -moz-transition: all 0.3s linear;
    -moz-transform: rotate(45deg);
    -ms-transition: all 0.3s linear;
    -ms-transform: rotate(45deg);
    transition: all 0.3s linear;
    transform: rotate(45deg);
    margin-left: 17px;
}

#main-menu.right .menu-burger:hover .menu3 {
    -webkit-transition: all 0.3s linear;
    -webkit-transform: rotate(-45deg);
    -moz-transition: all 0.3s linear;
    -moz-transform: rotate(-45deg);
    -ms-transition: all 0.3s linear;
    -ms-transform: rotate(-45deg);
    transition: all 0.3s linear;
    transform: rotate(-45deg);
    margin-left: 17px;
}

/* ===== 미드나이트 ===== */
.nav-open .midnightHeader.default .menu-burger .menu1, .nav-open .midnightHeader.default .menu-burger .menu2, .nav-open .midnightHeader.default .menu-burger .menu3 {
    background-color: #d93920;
}

.nav-open .midnightHeader.white .menu-burger .menu1, .nav-open .midnightHeader.white .menu-burger .menu2, .nav-open .midnightHeader.white .menu-burger .menu3 {
    background-color: #fff;
}

/********************************************
닫기 메뉴
*********************************************/
#main-menu .nav-close {
    position: absolute;
    top: 0;
    left: 0;
}

#main-menu.right .nav-close {
    left: inherit;
    right: 0;
}

.menu-close {
    height: 30px;
    margin: 20px 0 0 20px;
    overflow: hidden;
}

#main-menu.right .menu-close {
    margin: 34px 20px 0 0;
}

.menu-close .menu1 {
    width: 30px;
    height: 4px;
    margin-top: 13px;
    background-color: #878787;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

.menu-close .menu2 {
    width: 30px;
    height: 4px;
    margin-top: -4px;
    background-color: #878787;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

.menu-close:hover .menu1, .menu-close:hover .menu2 {
    background-color: #fff;
}

/********************************************
네이게이션 바
*********************************************/
#main-menu .sidebar-nav {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.64);
    position: fixed;
    width: 343px;
    background: #212121;
    z-index: 99999;
}

#main-menu.left .sidebar-nav {
    top: 0;
    left: 0;
    bottom: 0;
}

#main-menu.right .sidebar-nav {
    top: 0;
    right: 0;
    bottom: 0;
}

.nav-inner-wrap {
    position: relative;
    height: 92vh;
    overflow: hidden;
    overflow-y: auto;
}
.country-wrap {
    height:8vh;
}

/* ===== Logo ===== */
.logo {
    height: 198px;
    padding: 30px;
    text-align: center;
}

.logo a img {
    max-width: 100%;
    height: auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* ===== Navigation Menu ===== */
#main-menu .nav-menu {
    list-style: none;
    padding: 0;
    margin-top: 70px;
}

#main-menu .nav-menu li {
    position: relative;
    border-top: #303030 solid 1px;
}

#main-menu .nav-menu li:last-child {
    border-bottom: #303030 solid 1px;
}

#main-menu .nav-menu li a, #main-menu .nav-menu li em {
    display: block;
    font-family: "Montserrat", "Noto Sans KR";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    color: #fff;
    text-decoration: none;    /*text-transform: uppercase;*/
    padding: 13px 16px;
    cursor: pointer;
    letter-spacing: -1px;
    -webkit-transition: color 0.65s ease-in-out;
    -moz-transition: color 0.65s ease-in-out;
    -ms-transition: color 0.65s ease-in-out;
    transition: color 0.65s ease-in-out;
}

#main-menu .nav-menu li:hover a {
    color: #fff;
}

#main-menu .nav-menu li span {
    width: 60px;
    height: 61px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #404040;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -ms-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

#main-menu .nav-menu li:hover span {
    background-color: #606060;
}

#main-menu .nav-menu li span:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 14px;
    height: 2px;
    margin-top: -1px;
    margin-right: -7px;
    background-color: #878787;
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -ms-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

#main-menu .nav-menu li span:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 14px;
    height: 2px;
    margin-top: -1px;
    margin-right: -7px;
    background-color: #878787;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -ms-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

#main-menu .nav-menu li:hover span:before, #main-menu .nav-menu li:hover span:after {
    background-color: #fff;
}

#main-menu .nav-menu li:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    width: 0;
    background-color: #404040;
    z-index: -1;
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -ms-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

#main-menu .nav-menu li:hover:after {
    width: 100%;
}

.dropdown-menu > a {
    padding: 13px 60px 13px 30px !important;
}

.dropdown-menu ul {
    list-style: none;
    padding-left: 20px;
    border-top: #303030 solid 1px;
    background-color: #1b1b1b;
}

.dropdown-menu ul li:first-child {
    border-top: none !important;
}

.dropdown-menu ul li:last-child {
    border-bottom: none !important;
}

.dropdown-menu ul li a {
    text-transform: capitalize !important;
    -webkit-transition: color 0.3s ease-in-out !important;
    -moz-transition: color 0.3s ease-in-out !important;
    -ms-transition: color 0.3s ease-in-out !important;
    transition: color 0.3s ease-in-out !important;
}

.dropdown-menu ul li, .dropdown-menu ul ul {
    border-top: #303030 solid 1px !important;
}

.dropdown-menu ul ul ul {
    padding: 0;
}

.dropdown-menu:hover ul li a, .dropdown-menu.active ul li a {
    color: #fff !important;
}

.dropdown-menu > ul > li:hover > a, .dropdown-menu > ul > li.active > a {
    color: #D93920 !important;
}

.dropdown-menu:hover ul li span {
    background-color: #404040 !important;
}

.dropdown-menu > ul > li:hover > span {
    background-color: #606060 !important;
}

.dropdown-menu:hover ul li span:before, .dropdown-menu:hover ul li span:after {
    background-color: #878787 !important;
}

.dropdown-menu > ul > li:hover > span:before, .dropdown-menu > ul > li:hover > span:after {
    background-color: #fff !important;
}

#main-menu .nav-menu li.active a {
    color: #fff;
}

#main-menu .nav-menu li.active:after {
    width: 100%;
}

#main-menu .nav-menu li.active > span {
    background-color: #606060 !important;
}

#main-menu .nav-menu li.active > span:before, #main-menu .nav-menu li.active > span:after {
    background-color: #fff !important;
}

/* ------------------------------- */
.main-sec-2-wrap, .main-sec-3-wrap {
    width: 1120px;
    height: 807px;
    margin: 0 auto;
    text-align: center;
}

.main-sec-2-wrap .s2-1 {
    margin-top: 72px;
}

.main-sec-2-wrap .s2-2 {
    margin-top: 60px;
    font-family: "Nanum Square";
    font-size: 27px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 1);
}

.main-sec-2-wrap .s2-3-wrap {
    margin-top: 56px;
}

.main-sec-2-wrap .s2-3-wrap > ul {
    width: 533px;
    height: 360px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.main-sec-2-wrap .s2-3-wrap .s2-3-1 {
    float: left;
}

.main-sec-2-wrap .s2-3-wrap .s2-3-2 {
    float: right;
}

.main-sec-2-wrap .s2-3-wrap > ul .image {
    transition: all .7s;
    height: 360px;
    overflow: hidden;
}

.main-sec-2-wrap .s2-3-wrap .s2-3-1 .image {
    background: url('/images/s2-3-1-bg.jpg') center center;
    background-size: cover;
}

.main-sec-2-wrap .s2-3-wrap .s2-3-2 .image {
    background: url('/images/s2-3-2-bg.jpg') center center;
    background-size: cover;
}

.main-sec-2-wrap .s2-3-wrap ul:hover .image {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.main-sec-2-wrap .s2-3-wrap .linebox {
    content: " ";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 1s;
}

.main-sec-2-wrap .s2-3-wrap > ul:hover .txt-wrapper {
    background-color: rgba(217, 57, 32, 0.4);
}

.main-sec-2-wrap .s2-3-wrap > ul:hover .linebox {
    border: 1px solid rgba(255, 255, 255, 1);
}

.main-sec-2-wrap .s2-3-wrap .txt-wrapper {
    position: absolute;
    top: 0;
    transition: all 1s;
}

.main-sec-3-wrap .s3-1 {
    margin-top: 80px;
    font-size: 46px;
    font-family: "Nanum Square";
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .6);
}

.main-sec-3-wrap .s3-2 {
    width: 100%;
    clear: both;
}

.main-sec-3-wrap .s3-2 > div {
    width: 50%;
    float: left;
    text-align: center;
}

.main-sec-3-wrap .part1, .main-sec-3-wrap .part2 {
    margin-top: 80px;
}

.main-sec-3-wrap .part3, .main-sec-3-wrap .part4 {
    margin-top: 60px;
}

.main-sec-3-wrap .s3-2 > div > em {
    font-style: normal;
    font-size: 48px;
    letter-spacing: -1px;
    color: #000;
    font-family: "Montserrat";
    font-weight: 500;
}

.main-sec-3-wrap .s3-2 > div > em.korean {
    font-size: 29px;
    letter-spacing: -2px;
    font-family: "Noto Sans KR";
    font-weight: 700;
}

.main-sec-3-wrap .s3-2 > div > em > var {
    font-size: 65px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    color: #d93920;
    width: 142px;
    height: 69px;
    display: inline-block;
    text-align: right;
}

.main-sec-3-wrap .s3-2 > div > p {
    color: #333;
    font-size: 24px;
    font-family: Roboto, "Noto Sans KR";
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.5px;
}

.main-sec-3-wrap .s3-2 > div.part3 {
    padding-top: 33px;
}

.main-sec-3-wrap .s3-2 > div.part4 {
    padding-left: 10px;
}

.main-sec-3-wrap .s3-2 > div.part3 > em > span {
    color: #0c5b2d;
}

.main-sec-3-wrap .s3-2 > div > p.korean {
    padding-top: 20px;
}

.main-sec-4-wrap {
    margin: 0 auto;
    height: 100%;
    padding-top: 93px;
}

#sub_contents h2.sub-title1 {
    padding-left: 11px;
    line-height: 20px;
    letter-spacing: -1px;
    border-left: 5px solid #d93920;
    vertical-align: middle;
    font-family: "Open Sans", "Noto Sans KR";
}

.main-sec-4-wrap h2 {
    color: #d93920;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 23px;
    padding-left: 20px;
}

.main-sec-4-wrap h2 > span {
    color: #ff8601;
}

.main-sec-4-wrap .contents {
    margin-top: 29px;
}

.main-sec-4-wrap .contents > div {
    cursor: pointer;
    overflow: hidden;
    height: 620px;
}

.main-sec-4-wrap .contents > div > ul .image {
    transition: all .7s;
    height: 620px;
    overflow: hidden;
}

.main-sec-4-wrap .s4-1-1 .image {
    background: url('/images/s4-1.jpg') top left;
    background-size: cover;
}

.main-sec-4-wrap .s4-1-2 .image {
    background: url('/images/s4-2.jpg') top left;
    background-size: cover;
}

.main-sec-4-wrap .s4-1-3 .image {
    background: url('/images/s4-3.jpg') top left;
    background-size: cover;
}

.main-sec-4-wrap .contents > div > ul:hover .image {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.main-sec-4-wrap .contents .txt-wrapper {
    position: absolute;
    top: 0;
    padding-left: 37px;
    padding-top: 68px;
}

.main-sec-4-wrap .contents .txt-wrapper * {
    color: #fff;
}

.main-sec-4-wrap .contents .txt-wrapper p {
    font-size: 30px;
    line-height: 130%;
    letter-spacing: -1px;
    height: 65px;
}

.main-sec-4-wrap .contents .txt-wrapper em {
    display: inline-block;
    margin-top: 101px;
    font-style: normal;
    transition: all 1s;
    position: relative;
}

.main-sec-4-wrap .contents .txt-wrapper em strong {
    font-size: 20px;
    font-weight: 500;
    font-family: "Noto Sans korean";
}

.main-sec-4-wrap .contents .txt-wrapper em::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: all .5s ease-out;
}

.main-sec-4-wrap .contents > div:focus .txt-wrapper em::after, .main-sec-4-wrap .contents > div:hover .txt-wrapper em::after {
    width: 100%;
}

.main-sec-4-wrap .contents .txt-wrapper em::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: all .5s ease-out;
}

.main-sec-4-wrap .copyright-wrap {
    background: #f2f3f3;
    height: 14%;
    bottom: 0;
    position: absolute;
    width: 100%;
}

.main-sec-4-wrap .copyright {
    color: #555555;
    font-size: 14px;
    padding: 20px 0;
    letter-spacing: -0.5px;
}

.main-sec-4-wrap .copyright > div {
    float: left;
}

.line-ani {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    margin: 10px;
    overflow: hidden;
    border: 0 none;
    line-height: 1.5;
}

.line-ani-top {
    content: '';
    display: inline-block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    opacity: 0;
    transition: all .5s ease-out;
    border: 0 none;
    line-height: 1.5;
}

.line-ani-bottom {
    content: '';
    display: inline-block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    opacity: 0;
    transition: all .5s ease-out;
    border: 0 none;
    line-height: 1.5;
}

.main-sec-4-wrap .contents > div > ul:hover .line-ani-top {
    width: 100%;
    opacity: 1;
    transition: all .5s ease-in-out;
    border: 0 none;
    line-height: 1.5;
}

.main-sec-4-wrap .contents > div > ul:hover .line-ani-bottom {
    width: 100%;
    opacity: 1;
    transition: all .5s ease-in-out;
    border: 0 none;
    line-height: 1.5;
}

.line-ani-right {
    content: '';
    display: inline-block;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 1px;
    height: 0;
    background: #fff;
    opacity: 0;
    transition: all .5s ease-out;
    border: 0 none;
    line-height: 1.5;
}

.line-ani-left {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    z-index: 1;
    width: 1px;
    height: 0;
    background: #fff;
    opacity: 0;
    transition: all .5s ease-out;
}

.main-sec-4-wrap .contents > div > ul:hover .line-ani-right {
    height: 100%;
    opacity: 1;
    transition: all .5s ease-in-out;
}

.main-sec-4-wrap .contents > div > ul:hover .line-ani-left {
    height: 100%;
    opacity: 1;
    transition: all .5s ease-in-out;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt70 {
    margin-top: 50px !important;
}

.line01 {
    display: block;
    width: 100%;
    height: 1px;
    margin: 30px auto;
    background: #ddd;
}

.line02 {
    display: block;
    width: 1140px;
    height: 1px;
    margin: 35px auto;
    background: #eee;
}

.line03 {
    display: block;
    width: 1140px;
    height: 1px;
    margin: 5px auto;
    background: #eee;
}

.line05 {
    display: block;
    width: 100%;
    height: 1px;
    background: #eee;
}

.line06 {
    display: block;
    width: 1140px;
    height: 1px;
    margin: 55px auto;
    background: #eee;
}

#sub_contents .sub_visual_area {
    display: table;
    width: 100%;
    height: 650px;
    min-width: 1170px;
}

#sub_contents .sub_visual_area .title {
    display: table-cell;
    text-align: center;
    font-size: 42px;
    color: #333;
    font-weight: 500;
    vertical-align: middle;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-family: "Open Sans", "Daum"
}

#sub_contents .sub_visual_area .white {
    color: #fff;
    text-shadow: 2px 2px 11px rgba(0, 0, 0, .5);
}

.sub_visual_aboutus {
    background: #fff url('/images/sub_visual_aboutus.jpg') no-repeat center top;
    background-attachment: fixed;
}

.sub_visual_contact {
    background: #fff url('/images/sub_visual_contact.jpg') no-repeat center top;
    background-attachment: fixed;
}

.sub_visual_recruitment {
    background: #fff url('/images/sub_visual_recruitment.jpg') no-repeat center top;
    background-attachment: fixed;
}

.sub_visual_technical {
    background: #fff url('/images/sub_visual_technical.jpg') no-repeat center top;
    background-attachment: fixed;
}

.sub_visual_innoxync {
    background: #fff url('/images/sub_visual_innoxync.jpg') no-repeat center top;
    background-attachment: fixed;
}

.sub_visual_gauce {
    background: #fff url('/images/sub_visual_gauce.jpg') no-repeat center top;
    background-attachment: fixed;
}

.sub_visual_shift_green_off {
    background: #fff url('/images/sub_visual_shift_green_off.jpg') no-repeat center top;
    background-attachment: fixed;
}

.sub_visual_shift_chart {
    background: #fff url('/images/sub_visual_shift_chart.jpg') no-repeat center top;
    background-attachment: fixed;
}

.sub_visual_shift_toinb {
    background: #fff url('/images/sub_visual_shift_toinb.jpg') no-repeat center top;
    background-attachment: fixed;
}

.sub_visual_xena {
    background: #fff url('/images/sub_visual_xena.jpg') no-repeat center top;
    background-attachment: fixed;
}

.sub_visual_fta {
    background: #fff url('/images/sub_visual_fta.jpg') no-repeat center top;
    background-attachment: fixed;
}

.sub_visual_reference {
    background: #fff url('/images/sub_visual_reference.jpg') no-repeat center top;
    background-attachment: fixed;
}
.sub_visual_qna {
    background: #fff url('/images/sub_visual_qna.jpg') no-repeat center top;
    background-attachment: fixed;
}
.sub_visual_eng_qna {
    background: #fff url('/images/sub_visual_qna.jpg') no-repeat center top;
    background-attachment: fixed;
}
.sub_visual_chn_qna {
    background: #fff url('/images/sub_visual_qna.jpg') no-repeat center top;
    background-attachment: fixed;
}
.sub_visual_news {
    background: #fff url('/images/sub_visual_news.jpg') no-repeat center top;
    background-attachment: fixed;
}
.sub_visual_eng_news {
    background: #fff url('/images/sub_visual_news.jpg') no-repeat center top;
    background-attachment: fixed;
}
.sub_visual_chn_news {
    background: #fff url('/images/sub_visual_news.jpg') no-repeat center top;
    background-attachment: fixed;
}
.sub_visual_notifications {
    background: #fff url('/images/sub_visual_notifications.jpg') no-repeat center top;
    background-attachment: fixed;
}
.sub_visual_eng_notifications {
    background: #fff url('/images/sub_visual_notifications.jpg') no-repeat center top;
    background-attachment: fixed;
}
.sub_visual_chn_notifications {
    background: #fff url('/images/sub_visual_notifications.jpg') no-repeat center top;
    background-attachment: fixed;
}
.aboutus-inner1 {
    padding: 60px 0;
    text-align: center;
    font-size: 25px;
    font-family: "Nanum Square"; 

}


.aboutus-inner2 h3 {
    font-weight: 700;
    font-size: 28px;
    padding: 0 0 14px;
    font-family: "Noto Sans KR"
}

.aboutus-inner2 {
    font-size: 18px;
    line-height: 28px;
}

.aboutus-inner3 {
    height: 400px;
    background-color: #afafaf;
}

.sec-margin {
    margin-top: 60px;
}

.aboutus-inner3 .ceo-box-wrap {
    padding-top: 70px;
}

.aboutus-inner3 .ceo-box-wrap h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    font-family: "Roboto";
    margin-bottom: 20px;
}

.aboutus-inner3 .ceo-box-wrap .ceo-box {
    border: 1px solid #fff;
    padding: 30px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 165%;
    letter-spacing: -0.5px;
    font-family: "Noto Sans Korean";
}

.aboutus-inner3 .ceo-box-wrap .ceo-box > span {
    margin-top: 20px;
    display: block;
    font-weight: 500;
}

.aboutus-inner3 .ceo-box-wrap a {
    color: #fff;
}

.aboutus-inner4 h2 {
    color: #d93920;
    font-weight: 700;
    font-size: 23px;
}

.aboutus-inner4 h2 > span {
    color: #ff8601;
}

.aboutus-inner4 .contents {
    margin-top: 29px;
}

.aboutus-inner4 .contents > div {
    cursor: pointer;
    overflow: hidden;
    height: 420px;
    padding: 0;
    margin: 0;
    margin-right: 15px;
    width: 32%;
    float: left;
    position: relative;
}

.aboutus-inner4 .contents > div:last-child {
    margin-right: 0;
}

.aboutus-inner4 .contents > div > a > ul .image {
    transition: all .7s;
    height: 420px;
    overflow: hidden;
}

.aboutus-inner4 .s4-1-1 .image {
    background: url('/images/aboutus3.jpg') top center;
    background-size: cover;
}

.aboutus-inner4 .s4-1-2 .image {
    background: url('/images/aboutus4.jpg') top center;
    background-size: cover;
}

.aboutus-inner4 .s4-1-3 .image {
    background: url('/images/aboutus5.jpg') top center;
    background-size: cover;
}

.aboutus-inner4 .contents > div > a > ul:hover .image {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.aboutus-inner4 .contents .txt-wrapper {
    position: absolute;
    top: 0;
    padding-left: 37px;
    padding-right: 37px;
    padding-top: 68px;
}

.aboutus-inner4 .contents .txt-wrapper * {
    color: #fff;
}

.aboutus-inner4 .contents .txt-wrapper p {
    font-size: 25px;
    line-height: 135%;
    letter-spacing: -1px;
    height: 52px;
}

.aboutus-inner4 .contents .txt-wrapper em {
    display: inline-block;
    margin-top: 90px;
    font-style: normal;
    transition: all 1s;
    position: relative;
}

.aboutus-inner4 .contents .txt-wrapper em strong {
    font-size: 20px;
    font-weight: 700;
}

.aboutus-inner4 .contents .txt-wrapper em::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: all .5s ease-out;
}

.aboutus-inner4 .contents > div:focus .txt-wrapper em::after, .aboutus-inner4 .contents > div:hover .txt-wrapper em::after {
    width: 100%;
}

.aboutus-inner4 .contents .txt-wrapper em::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: all .5s ease-out;
}

#footer {

    /*margin-top: 60px;*/
}

#footer .copyright-wrap {
    background: #f2f3f3;
    height: 14%;
    width: 100%;
}

#footer .copyright {
    color: #555555;
    font-size: 14px;
    padding: 20px 0;
    letter-spacing: -0.5px;
}

#footer .copyright > div {
    float: left;
}

.orange-pc {
    color: #ff8601;
}

.bi-pc {
    color: #d93920;
}

.aboutus-inner5 {
    background: #F5F5F5;
    padding: 40px 0;
}

.aboutus-inner5 .logo-desc {
    margin: 10px 0 20px;
    text-align: center;
    font-size: 20px;
}

.aboutus-inner5 .ci_type_1 {
    margin-right: 40px;
    float: left;
}

.ci_download {
    padding-top: 20px;
}

.ci_download > div {
    float: right;
    margin-right: 15px;
}

.ci_download > div >div {
    float: left;
    margin-left: 10px;
}

.ci_download a {
    font-weight: 500;
    font-size: 14px;
    font-family: 'Nanum Gothic';
}

.ci_download .ci_dn_1 a {
    display: block;
    width: 150px;
    padding: 10px;
    background-color: #ff8601;
    color: #fff !important;
    transition: all 0.5s;
    text-align: center;
    vertical-align: middle;
}

.ci_download .ci_dn_1 a:hover {
    background-color: #ea5405;
}

.ci_download .ci_dn_2 a {
    display: block;
    width: 150px;
    padding: 10px;
    background-color: #999;
    color: #fff !important;
    transition: all 0.5s;
    text-align: center;
}

.ci_download .ci_dn_2 a:hover {
    background-color: #ea5405;
}

.ci_download .ci_dn_2 {
    margin-left: 15px;
}

.aboutus-inner5 img {
    border: 1px solid #ddd;
}

.link-popup {
    width: 1000px;
    height: 700px;
    background: white;
    margin: 50px auto;
}

.popup-modal-dismiss {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 20;
}

.popup-modal-dismiss .fa-times {
    font-size: 35px;
    color: #aaa;
}

.aboutus-popup .link-popup {
    position: relative;
}

#link3 .link-popup {
    background: #fff url('/images/aboutus8.jpg') center center;
    padding-top: 200px;
}

#link3 #inner-content-div {
    margin: 0 20px;
}

.li_dot li::before {
    content: url(/images/li_dot.png);
    color: #6eac25;
    font-weight: 800;
    padding-left: 5px;
    font-size: 20px;
}

.li_dot li {
    padding-left: 1.5em !important;
    text-indent: -1.5em !important;
}

.table01 tr td {
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.table01 {
    width: 100%;
    margin-top: 40px;
}

.table01 th {
    font-size: 17px;
    line-height: 42px;
    background-color: #fafafa;
    border-top: 2px solid #666;
    border-bottom: 1px solid #afafaf;
    text-align: center;
    font-weight: 700;
}

.table01 td {
    font-weight: 500;
    padding: 9px 10px;
    vertical-align: middle;
    font-size: 15px;
}

.table01 th.no-border, .table01 th:first-child {
    width: 150px;
    font-weight: 700;
}

.table01 td:last-child {
    text-align: center;
}

.table01 .no-border {
    border-width: 0 !important;
    background: transparent;
    vertical-align: top;
    line-height: 160%;
}

.table01.logos img {
    width: 32px;
    margin-right: 5px;
}

.aboutus-inner6 {
    background: #fff url('/images/history_title.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 650px;
    text-align: center;
}

.aboutus-inner6 .title-wrap {
    display: table;
    width: 100%;
    height: 650px;
    min-width: 1170px;
}

.aboutus-inner6 .title {
    display: table-cell;
    text-align: center;
    font-size: 40px;
    color: #333;
    font-weight: 500;
    vertical-align: middle;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    font-family: "Daum"
}

.aboutus-inner6 .white {
    color: #fff;
    text-shadow: 2px 2px 11px rgba(0, 0, 0, .5);
}

.aboutus-inner7 .history-title {
    position: relative;
    height: 505px;
}

.aboutus-inner7 .history-title > img {
    position: absolute;
    top: -32px;
    left: 50%;
    margin-left: -585px;
    z-index: 100;
}

.aboutus-inner7 .history-box .openclose {
    position: relative;
    display: inline-block;
    margin: 20px auto 0;
    background: rgba(0, 0, 0, 0.5) url(/images/slide_down.png) no-repeat center center;
    border: 1px solid #fff;
    width: 130px;
    height: 24px;
    cursor: pointer;
}

.aboutus-inner7 .history-box .openclose.active {
    background: rgba(0, 0, 0, 0.5) url(/images/slide_up.png) no-repeat center center;
}

.aboutus-inner7 .history-box {
    position: relative;
    height: 150px;
    text-align: center;
    padding-top: 37px;
}

.aboutus-inner7 .history-box em {
    font-style: normal;
    font-family: Montserrat;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    top: 10px;
    left: 20px;
    position: absolute;
}

.aboutus-inner7 .history-box p {
    font-style: normal;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: "Nanum Square"
}

.aboutus-inner7 .history-box-list > li {
    margin-bottom: 2px;
}

.aboutus-inner7 .history-box.h1992 {
    background: url(/images/history_1992.jpg) no-repeat right top #fff;
}

.aboutus-inner7 .history-box.h2002 {
    background: url(/images/history_2002.jpg) no-repeat right top #fff;
}

.aboutus-inner7 .history-box.h2007 {
    background: url(/images/history_2007.jpg) no-repeat right top #fff;
}

.aboutus-inner7 .history-box.h2011 {
    background: url(/images/history_2011.jpg) no-repeat right top #fff;
}

.aboutus-inner7 .history-box.h2014 {
    background: url(/images/history_2014.jpg) no-repeat right top #fff;
}

.aboutus-inner7 .history-box.h2016 {
    background: url(/images/history_2016.jpg) no-repeat right top #fff;
}

.aboutus-inner7 .history-cont {
    display: none;
}


.aboutus-inner8 {
    height: 1000px;
    background-color: #fff;
}


.aboutus-inner8 .ceo-box-wrap {
    padding-top: 100px;
}

.aboutus-inner8 .ceo-box-wrap h4 {
    color: #afafaf;
    font-size: 26px;
    font-weight: 700;
    font-family: "Roboto";
    margin-bottom: 20px;
}

.aboutus-inner8 .ceo-box-wrap .ceo-box {
    border: 1px solid #afafaf;
    padding: 30px;
    text-align: center;
    font-size: 22px;
    color: #afafaf;
    line-height: 165%;
    letter-spacing: -0.5px;
    font-family: "Noto Sans Korean";
}

.aboutus-inner8 .ceo-box-wrap .ceo-box > span {
    margin-top: 20px;
    display: block;
    font-weight: 500;
}

.aboutus-inner8 .ceo-box-wrap a {
    color: #afafaf;
}








.new.year {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 10px;
    background-position: top right;
    background-repeat: no-repeat;
    background-image: url('/images/year-left.png');
}

.new.year.par {
    background-position: top left;
    background-repeat: no-repeat;
    background-image: url('/images/year-right.png');
    margin-top: 50px;
    margin-right: 0%;
    width: 50%;
}

.new.year.impar {
    clear: both;
    margin-right: 0%;
    width: 50%;
}

.new.year h5 {
    font-family: "Roboto";
    font-size: 24px;
    color: #d93920;
    margin: 0;
    line-height: 1.2em;
}

.year_content {
    padding: 0;
    margin: -15px 48px 0 0;
    clear: both;
    text-align: right;
}

.year_number {
    float: right;
    padding: 2px 0 10px;
    margin-right: 50px;
    margin-left: 30px;
}

.par .year_content {
    margin: -10px 0 0 68px;
    text-align: left;
}

.par .year_number {
    float: left;
    margin-left: 50px;
    padding-bottom: 10px
}

.news.timeline {
    margin: 0 auto;
    float: none;
}

.bgr_timeline {
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: auto;
    background-position: 50% 50px;
    background-repeat: repeat-y;
    background-image: url('/images/timeline.png');
}

.bgr_timeline li {
}

.li_dot3 li::before {
    content: "• ";
    color: #ea5404;
}

.li_dot3 li {
    padding-left: 2em !important;
    text-indent: -3em !important;
    line-height: 160%
}

.aboutus-popup .ceo-ment {
    padding: 0 60px;
}

.link-popup.ceo {
    height: 800px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-position: top right;
    background-repeat: no-repeat;
    background-image: url('/images/ceo-bg.jpg');
}

.aboutus-popup .ceo-ment p {
    margin-top: 15px;
    font-size: 16px;
    font-family: "Nanum Gothic";
    line-height: 160%;
}

.aboutus-popup .ceo-ment .date {
    clear: both;
    text-align: right;
    margin-top: 30px;
}

.aboutus-popup .ceo-ment .sign {
    clear: both;
    text-align: right;
}

.contact-inner1 {
    margin-top: 50px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-inner2 {
    padding: 25px 0 40px;
    text-align: center;
    font-size: 19px;
    font-family: "Nanum Square";
}

.icon-size1 {
    height: 32px;
}

.raleway {
    font-family: "Raleway";
}

.contact-table {
    width: 100%;
    border-top: 2px solid #d93920
}

.contact-table tbody th, .contact-table tbody  td {
    border-top: 1px solid #b0b2b1;
    border-bottom: 1px solid #b0b2b1;
    padding: 7px 10px;
}

.contact-table tbody  th {
    line-height: 19px;
    color: #3b3b3b;
    vertical-align: middle;
    background: #fbfbfb;
    font-size: 16px;
    height: 19px;
    text-align: center;
    font-style: normal;
}

.contact-table tbody th label {
    font-weight: 500;
    margin: 0;
}

.contact-table tfoot td {
    padding: 20px 0;
}

.contact-table .rline {
    border-right: 1px solid #ccc;
}

.contact-table .lline {
    border-left: 1px solid #ccc;
}

.contact-table .selectbox {
    border: 1px solid #dddddd;
    height: 39px;
    box-sizing: border-box;
    font-size: 15px;
}

.contact-table input, .contact-table textarea {
    border: 1px solid #dddddd;
    box-sizing: border-box;
}

.contact-table input[type="text"] {
    height: 35px;
    width: 100%;
    font-size: 16px;
    padding: 0 2px;
    vertical-align: middle;
}

.center {
    text-align: center;
}

.button {
    display: inline-block;
    position: relative;
    width: auto;
    height: 42px;
    line-height: 40px;    /*border-radius: 5px;*/
    font-size: 15px;
    cursor: pointer;
    overflow: hidden;
    font-family: "Noto Sans KR";
    font-weight: 300;
}

.button a {
    display: block;
    width: 100%;
    padding: 0 30px;
    color: #fff;
}

.button a:hover, .button a:focus {
    text-decoration: none;
}

.button.white {
    background-color: #fff;
}

.button.white a {
    color: #676767;
}

.button.grey {
    background-color: #e0e0e0;
}

.button.blue {
    background-color: #00acc1;
}

.button.green {
    background-color: #00e676;
}

.button.yellow {
    background-color: #ffee58;
}

.button.orange {
    background-color: #f9a825;
}

.button.red {
    background-color: #d93920;
}

.button.dark-grey {
    background-color: #474747;
}

.button.raised {
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.button.raised:hover {
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
    transition-delay: 0s;
}

.button.small {
    height: 35px;
    line-height: 37px;
    border-radius: 4px;
    font-size: 0.85em;
}

.button.small a {
    padding: 0 20px;
}

.button.raised.small:hover {
    box-shadow: 0 6px 17px 0 rgba(0, 0, 0, 0.2);
}

.button.raised.icon a {
    padding: 0 30px 0 75px;
}

.button.raised.small.icon a {
    padding: 0 20px 0 50px;
}

.button span {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    font-size: 16px;
    line-height: 42px;
    text-align: center;
}

.button.small span {
    width: 35px;
    font-size: 12px;
    line-height: 35px;
}

.button.small .fa-check {
    font-size: 10px;
}

.button.raised.icon > div:before, .button.raised.icon > div:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 51px;
    width: 1px;
    background-color: #e0e0e0;
}

.button.raised.small.icon > div:before, .button.raised.small.icon > div:after {
    left: 35px;
}

.button.raised.icon > div:after {
    left: 52px;
    background-color: #fff;
}

.button.raised.small.icon > div:after {
    left: 36px;
}

.button.raised.icon.grey > div:before {
    background-color: #bdbdbd;
}

.button.raised.icon.grey > div:after {
    background-color: #f7f7f7;
}

.button.raised.icon.blue > div:before {
    background-color: #00838f;
}

.button.raised.icon.blue > div:after {
    background-color: #4dd0e1;
}

.button.raised.icon.green > div:before {
    background-color: #00c853;
}

.button.raised.icon.green > div:after {
    background-color: #6cf6b3;
}

.button.raised.icon.yellow > div:before {
    background-color: #fdd835;
}

.button.raised.icon.yellow > div:after {
    background-color: #fff7b0;
}

.button.raised.icon.orange > div:before {
    background-color: #f57f17;
}

.button.raised.icon.orange > div:after {
    background-color: #fbc43b;
}

.button.raised.icon.red > div:before {
    background-color: #c62828;
}

.button.raised.icon.red > div:after {
    background-color: #f57f17;
}

.button.raised.icon.dark-grey > div:before {
    background-color: #212121;
}

.button.raised.icon.dark-grey > div:after {
    background-color: #777777;
}

h5.sub-title-h5 {
    position: relative;
    font-size: 21px;
    color: #d93920;
    line-height: 17px;
    height: 48px;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h5.sub-title-h5::before {
    position: absolute;
    content: '';
    width: 32px;
    height: 2px;
    background-color: #d93920;
    left: 0;
    bottom: 10px;
}

.contact-wrap {
    margin-top: 40px;
}

.contact-wrap.req {
    padding-top: 60px;
}

.li_dot li::before {
    content: url(/images/li_dot.png);
    color: #6eac25;
    font-weight: 800;
    padding-left: 5px;
    font-size: 20px;
}

.li_dot li {
    padding-left: 1.5em !important;
    text-indent: -1.5em !important;
}

.li_dot1 li::before {
    content: "• ";
    color: #ea5404;
}

.li_dot1 li {
    line-height: 160%
}

.li_dot2 li::before {
    content: "• ";
    color: #ea5404;
    font-size: 12px;
}

.li_dot2 li {
    line-height: 160%
}

.tel-table-wrap div {
    width: 550px;
    float: left;
}

.tel-table-wrap div:first-child {
    margin-right: 40px;
}

.tel-table-wrap > ul > li {
    margin-bottom: 50px;
}

.tel-table-wrap > ul > li:before {
}

.tel-table-wrap > ul > li:after {
    content: ' ';
    display: table;
    clear: both;
}

.tel-table-wrap div > table {
    width: 100%;
}

.tel-table-wrap div > table th {
    text-align: center;
    font-weight: 500;
    padding: 7px 0;
    border-top: 2px solid #d93920;
    border-bottom: 2px solid #d93920;
}

.tel-table-wrap div > table td {
    padding: 10px 4px 10px 8px;
    border: 1px solid #bbb;
    font-size: 14px;
    font-weight: 500;
}

.tel-table-wrap div > table td:first-child {
    width: 163px;
    background-color: #fbfbfb;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    border-left: 0;
    font-family: "Roboto", "Noto Sans KR";
}

.tel-table-wrap div > table td:last-child {
    border-right: 0;
    font-family: "Roboto", "Nanum Gothic";
}

.gap {
    width: 13px;
    display: inline-block;
}

.gap2 {
    width: 35px;
    display: inline-block;
}

.policy .clfix {
    width: 940px;
    margin: 0 auto;
}

.policy .policy_cont_h4 {
    font-size: 26px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: -0.06em;
    line-height: 38px;
}

.only_mobile {
    display: none !important;
}

.policy ul>li {
    float: left;
    width: 300px;
    margin-right: 20px;
}

.policy ul > li:last-child {
    margin-right: 0;
}

.policy .policy_cont1 ul>li:last-child, .policy .policy_cont3 ul>li:last-child {
    margin-right: 0;
}

.policy .policy_cont2 ul>li {
    width: 50%;
}

.policy ul .policy_content01 .content_title {
    height: 150px;
    background: url("/images/icon/icon_01.png") no-repeat center center;
    padding-top: 25px;
    padding-left: 45px;
}

.policy ul .policy_content02 .content_title {
    height: 150px;
    background: url("/images/icon/icon_02.png") no-repeat center center;
    padding-top: 25px;
/*    padding-left: 45px;*/
}

.policy ul .policy_content03 .content_title {
    height: 150px;
    background: url("/images/icon/icon_03.png") no-repeat center center;
    padding-top: 25px;
    padding-left: 45px;
}

.policy ul .content_title.icon4 {
    background: url("/images/icon/icon_04.png") no-repeat center center;
}

.policy ul .content_title.icon5 {
    background: url("/images/icon/icon_05.png") no-repeat center center;
}

.policy ul .content_title.icon6 {
    background: url("/images/icon/icon_06.png") no-repeat center center;
}

.policy ul .content_title.icon7 {
    background: url("/images/icon/icon_07.png") no-repeat center center;
}

.policy ul .content_title.icon8 {
    background: url("/images/icon/icon_08.png") no-repeat center center;
}

.policy ul .content_title.icon9 {
    background: url("/images/icon/icon_09.png") no-repeat center center;
}

.policy ul .content_title.icon10 {
    background: url("/images/icon/icon_10.png") no-repeat center center;
}

.policy ul .content_title.icon11 {
    background: url("/images/icon/icon_11.png") no-repeat center center;
}

.policy ul .content_title.icon12 {
    background: url("/images/icon/icon_12.png") no-repeat center center;
}

.policy ul .content_title.icon13 {
    background: url("/images/icon/icon_13.png") no-repeat center center;
}

.policy  ul>li .content_title {
    font-size: 20px;
    color: #d93920;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 20px;
}

.policy ul > li .content_txt {
    text-align: center;
    margin-top: 15px;
    font-size: 17px;
    color: #444444;
    letter-spacing: -0.06em;
}

.policy ul>li .content_title .num {
    display: block;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    line-height: 20px;
    margin-bottom: 10px;
}

.policy.second {
    margin-top: 120px;
}

.policy ul .content_title.technical {
    /*padding-top: 9px;*/
    padding-left: 1px;
}

.policy ul .content_title.technical2 {
    padding-left: 1px;
}

.technical .goto-link {
    text-align: center;
    padding-top: 80px;
}

/* 리플 효과 **/
svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

circle {
    fill: rgba(255, 255, 255, 0.3);
}

.button.white circle, .fab.white circle {
    fill: rgba(224, 224, 224, 0.3);
}

.tech-icon-wrap {
    width: 852px;
    margin: 0 auto;
}

.tech-icon-wrap.three-col {
    width: 646px;
}

.tech-icon-wrap .tech-icon {
    float: left;
    margin: 0 36px 40px;
    width: 140px;
}

.tech-icon-wrap .tech-icon.center {
    float: none;
    clear: both;
    width: 100%;
    margin:0;
}

.tech-icon-wrap .tech-icon .icon {
    height: 128px;
    background-size: 64px 64px;
    background-repeat: no-repeat;
    background-position: center center;
}

.tech-icon-wrap .tech-icon .cont {
    text-align: center;
    font-family: "Nanum Barun Gothic";
    margin-left:-10px;
    margin-right:-10px;
}

.tech-icon-wrap .tech-icon.icon_db .icon {
    background-image: url("/images/icon/icon_db.png");
}

.tech-icon-wrap .tech-icon.icon_devtool .icon {
    background-image: url("/images/icon/icon_devtool.png");
}

.tech-icon-wrap .tech-icon.icon_browser .icon {
    background-image: url("/images/icon/icon_browser.png");
}

.tech-icon-wrap .tech-icon.icon_cs .icon {
    background-image: url("/images/icon/icon_cs.png");
}

.tech-icon-wrap .tech-icon.icon_component .icon {
    background-image: url("/images/icon/icon_component.png");
}

.tech-icon-wrap .tech-icon.icon_security .icon {
    background-image: url("/images/icon/icon_security.png");
}

.tech-icon-wrap .tech-icon.icon_unicode .icon {
    background-image: url("/images/icon/icon_unicode.png");
}

.tech-icon-wrap .tech-icon.icon_mdisdi .icon {
    background-image: url("/images/icon/icon_mdisdi.png");
}

.tech-icon-wrap .tech-icon.icon_ria .icon {
    background-image: url("/images/icon/icon_ria.png");
}

.tech-icon-wrap .tech-icon.icon_html5 .icon {
    background-image: url("/images/icon/icon_html5.png");
}

.tech-icon-wrap .tech-icon.icon_phone .icon {
    background-image: url("/images/icon/icon_phone.png");
}

.tech-icon-wrap .tech-icon.icon_tools .icon {
    background-image: url("/images/icon/icon_tools.png");
}

.tech-icon-wrap .tech-icon.icon_opensource .icon {
    background-image: url("/images/icon/icon_opensource.png");
}

.tech-icon-wrap .tech-icon.icon_migration .icon {
    background-image: url("/images/icon/icon_migration.png");
}

.tech-icon-wrap .tech-icon.icon_cross .icon {
    background-image: url("/images/icon/icon_cross.png");
    background-size: 100px 100px;
}

section.bg-gray {
    background-color: #F6F6F6;
    width: 100%;
}

section.bg-gray2 {
    background-color: #F9F9F9;
    width: 100%;
}

section.bg-white {
    background-color: #fff;
    width: 100%;
}

.inno-1 {
    padding: 80px 0 80px;
    text-align: center;
    font-size: 18px;
}

.inno-1 p {
    padding-top: 25px;
    font-size: 18px;
    font-family: "Roboto", "Noto Sans KR";
}

h3.title2 {
    font-size: 30px;
    font-weight: 600;
}

h3.title3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 32px;
}

.hor-line {
    display: block;
    width: 1px;
    height: 32px;
    margin: 30px auto 15px;
    background: #d93920;
}

.vertical-line {
    display: block;
    width: 1px;
    height: 30px;
    margin: 25px auto 0;
    background: #d93920;
}

.vert-line {
    display: block;
    width: 30px;
    height: 2px;
    margin: 10px auto 25px;
    background: #d93920;
}

.slide-wrap {
    padding-top: 30px;
}

.slide-wrap {
    width: 876px;
    margin: 0 auto;
}
/* .slide-wrap {
    width: 876px;
    margin: 0 auto;
} */

.bxslider .title {
    font-size: 22px;
    font-weight: 500;
    font-family: "Nanum Square";
    padding-bottom: 15px;
    position: relative;
}

.bxslider .title.left {
    text-align: left;
}

.bxslider .title.right {
    text-align: right;
}

.bxslider .title span {
    box-sizing: content-box;
    border-left: 4px solid #909090;
    border-right: 4px solid #909090;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 14px;
    border-radius: 2px;
}

.bxslider .title span.with-absol {
    position: relative;
    left: 16%;
}

.bxslider img {
    margin: 0 auto;
}

/*.bxslider .title span::before {
content: " ";
width:3px;
height:20px;
display: inline-block;
background: #d93920;
border-top: 5px solid #fff;
margin-right:6px;
}
.bxslider .title span::after{
content: " ";
width:3px;
height:20px;
display: inline-block;
background: #d93920;
border-top: 5px solid #fff;
margin-left:6px;
}*/
.ta-center {
    text-align: center;
}

table.shift-green-off-spec {
    border-collapse: separate;
    width: 100%;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

table.shift-green-off-spec th {
    text-align: center;
    padding: 15px 0;
    background-color: #99CA3C;
    color: #fff;
    font-family: "Nanum Square";
}

table.shift-green-off-spec td {
    text-align: left;
    padding: 20px 20px;
    background-color: #f7f7f7;
    height: 220px;
    vertical-align: top;
    color: #333;
}

.width960 {
    width: 960px;
    margin: 0 auto;
}

.width860 {
    width: 860px;
    margin: 0 auto;
}

.onlyoneslide .bx-controls {
    display: none;
}

.onlyoneslide .image {
    margin-top: 20px;
}

.sgo .bx-wrapper .bx-pager, .sgo .bx-wrapper .bx-controls-auto {
    bottom: -250px;
}

.shift-chart-1 {
    padding: 5px 0;
    text-align: center;
    font-size: 18px;
}

.shift-chart-1 p {
    padding-top: 25px;
    font-size: 18px;
    font-family: "Nanum Barun Gothic";
}

.shift-chart-1 .bx-wrapper .bx-pager, .shift-chart-1 .bx-wrapper .bx-controls-auto {
    bottom: -200px;
}

.grey-point-center {
    padding: 80px 0 80px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    font-family: "Roboto", "Noto Sans KR";
}

.grey-point-center .title2 span {
    font-size: 1.1em;
}

.grey-point-center p {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
}

.sub_visual_area .title .prodname {
    font-family: "Montserrat";
    font-size: 50px;
    font-weight: 500;
}

.module-txt {
    margin-top: 45px;
    font-size: 30px;
    color: #818181;
    font-family: "Roboto";
    font-weight: 500;
}

.module-txt::after {
    content: url('/images/arrow_bottom.png');
    display: block;
    margin-top: -10px;
}

.slide-wrap.height500 .bx-pager, .slide-wrap.height500 .bx-controls-auto {
    bottom: -245px;
}

.pt0 {
    padding-top: 0;
}

.pt60 {
    padding-top: 60px;
}

p.client-side-module {
    margin-bottom: 30px;
}

.slide-wrap.height600 .bx-pager, .slide-wrap.height600 .bx-controls-auto {
    bottom: -280px;
}

.xena-point-bg {
    padding: 120px 0 120px;
    text-align: center;
    font-size: 18px;
    font-family: "Roboto", "Noto Sans KR";
}

.xena-point-bg .title2 {
}

.xena-point-bg p {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
}

.xena-point-bg .icons {
    margin-top: 40px;
    margin-bottom: 40px;
}

.prod-logo-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.xena-point-bg2 {
    padding: 30px 200px 30px;
    text-align: center;
    font-size: 18px;
    font-family: "Roboto", "Noto Sans KR";
}

.xena-point-bg2 .title2 span {
    font-size: 1.1em;
}

.xena-point-bg2 p {
    margin-top: 30px;
    font-size: 21px;
    font-weight: 500;
    float: left;
    width: 60%;
    padding-top: 40px;
}

.xena-point-bg2 .icons {
    margin-top: 30px;
    margin-bottom: 30px;
    float: left;
    width: 40%;
    text-align: center;
}

.xena-point-bg3 {
    padding: 30px 200px 30px;
    text-align: center;
    font-size: 18px;
    font-family: "Roboto", "Noto Sans KR";
}

.xena-point-bg3 p {
    margin-top: 30px;
    font-size: 21px;
    font-weight: 500;
    float: left;
    width: 40%;
    padding-top: 57px;
    text-align: right;
}

.xena-point-bg3 .icons {
    margin-top: 30px;
    margin-bottom: 30px;
    float: left;
    width: 60%;
    text-align: center;
}

h3.section-title span {
    text-align: left;
    box-sizing: content-box;
    border-left: 4px solid #909090;
    border-right: 4px solid #909090;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 14px;
    border-radius: 2px;
}

.ta-left {
    text-align: left;
}

.pt140 {
    padding-top: 140px;
}

.sub-title3 {
    font-size: 26px;
    font-weight: 600;
    font-family: "Nanum Square";
    padding-bottom: 15px;
    position: relative;
    text-align: center;
    color: #000;
}

/*
.sub-title3 span {
box-sizing: content-box;
border-left: 4px solid #909090;
border-right: 4px solid #909090;
padding-left: 10px;
padding-right: 10px;
margin-left: 14px;
border-radius: 2px;
}
*/
.tech-icon-wrap.fieldtoapply {
    width: 800px;
}

.tech-icon-wrap.fieldtoapply .tech-icon {
    width: 194px;
}

.tech-icon-wrap.fieldtoapply .tech-icon.ml180 {
    margin-left: 180px;
}

.tech-icon-wrap.fieldtoapply .cont {
    font-size: 16px;
}

.refer-title {
    height: 40px;
    padding-left: 60px;
    line-height: 40px;
    font-size: 22px;
    font-weight: 500;
}

.refer-title.r1 {
    background: #fff url('/images/ricon1.png') 0 0 no-repeat;
}

.refer-title.r2 {
    background: #fff url('/images/ricon2.png') 0 0 no-repeat;
}

.refer-title.r3 {
    background: #fff url('/images/ricon3.png') 0 0 no-repeat;
}

.refer-title.r4 {
    background: #fff url('/images/ricon4.png') 0 0 no-repeat;
}

.refer-title.r5 {
    background: #fff url('/images/ricon5.png') 0 0 no-repeat;
}

.refer-title.r6 {
    background: #fff url('/images/ricon6.png') 0 0 no-repeat;
}

.refer-title.r7 {
    background: #fff url('/images/ricon7.png') 0 0 no-repeat;
}

.refer-title.r8 {
    background: #fff url('/images/ricon8.png') 0 0 no-repeat;
}

ul.refer {
    margin-top: 20px;
    background: #fff;
    overflow: hidden;
    border: none;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

ul.refer li {
    position: relative;
    width: 33.3%;
    text-align: center;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    overflow: hidden;
    height: 140px;
    float: left;
}

ul.refer li a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(217, 57, 32, 0.9);
    opacity: 0;
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;
}

ul.refer li a:hover {
    opacity: 1;
    cursor: default;
}

ul.refer li a span {
    display: none;
}

ul.refer li a:hover span {
    font-size: 18px;
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    letter-spacing: -.5px;
}

ul.refer li a:hover span:first-child {
    font-weight: 500;
    font-size: 18px;
}

ul.refer img {
    margin-top: 25px;
}

.sub-gateway {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #f9f9f9;
}

.sub-gateway .contents > div {
    height: 470px;
}

.sub-gateway .contents > div > ul .image {
    height: 470px;
}

.goto-link {
    padding-bottom: 40px;
}

#section0 {
    overflow: hidden;
}

#section0 .main-visual {
    position: relative;
    width: 100%;
    height: 100%; 
    background: #fff url(/images/main_bg_sec_21.jpg) center center; 
    animation: zoom_visual 15s ease-out;
    animation-direction: initial;
    animation-fill-mode: both;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    animation-play-state: running;
}

@keyframes zoom_visual {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.09);
    }
}  

.board-top-margin {
    margin-top:80px;
}
.board-top-margin-recruit.mode-view {
    /*margin-top:80px;*/
}

#sub_contents h2#container_title {
    font-size:25px;
    padding-left: 11px;
    line-height: 20px;
    letter-spacing: -1px;
    border-left: 5px solid #d93920;
    vertical-align: middle;
    font-family: "Open Sans", "Noto Sans KR";
}


.td_subject a:hover {
    color:#d93920;
}

#footer .txt-wrapper p {
    font-size: 26px;
}

#footer .sub-gateway .s4-1-1,
#footer .sub-gateway .s4-1-2,
#footer .sub-gateway .s4-1-3 {
    height:430px;
}
#footer .main-sec-4-wrap .s4-1-2 .image {
    background-position: center left;
}

#footer {
    margin-top:80px;
}

.button.raised.ripple.formsubmit {
        padding: 0 30px 0 75px;
        color:#fff;
        border-radius:0 ;
}


/* eng */
#link3 .link-popup.eng {
    background: #fff url('/images/eng/eng_aboutus8.jpg') center center;
}

.table01.eng th {
    font-size:14px;
    line-height: 1.5;
    height:46px;
}

.table01.eng td {
    font-size:13px;
}



.familysite {
    font-family:"Roboto";
    float: none;
    padding-top: 16px;
    z-index: 800;
    text-align:center;
}

/** Custom Select **/
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
}

.custom-select-wrapper select {
    display: none;
}

.custom-select {
    position: relative;
    display: inline-block;
}

.custom-select-trigger {
    position: relative;
    display: block;
    width: 200px;
    padding: 0 50px 0 22px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 30px;
    background: #1a1a1a;
    cursor: pointer;
    border:1px solid #676767;
}

.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    top: 50%;
    right: 25px;
    margin-top: -3px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}

.custom-select.opened .custom-select-trigger:after {
    margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
    position: absolute;
    display: block;
    bottom:30px;
    left: 0;
    right: 0;
    min-width: 100%;
    margin: 15px 0;
    border: 1px solid #676767;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .07);
    background: #1a1a1a;
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px);
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 0;
    right: 25px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
    background: #1a1a1a;
    transform: rotate(225deg);
    transition: all .4s ease-in-out;
}

.option-hover:before {
    background: #1a1a1a;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0 22px;
    border-bottom: 1px solid #676767;
    font-size: 14px;
    font-weight: 400;
    color: #b5b5b5;
    line-height: 28px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.custom-option:first-of-type {
    border-radius: 4px 4px 0 0;
}

.custom-option:last-of-type {
    border-bottom: 0;
    border-radius: 0 0 4px 4px;
}

.custom-option:hover, .custom-option.selection {
    background: #393939;
}
.nav-inner-wrap .sns-btn {
    padding-left:18px;
    height:14px;
    margin-top:14px;
}
.nav-inner-wrap .sns-btn li {
    float:left;
    margin-top:13px;
    margin-right:12px;
}
.nav-inner-wrap .sns-btn li a {
    color:#fff;
    font-size: 22px;
    border-radius: 50%;
    background:#555;
    width:42px;
    height:42px;
    display:inline-block;
    text-align: center;
    line-height: 42px;
    transition: background 0.5s;
}
.nav-inner-wrap .sns-btn li a.home:hover {
    background: #d93920;
}
.nav-inner-wrap .sns-btn li a.youtube:hover {
    background: #e70000;
}
.nav-inner-wrap .sns-btn li a.facebook:hover {
    background: #3b5998;
}