@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 ~ 2022-05-1020px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/

/* 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: #ce112d;
}

.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%;
	overflow:hidden;
}

.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
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (min-width: 1200px) {
    #header {
        z-index: 999;
        width: 100%;
        padding: 0px 100px;
        position: fixed;
		top:0;
        transition: all 0.5s;
		background-color:#fff;
    }
    #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>div {
		max-width:1200px;
        position: relative;
        margin: 0 auto;
        width: 100%;
        height: 80px;
        text-align: center;
    }
    #L_SITE_LOGO {
        float: left;
    }
    #header h1 {
        float: left;
        padding-top: 23px;
        position: absolute;
    }
    #header h1 a {
        display: block;
    }
    #header h1 a>img {
        vertical-align: baseline;
    }
    .gnb {
        float: right;
        right: 0;
        top: 31px;
        position: absolute;
    }
    .all_menu {
        display: inline-block;
        width: 17px;
        height: 17px;
    }
    .all_menu>span {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #1e1e1e;
        float: left;
    }
    .all_menu>span:first-child {
        margin: 0px 1px 1px 0px;
    }
    .all_menu>span:nth-child(3) {
        margin: 0px 1px 0px 0px;
    }
    .lang_select {
        font-size: 14px;
        float: right;
        position: absolute;
        right: 50px;
        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: #ce112d;
    }
    .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: 230px;
        background: #fff;
        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    }
    #nav {
		float:right;
        display: inline-block;
        vertical-align: top;
        z-index: 999;
    }
    .navigation {
        margin: 0 auto;
    }
    .navigation:after {
        content: "";
        display: block;
        clear: both;
    }
    .navigation>li {
        position: relative;
        float: left;
        width: 130px;
        text-align: center;
    }
    .navigation .main-menu {
        display: block;
        width: 100%;
        font-weight: 500;
        font-size: 18px;
        color: #1e1e1e;
        line-height: 80px;
    }
/*     .navigation>li:hover:before {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: #ce112d;
        position: absolute;
        bottom: 0;
    } */
    .navigation .sub-menu {
        display: none;
        z-index: 999;
        position: absolute;
        top: 80px;
        left: 0;
        padding: 20px 0;
        width: 160px;
        height: 150px;
    }
    .navigation .sub-menu a {
        display: block;
        text-align: center;
        line-height: 35px;
        letter-spacing: -1px;
        font-size: 16px;
        color: #666;
    }
    .navigation .sub-menu .intro-menu {
        display: none;
    }
    .navigation .sub-menu a:hover {
        color: #ce112d;
    }
    /* 서브상단메뉴 */
    #L_SITE_LOGO.sub_page a {
        display: inline-block;
        background: url('/images/mtl01r-20-0043/common/logo_on.png') no-repeat center center/contain;
        width: 262px;
        height: 34px;
    }
    #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 (max-width: 1620px) {
    .navigation>li {
        width: 120px;
    }
    .navigation .sub-menu {
        width: 120px;
    }
}

@media only screen and (max-width: 1520px) {
    #header {
        padding: 0px 30px;
    }
    #L_SITE_LOGO.sub_page a {
        width: 230px;
    }
    #header h1 a>img {
        width: 230px;
    }
}

@media only screen and (max-width: 1300px) {
    .navigation {
        margin: 0 110px 0 0
    }
    .lang_select>li {
        padding-right: 8px;
        margin-left: 8px;
    }
}

@media only screen and (max-width: 1200px) {
    #header {
        z-index: 666;
        width: 100%;
        height: 65px;
        background: #fff;
        position: relative;
        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;
    }
    #header h1 img {
        width: auto;
        max-height: 45px;
        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 {
        z-index: 999;
        display: block;
        position: absolute;
        top: 20px;
        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: #ce112d;
        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);
    }
    .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;
        padding: 65px 0 20px;
        width: 70%;
        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 li.active .main-menu {
        background: #ce112d;
        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: #ce112d;
    }
    .navigation .sub-menu a:hover:before {
        background: #ce112d;
    }
    .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: #ce112d;
    }
}

@media only screen and (max-width: 768px) {
    #header h1 {
        padding: 15px 10px;
    }
    .nav-btn {
        right: 20px;
    }
    #header h1 a>img {
        width: 200px;
    }
}



.search-list-wrap {
	background-color:#e5e5e5;
	padding:35px;
	border-radius:7px;
	position:relative;
}
.search-list-wrap .kakao_ {
    position: absolute;
    left: -175px;
	height:100%;
	box-sizing:border-box;
    padding: 10px 9px 13px 0;
    top: 0;
    background-color: #fee600;
    border-radius: 0 7px 7px 0;
}
.search-inner-1 {
	display:flex;
}
.search-inner-1 .s1:after,
.search-inner-1 .s2:after,
.search-inner-1 .s3:after {
	content:"";
	display:block;
	clear:both;
}
.search-inner-1 .s1 {
	width:45%;
	padding-right: 13px;
    box-sizing: border-box;
}
.search-inner-1 .s2 {
	width:45%;
	padding-right: 13px;
    box-sizing: border-box;
}
.search-inner-1 .s3 {
	width:10%;
}
.search-inner-1 .s3 .s-btn {
	display:block;
	height:100%;
	width:100%;
	background-color:#dc232d;
	border:none;
	font-size:16px;
	color:#fff;
    font-family: 'Noto Sans KR';
	font-weight:500;
	line-height:100%;
	border-radius:5px;
	cursor:pointer;
}


