/* common */
main{ position: relative; }
.mainT{ position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
.mainT > div{ position: sticky; top: 0; left: 0; }
.mainM{ max-height: 100svh; height: 100vh; }
.mainB{ background: #FFF; position: relative; z-index: 100; }

.sc{ position: relative; }
/* .scT{ position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
.scT > div{ position: sticky; top: calc(var(--stickyH) * -1); left: 0; }
.scM{ height: var(--height); } */
.scT{ position: sticky; top: calc(var(--stickyH) * -1); left: 0; }
.scB{ background: #FFF; position: relative; z-index: 100; }



/* title-box */
.title-box{ text-align: center; }
.title-box h3{ font-family: var(--engFont); font-size: 7rem; font-weight: 600; color: #111; }


/* viewmore */
.viewmore{
	--lineColor: #222;
}
.viewmore{ display: inline-flex; align-items: center; font-size: 18px; font-weight: 500; color: #111 !important; line-height: 1.5; letter-spacing: -0.03em; padding: 15px 0; margin: -15px 0; }
.viewmore > span{ background: linear-gradient(to top, var(--lineColor) 0 1px, transparent 1px 100%) no-repeat left center; background-size: 0; line-height: inherit; transition: background-size 0.6s; }
.viewmore i{ display: inline-flex; flex-direction: column; justify-content: center; width: 30px; height: 30px; background: #111; border-radius: 50%; margin-right: 15px; overflow: hidden; }
.viewmore i span,
.viewmore i span::before,
.viewmore i span::after{ display: block; background: url("/kr/img/main/icon_arrow_white.svg") no-repeat center left 55% / contain; }
.viewmore i span{ height: 14px; transform: translateX(0); transition: transform 0.6s; }
.viewmore i span::before,
.viewmore i span::after{ content: ""; height: 100%; }
.viewmore i span::before{ transform: translateX(-75%); }
.viewmore i span::after{ width: 100%; position: absolute; top: 0; left: 0; transform: translateX(-150%); }

.viewmore.white{
	--lineColor: #FFF;
}
.viewmore.white{ font-weight: 400; color: #FFF !important; }


/* btns */
.btns{ display: flex; }
.btns button{ width: 50px; height: 50px; background: transparent; border: 1px solid #DDD; padding: 0; overflow: hidden; }
.btns button:not(:last-of-type){ margin-right: 10px; }
.btns button i,
.btns button i::before,
.btns button i::after{ display: block; background: url("/kr/img/main/icon_arrow_gray.svg") no-repeat center left 55% / contain; }
.btns button i{ content: ""; height: 14px; position: relative; transform: translateX(0); transition: transform 0.6s; }
.btns button i::before{ content: ""; height: 100%; transform: translateX(-75%); }
.btns button i::after{ content: ""; width: 100%; height: 100%; background-image: url("/kr/img/main/icon_arrow_blue.svg"); position: absolute; top: 0; left: 0; transform: translateX(-150%); }

.btns .prev{ transform: scaleX(-1); }


@media screen and (hover: hover) and (pointer: fine){
	/* viewmore */
	.viewmore:hover > span{ background-size: 100% auto !important; }
	.viewmore:hover i span{ transform: translate(150%); }

	/* btns */
	.btns button:hover i{ transform: translateX(150%); }
}

@media screen and (max-width: 1280px){
	.title-box h3{ font-size: 6.5rem; }
}

@media screen and (max-width: 900px){
	.title-box h3{ font-size: 6rem; }
}


/* visual */
#visual{ overflow: hidden; }
#visual .visual{ max-height: 100svh; height: 100vh; text-align: center; position: relative; overflow: hidden; }
#visual .visual::after{ content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
#visual .visual video{ 
	min-height: 110vh;
	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
	width: 100vw;
	height: 60vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); 
	object-fit: cover;
	pointer-events: none;
}
#visual .visual.black::after{ background: rgba(0, 0, 0, 0.1); }
#visual .visual.gradient::after{ background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent); }

#visual .txt-wrap,
#visual .txt-wrap .slick-list{ overflow: visible; }
#visual .txt-wrap .slick-track{ display: flex; }
#visual .txt{ height: auto; float: unset; display: flex; flex-direction: column; justify-content: flex-end; }
#visual .txt h2{ font-size: 4.8rem; font-weight: 600; color: #FFF; letter-spacing: -0.03em; line-height: 1.5; margin-bottom: 20px; transform: translateX(var(--aosM)); opacity: 0; transition: transform var(--aosT), opacity var(--aosT); }
#visual .txt p{ font-size: 22px; font-weight: 400; color: #FFF; letter-spacing: -0.03em; line-height: 1.5; transform: translateX(var(--aosP)); opacity: 0; transition: transform var(--aosT), opacity var(--aosT); }

#visual .txt.animated h2,
#visual .txt.animated p{ transform: translateX(0); opacity: 1; }

#visual .bottom{ padding-bottom: 50px; position: absolute; bottom: 0; left: 0; right: 0; overflow: hidden; }
#visual .bottom .flex-box{ display: flex; justify-content: center; align-items: center; margin-top: 60px; }
#visual .bottom .bar{ width: 90px; background: rgba(255, 255, 255, 0.2); margin-right: 20px; }
#visual .bottom .bar div{ width: 0; height: 2px; background: #FFF; }
#visual .bottom .btns button{ width: 40px; height: 40px; border: none; }
#visual .bottom .btns button i{ background-image: url("/kr/img/main/icon_arrow_white.svg"); transform: translateX(0) !important; } 
#visual .bottom .btns button i::before, 
#visual .bottom .btns button i::after{ display: none; } 

@media screen and (max-width: 1700px){
	#visual .txt p{ font-size: 20px; }
}

@media screen and (max-width: 1280px){
	#visual .txt p{ font-size: 19px; }
}

@media screen and (max-width: 900px){
	#visual .txt h2{ font-size: 5rem; }
	#visual .txt p{ font-size: 18px; }
}


/* product */
#product{
	--inner: 1760px;
	--ptb: 30px;
	--plr: 40px;

	--duration: 1s;
	--timing: cubic-bezier(0.25, 1.25, 0.5, 1);
}
#product{ padding: 160px 0; }
#product .overflow{ overflow: hidden; }
#product .inner{ max-width: calc(var(--inner) - 40px); width: 100%; margin: 0 auto; }
#product .title-box{ text-align: left; margin-bottom: 100px; }

#product .prod-wrap .slick-track{ display: flex; transition-timing-function: var(--timing); }
#product .prod{ width: calc(var(--inner) / 2); height: auto !important; margin-right: 20px; float: unset; transform: translateX(0); transition: transform var(--duration); transition-timing-function: var(--timing); }
#product .prod a{ width: calc((var(--inner) / 4) - 40px); height: 100%; display: block; margin-left: 0; position: relative; transition: width var(--duration), margin var(--duration); transition-timing-function: var(--timing); }
#product .prod .bg{ height: 650px; padding-bottom: 160px; transition: padding var(--duration); transition-timing-function: var(--timing); }
#product .prod .bg .pb{ height: 100%; /* border-radius: 20px; */ position: relative; overflow: hidden; }
#product .prod .bg img{ width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
#product .prod .bg i{ width: 35px; height: 35px; display: flex; flex-direction: column; justify-content: center; background: #000; border-radius: 50%; position: absolute; top: 20px; right: 20px; transition: background var(--duration); transition-timing-function: var(--timing); }
#product .prod .bg i::before{ content: ""; display: block; height: 14px; background: url("/kr/img/main/icon_arrow_white.svg") no-repeat center left 55% / contain; }
#product .prod .text{ width: 100%; padding: 20px 0; position: absolute; bottom: 0; left: 0; transition: padding var(--duration); transition-timing-function: var(--timing); }
#product .prod .text .box{ background: transparent; /* border-radius: 20px; */ padding: var(--ptb) 0; transition: background var(--duration) var(--timing), padding var(--duration) var(--timing); }
#product .prod .text .tit{ display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; transform: translateY(100%); transition: transform var(--duration); transition-timing-function: var(--timing); }
#product .prod .text .tit h6{ font-size: 4rem; font-weight: 600; color: #111; letter-spacing: -0.03em; }
#product .prod .text .tit span{ display: inline-block; background: #EEE; border-radius: 999px; font-family: var(--engFont); font-size: 16px; font-weight: 400; color: #888; padding: 7px 15px; }
#product .prod .text .content{ overflow: hidden; opacity: 0; transition: opacity var(--duration); }
#product .prod .text p{ width: calc((var(--inner) / 2) - (var(--plr) * 2) - 40px); height: 4.9998em; display: -webkit-box; font-size: 18px; font-weight: 300; color: #333; letter-spacing: -0.03em; line-height: 1.6666; text-overflow: ellipsis; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }

#product .prod.slick-nextAll{ transform: translateX(calc((100% - (var(--inner) / 4)) * -1)); }
#product .prod.slick-next{ transform: translateX(0); }

#product .prod.slick-prevAll{ transform: translateX(100%); }
#product .prod.slick-prev{ transform: translateX(calc(100% - ((var(--inner) / 4) - 40px))); }

#product .prod.slick-current{ transform: translateX(0); }
#product .prod.slick-current a{ width: 100%; }
#product .prod.slick-current .bg{ padding-bottom: 0; }
#product .prod.slick-current .bg i{ background: var(--mainColor); }
#product .prod.slick-current .text{ padding-inline: 20px; }
#product .prod.slick-current .text .box{ background: #FFF; padding: var(--ptb) var(--plr); }
#product .prod.slick-current .text .tit{ transform: translateY(0); }
#product .prod.slick-current .text .content{ opacity: 1; }

#product .prod.slick-now{ transform: translateX(0); }
#product .prod.slick-now a{ width: 100%; }
#product .prod.slick-now .bg{ padding-bottom: 0; }
#product .prod.slick-now .bg i{ background: var(--mainColor); }
#product .prod.slick-now .text{ padding-inline: 20px; }
#product .prod.slick-now .text .box{ background: #FFF; padding: var(--ptb) var(--plr); }
#product .prod.slick-now .text .tit{ transform: translateY(0); }
#product .prod.slick-now .text .content{ opacity: 1; }

#product .btns{ justify-content: center; margin-top: 30px; }

@media screen and (max-width: 1760px){
	#product{
	--inner: var(--vw);
	}
}

@media screen and (max-width: 1700px){
	#product{ padding: 120px 0; }
	#product .title-box{ margin-bottom: 70px; }

	#product .prod .bg{ height: 600px; }
	#product .prod .text .tit span{ padding: 5px 12px; }
}

@media screen and (max-width: 1600px){
	#product .prod .text{ padding-inline: 0; transition: padding var(--duration) var(--timing); }
	#product .prod .bg{ height: 650px; }

	#product .prod.slick-active .text,
	#product .prod.slick-now .text{ padding-inline: 20px; }
}

@media screen and (max-width: 1400px){
	#product{
		--ptb: 20px;
		--plr: 25px;
	}
	#product{ padding: 100px 0; }
	#product .title-box{ margin-bottom: 40px; }
	#product .inner{ max-width: 100%; }
	
	#product .prod{ width: calc((var(--vw) / 4) * 2.5); transform: unset !important; }
	#product .prod a{ width: 100%; margin: 0 !important; }
	#product .prod .bg{ height: 550px; padding-bottom: 0; }
	#product .prod .text{ padding: 15px !important; }
	#product .prod .text .box{ background: #FFF; padding: var(--ptb) var(--plr); }
	#product .prod .text .tit{ transform: translateY(0); }
	#product .prod .text .tit h6{ font-size: 3.8rem; }
	#product .prod .text .tit span{ font-size: 15px; }
	#product .prod .text p{ width: 100% !important; font-size: 17px; }
	#product .prod .text .content{ opacity: 1; }
}

@media screen and (max-width: 1280px){
	#product .prod .bg{ height: 500px; }
	#product .prod .text .tit h6{ font-size: 4.5rem; }
}

@media screen and (max-width: 1024px){
	#product .prod .bg{ height: 450px; }
}

@media screen and (max-width: 700px){
	#product .prod{ width: calc(var(--vw) - 40px); }
}




/* sustainability */
#sustainability{
	--inner: 1680px;
	--height: 100vh;
	--titH: 175px;
	--videoW: 760px;
	--txtP: 120px;
}
#sustainability{ position: relative; padding-top: 200vh; }
#sustainability .sticky{ position: sticky; top: 0; left: 0; }
#sustainability .inner{ max-width: 1760px; padding: 0 40px; margin: 0 auto; }
#sustainability .title-box{ height: var(--titH); text-align: unset; }

#sustainability .cover{  position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 1; }
#sustainability .cover .title-box h3{ display: inline-block; position: relative; top: 0; left: 50%; transform: translateX(-50%); transition: top 1s, left 1s, transform 1s; will-change: top, left, transform; }
#sustainability .cover .sticky{ height: var(--height); display: flex; flex-direction: column; }
#sustainability .cover .video{ clip-path: inset(0 calc(50% - (var(--videoW) / 2)) 0 calc(50% - (var(--videoW) / 2))); -webkit-clip-path: inset(0 calc(50% - (var(--videoW) / 2)) 0 calc(50% - (var(--videoW) / 2))); transition: clip-path 1s; will-change: clip-path; position: absolute; bottom: 0; left: 0; right: 0; pointer-events: none; }
#sustainability .cover .video div{ width: 100%; height: calc(var(--height) - var(--titH)); margin-left: 0; transition: width 1s, height 1s, margin 1s; will-change: width, height, margin; }
#sustainability .cover .video video{ width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: opacity var(--aosT); will-change: opacity; transform: translateZ(0); -webkit-transform: translateZ(0); backface-visibility: hidden; }

#sustainability .cover .text{ position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
#sustainability .cover .text .flex{ width: 50%; height: var(--height); display: flex; flex-direction: column; padding: var(--txtP); padding-left: 0; opacity: 0; transform: translateX(var(--aosP)); transition: opacity var(--aosT), transform var(--aosT); }
#sustainability .cover .text .top{ flex: 1 0 auto; }
#sustainability .cover .text .top .tab-menu{ display: none; }
#sustainability .cover .text .title-box h3{ top: 0 !important; left: 0 !important; transform: unset !important; opacity: 0; }
#sustainability .cover .text h6{ font-size: 36px; font-weight: 600; color: #222; letter-spacing: -0.03em; }
#sustainability .cover .text p{ font-size: 20px; font-weight: 300; color: #333; letter-spacing: -0.03em; line-height: 1.7; margin: 25px 0 40px; }
#sustainability .cover .text .viewmore{ max-width: 100%; width: max-content; }

#sustainability .cover .txt-wrap .slick-track{ display: flex; }
#sustainability .cover .txt{ float: unset; height: auto; display: flex; flex-direction: column; justify-content: flex-end; }

#sustainability .cover .tab-menu{ margin-top: 80px; }
#sustainability .cover .tab-menu ul{ display: flex; }
#sustainability .cover .tab-menu ul li{ width: 80px; height: 80px; }
#sustainability .cover .tab-menu ul li:not(:last-of-type){ margin-right: 20px; }
#sustainability .cover .tab-menu ul li button{ width: 100%; height: 100%; background: #F8F8F8; border: none; padding: 10px; transition: background 0.4s; }
#sustainability .cover .tab-menu ul li button i{ display: block; height: 100%; background: #666; mask: var(--icon) no-repeat center center / auto; transition: background 0.4s; }

#sustainability .cover .tab-menu ul li.on button{ background: var(--mainColor); }
#sustainability .cover .tab-menu ul li.on button i{ background: #FFF; }

#sustainability .container{ position: relative; padding-bottom: 100vh; pointer-events: none; }
#sustainability .container .sec{ height: var(--height); }
#sustainability .container .sec .bg{ position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
#sustainability .container .sec .sticky div{ display: block; width: calc(50% + 1px); height: var(--height); margin-left: auto; opacity: 0; transition: opacity var(--aosT); }
#sustainability .container .sec .sticky div img{ width: 100%; height: 100%; object-fit: cover; }
#sustainability .container .sec.active .bg div{ opacity: 1; }


#sustainability .cover.aos-animate .video{ clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); }
#sustainability .dummy.aos-animate + .cover .title-box h3{ top: var(--txtP); left: 0; transform: translateX(0); }
#sustainability .dummy.aos-animate + .cover .video div{ width: 50%; height: var(--height); margin-left: 50%; }
#sustainability .dummy.aos-animate + .cover .video.active video{ opacity: 0; }
#sustainability .dummy.aos-animate + .cover .text .flex{ opacity: 1; transform: translate(0, 0); transition-delay: var(--aosT); }


@media screen and (max-width: 1700px){
	#sustainability{
		--titH: 140px;
		--videoW: 700px;
		--txtP: 90px;
	}
	
	#sustainability .cover .text h6{ font-size: 32px; }
	#sustainability .cover .text p{ font-size: 19px; }
	
	#sustainability .cover .tab-menu{ margin-top: 60px; }
}

@media screen and (max-width: 1600px){
	#sustainability .cover .txt br{ display: none; }
}

@media screen and (max-width: 1280px){
	#sustainability{
		--titH: 120px;
		--videoW: 600px;
		--txtP: 60px;
	}
	
	#sustainability .cover .text h6{ font-size: 28px; }
	#sustainability .cover .text p{ font-size: 18px; }
	
	#sustainability .cover .tab-menu{ margin-top: 40px; }
}

