@charset "utf-8";

/* Font */
@import url(font.css);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');


:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes bgAniWidth {
  0% {
    width: 60%;
    left: calc(50% - 30%);
    opacity: 0;
  }
  to {
    width: 100%;
    left: 0;
    opacity: 1;
  }
}

@-webkit-keyframes bgAniWidth {
  0% {
    width: 60%;
    left: calc(50% - 30%);
  }
  to {
    width: 100%;
    left: 0;
  }
}

.bgAniWidth {
  -webkit-animation-name: bgAniWidth;
  animation-name: bgAniWidth;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInBig {
  from {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
  }
  to {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

@keyframes fadeInBig {
  from {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
  }
  to {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

.fadeInBig {
  -webkit-animation-name: fadeInBig;
  animation-name: fadeInBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes brAni {
  0% {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  to {
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
}

@media screen and (max-width: 768px) {
  @-webkit-keyframes brAni {
    0% {
      border-top-left-radius: 0;
      border-bottom-right-radius: 0;
    }
    to {
      border-top-left-radius: 50px;
      border-bottom-right-radius: 50px;
    }
  }
  @keyframes brAni {
    0% {
      border-top-left-radius: 0;
      border-bottom-right-radius: 0;
    }
    to {
      border-top-left-radius: 50px;
      border-bottom-right-radius: 50px;
    }
  }
}

@-webkit-keyframes brAni {
  0% {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  to {
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
}

@media screen and (max-width: 768px) {
  0% {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  to {
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
}

.brAni {
  -webkit-animation-name: brAni;
  animation-name: brAni;
}

@-webkit-keyframes scaleDown {
  from {
    transform: scale(0.9);
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    transform: scale(1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scaleDown {
  from {
    transform: scale(0.9);
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    transform: scale(1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.scaleDown {
  -webkit-animation-name: scaleDown;
  animation-name: scaleDown;
}


/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1200px
tablet : 980px ~
mobile : 767px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/


/* Reset
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
	body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,textarea,p,blockquote,th,td,input,select,textarea,button{margin:0;padding:0;font-size:100%;}
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{display:block;}
	html{box-sizing:border-box;}
	*, *:before, *:after{box-sizing:inherit;}
	body,th,td,input,select,textarea,button{font-family:'Pretendard','NotoSansKR', sans-serif;font-size:14px;letter-spacing:-0.01em;line-height:1.475;font-weight:400;color:#555;}
	dl,ul,ol,menu,li {list-style:none;}
	*, *:before, *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
	:focus{outline:0 !important;}
	iframe{border:none; width:100%;}
	a{color:inherit;text-decoration:none;-webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out;}
	a:hover, a:focus ,a:active{text-decoration:none;color:#000;}
	img{max-width:100%;}
	textarea{max-width:100%;resize:none;}

	.hidden{font-size:0;line-height:0;text-indent:-9999em;overflow:hidden;}
    ::selection{background:#333;color:#fff;text-shadow:none;}
    ::-moz-selection{background:#333;color:#fff;text-shadow:none;}
    ::-webkit-selection{background:#333;color:#fff;text-shadow:none;}

	.ff_cont{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;}
	.fi_cont{display:-webkit-inline-box;display:-moz-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:inline-flex;}
	.ff_object{margin:-15px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;}
	.ff_object .obj{padding:15px;}
	.ff_object.middle{margin:-10px;}
	.ff_object.middle .obj{padding:10px;}
	.ff_obj{margin-left:-15px;margin-right:-15px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;}
	.ff_obj .obj{padding-left:15px;padding-right:15px;}
	.f_two .obj{flex:0 0 50%;-ms-flex:0 0 50%;max-width:50%;}
	.f_three .obj{flex:0 0 33.33%;-ms-flex:0 0 33.33%;max-width:33.33%;}
	.f_four .obj{flex:0 0 25%;-ms-flex:0 0 25%;max-width:25%;}
	.f_wrap{flex-wrap:wrap;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;}
	.f_center{-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}
	.f_middle{-webkit-box-align:center;-moz-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;}
	.f_end{-webkit-box-align:end;-moz-box-align:end;-ms-flex-align:end;-webkit-align-items:end;align-items:end;}
	.f_between{-webkit-box-pack:justify;-moz-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}
	.f_reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;}

	h1{font-size:2.500em;}/* 40px */
	h2{font-size:2.188em;}/* 35px */
	h3{font-size:1.875em;}/* 30px */
	h4{font-size:1.500em;}/* 24px */
	h5{font-size:1.250em;}/* 20px */
	h6{font-size:1.125em;}/* 18px */
	p{font-size:1em;}/* 16px */
	h1,h2,h3,h4,h5,h6,p{font-weight:normal;line-height:1.5;word-break:keep-all;}
	.en{font-family:'Montserrat', sans-serif;}
	.strong{font-weight:600;}

	@media screen and (max-width:980px){
		body, input, select, textarea{font-size:11pt;}
	}

	@media screen and (max-width:767px){
		body, input, select, textarea{font-size:10.5pt;}
	}

   	@media screen and (max-width:480px){
		html, body{min-width:320px;}
		body, input, select, textarea{font-size:10pt;}
	} 

	@media only screen and (min-width:320px){
		body{overflow-x: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:68px;height:68px;position:fixed;bottom:60px;right:20px;display:none;text-align:center;z-index:10000;
	background:#0d995c url('/images/kor06r-22-0459/common/go_top.png') no-repeat center center;}
    
    @media only screen and (max-width: 768px) {
		.back-to-top {width: 45px; height: 45px; background-size:22px;}
        .back-to-top i {line-height: 45px; font-size: 15px;}
	}
	
	@media only screen and (max-width: 480px) {
		.back-to-top{bottom:30px;right:10px;}
	}

/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
	#wrapper{position:relative;width:100%;min-width:320px;height:100%;}
	.cont_inner{width:1280px;margin:0 auto;}
	.inner{width:1280px !important;}
	.cont_inner:after,.inner:after{content:'';display:block;clear:both;}

	@media screen and (max-width:1280px){
	    .cont_inner,.inner{width:100% !important;padding:0 30px !important;}
	}

	@media screen and (max-width:980px){
	    .cont_inner,.inner{padding:0 20px !important;}
	}

	@media screen and (max-width:767px){
	    .cont_inner,.inner{padding:0 15px !important;}
	}


/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
    #header{width:100%;height:100px;position:absolute;top:0px;left:0px;right:0px;z-index:100;background-color:transparent;border-bottom:1px solid rgba(255,255,255,0.3);}
    #header #header_in{position:relative;height:100px;}
    #header_in .top_logo{z-index:300; position:relative; top:-3px;}
	#header_in .top_logo .common{display:block;}
	#header_in .top_logo .active{display:none;width:191px;height:40px;background:url('/images/kor06r-22-0459/common/top_logo_on.png') no-repeat top center;}
	
	#L_SITE_LOGO h1{line-height:0; font-size:0;}
	
    .nav-btn{display:none;}
	.nav-bg{z-index:10;display:none;position:absolute;top:100px;left:-500%;width:1000%;height:240px;background:rgba(255,255,255,0.98);}

    .util-menu{z-index:300;}
    .util-menu ul{display:block;}
    .util-menu li{display:table;float:left;height:50px;border:1px solid rgba(255,255,255,0.1);border-radius:5px;text-align:center;margin-left:10px;}
    .util-menu li:first-child{border-color:rgba(255,255,255,0.33);margin-left:0;}
    .util-menu li a{font-size:16px; display:table-cell;vertical-align:middle;font-weight:400;color:#fff;padding:0 20px;}

    #header #nav{margin-right:auto;margin-left:auto;}
    .navigation{z-index:200;}
    .navigation:after{content:""; display:block;clear:both;}
    .navigation > li{position:relative;text-align:center;height:100px;display:table;}
    .navigation > li > a.main-menu{display:table-cell; vertical-align:middle;padding:0 45px;width:100%;font-weight:450;font-size:20px;color:#fff;}

	.navigation .sub-menu{display:none;z-index:998;position:absolute;top:100px;left:0;width:100%;height:200px;padding-top:12px;}
    .navigation .sub-menu a{padding:7px 0;display:block;text-align:center;font-weight:normal;color:#7c7c7c;font-size:18px; line-height:1.3;}
    .navigation .sub-menu .intro-menu{display:none;}

    #header.on{background:rgba(255,255,255,0.98);border-bottom:1px solid rgba(0,0,0,0.1);z-index:500;}
    #header.on .navigation > li > a.main-menu{color:#333;}
	#header.on .navigation > li > a.main-menu:hover,
	.navigation .sub-menu a:hover{color:#018850;}
    #header.on .top_logo .common{display:none;}
	#header.on .top_logo .active{display:block;}
	#header.on .util-menu li{border:1px solid rgba(0,0,0,0.33);}
	#header.on .util-menu li a{color:#555;}


	@media only screen and (min-width:1201px) {
		.navigation > li:hover:before {
			content:''; 
			display:block;
			width:60%;
			height:2px; 
			background:#018850;
			position: absolute;
			bottom: 0;
			left:0;
			right:0;
			margin:0 auto;
		}
	}

	@media only screen and (max-width:1200px) {

	    #header_in .top_logo{margin-right:auto;}
		.nav-btn{width:40px;height:30px;margin-left:20px;z-index:999;display:block;position:relative;cursor:pointer;}
		.nav-btn span{position:absolute;left:50%;display:block;margin-left:-20px;width:40px;height:3px;background:#fff;transition:.2s all linear;}
		.nav-btn span:nth-child(1){top:0;}
		.nav-btn span:nth-child(2){top:14px;}
		.nav-btn span:nth-child(3){top:27px;}	
		.nav-btn.nav-close{}
		.nav-btn.nav-close span{background:#000;}
		.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);}

		.util-menu li{height:40px;}
		.util-menu li a{padding:0 15px;}
		.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:100px;right:-100%;display:block;width:100%;height:100%;background:#fff;}
		#nav ul.navigation{margin:0 20px;}
        .navigation > li{width:100%;text-align:left;border-top:1px solid #e1e1e1;height:auto;display:inline-block;}
		.navigation > li:first-child{border-top:none;}
		#header.on .navigation > li > a.main-menu{font-size:1.500em;padding:20px 0;line-height:1.4;color:#333;display:inline-block;width:100%;}
		#header.on .navigation > li > a.main-menu:after{content:'';position:absolute;top:30px;right:20px;border:solid rgba(0,0,0,0.48);border-width:0 2px 2px 0;display:inline-block;padding:7px;transform:rotate(45deg);-webkit-transform:rotate(45deg);}
		#header.on .navigation > li.active > a.main-menu:after{transform:rotate(-135deg);-webkit-transform:rotate(-135deg);}
        #header.on .nav-btn span{background:#000;}

        .navigation > li:hover .sub-menu{background:inherit;}
        .navigation .sub-menu{display:none;padding-top:0;position:relative;top:0;height:inherit;background:#f7f7f7 !important;} 
        .navigation .sub-menu li{border-top:1px solid #eee;}
		.navigation .sub-menu a{font-size:1.250em;color:#777;display:block;padding:15px 30px;text-align:left;}
	    #header.on .navigation > li > a.main-menu:hover,
	    .navigation .sub-menu a:hover{color:#000;}
	}

	@media only screen and (max-width:500px){
		#header_in .top_logo .active{width:160px;height:40px;background-size:160px;}
		#L_SITE_LOGO h1 img{width:160px;}
		.util-menu li a{padding:0 12px; height:38px; font-size:14px;}
	}


/* 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: #509591;}


	@media only screen and (max-width: 980px) {

	}



	


/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer {position: relative; width: 100%; padding: 50px 0; background:#f6f6f6}
#footer .footer-area {position: relative; width: 1280px; margin: 0 auto;}

#footer .foot-agree {position: absolute;top: 0; right: 0; margin-top:25px;}
#footer .foot-agree ul {display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap;}
#footer .foot-agree ul li {padding: 0 15px;}
/*#footer .foot-agree ul li:not(:last-child) { border-right: 1px solid #afafaf;}*/
#footer .foot-agree ul li:first-child {padding-left: 0;}
#footer .foot-agree ul li:last-child {padding-right: 0;}
#footer .foot-agree ul li a {display: block; font-size:16px; font-weight:500; color: #555; line-height: 1;}


#footer .foot-info{border-top:1px solid #dadada; padding-top:30px; margin-top:30px;}
#footer .foot-info p, #footer .foot-info li, #footer .foot-info a {font-size: 16px; color: #666; line-height: 1.6;}
#footer .foot-info ul {margin-bottom:5px; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap;}
#footer .foot-info ul li {position: relative;}
/*#footer .foot-info ul li:not(:last-child):after {content: '';display: block; position: absolute; top: 5px; right: 10px; width: 1px; height: 14px; background:#999;}*/
#footer .foot-info ul li:not(:last-child) {padding-right:30px;}
#footer .copy{padding-top:10px;}

@media screen and (max-width: 1280px) {
  #footer {width: 100%; padding: 50px 15px;}
  #footer .footer-area {width: 100%;}
}

@media screen and (max-width: 768px) {
  #footer .foot-agree {position: relative;}
  #footer .foot-agree ul li {padding: 0 10px;}
  #footer .foot-agree ul li a{font-size:15px;}
  #footer .foot-info p, #footer .foot-info li, #footer .foot-info a {font-size: 14.5px; line-height: 1.5;}
  #footer .foot-info{padding-top:20px; margin-top:20px;}
  #footer .foot-info ul {margin-bottom:0px;}
}
@media screen and (max-width: 480px) {
	#footer {width: 100%; padding: 30px 10px;}
	#footer .foot-logo img{width:152px;}
	#footer .foot-agree ul li:last-child{padding:10px 0 0 0;}
}



/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual {position: relative;}
.main-visual .carousel-inner .item {height:930px;}
.main-visual .carousel-inner .main-img01 {background: url("/images/kor06r-22-0459/main/main_visual_01.jpg") no-repeat center center/cover;}
.main-visual .carousel-inner .main-img02 {background: url("/images/kor06r-22-0459/main/main_visual_02.jpg") no-repeat right 25%/cover;}
.main-visual .carousel-inner .main-img03 {background: url("/images/kor06r-22-0459/main/main_visual_03.jpg") no-repeat center center/cover;}

.main-visual .carousel-caption {width: 1200px; top: 50%; left: 50%; margin: 0 auto; text-align: left;display:table;
	 -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); 
}

.main-visual .carousel-caption .slogan{text-align:left;display:table-cell;vertical-align:middle;}
.main-visual .carousel-caption .slogan p{color:#fff;font-weight:400;word-break:keep-all;letter-spacing:-2px; text-shadow:none;}
.main-visual .carousel-caption .slogan p.main-copy{font-size:62px; margin-bottom:30px; line-height:1.2;}
.main-visual .carousel-caption .slogan p.main-copy strong{font-weight:600;}
.main-visual .carousel-caption .slogan p.sub-copy{font-size:40px; line-height:1.4;}

.main-visual .carousel-indicators {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  display: block;
  position: absolute;
  bottom: 17%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .3s opacity;
  transition: .3s opacity;
  text-align: left;
}

.main-visual .carousel-indicators li {
  display: inline-block;
  position: relative;
  border: none;
  font-size: 14px;
  color: #fff;
  opacity: .6;
  font-weight: 700;
  text-indent: 0;
  width:140px;
  height: auto;
  text-align: left;
  margin: 0;
  background: none;
}

.main-visual .carousel-indicators li span{font-family:'Montserrat', sans-serif;  font-size:18px;}

.main-visual .carousel-indicators li:after {
  content: '';
  display: inline-block;
  width: 90px;
  height: 4px;
  background: #fff;
  position: absolute;
  bottom: 10px;
  left: 30px;
  opacity: 0.6;
}

.main-visual .carousel-indicators li:not(:last-child) {margin-bottom: 30px;}
.main-visual .carousel-indicators li.active {opacity: 1;}
.main-visual .carousel-indicators li.active:after {opacity: 1;background: #fff;}

.main-visual .carousel-control{position:absolute; width:34px; height:62px; top:50%; border:0; z-index:1; text-shadow:none; text-indent:-9999em; overflow:hidden;}
.main-visual .carousel-control.left{left:7%; background:url("/images/kor06r-22-0459/main/visual_btn_prev.png") no-repeat center center}
.main-visual .carousel-control.right{right:7%; background:url("/images/kor06r-22-0459/main/visual_btn_next.png") no-repeat center center}

@media screen and (max-width:1500px){
	.main-visual .carousel-control.left{left:1%;}
	.main-visual .carousel-control.right{right:1%;}
}

@media screen and (max-width: 1280px) {
	.main-visual .carousel-control{display:none;}
}

@media screen and (max-width: 1220px) {
  .main-visual .carousel-indicators {width: 100%;padding: 0 20px;}
  .main-visual .carousel-caption {width: 100%; padding-left: 50px;}
}

@media screen and (max-width: 980px) {
  .main-visual .carousel-inner .item {height: 800px;}
  .main-visual .carousel-caption .slogan p.main-copy{font-size:46px;}
  .main-visual .carousel-caption .slogan p.sub-copy{font-size:32px;;}
}


@media screen and (max-width: 768px) {
  .main-visual .carousel-inner .item {height: 600px;}
  .main-visual .carousel-caption {padding-left: 20px;}
  .main-visual .carousel-indicators {top: unset; bottom: 40px;}
  /*.main-visual .carousel-indicators li {display: inline-block; width: calc(100% / 3 - 10px);}
  .main-visual .carousel-indicators li:after {width: 100%;bottom: 0; opacity: .6;}*/
}

@media screen and (max-width: 620px) {
	.main-visual .carousel-inner .item {height:500px;}
	.main-visual .carousel-caption .slogan p.main-copy{font-size:26px; letter-spacing:-1px; margin-bottom:15px;}
	.main-visual .carousel-caption .slogan p.sub-copy{font-size:19px; letter-spacing:-1px;}

	.main-visual .carousel-indicators li {width:100px;}
	.main-visual .carousel-indicators li span{font-size:14px;}
	.main-visual .carousel-indicators li:after {width:65px;height: 4px;bottom: 8px; left: 25px;}
}





/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

    .container{width:100%;position:relative;}	
	.container.main{margin:0;padding:0;}
    #mainContainer{z-index:555;}
	.container .section{padding:120px 0;position:relative;}
	.container .section:after{content:'';clear:both;display:block;box-sizing:border-box;}
	.container .section h1{font-size:46px; font-weight:400;line-height:1.2;color:#292929;}
	.container .section h1 span{font-size:24px; display:block; margin-top:15px;}
	.container .section h1 strong{font-weight:700;}
	.s_pc{display:block !important;}
	.s_mo{display:none !important;}

	.arrow_button{position:relative;display:-webkit-inline-box;display:-moz-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-moz-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;}
	.arrow_button span{font-size:15px;color:#fff;font-weight:400;white-space:nowrap;}
	.arrow_button em{margin-left:15px;display:inline-block;background-repeat:no-repeat;background-position:center center;background-size:auto;}
	.arrow_button.vertical span{text-transform:uppercase;writing-mode:vertical-rl;-webkit-writing-mode:vertical-rl;-ms-writing-mode:tb-rl;transform:rotate(180deg);-webkit-transform:rotate(180deg);}
	.arrow_button.vertical span:before{content:'';position:absolute;top:-100px;left:50%;margin-left:-20px;width:40px;height:40px;border-radius:50%;background:#bae3ff;}
	.arrow_button.vertical span:after{content:'';position:absolute;top:-80px;left:50%;margin-left:-1px;width:2px;height:60px;background:#333;}
	/*.arrow_button.single em{width:34px;height:7px;background-image:url('/images/kor06r-22-0459/main/single_arrow.png');}*/
	.arrow_button.small em{width:17px;height:6px;background-image:url('/images/kor06r-22-0459/common/button_arrow.png');}
	.arrow_button.white em{width:22px;height:13px;background-image:url('/images/kor06r-22-0459/main/list_arrow_more.png'); position:relative; top:2px;}
	.arrow_button.black em{width:22px;height:13px;background-image:url('/images/kor06r-22-0459/main/news_list_arrow_more.png'); position:relative; top:2px;}
	.arrow_button.long em{width:25px;height:12px;background-image:url('/images/kor06r-22-0459/main/arrow_long.png');}
	.arrow_button.small{padding:7px 20px;border:1px solid #d2d2d2;}
	.arrow_button.small span{font-size:1em;font-weight:500;}
	.arrow_button.small:hover{border:1px solid #777;}.arrow_button.small:hover span{color:#000;}
	.arrow_button.single em{margin-left:0;}
	.arrow_button.round{margin-top:30px; border:1px solid #fff; padding:10px 25px; border-radius:50px; }	



    /* main_story */
	.section.main_story{width:100%;background-image:url('/images/kor06r-22-0459/main/section01_bg.png');background-repeat:no-repeat;background-position:top right;background-size:auto;}
	.main_story h1{margin-bottom:30px;}
	.main_story .left_cont .image{display:block;margin-top:100px;}
	.main_story .ff_object > .obj:first-child{flex:0 0 40%;-ms-flex:0 0 40%;max-width:40%;}
	.main_story .ff_object > .obj:last-child{flex:0 0 60%;-ms-flex:0 0 60%;max-width:60%;}
	.main_story .right_cont h6{margin-top:30px;color:#6a6a6a;}
	.main_story .right_cont .arrow_button{padding-bottom:130px;}

	/* business areas */
	.section.main_business{padding:0 0 50px 0;}
	.section.main_business h1{white-space:nowrap;padding-right:70px;}
	.main_business .arrow_button{margin-top:30px;}
	.main_business .arrow_button span{font-size:1.5em;}

	/* main banner */
	.main_banner{}
	.main_banner .obj{overflow:hidden;min-height:470px;}
	.main_banner .obj a{display:table;width:100%;height:100%;background-repeat:no-repeat;background-position:center center;background-size:cover;position:relative;-webkit-transition:transform .3s ease-out;-moz-transition:transform .3s ease-out;-ms-transition:transform .3s ease-out;-o-transition:transform .3s ease-out;transition:transform .3s ease-out;}
	.main_banner .obj a:before{content:'';position:absolute;top:0px;left:0px;width:100%;height:100%;background:rgba(0,0,0,0.2);z-index:5;}
	.main_banner .obj a:hover::before{background:rgba(0,0,0,0.01);}
	.main_banner .obj a:hover{-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform: scale(1.2);-o-transform:scale(1.2);transform:scale(1.2);-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=1.2, M12=0, M21=0, M22=1.2, SizingMethod='auto expand')";}
	.main_banner .obj:nth-child(1) a{background-image:url('/images/kor06r-22-0459/main/section02_image01.jpg');}
	.main_banner .obj:nth-child(2) a{background-image:url('/images/kor06r-22-0459/main/section02_image02.jpg');}
	.main_banner .obj:nth-child(3) a{background-image:url('/images/kor06r-22-0459/main/section02_image03.jpg');}
	.main_banner .obj:nth-child(4) a{background-image:url('/images/kor06r-22-0459/main/section02_image04.jpg');}
	.main_banner .obj span{font-size:1.750em;color:#fff;display:table-cell;vertical-align:middle;font-weight:600;text-align:center;z-index:10;text-shadow:3px 3px 3px rgba(0,0,0,0.2);}

	/* main_experience */
	.main_experience{}
	.main_experience h1{margin-bottom:30px;}
	.main_experience .movie_wrap{text-align:center;position:relative;}
	.main_experience .movie_wrap:before{content:'';width:100%;height:240px;position:absolute;top:50%;margin-top:-120px;left:0px;background:#daf0ff;z-index:-1;}
	.main_experience .movie_wrap .movie_cont{width:980px;height:550px;margin:40px auto 0px auto;z-index:2;}
	.movie_cont .arrow_button{margin-top:30px;padding-bottom:5px;border-bottom:2px solid #444;}



	/* main_ask */
	.section.main_ask{text-align:center;background-repeat:no-repeat;background-position:center center;background-size:cover;background-image:url('/images/kor06r-22-0459/main/section08_bg.jpg');}
	.main_ask .cont_inner{color:#fff;}
	.normal_button{margin-top:30px;padding:10px 45px;text-align:center;border:1px solid #fff;display:inline-block;}
	.normal_button span{font-size:1.125em;color:#fff;}


	@media only screen and (max-width:1280px) {
	    .container .section{padding:100px 0;}
	    .main_experience .movie_wrap{padding:0 20px;}
		.main_experience .movie_wrap .movie_cont{width:100%;height:500px;margin:30px auto 0px auto;}
	}

	@media only screen and (max-width:980px) {
		.container .section h1{font-size:38px;}
		.container .section h1 span{font-size:20px;}

		.arrow_button.round{margin-top:20px; padding:7px 20px;}	
		.arrow_button em{margin-left:10px;}


		.s_pc{display:none !important;}
		.s_mo{display:block !important;}
	    .container .section{padding:80px 0;}
		.ff_object .image{text-align:center;}
		.main_story .left_cont .image{margin-top:0px;}
		.main_story .ff_object > .obj:first-child,
		.main_story .ff_object > .obj:last-child,
		.main_business .ff_cont .obj{flex:0 0 100%;-ms-flex:0 0 100%;max-width:100%;}
		.section.main_story{background-size:90% auto;}
		.main_story .ff_object{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;}
		.main_story h1 br,.main_story h5 br{display:none;}
		.main_story h1,.main_business h1{margin-bottom:20px;padding:0;}
		.main_story .right_cont h6,
		.main_business .arrow_button{margin-top:20px;}
		.main_banner .obj{min-height:350px;flex:0 0 50%;-ms-flex:0 0 50%;max-width:50%;}	
	}

	@media only screen and (max-width:768px) {
	    .main_experience .movie_wrap{padding:0 15px;}
		.main_experience .movie_wrap .movie_cont{height:450px;margin:20px auto 0px auto;}
	}

	@media only screen and (max-width:620px) {
	    .container .section{padding:50px 0 60px 0;}
		.container .section h1{font-size:27px;}
		.container .section h1 span{font-size:17px; margin-top:10px;}

		.main_experience .movie_wrap .movie_cont{height:350px;}
		.main_banner .obj{min-height:300px;}	
	}



/* about */
.about .cont-title{text-align:center; margin-bottom:60px;}
.about .ban-list{margin:0 -15px;}
.about .ban-list:after{content:""; display:block; clear:both;}
.about .ban-list li{float:left; margin:0 15px; width:calc(33.33% - 30px); position:relative; display:table; height:460px; }
.about .ban-list li:nth-child(1){background:url('/images/kor06r-22-0459/main/main_about_bg01.jpg') no-repeat center center/cover;}
.about .ban-list li:nth-child(2){background:url('/images/kor06r-22-0459/main/main_about_bg02.jpg') no-repeat center center/cover;}
.about .ban-list li:nth-child(3){background:url('/images/kor06r-22-0459/main/main_about_bg03.jpg') no-repeat center center/cover;}
.about .ban-list li .inner-box{position:relative;  padding:0 15px; display:table-cell; vertical-align:middle; text-align:center;}
.about .ban-list li .inner-box h2{font-size:30px; margin:15px 0 20px 0; color:#fff; font-weight:500;}
.about .ban-list li .inner-box p{font-size:18px; color:#fff; font-weight:400; line-height:1.4; word-break:keep-all;}
.about .ban-list .go-btn{position:absolute; top:0; left:0; display:block; width:100%; height:100%; text-indent:-9999em; overflow:hidden;}
.about .ban-list li:hover .arrow_button.round{border:1px solid #86be00; background:#86be00; -webkit-transition:all .3s ease-out; -moz-transition:all .3s ease-out; transition:all .3s ease-out;}	
.about .ban-list li:before{position:absolute; content:""; top:0; left:0; width:100%; height:100%; background:rgba(19,169,86,0.7); z-index:-1; opacity:0;}
.about .ban-list li:hover .inner-box{background:rgba(19,169,86,0.7); -webkit-transition:all .3s ease-out; -moz-transition:all .3s ease-out; transition:all .3s ease-out;}

@media only screen and (max-width:1200px) {
	.about .ban-list{margin:0 -5px;}
	.about .ban-list li{float:left; margin:0 5px; width:calc(33.33% - 10px);}
	.about .ban-list li .inner-box p br{display:none;}
}

@media only screen and (max-width:980px) {
	.about .cont-title{margin-bottom:30px;}
	.about .ban-list li .inner-box{padding:0 10px;}
	.about .ban-list li .inner-box h2{font-size:24px; margin:10px 0 15px 0;}
	.about .ban-list li .inner-box p{font-size:16px; line-height:1.3;}
}

@media only screen and (min-width:621px) {
	.about .ban-list li:nth-child(odd){margin-top:30px;}
}

@media only screen and (min-width:981px) {
	.about .ban-list li:nth-child(odd){margin-top:50px;}
}

@media only screen and (max-width:620px) {
	.about .ban-list{margin:0;}
	.about .ban-list li{margin:10px 0 0 0; width:100%; height:300px;}
	.about .ban-list li:first-child{margin:0;}
	.about .ban-list li .inner-box p br{display:block;}
	.about .ban-list li .inner-box img{width:52px;}
}


/* main_portfolio */
.container .section.main_portfolio{padding:100px 0 120px 0;} 
.main_portfolio .cont-title{margin-bottom:60px;}
.main_portfolio{position:relative;}
.container .section.main_portfolio h1{color:#fff;}
/*.main_portfolio:before{content:'';position:absolute;top:0px;left:0px;width:77%;height:448px;background:#0d995c; border-radius:0 100px 0 0}*/
.main_portfolio .portfolio_bg{position:absolute;top:0px;left:0px;width:77%;height:448px;background:#0d995c; border-radius:0 100px 0 0}
.portfolio_wrap{padding-left:12%; padding-right:10%;}
.portfolio_cont{position:relative;}
.portfolio_cont h1{margin-bottom:30px;}
.portfolio_cont .slick-dots{position:absolute;top:30px;left:0px;display:-webkit-inline-box;display:-moz-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:inline-flex; display:none !important;}
.portfolio_cont .slick-dots li button{width:30px;height:3px;background:#ddd;text-indent:-9999px;outline:none;border:none;}
.portfolio_cont .slick-dots li.slick-active button{background:#000;}
.portfolio_cont .slick-arrow{position:absolute;top:-120px;width:60px;height:60px;border-radius:50%;border-radius:50%;border:1px solid #fff;background-repeat:no-repeat;background-position:center center;background-size:auto;background-color:transparent;text-indent:-9999px;outline:none;}
.portfolio_cont .slick-arrow.slick-prev{background-image:url('/images/kor06r-22-0459/main/arrow_prev.png');}
.portfolio_cont .slick-arrow.slick-next{background-image:url('/images/kor06r-22-0459/main/arrow_next.png');}
.portfolio_slide{width:100%;}
.portfolio_slide .cont{position:relative; margin-right:50px; border:3px solid transparent}
.portfolio_slide .cont .t_cont{bottom:30px;left:0; right:0; text-align:center; color:#fff;position:absolute; z-index:1;}
.portfolio_slide .cont .t_cont h5{font-size:21px;}
.portfolio_slide .cont .t_cont em{font-size:0.938em;margin-bottom:10px;font-family:'Montserrat', sans-serif;font-style:normal;}
.portfolio_slide .cont img{display:block; width:100%;}
.portfolio_slide .cont:hover{border:3px solid #86be00; -webkit-transition:all .3s ease-out; -moz-transition:all .3s ease-out; transition:all .3s ease-out;}

.portfolio_slide .cont .title-bar{position:absolute; width:100%; height:100%; bottom:0; left:0; background:url('/images/kor06r-22-0459/main/product_title_bg.png') no-repeat bottom center;}


@media only screen and (max-width:1350px) {
	.portfolio_wrap{padding-left:7%; padding-right:5%;}
	.portfolio_slide .cont{margin-right:30px;}
}


@media only screen and (min-width:981px) {
	.portfolio_cont .slick-arrow.slick-prev{right:300px;}
	.portfolio_cont .slick-arrow.slick-next{right:230px;}
}

@media only screen and (min-width:1025px) {
	.portfolio_cont .slick-arrow.slick-prev{right:390px;}
	.portfolio_cont .slick-arrow.slick-next{right:320px;}
}

@media only screen and (min-width:1351px) {
	.portfolio_cont .slick-arrow.slick-prev{right:480px;}
	.portfolio_cont .slick-arrow.slick-next{right:400px}
}

@media only screen and (max-width:1280px) {
	.container .section.main_portfolio{padding:80px 0 100px 0;} 
	.portfolio_wrap{padding:0 30px;}
}

@media only screen and (max-width:980px) {
	.container .section.main_portfolio{padding:60px 0 80px 0;} 
	.portfolio_wrap{padding:0 20px;}
	/*.main_portfolio:before{height:340px;}*/
	.main_portfolio .portfolio_bg{height:340px;}

	.main_portfolio .cont-title{margin-bottom:30px;}
	.portfolio_slide .cont .t_cont{bottom:20px}
	.portfolio_slide .cont .t_cont h5{font-size:18px}
	.portfolio_slide .cont{margin-right:15px;}

	.portfolio_cont .slick-arrow{top:-110px;width:50px;height:50px;}
	.portfolio_cont .slick-arrow.slick-prev{right:360px;}
	.portfolio_cont .slick-arrow.slick-next{right:300px;}
}

@media only screen and (max-width:768px) {
	.portfolio_wrap{padding:0 15px;}
	/*.main_portfolio:before{width:100%;height:300px; border-radius:0 50px 0 0}*/
	.main_portfolio .portfolio_bg{width:100%;height:300px; border-radius:0 50px 0 0}
	.portfolio_cont .slick-arrow.slick-prev{right:80px;}
	.portfolio_cont .slick-arrow.slick-next{right:20px;}
}

@media only screen and (max-width:620px) {
	.container .section.main_portfolio{padding:40px 0 60px 0;} 
	.portfolio_cont .slick-arrow{top:-100px;width:34px;height:34px;}
	.portfolio_cont .slick-arrow.slick-prev{right:55px; background-size:8px;}
	.portfolio_cont .slick-arrow.slick-next{right:15px; background-size:8px;}
	.portfolio_slide .cont{margin-right:0;}
}
@media only screen and (max-width:480px) {
	.container .section.main_portfolio h1 span{letter-spacing:-1px;}
}


/* main_news */
.section.main_news{color:#454545;padding-top:0px !important;}
.section.main_news .arrow_button{margin-top:50px;}
.main_news .ff_cont .obj:nth-child(1){flex:0 0 30%;-ms-flex:0 0 30%;max-width:30%;}
.main_news .ff_cont .obj:nth-child(2){flex:0 0 70%;-ms-flex:0 0 70%;max-width:70%;}

.news_list .cont_list{padding:30px 10px 30px 0px;border-top:1px solid #ddd; position:relative;}
.news_list .cont_list:last-child{border-bottom:1px solid #ddd;}
.news_list .cont_list span{color:#666;}
.news_list .cont_list .date{font-size:1.31em;}	
.news_list .cont_list .list{width:85%;padding:0 20px;font-size:1.375em;}	
.news_list .cont_list .list:hover{text-decoration:none;color:#018850;}
.news_list .cont_list .link{width:42px;height:42px;/*border-radius:50%;border:1px solid #fff;*/display:inline-block;position:absolute;right:0px;background-repeat:no-repeat;background-position:center center;background-size:auto;background-image:url('/images/kor06r-22-0459/main/list_arrow_next.png');}

.section.main_news .arrow_button.round{border:1px solid #222; cursor:pointer}	
.section.main_news .arrow_button span{color:#222;}
.section.main_news .arrow_button:hover{border:1px solid #86be00; background:#86be00; -webkit-transition:all .3s ease-out; -moz-transition:all .3s ease-out; transition:all .3s ease-out;}
.section.main_news .arrow_button:hover span{color:#fff; -webkit-transition:all .3s ease-out; -moz-transition:all .3s ease-out; transition:all .3s ease-out;}
.section.main_news .arrow_button:hover em{background-image:url('/images/kor06r-22-0459/main/list_arrow_more.png'); -webkit-transition:all .3s ease-out; -moz-transition:all .3s ease-out; transition:all .3s ease-out;}

@media only screen and (min-width:1201px) {
	.section.main_news ..cont_inner{min-height:240px;}
}

@media only screen and (max-width:1280px) {
	.main_news .news_list{padding-top:30px;}
	.main_news .ff_cont .obj:nth-child(1),
	.main_news .ff_cont .obj:nth-child(2){flex:0 0 100%;-ms-flex:0 0 100%; max-width:100%;}
	.news_list .cont_list{padding:20px 10px 20px 0px}
	.section.main_news h1 br{display:none;}
}

@media only screen and (max-width:980px) {
	.section.main_news .arrow_button{margin-top:20px;}	
}

@media only screen and (max-width:768px) {
	.news_list .cont_list .list{width:80%;padding:0 15px;font-size:1.250em;}	
	.news_list .cont_list .link{width:35px;height:35px;}
}

@media only screen and (max-width:620px) {
	.news_list .cont_list .list{width:75%;padding:0 10px; /*font-size:1.071em;*/}	
	.news_list .cont_list .link{width:30px;height:30px;}
}

@media only screen and (min-width: 621px) and (max-width:1280px) {
	.section.main_news .arrow_button{position:absolute; top:0; right:20px; margin-top:0;}
}


/* contact */

.main_contact .side-banner{display:flex;}
.main_contact .side-banner > div{width:50%; color:#fff; text-align:left;}
.main_contact .side-banner > div h3{font-size:38px; font-weight:500; margin-bottom:10px;}
.main_contact .side-banner > div p{font-size:20px; font-weight:300; }
.main_contact .side-banner > div > div{position:relative; width:640px; padding:110px;}
.main_contact .side-banner .inquiry{background:url('/images/kor06r-22-0459/main/section05_bg01.jpg') no-repeat center center/cover;}
.main_contact .side-banner .location{background:url('/images/kor06r-22-0459/main/section05_bg02.jpg') no-repeat center center/cover;}
.main_contact .side-banner .location:after{content:'';clear:both;display:block;}
.main_contact .side-banner .go-btn{position:absolute; top:0; left:0; display:block; width:100%; height:100%; text-indent:-9999em; overflow:hidden;}
.main_contact .side-banner > div > div i{position:absolute; content:""; right:0; top:40%; width:56px; height:56px; background:url('/images/kor06r-22-0459/main/contact_arrow.png') no-repeat;}
.container .section.main_contact{padding:0 !important;}

@media only screen and (min-width:1281px) {
	.main_contact .side-banner .inquiry > div{float:right; padding-left:0;}
	.main_contact .side-banner .inquiry > div i{right:80px;}
}

@media only screen and (max-width:1280px) {
	.main_contact .side-banner > div > div{width:100%; padding:80px 40px;}
	.main_contact .side-banner > div > div i{right:40px;}
}


@media only screen and (max-width:980px) {	

	.main_contact .side-banner > div h3{font-size:30px;}
	.main_contact .side-banner > div p{font-size:18px;}
	.main_contact .side-banner > div > div{padding:80px 20px;}
	.main_contact .side-banner > div > div i{right:20px;}
}

@media only screen and (max-width:768px) {		
	.main_contact .side-banner{flex-direction:column}
	.main_contact .side-banner > div{width:100%;}
	.main_contact .side-banner > div > div i{width:42px; height:42px; background-size:42px;}
	
}

@media only screen and (max-width:500px) {	
	.main_contact .side-banner > div h3{font-size:24px;}
	.main_contact .side-banner > div p{font-size:16px;}
	.main_contact .side-banner > div > div{padding:50px 20px;}
}

@media only screen and (min-width:480px) {
	.main_contact .side-banner > div p br{display:none;}
}




