@charset "utf-8";

body {
	animation-name: mainOn;
	animation-duration: 1.2s;
	animation-timing-function: ease;
}

.wrapper {
	position: relative;
	width: 100%;
	display: block;
}

.wrapper.main {
	padding-top: 0;
}

.wrapper.main #header {
	padding-top: 0;
}

/* header style */
#header {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	height: 110px;
	width: 100%;
	z-index: 111;
	transition: all ease 0.3s;
}

#header.hide {
	transform: translateY(-100%);
}

#header .inner {
	padding: 0 60px;
	width: 100%;
	display: flex;
	position: relative;
	box-sizing: border-box;
	align-items: center;
	height: 100%;
}

#header .inner .logo {
	display: inline-block;
}
#header .inner .logo a {
	display: block;
	background: url('../img/logo.svg') no-repeat center;
	width: 139px;
	height: 52px;
	margin-top: -10px;
}

/* #header.main {
	background: none;
} */

/* #header.main .inner .gnb ul li a {
	color: rgba(255, 255, 255, 0.7);
}

#header.main .inner .gnb ul li a.active {
	color: #1a1a1a;
}

#header.main .inner .gnb ul li a:hover {
	color: #1a1a1a;
} */

#header .inner .gnb {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
}

#header .inner .gnb ul {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	column-gap: 80px;
}

#header .inner .gnb ul li a {
	position: relative;
	font-weight: 300;
	font-size: 24px;
	color: #bcbcbc;
	transition: all ease 0.2s;
}

#header .inner .gnb ul li a.active {
	color: #1a1a1a;
}

#header .inner .gnb ul li a:hover {
	color: #1a1a1a;
}

#header .inner .h-util {
	margin-left: auto;
	display: none;
	width: 24px;
	height: 24px;
}

#header .inner .h-util button {
	background: url('../img/icon_ham.svg') no-repeat center;
	display: block;
	background-size: 24px 24px;
	width: 100%;
	height: 100%;
	border: none;
	cursor: pointer;
}

#header .inner .h-util .text-hidden {
	text-indent: -999999px;
}

/* header style end*/

/* snb style */
.snb-wrap {
	position: sticky;
	top: 110px;
	width: 100%;
	background: #ffffff;
	z-index: 111;
	transition: all ease 0.3s;
	height: 60px;
}

.mobile-snb {
	display: none;
}

.snb-wrap .inner {
	padding: 0 60px;
	width: 100%;
	display: flex;
	position: relative;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.snb-wrap .inner ul {
	display: flex;
	justify-content: center;
	gap: 40px;
}

.snb-wrap .inner ul li a {
	font-size: 18px;
	font-weight: 300;
	color: #bcbcbc;
	padding-bottom: 10px;
}

.snb-wrap .inner ul li a.active {
	color: #1a1a1a;
	border-bottom: 4px solid #1a1a1a;
}

.snb-wrap.top {
	top: 0;
}

.snb-wrap.main {
	display: none;
}

/* footer style */
#footer {
	background: #1a1a1a;
	width: 100%;
	display: block;
	position: relative;
}
#footer .inner {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

#footer .inner .contact {
	display: flex;
	justify-content: space-between;
	padding: 150px 0 120px;
}

#footer .inner .contact .contact-text p {
	font-size: 50px;
	font-weight: 300;
	color: #fff;
	line-height: 120%;
}

#footer .inner .contact .contact-text p span {
	font-size: 26px;
}

#footer .inner .contact .contact-text p.pc {
	display: block;
}

#footer .inner .contact .contact-text p.mob {
	display: none;
}

/* [C20250415-000070] 네이버 브랜드 검색 홍보에 필요한 창사원 랜딩페이지 문장 수정의 건 */
#footer .inner .contact .contact-info p.pc {
	display: block;
	font-size: 18px;
}

#footer .inner .contact .contact-info p.mob {
	display: none;
}

#footer .inner .contact .contact-text a {
	border: 1px solid #fff;
	border-radius: 4px;
	padding: 15px 55px 15px 30px;
	font-size: 14px;
	font-weight: 300;
	color: #fff;
	display: inline-block;
	margin-top: 16px;
	background: url('../img/download.png') no-repeat center right 30px;
}

#footer .inner .contact .contact-info p {
	color: #fff;
	font-size: 28px;
	text-align: right;
	line-height: 180%;
}

#footer .inner .contact .contact-info p:first-child {
	text-decoration: underline;
}

#footer .inner .contact .contact-info ul {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	margin-top: 30px;
}

#footer .inner .infomation {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 80px 0 60px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
}

#footer .inner .infomation .info-text p {
	color: #fff;
	font-weight: 300;
	font-size: 16px;
	line-height: 200%;
}

