@charset "utf-8";

/* Font */

@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

/* Guide 
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1200px
tablet : 980px ~
mobile : 767px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/


/* Reset 
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
}

body,
th,
td,
input,
select,
textarea,
button {
    font-size: 16px;
    color: #333;
	font-weight:300;
}

dl,
ul,
ol,
menu,
li {
    list-style: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

:focus {
    outline: 0 !important;
}

iframe {
    border: none;
    width: 100%;
}

a {
    color: inherit;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

a:hover,
a:focus,
a:active,
a:link {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

textarea {
    max-width: 100%;
    resize: none;
}

body {
    overflow-x: hidden;
}

@media only screen and (min-width: 320px) {
    body {
        overflow-x: hidden;
    }
}

.hidden {
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}


/* Parallax
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

.parallax {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
}


/* Preloader
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

.animationload {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}

.loader {
    width: 200px;
    height: 200px;
    font-size: 24px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(/images/basic_resp/img/preloader.gif);
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}


/* Back to top (탑 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

.back-to-top {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    text-align: center;
    z-index: 10000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #2d5b79;
}

.back-to-top i {
    color: #fff;
    font-size: 15px;
    display: block;
    line-height: 33px;
}


/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

#wrapper {
    position: relative;
    width: 100%;
    min-width: 340px;
 	height: 100%; 
	/*height:100vh */
}

    .login-bar {
        text-align: center;
        z-index: 999;
        position: relative;
		float:right;
		top:26px;
    }
    .login-bar li {
        display: inline-block;
        position: relative;
        margin-left: 10px;
        border-left: 1px solid #ddd;
        height: 23px;
        border: 1px solid #525353;
        border-radius: 11px;
        margin-bottom: 10px;
    }
    .login-bar li a {
        font-size: 12px;
        line-height: 23px;
        padding: 0 14px;
        color: #525353;
        font-weight: 500;
    }
    .login-bar .material-icons {
        display: block;
        position: absolute;
        right: 6px;
        top: 2px;
        font-size: 18px;
        color: #fff;
    }
    .login-bar li:first-child {
        padding-right: 12px;
        background-color: #ffb811;
        border: 1px solid #ffb811;
    }
    .login-bar li:first-child a {
        display: block;
        width: 55px;
        color: #fff;
    }
    .login-bar li ul {
        position: absolute;
        left: -11px;
        top: 31px;
    }
    .login-bar li ul li {
        padding-right: 12px;
    }
    .login-bar li ul li a {
        display: block;
        margin-bottom: 38px;
        width: 55px;
    }
    .login-bar .lang_list {
        display: none;
        position: absolute;
        background-color: #000;
        width: 71px;
        left: -3px;
        border-radius: 10px;
        padding: 5px 0;
        top: -1px;
    }
    .login-bar .lang_list dd a {
        color: #fff;
        font-weight: 400;
        position: relative;
        line-height: 26px;
    }
    .login-bar .lang_list dd a i {
        color: #fff !important;
        right: -8px !important;
        top: 5px !important;
    }


/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.nav-btn {
        z-index: 999;
        display: block;
        position: absolute;
        top: 25px;
        right: 0px;
        width: 30px;
        height: 23px;
        cursor: pointer;
    }
    .nav-btn span {
        position: absolute;
        left: 50%;
        display: block;
        margin-left: -15px;
        width: 30px;
        height: 3px;
        background: #aaa;
        transition: .2s all linear;
    }
    .nav-btn span:nth-child(1) {
        top: 0;
    }
    .nav-btn span:nth-child(2) {
        top: 10px;
    }
    .nav-btn span:nth-child(3) {
        top: 20px;
    }
    /*.nav-btn.nav-close {
        position: fixed;
    }*/
    .nav-btn.nav-close span:nth-child(1) {
        top: 50%;
        transform: rotate(45deg);
    }
    .nav-btn.nav-close span:nth-child(2) {
        margin-left: 0;
        width: 0;
    }
    .nav-btn.nav-close span:nth-child(3) {
        top: 50%;
        transform: rotate(-45deg);
    }
	
