

.visual-wrap {
	position: relative;
	overflow: hidden;
}
.visual-wrap .slider-wrap {
	display: flex;
	transition: transform 0.5s ease;
}
.visual-wrap .slider-wrap .slide-list {
	flex-shrink: 0;
	width: 100%;
	height: 100rem;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 2rem;
}
.visual-wrap .slider-wrap .slide-1 {
	background: url("../_img/main/main-visual-01.png") no-repeat center / cover;
}
.visual-wrap .slider-wrap .slide-2 {
	background: url("../_img/main/main-visual-02.png") no-repeat center / cover;
}
.visual-wrap .slider-wrap .slide-3 {
	background: url("../_img/main/main-visual-03.png") no-repeat center / cover;
}

.visual-wrap .slider-wrap .slide-list .title-wrap span {
	display: block;
	font-size: clamp(1.9rem, 2vw, 2.2rem);
	line-height: 1.6;
	margin-bottom: 2rem;
}
.visual-wrap .slider-wrap .slide-list .title-wrap h2 {
	font-size: clamp(3.5rem, 5vw, 8.8rem);
	line-height: 1.4;
	font-weight: 200;
}
.visual-wrap .slider-wrap .slide-list .title-wrap h2 b {
	font-weight: 600;
}
.visual-wrap .slider-wrap .slide-list .title-wrap p {
	font-size: clamp(2rem, 2.5vw, 2.8rem);
	font-weight: 500;
	line-height: 1.6;
	margin-top: 3.2rem;
}
.visual-wrap .slider-wrap .slide-list .list-wrap {
	margin-top: 6rem;
}
.visual-wrap .slider-wrap .slide-list .list-wrap ul {
	display: flex;
	gap: 1rem;
}
.visual-wrap .slider-wrap .slide-list .list-wrap ul li {
	font-size: clamp(1.6rem, 2vw, 2rem);
	font-weight: 500;
	line-height: 1.2;
	border: 2px solid #fff;
	padding: 1.8rem 8.8rem;
	border-radius: 5rem;
}
.visual-wrap .indicator-wrap {
	display: flex;
	align-items: center;
	gap: .6rem;
	width: fit-content;
	background: #00000030;
	border-radius: 5rem;
	padding: .8rem 1.2rem;
	position: absolute;
	bottom: 4rem;
	left: 50%;
	transform: translateX(-50%);
}
.visual-wrap .indicator-wrap span {
	display: block;
	width: 1rem;
	height: 1rem;
	background: #aaa;
	border-radius: 100%;
}
.visual-wrap .indicator-wrap span.active {
	background: #fff;
}