#footer .inner .infomation .info-text ul li {
	line-height: 200%;
	color: #fff;
	font-size: 16px;
	font-weight: 100;
}

#footer .inner .infomation .info-copy {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 100;
}

/* footer style end*/

/* main style */
.main-cont {
	height: 100dvh;
	position: relative;
	overflow: hidden;
}
.main-cont .swiper {
	width: 100%;
	height: 100%;
}

.main-cont .swiper .swiper-controller {
	position: absolute;
	bottom: 60px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 102;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
}

.main-cont .swiper .swiper-controller .swiper-button-next-main,
.main-cont .swiper .swiper-controller .swiper-button-prev-main {
	/* 네비게이션 처리를 위한 화살표를 아래로 이동시킵니다. */
	width: 40px;
	height: 40px;
	display: block;
	opacity: 1;
	cursor: pointer;
}

.main-cont
	.swiper
	.swiper-controller
	.swiper-button-next-main.swiper-button-disabled,
.main-cont
	.swiper
	.swiper-controller
	.swiper-button-prev-main.swiper-button-disabled {
	opacity: 0.5;
}

.main-cont .swiper .swiper-controller .swiper-button-next-main,
.main-cont .swiper .swiper-controller .swiper-rtl .swiper-button-prev-main {
	background: url(../img/icon_next.png) no-repeat center;
	background-size: 40px 40px;
	margin-left: 40px;
}

.main-cont .swiper .swiper-controller .swiper-button-prev-main,
.main-cont .swiper .swiper-controller .swiper-rtl .swiper-button-next-main {
	background: url(../img/icon_prev.png) no-repeat center;
	margin-right: 40px;
}

.main-cont .swiper .swiper-controller .swiper-autoplay {
	width: 10px;
	height: 10px;
	background: url('../img/icon_pause.png') no-repeat center;
	cursor: pointer;
	display: block;
	margin-left: 20px;
}

.main-cont .swiper .swiper-controller .swiper-pagination-main {
	width: auto;
}

.main-cont
	.swiper
	.swiper-controller
	.swiper-pagination-main
	.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: none;
	border: 2px solid #fff;
	opacity: 1;
	box-sizing: border-box;
	margin: 0 10px;
}

.main-cont
	.swiper
	.swiper-controller
	.swiper-pagination-main
	.swiper-pagination-bullet-active {
	width: 10px;
	height: 10px;
	background: #fff;
	border: none;
}

.main-cont .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.main-cont .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation-fill-mode: forwards;
	animation-name: mainScale;
	animation-delay: 1s;
	animation-duration: 25s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

.main-cont .swiper-slide img.mobile {
	display: none;
}

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

@keyframes mainScale {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

.main-cont .main-info {
	position: absolute;
	top: 250px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 102;
}

.main-cont .main-info .title {
	font-size: 116px;
	font-weight: 100;
	font-family: 'NanumMyeongjo';
	color: #ffffff;
	padding: 0 40px;
	z-index: 102;
	text-align: center;
	margin-bottom: 40px;
	transition: all ease 0.2s;
}

.main-cont .main-info .title span {
	font-size: 55px;
	opacity: 0.55;
	display: inline-block;
	margin-right: 20px;
}

.main-cont .main-info .sub-title {
	font-size: 32px;
	font-weight: 200;
	color: rgba(255, 255, 255, 0.7);
	transition: all ease 0.2s;
}

.main-cont .swiper-slide.second .title {
	color: #000;
}

.main-cont .swiper-slide.second .sub-title {
	color: #1a1a1a;
	opacity: 0.7;
}

.main-cont .main-info .app-download {
	text-align: center;
}

.main-cont .main-info .app-download a {
	display: inline-block;
	background-color: #fff;
	color: #1a1a1a;
	font-size: 24px;
	font-weight: 300;
	padding: 0 35px;
	height: 60px;
	line-height: 60px;
	border-radius: 100px;
	vertical-align: middle;
	margin: 0 10px;
}
.main-cont .main-info .app-download a img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.main-cont .main-info .app-download a.appstore img {
	margin-top: -5px;
}

.main-cont .main-info .app-download a.qrcode img {
	margin-right: 0;
}
/* main style end*/

/* 컨텐츠 영역 style */
.content {
	position: relative;
	padding-bottom: 150px;
}

.content .section-wrap {
	padding: 0 60px;
}

.section-tit-wrap {
	text-align: center;
	margin-bottom: 80px;
}

.section-tit-wrap .sub-tit {
	font-size: 30px;
	color: #bbbbbb;
	font-weight: 300;
	margin-bottom: 20px;
}

.section-tit-wrap .link-tit {
	text-align: right;
	width: 100%;
	margin: auto;
	margin-top: 98px;
	height: 26px;
	font-family: Pretendard;
	font-weight: 350;
	font-size: 22px;
	cursor: pointer;
}

.section-tit-wrap .right-arrow {
	float: right;
}

.section-tit-wrap .tit {
	font-size: 70px;
	color: #1a1a1a;
	font-weight: 300;
	line-height: 130%;
	transition: all ease 0.3s;
	font-family: 'NanumMyeongjo';
}

.section-tit-wrap .tit span {
	display: block;
}

.section-tit-wrap .tit span.solution1 {
	display: inline-block;
}

.section-tit-wrap .sub-tit-bottom {
	font-size: 24px;
	color: #595959;
	font-weight: 200;
	margin-top: 40px;
	line-height: 150%;
}

.section-tit-wrap .sub-tit-bottom span {
	display: block;
}

.section-tit-wrap.company .sub-tit {
	font-size: 30px;
	color: #1a1a1a;
	font-weight: 300;
	line-height: 100%;
	margin-top: 30px;
	margin-bottom: 0;
	transition: all ease 0.4s;
	word-break: keep-all;
}

.section-tit-wrap.company .tit {
	font-size: 120px;
	color: #1a1a1a;
	font-weight: 300;
	line-height: 100%;
	/* background-image: url("../img/text_to_img.png");
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent; */
	word-wrap: break-word;
}

.section-company.small .section-tit-wrap .tit {
	transform: scale(0);
}

.section-company.ba .section-tit-wrap .tit {
	transform: scale(1) !important;
}

/* section company style */

.section-company {
	max-width: 1600px;
	margin: 0 auto;
	box-sizing: border-box;
	padding-top: 140px;
}

.section-company:first-child {
	padding-top: 170px;
}

.sub-pagination {
	margin: 0 auto;
	text-align: center;
}

.sub-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: none;
	border: 2px solid #bcbcbc;
	opacity: 1;
	box-sizing: border-box;
	margin: 0 10px;
}