.search-list-wrap .w1 {
	width:100%;
	margin-bottom:14px;
}
.search-list-wrap .w2 {
	width:50%;
	float:left;
}
.search-inner-2 ul {
	display:flex;
	margin-top:15px;
}
.search-inner-2 ul li {
	width:20%;
	text-align:center;
	position:relative;
}
.search-inner-2 ul li:after {
	content:"";
	display:block;
	position:absolute;
	right:0;
	top:0;
	width:2px;
	height:100%;
	background-color:#e5e5e5;
}
.search-inner-2 ul li:last-child:after {
	display:none;
}
.search-inner-2 ul li span {
	display:block;
}
.search-inner-2 ul li span a {
	background-color:#fff;
	display:block;
	font-size:17px;
	color:#000;
	line-height:60px;
	font-weight:500;
}
.search-inner-2 ul li span a.on {
	color:#fff;
	background-color:#333;	
}
.search-inner-2 ul li span a:hover {
	color:#fff;
	background-color:#333;
}
.search-inner-2 ul li:first-child span a {
	border-radius:5px 0 0 5px;
}

.search-inner-2 ul li:last-child span a {
	border-radius:0 5px 5px 0;
}




@media only screen and (max-width: 1024px) {
	
	.search-inner-1 {
		display:block;
	}
	.search-inner-1:after {
		content:"";
		display:block;
		clear:both;
	}
	.search-inner-1 .s1 {
		width:100%;
		padding:0;
	    margin-bottom: 15px;
	}
	.search-inner-1 .s2 {
		width:100%;
		padding:0;
	    margin-bottom: 15px;
	}
	.search-inner-1 .s3 {
		width:100%;
	}
	.search-inner-1 .s3 .s-btn {
		height:53px;
	}
	.search-inner-2 ul li span a {
		font-size:13px;			
	   overflow:hidden;
	   white-space:nowrap;
	   text-overflow:ellipsis;
	}
}


/* The container must be positioned relative: */
.custom-select {
  position: relative;
  color:#645555;
  font-size:15px;
  font-weight:400;
  letter-spacing:-0.5px;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #fff;
  padding: 14px 18px 17px 19px;
  border-radius: 5px;
}
.select-selected:hover {
	border:2px solid #000;
}

/* Style the arrow inside the select element: */
.select-selected:after {
	position: absolute;
    content: "";
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border: 1px solid #7a7a7a;
    border-color: transparent transparent #7a7a7a #7a7a7a;
    transform: rotate(-45deg);
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    top: 25px;
    border-color: transparent transparent #7a7a7a #7a7a7a;
    transform: rotate(135deg);
}

/* style the items (options), including the selected item: */
.search-list-wrap .w2 .select-items div,.select-selected {
	margin-right:5px;
}
.select-items div,.select-selected {
	color: #645555;
	border: 2px solid transparent;
	/* border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent; */
	cursor: pointer;
	background-color: #fff;
	padding: 14px 18px 17px 19px;
	border-radius: 5px;
}