@media only screen and (min-width: 1200px) {
	.nav-btn{display:none;}
    #header {
        z-index: 999;
        width: 100%;
    	position:fixed;
		transition:all 0.5s;
    }
    #header:after {
		display:block;
		content:"";
		clear:both;
	}
	#header.scroll_on {background: #fff; transition:all 0.5s; border-top:1px solid #eaeaea;}
	#header.sub_page:after {content:''; display:block; width:100%; height:1px; background:#eaeaea; position:absolute; left:0;}
    #header > div {
        position: relative;
        margin: 0 auto;
        width: 1200px;
        height: 100px;
		text-align: center;
    }
	#L_SITE_LOGO {float: left;}
    #header h1 {
        float: left;
		padding-top:30px;
		position: absolute;
    }
    #header h1 a {
        display: block;
        width: 277px;
        height: 40px;
    }
    #header h1 a > img {
        vertical-align: baseline;
    }
    #header.sub_page h1 a > img{
        display: none;
    }
    #header.sub_page h1 a{
        background: url(/images/kor20r-21-0436/common/logo_on.png) no-repeat center center;
    }

/*.lang_select { font-size:14px; float: right; position: absolute; right: 70px; top: 32px;}
.lang_select > li {float:left;line-height: 1; padding-right:12px; margin-left:12px; border-right:1px solid #666;}
.lang_select > li:last-child {padding-right:0px; border-right:none;}
.lang_select > li a {color:#666; line-height: 1;}
.lang_select > li a.active {color:#000; font-weight:400;}*/
    .nav-bg {
        z-index:-1;
        display: none;
        position: absolute;
        top: 100px;
        left: -500%;
        width: 1000%;
        height: 180px;
        background: #fff;
		border-bottom:2px solid #2d5b79;
    }
    #nav {
		display:inline-block;
		vertical-align: top;
		z-index: 999;
		float:right;
    }
	.navigation{float:left;}
    .navigation:after {
        content: "";
        display: block;
        clear: both;
    }
    .navigation > li {
        position: relative;
        float: left;
        width: 160px;
        text-align: center;
    }
	#header.sub_page{
        background: #fff;
    }
    .navigation .main-menu {
        position: relative;
        display: block;
        width: 100%;
        font-weight: 400;
        font-size: 20px;
        color: #fff;
       line-height: 100px;
    }
    #header.sub_page .navigation .main-menu{
        color: #444;
    }
    .navigation .sub-menu {
        display: none;
        z-index: 999;
        position: absolute;
        top: 100px;
        left: 0;
        padding: 20px 0;
        width: 160px;
        height: 160px;
    }
    .navigation .sub-menu a {
        display: block;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        color: #666;
		box-sizing:border-box;
		vertical-align:middle;
		line-height: 25px;
        margin-bottom: 10px;
    }
    .navigation .sub-menu > li:last-child a{
        margin: 0;
    }
    .navigation .sub-menu .intro-menu {
        display: none;
    }
    .navigation .sub-menu a:hover {
		color:#fff;
    }
	
	#header.sub_page .navigation > li:hover .main-menu{color:#2d5b79;}
    .navigation > li:hover .main-menu:after{content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 5px;background: #2d5b79;}
	.navigation > li:hover .sub-menu a {position: relative; display: inline-block;color:#666;}
	.navigation > li:hover .sub-menu a:hover { color:#2d5b79;}
    .navigation > li:hover .sub-menu a:hover:after{
        content: '';
        display: inline;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: #2d5b79;
    }
}

/*
@media only screen and (max-width: 1520px) {
#header { padding: 0px 30px;}
#L_SITE_LOGO.sub_page a {width:230px;}
#header h1 a > img {width:180px;}
.navigation > li {width: 130px;}
.navigation .sub-menu {width: 130px;}	
}
*/

@media only screen and (max-width: 1200px) {
    #header {
		position: fixed;
        z-index: 666;
        width: 100%;
        height: 65px;
        background: #fff;
		padding: 0px;
		border-bottom:1px solid #eaeaea;
    }
    #header > div {
        padding: 0;
    }
    #header h1 {
        float: left;
        padding: 13px 20px;
        height: 65px;
    }
    #header h1 a {
        display: block;
        width: 277px;
        height: 40px;
        background: url(/images/kor20r-21-0436/common/logo_on.png) no-repeat center center;
    }
    #header h1 img {
        display: none;
    }
    .login-bar {
        float: none;
		padding-top: 10px;
    }
    .login-bar li {
        border: 1px solid #ffffff;
	    margin-left: 28px;
    }
	.login-bar li:first-child {
		border: 1px solid #fff;
	}
    .login-bar li a {
        color: #fff;
    }
    .login-bar .material-icons {
        color: #fff;
    }
   .nav-btn {
        right: 20px;
		top:20px;
    }
    .nav-bg {
        z-index: 777;
        display: none;
        top: 0;
		position:fixed;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
    #nav {
        z-index: 888;
        position: fixed;
        right: -100%;
        display: block;
        padding: 65px 0 20px;
        width: 70%;
        height: 100%;
        background: #262626;
    }
    .navigation{
        border-top: 1px solid rgba(255,255,255,.05);
    }
	.navigation > li {width: 100%;}
	.navigation .sub-menu {width: 100%;} 
    .navigation .main-menu {
        display: block;
        padding: 0 30px;
        width: 100%;
        line-height: 50px;
        font-weight: 400;
        font-size: 16px;
        color: #9d9d9d;
        transition: none;
        border-bottom: 1px solid rgba(255,255,255,.05);
    }
	.navigation > li a:hover{color:#fff;}
    .navigation li.active .main-menu {
        color: #fff;
    }
    .navigation .sub-menu {
        display: none;
        background: #2d5b79;
    }
    .navigation .sub-menu a {
        display: block;
        padding: 0 30px;
        line-height: 38px;
        font-size: 14px;
        color: #fff;
        border-bottom: 1px solid #426c87;
    }
    .navigation .sub-menu a:before {
        content: "";
        display: inline-block;
        margin: 0 5px 0 0;
        width: 4px;
        height: 1px;
        vertical-align: middle;
        background: #fff;
    }
	.lang_select { font-size:14px; display:inline-block; padding-left:20px; margin-top: 30px; }
    .lang_select > li {float:left;line-height: 1; padding-right:12px; margin-left:12px; border-right:1px solid #b6b6b6;}
    .lang_select > li:last-child {padding-right:0px; border-right:none;}
    .lang_select > li a {color:#b6b6b6; line-height: 1;}
    .lang_select > li a.active {color:#046ab4;}
}

@media only screen and (max-width: 768px) {
    #header h1 {
        padding: 15px 10px;
    }
    #header h1 a > img {
        width: 140px;
    }
}


/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

#footer {
    width: 100%;
    background:#383f43;
    padding: 30px 0;
}
#footer .footer-area{
    width: 1200px;
    margin: 0 auto;
}
#footer .f_top{
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
#footer .f_top .footer-logo{
    float: left;
}
#footer .f_top ul{
    float: right;
    display: flex;
    margin-top: 10px;
}
#footer .f_top:after{
    content:'';display:block;clear:both;
}
#footer .f_top li a{
    font-size: 16px;
    color: #a2a4a6;
}
#footer .f_top li{
    margin-right: 50px;
}
#footer .f_top li:last-child{
    margin-right: 0;
}
#footer .footer-info{
    margin-top: 30px;
}
#footer .footer-info li,#footer .footer-info li a{
    font-size: 15px;
    color: #a2a4a6;
}
#footer .footer-info ul{
    display: flex;
    flex-wrap: wrap;
}
#footer .footer-info li{
    position: relative;
    padding-right: 20px;
    margin-bottom: 10px;
}
#footer .footer-info li:after{
    content: '';
    display: inline-block;
    position: absolute;
    top: calc(50% - 6px);
    right: 10px;
    width: 1px;
    height: 12px;
    background: #a2a4a6;
}
#footer .footer-info li:first-child{
    color: #fff;
}
#footer .footer-info li:last-child{
    padding-right: 0;
    margin-right: 0;
}
#footer .footer-info li:last-child:after{
    display: none;
}
#footer .footer-info p{
    font-size: 15px;
    color: #a2a4a6;
    text-align: left;
    margin-top: 10px;
}



