@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');
@font-face {
    font-family: 'Ridibatang';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.0/RIDIBatang.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

/* 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;
}

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: #071a33;
}

.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%;
}

/* Top utility bar */
#header > .top-util {
    position: relative;
    width: 100%;
    height: 26px;
    margin: 0;
    padding: 0 80px;
    box-sizing: border-box;
    background: #071a33;
    border-bottom: 1px solid rgba(255,255,255,.15);
}
#header > .top-util .login-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
#header > .top-util .login-bar > li {
    position: relative;
    margin: 0;
    padding: 0 9px;
}
#header > .top-util .login-bar > li:last-child { padding-right: 0; }
#header > .top-util .login-bar > li > a {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    white-space: nowrap;
}
#header > .top-util .login-bar > li + li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 9px;
    background: rgba(255,255,255,.25);
    transform: translateY(-50%);
}
#header > .top-util .login-bar > li > a:hover { color: #fff; }

/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (min-width: 1280px) {
    #header {
        z-index: 999;
        width: 100%;
        padding: 0;
        height: 106px;
    	position: fixed;
		transition:all 0.5s;
        background:rgba(7,26,51,0.8);
    }
    #header:after {
		display:block;
		content:"";
		clear:both;
	}
	#header.scroll_on {background: #fff; transition:all 0.5s; border-bottom:1px solid #eaeaea;}
	#header.sub_page:after {content:''; display:block; width:100%; height:1px; background:#eaeaea; position:absolute; left:0;}
    #header > .top-util + div {
        position: relative;
        margin: 0 auto;
        width: 100%;
        height: 80px;
        padding: 0 80px;
        box-sizing: border-box;
		text-align: center;
    }
	#L_SITE_LOGO {float: left;}
    #header h1 {
        float: left;
		padding-top:17px;
		position: absolute;
    }
    #header h1 a {
        display: block;
        width:195px; height:48px;
        }
    #header h1 a > img {
        vertical-align: baseline;
    } 
	#header.scroll_on h1 a, #header.sub_page h1 a {background:url(/images/mtl01r-20-0043/common/logo_color1.png) no-repeat left center/contain;}
	#header.scroll_on h1 a img, #header.sub_page h1 a img {display:none;}
	.gnb {
		float: right;
    	right: 80px;
        top: 31px;
        position: absolute;
	}
	.all_menu {
        display: inline-block;
        width: 17px;
        height: 17px;
	}
	.all_menu > span {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #fff;
        float: left;
	}

.all_menu > span:first-child {margin:0px 1px 1px 0px; }
.all_menu > span:nth-child(3) {margin:0px 1px 0px 0px;}
#header.scroll_on .all_menu span {background: #1e1e1e;}