@media screen and (max-width: 1200px){
	#sustainability{
		--videoW: 0;
		--txtP: 90px;
	}
	#sustainability{ padding-top: 0; }
	#sustainability .inner{ padding: 0 25px; }
	#sustainability .title-box{ height: auto; text-align: center; }
	#sustainability .title-box h3{ color: #FFF; }
	
	#sustainability .cover .sticky > .title-box{ display: none; }

	#sustainability .cover .video{ height: 100%; z-index: -1; }
	#sustainability .cover .video div{ width: 100%; height: 100%; margin-left: 0; }
	#sustainability .cover .video div::after{ content: ""; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.1); position: absolute; top: 0; left: 0; }
	
	#sustainability .cover .text{ position: relative; top: unset; right: unset; bottom: unset; left: unset; z-index: 100; }
	#sustainability .cover .text .title-box h3{ opacity: 1; }
	#sustainability .cover .text .flex{ width: 100%; justify-content: center; padding: var(--txtP) 0; transform: translateY(var(--aosP)); }
	#sustainability .cover .text .top{ flex: unset; }
	#sustainability .cover .text .top .tab-menu{ display: block; margin: 50px 0 80px; }
	#sustainability .cover .text .bottom .tab-menu{ display: none; }
	#sustainability .cover .text h6{ color: #FFF; }
	#sustainability .cover .text p{ color: #FFF; }
	#sustainability .cover .text .viewmore{ --lineColor: #FFF; color: #FFF !important; } 
	#sustainability .cover .text .viewmore i{ background: #FFF; }
	#sustainability .cover .text .viewmore i span,
	#sustainability .cover .text .viewmore i span::before,
	#sustainability .cover .text .viewmore i span::after{ background-image: url("/kr/img/main/icon_arrow_blue.svg"); }
	
	#sustainability .cover .tab-menu ul{ justify-content: center; }
	#sustainability .cover .tab-menu ul li button{ background: rgba(255, 255, 255, 0.1); }
	#sustainability .cover .tab-menu ul li button i{ background: #FFF; }
	
	#sustainability .container{ z-index: -1; }
	#sustainability .container .sec .sticky div{ width: 100%; }
	#sustainability .container .sec .sticky .bg::after{ content: ""; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.1); position: absolute; top: 0; left: 0; }
	
	#sustainability .dummy.aos-animate + .cover .video div{ width: 100%; height: 100%; margin-left: 0; }
}