@media only screen and (max-width: 1200px) {
    #footer .footer-area{
        width: 100%;
        padding: 0 30px;
    }
}
@media only screen and (max-width:786px) {
    #footer .f_top .footer-logo{
        float: none;
        text-align: center;
    }	
    #footer .f_top ul{
        float: none;
        justify-content: center;
        margin-top: 20px;
    }
    #footer .f_top li{
        margin-right: 20px;
    }
    #footer .f_top li a{
        font-size: 14px;
        color: #a2a4a6;
    }
    #footer .footer-info ul{
        justify-content: center;
    }
    #footer .footer-info p{
        font-size: 14px;
        text-align: center;
    }
    #footer .footer-info li,#footer .footer-info li a{
        font-size: 14px;
    }
    #footer .footer-info li:after{
        top: calc(50% - 5px);
        height: 10px;
    }
}
@media only screen and (max-width:500px) {
}



/* Button (공통 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

.btn {
    text-transform: uppercase;
    border-radius: 0;
    line-height: 24px;
}

.btn:focus,
.btn:active {
    outline: none;
    color: #fff;
}

.btn-custom {
    border-radius: 3px;
    padding: 0.8em 1.8em;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
    text-transform: uppercase;
    background-color: #509591;
    border-color: #509591;
    color: #fff;
}

.btn-custom:hover,
.btn-custom:focus {
    background-color: #447774;
    border-color: #447774;
    color: #fff;
}

.btn-custom-outline {
    border-radius: 3px;
    padding: 0.8em 1.8em;
    color: #fff;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    text-transform: uppercase;
    background-color: transparent;
    border-color: #fff;
}

.btn-custom-outline:hover,
.btn-custom-outline:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, .5);
}

.btn-bar a {
    margin-right: 10px;
}

.form-control {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 3px;
    height: 38px;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-color: #333;
}


/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual {position: relative; overflow: hidden;}

.main-visual .carousel-caption {position: absolute; width:100%; top: 38%; text-align:center; z-index: 99;}
.main-visual .carousel-caption .slogan p{font-size: 22px; color: rgba(255,255,255,.6); line-height:1.4; letter-spacing:-0.03em;}
.main-visual .carousel-caption .slogan p br{display: none;}
.main-visual .carousel-caption .slogan .main-title{font-size: 50px; font-weight: 400;color: #fff;margin-top: 15px;}
.main-visual .carousel-caption .slogan .main-title b{color: #d1e0e9;}

#main_slide.owl-carousel {height: 100vh; display: block;}
#main_slide.owl-carousel .owl-item .item {height: 100vh;}
#main_slide.owl-carousel .owl-item .main-img01 {background: url('/images/kor20r-21-0436/main/visual_01.jpg') no-repeat bottom center/cover;}
#main_slide.owl-carousel .owl-item .main-img02 {background: url('/images/kor20r-21-0436/main/visual_02.jpg') no-repeat bottom center/cover;}
#main_slide.owl-carousel .owl-item .main-img03 {background: url('/images/kor20r-21-0436/main/visual_03.jpg') no-repeat bottom center/cover;}
#main_slide.owl-carousel .owl-dots {display:none; position: absolute; bottom: 120px; right: 0px; width: 100%; text-align: center;}
#main_slide.owl-carousel .owl-dots .owl-dot {background: none; border: none; display: inline-block;}
#main_slide.owl-carousel .owl-dots .owl-dot span {display:inline-block; width:16px; height:16px; border-radius:30px; background:#fff; margin:0px 5px;}
#main_slide.owl-carousel .owl-dots .owl-dot.active span {display:inline-block; width:40px; height:16px; border-radius:30px; background:#2d5b79;}

.extract-board .extract-article .extract-content .extract-title:hover{text-decoration:underline;}

#main_slide.owl-carousel .owl-nav .owl-prev {
    display: inline-block;
    width: 94px;
    height: 30px;
    background: url('/images/kor20r-21-0436/main/main_arrow_left.png') no-repeat center center;
    text-indent: -99px;
    position: absolute;
    top: 42%;
    left: 10%;
    z-index: 99;
    border: none;
    cursor: pointer;
}

#main_slide.owl-carousel .owl-nav .owl-next {
    display: inline-block;
    width: 94px;
    height: 30px;
    background: url('/images/kor20r-21-0436/main/main_arrow_right.png') no-repeat center center;
    text-indent: -99px;
    position: absolute;
    top: 42%;
    right: 10%;
    z-index: 99;
    border: none;
    cursor: pointer;
}

#main_slide.owl-carousel .owl-item .item a{display:block; margin:0 auto; width:300px; height:68px; line-height:68px; font-size:22px; font-weight:400; letter-spacing:-1px; color:#fff; text-align:center; border:2px solid #fff; margin-top:40px; background:rgba(0,0,0,0.15)}
#main_slide.owl-carousel .owl-item .item a:hover{background:#2d5b79; border:2px solid #2d5b79;}
#main_slide.owl-carousel .owl-item .item a img{position:relative; margin-right:10px; vertical-align:text-bottom;}
	
@media only screen and (max-width: 1200px) {
	#main_slide.owl-carousel .owl-nav .owl-prev {width:64px; height:21px; background-size:64px; top: 56%;}
	#main_slide.owl-carousel .owl-nav .owl-next {width:64px; height:21px; background-size:64px; top: 56%;}	
	#main_slide.owl-carousel {height: 680px;}
    #main_slide.owl-carousel .owl-item .item {height: 680px;}
	.main-visual .carousel-caption{top:40%;}
    .main-visual .carousel-caption .slogan .main-title br{display: block;}
}


@media only screen and (max-width: 980px) {
    #main_slide.owl-carousel {height: 560px;}
    #main_slide.owl-carousel .owl-item .item {height: 560px;}
	
	.main-visual .carousel-caption{top:35%;}
	
	#main_slide.owl-carousel .owl-item .item a{width:240px; height:60px; line-height:60px; font-size:18px; margin-top:30px;}
	#main_slide.owl-carousel .owl-item .item a img{width:22px;}
	
	#main_slide.owl-carousel .owl-dots {display:block; bottom:50px}
	#main_slide.owl-carousel .owl-nav{display:none;}
}


@media only screen and (max-width:768px) {
	.main-visual .carousel-caption .slogan p{font-size:18px;}
	.main-visual .carousel-caption .slogan .main-title{font-size:40px;}	
    .main-visual .carousel-caption .slogan p br{display: block;}
}
@media only screen and (max-width:500px) {
	.main-visual .carousel-caption{top:38%;padding: 0 30px;}
    #main_slide.owl-carousel {height:400px;}
    #main_slide.owl-carousel .owl-item .item {height:400px;}
	#main_slide.owl-carousel .owl-dots {bottom:40px}
	
	#main_slide.owl-carousel .owl-item .item a{width:180px; height:46px; line-height:46px; font-size:15px; margin-top:20px; border:1px solid #fff; font-weight:300;}
	#main_slide.owl-carousel .owl-item .item a:hover{border:1px solid #2d5b79;}
	#main_slide.owl-carousel .owl-item .item a img{width:18px;}
}



/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

#mainContainer {z-index: 555;}

@media only screen and (min-width:1201px){
	.main_section01, .main_section02, .main_section03{height:100vh;}
    .main_section04{}
    .main_section05{width: 1200px;margin: 30px auto;}
	#fullpage {position:relative;top:0px;z-index:9;width:100%;height:100%;}
	.fullsection{width:100%;height:100%;position:relative;top:100px;}
    .fullsection.full1{top: 0;}
	.pc-screen{position:absolute; bottom:0; min-height:280px;}
}

@media only screen and (max-width:1200px){
	.main_section01, .main_section02, .main_section03, .main_section04, .main_section05, .main_section06{height:auto;}
	.pc-screen{display:none;}
	.fullsection{height:auto;}
}

/*  퀵링크
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.quick {position:fixed;right:20px;top:52%;transform:translateY(-50%); z-index:100000}
.quick ul{position:relative;}
.quick ul:before{content:''; display:block; width:1px; height:134px;; background:#d3d3d3; position: absolute; left: 50%; top: 11px; z-index:-1}
.quick li {position:relative; margin-bottom:22px; border-radius:35px; width:12px; height:12px; background:#ccc; cursor:pointer;}
.quick li:last-child{margin-bottom:0;}

.quick li.on{background:#fff;}
.quick li.on:before{position: absolute; top:-8px; display: inline-block; padding-left:15px; height:30px; border-radius:100px; background:#2d5b79; z-index:-1; line-height:30px;  color:#fff; font-weight:400; font-size:15px;}
.quick li:before{position: absolute; top:-8px; display: inline-block; padding-left:15px; height:30px; border-radius:100px;  z-index:-1; line-height:30px;  color:#ccc; font-weight:400; font-size:15px;}
.quick li:nth-child(1):before{content: 'MAIN'; width:85px; left:-60px; }
.quick li:nth-child(2):before{content: '노무사'; width:85px; left:-65px;}
.quick li:nth-child(3):before{content: '서비스'; width:85px; left:-65px;}
.quick li:nth-child(4):before{content: '강의/교육'; width:102px; left:-84px;}
.quick li:nth-child(5):before{content: '오시는길'; width:100px; left:-78px; }

@media only screen and (max-width:1200px){
	.quick{display:none;}
}

/* IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.quick li:nth-child(1):before{line-height:31px;}
	.quick li:nth-child(1).on:before{line-height:31px;}
	.quick li.on:before{line-height:35px;}
	.quick li:before{line-height:35px;}
}

/* main_공통
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.fullsection{
    text-align: center;
}
.fullsection .inner{
    width: 1200px;
    margin:0 auto;
}
.fullsection .m_tit{
    margin-bottom: 70px;
}
.fullsection .m_tit dt{
    font-size: 40px;
    font-weight: 500;
}
.fullsection .m_tit dd{
    font-size: 18px;
    font-weight: 400;
    color: #7c8d98;
    margin-top: 20px;
}
.fullsection .m_btn{
    margin-top: 50px;
    text-align: center;
}
.fullsection .m_btn a{
    display: inline-block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #446176;
    font-weight: 400;
    border: 1px solid #446176;
}
.fullsection .m_btn a:hover{
    background: #446176;
    color: #fff;
}
@media only screen and (max-width: 1200px) {
    .fullsection .inner{
        width: 100%;
        padding: 0 30px;
    }
}
@media only screen and (max-width: 980px) {
    .fullsection .m_tit{
        margin-bottom: 40px;
    }
    .fullsection .m_btn{
        margin-top: 30px;
    }
}
@media only screen and (max-width: 768px) {
    .fullsection .m_tit dt{
        font-size: 30px;
    }
    .fullsection .m_tit dd{
        font-size: 16px;
        margin-top: 10px;
    }
    .fullsection .m_btn a{
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
}
/* main_section01 노무사
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main_section01 {
    width:100%;
    background: url(/images/kor20r-21-0436/main/sec1_bg.jpg) no-repeat 100% 50%;
    background-size: cover;
    padding: 5% 0;
}
.main_section01 .nomu_area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main_section01 .nomu_pic{
    width: 272px;
    border: 1px solid #e3e3e3;
    box-shadow: 0 3px 42px 0 rgba(10,10,10,.1);
    text-align: center;
}
.main_section01 .nomu_pic p{
    width: 100%;
}
.main_section01 .nomu_pic p img{
    width: 100%;
    height: auto;
}
.main_section01 .nomu_pic span{
    display: block;
    font-size: 18px;
    font-weight: 400;
    padding: 20px 0;
}
@media only screen and (max-width: 1200px) {
    .main_section01 {
        padding: 100px 0;
    }
    .main_section01 .nomu_pic{
        width: calc(25% - 20px);
    }
}

@media only screen and (max-width: 980px) {
    .main_section01 {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 768px) {
    .main_section01 .nomu_pic{
        width: calc(50% - 15px);
    }
    .main_section01 .nomu_area > div:first-child,.main_section01 .nomu_area > div:nth-child(2){
        margin-bottom: 30px;
    }
    .main_section01 .nomu_pic span{
        font-size: 16px;
        padding: 10px 0;
    }
}


@media only screen and (max-width: 500px) {
}



/* main_section02  서비스
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main_section02{
    width: 100%;
    background: url(/images/kor20r-21-0436/main/sec2_bg.jpg) no-repeat 50% 50%;
    background-size: cover;
    padding: 3% 0;
}
.main_section02 .m_tit dt{
    color: #fff;
}
.main_section02 .m_tit dd{
    color:#7d8e99;
}
.main_section02 .m_btn a{
    border: 1px solid #fff;
    color: #fff;
}
.main_section02 .m_btn a:hover{
    border: 1px solid #446176;
}
.main_section02 .service_area{
    background: rgba(45,91,121,.2);
    padding: 80px 0;
}
.main_section02 .service_area .inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main_section02 .service_area .inner > div{
    width: calc(33.33% - 20px);
}
.main_section02 .service_area dl{
    padding: 50px 0 30px 0;
    border-bottom: 1px solid rgba(255,255,255,.6);
}
.main_section02 .service_area dt{
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
}
.main_section02 .service_area dd{
    font-size: 16px;
    line-height: 1.3;
    color: rgba(255,255,255,.7);
}
.main_section02 .service_area dd br{
    display: none;
}
.main_section02 .service_btn{
    margin-top: 30px;
}
.main_section02 .service_btn a{
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    background: #2d5b79;
}
@media only screen and (max-width: 1200px) {
    .main_section02 {
        padding: 100px 0;
    }
    .main_section02 .service_area .inner > div{
        width: calc(33.33% - 15px);
    }
    .main_section02 .service_area dd br{
        display: block;
    }
}

@media only screen and (max-width:980px) {
    .main_section02 {
        padding: 70px 0;
    }
    .main_section02 .service_area{
        padding: 40px 0;
    }
    .main_section02 .service_area p img{
        width: auto;
        height: 60px;
    }
    .main_section02 .service_area dl{
        padding: 30px 0 20px 0;
    }
    .main_section02 .service_area dt{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .main_section02 .service_area dd{
        font-size: 14px;
    }
    .main_section02 .service_btn{
        margin-top: 20px;
    }
    .main_section02 .service_btn a{
        padding: 7px 15px;
        font-size: 14px;
    }
}
@media only screen and (max-width:768px) {
    .main_section02 .service_area dd br{
        display: none;
    }
    .main_section02 .service_area .inner > div{
        width: 100%;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255,255,255,.6);
    }
    .main_section02 .service_area .inner > div:last-child{
        margin-bottom: 0;
        border: 0;
        padding: 0;
    }
    .main_section02 .service_area dl{
        padding: 20px 0 0;
        border-bottom: 0;
    }
}
@media only screen and (max-width: 500px) {
}

/* main_section03 강의/교육
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main_section03{
    width: 100%;
    background: url(/images/kor20r-21-0436/main/sec3_bg.jpg) no-repeat 0 50%;
    background-size: cover;
    padding: 5% 0;
}
.main_section03 .edu_area ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main_section03 .edu_area li{
    width: calc(33.33% - 15px);
    background-size: cover;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 3px 42px 0 rgba(10,10,10,.1);
    padding: 360px 0 30px 0;
}
.main_section03 .edu_area li:first-child{
    background: url(/images/kor20r-21-0436/main/sec3_img1.jpg) no-repeat 70% 50%;
}
.main_section03 .edu_area li:nth-child(2){
    background: url(/images/kor20r-21-0436/main/sec3_img2.jpg) no-repeat 95% 0;
}
.main_section03 .edu_area li:last-child{
    background: url(/images/kor20r-21-0436/main/sec3_img3.jpg) no-repeat 50% 50%;
}
@media only screen and (max-width:1200px) {
    .main_section03 {
        padding: 100px 0;
    }
}

@media only screen and (max-width: 980px) {
    .main_section03 {
        padding: 70px 0;
    }
    .main_section03 .edu_area li{
        font-size: 22px;
        font-weight: 500;
        color: #fff;
        padding: 250px 0 30px 0;
    }
}

@media only screen and (max-width: 768px) {
    .main_section03 .edu_area li{
        width: 100%;
        font-size: 18px;
        padding: 150px 0 20px 0;
        margin-bottom: 30px;
    }
    .main_section03 .edu_area li:first-child{
        background: url(/images/kor20r-21-0436/main/sec3_img1_m.jpg) no-repeat 50% 50%;
    }
    .main_section03 .edu_area li:nth-child(2){
        background: url(/images/kor20r-21-0436/main/sec3_img2_m.jpg) no-repeat 50% 50%;
    }
    .main_section03 .edu_area li:last-child{
        background: url(/images/kor20r-21-0436/main/sec3_img3_m.jpg) no-repeat 50% 50%;
        margin: 0;
    }
}

/* main_section04 오시는길
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main_section04{
    width: 100%;
    background-color: #e6eaeb;
    padding: 2% 0;
}
.main_section04 .m_tit{
    margin-bottom: 30px;
}
.main_section04 .root_daum_roughmap{
    width: 100%;
}
.main_section04 .root_daum_roughmap .wrap_controllers{
    display: none;
}
.main_section04 .map_info{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main_section04 .map_info > div{
    width: 33.33%;
    padding: 0 20px;
    border-right: 1px solid rgba(0,0,0,.1);
}
.main_section04 .map_info dt{
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 15px 0;
}
.main_section04 .map_info dd{
    font-size: 16px;
    line-height: 22px;
    color: #8f8f8f;
}
.main_section04 .map_info > div:last-child{
    border: 0;
}
@media only screen and (max-width: 1200px) {
    .main_section04 {
        padding: 100px 0;
    }
}

@media only screen and (max-width: 980px) {
    .main_section04 {
        padding: 70px 0;
    }
    .main_section04 .map_info{
        margin-top: 40px;
    }
    .main_section04 .map_info dt{
        font-size: 18px;
        margin: 30px 0 15px 0;
    }
}
@media only screen and (max-width: 768px) {
    .main_section04 .map_info{
        margin-top: 30px;
    }
    .main_section04 .map_info > div{
        width: 100%;
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(0,0,0,.1);
    }
    .main_section04 .map_info > div:first-child{
        padding-top: 0;
    }
    .main_section04 .map_info > div:last-child{
        padding-bottom: 0;
    }
    .main_section04 .map_info .icon img{
        width: 60px;
        height: auto;
    }
    .main_section04 .map_info dt{
        font-size: 16px;
        margin: 10px 0;
    }
    .main_section04 .map_info dd{
        font-size: 14px;
        line-height: 18px;
    }
}

/* main_section05 오시는길
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#partner_slide{
    position: relative;
    overflow:hidden;
    padding: 0 50px;
}
#partner_slide .owl-stage-outer{
    overflow: hidden;
}
#partner_slide.owl-carousel {height: 80px; display: block;}
#partner_slide.owl-carousel .owl-item .item {height: 80px;}
#partner_slide.owl-carousel .owl-item .item img {width: auto;height: 80px;border: 1px solid #e5e5e5;}
#partner_slide.owl-carousel .owl-nav .owl-prev {
    display: inline-block;
    width: 14px;
    height: 23px;
    background: url('/images/kor20r-21-0436/main/partner_arrow_l.png') no-repeat center center;
    text-indent: -9999px;
    position: absolute;
    top: calc(50% - 11px);
    left: 0;
    z-index: 9999;
    border: none;
    cursor: pointer;
}

#partner_slide.owl-carousel .owl-nav .owl-next {
    display: inline-block;
    width: 14px;
    height: 23px;
    background: url('/images/kor20r-21-0436/main/partner_arrow_r.png') no-repeat center center;
    text-indent: -9999px;
    position: absolute;
    top: calc(50% - 11px);
    right: 0;
    z-index: 9999;
    border: none;
    cursor: pointer;
}
@media only screen and (max-width: 1200px) {
    .main_section05 {
        width: 100%;
        padding: 50px 30px;
    }
}
@media only screen and (max-width: 768px) {
    #partner_slide{
        padding: 0 20px;
    }
}