/* 공통 사용 */
section .comm-title-wrap {
	text-align: center;
	margin-bottom: 6rem;
}
section .comm-title-wrap h3 {
	font-family: 'Trirong';
	font-size: clamp(4rem, 6vw, 6.8rem);
	font-weight: 500;
	letter-spacing: -.5px;
	background: linear-gradient(90deg, #14332D 40%, #009688 60%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
section .comm-title-wrap p {
	font-size: clamp(1.6rem, 2vw, 2rem);
	color: #666;
	margin-top: 1.2rem;
}
section .link-btn {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: fit-content;
	padding: 1.3rem 3rem;
	border-radius: 5rem;
	border: 1px solid #000;
	color: #000;
	font-size: 1.6rem;
	font-weight: 600;
}

.sec1 {
	background: #f8f8f8;
	padding: 12rem 0;
}
.sec1 .pick-wrap ul {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
.sec1 .pick-wrap ul li {
	width: calc(100% / 8);
}
.sec1 .pick-wrap ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	border-radius: 1rem;
	padding: 1rem 0;
	transition: all 0.2s ease;
}
.sec1 .pick-wrap ul li a:hover {
	background: #009688;
}
.sec1 .pick-wrap ul li a:hover img {
	filter: brightness(0) invert(1);
}
.sec1 .pick-wrap ul li a:hover p {
	color: #fff;
}
.sec1 .pick-wrap ul li a img {
	width: 6rem;
	aspect-ratio: 1 / 1;
}
.sec1 .pick-wrap ul li a p {
	font-size: 1.8rem;
	color: #111;
	font-weight: 500;
	text-align: center;
}

.sec2 {
	padding-top: 16rem;
}
.sec2 .comm-title-wrap {
	margin-bottom: 8rem;
}
.sec2 .comm-title-wrap .link-btn {
	margin: 4rem auto 0;
}
.sec2 .list-wrap ul {
	display: flex;
	color: #fff;
}
.sec2 .list-wrap ul li {
	background: #000;
	width: 100%;
	height: 74rem;
	padding: 6.8rem 0;
	text-align: center;
	transition: all 0.3s;
	overflow: hidden;
}
.sec2 .list-wrap ul li:nth-of-type(1) {
	background: #111 url("../_img/main/review-event-01.png") no-repeat center bottom / 100% auto;
}
.sec2 .list-wrap ul li:nth-of-type(2) {
	background: #009688 url("../_img/main/review-event-02.png") no-repeat center bottom / 100% auto;
}
.sec2 .list-wrap ul li:nth-of-type(3) {
	background: #14332d url("../_img/main/review-event-03.png") no-repeat center bottom / 100% auto;
}
.sec2 .list-wrap ul li:nth-of-type(4) {
	background: #827565 url("../_img/main/review-event-04.png") no-repeat center bottom / 100% auto;
}
.sec2 .list-wrap ul li:hover {
	background-size: 120% auto;
}
.sec2 .list-wrap ul li:hover .title-box {
	transform: scale(1.2);
}
.sec2 .list-wrap ul li:hover .desc-box {
	transform: scale(1.05);
}
.sec2 .list-wrap ul li .title-box {
	margin-bottom: 2.8rem;
	transition: all 0.3s;
}
.sec2 .list-wrap ul li .title-box span {
	display: block;
	font-size: 1.8rem;
	line-height: 1.4;
}
.sec2 .list-wrap ul li .title-box h4 {
	font-size: 3.2rem;
	font-weight: 500;
	line-height: 1.4;
}
.sec2 .list-wrap ul li .desc-box {
	transition: all 0.3s;
}
.sec2 .list-wrap ul li .desc-box p {
	font-size: 2rem;
	line-height: 1.4;
	margin-bottom: 1rem;
}
.sec2 .list-wrap ul li .desc-box span {
	font-size: 2.4rem;
	line-height: 1.4;
}

.sec3 {
	padding: 16rem 0;
}
.sec3-swiper {
	overflow: hidden;
}
.sec3-swiper .swiper-wrapper {
	margin: 0;
	padding: 0;
	list-style: none;
	justify-content: flex-start;
}
.sec3 .slider-wrap .swiper-slide p {
	text-align: center;
	font-size: 2rem;
	margin-top: 2rem;
}
.sec3 .indicator,
.sec4 .indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-top: 6rem;
}
.sec3 .indicator span,
.sec4 .indicator span {
	display: block;
	width: .6rem;
	aspect-ratio: 1 / 1;
	background: #ccc;
	border-radius: 100%;
}
.sec3 .indicator span.active,
.sec4 .indicator span.active {
	background: #fff;
	outline: 2px solid #deaa61;
}
.sec3 .swiper-slide {
	text-align: center;
	overflow: hidden;
}
.sec3 .swiper-slide a {
	color: #000;
}
.sec3 .swiper-slide img {
	width: 100%;
	display: block;
}

.sec4 {
	background: #f8f8f8;
	padding: 16rem 0;
}
.yt-slider-wrap {
	overflow: hidden;
}
.yt-track {
	display: flex;
	gap: 2rem;
	transition: transform 0.5s ease;
	will-change: transform;
}
.yt-slide {
	flex-shrink: 0;
}
.yt-slide a {
	display: block;
	color: #000;
}
.yt-slide a .thumb-wrap {
	overflow: hidden;
	aspect-ratio: 510 / 287;
}
.yt-slide a:hover .thumb-wrap img {
	transform: scale(1.2);
}
.yt-slide a .thumb-wrap img {
	width: 100%;
	display: block;
	transition: transform 0.4s ease;
}
.yt-slide a .title-box {
	margin-top: 2rem;
}
.yt-slide a .title-box p {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4;
}
.yt-slide a .title-box span {
	display: block;
	font-size: 1.6rem;
	line-height: 1.4;
	color: #999;
	margin-top: .5rem;
}

.sec5 .grid-wrap ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.sec5 .grid-wrap ul li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
}
.sec5 .grid-wrap ul li img {
	width: 100%;
}
.sec5 .grid-wrap ul li.bg-brown {
	background: #827565;
}
.sec5 .grid-wrap ul li.bg-green {
	background: #009688;
}
.sec5 .grid-wrap ul li h4 {
	font-size: clamp(2.8rem, 3vw, 3.6rem);
	line-height: 1.4;
}
.sec5 .grid-wrap ul li p {
	font-size: clamp(1.8rem, 2vw, 2rem);
	margin: 2rem 0;
}
.sec5 .grid-wrap ul li span {
	font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}