@media screen and (max-width: 900px){	
	#sustainability .cover .text h6{ font-size: 24px; }
}


/* affiliate */
#affiliate{ background: #061E3F url("/kr/img/main/affiliate_bg.png") no-repeat center center / cover; padding: 160px 0; overflow: hidden; }
#affiliate .title-box{ display: flex; justify-content: space-between; align-items: flex-end; text-align: left; padding-bottom: 50px; }
#affiliate .title-box > *{ opacity: 0; transition: opacity var(--aosT), transform var(--aosT); }
#affiliate .title-box .text{ flex: 1 1 auto; min-width: 0; padding-right: 30px; transform: translateX(var(--aosM)); }
#affiliate .title-box h3{ color: #FFF; }
#affiliate .title-box p{ font-size: 22px; font-weight: 200; color: #FFF; letter-spacing: -0.03em; line-height: 1.6363; margin-top: 30px; }
#affiliate .title-box.aos-animate > *{ opacity: 1; transform: translate(0, 0) !important; }

#affiliate .tab-menu{ flex-shrink: 0; transform: translateX(var(--aosP)); }
#affiliate .tab-menu ul{ display: flex; }
#affiliate .tab-menu ul li:not(:last-of-type){ margin-right: 10px; }
#affiliate .tab-menu ul li button{ width: 220px; height: 60px; background: transparent; border: 2px solid rgba(255, 255, 255, 0.3); font-family: var(--baseFont); font-size: 19px; font-weight: 400; color: rgba(255, 255, 255, 0.3); text-stroke: 0.01em transparent; -webkit-text-stroke: 0.01em transparent; padding: 10px; }
#affiliate .tab-menu ul li.on button{ font-weight: 500; background: #FFF; color: #061E3F; text-stroke-color: #061E3F; -webkit-text-stroke-color: #061E3F; }
#affiliate .tab-content .tab:not(:first-of-type){ display: none; }

