@charset "utf-8";
/* Font */
@import url(font.css);

/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 981px
tablet : 980px ~
mobile : 767px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/


/*---------------------------------------- Reset*/
html,body{margin:0; padding:0; width:100%; height:100%;}
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,a{
	margin:0; 
	padding:0;
	font-size:16px; 
	/*line-height:1; */
	font-family: 'Pretendard', sans-serif;
	color:#555; 
	font-weight:400;
	box-sizing:border-box;
}
body{position:relative; overflow-y: scroll;min-width:320px;}
article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block;}
fieldset,img {border:0 none;}
dl,ul,ol,menu,li {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after,q:before, q:after {content:''; content:none;}
img,input,select,textarea,button {vertical-align:middle;}
body {background:#fff;}
h1,h2,h3,h4,h5,h6{font-weight:normal;}
a{ text-decoration:none; -webkit-transition:all .4s ease-out; -moz-transition:all .4s ease-out; transition:all .4s ease-out;display:block;}
a:active, a:hover {text-decoration:none;}
address,caption,cite,code,dfn,em,var {font-style:normal; font-weight:normal;}
table{border-collapse:collapse; border-spacing:0;border:0;width:100%}
caption{text-align:left;}
fieldset{border:0 none;}
hr{display:none;}
em, i{font-style:normal;}

input{border:0;}
select::-ms-expand { display: none; }
select, input, button,textarea{
	border-top-left-radius:0;
	border-top-right-radius:0;
	border-bottom-left-radius:0;
	border-bottom-right-radius:0;
	/*-webkit-appearance: none ;
	-moz-appearance: none;
	appearance: none;*/
    -webkit-border-radius:0 ;
	border:0;
	box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline:0;
	border-radius:0
}
button{outline:0;cursor:pointer}

@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:10px; right:20px; display:none; text-align: center; z-index: 10000; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius:50%; background:#494949;}
.back-to-top i{color: #fff; font-size: 15px; display: block; line-height: 33px;}


/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper{position:relative; min-width:320px; width:100%; height:100%;}

#container{width:100%; height:100%; box-sizing:border-box;}


/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

#header {
    z-index: 666;
    width: 100%;
    height: 110px;
    background-color: #ffffff;
	/*border-bottom:1px solid #eee;*/
}

#header h1 {
    float: left;
}

#header h1 a {
    display: block;
    margin-top: 17px;
}

#header #header_in {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    height: 65px;
}

#nav {
    display: inline-block;
    /*margin-left: 1116px;*/
    margin-top: 36px;
    float: right
}

.nav-btn {
    display: none;
}

.nav-bg {
    z-index: 888;
    display: none;
    position: absolute;
    top: 109px;
    width: 100%;
    height: 200px;
    background: #fff;
	border-top: 1px solid #eee;
}

.util-menu {
    position: absolute;
    top: 12px;
    right: 0;
    line-height: 0;
    font-size: 0;
}

.util-menu ul {
    display: inline-block;
}

.util-menu li {
    display: inline-block;
    float: left;
    height: 30px;
    text-align: center;
    margin-left: 15px;
}

.util-menu li:first-child {
    border-color: #1886a2;
    margin-left: 0;
}

.util-menu a {
    display: inline-block;
    line-height: 22px;
    font-size: 12px;
    font-weight: 400;
    color: #999999;   
}

.navigation:after {
    content: "";
    display: block;
    clear: both;
}

.navigation > li {position: relative; width:170px; float: left; height: 100%;   text-align: center;}
/*.navigation > li:last-child a { padding-right: 0}
.navigation > li:last-child ul {padding-left: 45px;}*/

.navigation .main-menu {display: block; position:relative;/*padding: 0 39px;*/ line-height: 73px; width: 100%; font-weight: 500;  font-size: 20px; color: #333;}
.navigation .main-menu:hover {color:#ffb400;}

.navigation li a.main-menu:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0px;
	 left:0;
	 right:0;
}

.navigation li:hover a.main-menu:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: calc( 100% - 50px);
    bottom: 0px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	 background: #ffb400;
	 left:0;
	 right:0;
	 margin:0 auto;
}