.sec5 .process-wrap {
	background: #0b2c28 url("../_img/main/bg-smart-process.png") no-repeat center / cover;
	padding: 14rem 0;
}
.sec5 .process-wrap .comm-title-wrap h3,
.sec5 .process-wrap .comm-title-wrap p {
	color: #fff;
	-webkit-text-fill-color: unset;
}
.sec5 .process-wrap .comm-title-wrap p {
	color: #ccc;
}
.sec5 .process-wrap .contents-wrap {
	display: flex;
	justify-content: space-between;
	gap: 7rem;
}
.sec5 .process-wrap .contents-wrap .list-wrap ul {
	display: flex;
	flex-direction: column;
}
.sec5 .process-wrap .contents-wrap .list-wrap ul li {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.8rem;
	color: #ccc;
	width: 25.7rem;
	height: 5.4rem;
	padding: 0 2rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s, color 0.3s;
}
.sec5 .process-wrap .contents-wrap .list-wrap ul li.active {
	background: #fff;
	color: #000;
}
.sec5 .process-wrap .contents-wrap .img-wrap {
	width: 88.3rem;
	aspect-ratio: 883 / 594;
	flex-shrink: 0;
}
.sec5 .process-wrap .contents-wrap .img-wrap img {
	width: 100%;
	transition: opacity 0.3s;
}
.sec5 .process-wrap .contents-wrap .desc-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.sec5 .process-wrap .contents-wrap .desc-wrap h4 {
	font-size: clamp(2.8rem, 3vw, 3.6rem);
	font-weight: 500;
	line-height: 1.4;
	color: #fff;
}
.sec5 .process-wrap .contents-wrap .desc-wrap p {
	font-size: 2rem;
	line-height: 1.4;
	color: #ccc;
	margin-top: 1rem;
}
.sec5 .process-wrap .contents-wrap .desc-wrap .link-btn {
	border: 1px solid #fff;
	color: #fff;
	margin-top: 4rem;
}
.sec5 .process-wrap .contents-wrap .desc-wrap .link-btn img {
	filter: invert(1);
}


.sec6 {
	padding: 16rem 0;
}
.sec6 .content-wrap ul {
	display: flex;
	gap: 5rem;
}
.sec6 .content-wrap ul li .img-wrap {
	overflow: hidden;
}
.sec6 .content-wrap ul li .img-wrap:hover img {
	transform: scale(1.2);
}
.sec6 .content-wrap ul li .img-wrap img {
	width: 100%;
	transition: transform 0.4s ease;
}
.sec6 .content-wrap ul li .title-box {
	margin-top: 3rem;
}
.sec6 .content-wrap ul li .title-box p {
	font-size: clamp(2rem, 2.4vw, 2.4rem);
	font-weight: 600;
	line-height: 1.4;
	color: #000;
	margin-bottom: 1rem;
}
.sec6 .content-wrap ul li .title-box span {
	display: block;
	font-size: clamp(1.6rem, 2vw, 2rem);
	line-height: 1.5;
	color: #000;
}