#affiliate .item-wrap .slick-list{ margin-right: -20px; }
#affiliate .item-wrap .slick-track{ display: flex; }
#affiliate .item{ float: unset; height: auto !important; padding-top: 10px; margin-right: 20px; }
#affiliate .item a{ height: 100%; display: flex; flex-direction: column; background: #FFF; padding: 50px; position: relative; z-index: 10; transform: translateY(0); transition: transform 0.4s; }
#affiliate .item .top{ flex: 1 0 auto; }
#affiliate .item .bg{ background: var(--mainColor); position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; opacity: 0; transition: opacity 0.4s; }
#affiliate .item .bg img{ width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
#affiliate .item .mark ul{ display: flex; flex-wrap: wrap; margin: -2px; }
#affiliate .item .mark ul li{ background: var(--mainColor); font-size: 16px; font-weight: 400; color: #FFF; text-stroke: 0.02em transparent; -webkit-text-stroke: 0.02em transparent; letter-spacing: -0.02em; line-height: 1; margin: 2px; padding: 7px 10px; transition: background 0.4s, color 0.4s, text-stroke-color 0.4s; }
#affiliate .item .logo{ height: 54px; background: var(--mainColor); mask: var(--mask) no-repeat center left / contain; -webkit-mask: var(--mask) no-repeat center left / contain; margin: 20px 0 40px; transition: background 0.4s; will-change: background; transform: translateZ(0); backface-visibility: hidden; -webkit-backface-visibility: hidden; }
#affiliate .item p{ font-size: 23px; font-weight: 500; color: #111; text-stroke: 0.01em #111; -webkit-text-stroke: 0.01em #111; letter-spacing: -0.03em; line-height: 1.6; transition: color 0.4s, text-stroke-color 0.4s; }