.sub-pagination .swiper-pagination-bullet-active {
	width: 10px;
	height: 10px;
	background: #1a1a1a;
	border: none;
}

.section-company.farming .farming-list {
	overflow: hidden;
	display: block;
	width: 100%;
	padding-bottom: 40px;
}
.section-company.farming .farming-list ul {
	display: flex;
	gap: 50px;
}

.section-company.farming .farming-list .sub-pagination {
	display: none;
}
.section-company.farming .farming-list .sub-pagination.show {
	display: block;
}

.section-company.farming .farming-list ul.swiper-wrapper {
	gap: 0;
}

.section-company.farming .farming-list ul li {
	width: 33.3333%;
	cursor: pointer;
	/* height: 640px; */
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.section-company.farming .farming-list ul li image {
	transition: all ease 0.7s;
	text-align: center;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0 auto;
	transform-origin: center center;
	display: block;
}

.section-company.farming .farming-list ul li image.pc {
	display: block;
}

.section-company.farming .farming-list ul li image.mob {
	display: none;
}

.section-company.farming .farming-list ul li:hover image {
	transform: scale(1.2);
	object-position: top;
}

.section-company.farming .farming-list ul li .farming-list-info {
	position: absolute;
	padding: 0px 40px 0px 40px;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 16%;
}

.section-company.farming .farming-list ul li .tit {
	font-size: 48px;
	font-weight: 300;
	line-height: 100%;
	color: #1a1a1a;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 11;
	text-align: center;
}

.section-company.farming .farming-list ul li .tit span {
	font-size: 18px;
	font-weight: 300;
	display: inline-block;
	border-radius: 100px;
	width: 80px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	vertical-align: top;
	position: relative;
	z-index: 11;
}

.section-company.farming .farming-list ul li .info {
	font-size: 20px;
	font-weight: 200;
	color: #595959;
	line-height: 150%;
	text-align: center;
	position: relative;
	z-index: 11;
	word-break: keep-all;
}

.section-company.farming .farming-list ul li .info.pc {
	display: block;
}

.section-company.farming .farming-list ul li .info.mob {
	display: none;
}

.section-company.farming .farming-list ul li .info span {
	display: block;
}

.section-company.connected {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.section-company.connected .img-wrap {
	display: flex;
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
}
.section-company.connected .img-wrap > div {
	display: inline-block;
	vertical-align: middle;
}

.section-company.connected .img-wrap > div svg {
	width: 100%;
	height: auto;
}

.section-company.connected .connected-list {
	padding-top: 15px;
	padding-bottom: 40px;
}

.section-company.connected .connected-list ul {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.section-company.connected .connected-list ul li {
	border-radius: 50px;
	border: 4px solid #7daf42;
	padding: 40px 55px;
	width: 33.3333%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.section-company.connected .connected-list ul li .info-tit {
	font-size: 46px;
	color: #1a1a1a;
	font-weight: 300;
	line-height: 120%;
}

.section-company.connected .connected-list ul li .info-tit span {
	display: block;
}

.section-company.connected .connected-list ul li .info-tit span.circle {
	display: inline-block;
	width: 24px;
	height: 24px;
	background-color: #7daf42;
	border-radius: 100%;
	vertical-align: middle;
	margin-left: 15px;
	margin-top: -8px;
}

.section-company.connected .connected-list ul li .info-txt {
	font-size: 20px;
	color: #595959;
	font-weight: 200;
	line-height: 150%;
}

.section-company.attraction {
	width: 100%;
	position: relative;
	overflow: hidden;
	max-width: 1600px;
	margin: 0 auto;
	padding-top: 140px;
}

.section-company.attraction .attraction-info-wrap {
	border-radius: 30px;
	width: 100%;
	background: #f5f5f5;
	position: relative;
	background-size: cover;
}

.section-company.attraction .attraction-info {
	z-index: 11;
	display: flex;
	gap: 50px;
	padding: 100px;
	align-items: center;
}

.section-company.attraction .attraction-info .text-info {
	width: 100%;
	max-width: 535px;
}

.section-company.attraction .attraction-info .text-info .info-tit {
	font-size: 40px;
	font-weight: 300;
	color: #1a1a1a;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 4px solid #1a1a1a;
	line-height: 130%;
}

.section-company.attraction .attraction-info .text-info .info-text {
	color: #1a1a1a;
	line-height: 150%;
	font-size: 20px;
	font-weight: 200;
}

.section-company.attraction .attraction-info .text-info .info-text span {
	display: block;
}

.section-company.attraction .attraction-info .icon-info ul {
	display: flex;
	gap: 30px;
	justify-content: center;
	width: 100%;
	flex-wrap: wrap;
}

.section-company.attraction .attraction-info .icon-info ul li {
	text-align: center;
	color: #1a1a1a;
	font-size: 24px;
	font-weight: 200;
	width: 30%;
}

.section-company.attraction .attraction-info .icon-info ul li img {
	max-width: 150px;
	width: 100%;
	max-height: 150px;
	height: auto;
	margin: 0 auto 15px;
}

.section-company.care {
	padding-bottom: 0;
}
.section-company.care .care-list {
	overflow: hidden;
	display: block;
	width: 100%;
}

.section-company.care .care-list ul {
	display: flex;
	gap: 40px;
	justify-content: center;
}

.section-company.care .care-list .sub-pagination {
	display: none;
}

.section-company.care .care-list .sub-pagination.show {
	display: block;
	margin-top: 20px;
}

.section-company.care .care-list ul.swiper-wrapper {
	gap: 0;
	justify-content: normal !important;
}

.section-company.care .care-list ul.swiper-wrapper li {
	max-width: 100%;
}

.section-company.care .care-list ul li {
	width: 50%;
	max-width: 700px;
	cursor: pointer;
	height: 700px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	/* filter: drop-shadow(11px 20px 10px rgba(0, 0, 0, 0.2)); */
	border-radius: 60px;
}

.section-company.care .care-list ul li img {
	transition: all ease 0.7s;
	text-align: center;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0 auto;
	transform-origin: center center;
	display: block;
}

.section-company.care .care-list ul li:hover img {
	transform: scale(1.2);
	object-position: top;
}

.section-company.care .care-list ul li .care-list-info {
	position: absolute;
	padding: 0px 100px 0px 100px;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 16%;
}

.section-company.care .care-list ul li .tit {
	font-size: 48px;
	font-weight: 300;
	line-height: 100%;
	color: #ffffff;
	margin-bottom: 30px;
	display: flex;
	justify-content: left;
	position: relative;
	z-index: 11;
}

.section-company.care .care-list ul li .tit span {
	font-size: 18px;
	font-weight: 300;
	display: inline-block;
	border-radius: 100px;
	width: 80px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	vertical-align: top;
	position: relative;
	z-index: 11;
}

.section-company.care .care-list ul li .info {
	font-size: 20px;
	font-weight: 200;
	color: #ffffff;
	line-height: 150%;
	position: relative;
	z-index: 11;
	word-break: keep-all;
	text-align: left;
}

.section-company.care .care-list ul li .info span {
	display: block;
}

/* section company style end*/

/* section brand style */

.section-brand {
	max-width: 1600px;
	margin: 0 auto;
	padding-top: 70px;
}

.section-brand.brand-01 {
	margin: 0 auto;
	padding-top: 200px;
}

.section-brand.brand-01 .bi-wrap {
	display: flex;
	align-items: center;
}

.section-brand.brand-01 .bi-wrap .brand-bi {
	width: 650px;
	height: auto;
	margin-left: -50px;
	flex-shrink: 0;
}

.section-brand.brand-01 .bi-wrap .bi-info {
	font-size: 24px;
	color: #595959;
	display: block;
	line-height: 160%;
	word-break: keep-all;
}

.section-brand.brand-01 .bi-wrap .bi-info span {
	display: block;
}

.section-brand.brand-01 .brand-bi video {
	border: none;
	outline: none;
	width: 100%;
	height: auto;
}

.section-brand.brand-01 .brand-info .info-tit {
	font-size: 40px;
	font-family: 'NanumMyeongjo';
	font-weight: 100;
	color: #1a1a1a;
	margin: 80px 0 24px;
	line-height: 150%;
	padding-left: 80px;
	word-break: keep-all;
}

.section-brand.brand-01 .brand-info .info-tit.mobile {
	display: none;
}
.section-brand.brand-01 .brand-info .info-tit span {
	display: block;
}

.section-brand.brand-01 .brand-info .info-tit .font {
	display: inline !important;
	font-family: 'NotoSerif' !important;
	font-weight: 100;
}

.section-brand.brand-01 .brand-info .info-list li {
	font-size: 24px;
	font-weight: 200;
	line-height: 160%;
	color: #595959;
	margin: 7px 0;
	position: relative;
	padding-left: 28px;
}

.section-brand.brand-01 .brand-info .info-list li::before {
	content: '';
	position: absolute;
	width: 12px;
	height: 4px;
	background-color: #595959;
	left: 0;
	top: 20px;
}

.section-brand.brand-02 {
	position: relative;
	padding-top: 185px;
}

.section-brand.brand-02 .bg-wrap {
	position: relative;
	border-radius: 30px;
	width: 100%;
	height: 1920px;
	overflow: hidden;
	background: url('../img/bg_story_00.png') no-repeat center;
	background-size: cover;
}
.section-brand.brand-02 .ani-wrap {
	position: relative;
	height: 100%;
	width: 100%;
}
.section-brand.brand-02 .ani-wrap .part1 {
	width: 350px;
	position: absolute;
	top: 370px;
	left: 180px;
}

.section-brand.brand-02 .ani-wrap .part1 p {
	color: #fff;
	margin-top: 30px;
	font-size: 20px;
	font-weight: 100;
	line-height: 34px;
	text-align: center;
}

.section-brand.brand-02 .ani-wrap .part2 {
	position: absolute;
	top: 165px;
	left: 0;
	right: 0;
	width: 450px;
	margin: 0 auto;
}

.section-brand.brand-02 .ani-wrap .part2 .vertical-line {
	width: 1px;
	height: 150px;
	background-color: rgba(255, 255, 255, 0.5);
	margin: 70px auto 50px;
}

.section-brand.brand-02 .ani-wrap .part2 .vertical-line.aos-animate {
	animation: growLine 0.5s ease-in-out forwards;
}

@keyframes growLine {
	from {
		height: 0;
	}
	to {
		height: 150px;
	}
}

.section-brand.brand-02 .ani-wrap .part3 {
	width: 350px;
	position: absolute;
	bottom: 150px;
	right: 180px;
}
.section-brand.brand-02 .ani-wrap .part3 p {
	color: #fff;
	margin-top: 30px;
	font-size: 20px;
	font-weight: 100;
	line-height: 34px;
	text-align: center;
}

.section-brand.brand-02 .ani-wrap .part3 p span {
	display: block;
}
/* section brand style end*/

/* section solution style */

.section-solution {
	max-width: 1600px;
	margin: 0 auto;
	padding-top: 200px;
}

.section-solution .section-tit-wrap .tit {
	font-weight: 200;
}

.section-solution.solution-02 .tech-list .sub-pagination {
	display: none;
}

.section-solution.solution-02 .tech-list .sub-pagination.show {
	display: block;
	margin-top: 20px;
}

.section-solution.solution-02 .tech-list ul.swiper-wrapper {
	gap: 0;
	justify-content: normal !important;
	flex-wrap: initial;
}

.section-solution.solution-02 .tech-list > ul {
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
}

.section-solution.solution-02 .tech-list > ul li {
	width: calc(33.333% - 34px);
	padding: 60px 40px 80px;
	box-sizing: border-box;
	border: 1px solid #bcbcbc;
	border-radius: 50px;
	cursor: pointer;
	transition: all ease 0.2s;
}

.section-solution.solution-02 .tech-list > ul li .tech-tit {
	font-size: 40px;
	font-weight: 300;
	color: #1a1a1a;
	margin-bottom: 20px;
	padding-top: 115px;
	transition: all ease 0.2s;
}

.section-solution.solution-02 .tech-list > ul li.tech01 .tech-tit {
	background: url('../img/tech_list_01.png') no-repeat top left;
}
.section-solution.solution-02 .tech-list > ul li.tech02 .tech-tit {
	background: url('../img/tech_list_02.png') no-repeat top left;
}
.section-solution.solution-02 .tech-list > ul li.tech03 .tech-tit {
	background: url('../img/tech_list_03.png') no-repeat top left;
}
.section-solution.solution-02 .tech-list > ul li.tech04 .tech-tit {
	background: url('../img/tech_list_04.png') no-repeat top left;
}
.section-solution.solution-02 .tech-list > ul li.tech05 .tech-tit {
	background: url('../img/tech_list_05.png') no-repeat top left;
}
.section-solution.solution-02 .tech-list > ul li.tech06 .tech-tit {
	background: url('../img/tech_list_06.png') no-repeat top left;
}

.section-solution.solution-02 .tech-list > ul li.tech01:hover .tech-tit,
.section-solution.solution-02
	.tech-list
	> ul
	li.tech01.swiper-slide-active
	.tech-tit {
	background: url('../img/tech_list_01_active.png') no-repeat top left;
}
.section-solution.solution-02 .tech-list > ul li.tech02:hover .tech-tit,
.section-solution.solution-02
	.tech-list
	> ul
	li.tech02.swiper-slide-active
	.tech-tit {
	background: url('../img/tech_list_02_active.png') no-repeat top left;
}
.section-solution.solution-02 .tech-list > ul li.tech03:hover .tech-tit,
.section-solution.solution-02
	.tech-list
	> ul
	li.tech03.swiper-slide-active
	.tech-tit {
	background: url('../img/tech_list_03_active.png') no-repeat top left;
}
.section-solution.solution-02 .tech-list > ul li.tech04:hover .tech-tit,
.section-solution.solution-02
	.tech-list
	> ul
	li.tech04.swiper-slide-active
	.tech-tit {
	background: url('../img/tech_list_04_active.png') no-repeat top left;
}
.section-solution.solution-02 .tech-list > ul li.tech05:hover .tech-tit,
.section-solution.solution-02
	.tech-list
	> ul
	li.tech05.swiper-slide-active
	.tech-tit {
	background: url('../img/tech_list_05_active.png') no-repeat top left;
}
.section-solution.solution-02 .tech-list > ul li.tech06:hover .tech-tit,
.section-solution.solution-02
	.tech-list
	> ul
	li.tech06.swiper-slide-active
	.tech-tit {
	background: url('../img/tech_list_06_active.png') no-repeat top left;
}

.section-solution.solution-02 .tech-list > ul li .tech-info {
	font-size: 20px;
	font-weight: 200;
	color: #595959;
	line-height: 150%;
	word-break: keep-all;
}

.section-solution.solution-02 .tech-list > ul li .tech-info span {
	display: block;
}

.section-solution.solution-02 .tech-list > ul li:hover,
.section-solution.solution-02 .tech-list > ul li.swiper-slide-active {
	background-color: #002a04;
}

.section-solution.solution-02 .tech-list > ul li:hover .tech-tit {
	color: #fff;
}

.section-solution.solution-02 .tech-list > ul li.swiper-slide-active .tech-tit {
	color: #fff;
}

.section-solution.solution-02 .tech-list > ul li:hover .tech-info {
	color: #fff;
}

.section-solution.solution-02
	.tech-list
	> ul
	li.swiper-slide-active
	.tech-info {
	color: #fff;
}
/* section solution style end */
/* 컨텐츠 영역 style end */

/*floating 다운로드 버튼 style*/
.floating .pc {
	display: block;
}

.floating .mobile {
	display: none;
}

.floating {
	position: fixed;
	right: 30px;
	bottom: 20px;
	/* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); */
	transition: all ease 0.2s;
	z-index: 100;
	border-radius: 12px;
	overflow: hidden;
	z-index: 999;
}

.floating .scrollToTop {
	display: block;
	cursor: pointer;
	text-indent: -99999px;
	width: 64px;
	height: 64px;
	background: url('../img/top.svg') no-repeat center rgba(26, 26, 26, 0.85);
	background-size: 24px auto;
	transform: translateY(200%);
	transition: all ease 0.2s;
	border-radius: 12px;
}

.floating .scrollToTop.show {
	transform: translateY(0);
}

.floating.on {
	position: absolute;
	bottom: 20px;
}

.floating .pc {
	border-radius: 12px;
	border: 1px solid #d8d8d8;
	background-color: #fff;
	margin-bottom: 10px;
}

.floating .pc a {
	display: block;
	width: 64px;
	height: auto;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 300;
	line-height: 16px;
	text-align: center;
	box-sizing: border-box;
	position: relative;
	color: #1a1a1a;
}

.floating .pc a span {
	display: block;
}

.floating .pc .appDown.googlePlay {
	padding-top: 40px;
	background: url('../img/icon_googleplay.png') no-repeat center top 15px;
	background-size: 20px auto;
}

.floating .pc .appDown.appStore {
	padding-top: 40px;
	background: url('../img/icon_appstore.png') no-repeat center top 15px;
	background-size: 20px auto;
}

.floating .pc .appDown.appStore:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 50px;
	height: 1px;
	background-color: #d8d8d8;
}

.floating.mobile a span {
	display: block;
}

.floating.mobile .appDown:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 60px;
	height: 1px;
	background-color: #6c6c6c;
}
/*floating 다운로드 버튼 style end*/

/* modal style */
.modal {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 103;
}

.modal-content {
	position: relative;
	box-sizing: border-box;
	margin: 2% auto;
	padding: 40px 20px;
	width: 80%;
	height: 90vh;
	max-width: 700px;
	background-color: #fff;
	border-radius: 30px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.modal-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.modal-header .modal-tit {
	font-size: 35px;
	font-weight: 300;
}

.modal-header .close {
	position: absolute;
	top: 25px;
	right: 20px;
	font-size: 35px;
	cursor: pointer;
}
.modal-body {
	overflow-y: auto;
	height: calc(100% - 100px);
	width: 100%;
}
.modal-body .table-wrap {
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.modal-body table thead {
	background-color: #1a1a1a;
	border-radius: 10px 10px 0 0;
}
.modal-body table th {
	background: #1a1a1a;
	color: #fff;
	padding: 30px 20px;
	position: relative;
	font-size: 16px;
	font-weight: 300;
}

.modal-body table th::after {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.5);
	display: inline-block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.modal-body table th:last-child::after {
	display: none;
}

.modal-body table tr {
	background-color: #f5f5f5;
}

.modal-body table tr:nth-child(even) {
	background-color: #fff;
}

.modal-body table td {
	padding: 30px 20px;
	font-size: 16px;
	font-weight: 200;
	color: #595959;
}

.modal-body table td .d-flex {
	display: flex;
	gap: 20px;
	align-items: center;
}

.modal-body table td img {
	display: inline-block;
	vertical-align: middle;
}

.noscroll {
	overflow: hidden;
}

.modal.allMenu {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 120;
}

.modal.allMenu .modal-content {
	position: relative;
	box-sizing: border-box;
	padding: 40px 20px;
	margin: 0;
	width: 100%;
	height: 100dvh;
	max-width: 100%;
	background-color: #fff;
	border-radius: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.modal.allMenu .modal-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.modal.allMenu .modal-header .modal-tit {
	font-size: 35px;
	font-weight: 300;
}

.modal.allMenu .modal-header .close {
	position: absolute;
	top: 25px;
	right: 20px;
	font-size: 35px;
	cursor: pointer;
}
.modal.allMenu .modal-body {
	overflow-y: auto;
	height: 100%;
	width: 100%;
	text-align: center;
}

.modal.allMenu .modal-body .title {
	font-size: 30px;
	font-weight: 300;
	display: block;
	color: #1a1a1a;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding: 16px 0;
}

.modal.allMenu .modal-body ul li ul {
	margin: 12px 0;
}

.modal.allMenu .modal-body ul li ul li a {
	padding: 8px 0;
	color: #1a1a1a;
	font-size: 20px;
	font-weight: 200;
	display: block;
}

.modal.allMenu.show {
	display: block;
}

.modal.care, .modal.more, .modal.alert, .modal.alert2 {
	display: none;
	/* display: block; */
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 120;
}

.modal.care .modal-content {
	position: relative;
	box-sizing: border-box;
	padding: 40px 20px;
	margin: auto;
	left: 16px;
	top: 60px;
	width: 650px;
	height: calc(100% - 120px);
	max-width: 100%;
	background-color: #fff;
	border-radius: 28px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.modal.more .modal-content {
	position: relative;
	box-sizing: border-box;
	padding: 40px 10px;
	margin: auto;
	left: 1px;
	top: 60px;
	width: 650px;
	height: calc(100% - 120px);
	max-width: 90%;
	background-color: #fff;
	border-radius: 28px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.modal.alert .modal-content {
	 position: relative;
	 box-sizing: border-box;
	 padding: 40px 10px;
	 margin: auto;
	 left: 1px;
	 top: 60px;
	 width: 650px;
	 height: calc(80% - 10px);
	 max-width: 90%;
	 max-height: 700px;
	 background-color: #fff;
	 border-radius: 28px;
	 box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
 }

.modal.alert2 .modal-content {
	position: relative;
	box-sizing: border-box;
	padding: 40px 10px;
	margin: auto;
	left: 1px;
	top: 60px;
	width: 650px;
	height: calc(80% - 10px);
	max-width: 90%;
	max-height: 390px;
	background-color: #fff;
	border-radius: 28px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.modal.care .modal-header, .modal.more .modal-header, .modal.alert .modal-header, .modal.alert2 .modal-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.modal.care .modal-header .close, .modal.more .modal-header .close, .modal.alert .modal-header .close, .modal.alert2 .modal-header .close {
	position: absolute;
	top: 8px;
	right: 18px;
	font-size: 35px;
	cursor: pointer;
}

.modal.care .modal-header p, .modal.more .modal-header p, .modal.alert .modal-header p, .modal.alert2 .modal-header p {
	font-family: 'Pretendard';
	font-weight: 350;
	font-size: 38px;
	text-align: left;
}

.modal.care .modal-body, .modal.more .modal-body {
	overflow-y: auto;
	height: calc(100% - 33px);
	width: 100%;
	text-align: center;
}
.modal.alert .modal-body, .modal.alert2 .modal-body {
	overflow-y: auto;
	height: calc(100% - 63px);
	width: 100%;
	text-align: left;
}

.modal.care .modal-body img, .modal.more .modal-body img, .modal.alert .modal-body img, .modal.alert2 .modal-body img {
	width: 100%;
	margin-bottom: 80px
}

.modal.alert .modal-body p, .modal.alert2 .modal-body p {
	width: 100%;
	text-align: center;
	vertical-align: middle;
}
.modal.alert .modal-body button, .modal.alert2 .modal-body button {
	border-radius: 28px;
	text-align: center;
	vertical-align: middle;
	background: #eee;
	border:1px solid #aaa;
	padding: 2px 10px;
}

.modal.care.show, .modal.more.show, .modal.alert.show, .modal.alert2.show {
	display: block;
}
/* modal style end */

/* path animation */
.section-company.connected .img-wrap.pc {
	display: block !important;
}

.section-company.connected .img-wrap.mobile {
	display: none !important;
}

.section-company.connected .img-wrap.pc > div {
	display: block;
}

.content1.new {
	position: relative;
}

.content2.new svg {
	margin-top: -4px;
	margin-left: 0px;
}

.content3.new {
	padding-bottom: 15%;
}

.content3.new svg {
	margin-top: -4px;
	margin-left: 0px;
}

.aos-animate.new .path1 {
	stroke-dasharray: 6884;
	animation: drawPath 10s linear;
	animation-delay: 0;
}

.aos-animate.new .line {
	stroke-dasharray: 6884;
	animation: drawPath 10s linear;
	animation-delay: 0;
}

.aos-animate.new .girl {
	stroke-dasharray: 6884;
	animation: drawPath 20s linear;
	animation-delay: 0;
}

.aos-animate.new .line2 {
	stroke-dasharray: 6884;
	animation: drawPath 14s linear;
	animation-delay: 0;
}

.aos-animate.new .path3 {
	stroke-dasharray: 6884;
	animation: drawPath 13s linear;
	animation-delay: 0;
}

.img-wrap.mobile .aos-animate.new .path1 {
	stroke-dasharray: 6884;
	animation: drawPath 18s linear;
	animation-delay: 0;
}

.img-wrap.mobile .aos-animate.new .line {
	stroke-dasharray: 6884;
	animation: drawPath 14s linear;
	animation-delay: 0;
}

.img-wrap.mobile .aos-animate.new .line2 {
	stroke-dasharray: 6884;
	animation: drawPath 18s linear;
	animation-delay: 0;
}

.img-wrap.mobile .aos-animate.new .girl {
	stroke-dasharray: 6884;
	animation: drawPath 24s linear;
	animation-delay: 0;
}

.img-wrap.mobile .aos-animate.new .path3 {
	stroke-dasharray: 6884;
	animation: drawPath 20s linear;
	animation-delay: 0;
}

@keyframes drawPath {
	0% {
		stroke-dashoffset: 6884;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

.new-cont-ab {
	position: absolute;
	width: 320px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
}

.content1.new .new-cont-ab {
	top: 65%;
	left: 0;
}

.content2.new .new-cont-ab {
	bottom: -80px;
	right: -7px;
}

.content3.new .new-cont-ab {
	top: 25%;
	left: 21%;
	width: 325px;
}

.new-cont-ab .info-tit {
	font-size: 40px;
	color: #1a1a1a;
	font-weight: 300;
	line-height: 120%;
}

.new-cont-ab .info-tit span {
	display: block;
}

/* .new-cont-ab .info-tit span.circle {
	display: inline-block;
	width: 24px;
	height: 24px;
	background-color: #7daf42;
	border-radius: 100%;
	vertical-align: middle;
	margin-left: 15px;
	margin-top: -8px;
} */

.new-cont-ab .info-txt {
	font-size: 20px;
	color: #595959;
	font-weight: 200;
	line-height: 150%;
}

.new-cont-ab .info-txt span {
	display: block;
}