.lang_select { font-size:14px; float: right; position: absolute; right: 130px; top: 32px;}
.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:#999;}
.nav-btn {
        z-index: 999;
        position: absolute;
        top: 20px;
        right: 32px;
        width: 35px;
        height: 29px;
        cursor: pointer;
		display: none;
    }
    .nav-btn span {
        position: absolute;
        left: 50%;
        display: inline-block;
        margin-left: -17.5px;
        width: 35px;
        height: 3px;
        background: #0b7c02;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }
    .nav-btn span:nth-child(1) {
        top: 0;
    }
    .nav-btn span:nth-child(2) {
        top: 10px;
    }
    .nav-btn span:nth-child(3) {
        top: 21px;
    }
    .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);
    }
    .all-btn {
        z-index: 999;
        display: block;
        position: absolute;
        top: 0px;
        right: 0px;
        width: 75px;
        height: 65px;
        background: #0b7c02;
        cursor: pointer;
    }
    .all-btn span {
        position: absolute;
        left: 50%;
        display: block;
        margin-left: -15px;
        width: 30px;
        height: 3px;
        background: #fff;
        transition: .2s all linear;
    }
    .all-btn span:nth-child(1) {
        top: 20px;
    }
    .all-btn span:nth-child(2) {
        top: 30px;
    }
    .all-btn span:nth-child(3) {
        top: 40px;
    }
    .all-btn.all-close span:nth-child(1) {
        top: 50%;
        transform: rotate(45deg);
    }
    .all-btn.all-close span:nth-child(2) {
        margin-left: 0;
        width: 0;
    }
    .all-btn.all-close span:nth-child(3) {
        top: 50%;
        transform: rotate(-45deg);
    }
    .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:block;
        margin-left:215px;
        margin-right:150px;
		vertical-align: top;
		z-index: 999;
    }
    .navigation {display:flex; justify-content:center; margin:0;}     
    .navigation:after {
        content: "";
        display: block;
        clear: both;
    }
    .navigation > li {
        position: relative;
        float: left;
        flex-shrink:1;
        min-width:0;
        width: 100px;
        text-align: center;
    }
    /*.navigation > li:nth-of-type(5) {width:120px;}*/
    .navigation .main-menu {
        display:flex; justify-content: center; align-items: center;
        width: 100%;
        font-weight: 400;
        font-size: 16px;
        color: #1e1e1e;
       line-height:120%;
       height:80px;
    }
    .navigation > li:hover a {color:#C9A45C;}
	.navigation > li:hover:before {
		content:''; 
   		display:block;
        width:100%;
        height:2px; 
        background:#C9A45C;
		position: absolute;
    	bottom: 0;
	}
    .navigation .sub-menu {
        display: none;
        z-index: 999;
        position: absolute;
        top: 80px;
        left: 0;
        padding: 20px 0;
        width: 100px;
        height: 340px;
    }
    /*.navigation > li:nth-of-type(5) .sub-menu {width:120px;}*/
    .navigation .sub-menu a {
        display: block;
        text-align: center;
        line-height: 130%;
        letter-spacing: -1px;
        font-size: 14px;
        color: #666;
        padding:5px 0;
    }
    .navigation .sub-menu .intro-menu {
        display: none;
    }
    .navigation .sub-menu a:hover {
		color:#C9A45C;
    }
	
/* 서브상단메뉴 */
	#L_SITE_LOGO.sub_page a { display: inline-block; background: url('/data/file/logo_w_1.png') no-repeat center center/cover; width: 195px; height:48px;}
	#L_SITE_LOGO.sub_page a > img {display:none;}	
	.navigation.sub_page .main-menu {color: #fff;}
	.all_menu.sub_page > span {background: #fff;}
	.lang_select.sub_page > li {border-right: 1px solid #fff;}
	.lang_select.sub_page > li:last-child {border-right:none;}
	.lang_select.sub_page > li a.active {color: #fff;}

}

@media only screen and (min-width: 1500px) {
    .navigation > li {
        width: 90px;
    }
    .navigation > li:nth-of-type(2) {width:200px;}
    .navigation > li:nth-of-type(3) {width:160px;}
    .navigation > li:nth-of-type(4) {width:130px;}
    .navigation > li:nth-of-type(5) {width:140px;}

    .navigation .sub-menu {
        width: 90px;
    }
    .navigation > li:nth-of-type(2) .sub-menu {width:200px;}
    .navigation > li:nth-of-type(3) .sub-menu {width:160px;}
    .navigation > li:nth-of-type(4) .sub-menu {width:130px;}
    .navigation > li:nth-of-type(5) .sub-menu {width:140px;}
}

@media only screen and (min-width: 1600px) {
    .navigation > li {
        width: 110px;
    }
    .navigation > li:nth-of-type(2) {width:220px;}
    .navigation > li:nth-of-type(3) {width:180px;}
    .navigation > li:nth-of-type(4) {width:150px;}
    .navigation > li:nth-of-type(5) {width:160px;}

    .navigation .sub-menu {
        width: 110px;
    }
    .navigation > li:nth-of-type(2) .sub-menu {width:220px;}
    .navigation > li:nth-of-type(3) .sub-menu {width:180px;}
    .navigation > li:nth-of-type(4) .sub-menu {width:150px;}
    .navigation > li:nth-of-type(5) .sub-menu {width:160px;}
}

@media only screen and (min-width: 1820px) {

    .navigation .main-menu {
        font-size: 17px;
    }
    .navigation .sub-menu a {
        font-size: 16px;
    }
    .nav-bg {
        height: 260px;
    }
}

@media only screen and (max-width: 1279px) {
    #header {
        z-index: 666;
        width: 100%;
        height: 89px;
        background: #071a33;
	    position: fixed;
		padding: 0px;
    }
    #header > .top-util + div {
        position: relative;
        width: 100%;
        height: 65px;
        padding: 0;
    }
    #header h1 {
        float: left;
		padding:0;
        margin:0;
        left:20px;
        top:50%;
        transform:translateY(-50%);
		position: absolute;
    }
    #header h1 a {
        display: block;
        width:162px; height:40px;
        background:url("/data/file/logo_w.png") no-repeat left center/contain; 
        }
    #header h1 a > img {
        display:none;
    } 
    
    #header > .top-util { height:24px; padding:0 15px; }
    #header > .top-util .login-bar > li { padding:0 6px; }
    #header > .top-util .login-bar > li:last-child { padding-right:0; }
    #header > .top-util .login-bar > li > a { font-size:9px; line-height:23px; }
    .gnb { display:none; }
    .nav-btn {
        z-index: 999;
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        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;
        top: 56.5px;
    }
    .nav-btn.nav-close span {
        background:#071a33;
    }
    .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);
    }
    .nav-bg {
        z-index: 777;
        display: none;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
    #nav {
        z-index: 888;
        position: fixed;
        right: -100%;
        display: block;
        top: 0;
        padding: 89px 0 20px;
        box-sizing: border-box;
        overflow-y: auto;
        width: 80%;
        height: 100%;
        background: #fff;
    }
	.navigation {margin:auto;} 
	.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 .main-menu br {display:none;}
    .navigation li.active .main-menu {
        background: #071a33;
        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 br {display:none;}
    .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: #071a33;
    }
    .navigation .sub-menu a:hover:before {
        background: #071a33;
    }
	.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; margin-bottom:10px;}
    .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:#071a33;}
}

