<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* 공통 */
.mWrap {
	padding: 100px 0;
}
.eg_font {
	font-family: 'Poppins', sans-serif;
}

/* 메인비주얼 */
.mv_wrap {
	position: relative;
}
.mv .item {
	position: relative;
	height: 935px;
}
.mv .slick-slide .bg {
	width:100%;
	height:935px;
	background-repeat: no-repeat !important;
	background-position: 50% 50% !important;
	background-size: cover !important;
}
.mv .slick-slide.slick-active .bg {
	-webkit-animation:KEYFRAME 6s both;
	-moz-animation:   KEYFRAME 6s both;
	-o-animation:     KEYFRAME 6s both;
	animation:        KEYFRAME 6s both;
}
	@-webkit-keyframes KEYFRAME {
	  0% {-webkit-transform:scale(1.1);transform:scale(1.1)}
	  100% {-webkit-transform:scale(1.0);transform:scale(1.0)}
	}
	@-moz-keyframes KEYFRAME {
	  0% {-webkit-transform:scale(1.1);transform:scale(1.1)}
	  100% {-webkit-transform:scale(1.0);transform:scale(1.0)}
	}
	@-o-keyframes KEYFRAME {
	  0% {-webkit-transform:scale(1.1);transform:scale(1.1)}
	  100% {-webkit-transform:scale(1.0);transform:scale(1.0)}
	}
	@keyframes KEYFRAME {
	  0% {-webkit-transform:scale(1.1);transform:scale(1.1)}
	  100% {-webkit-transform:scale(1.0);transform:scale(1.0)}
	}