#affiliate .item.slick-current a{ transform: translateY(-10px); }

#affiliate .btns{ justify-content: center; margin-top: 60px; }
#affiliate .btns button{ border-color: #FFF; }
#affiliate .btns button i, 
#affiliate .btns button i::before, 
#affiliate .btns button i::after{ background-image: url("/kr/img/main/icon_arrow_white.svg"); }

@media screen and (hover: hover) and (pointer: fine){
	#affiliate .item.slick-current a{ transform: translateY(0); }
	
	#affiliate .item:hover a{ transform: translateY(-10px); }
	#affiliate .item:hover .bg{ opacity: 1; }
	#affiliate .item:hover .mark ul li{ background: #FFF; color: var(--mainColor); text-stroke-color: var(--mainColor); -webkit-text-stroke-color: var(--mainColor); }	
	#affiliate .item:hover .logo{ background: #FFF; }
	#affiliate .item:hover p{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
}

@media screen and (max-width: 1700px){
	#affiliate{ padding: 120px 0; }
	#affiliate .title-box{ padding-bottom: 35px; }
	#affiliate .title-box p{ font-size: 20px; margin-top: 20px; }

	#affiliate .tab-menu ul li button{ width: 180px; height: 55px; font-size: 18px;  }

	#affiliate .item a{ padding: 35px; }
	#affiliate .item .mark ul li{ font-size: 15px; padding: 5px 8px; }
	#affiliate .item .logo{ height: 47px; margin-bottom: 30px; }
	#affiliate .item p{ font-size: 21px; }
}

