@charset "utf-8";

/* Font */
@font-face {
	font-family: 'Pretendard';
	font-weight: 900;
	font-display: swap;
	src: local('Pretendard Black'), url('/data/css/Pretendard-Black.woff2') format('woff2'), url('/data/css/Pretendard-Black.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 800;
	font-display: swap;
	src: local('Pretendard ExtraBold'), url('/data/css/Pretendard-ExtraBold.woff2') format('woff2'), url('/data/css/Pretendard-ExtraBold.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 700;
	font-display: swap;
	src: local('Pretendard Bold'), url('/data/css/Pretendard-Bold.woff2') format('woff2'), url('/data/css/Pretendard-Bold.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 600;
	font-display: swap;
	src: local('Pretendard SemiBold'), url('/data/css/Pretendard-SemiBold.woff2') format('woff2'), url('/data/css/Pretendard-SemiBold.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 500;
	font-display: swap;
	src: local('Pretendard Medium'), url('/data/css/Pretendard-Medium.woff2') format('woff2'), url('/data/css/Pretendard-Medium.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 400;
	font-display: swap;
	src: local('Pretendard Regular'), url('/data/css/Pretendard-Regular.woff2') format('woff2'), url('/data/css/Pretendard-Regular.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 300;
	font-display: swap;
	src: local('Pretendard Light'), url('/data/css/Pretendard-Light.woff2') format('woff2'), url('/data/css/Pretendard-Light.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 200;
	font-display: swap;
	src: local('Pretendard ExtraLight'), url('/data/css/Pretendard-ExtraLight.woff2') format('woff2'), url('/data/css/Pretendard-ExtraLight.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 100;
	font-display: swap;
	src: local('Pretendard Thin'), url('/data/css/Pretendard-Thin.woff2') format('woff2'), url('/data/css/Pretendard-Thin.woff') format('woff');
}

@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');
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700,800,900');

/* 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;
    font-family: 'Pretendard', sans-serif;
}

body,
th,
td,
input,
select,
textarea,
button {
    font-size: 15px;
    color: #333;
	font-weight:400;
}

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: #137bc2;
}

.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%;
}

    .login-bar {
        padding: 21px 0;
        text-align: center;
        z-index: 999;
        position: relative;
    }
    .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: #0b7c02;
        border: 1px solid #1c9e75;
    }
    .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: 35px;
        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: #fff;
        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);
		background:#0d608e;
    }
    .nav-btn.nav-close span:nth-child(2) {
        margin-left: 0;
        width: 0;
		background:#0d608e;
    }
    .nav-btn.nav-close span:nth-child(3) {
        top: 50%;
        transform: rotate(-45deg);
		background:#0d608e;
    }
	
@media only screen and (min-width: 1200px) {
    #header {
        z-index: 999;
        width: 100%;
        padding: 0px 100px;
    	position:absolute;
		transition:all 0.5s;
		border-bottom:1px solid rgba(255,255,255,0.4);
    }
    #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: 80px;
		text-align: center;
    }
	#L_SITE_LOGO {float: left;}
    #header h1 {
        float: left;
		padding-top:16px;
		position: absolute;
    }
    #header h1 a {
        display: block;
    }
    #header h1 a > img {
        vertical-align: baseline;
    } 

    .nav-bg {
        z-index:-1;
        display: none;
        position: absolute;
        top: 0px;
        left: -500%;
        width: 1000%;
        height:260px;
        background: #fff;
		box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    }

    #nav {
		display:inline-block;
		vertical-align: top;
		z-index: 999;
		margin-left:220px;
        margin-top:10px;
    }
    .navigation:after {
        content: "";
        display: block;
        clear: both;
    }
    .navigation > li {
        position: relative;
        float: left;
        width: 170px;
        text-align: center;
    }
    .navigation > li:last-child {width:200px;}
    .navigation .main-menu {
        display: block;
        width: 100%;
        font-weight: 400;
        font-size: 18px;
        color: #fff;
       line-height: 65px;
	   padding-top:3px;
	    border-bottom:3px solid rgba(255,255,255,0);
    }
	#header.sub_page .main-menu {color:#333;}

    .navigation .sub-menu {
        display: none;
        z-index: 999;
        position: absolute;
        top: 80px;
        left: 0;
        padding: 20px 0;
        width: 170px;
        height: 180px;
    }
    .navigation > li:last-child .sub-menu {width:200px;}
    .navigation .sub-menu a {
        display: block;
        text-align: center;
        line-height: 35px;
        font-size: 15px;
        color: #666;
    }
    .navigation .sub-menu .intro-menu {
        display: none;
    }
    .navigation .sub-menu a:hover {    }
	.navigation > li:hover .main-menu {color:#0d608e !important; border-bottom:3px solid #0d608e; z-index:1000;}
	.navigation > li:hover .sub-menu a {color:#666;}
	.navigation > li:hover .sub-menu a:hover {background:#ecf3f6; color:#0d608e;}
	
/* 서브상단메뉴 */

	#L_SITE_LOGO.sub_page a { display: inline-block; background: url('/images/mtl01r-21-0040/common/logo_color.png') no-repeat center center/cover; width:290px; height:44px;}
	#L_SITE_LOGO.sub_page a > img {display:none;}	

	#header.sub_page h1 a {display: block; background: url('/images/mtl01r-21-0040/common/logo_color.png') no-repeat center center/cover; width:290px; height:44px;}
	#header.sub_page h1 a img {display:none;}
    
	.navigation.sub_page .main-menu {color: #fff;}
	.nav-btn.sub_page > span {background: #fff;}
	.nav-btn.sub_page.nav-close span{background: #0478d1;}
}

@media only screen and (max-width: 1520px) {
	#header { padding: 0px 30px;}
}

@media only screen and (max-width: 1200px) {
    #header {
        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: 10px 20px;
        height: 65px;
    }
    #header h1 a {
        display: block;
		background: url('/images/mtl01r-21-0040/common/logo_color.png') no-repeat center center/cover; width:290px; height:44px;
    }
    #header h1 img {
	display:none;
        width: auto;
        vertical-align: baseline;
    }
    .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-btn span {
		background:#0478d1;
    }
    #nav {
        z-index: 888;
        position: fixed;
        right: -100%;
        display: block;
        padding: 65px 0 20px;
        width: 70%;
        height: 100%;
        background: #fff;
    }
	.navigation > li {width: 100%;}
	.navigation .sub-menu {width: 100%;} 
    .navigation .main-menu {
        display: block;
        padding: 0 30px;
        width: 100%;
        line-height: 45px;
        font-weight: 400;
        font-size: 18px;
        color: #000;
        transition: none;
    }
	..navigation > li a:hover {color:#0f79c5;}
    .navigation li.active .main-menu {
        background: #0478d1;
        color: #fff;
    }
    .navigation .sub-menu {
        display: none;
        padding: 10px 0;
        background: #f1f1f1;
    }
    .navigation .sub-menu a {
        display: block;
        padding: 0 30px;
        line-height: 38px;
        font-size: 16px;
        color: #555;
    }
    .navigation .sub-menu a:before {
        content: "";
        display: inline-block;
        margin: 0 5px 0 0;
        width: 4px;
        height: 1px;
        vertical-align: middle;
        background: #888;
    }
    .navigation .sub-menu a:hover {
        color: #0478d1;
    }
    .navigation .sub-menu a:hover:before {
        background: #0478d1;
    }
}

@media only screen and (max-width: 768px) {
    #header h1 {
        padding: 10px 10px;
    }
}
@media only screen and (max-width: 500px) {
    #header h1 {
        padding: 15px 10px;
    }
    #header h1 a {
        display: block;
		background: url('/images/mtl01r-21-0040/common/logo_color.png') no-repeat center center/cover; width:237px; height:36px;
    }
	#L_SITE_LOGO.sub_page a { background: url('/images/mtl01r-21-0040/common/logo_color.png') no-repeat center center/cover; width:237px; height:36px;}
	#header.sub_page h1 a {background: url('/images/mtl01r-21-0040/common/logo_color.png') no-repeat center center/cover; width:237px; height:36px;}
}


@media only screen and (min-width: 1201px) {
	.login-menu{position:absolute; top:10px; right:0;}
	.login-menu ul{text-align:right; line-height:0; font-size:0;}
	.login-menu li{display:inline-block; margin-left:10px; padding-left:10px; border-left:1px solid #eaeaea; line-height:8px; font-size:12px;}
	.login-menu li:first-child{margin-left:0; padding-left:0; border-left:0;}
	.login-menu li a{line-height:8px; font-size:10px; color:#fff;}
    #header.sub_page .login-menu li a {color:#666;}
}
@media only screen and (max-width: 1200px) {
    .login-menu {position:relative;}
	.login-menu ul{margin:0 -5px; padding:50px 10px 10px; text-align:center;}
	.login-menu ul:after{content:""; display:block;	clear:both;}
	.login-menu li{float:left; margin:0 5px; width:calc(33.33% - 10px);}
	.login-menu li a{display:block; padding:8px 5px; text-align:center; width:100%; line-height:1; font-size:13px; color:#666; border:1px solid #aaa; box-sizing:border-box;}
}



/* 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;
}


/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer{width:100%; background-color:#222; padding:60px 0;}

.footer-area{position:relative; display:table; margin:0 auto; width:1200px; padding-left:350px; box-sizing:border-box;}
.footer-logo{position:absolute; top:0;left:0;}

.footer-content{position:relative; padding-top:5px; margin-bottom:20px; }
.footer-menu li{position:relative; display:inline-block; margin-left:15px; }
.footer-menu li:first-child{margin-left:0;}
.footer-menu li a{font-size:14px;color:#fff;}

.footer-info{position:relative; padding-top:10px;}
.footer-info{line-height:20px;}
.footer-info li{font-size:14px; padding-top:10px; color:#c1c1c1;}
.footer-info li:first-child{padding-top:0;}
.footer-info span{color:#666; margin:0 3px;}
.footer-info .tel{position:absolute; right:0; top:15px; font-size:24px; color:#ddd; font-weight:400;}
.footer-info .tel:after{content:""; display:block;clear:both;}
.footer-info .tel a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

@media only screen and (max-width:1200px){
    .footer-area{width:100%; padding:0 20px;}
	.footer-logo{position:relative; padding-bottom:20px; text-align:center;}
	.footer-content{text-align:center;}
    .footer-info {text-align:center;}
	.footer-info .tel{font-size:20px;}
}

@media only screen and (max-width:767px){
	#footer{padding:30px 0;}
	.footer-info .tel{position:relative; top:0; text-align:center; margin-bottom:15px;}

}
@media only screen and (max-width:500px){
	.footer-menu li{margin-left:5px; }
	.footer-menu li a{font-size:14px;}
	.footer-info li{font-size:13px; display:initial;}
	.footer-info span{margin:0;}
	.footer-info .tel{font-size:18px;}
}

/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual {position: relative; overflow: hidden;}
.carousel-caption {position: absolute; width:1200px; top:40%; left:50%; margin-left: -600px; z-index: 99; text-align:center;}
.carousel-caption .slogan {position:relative; display:inline-block; padding:20px 60px; background:rgba(0,0,0,0.27);}
.carousel-caption .slogan:before {content: ''; display:block;  position:absolute; top:0; left:0; width:46px; height:40px; background:url(/images/mtl01r-21-0040/main/main_visual_txt1.png) no-repeat center center;}
.carousel-caption .slogan:after {content: ''; display:block;  position:absolute; right:0; bottom:0; width:46px; height:40px; background:url(/images/mtl01r-21-0040/main/main_visual_txt2.png) no-repeat center center;}
.carousel-caption .slogan p {font-size:50px; color: #fff; font-weight: 500; line-height:1.2; letter-spacing:-2px; text-align:center; word-break:keep-all;}
.carousel-caption .slogan p br {display:none;}
.carousel-caption .slogan .main-title {font-size:60px; font-weight:400; margin-top:5px;}
.carousel-caption .slogan .main-title strong {font-weight:800;}

#main_slide.owl-carousel {height:760px; display: block;}
#main_slide.owl-carousel .owl-item .item {height:760px;}
#main_slide.owl-carousel .owl-item .main-img01 {background: url('/images/mtl01r-21-0040/main/main_visual1.jpg') no-repeat center center/cover;}
#main_slide.owl-carousel .owl-item .main-img02 {background: url('/images/mtl01r-21-0040/main/main_visual2.jpg') no-repeat center center/cover;}
#main_slide.owl-carousel .owl-item .main-img03 {background: url('/images/mtl01r-21-0040/main/main_visual3.jpg') no-repeat center center/cover;}
#main_slide.owl-carousel .owl-dots {position: absolute; bottom:60px; 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:18px; height:18px; border-radius:30px; background:#fff; margin:0px 5px;}
#main_slide.owl-carousel .owl-dots .owl-dot.active span {display:inline-block; width:40px; height:18px; border-radius:30px; background:#0d608e;}

#main_slide.owl-carousel .owl-item .main-img03 .slogan p {font-size:40px;}
#main_slide.owl-carousel .owl-item .main-img03 .slogan .main-title {font-size:60px;}

.extract-board .extract-article .extract-content .extract-title:hover{text-decoration:underline;}

@media only screen and (max-width: 1200px) {
	.carousel-caption {width: 100%; left: 0%; margin-left: 0px; padding:0px 40px;}
}

@media only screen and (max-width: 980px) {
	#main_slide.owl-carousel {height: 520px;}
	#main_slide.owl-carousel .owl-item .item {height: 520px;}
	#main_slide.owl-carousel .owl-dots{bottom:80px;}
	.carousel-caption{top:32%;}
	.carousel-caption .slogan p {font-size: 32px; margin-left:0;}
	.carousel-caption .slogan .main-title{font-size:46px;}
	#main_slide.owl-carousel .owl-item .main-img03 .slogan p {font-size:32px;}
	#main_slide.owl-carousel .owl-item .main-img03 .slogan .main-title {font-size:46px;}
	.carousel-caption .slogan:before{display:none;}
	.carousel-caption .slogan:after{display:none;}
}
@media only screen and (max-width: 768px) {
	.carousel-caption{top:24%;}
	.carousel-caption .slogan {padding:20px;}
	.carousel-caption .slogan p {font-size:22px;letter-spacing:-1px;}
    .carousel-caption .slogan p br {display:block;}
	.carousel-caption .slogan .main-title{font-size:32px;}
	#main_slide.owl-carousel .owl-dots{bottom:40px;}
	#main_slide.owl-carousel .owl-item .main-img03 .slogan p {font-size:22px;}
	#main_slide.owl-carousel .owl-item .main-img03 .slogan .main-title {font-size:32px;}
	#main_slide.owl-carousel .owl-dots .owl-dot span {width:15px; height:15px;}
	#main_slide.owl-carousel .owl-dots .owl-dot.active span {height:15px;}
}

@media only screen and (max-width:500px) {
	#main_slide.owl-carousel .owl-dots{bottom:20px;}
	#main_slide.owl-carousel {height:400px;}
    #main_slide.owl-carousel .owl-item .item {height:400px;}
    #main_slide.owl-carousel .owl-item .main-img01, #main_slide.owl-carousel .owl-item .main-img02{background-position:70% center;}
	
	.carousel-caption {padding:0px;}
	.carousel-caption .slogan p{text-align:center;}
}


/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

#mainContainer {z-index: 555;}
.main_section_title { font-size: 30px; color: #0d608e; font-weight:600; margin-bottom:45px; letter-spacing:-0.02em; word-break:keep-all;}

.btn-area {}
.btn-area a {display:block; width:260px; height:60px; line-height:56px; font-size:18px; font-weight:500; color:#fff; padding:0 30px 0 40px; text-align:left; margin:0 auto;background: linear-gradient(to right, #0f5c8f 0%, #1e4594 100%); -moz-border-radius:40px; -webkit-border-radius:40px; border-radius:40px; transition: .4s; border:2px solid rgba(255,255,255,0);}
.btn-area a i {float:right; color:#fff; font-size:20px; vertical-align:top; margin-top:18px;}
.btn-area a:hover {background:#fff; color:#0d608e; border:2px solid #0d608e;}
.btn-area a:hover i {color:#0d608e;}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 768px) {
	.btn-area a {width:220px; height:50px; line-height:44px; font-size:15px;}
	.btn-area a i {margin-top:14px; font-size:16px;}
}

@media only screen and (max-width: 480px) {
	.main_section_title {font-size:26px; margin-bottom:30px;}
	.btn-area a {width:200px; padding:0 20px 0 30px;}
}


/* main_section01
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main_section01 {width:100%; padding:110px 0px; background:#ecf3f6 url('/images/mtl01r-21-0040/main/section1_bg.jpg') no-repeat center center/cover;}
.section01_inner {width:1200px; margin:0 auto;}
.slide-warp dl:after{content:""; display:block; clear:both;}
.slide-warp dt:after{content:""; display:block; clear:both;}

.slide-warp dt {float:left; width:25%;  padding:10px; text-align: center; position:relative; margin-bottom:40px; transition: .4s; cursor:pointer;}
.slide-warp dt span {width:240px; height:240px; background-size:cover; background-position:center center; background-repeat:no-repeat; border-radius:100%;  box-shadow: 5px 10px 10px rgba(0,0,0,.2); display:block; margin:0 auto; cursor:pointer;}
.slide-warp dt p {font-size:22px; color:#333; margin-top:20px; font-weight:500;}
.slide-warp dt.on p{color:#0d608e;}
	
.slide-warp dt:nth-child(1).on span {background-image:url('/images/mtl01r-21-0040/main/main_icon1.png')}
.slide-warp dt:nth-child(2).on span {background-image:url('/images/mtl01r-21-0040/main/main_icon2.png')}
.slide-warp dt:nth-child(3).on span {background-image:url('/images/mtl01r-21-0040/main/main_icon3.png')}
.slide-warp dt:nth-child(4).on span {background-image:url('/images/mtl01r-21-0040/main/main_icon4.png')}


@media only screen and (max-width: 1200px) {
	.main_section01 {width: 100%; padding:60px 20px;}
	.section01_inner {width:100%;}
	.slide-warp dt span {width:220px; height:220px;}
	.slide-warp dt p {font-size:18px;}
}
@media only screen and (max-width: 980px) {
	.slide-warp dt {margin-bottom:40px;}
	.slide-warp dt span{width:170px; height:170px;}
}
@media only screen and (max-width: 768px) {
	.slide-warp dt {width:50%; margin-bottom:0px; padding:0 10px;}
	.slide-warp dt:nth-child(1) {margin-bottom:30px;}
	.slide-warp dt:nth-child(2) {margin-bottom:30px;}
	.slide-warp dt span{width:200px; height:200px;}
	.slide-warp dt p {font-size:18px; margin-top:15px;}
}

@media only screen and (max-width: 500px) {
	.main_section01 {padding:50px 20px;  background-image:none;}
	.slide-warp dt span{width:140px; height:140px;}
}

/* main_section03 링크
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main_section03 {padding:50px 0px; display:flex; justify-content: center; align-items: center; flex-wrap: wrap;}
.main_section03 a {border:1px solid #eaeaea; width:260px; text-align:center; height:70px; display:flex; justify-content: center; align-items: center; flex-wrap: wrap;}
.main_section03 a + a {margin-left:40px;}

@media only screen and (max-width: 768px) {
    .main_section03 {padding:30px 0px;}
    .main_section03 a {width:220px;}
    .main_section03 a + a {margin-left:20px;}
}

@media only screen and (max-width: 500px) {
    .main_section03 a {width:46%;}
    .main_section03 a + a {margin-left:2%;}
    .main_section03 a img {max-width:90%;}
}

/* main_section04
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main_section04 {padding:100px 40px 160px; background: url('/images/mtl01r-21-0040/main/main_s4_bg.jpg') no-repeat center center/cover;}
.main_section04_inner {position:relative; width:1200px; margin:0 auto;}
.main_section04 h2 {margin:0 0 20px;}
#daumRoughmapContainer1781834941306 {width:100%; z-index:1;}
.main_section04 .map {width:800px; height:420px; background:#fff; box-shadow:0px 10px 30px rgba(0,0,0,0.1); transition: .4s; overflow:hidden;}
.main_section04 .txt-area {position:absolute; top:290px; right:0; width:500px; height:280px; background:#0d608e; color:#fff; padding:30px 40px 0px;box-shadow:0px 10px 20px rgba(0,0,0,0.1); transition: .4s; z-index:2;}
.main_section04 .txt-area dl {}
.main_section04 .txt-area dl dt {position:relative; width:100%; border-bottom:1px solid #357ba1; font-size:20px; font-weight:500; padding-left:14px; line-height:44px; margin:0 0 10px;}
.main_section04 .txt-area dl dt:before {position:absolute; content:'·'; top:10px; left:0; font-size:18px; font-weight:500;}
.main_section04 .txt-area dl dd {font-size:16px; padding-left:14px; line-height:150%;margin:0 0 30px; word-break:keep-all;}


@media only screen and (max-width: 1200px) {
	.main_section04  {padding:100px 40px;}
	.main_section04_inner {width:100%; overflow:hidden;}
	.main_section04 .map {float:left; width:60%;}
	.main_section04 .txt-area {float:left; position:relative; top:auto; width:40%; height:420px; padding:30px}
	.main_section04 .txt-area dl dd {margin:0 0 20px;}
}
@media only screen and (max-width:768px) {
	.main_section04  {padding:60px 20px;}
	.main_section04 .map {float:none; width:100%; height:360px;}
	.main_section04 .txt-area {float:none; width:100%; padding:20px 30px 10px; height:auto;}
	.main_section04 .txt-area dl dt {font-size:16px;}
	.main_section04 .txt-area dl dd {font-size:14px;} 
}
@media only screen and (max-width: 500px) {
	.main_section04 {padding:40px 20px;}
	.main_section04 h2 {text-align:center;}
	.main_section04 .txt-area {padding:20px 20px 10px;}
}


/* main_section05
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main_section05 {width:100%; padding:100px 20px; position: relative; overflow:hidden; text-align:center;}
.main_section05 h2 {position:relative; display:inline-block; margin-top:50px; background:#0d608e; color:#fff; padding:8px 120px 6px; border-radius:40px; cursor:pointer; transition: .4s;}
.main_section05 h2:hover {background:#07324a;}

@media only screen and (max-width: 1200px) {
    .main_section05 h2 {padding:8px 100px 6px;}
}

@media only screen and (max-width: 768px) {
    .main_section05 {width:100%; padding:80px 20px 50px;}
    .main_section05 img {max-width:80%;}
    .main_section05 h2 {padding:8px 50px 6px; font-size:22px;}
}

@media only screen and (max-width: 500px) {
}


		