@media only screen and (max-width: 768px) {
    #header h1 {
        left: 15px;
    }
    .nav-btn {
        right: 20px;
    }
    #header h1 a {
        width:162px;
        background-size:contain; 
    }
}


@media only screen and (max-width: 420px) {
    #header h1 { left:10px; }
    #header h1 a { width:162px; height:40px; }
    .nav-btn { right:12px; }
    #header > .top-util { padding:0 8px; }
}

/* 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 {
    padding: 35px 0px;
    width: 100%;
    background: #071a33;
    color: #999;
}
.footer-area {width:1200px; margin:0 auto;}


.footer_top_inner:after {
    content: '';
    display: block;
    clear: both;
	margin-bottom:50px;
}

.footer_top_inner .foot-logo {
    float: left;
}

.footer_top_inner > ul {float: right;}
.footer_top_inner > ul:after {content: ''; display: block; clear: both;}
.footer_top_inner > ul li {float: left; margin-right: 8px;}
.footer_top_inner > ul li:last-child {margin-right: 0px;}
.foot-info p {line-height: 130%; margin:0 0 20px;}
.footer-menu li {float: left; color: #fff; padding-right:15px; margin-right:15px; border-right:1px solid #fff; line-height: 1;}
.footer-menu li > a {line-height: 1;}
.footer-menu li:last-child { padding-right:0px; margin-right:0px; border-right:none;}
.foot-bottom:after {content:''; display:block; clear:both;} 
.foot-bottom .copy {float: left;}
.foot-bottom .footer-menu { float: right;}

@media only screen and (max-width: 1200px) {
    #footer {
        padding: 30px 20px 35px 20px;
    }
	.footer-area {width:100%;}
	.footer-menu li { font-size: 15px;}

}

@media only screen and (max-width: 980px) {
    .footer_top_inner {
        text-align: center;
    }
    .footer_top {
        padding-bottom: 0px;
        border-bottom: none;
    }
    .footer_top_inner .foot-logo {
        float: none;
        display: block;
    }
	.footer_top_inner:after {margin-bottom: 20px;}
    .footer_top_inner > ul {float:none; display:block; text-align:center; width:100%; margin:15px 0 0;}
    .footer_top_inner > ul li {float:none; display:inline-block;}
    .foot-info p {text-align:Center;}
	.foot-bottom {text-align: center;}	
	.foot-bottom .copy {float:none; margin-top: 20px;}
	.foot-bottom .footer-menu {float:none; display: inline-block;}
}
@media only screen and (max-width: 768px) {
	.foot-info {text-align:center; margin-bottom: 30px;}


}

@media only screen and (max-width: 480px) {
    .foot-logo > img {
        width: 200px;
    }
    .footer-info {
        font-size: 14px;
        margin-top: 20px;
    }
	.footer-menu li { float: none; padding-right:0px; margin-right: 0px; border-right: none;  margin-bottom: 10px;}
	.footer-menu li:last-child { margin-bottom: 0px;}
	.footer-menu li > a {font-size: 14px;}
    .foot-bottom .copy  { font-size: 14px; line-height: 20px; }
}

@media only screen and (max-width: 353px) {
    #footer {
        padding: 30px 10px 35px 10px;
    }
}


/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual {
    position: relative;
    overflow: hidden;
}

.carousel-caption {
    position: absolute;
    width: 1200px;
    top: 30%;
    left: 50%;
    margin-left: -600px;
    z-index: 99;
}

.carousel-caption .slogan {
    font-size: 62px;
    color: #1e1e1e;
    font-weight: 500;
}

.carousel-caption .slogan > span {
    color: #071a33;
}
.carousel-caption .slogan:after {content:''; display:block; width:80px; height:3px; background:#071a33; margin:30px 0 40px;}
.carousel-caption p {font-size:24px; color:#071a33; font-weight:400; line-height:150%;}
.carousel-caption p + p {margin:30px 0 0;}
.carousel-caption p b {font-weight:600; display:block; margin:0 0 10px;}
.carousel-caption p strong  {font-weight:600;}

#main_slide.owl-carousel {
    display: block;
    height: 880px;
}

#main_slide.owl-carousel .owl-item .item {
    height: 880px;
}

#main_slide.owl-carousel .owl-item .main-img01 {
    background: url('/images/mtl01r-20-0043/main/main_visual11.jpg') no-repeat 70% center/cover;
}

#main_slide.owl-carousel .owl-item .main-img02 {
    background: url('/images/mtl01r-20-0043/main/main_visual21.jpg') no-repeat 70% center/cover;
}

#main_slide.owl-carousel .owl-item .main-img03 {
    background: url('/images/mtl01r-20-0043/main/main_visual31.jpg') no-repeat 70% center/cover;
}
#main_slide.owl-carousel .owl-item .main-img04 {
    background: url('/images/mtl01r-20-0043/main/main_visual41.jpg') no-repeat 70% center/cover;
}
#main_slide.owl-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    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:6px;
    height:18px;
    border-radius:3px;
	background:#071a33;
	margin:0px 5px;
}
#main_slide.owl-carousel .owl-dots .owl-dot.active span {
    display:inline-block;
    width:6px;
    height:28px;
    border-radius:3px;
	background:#fff;
}

@media only screen and (max-width: 1280px) {
    .carousel-caption {
        width: 100%;
        left: 0%;
        margin-left: 0px;
		padding:0px 20px;
    }
}

@media only screen and (max-width: 980px) {
    #main_slide.owl-carousel {
        height: 600px;
    }
    #main_slide.owl-carousel .owl-item .item {
        height: 600px;
    }
    .carousel-caption .slogan {
        font-size: 40px;
    }
    .carousel-caption .slogan:after {width: 60px; margin:20px 0 30px;}
    .carousel-caption p {font-size:20px;}
    .carousel-caption p + p {margin:25px 0 0;}
}

@media only screen and (max-width: 768px) {
    #main_slide.owl-carousel .owl-item .main-img01 {
        background-position:80% center;
    }

    #main_slide.owl-carousel .owl-item .main-img02 {
        background-position:80% center;
    }

    #main_slide.owl-carousel .owl-item .main-img03 {
        background-position:80% center;
    }
    #main_slide.owl-carousel .owl-item .main-img04 {
        background-position:80% center;
    }

    .carousel-caption {width:60%; min-width:280px;}
    .carousel-caption .slogan {
        font-size: 30px;
    }
    .carousel-caption .slogan:after {width: 50px;}
    .carousel-caption p {font-size:18px;}
    .carousel-caption p + p {margin:20px 0 0;}
    .carousel-caption p br {display:none;}
    .carousel-caption p br.br {display:block;}
	#main_slide.owl-carousel .owl-dots {bottom:20px;}
}

@media only screen and (max-width: 460px) {
.carousel-caption {
    top: 25%;
    }
    #main_slide.owl-carousel {
        height: 500px;
    }
    #main_slide.owl-carousel .owl-item .item {
        height: 500px;
    }
    .carousel-caption .slogan {
        font-size: 25px;
    }
    .carousel-caption p {font-size:16px;}
}


/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

#mainContainer {
    z-index: 555;
}

/*     main_section01     */