.sec7 .slider-wrap {
	position: relative;
	background: #f8f8f8;
	overflow: hidden;
}
.sec7 .swiper-slide {
	display: flex;
}
.sec7 .swiper-slide .img-wrap {
	position: relative;
}
.sec7 .sec7-swiper .swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	position: absolute;
	bottom: 4rem;
	left: 0;
	width: 50%;
	z-index: 10;
}
.sec7 .sec7-swiper .swiper-pagination-bullet {
	display: block;
	width: .6rem;
	height: .6rem;
	aspect-ratio: 1 / 1;
	background: #fff;
	border-radius: 100%;
	opacity: 1;
	margin: 0;
}
.sec7 .sec7-swiper .swiper-pagination-bullet-active {
	outline: 2px solid #deaa61;
}
.sec7 .swiper-slide .img-wrap,
.sec7 .swiper-slide .text-wrap {
	width: 50%;
}
.sec7 .swiper-slide .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sec7 .swiper-slide .text-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #f8f8f8;
	padding: 8rem;
}
.sec7 .swiper-slide .text-wrap h4 {
	font-size: clamp(2.6rem, 3.5vw, 3.6rem);
	line-height: 1.4;
	margin-bottom: 2rem;
}
.sec7 .swiper-slide .text-wrap > p {
	font-size: clamp(1.8rem, 2vw, 2rem);
	line-height: 1.6;
	color: #777;
}
.sec7 .swiper-slide .text-wrap > p b {
	color: #000;
	font-weight: 600;
}
.sec7 .swiper-slide .text-wrap > p img {
	margin-right: .5rem;
}
.sec7 .swiper-slide .text-wrap span {
	display: block;
	font-size: clamp(2rem, 2.2vw, 2.2rem);
	color: #000;
	line-height: 1.6;
	font-weight: 500;
}
.sec7 .swiper-slide .text-wrap a {
	font-size: clamp(1.8rem, 2vw, 2rem);
	font-weight: 500;
	line-height: 1.4;
	color: #fff;
	background: #009688;
	border-radius: 5rem;
	width: fit-content;
	padding: 1.8rem 3.4rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: clamp(5rem, 5vw, 8rem);
}
.sec7 .swiper-slide .text-wrap a img {
	filter: invert(1);
}
.sec7 .swiper-slide .text-wrap .properties {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}
.sec7 .swiper-slide .text-wrap .properties p {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.2;
	padding: 1.2rem 4rem;
	border-radius: 5rem;
	border: 1px solid #deaa61;
	color: #deaa61;
}

.sec8 {
	padding: 16rem 0;
}
.sec8 .comm-title-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.sec8 .list-wrap ul {
	display: flex;
	gap: 3rem;
}
.sec8 .list-wrap ul li {
	width: 100%;
}
.sec8 .list-wrap ul li a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid #ccc;
	padding: 6rem 4rem;
	width: 100%;
	max-width: 37.8rem;
	height: 37.8rem;
}
.sec8 .list-wrap ul li a .title-box span {
	display: block;
	font-size: 1.4rem;
	line-height: 1.4;
	color: #14332d;
	margin-bottom: 1rem;
}
.sec8 .list-wrap ul li a .title-box h4 {
	font-size: clamp(2.2rem, 2.5vw, 2.8rem);
	line-height: 1.4;
	color: #000;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
}
.sec8 .list-wrap ul li a .date {
	font-size: 1.6rem;
	line-height: 1.4;
	color: #666;
}
.sec8 .banner-wrap {
	display: flex;
	gap: 3rem;
	margin-top: 8rem;
}
.sec8 .banner-wrap .banner {
	color: #fff;
	width: 100%;
	padding: 6rem 4rem;
}
.sec8 .banner-wrap .banner-1 {
	background: url("../_img/main/banner-img-01.png") no-repeat center / cover;
}
.sec8 .banner-wrap .banner-2 {
	background: url("../_img/main/banner-img-02.png") no-repeat center / cover;
}
.sec8 .banner-wrap .banner span {
	display: block;
	font-size: 1.4rem;
	line-height: 1.4;
	margin-bottom: 1rem;
}
.sec8 .banner-wrap .banner h5 {
	font-size: clamp(2.4rem, 2.4vw, 2.8rem);
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 2rem;
}
.sec8 .banner-wrap .banner p {
	font-size: clamp(1.6rem, 1.6vw, 1.8rem);
	line-height: 1.4;
}