/*
.navigation li:nth-child(1):hover a.main-menu:after,
.navigation li:nth-child(2):hover a.main-menu:after,
.navigation li:nth-child(3):hover a.main-menu:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    background: #ffb400;
    width: 100%;
    left: 39px;
    bottom: 11px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.navigation li:nth-child(1) a.main-menu:after,
.navigation li:nth-child(2) a.main-menu:after,
.navigation li:nth-child(3) a.main-menu:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: 11px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	 background: #ffb400;
	 left:0;
	 right:0;
}

.navigation li:nth-child(4):hover a.main-menu:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    background: #0e277f;
    width: calc( 100% - 39px);
    left: 39px;
    bottom: 11px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.navigation li:nth-child(4) a.main-menu:after {
    content: "";

    display: block;
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 11px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
*/

.navigation .sub-menu {display: none; z-index: 998; position: absolute; /*top: 95px;*/ padding-top:20px; left: 0; width: 100%; height: 210px; }

.navigation .sub-menu a {
    display: block;
    text-align: center;
    line-height:1.2;
   /* letter-spacing: -1px;*/
    font-size: 17.5px;
    font-weight: normal;
    color: #666;
	margin-bottom:17px;
	word-break:keep-all;
}

.navigation .sub-menu .intro-menu {display: none;}
.navigation .sub-menu a:hover {color:#ffb400}



@media only screen and (min-width: 981px) {
    #nav {/* margin-left: 52px;*/}
    .navigation .main-menu {/*padding: 0 25px;*/ }
    .util-menu {right: 20px;}
}

@media only screen and (min-width: 1200px) {    
    #nav {/*margin-left: 116px;*/}
    .navigation .main-menu {/*padding: 0 39px;*/}
    .util-menu {right: 50px;}

}



/* @media only screen and (max-width: 1200px) {
    #header > div {
        padding: 0 20px;
    }
}*/

@media only screen and (max-width: 1200px) {
    #header {
        z-index: 666;
        width: 100%;
        height: 65px;
        background: #f9f9f9;
        border-bottom: 1px solid #e1e1e1;
    }
    #header > div {
        padding: 0;
    }
    #header h1 {
        float: left;
        height: 65px;
    }
    #header h1 a {
        display: block;
        padding: 5px 20px;
        margin-top: 0;
    }
    #header h1 img {
        width: 70%;
    }
    .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: #333;
        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;
        top: 0;
        right: -100%;
        display: block;
        padding: 0 0 20px;
        width: 100%;
        height: 100%;
        background: #fff;
        margin-top: 0;
    }
    .util-menu {
        position: relative;
        top: 0;
        padding: 17px 30px;
        width: 100%;
        max-height: 65px;
        border-top: 1px solid #e1e1e1;
        border-bottom: 1px solid #eee;
    }
    .util-menu ul {
        width: 100%;
    }
    .util-menu li {
        margin-left: 15px;
    }
    .util-menu a {
        font-size: 16width: 100%;
        padding: 0;
    }
    .navigation .main-menu {
        display: block;
        padding: 0 30px;
        width: 100%;
        line-height: 56px;
        font-weight: 400;
        font-size: 19px;
        color: #333;
        transition: none;
    }
    .navigation > li {
        width: 100%;
        text-align: left;
        border-top: 1px solid #e1e1e1;
    }
    .navigation > li:first-child {
        border-top: none;
    }

    .navigation > li.active > ul li a {
        color: #555;
    }
    .navigation > li:hover .sub-menu {
        background: inherit;
    }
    .navigation .sub-menu {
        display: none;
        position: relative;
        top: 0;
        height: inherit;
        background: #f9f9f9 !important;
        padding: 0;
    }
    .navigation .sub-menu li {
        border-top: 1px solid #eee;
    }

    .navigation .sub-menu a {
        display: block;
        padding: 0 50px;
        line-height: 50px;
        font-size: 16px;
        color: #555;
        text-align: left;
		margin-bottom:0;
    }
    .navigation .sub-menu a:before {
        content: "";
        display: inline-block;
        margin: -2px 10px 0 0;
        width: 5px;
        height: 5px;
        vertical-align: middle;
        background: #b0b0b0;
    }

    .navigation li:hover a.main-menu:after {
        display: none !important;
    }
	.navigation > li:last-child{border-bottom:1px solid #e1e1e1}
	.navigation > li:after{content: '+'; font-size: 30px; font-weight: 100; position: absolute; right: 35px; top: 7px; color: #bbb;}
	.navigation > li.active:after{ content: ''; width:17px; height:3px; background:#ffb400;top:26px;}



}
@media only screen and (max-width: 768px) {
    .nav-btn { right: 20px; }
    .navigation > li:last-child ul {padding-left: 0}
	#header h1 a{padding:10px;}
	#header h1 a img{width:60%;}

	.navigation .main-menu{padding:0 40px;}
}









/* Button (공통 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.btn{font-family:"Nanum Gothic", sans-serif; 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:#aec213; border-color: #aec213; color:#fff;}
.btn-custom:hover, .btn-custom:focus{background-color: #00208e; border-color: #00208e; 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:0; height:38px; -webkit-appearance: none;  -moz-appearance: none; appearance: none;}
.form-control:focus{outline:none; box-shadow:none; -webkit-box-shadow:none; border-color: #555;}


/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer{padding:80px 20px; width:100%; border-top:1px solid #e5e5e5; background: #f9f9f9;}
.footer-area{margin:0 auto; width:100%; box-sizing:border-box; text-align:center;}

.footer-menu li{
    display: inline-block;
    margin: 0 15px;
}
.footer-menu li a{
	font-weight: 500;
    font-size: 15px;
    color: #333;
}

.footer-info{display: inline-block; margin:15px 0;}
.footer-info:after{
	clear:both;
	display:block;
	content:'';
}
.footer-info li{
	display:inline-block;
}
.footer-info li:after{
	content:'';
	display:inline-block;
	width:1px; 
	height:12px;
	background:#bbb;
	margin:0 7px;
}
.footer-info li:last-child:after{width:0}

.footer-info li, .footer-area a, .footer-area p{

    font-size: 15px;
    line-height: 24px;
    color: #888888;
	word-break:keep-all;
}
.footer-area a{display:inline-block;}

@media only screen and (min-width: 1201px){
	.footer-info{width:1200px;}
	.footer-info li:nth-child(4):after{display:none;}
}


/* Main Visual (메인 비주얼 이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual{
    position: relative;
    width: 100%;
    background: url(/images/kor01r-18-0401/main/main_visual.jpg) no-repeat center center/cover;
    height: 790px;
}
.visual-title *{
    color: #fff;
	font-size: 42px;
	word-break: keep-all;
	letter-spacing:-1px;
	line-height:1.3;
}
.visual-title{
    text-align: center;
    position: absolute;
    top: 265px;
    left: 50%;
    margin-left: -430px;
}
.visual-title h2{
    font-weight: 600;
	font-size:54px;
	margin:12px 0;
	line-height:1;
}
.visual-title p{
    font-weight: 400;
}
.visual-title p i{
	font-style: italic;
}


@media only screen and (max-width: 1024px){
	.main-visual{height: 600px;}
	.visual-title *{font-size:30px;}
	.visual-title h2{font-size:40px; margin:10px 0}
	.visual-title{
	    top:200px;
		margin-left: 0;
		width: 100%;
		left: auto;
		padding: 0 20px;
	}
}


@media only screen and (max-width: 768px){
	.main-visual {height: 550px;background: url(/images/kor01r-18-0401/main/visual-m.png) no-repeat center center/cover;}
	.visual-title * {font-size: 25px;}
	.visual-title h2{font-size:32px;}
	.visual-title{top:180px}
	
}

@media only screen and (min-width: 501px){
	.visual-title h2 br{display:none;}
}

@media only screen and (max-width: 500px){
	.main-visual {height: 460px;}
	.visual-title {top: 120px;}
	.visual-title * {font-size: 18px; letter-spacing:-1px;}
	.visual-title h2{font-size:27px; margin:5px 0; line-height:1.2; letter-spacing:0;}
	.visual-title p:last-child{letter-spacing:0;}
}



/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-contents{
    padding: 80px;
    overflow: hidden;
    background: #f1f1f1;
}

.main-banner:after{content:""; display:block; clear:both;}
.main-banner li{float:left; margin:0 10px; text-align:center; width:calc(33.33% - 20px); height:230px; border-radius:10px; overflow:hidden;}
.main-banner li:nth-child(1){background:url('/images/kor01r-18-0401/main/main_banner01.jpg') no-repeat 52% center/cover;}
.main-banner li:nth-child(2){background:url('/images/kor01r-18-0401/main/main_banner02.jpg') no-repeat 10% center/cover;}
.main-banner li:nth-child(3){background:url('/images/kor01r-18-0401/main/main_banner03.jpg') no-repeat 93% center/cover;}

.main-banner .banner-caption{padding-top:60px; width:54%; height:230px; vertical-align:middle; background:rgba(73,73,73,0.75);}

.main-banner h3{margin-bottom:25px; font-weight:bold; font-family:'Nanum Square'; font-size:23px; color:#fff;}
.main-banner h3 span{display:block; margin-bottom:10px; font-family:'Nanum Gothic'; font-weight:normal; font-size:14px;}

.main-banner .more-btn{display:inline-block; margin:0 auto; padding:5px 10px; text-align:center; font-size:12px; color:#fff; border:1px solid #fff;}
.main-banner .more-btn:hover, .main-banner .more-btn:active{background:rgba(255,255,255,0.3);}

.partners{padding:80px 80px 130px ; width:100%; box-sizing:border-box;}



.main-contents ul{
    display: inline-block;
    width: 100%;
}
.main-contents ul:after{
	display:block;
	clear:both;
	content:'';
}
.main-contents ul li{
	float: left;
    margin-right: 40px;
	width:492px;
    width: calc((100%/3) - 27px);
    height: 350px;
    max-height: 420px;
	position:relative;
	transition: .6s;
	
}
.main-contents ul li:last-child{
	margin-right: 0px ;
}
.main-contents ul li *{
	color:#fff
}
.main-contents ul li a{
    height: 100%;
    width: 100%;
	padding: 11%;
	transition:.6s;
	position:relative;
	z-index:3
}

.main-contents ul li a h5{
    font-size: 34px;
font-weight:600; /*500;*/
}
.main-contents ul li a h5:after{
    content: '';
    display: block;
    background: #fff;
    width: 54px;
    height: 2px;
    margin: 17px 0 12px;
}
.main-contents ul li a p{
    font-size: 17px;
	line-height:22px;
}
.main-cont-1{background:url(/images/kor01r-18-0401/main/sec1_1.jpg) no-repeat center/cover;}
.main-cont-2{background:url(/images/kor01r-18-0401/main/sec1_2.jpg) no-repeat center/cover;}
.main-cont-3{background:url(/images/kor01r-18-0401/main/sec1_3.jpg) no-repeat center/cover;}

.main-contents ul li:before{
	opacity: 0;
    content: '';
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	transition: .6s;
}
.main-contents ul li:hover{
	transition: .6s;
	box-shadow: 8px 9px 14px 0px rgba(0, 0, 0, 0.2)
}
.main-contents ul li.main-cont-1:before{
	background: rgb(255,156,0); /* Old browsers */
	background: -moz-linear-gradient(top, rgb(255,156,0,0.9) 30%, rgb(196,78,0,0.9) 100%), url(/images/kor01r-18-0401/main/sec1_1.jpg) no-repeat center/cover; /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgb(255,156,0,0.9) 30%,rgb(196,78,0,0.9) 100%), url(/images/kor01r-18-0401/main/sec1_1.jpg) no-repeat center/cover; /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgb(255,156,0,0.9) 30%,rgb(196,78,0,0.9) 100%), url(/images/kor01r-18-0401/main/sec1_1.jpg) no-repeat center/cover; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9c00', endColorstr='#c44e00',GradientType=0 ); /* IE6-9 */
	opacity:0;
	content:'';

}
.main-contents ul li.main-cont-2:before{
	background: rgb(255,156,0); /* Old browsers */
	background: -moz-linear-gradient(top, rgb(255,156,0,0.9) 30%, rgb(196,78,0,0.9) 100%), url(/images/kor01r-18-0401/main/sec1_2.jpg) no-repeat center/cover; /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgb(255,156,0,0.9) 30%,rgb(196,78,0,0.9) 100%), url(/images/kor01r-18-0401/main/sec1_2.jpg) no-repeat center/cover; /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgb(255,156,0,0.9) 30%,rgb(196,78,0,0.9) 100%), url(/images/kor01r-18-0401/main/sec1_2.jpg) no-repeat center/cover; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9c00', endColorstr='#c44e00',GradientType=0 ); /* IE6-9 */
	
}