@media screen and (max-width: 1280px){
	#affiliate{ padding: 90px 0; }
	#affiliate .title-box{ padding-bottom: 35px; }
	#affiliate .title-box p{ font-size: 18px; margin-top: 15px; }

	#affiliate .tab-menu ul li button{ width: 160px; height: 50px; font-size: 17px;  }

	#affiliate .item a{ padding: 25px; }
	#affiliate .item .logo{ height: 43px; }
	#affiliate .item p{ font-size: 19px; }
}

@media screen and (max-width: 1024px){
	#affiliate .title-box{ flex-direction: column; text-align: center; align-items: center; }
	#affiliate .title-box .text{ padding-right: 0; padding-bottom: 25px; transform: translateY(var(--aosP)); }

	#affiliate .tab-menu{ transform: translateY(var(--aosP)); }
}



/* news */
#news{
	--width: 580px;
}
#news{ padding: 160px 0 200px; }
#news .title-box{ margin-bottom: 60px; }

#news .news-wrap{ width: calc(100% + ((var(--vw) - 100%) / 2)); }
#news .news-wrap .slick-list{ margin-right: -10px; }
#news .news{ width: var(--width); margin-right: 10px; transform: translateZ(0); -webkit-transform: translateZ(0); backface-visibility: hidden; }
#news .news a{ display: block; background: #F5F5F5; /* border-radius: 20px; */ padding: 60px; position: relative; z-index: 10; overflow: hidden; }
#news .news figure{ position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; clip-path: circle(0 at 50% 100%); -webkit-clip-path: circle(0 at 50% 100%); transition: clip-path 0.6s; transform: translateZ(0); -webkit-transform: translateZ(0); backface-visibility: hidden; }
#news .news figure img{ width: 100%; height: 100%; object-fit: cover; }
#news .news .category{ display: block; font-family: var(--engFont); font-size: 16px; font-weight: 600; color: #333; transition: color 0.6s; }
#news .news h6,
#news .news p{ display: -webkit-box; text-overflow: ellipsis; overflow: hidden; -webkit-box-orient: vertical; transition: color 0.6s; }
#news .news h6{ height: 2.857em; font-size: 28px; font-weight: 500; color: #111; letter-spacing: -0.03em; line-height: 1.4285; -webkit-line-clamp: 2; margin: 20px 0 30px; }
#news .news p{ height: 5.1em; font-size: 20px; font-weight: 300; color: #666; letter-spacing: -0.03em; line-height: 1.7; -webkit-line-clamp: 3; word-break: break-all; } 
#news .news .bottom{ display: flex; justify-content: space-between; align-items: center; margin-top: 40px; }
#news .news .bottom span{ display: inline-block; border: 1px solid #DDD; border-radius: 10px; font-family: var(--engFont); font-size: 16px; font-weight: 400; color: #888; line-height: 1; padding: 8px 15px; transition: border-color 0.6s, color 0.6s; }
#news .news .bottom i{ width: 35px; height: 35px; display: inline-flex; flex-direction: column; justify-content: center; background: var(--mainColor); border-radius: 50%; position: relative; overflow: hidden; transition: background 0.6s; }
#news .news .bottom i::before,
#news .news .bottom i::after{ content: ""; display: block; height: 14px; background-repeat: no-repeat; background-position: center left 55%; background-size: contain; transition: transform 0.6s; }
#news .news .bottom i::before{ background-image: url("/kr/img/main/icon_arrow_white.svg"); transform: translateX(0); }
#news .news .bottom i::after{ width: 100%; background-image: url("/kr/img/main/icon_arrow_blue.svg"); position: absolute; top: 50%; left: 0; transform: translate(-75%, -50%); }