.select-items div {
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
/* Style items (options): */
.select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  height:200px;
  overflow-y:scroll;
  background-color:#fff;
  border: 1px solid #ccc;
}
.w1 .select-items {
  margin-right: 5px;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #eee;
}
/* 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: #1e1b1b;
    color: #999;
}

.footer-area {
    width: 1200px;
    margin: 0 auto;
}
.footer_top_inner {
	margin-bottom:30px;
	padding-bottom:25px;
	border-bottom:1px solid #454545;
}
.footer_top_inner:after {
    content: '';
    display: block;
    clear: both;
    margin-bottom: 10px;
}

.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>ul li h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
}

.foot-info>ul li p {
    font-weight: 300;
}

.foot-info,
.foot-bottom {
    font-size:14px;
	line-height:1.8;
}

.foot-info>ul:after {
    content: '';
    display: block;
    clear: both;
}

.foot-info>ul li {
    display:inline-block;
	padding-right:20px;
}

.foot-info>ul li p {
    line-height: 26px;
}

.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>ul {
        float: none;
        display: inline-block;
        margin-top: 20px;
    }
    .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: 10px;
    }
    .foot-info>ul li {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }
    .foot-info>ul li:last-child {
        margin-bottom: 0px;
    }
    .footer_top_inner:after {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .foot-logo>img {
        width: 200px;
    }
    .footer-info {
        font-size: 14px;
        line-height: 22px;
        margin-top: 20px;
    }
    .foot-info>ul li p {
        line-height: 24px;
        font-size: 15px;
    }
    .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 {
    z-index: 99;
    position: absolute;
    bottom: 10%;
    left: 50%;
	text-align:center;
	color:#fff;
    transform: translate(-50%, -50%);
}

.carousel-caption .slogan {
    font-size: 62px;
    line-height: 80px;
    color: #1e1e1e;
    font-weight: 500;
}

.carousel-caption .slogan>span {
    color: #ce112d;
}

.carousel-caption span {
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.55);
	font-size:18px;
}

.carousel-caption h2 {
	text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.38);
	font-size: 50px;
}

.carousel-caption p:before {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ce112d;
    margin: 40px 0px;
}

.carousel-caption p {
    font-size: 25px;
    color: #1e1e1e;
    font-weight: 300;
}

.carousel-caption p>span {
    color: #ce112d;
}

#main_slide.owl-carousel {
    display: block;
    height: 600px;
}

#main_slide.owl-carousel .owl-item .item {
    height: 600px;
}

#main_slide.owl-carousel .owl-item .main-img01 {
    background: url('/images/main/main_mv.jpg') no-repeat 70% center/cover;
}

#main_slide.owl-carousel .owl-item .main-img02 {
    background: url('/images/main/main_mv.jpg') no-repeat 70% center/cover;
}

#main_slide.owl-carousel .owl-item .main-img03 {
    background: url('/images/main/main_mv.jpg') no-repeat 70% center/cover;
}

#main_slide.owl-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    right: 0px;
    width: 100%;
    text-align: center;
	display:none;
}

#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: #1e1e1e;
    margin: 0px 5px;
}

#main_slide.owl-carousel .owl-dots .owl-dot.active span {
    display: inline-block;
    width: 6px;
    height: 28px;
    border-radius: 3px;
    background: #ce112d;
}




.car-list-wrap ul li span dl.completed_on dt:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 10;
}

.car-list-wrap ul li span dl.completed_on dt:before {
	content: "판매완료";
	display: block;
	position: absolute;
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	z-index: 11;
	top: 50%; 
    left:50%;
    transform: translate(-50%, -50%);
}



.car-list-wrap ul {
	margin:0 -10px;
}
.car-list-wrap ul:after {
	display:block;
	content:"";
	clear:both;
}
.car-list-wrap ul li {
	float:left;
	width:25%;
	margin-bottom:45px;
}
.car-list-wrap ul li span {
	display:block;
	margin:0 10px;
	background-color:#fff;
	border-radius:5px;
	transition: all 0.2s ease;
	box-shadow:0 2px 4px rgba(0,0,0,0.16);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
}
.car-list-wrap ul li span:hover {
	box-shadow:0 32px 84px rgba(0,0,0,0.16);		
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
}
.car-list-wrap ul li span dt {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 70%; /*세로비율*/
}

.car-list-wrap ul li span dt p {
	border-radius:5px 5px 0 0;          
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
}
.car-list-wrap ul li span dd {
	padding:30px;
}
.car-list-wrap ul li span dd strong {
	font-size:18px;
	font-weight:500;
	line-height:1.5;
	letter-spacing:-0.5px;
	color:#333;
	display:block;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}
.car-list-wrap ul li span dd em {
	display:block;
	font-size:16px;
	line-height:1.3;
	color:#707070;
	font-style:normal;
}
.car-list-wrap ul li span dd p {
	padding-top:20px;
	font-size:16px;
	color:#333;
}
.car-list-wrap ul li span dd p b {	
	font-weight:700;
	line-height:1.3;
	color:#da2432;
}


@media only screen and (max-width: 1200px) {
    .carousel-caption {
        width: 100%;
        margin-left: 0px;
        padding: 0px 20px;
    }
}

@media only screen and (max-width: 980px) {
    #main_slide.owl-carousel {
        height: 250px;
    }
    #main_slide.owl-carousel .owl-item .item {
        height: 250px;
    }
	.carousel-caption {
		bottom:0;
	}
	.carousel-caption span {
		font-size:15px;
	}
	.carousel-caption h2 {
		font-size:32px;
	}
    .carousel-caption .slogan {
        font-size: 40px;
        line-height: 50px;
    }
    .carousel-caption p {
        font-size: 18px;
    }
    .carousel-caption p:before {
        width: 60px;
        margin: 20px 0px;
    }
}

@media only screen and (max-width: 768px) {
    .carousel-caption .slogan {
        font-size: 36px;
        line-height: 40px;
    }
	
	.main_section01_inner {
		padding:20px 0;
	}

    .carousel-caption .slogan>span:after {
        width: 25px;
    }
    #main_slide.owl-carousel .owl-dots {
        bottom: 20px;
    }

}



@media only screen and (max-width: 1024px) {

	.search-list-wrap {
		padding:15px 10px;
	}
	.list-wrap-inner {
		padding:15px 10px !important;
	}
    .car-list-wrap ul li {
        width: calc(100%/2);
        margin-bottom: 30px;
    }
	.car-list-wrap ul li {
		width:50%;
	}
}

@media only screen and (max-width: 480px) {

    .car-list-wrap ul li {
        width: 100%;
    }
}