.mv .text {
	position: absolute;
	top: 370px;
	left: 12%;
	color: #fff;
}
.mv .text .eg {
	font-size: 62px;
	line-height: 1;
	margin-bottom: 30px;
	font-family: 'Poppins', sans-serif; 
	font-weight: 600;
}
.mv .text .ko {
	font-size: 20px;
	line-height: 1.5;
}
.mv .text .eg,
.mv .text .ko {
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.mv .slick-slide.slick-active .text .eg,
.mv .slick-slide.slick-active .text .ko {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.mv .slick-slide.slick-active .text .ko {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.mv_arw {
	position: absolute;
	bottom: 270px;
	left: 12%;
	z-index: 9;
}
.mv_arw .slick-arrow {
	text-indent: -999em;
	outline: 0;
	padding: 0;
	width:74px;
	height: 74px;
	border: 0;
	position: relative;
}
.mv_arw .slick-prev {
	background: url('/image/main/mv_prev.png') no-repeat;
	margin-right: 20px;
}
.mv_arw .slick-next {
	background: url('/image/main/mv_next.png') no-repeat;
}
/* 스크롤 */
.mv_wrap .arrow{
    position: absolute;
    bottom: 0;
    left: 0;
	right: 0;
	text-align: center;
}
.mv_wrap .arrow span{
    display: block;
    /* animation: animate 2s infinite; */
}
.mv_wrap .arrow span img {
	vertical-align: top;
}
@keyframes animate {
    0%{
        opacity: 0;
        transform: translateY(20px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: translateY(45px);
    }
}

/* 써클 css */
.circle_svg{position: absolute;
    bottom: 270px;
    left: 12%;
    z-index: 99;
    margin-left: 94px;}
.circle_svg svg{display:block}
.circle_svg #cercle_blanc{stroke-dashoffset:190;stroke-dasharray:190;position:absolute;top:0;stroke-linecap:round}
.mv .slick-slide.slick-active .circle_svg #cercle_blanc{animation:fill 5.4s cubic-bezier(0.165, 0.840, 0.440, 1.000)}
@keyframes fill{from{stroke-dashoffset:190}to{stroke-dashoffset:0}}

/* business */
.bs_wrap .item {
	width: 50%;
	height: 590px;
	transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
	position: relative;
	top:0;
  margin: auto;
}
	.bs_wrap .item.t01 { background: url('/image/main/bs01_off.jpg') no-repeat; }
	.bs_wrap .item.t01:hover { background: url('/image/main/bs01.jpg') no-repeat; }
	.bs_wrap .item.t02 { background: url('/image/main/bs02_off.jpg') no-repeat; }
	.bs_wrap .item.t02:hover { background: url('/image/main/bs02.jpg') no-repeat; }

.bs_wrap .item:hover {
	top: 20px;
	box-shadow: 10px 10px 15px rgba(0,0,0,0.2);
}
.bs_wrap .item .txt {
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 60px;
	box-sizing: border-box;
	background: transparent;
	transition: 0.4s ease-in-out;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	overflow: hidden;
}
.bs_wrap .item a {
	display: block;
	height: 100%;
}
.bs_wrap .item:hover .txt {
	background: url('/image/main/txt_bg.png') no-repeat bottom;
	padding: 120px 60px 70px;
	bottom: 0;
}
.bs_wrap .item .arw {
	position: absolute;
	right: 50px;
	top: 50px;
	opacity: 0;
	transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
.bs_wrap .item:hover .arw {
	opacity: 1;
}
.bs_wrap .item .arw img {
	border: 1px solid #fff;
    border-radius: 100%;
}
.bs_wrap .item .txt .tit {
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
}
.bs_wrap .item .txt .eg {
	opacity: 0.5;
	font-family: 'Poppins', sans-serif; 
	margin: 15px 0 30px;
}
.bs_wrap .item .txt .fz16 {
	line-height:1.5;
	opacity: 0;
	height: 0;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}
.bs_wrap .item:hover .txt .fz16 {
	opacity: 1;
	height: auto;
}

/* 슬라이드 부분 */
.m_album_row {
	background: url(/image/main/slide_bg.jpg) no-repeat;
	background-size: cover;
	padding: 100px 0;
	position:relative;
}
.m_album_row .album_bg {
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	position:absolute;
	left:0; top:0; right:0; bottom:0;
}
.m_album_box {
	position:relative;
}
.m_album_box .current {
	position:relative;
	float:left;
	width: 960px;
	overflow:hidden;
	font-size: 0;
	margin-left: 80px;
}
.m_album_box .current .art {
	display: inline-block;
	vertical-align: top;
	width: 600px;
	height: 365px;
	position: relative;
}
.m_album_box .current .art img {
	width: 100%;
	height: 100%;
}
.m_album_box .current .art:after {
	content:'';
	display:block;
	position: absolute;
	background: url('/image/main/img_the.png') no-repeat;
	width: 65px;
	height: 65px;
	z-index: 9;
	top:0;
	left:0;
	right:0;
	bottom: 0;
	margin: auto;
	opacity: 0;
    transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}
.m_album_box .current .art:hover:after {
	opacity: 1;
}
.m_album_box .current .txt_wrap {
	display: inline-block;
	width: 360px;
	box-sizing: border-box;
	padding-left: 60px;
	padding-top: 30px;
}
.m_album_box .current .txt {
	color:#fff;
}
.m_album_box .current .txt .fz35 {
	line-height: 1.3;
	word-break: keep-all;
}
.m_album_box .current .tit {
	font-size:21px;
	font-weight:600;
	line-height:31px;
	padding-bottom:25px;
	letter-spacing:-0.03em;
	border-bottom:1px solid #c2c1c5;
	margin-bottom:25px;
}
.m_album_box .current .dt li {
	font-size:16px;
	line-height:1.5em;
	min-height:1.5em;
	margin-bottom:3px;
	position:relative;
	padding-left:80px;
}
.m_album_box .current .dt .label {
	display:block;
	position:absolute;
	left:0; top:0;
	width:80px;
	font-weight:600;
}
.m_album_box .left {
	position:absolute;
	top:0;
	left: 0;
	right: 50%;
	margin-right: 600px;
	width: 360px;
	height: 365px;
	overfloW:hidden;
}
.m_album_box .left .slider_box {
	margin-left: -245px;
}
.m_album_box .right {
	position:absolute;
	top:0;
	left: 50%;
	margin-left: 525px;
	right: 0;
	height: 365px;
	overflow:hidden;
}
.m_album_box .right .slider_box {
	margin-left: -665px;
}
.m_albumarts .item {
	float:left;
}
.m_albumarts .art {
	width:600px;
	overflow:hidden;
	margin: 0 5px;
	height: 365px;
	position: relative;
}
.m_albumarts .art img {
	height: 100%;
	width: 100%;
}
.m_albumarts .art:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left:0; right:0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 9;
}
.m_nav {
	position: absolute;
    bottom: 35px;
}
.m_nav button {
	width: 61px;
    height: 61px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0;
    margin: 0;
    outline: 0;
    border: 0;
    text-indent: -999999px;
    cursor: pointer;
    position: relative;
    border-radius: 100%;
    border: 1px solid transparent;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}
.m_nav button:hover {
	border: 1px solid #fff;
}
.m_nav .slick-prev {
	background: url("/image/main/s_prev.png") no-repeat;
	margin-right: 15px;
}
.m_nav .slick-next { 
	background: url("/image/main/s_next.png") no-repeat;
}

/* 공지사항 */
.notice {
	width: 385px;
	height: 450px;
	box-sizing: border-box;
	border: 6px solid transparent;
	-moz-border-image: -moz-linear-gradient(top left, #0095ec 0%, #7fdd23 100%);
	-webkit-border-image: -webkit-linear-gradient(top left, #0095ec 0%, #7fdd23 100%);
	border-image: linear-gradient(to bottom right, #0095ec 0%, #7fdd23 100%);
	border-image-slice: 1;
	padding: 60px 46px 46px 46px;
	position: relative;
}
.notice .name {
	font-size: 33px;
	display: inline-block;
	font-weight: bold;
    line-height: 1;
}
.notice .name img {
	    height: 15px;
    vertical-align: top;
    margin-top: -5px;
}
.notice .all_the {
	position: absolute;
	right: 45px;
	top: 65px;
}
.notice_slide .item {
	position: relative;
}
.notice_slide .item .bor {
	position: absolute;
	right: 0;
	top: 0;
	background: -webkit-linear-gradient(to bottom right, #0095ec 0%, #7fdd23 100%);
	background: -moz-linear-gradient(to bottom right, #0095ec 0%, #7fdd23 100%);
	background: -o-linear-gradient(to bottom right, #0095ec 0%, #7fdd23 100%);
	background: linear-gradient(to bottom right, #0095ec 0%, #7fdd23 100%);
	border-radius: 30px;
	line-height: 30px;
	height: 30px;
	width: 75px;
	text-align: center;
}
.notice_slide .item .bor span {
	background: #fff;
	border-radius: 30px;
	line-height: 28px;
	width: 73px;
	font-size: 14px;
	color: #18a2c7;
	font-weight: 500;
	display: block;
	margin: 1px auto;
}
.ov_tit {
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-all;
    line-height: 1.5em;
    height: 3em;
}
.notice_slide .item .the {
	opacity: 0.3; 
}
.notice_slide .item .the:hover {
	opacity: 1; 
}
.notice_slide .slick-dots {
	position: absolute;
	right: 22px;
	top: -68px;
}
.notice_slide .slick-dots li {
	display: inline-block;
	margin: 0 5px;
}
.notice_slide .slick-dots li button {
	text-indent:-999em;
	border:0;
	padding:0;
	outline:0;
	background: #e1e1e1;
	border-radius: 100%;
	width: 8px;
	height: 8px;
}
.notice_slide .slick-dots li.slick-active button {
	background: #959595;
}

/* contact us */
.map_wrap {
	position:relative;
}
.root_daum_roughmap_landing {
	width: 100% !important;
}
.map_main {
	-webkit-filter: grayscale(100%);
    filter: gray;
	transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
	
}
.map_main:hover {
	filter: none; 
}
.root_daum_roughmap .wrap_controllers {
	display: none;
}
.map_box {
	background: #1c1c1c;
	box-sizing: border-box;
	width: 510px;
	height: 480px;
	padding: 45px;
	position: absolute;
	top: 60px;
	right: 50%;
	margin-right: -600px; 
	text-align: center;
	z-index: 999;
}	
.map_box .fz14 {
	opacity:0.5; 
	margin-top: 5px;
}
.map_box .name {
	font-size: 33px;
	display: inline-block;
	font-weight: bold;
    line-height: 1;
	padding-left: 20px;
}
.map_box .name img {
	    height: 15px;
    vertical-align: top;
    margin-top: -5px;
}
.map_box li {
	width: 48.5%;
	margin-right: 3%;
	margin-bottom: 3%;
}
.map_box li:nth-child(2n),
.map_box li:last-child {
	margin-right: 0;
}
.map_box li.wid100 {
	width: 100%;
}
.map_box li input,
.map_box li textarea {
	font-size: 13px;
	border: 1px solid #3e3e3e;
	background: #282828;
	box-sizing: border-box;
	width: 100%;
	height: 130px;
	padding: 10px;
	resize: none;
	color: #fff;
}
.map_box li input {
	height: 45px;
	font-size: 13px;
}
.map_box .bot_txt .fz13 {
	color: #848484;
}
.map_box .bot_txt .fz13 a {
	color: #cdcdcd;
	border-bottom: 1px solid #8a8a8a;
	display: inline-block;
}
.map_box .bot_txt .wt_btn {
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	width: 85px;
	height: 30px;
	border: 1px solid #7b7b7b;
	background: transparent;
}</pre></body></html>