﻿@charset "utf-8";

/* fullpage section */
#container { position: relative; width: 100%; height: 100%; }
.mainfullbox { position: relative; width: 100%; height: 100%; }

@media (max-width: 1220px) {
	#container { height: auto; }
	.mainfullbox { height: auto; }
}
@media (max-width: 640px) {
	.mainfullbox { padding:0; }
}

/* fullpage navigation */
.fullpage-navi { position: fixed; top: 50%; right: 100px; transform: translateY(-50%); z-index: 1;}
.fullpage-navi .navi:not(:last-child) { margin-bottom: 5px; position: relative; }
.fullpage-navi span { position: relative; width: 7px; height: 7px; text-align: center; margin: 0 auto 20px; font-size: 12px; color: #fff; border-radius: 50%; display: block; }
.fullpage-navi span:after { content: ''; position: absolute; top:50%; left: 50%; margin-left: -3px; margin-top: -3px; display: block; width: 6px; height: 6px; box-shadow: 0px 0px 0px 1px rgba(255,255,255,0.2); border-radius: 10px; transition: background .5s;}
.fullpage-navi span.on { border-color: rgba(255,255,255,0.2)}
.fullpage-navi span:hover ~ p,
.fullpage-navi span.on ~ p { opacity: 1; }
.fullpage-navi p { opacity: 0; position: absolute; top:-5px; right: calc(100% + 10px); padding: 3px 16px; border-radius: 30px; background: #fff; font-size: 1.1rem; font-weight: 900; color: var(--dark-color); font-family: 'Rajdhani'; letter-spacing: 0; transition: opacity .2s; border: 1px solid rgba(255,255,255,0.3); }
@media (max-width: 1100px) {
	.fullpage-navi { right: 30px; }
}
@media (max-width: 475px) {
	.fullpage-navi { display: none; }
}

/* 배경 컬러 white 일 때 */
.white .fullpage-navi p { color: #fff; background: var(--dark-color); }
.white .fullpage-navi span:after { background: var(--dark-color); }

/* 배경 컬러 black 일 때 */
.black .fullpage-navi p { color: var(--dark-color); background: #fff; }
.black .fullpage-navi span:after { background: #fff; }


/*글자수 줄임*/
.ellipsis_370 { width:370px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; }


/* ********** section common title ********** */
.section-title { position: relative; text-align: center; }
.section-title .title { font-size: 4.5rem; font-weight: 900; color: #000; }
.section-title .more-btn { position: relative; display: inline-block; margin-top: 20px; }
.section-title .more-btn p{ position: relative; font-size: 1.4rem; font-weight: 600; display: inline-block; z-index: 2; cursor: pointer;}
.section-title .more-btn:after { content: ''; position: absolute; top: -7px; left: -16px; width: 30px; height: 30px; border-radius: 50%; z-index: 1;}
.section-title .more-btn.green:after { background: var(--main-green); }
.section-title .more-btn.blue:after { background: var(--main-blue); }
.section-title .more-btn.blue p a{ color: #fff; }
.section-title .more-btn img { display: inline-block; width: 12px; height: auto; position: relative; top: 5.5px; left: 5px; transition: left .25s; }
.section-title .more-btn:hover img { animation: arrow .3s linear infinite alternate;}
@keyframes arrow {
	0% { left: 5px; }
	100% { left: 9px; }
}

@media (max-width: 1200px) {
	.section-title .title { font-size: 3.5rem; }
}

@media (max-width: 550px) {
	.section-title .title { font-size: 2.8rem; }
}

/* ********** main visual ********** */
.visual-container { position: relative; width: 100%; height: 100%; }
.visual-list { position: relative; width: 100%; height: 100%; }
.visual-list .visual-item { position: relative; width: 100%; height: 100vh; background: var(--dark-color); overflow: hidden;}
.visual-list .visual-item .text-wrap { width: 1024px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-weight: 900; z-index: 3;}
.visual-list .visual-item .text-wrap p.fill { color: #fff;}
.visual-list .visual-item .text-wrap p.outline { color: transparent; }
.visual-list .visual-item .text-wrap .left { padding-bottom: 80px; line-height: 1.2; }
.visual-list .visual-item .text-wrap .left p.fill { font-size: 9rem; }
.visual-list .visual-item .text-wrap .left p.outline { font-size: 6.6rem; }
.visual-list .visual-item .text-wrap .right { padding-top: 80px; text-align: right; line-height: 1.1; }
.visual-list .visual-item .text-wrap .right p.outline { font-size: 5.5rem; }
@supports((text-stroke: 1px white) or (-webkit-text-stroke: 1px white)) {
	/* text outline */
	.outline {
		color: transparent;
		-webkit-text-stroke: 1px white;
		text-stroke: 1px white;
		text-shadow: none;
	}
}
.visual-list .visual-item .bg-item {position: absolute; top:0; left: 0; width: 100%; height: 100%; z-index: 2;}
.visual-list .visual-item .bg-item .item { border-radius: 50%; position: absolute; }
.visual-list .visual-item .bg-item .item.circle-fill { width: 500px; height: 500px; background: var(--main-blue); }
.visual-list .visual-item .bg-item .item.circle-outline {width: 330px; height: 330px; border: 60px solid var(--main-green);}
.visual-list .visual-item .bg-item .item.circle-sm-outline { width: 90px; height: 90px; border: 17px solid var(--main-green);}
.visual-list .visual-item .bg-item .item.circle-sm-blue { width: 90px; height: 90px; background: var(--main-blue); }
.visual-list .visual-item .bg-item .item.circle-sm-white { width: 90px; height: 90px; background: #fff; }

/* visual 1 */
.visual-list .visual01 .bg-item .item.circle-fill { left: 130px; top: 260px; animation: toTop 2s linear infinite alternate; }
.visual-list .visual01 .bg-item .item.circle-outline {right: 400px; top: 150px; animation: topBottom 2s linear infinite alternate; }
.visual-list .visual01 .bg-item .item.circle-sm-blue { right: 195px; top: calc(50% - 45px);}
.visual-list .visual01 .bg-item .item.circle-sm-white { left: 40%; bottom: 250px; }
@keyframes toTop {
	0% { top: 260px; }
	100% { top: 240px; }
}
@keyframes topBottom {
	0% { top: 150px; }
	100% { top: 170px; }
}


/* visual 1 */
.visual-list .visual01 { position: relative; }
.visual-list .visual01:after { content: ''; display: block; position: absolute; bottom:0; left:0; width: 100%; height: 50%; background: rgba(2,3,23,0.5); border-top: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(25px); z-index: 2;}


/* visual 2 */
.visual-list .visual02:after { content: ''; display: block; position: absolute; top: 0; left:50%; transform: translateX(-50%); width: 1024px; height: 100%; background: rgba(2,3,23,0.5); border-left: 1px solid rgba(255,255,255,0.3); border-right: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(25px); z-index: 2;}
.visual-list .visual02:before { content: ''; position: absolute; top: 50%; left:0; width: 100%; height: 1px; background: rgba(255,255,255,0.3); z-index: 2;}
.visual-list .visual02 .bg-item .item.circle-fill { left: 200px; top: 50%; animation: topLeft 2s linear infinite alternate;}
.visual-list .visual02 .bg-item .item.circle-outline {right: 300px; bottom: 50%; animation: topRight 2s linear infinite alternate; }
.visual-list .visual02 .bg-item .item.circle-sm-outline { left: 195px; bottom: 50%; }
.visual-list .visual02 .bg-item .item.circle-sm-white { right: 150px; top: 50%; }
@keyframes topLeft {
	0% { left: 200px; }
	100% { left: 250px; }
}
@keyframes topRight {
	0% { right: 300px; }
	100% { right: 350px; }
}


/* visual 3 */
.visual-list .visual03 { position: relative; }
.visual-list .visual03 .text-wrap { transform: translate(-50%,-65%); }
.visual-list .visual03:after { content: ''; display: block; position: absolute; top: 50%; left:0; width: 100%; height: 1px; border-top: 1px solid rgba(255,255,255,0.3); }
.visual-list .visual03 .bg-item .item.circle-fill { left: 200px; top: 50%; width: 400px; height: 400px; }
.visual-list .visual03 .bg-item .item.circle-outline { right: 360px; bottom: 50%; width: 300px; height: 300px; border-width: 60px; }
.visual-list .visual03 .bg-item .item.circle-outline.blue {top: 50%; left: 200px; width: 150px; height: 150px; border-width: 30px; border-color: var(--main-blue); }
.visual-list .visual03 .bg-item .item.circle-sm-white { right: 250px; top: 50%; }

.visual-list .visual03 .bg-slide { position: absolute; top:0; left: 50%; transform: translateX(-50%); width: 110%; height: 100%; white-space: nowrap; z-index: 1;}
.visual-list .visual03 .bg-slide .item-group { position: relative; top:-50%; float: left; width: calc(33.33% - 60px); margin: 0 30px; animation: slibeBgTop 6s linear infinite alternate; }
.visual-list .visual03 .bg-slide .item-group:nth-child(2) { top: 0; animation: slibeBg 6s linear infinite alternate; }
.visual-list .visual03 .bg-slide .item-group .item { position: relative; width: 100%; height:0; padding-bottom: 50%; margin: 60px 0; }
.visual-list .visual03 .bg-slide .item-group .item > img { width: 100%; height: auto; opacity: .3; }

.visual-list .visual03 .mark-img { display: flex; margin-bottom: 20px; gap: 30px; }
.visual-list .visual03 .mark-img .mark { width: auto; height: 127px; }
.visual-list .visual03 .text-wrap .right { padding-top: 0; }

@keyframes slibeBg {
	0% { top: 0; }
	100% { top: -10%; }
}
@keyframes slibeBgTop {
	0% { top: -50%; }
	100% { top: -40%; }
}

/* visual 4 */
.visual-list .visual04 { position: relative; background-image: url("../../img/main/main_bg02.webp");}
.visual-list .visual04::after { content: ''; position: relative; display: block; width: 100%;
	min-height: 100%; background: #020317; opacity: 0.5; z-index: 1;}
.visual-list .visual04 .value-bi { width: 80px; height: 100px; margin-bottom: 10px; }
.visual-list .visual04 .value-bi img { width: 100%; height: auto;}
.visual-list .visual04 .sub-text { font-size: 3.0rem; font-weight: 500; line-height: 1.7; padding-top: 15px; color: #fff;}
.visual-list .visual04 .sub-text span { font-weight: 600;}

/* 회사소개서 */
.visual-container .brochure > a { opacity: .6; position: absolute; bottom: 80px; right: 100px; color: #fff; display: inline-block; font-size: 1.6rem; font-weight: 600; cursor: pointer;}
.visual-container .brochure:hover > a{ opacity: 1; }
.visual-container .brochure > a > img { width: 11px; height: 14px; position: relative; top: 4px; margin-right: 7px;}

/* 메인 비주얼 :: 스크롤아이콘 */
.visual-container .scroll-down { position: absolute; left: 100px; bottom: 80px; }
.visual-container .scroll-down .txt { color:#fff; font-size: 1.2rem; font-weight: 600; vertical-align: bottom; padding-top: 10px;}
.visual-container .scroll-down .circle { padding-left: 20px; position: relative; height: 30px; }
.visual-container .scroll-down .circle span { position: absolute; top: 0; left: 0; display: block; width: 10px; height: 10px; border-radius: 10px; background: #fff; animation: scroll 2s infinite; opacity: 0;}
.visual-container .scroll-down .circle span:nth-child(2) { top: 6px; animation-delay: 0.2s; }
.visual-container .scroll-down .circle span:nth-child(3) { top: 12px; animation-delay: 0.4s;}
.visual-container .scroll-down .circle span:nth-child(4) { top: 18px; animation-delay: 0.6s; }

@keyframes scroll {
	0% { opacity: 0; }
	50% { opacity: .5; }
	100% { opacity: 0; }
}

@media (max-width: 1440px) {
	/* visual 3 */
	.visual-list .visual03 .bg-item .item.circle-outline { right: 150px; }
	.visual-list .visual03 .bg-item .item.circle-outline.blue { left: 50px; }
	.visual-list .visual03 .bg-item .item.circle-sm-white { right: 330px; }

}


@media (max-width: 1100px) {
	/* main visual 공통 */
	.visual-list .visual-item .text-wrap { width: calc(100% - 140px);}
	.visual-list .visual-item .text-wrap .left p.outline { font-size: 5.5rem; }
	.visual-list .visual-item .text-wrap .left p.fill { font-size: 8rem; }
	.visual-list .visual-item .bg-item .item.circle-fill { width: 400px; height: 400px; }
	.visual-list .visual-item .bg-item .item.circle-outline { width: 200px; height: 200px; border-width: 40px;}

	/* visual 2 */
	.visual-list .visual02:after { width: calc(100% - 140px) }

	/* visual 3 */
	.visual-list .visual03 .bg-item .item.circle-outline { right: 150px; }
	.visual-list .visual03 .bg-item .item.circle-outline.blue { left: 50px; }
	.visual-list .visual03 .bg-item .item.circle-sm-white { right: 330px; }
	
	

	/* 회사소개서 */
	.visual-container .brochure > a{ right: 60px; bottom: 30px; }

	/* 메인 비주얼 :: 스크롤아이콘 */
	.visual-container .scroll-down { left: 60px; bottom: 30px; }

}

@media (max-width: 768px) {
	/* main visual 공통 */
	.visual-list .visual-item .text-wrap { width: calc(100% - 100px);}
	.visual-list .visual-item .text-wrap p.outline { font-size: 4.5rem !important; }
	.visual-list .visual-item .text-wrap p.fill { font-size: 6.5rem !important; }
	.visual-list .visual-item .bg-item .item.circle-fill { width: 300px; height: 300px; }
	.visual-list .visual-item .bg-item .item.circle-outline { width: 100px; height: 100px; border-width: 20px; right: 100px; }

	/* visual 2 */
	.visual-list .visual02:after { width: 100% }
	.visual-list .visual02 .bg-item .item.circle-sm-outline { display: none; }
	.visual-list .visual02 .bg-item .item.circle-sm-white { top: auto; top: 15%; }

	/* visual 3 */
	.visual-list .visual03 .bg-slide { width: 180%; }
	.visual-list .visual03 .bg-item .item.circle-sm-white { display: none; }
	.visual-list .visual03 .text-wrap .left { padding-bottom: 0;}
	.visual-list .visual03 .text-wrap .right { padding-top: 50px;}
	.visual-list .visual03 .mark-img { margin-bottom: 10px; }
	.visual-list .visual03 .mark-img .mark { height: 100px; }
	
	/* visual 4 */
	.visual-list .visual04 .sub-text { font-size: 2.4rem; letter-spacing: -1px;}	

	/* 회사소개서 */
	.visual-container .brochure > a{ right: 30px; bottom: 30px; }

	/* 메인 비주얼 :: 스크롤아이콘 */
	.visual-container .scroll-down { left: 30px; bottom: 30px; }
}

@media (max-width: 550px) {
	/* main visual 공통 */
	.visual-list .visual-item .text-wrap .left p.outline { font-size: 4rem !important; }
	.visual-list .visual-item .text-wrap .left p.fill { font-size: 4.5rem !important; }
	.visual-list .visual-item .text-wrap .right p.outline { font-size: 2.8rem !important; }

	/* visual 1 */
	.visual-list .visual01 .bg-item .item.circle-fill { width: 200px; height: 200px; left: auto; right: -30px; }
	.visual-list .visual01 .bg-item .item.circle-sm-white { left:50px; bottom: 45%; }
	.visual-list .visual01 .bg-item .item.circle-sm-blue { display: none; }

	/* visual 3 */
	.visual-list .visual-item .bg-item .item.circle-outline { width: 70px; height: 70px; border-width: 15px; right: -30px;}
	.visual-list .visual03 .bg-item .item.circle-sm-white { width: 50px; height: 50px; }
	.visual-list .visual03 .bg-item .item.circle-outline.blue { width: 140px; height: 140px; border-width: 25px; left: -50px; }
	.visual-list .visual03 .mark-img { margin-bottom: 8px; gap: 20px; }
	.visual-list .visual03 .mark-img .mark { height: 80px; }
	/* visual 4 */
	.visual-list .visual04 .sub-text { font-size: 2.1rem;}
}




/* ********** Product ********** */
.product-wrap { padding-bottom: 0;}
.product-wrap .product-group { display: flex; flex-wrap: wrap; position: relative; width: 100%; height: calc(100vh - 254px); margin-top: 40px;background: rgba(0,0,0,0.8); }
.product-wrap .product-group .item { flex-basis: 25%; position: relative; width: 25%; height: 50%; padding: 60px 50px 80px; overflow: hidden; word-break: keep-all;}
.product-wrap .product-group .item:before { content: ''; position: absolute; top:50%; left: 50%; transform: translate(-50%,-50%); width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; transition: width .25s; }
.product-wrap .product-group .item.puzzling:before { background-image: url('../../img/main/product_bg01.webp'); }
.product-wrap .product-group .item.monitoring:before { background-image: url('../../img/main/product_bg02.webp'); }
.product-wrap .product-group .item.toptier:before { background-image: url('../../img/main/product_bg03.webp'); }
.product-wrap .product-group .item.baseball:before { background-image: url('../../img/main/product_bg04.webp'); }
.product-wrap .product-group .item.cms:before { background-image: url('../../img/main/product_bg05.webp'); }
.product-wrap .product-group .item:hover:before { width: 105%;}
.product-wrap .product-group .item .title { position: relative; color: #fff; font-size: 2.7rem; font-weight: 900; padding-bottom: 15px; }
.product-wrap .product-group .item .title.font-raj { font-size: 3.6rem; }
.product-wrap .product-group .item .text { position: relative; color:rgba(255,255,255,0.75); font-size: 1.6rem; line-height: 1.8; }
.product-wrap .product-group .item .section-title { text-align: left; left: 15px; }
.product-wrap .product-group .item.empty { position: relative; padding: 0; background: #171C33; border: 10px solid #0D1228; border-right: 0; border-bottom: 0;}
.product-wrap .product-group .item.empty::before { display: none; }
.product-wrap .product-group .item.empty .empty-img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%)}

@media (max-height: 1100px) {
	.mainfullbox { height: auto; }
	.mainfullbox .product-wrap .product-group { height: auto;}
	.product-wrap .product-group .item { padding: 50px 40px 80px;  height: auto;}
	.service-wrap { height: auto;}
	.history-wrap { height: auto;}

	.product-wrap .product-group .item .title.font-raj { font-size: 2.7rem; padding-bottom: 12px;}
	.product-wrap .product-group .item .title { font-size: 2.4rem;}
	.product-wrap .product-group .item .text {  font-size: 1.4rem; line-height: 1.6;}
}

@media (max-width: 1650px) {
	.product-wrap .product-group .item {padding: 70px 30px; }
	.product-wrap .product-group .item .title.font-raj { font-size: 2.8rem; }
	.product-wrap .product-group .item .title { font-size: 2rem;}
	.product-wrap .product-group .item .text { font-size: 1.4rem; }
	.product-wrap .product-group .item .section-title { margin-top: 30px; }
}
@media (max-width: 1220px) {
	.product-wrap .product-group { height: auto;}
	.product-wrap .product-group .item { flex-basis: 50%; min-height: 380px; height: auto; padding: 50px 30px;}
	.product-wrap .product-group .item .section-title { margin-top: 0; padding-top: 20px; }
}
@media (max-width: 660px) {
	.product-wrap { padding: 50px 0;}
	.product-wrap .product-group .item { min-height: 280px; padding: 50px 20px;}
	.product-wrap .product-group .item .text { font-size: 1.2rem; }
	.product-wrap .product-group .item .text br { display: none; }
	.product-wrap .product-group .item .section-title { left: 10px;}
}
@media (max-width: 430px) {
	.product-wrap .product-group .item { min-height: auto; padding: 30px 17px 70px 17px; background-color: var(--dark-color); }
	.product-wrap .product-group .item:before { opacity: .3; }
	.product-wrap .product-group .item .title.font-raj { font-size: 2rem; }
	.product-wrap .product-group .item .title { font-size: 1.5rem;}
	.product-wrap .product-group .item .text { font-size: 1.1rem; color: rgba(255,255,255,0.6); }
	.product-wrap .product-group .item .section-title { padding:0; position: absolute; bottom: 30px; left: 30px; }
	.product-wrap .product-group .item .section-title .more-btn p { font-size: 1.2rem; }
	.product-wrap .product-group .item .section-title .more-btn:after { width: 20px; height: 20px; top: -3px; left: -12px; }
	.product-wrap .product-group .item.empty { border-width: 5px; min-height: 225px; }
}


/* service */
.service-wrap { position: relative; width: 100%; height: 100%; background: var(--dark-color); overflow: hidden; }
.service-wrap:before { content: ''; position: absolute; top: 15%; left: -200px; width: 830px; height: 830px; background-image: url(../../img/main/section_bg.svg); background-repeat: no-repeat; background-position: center; background-size: cover; }
.service-wrap .service-title { padding-bottom: 75px; }
.service-wrap .service-title p { color: #fff; font-size: 3rem; font-weight: 900; line-height: 1.8; }
.service-wrap .service-item .item { position: relative; color: #fff; float: left; width: 50%; padding: 60px 20px 60px 60px; border: 0px solid rgba(255,255,255,0.3); }
.service-wrap .service-item .item:before { content: ''; position: absolute; top: 30px; left: 30px; width: 70px; height: 70px; background: var(--main-blue); border-radius: 50%; }
.service-wrap .service-item .item:after { color: var(--main-green); position: absolute; top: 25px; left: 30px; font-size: 2.5rem; font-weight: 900; font-family: 'Rajdhani'; }
.service-wrap .service-item .item:nth-child(1):after { content: '01'; }
.service-wrap .service-item .item:nth-child(2):after { content: '02'; }
.service-wrap .service-item .item:nth-child(3):after { content: '03'; }
.service-wrap .service-item .item:nth-child(4):after { content: '04'; }
.service-wrap .service-item .item:nth-child(1) { border-right-width: 1px; border-bottom-width: 1px; }
.service-wrap .service-item .item:nth-child(2) { border-bottom-width: 1px; }
.service-wrap .service-item .item:nth-child(3) { border-right-width: 1px; }
.service-wrap .service-item .item .tit { position: relative; font-size: 2.2rem; font-weight: 900; padding-bottom: 35px; }
.service-wrap .service-item .item .txt { position: relative; font-size: 1.5rem; line-height: 1.8; font-weight: 100; }

@media (max-width: 1220px) {
	.service-wrap .service-title { padding-bottom: 60px; }
	.service-wrap .service-title p { font-size: 2.5rem; text-align: center; }
	.service-wrap .service-item .item { padding: 40px 20px 40px 40px; min-height: 220px; }
	.service-wrap .service-item .item:after { left: 15px; top: 10px; font-size: 2rem;}
	.service-wrap .service-item .item:before { left: 15px; top: 20px; width: 50px; height: 50px; }
	.service-wrap .service-item .item .tit { font-size: 1.7rem; padding-bottom: 20px; }
	.service-wrap .service-item .item .txt { font-size: 1.3rem; }
}
@media (max-width: 768px) {
	.service-wrap:before { width: 500px; height: 500px; }
	.service-wrap .service-title { padding-bottom: 40px; }
	.service-wrap .service-title p { font-size: 2.2rem; }
	.service-wrap .service-item .item:after { top: 20px; }
	.service-wrap .service-item .item:before { top: 30px; width: 35px; height: 35px; }
	.service-wrap .service-item .item .tit { font-size: 1.6rem; padding-bottom: 15px; line-height: 1.6;}
	.service-wrap .service-item .item .txt { font-size: 1.1rem; color: rgba(255,255,255,0.6); }
}
@media (max-width: 640px) {
	.service-wrap { padding-bottom: 0;}
	.service-wrap .sec-width {padding: 0;}
	.service-wrap .service-title { padding: 0 20px 40px; }
	.service-wrap .service-title p { font-size: 1.7rem; word-break: keep-all; }
	.service-wrap .service-title p br { display: none; }
	.service-wrap .service-item {border-top: 1px solid rgba(255,255,255,0.3); }
	.service-wrap .service-item .item { min-height: 260px; padding: 65px 15px 0; }
	.service-wrap .service-item .item:after { top: 17px; }
	.service-wrap .service-item .item:before { opacity: .5; top: 15px; left: 23px; }
	.service-wrap .service-item .item .tit { font-size: 1.4rem; word-break: keep-all; }
	.service-wrap .service-item .item .txt br { display: none; }
}



/* history */
.history-wrap { position: relative; width: 100%; height: 100%; background: var(--dark-color); overflow: hidden; border-top: 1px solid rgba(255,255,255,0.2);}
.history-wrap:before { content: ''; position: absolute; top: 15%; right: -200px; width: 830px; height: 830px; background-image: url(../../img/main/section_bg.svg); background-repeat: no-repeat; background-position: center; background-size: cover; }
.history-wrap .section-title { color: #fff; text-align: left; }
.history-wrap .section-title .more-btn { left: 10px; margin-top: 30px;}
.history-wrap .section-title .s-tit { font-size: 2.8rem; padding-bottom: 10px; }
.history-wrap .section-title .tit { font-size: 3.5rem; font-weight: 900; }

.history-wrap .history-list { position: relative; padding-top: 80px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px;}
.history-wrap .history-list:before { content: ''; display: block; width: 100%; height: 377px; background-image: url(../../img/main/history_line.svg); background-repeat: no-repeat; background-size: 100% 100%; background-position: center; position: absolute; top: 70px; left: 80px; }
.history-wrap .history-list .item { display: inline-block; flex-basis: calc(33% - 7px); position: relative; color: #fff; vertical-align: top; }
.history-wrap .history-list .item.pc { display: inline-block; }
.history-wrap .history-list .item.mobile { display: none; }
.history-wrap .history-list .item:nth-child(4) { width: 40%; }
.history-wrap .history-list .item .years { position: relative; font-size: 2.5rem; color: var(--main-green); font-weight: 900; padding: 20px 0 35px 35px; }
.history-wrap .history-list .item .years:after { content: ''; position: absolute; top:0; left:0; width: 70px; height: 70px; background: #1B1C2E; border-radius: 50%;}
.history-wrap .history-list .item .years p { position: relative; z-index: 1;}
.history-wrap .history-list .item ul li { font-size: 1.4rem; padding-bottom: 10px; letter-spacing: -1px; line-height: 1.7; word-break: keep-all; transform: skewX(-0.1deg);}


@media (max-width: 1220px) {
	.history-wrap .section-title { text-align: center; }
	.history-wrap .section-title .s-tit { font-size: 2rem; }
	.history-wrap .section-title .tit { font-size: 2.8rem; }
}
@media (max-width: 1100px) {
	.history-wrap .history-list { padding: 50px 50px 0; justify-content: flex-start; }
	.history-wrap .history-list:before { display: none; }
	.history-wrap .history-list .item { flex-basis: calc(50% - 10px); }
	.history-wrap .history-list .item.pc { display: none; }
	.history-wrap .history-list .item.mobile { display: block; }
}
@media (max-width: 768px) {
	.history-wrap:before { width: 500px; height: 500px; }
	.history-wrap .section-title .s-tit { font-size: 1.8rem; }
	.history-wrap .section-title .tit { font-size: 2.2rem; }
	.history-wrap .history-list { padding: 40px 0 0; }
	.history-wrap .history-list .item ul li { font-size: 1.2rem; padding-bottom: 7px; color: rgba(255,255,255,0.7); }
}
@media (max-width: 550px) {
	.history-wrap .history-list { gap: 30px; }
	.history-wrap .history-list .item { flex-basis: 100%; }
	.history-wrap .history-list .item .years { padding-left: 20px; padding-bottom: 15px;}
	.history-wrap .history-list .item .years:after { width: 50px; height: 50px; top: 10px;}
	.history-wrap .history-list .item ul li { padding-bottom: 3px; }
}


/* portfolio */
.portfolio-wrap { height: 100%; overflow: hidden; }
.portfolio-wrap .content-area .category { text-align: center; overflow: hidden; height: 50px; margin-top: 60px;}
.portfolio-wrap .content-area .category ul { display: block; white-space: nowrap; overflow-x: auto; height: 80px; }
.portfolio-wrap .content-area .category ul li { margin-right: 3px; display: inline-block; }
.portfolio-wrap .content-area .category ul li:last-child { margin-right: 0; }
.portfolio-wrap .content-area .category ul li a { border: 1px solid #999; border-radius: 5px; height: 50px; display: inline-block;  padding: 0 20px; color: #999; font-weight: 600; line-height: 48px; font-size: 1.4rem; transition: border-color .25s ease, color .25s ease; font-family: 'Rajdhani';transform: skewX(-0.1deg);}
.portfolio-wrap .content-area .category ul li:hover a,
.portfolio-wrap .content-area .category ul li.on a { background: var(--main-blue); border-color: var(--main-blue); color: #fff; }


.portfolio-wrap .content-area .project-list { margin-top: 20px; overflow: hidden; position: relative; transition: height .5s ease; }
.portfolio-wrap .content-area .project-list ul { white-space: nowrap; position: relative; width: 250%; animation: marqueeLeft 50s linear infinite; }
.portfolio-wrap .content-area .project-list ul li { position: relative; width: 6%; height: 0; padding-bottom: 6%; display: inline-block; margin: 0 25px 25px 0; transition: width .5s ease; cursor: pointer; }
.portfolio-wrap .content-area .project-list ul li .item-wrap { display: block; height: 100%; width: 100%; background-color: #2e2f33; position: relative; overflow: hidden; border-radius: 5px; position: absolute; top:0; left: 0; }
.portfolio-wrap .content-area .project-list ul li .item-wrap .thumbnail { height: 100%; width: 100%; }
.portfolio-wrap .content-area .project-list ul li .item-wrap .thumbnail img { width: 100%; height: 100%; transition: transform 0.5s ease-out; transform: scale3d(1,1,1) rotate3d(0,0,0,0.01deg); -webkit-transform: scale3d(1,1,1) rotate3d(0,0,0,0.01deg); -moz-transform: scale3d(1,1,1) rotate3d(0,0,0,0.01deg); transform-origin: 50%; -webkit-transform-origin: 50%; }
.portfolio-wrap .content-area .project-list ul li .item-wrap:hover .thumbnail img { transform: scale3d(1.1,1.1,1) rotate3d(0,0,0,0.01deg); -webkit-transform: scale3d(1.1,1.1,1) rotate3d(0,0,0,0.01deg); -moz-transform: scale3d(1.1,1.1,1) rotate3d(0,0,0,0.01deg); }
.portfolio-wrap .content-area .project-list ul li .item-wrap .info { background-color: rgba(2,3,23,0.7); backdrop-filter: blur(5px); position: absolute; z-index: 2; width: 100%; height: 100%; text-align: center; color: #fff; top: 100%; left: 0; padding: 100px 0; opacity: 0; transition: top .5s ease, opacity .5s ease; }
.portfolio-wrap .content-area .project-list ul li .item-wrap .info img { position: absolute; top:50%; left: 50%; transform: translate(-50%,-50%); width: 30px; height: 30px; }
.portfolio-wrap .content-area .project-list ul li .item-wrap:hover .info { top: 0; opacity: 1; }

@keyframes marqueeLeft {
  0% { left: 0; }
  100% { left: -150%; }
}

@media all and (max-width: 1024px)
{
	.portfolio-wrap .content-area .project-list ul li { margin: 0 10px 10px 0; display: inline-block; }
	.portfolio-wrap .content-area .project-list ul li a .info { padding: 70px 0; }
}
@media all and (max-width: 780px)
{
	.portfolio-wrap .content-area .category { height: 40px; overflow: hidden; margin-top: 40px; }
	.portfolio-wrap .content-area .category ul { height: 70px; overflow: auto; }
	.portfolio-wrap .content-area .category ul li a { height: 40px; line-height: 38px; }
	
	.portfolio-wrap .content-area .project-list ul li  { width: 10%; padding-bottom: 10%; text-align: center; }
}
@media all and (max-width: 420px)
{
	.portfolio-wrap .content-area .category ul { padding: 0 30px; cursor: pointer; }
	.portfolio-wrap .content-area .category ul li:last-child {margin-right:30px;}
	.portfolio-wrap .content-area .project-list { height: 245px; }
	.portfolio-wrap .content-area .project-list ul li { width: 13%; padding-bottom: 13%; display: inline-block; margin-right: 15px; }
	.portfolio-wrap .content-area .project-list ul li a .info { padding: 50px 0; }
}


/* contact */
.contact-wrap { position: relative; width: 100%; height: 100%; background: var(--dark-color); overflow: hidden; }
.contact-wrap .section-title,
.contact-wrap .section-title .title { color: #fff; }
.contact-wrap .section-title .s-title { color: rgba(255,255,255,0.6); font-size: 1.4rem; padding-top: 15px;transform: skewX(-0.1deg); }
.contact-wrap .section-title .s-title b { font-size: 1.6rem; display: block; line-height: 2.5;}
.contact-wrap .sec-width { width: 850px; }


.contact-wrap .form-area { position: relative; padding-top: 50px; }
.contact-wrap .form-area input[type=text] { font-size: 1.4rem; height: 50px; border:0; border-bottom: 1px solid rgba(255,255,255,0.3); transition: border-color .25s ease; background: transparent; }
.contact-wrap .form-area input[type=text]:focus,
.contact-wrap .form-area input[type=text]:active { border-color: #fff; }
.contact-wrap .form-area .row { margin-bottom: 30px; }
.contact-wrap .form-area .row:last-child { margin-bottom: 0; }
.contact-wrap .form-area .row input[type=text] { width: 48%; }
.contact-wrap .form-area .row>input[type=text]:nth-child(1) { float: left; }
.contact-wrap .form-area .row>input[type=text]:nth-child(2) { float: right; }
.contact-wrap .form-area .row .text-box { position: relative; width: 48%; height: 50px; }
.contact-wrap .form-area .row .text-box-wrap { float: left; width: 100%; }
.contact-wrap .form-area .row .text-box-wrap .text-box:nth-child(1) { float: left; }
.contact-wrap .form-area .row .text-box-wrap .text-box:nth-child(2) { float: right; }
.contact-wrap .form-area .row .text-box-wrap .text-box input[type=text] { width: 100%; color: #fff; }
.contact-wrap .form-area .row .text-box-wrap .text-box > label { position: absolute; top: 17px; font-size: 1.4rem; color: #999; left: 0; pointer-events: none; transition: all .25s ease; transform: skewX(-0.1deg);}
.contact-wrap .form-area .row .text-box-wrap .text-box > label .ess,
.contact-wrap .form-area .row .text-area .ess { background: var(--main-green); width: 4px; height: 4px; border-radius: 10px; display: block; position: absolute; top:0; right: -10px; }
.contact-wrap .form-area .row .text-box-wrap .text-box input[type=text]:valid + label,
.contact-wrap .form-area .row .text-box-wrap .text-box input[type=text]:focus + label { top: -5px; font-size: 1rem; }
.contact-wrap .form-area .row .text-area { position: relative; width: 100%; height: 140px; }
.contact-wrap .form-area .row .text-area textarea { width: 100%; height: 100%; border:0; border-bottom: 1px solid rgba(255,255,255,0.3); overflow-y: auto; padding: 18px 0; transition: border-color .25s ease; font-size: 1.4rem; background: transparent; resize: none; color: #fff;}
.contact-wrap .form-area .row .text-area textarea:focus,
.contact-wrap .form-area .row .text-area textarea:active { border-color: #fff; }
.contact-wrap .form-area .row .text-area label { position: absolute; top: 17px; font-size: 1.4rem; color: #999; left: 0; pointer-events: none; transition: all .25s ease; }
.contact-wrap .form-area .row .text-area textarea:valid + label,
.contact-wrap .form-area .row .text-area textarea:focus + label { top: -5px; font-size: 1rem; }
.contact-wrap .form-area .submission-btn .recaptcha { display: block; margin-bottom: 20px;}
.contact-wrap .form-area .submission-btn button { background: var(--main-blue); border: none; height: 50px; width: 100%; color: #fff; font-size: 1.4rem; font-weight: bold; outline: 0; transition: box-shadow .25s ease,background .25s ease; transform: skewX(-0.1deg);}
.contact-wrap .form-area .submission-btn button:hover { box-shadow: 0 5px 15px -5px rgba(0,0,0,0.25); background: var(--main-blue); }

/* 필수 요소가 아닌 필드 관련 스타일*/
.contact-wrap .form-area .row .text-box-wrap .text-box.not-required input[type=text] + label { position: absolute; top: 17px; font-size: 1.4rem; color: #999; left: 0; pointer-events: none; transition: all .25s ease; }
.contact-wrap .form-area .row .text-box-wrap .text-box.not-required input[type=text]:focus + label,
.contact-wrap .form-area .row .text-box-wrap .text-box.not-required input[type=text].ng-not-empty + label { top: -5px; font-size: 1rem; }

.contact-wrap .form-area .row.file {border-bottom: 1px solid rgba(255,255,255,0.3);}
.contact-wrap .form-area .row.file .text-box-wrap { position: relative; }
.contact-wrap .form-area .row.file .text-box-wrap .text-box { float: none; width: 100%; height: auto; }
.contact-wrap .form-area .row.file .text-box-wrap .text-box .file-input { position: relative; padding-left: 100px; }
.contact-wrap .form-area .row.file .text-box-wrap .text-box .file-input > input[type='file'] { width: calc(100% - 100px); opacity: 0; position: absolute; top:0; right:0; display: block; cursor: pointer; line-height: 50px; z-index: 1;}
.contact-wrap .form-area .row.file .text-box-wrap .text-box .file-input > .label { color: rgba(255,255,255,0.4); font-size: 1.3rem; width: 100%; text-align: left; display: block; cursor: pointer; line-height: 50px;}
.contact-wrap .form-area .row.file .text-box-wrap .del-btn { position: absolute; top:15px; right:0; color: #fff; padding: 5px 9px; font-size: 1rem; font-weight: 600; background:rgba(255,255,255,0.2); border-radius: 3px; z-index: 3; cursor: pointer;}
.contact-wrap .form-area .row.file .text-box-wrap .del-btn:hover { background: rgba(255,255,255,0.3);}

@media all and (max-width: 1250px)
{
	.contact-wrap .form-area { width: 65%; margin: 0 auto; }
	.contact-wrap .sec-width { width: 100%; }
}
@media all and (max-width: 780px)
{
	.contact-wrap .form-area { width: 100%; padding: 40px 0; border-top-right-radius: 0; border-top-left-radius: 0; }
	.contact-wrap .form-area .submission-btn button { width: 100%; margin-top: 10px; }
	.contact-wrap .form-area .row .text-box { height: 40px; }
	.contact-wrap .form-area input[type=text] { height: 40px; }
	.contact-wrap .form-area .row .text-box-wrap .text-box label { top: 13px; }
	.contact-wrap .form-area .row .text-area label { top: 12px; }
	.contact-wrap .form-area .row.file .text-box-wrap .text-box .file-input > .label,
	.contact-wrap .form-area .row.file .text-box-wrap .text-box .file-input > input[type='file'] { line-height: 40px; }
	.contact-wrap .form-area .row.file .text-box-wrap .del-btn { top: 5px; }
	
}
@media all and (max-width: 420px)
{
	.contact-wrap .form-area .row input[type=text] { width: 100%; }
	.contact-wrap .form-area .row>input[type=text]:nth-child(1) { margin-bottom: 30px; }
	.contact-wrap .form-area .row .text-box-wrap .text-box:nth-child(1) { margin-bottom: 30px; }
	.contact-wrap .form-area .row .text-box { width: 100%; }
	.contact-wrap .form-area .row.file .text-box-wrap .text-box { margin-bottom: 0; }
	
	.contact-wrap .form-area .submission-btn .recaptcha { width: 100%; }
	.contact-wrap .form-area .submission-btn .recaptcha img { width: 100%; }

	.contact-wrap .section-title .s-title { font-size: 1.2rem; line-height: 1.6; word-break: keep-all; }
	.contact-wrap .section-title .s-title b { font-size: 1.4rem; }
}


.valid { font-size: 1.1rem; color: #e96767; padding: 5px 0; font-weight: 500; }
.valid:after { content: ""; display: block; clear: both; }


/* 중앙정렬 */
.align-center { position: absolute !important; top: 50%; left: 50%; transform: translate(-50%,-50%); }

@media (max-width: 1220px) {
	.align-center { position: relative !important; transform: none; top: auto; left: auto; }
}

@media (max-height: 1100px) {
	.align-center { position: relative !important; top: auto; left: auto; transform: none;}
}