.main-contents ul li.main-cont-3:before{
	background: rgb(255,156,0); /* Old browsers */
	background: -moz-linear-gradient(top, rgb(255,156,0,0.9) 30%, rgb(196,78,0,0.9) 100%), url(/images/kor01r-18-0401/main/sec1_3.jpg) no-repeat center/cover; /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgb(255,156,0,0.9) 30%,rgb(196,78,0,0.9) 100%), url(/images/kor01r-18-0401/main/sec1_3.jpg) no-repeat center/cover; /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgb(255,156,0,0.9) 30%,rgb(196,78,0,0.9) 100%), url(/images/kor01r-18-0401/main/sec1_3.jpg) no-repeat center/cover; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9c00', endColorstr='#c44e00',GradientType=0 ); /* IE6-9 */
}
.main-contents ul li:hover:before{
	opacity:1;
}






/*SECTION TITLE*/

.section-title{
    font-size: 47px; /*48px;*/
    text-align: center;
    text-transform: uppercase;
    color: #111;
    font-weight: 600; /*500;*/
    letter-spacing: -1px;
    margin-bottom: 50px;
}
.section-title:before{
	content: '';
    display: block;
    width: 35px;
    height: 2px;
    background: #ffb500;
    margin: 0px auto 20px;
    transform: rotate(-45deg);
}