#news .news.slick-current figure{ clip-path: circle(150% at 50% 100%); -webkit-clip-path: circle(150% at 50% 100%); }
#news .news.slick-current .category{ color: rgba(255, 255, 255, 0.5); }
#news .news.slick-current h6{ color: #FFF; }
#news .news.slick-current p{ color: #FFF; }
#news .news.slick-current .bottom span{ border-color: rgba(255, 255, 255, 0.2); color: #FFF; }
#news .news.slick-current .bottom i{ background: #FFF; }
#news .news.slick-current .bottom i::before{ transform: translateX(75%); }
#news .news.slick-current .bottom i::after{ transform: translate(0, -50%); }

#news .news.slick-now figure{ clip-path: circle(150% at 50% 100%); -webkit-clip-path: circle(150% at 50% 100%); }
#news .news.slick-now .category{ color: rgba(255, 255, 255, 0.5); }
#news .news.slick-now h6{ color: #FFF; }
#news .news.slick-now p{ color: #FFF; }
#news .news.slick-now .bottom span{ border-color: rgba(255, 255, 255, 0.2); color: #FFF; }
#news .news.slick-now .bottom i{ background: #FFF; }
#news .news.slick-now .bottom i::before{ transform: translateX(75%); }
#news .news.slick-now .bottom i::after{ transform: translate(0, -50%); }