.main_section01 {
    padding: 80px 0px;
    width: 1200px;
    margin: 0 auto;
}

.main_section_title { font-size: 42px; color: #071a33; font-weight: 500; text-align: center; margin-bottom: 50px;}
.main_section_title:after {}
.main_section_title p {font-size:18px; color:#333; font-weight:300;}
.main_section_title p:before {content:''; display:block; margin:0 auto; margin-top:20px; margin-bottom:20px; width:35px; height:1px; background:#071a33;}

.section01_list { line-height: 1;}
.section01_list:after {content:''; display:block; clear:both;}
.section01_list > li {float:left; width:calc(100%/6); border-right:1px solid #ddd; padding:30px 0px; text-align:center;}
.section01_list > li:last-child {border-right:none;}
.section01_list > li p {font-size:18px; color:#333;}
.section01_list > li p:before {content:''; display:block; width:15px; height:2px; background:#071a33; margin: 0 auto; margin-top: 20px; margin-bottom: 20px; transform: rotate(-45deg);}


@media only screen and (max-width: 1200px) {
    .main_section01 {
        width: 100%;
        padding: 60px 20px;
    }
    .main_section_title {
        font-size: 35px;
    }
}

@media only screen and (max-width: 980px) {
    .section01_list > li {width: calc(100%/3); margin-bottom: 30px; padding:10px 0;}
	.section01_list > li:last-child {border-right: 1px solid #ddd;  margin-bottom: 0px;}
	.section01_list > li:nth-child(3n) {border-right:none;}	
}

@media only screen and (max-width: 768px) {
    .section01_list > li {width: calc(100%/2);}
	.section01_list > li:nth-child(3n) {border-right: 1px solid #ddd;}
	.section01_list > li:nth-child(2n) {border-right:none;}	
}

@media only screen and (max-width: 480px) {
	.main_section01 {padding:50px 20px;}
	.main_section_title {
        font-size: 30px;
        margin-bottom: 30px;
    }
	.main_section_title p {font-size:16px;}
	.section01_list > li p {font-size:16px;}

}


/*      main_section02     */
.main_section02 { width: 100%;}
.main_section02 .main_section_title {color:#fff;}
.main_section02 .main_section_title p:before { background:#fff;}
.main_section02_inner {
    padding: 80px 0px;
	background-color:#c9a45c;
    background-image: url('/images/mtl01r-20-0043/main/media_bg01.jpg'), url('/images/mtl01r-20-0043/main/media_bg02.jpg');
	background-repeat: no-repeat, no-repeat;
  	background-position: right top, left bottom;
}

.section02_inner {
    width: 1200px;
    margin: 0 auto;
}

@media only screen and (max-width: 1450px) {
    .section02_inner {
        width: 100%;
        padding: 0px 20px;
    }
}

@media only screen and (max-width: 1200px) {
    .main_section02 {
        padding: 0px
    }
    .main_section02_inner {
        padding: 60px 0px;
    }
}

@media only screen and (max-width: 980px) {
    .main_section02 {
        padding: 0px
    }
	.main_section02_inner  {background-size: 80%;}
}

@media only screen and (max-width: 480px) {
    .main_section02_inner {
        padding: 50px 0px;
    }
}

/*      main_section04     */
.main_section04 { width: 100%;}
.main_section04_inner {padding: 80px 0px;}

.section04_inner {
    width: 1200px;
    margin: 0 auto;
}

@media only screen and (max-width: 1450px) {
    .section04_inner {
        width: 100%;
        padding: 0px 20px;
    }
}

@media only screen and (max-width: 1200px) {
    .main_section04 {
        padding: 0px
    }
    .main_section04_inner {
        padding: 60px 0px;
    }
}

@media only screen and (max-width: 980px) {
    .main_section04 {
        padding: 0px
    }
	.main_section04_inner  {background-size: 80%;}
}

@media only screen and (max-width: 480px) {
    .main_section04_inner {
        padding: 50px 0px;
    }
}

/*      main_section03     */
.main_section03 { padding: 80px 0px 80px 0px; width: 100%; background:#f7f3ea;}
.main_section03_inner {width: 1200px; margin: 0 auto; position:relative; padding-right: 340px; }
.main_section03_inner .main_section_title {position: absolute; right: 0; display: inline-block; width: 250px;margin-bottom:0px;}
.main_section03_inner .main_section_title:before {content:''; display:inline-block; width:100%; height:60px; border-top:6px solid #071a33; border-right:6px solid #071a33; border-left:6px solid #071a33;}
.main_section03_inner .main_section_title:after {content:''; display:inline-block; width:100%; height:60px; border-bottom:6px solid #071a33; border-right:6px solid #071a33; border-left:6px solid #071a33;}
.main_section03_inner .main_section_title p > a:hover {color:#071a33;}

@media only screen and (max-width: 1200px) {
	.main_section03 {padding:60px 20px 60px 20px;}
	.main_section03_inner { width: 100%; }
}

@media only screen and (max-width: 980px) {
	.main_section03_inner {padding-right: 300px; }
}

@media only screen and (max-width: 768px) {
    .main_section03_inner .main_section_title {position: relative; right: 0; display: block; width: 100%; margin-bottom:30px;}
	.main_section03_inner .main_section_title br {display:none;}
	.main_section03_inner .main_section_title:before {display:none;}
    .main_section03_inner .main_section_title:after {display:none;}
	.main_section03_inner {padding-right: 0px; } 
}

@media only screen and (max-width: 480px) {
	.main_section03 {padding:50px 20px 50px 20px;}
}

/*      main_section05     */
.main_section05 { padding:30px 0px; width: 100%; }
.main_section05 .link {max-width:1200px; margin:0 auto; display:flex; justify-content: space-between; align-items: stretch; flex-wrap: wrap;}
.main_section05 .link li {width:32%; border:2px solid #071a33; border-radius:40px; text-align:center; transition: .3s;}
.main_section05 .link li a {font-size:22px; display:block; padding:25px 0px; color:#071a33; word-break:keep-all;}
.main_section05 .link li a i {text-align:center; margin:0 10px 0 0;}
.main_section05 .link li:hover {background:#071a33;}
.main_section05 .link li:hover a {color:#fff;}

@media only screen and (max-width:1200px) {
    .main_section05 { padding:30px 20px;}
}
@media only screen and (max-width:768px) {
    .main_section05 { padding:20px 20px;}
    .main_section05 .link li {width:32%;}
    .main_section05 .link li a {font-size:18px; padding:20px 0px;}
}

@media only screen and (max-width:600px) {
    .main_section05 .link li {width:100%;}
    .main_section05 .link li + li {margin:15px 0 0;}
}

/* Quick button: maintained only in this section */
.quick {
    position:fixed;
    top:125px;
    right:30px;
    width:130px;
    height:40px;
    z-index:600;
}
.quick a {
    display:block;
    width:100%;
    height:100%;
    line-height:40px;
    border-radius:20px;
    text-align:center;
    color:#fff;
    background:#071a33;
    font-size:15px;
    font-weight:500;
}
@media only screen and (max-width:1279px) {
    .quick { top:105px; right:15px; }
}
@media only screen and (max-width:768px) {
    .quick { right:12px; width:100px; height:34px; }
    .quick a { line-height:34px; font-size:13px; }
}


		
/* Mobile: soft beige background behind the introduction text */
@media only screen and (max-width: 768px) {
    #main_slide .main-img01 .carousel-caption::before {
        content: "";
        position: absolute;
        top: -8px;
        right: 0;
        bottom: -8px;
        left: 0;
        z-index: -1;
        background: rgba(236, 217, 196, 0.94); /* #ECD9C4 */
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        filter: blur(12px);
        border-radius: 18px;
        pointer-events: none;
    }
}
/* Reveal the book through the lower-right corner on mobile */
@media only screen and (max-width: 768px) {
    #main_slide .main-img01 .carousel-caption::before {
        -webkit-mask-image: radial-gradient(
            ellipse 130px 150px at 100% 100%,
            transparent 0%,
            transparent 38%,
            #000 100%
        );
        mask-image: radial-gradient(
            ellipse 130px 150px at 100% 100%,
            transparent 0%,
            transparent 38%,
            #000 100%
        );
    }
}
/* Soften every edge while preserving the lower-right reveal */
@media only screen and (max-width: 768px) {
    #main_slide .main-img01 .carousel-caption::before {
        --banner-soft-mask:
            radial-gradient(
                ellipse 130px 150px at 100% 100%,
                transparent 0%, transparent 38%, #000 100%
            ),
            linear-gradient(to right,
                transparent 0%, #000 18px,
                #000 calc(100% - 24px), transparent 100%
            ),
            linear-gradient(to bottom,
                transparent 0%, #000 18px,
                #000 calc(100% - 18px), transparent 100%
            );
        -webkit-mask-image: var(--banner-soft-mask);
        mask-image: var(--banner-soft-mask);
        -webkit-mask-composite: source-in;
        mask-composite: intersect;
    }
}
/* Extend the beige background above the introduction heading */
@media only screen and (max-width: 768px) {
    #main_slide .main-img01 .carousel-caption::before {
        top: -24px;
    }
}