/*이용약관 등*/
.user-cont-area .user-txt{
    border: 1px solid #e5e5e5;
    padding: 50px;
    overflow-y: scroll;
    height: 550px;
    background: #f9f9f9;
}
.user-cont-area .user-txt p{
    font-size: 14px !important;
    line-height: 24px !important;
}
.user-cont-area .user-txt p b{display:block; padding:10px 0 0 ; line-height:22px; color:#303030;}


@media only screen and (max-width: 1200px){
	.main-contents{padding: 60px;}
}
/*------------------------------------------ 1024*/

@media only screen and (max-width: 1024px){
	.main-contents{padding:60px 30px}
	.main-contents ul li{margin-right: 20px; width: calc((100%/3) - 14px);}

	.partners{padding: 60px 30px 130px;}
}

@media only screen and (max-width: 980px){
	.main-contents ul li{height:300px;}
	.main-contents ul li a h5{font-size:30px;}
	.main-contents ul li a{padding:13% 11%;}
	.section-title{margin-bottom: 40px; font-size: 40px;}
}

/*------------------------------------------ 900*/

@media only screen and (max-width: 900px){
	/*#container{padding-left: 0; padding-top: 70px;}*/
	
}

/*------------------------------------------ 768*/

@media only screen and (max-width: 768px){
	.main-contents ul li {
		margin-right: 0;
		width: 100%;
		margin-bottom: 20px;
	}
	.main-contents ul li a{padding:8%}
	

	
}

/*------------------------------------------ 500*/

@media only screen and (max-width: 500px){
	/*#container{padding-top: 55px;}*/
	.main-contents {padding: 20px}

	.partners{padding: 40px 20px 80px;}
	.main-contents ul li a h5{font-size:25px;}
	.section-title{margin-bottom: 30px; font-size:32px;}
	.section-title:before{width:30px; margin:0 auto 18px}
	.main-contents ul li{height:260px;}
	.main-contents ul li a{padding:12% 10%;}

	#footer{padding:50px 20px}
	.footer-menu li {margin: 0 5px;}
	.footer-info li, .footer-area a, .footer-area p{font-size: 13px; line-height:21px;}
	.footer-menu li a{font-size: 13px;}
	
}