#news .slide-info{ margin-top: 60px; }
#news .slide-info .flex{ display: flex; align-items: center; }
#news .slide-info .btns{ margin-right: 60px; }
#news .slide-info .bar{ width: 60px; background: #DDD; border-radius: 2px; margin: 0 20px; }
#news .slide-info .bar div{ width: 0; height: 2px; background: #000; border-radius: 2px; transform: translateX(0); }
#news .slide-info span{ display: inline-block; font-family: var(--engFont); font-size: 14px; font-weight: 500; color: #AAA; }
#news .slide-info .idx{ color: #333; }

@media screen and (hover: hover) and (pointer: fine){
	#news .news.slick-current figure{ clip-path: circle(0 at 50% 100%); -webkit-clip-path: circle(0 at 50% 100%); }
	#news .news.slick-current .category{ color: #333; }
	#news .news.slick-current h6{ color: #111; }
	#news .news.slick-current p{ color: #666; }
	#news .news.slick-current .bottom span{ border-color: #DDD; color: #888; }
	#news .news.slick-current .bottom i{ background: var(--mainColor); }
	#news .news.slick-current .bottom i::before{ transform: translateX(0); }
	#news .news.slick-current .bottom i::after{ transform: translate(-75%, -50%); }

	#news .news.slick-now figure{ clip-path: circle(0 at 50% 100%); -webkit-clip-path: circle(0 at 50% 100%); }
	#news .news.slick-now .category{ color: #333; }
	#news .news.slick-now h6{ color: #111; }
	#news .news.slick-now p{ color: #666; }
	#news .news.slick-now .bottom span{ border-color: #DDD; color: #888; }
	#news .news.slick-now .bottom i{ background: var(--mainColor); }


	#news .news:hover figure{ clip-path: circle(150% at 50% 100%); -webkit-clip-path: circle(150% at 50% 100%); }
	#news .news:hover .category{ color: rgba(255, 255, 255, 0.5); }
	#news .news:hover h6{ color: #FFF; }
	#news .news:hover p{ color: #FFF; }
	#news .news:hover .bottom span{ border-color: rgba(255, 255, 255, 0.2); color: #FFF; }
	#news .news:hover .bottom i{ background: #FFF; }
	#news .news:hover .bottom i::before{ transform: translateX(75%); }
	#news .news:hover .bottom i::after{ transform: translate(0, -50%); }
}

@media screen and (max-width: 1700px){
	#news{
		--width: 500px;
	}
	#news{ padding: 120px 0 150px; }
	#news .title-box{ margin-bottom: 40px; }
	
	#news .news a{ padding: 45px; }
	#news .news h6{ font-size: 26px; }
	#news .news p{ font-size: 19px; }
	
	#news .slide-info{ margin-top: 40px; }
	#news .slide-info .btns{ margin-right: 40px; }
}

@media screen and (max-width: 1280px){
	#news{
		--width: 450px;
	}
	#news{ padding: 90px 0 100px; }
	#news .title-box{ margin-bottom: 30px; }
	
	#news .news a{ padding: 35px; }
	#news .news h6{ font-size: 23px; margin: 15px 0 20px; }
	#news .news p{ font-size: 18px; }
	#news .news .bottom{ margin-top: 30px; } 	
	
	#news .slide-info{ margin-top: 30px; }
	#news .slide-info .btns{ margin-right: 30px; }
}

@media screen and (max-width: 1025px){
	#news{
		--width: 400px;
	}
	
	#news .news-wrap{ width: calc(100% + 40px); margin-left: -20px; }
	#news .news-wrap .slick-list{ margin-right: 0; }
	#news .news a{ padding: 30px; }
}