.notice-wrap {
	border-top: 1px solid #ddd;
	padding: 6rem 0;
}
.notice-wrap h3 {
	font-size: clamp(2.4rem, 3.2vw, 3.6rem);
	font-weight: 700;
	margin-bottom: 2rem;
	color: #009688;
}
.notice-wrap p {
	font-size: clamp(1.8rem, 2.4vw, 2.4rem);
	line-height: 1.4;
	color: #444;
}
.notice-wrap .logo-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 6rem;
	margin-top: 4rem;
}
.notice-wrap .logo-wrap img {
	object-fit: contain;
}



@media (max-width: 1280px) {
	.notice-wrap .logo-wrap {
		gap: 4rem;
		flex-wrap: wrap;
	}
}

@media (max-width: 1024px) {
	.sec1 .pick-wrap ul {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		row-gap: 5rem;
	}
	.sec1 .pick-wrap ul li {
		width: auto;
	}
	.sec2 .list-wrap ul {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.sec7 .swiper-slide {
		flex-direction: column;
	}
	.sec7 .swiper-slide .img-wrap, 
	.sec7 .swiper-slide .text-wrap {
		width: 100%;
	}
	.sec7 .sec7-swiper .swiper-pagination {
		top: 3rem;
		bottom: unset;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 992px) {
	.sec5 .process-wrap .contents-wrap {
		flex-direction: column;
		gap: 4rem;
	}
	.sec5 .process-wrap .contents-wrap .img-wrap {
		width: 100%;
	}
	.sec5 .process-wrap .contents-wrap .list-wrap ul {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	.sec8 .list-wrap ul {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
	.sec8 .list-wrap ul li a {
		max-width: 100%;
		height: 27rem;
	}
	.sec8 .banner-wrap {
		flex-direction: column;
	}
}


@media (max-width: 768px) {
	.container {
		max-width: 100%;
	}
	.visual-wrap .slider-wrap .slide-list {
		height: 60rem;
	}
	.visual-wrap .slider-wrap .slide-list .list-wrap ul li {
		padding: 1rem 3rem;
	}
	.sec5 .grid-wrap ul {
		grid-template-columns: 1fr;
	}
	.sec5 .grid-wrap ul li.bg-brown,
	.sec5 .grid-wrap ul li.bg-green {
		padding: 8rem 2rem;
	}
	.sec5 .process-wrap {
		padding: 7rem 0;
	}
	.sec6 .content-wrap ul {
		gap: 2.5rem;
	}
	.sec7 .swiper-slide .text-wrap .properties p {
		font-size: 1.6rem;
		padding: .7rem 2rem;
	}
	.sec1 .pick-wrap ul {
		gap: 0;
	}
}

@media (max-width: 680px) {
	.sec5 .process-wrap .contents-wrap .list-wrap ul {
		grid-template-columns: repeat(2, 1fr);
	}
	.sec7 .swiper-slide .text-wrap {
		padding: 4rem;
	}
}

@media (max-width: 480px) {
	.sec1 .pick-wrap ul {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 4rem;
	}
	.sec2 .list-wrap ul {
		grid-template-columns: 1fr;
	}
	.sec6 .content-wrap ul {
		flex-direction: column;
	}
	.sec6 .content-wrap ul li .title-box {
		margin-top: 2rem;
	}
	.sec8 .banner-wrap .banner {
		padding: 3rem 2.5rem;
	}
	.sec8 .list-wrap ul {
		grid-template-columns: 1fr;
	}
	.sec8 .list-wrap ul li a {
		height: 22rem;
		padding: 4rem 3rem;
	}

	.sec1 {
		padding: 6rem 0;
	}
	.sec2 {
		padding-top: 9rem;
	}
	.sec3, .sec4, .sec6, .sec8 {
		padding: 8rem 0;
	}
	section .comm-title-wrap {
		margin-bottom: 3rem;
	}
	.sec8 .banner-wrap {
		margin-top: 3rem;
	}
}

@media (max-width: 420px) {
	.sec5 .process-wrap .contents-wrap .list-wrap ul {
		grid-template-columns: 1fr;
	}
	.sec5 .process-wrap .contents-wrap .list-wrap ul li {
		width: 100%;
	}
	.sec8 .comm-title-wrap {
		flex-direction: column;
		align-items: center;
		gap: 3rem;
	}
}