@charset "utf-8";
/*
[ 기준 색상 코드 ]
주조색(자주-변경X)
	배경 : #
	텍스트 : #
보조색(보라-기본색상)
	배경 : #
	텍스트 : #, light/#, deep/#
hover 연한 배경색 : #f6f6fc
line : #ddd
*/


/* 공통 : S */
/* 스크롤바 */
.scrollbar::-webkit-scrollbar { width: 6px; }
.scrollbar::-webkit-scrollbar-thumb { background: #ee7518; border-radius: 10px; }
.scrollbar::-webkit-scrollbar-track { background: #000; }

/* color */
.mcolor { color: #ff8c39; font-weight: 600; }
.scolor { color: #99eeff; font-weight: 600; }

/* heading */
h1 { font-size: 40px; font-weight: 700;}
h2 { font-size: 24px; font-weight: 600; line-height: 30px; }
h3 { font-size: 18px; font-weight: 400; line-height: 24px; }

:root { --app-height: 100%; }
html { font-size: 62.5%; overflow-x: hidden; }
body { height: 100%; font-weight: 400; font-family: 'Pretendard', 'Noto Sans CJK KR', 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif; }
a { transition: all .3s; color: #fff;  }
button { }
i { font-style: normal; }

.flex_center { display: flex; justify-content: center; }

/* wrap */
.wrap { position: relative; width: 100%; min-width: 320px; background: #0c0e14; color: #fff; word-break: keep-all; }
.container { display: flex; height: 100%; }
.contents { position: relative; width: 100%; height: 100%; overflow: hidden; }
.wrapper { position: relative; width: 100%; max-width: 1920px; margin: 0 auto; padding: 0 80px; }

/* header */
.header { position: fixed; z-index: 999999; width: 100%; min-width: 320px; height: 71px; border-bottom: 1px solid rgba(255,255,255,.2); transition: all 0.3s ease; }
.header.scrolled { background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header .wrapper { display: flex; justify-content: space-between; height: 100%; max-width: 100%; line-height: 70px; }
.logo { z-index: 99; }
.logo img { width: 120px; }

.header.wh { border-color: rgba(255, 255, 255, 0.3); }

/* gnb */
.gnb { display: flex; z-index: 99; }
.gnb li { position: relative; width: 200px; }

/* .gnb > li > a { border-bottom: 2px solid transparent; }
.gnb > li:hover > a { border-color: linear-gradient(90deg, rgba(253, 110, 3, 1) 0%,rgba(225, 179, 2, 1) 100%); } */

.gnb > li > a::after { content: ''; display: block; position: absolute; left: 0%; width: 100%; height: 3px; bottom: 1px; background: linear-gradient(90deg, rgba(253, 110, 3, 1) 0%,rgba(225, 179, 2, 1) 100%); transition: 0.7s; transform: scaleX(0); }
.gnb > li:hover > a::after { transform: scaleX(1); }

.gnb li > a { text-align: center; font-size: 20px; color: #fff;  }
.gnb > li > a { opacity: .8; }
.gnb > li:hover > a,
.gnb > li > a:hover { opacity: 1; }
.gnb > li > a.on { font-weight: 600; opacity: 1; }

.header.wh .gnb > li > a { color: #fff; }

.sub_gnb_bg { position: absolute; width: 100%; height: 340px; left: 0; top: 0; background: rgba(0, 0, 0, 0.8); opacity: 0; visibility: hidden; z-index: 9; }
.gnb .sub_gnb { display: none; padding-top: 16px; opacity: 0; visibility: hidden; }
.sub_gnb_bg.on,
.gnb .sub_gnb.on { display: inline-block; opacity: 1; visibility: visible; }
.gnb .sub_gnb li { text-align: center; }
.gnb .sub_gnb li a { font-size: 18px; line-height: 40px; color: rgba(255, 255, 255, 0.5); white-space: nowrap; }
.gnb .sub_gnb li a:hover { color: #fff; }
.gnb .sub_gnb li a.on { color: #ff8f3a; font-weight: 500; }



/* lang */
.h_r_wrap { display: flex; gap: 24px; }

.lang { display: flex; gap: 12px; }
.lang a { position: relative; color: #fff; font-size: 16px; font-weight: 300; opacity: .8; }
.lang a.change { color: #b2b2b2; }
.lang a.on { color: #ff9d52; font-weight: 700; opacity: 1; }
.lang a:hover { color: #fff; opacity: 1; }
.lang a:after { position: absolute; content: ''; width: 2px; height: 2px; top:50%; right: -8px; transform: translateY(-50%); background: rgba(0, 0, 0, 0.5); }
.lang a.change:after { background: #b2b2b2; }
.lang a:last-of-type:after { content: none; }

.header.wh .lang a { color: rgba(255, 255, 255, 0.5); }
.header.wh .lang a:after { background: rgba(255, 255, 255, 0.5); }

/* mobile */
.mobile_btn { display: none; }
.main .menu-trigger:hover span { opacity: 1; }
.menu-trigger,
.menu-trigger span { transition: all .5s; }
.menu-trigger {position: relative; width: 26px; height: 21px; }
.menu-trigger span { position: absolute; left: 0; width: 100%; height: 3px; background-color: #fff; border-radius: 4px; opacity: 0.7; }
/* .main .menu-trigger span { background-color: #fff; opacity: 0.7; } */
.menu-trigger span:nth-of-type(1) { top: 0; }
.menu-trigger span:nth-of-type(2) { top: 9px; }
.menu-trigger span:nth-of-type(3) { bottom: 0; }
.menu-trigger.active-2 span:nth-of-type(1) { -webkit-transform : translateY(9px) rotate(-315deg); transform : translateY(9px) rotate(-315deg); }
.menu-trigger.active-2 span:nth-of-type(2) { opacity : 0; }
.menu-trigger.active-2 span:nth-of-type(3) { -webkit-transform : translateY(-9px) rotate(315deg); transform : translateY(-9px) rotate(315deg); }

.mobile_menu { display: none; position: fixed; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.9); z-index: 999999; overflow: auto; text-align: center; }
.mobile_menu > ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 70px; padding: 0 40px; border-top: 1px solid #aaa; }
/* .mobile_menu > ul > li {border-bottom: 1px solid #525252;} */
.mobile_menu > ul > li > a {padding: 24px 0;font-size: 24px;color: #fff;font-weight: 700;}
.mobile_menu > ul > li > a.on,
.mobile_menu > ul > li > a:hover { color: #ff7700; }
.mobile_sub > li a { font-size: 18px; color: #8d8d8d; line-height: 28px; }
.mobile_sub > li a.on,
.mobile_sub > li a:hover { color: #fff; }

.mobile_menu .mobile_btn { position: absolute; right: 40px; }
.mobile_menu .mobile_btn span { background: rgba(255, 255, 255, 0.8) !important; }

/* footer */
.footer { position: relative; z-index: 9999; padding: 30px 0; background: #000; font-family: 'NotosansKR'; border-top: 1px solid #333; }
.footer .wrapper { max-width: 100%; }

.ft_top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.ft_list {  display: flex; gap: 20px; align-items: center; }
.ft_list a { position: relative; color: #777; font-size: 16px; font-weight: 500; }
.ft_list a:after { content: ''; position: absolute; top: 50%; right: -10px; transform: translateY(-45%); width: 1px; height: 65%; background: #6f6f6f; cursor: initial; }
.ft_list a:last-of-type:after { content: none; }
.ft_list a:hover { color: #e5e5e5; }
.ft_list a strong { color: #999; font-weight: 400; }
.ft_list a strong:hover { color: #e5e5e5; }
.sns { display: flex; gap: 10px; }
.sns a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: rgba(255,255,255,0.6); background: #444; border-radius: 50%; }
.sns a:hover { color: rgba(255,255,255,1); background: #666; }
.sns a i { font-size: 18px; }
.sns a strong { font-size: 20px; }

.r_info { display: flex; align-content: space-between; flex-wrap: wrap; gap: 30px; }
.ft_logo { width: 100%; }
.ft_logo img { height: 42px; filter: grayscale(100%); }

.ft_info { display: flex; justify-content: space-between; gap: 30px; }
.ft_cs { display: flex; flex-wrap: wrap; gap: 16px; font-size: 16px; }
.ft_cs span:first-of-type { padding-right: 16px; border-right: 1px solid #555; }
.ft_cs span em { color: #999; }

.address { font-size: 0; line-height: 24px; }
.address span { display: inline-block; width: calc(100% - 140px); font-size: 16px; color: #b2b2b2; line-height: 26px; }
.address em { display: inline-block; width: 140px; color: #777; font-size: 16px; font-weight: 500; vertical-align: top; }
.address p { margin-top: 40px; color: #777; font-size: 16px; }

/* btn */
.btn_wrap { display: flex; gap: 16px; flex-wrap: wrap; }
.btn_wrap.center { justify-content: center; }

.btn { display: inline-block; border-radius: 5px; text-align: center; transition: all .2s; }
.btn:hover { color: #777; background: #f6f6fc; }
.btn i { margin-left: 6px; }

.btn.wide { display: flex; justify-content: space-between; align-items: center; gap: 8px; min-width: 270px; padding: 14px 24px; font-size: 16px; font-weight: 400; border-radius: 50px; line-height: 20px; }
.btn.wide i { display: inline-block; margin-left: 8px; transition: transform 0.4s cubic-bezier(.4, 0, .2, 1); }
.btn.wide:hover i { transform: translateX(10px); }

.btn.wide.w100p { width: 100%; min-width: unset; margin-top: 80px; }

.btn.mid { min-width: 220px; padding: 12px 24px; font-size: 16px; }
.btn.mid i { font-size: 15px; }

.btn.lg { min-width: 180px; padding: 12px 24px; font-size: 18px; }
.btn.lg i { font-size: 16px; }

.btn.full { width: 100%; padding: 14px; font-size: 18px; font-weight: 400; }

.btn.round { border-radius: 50px; }

.btn.mcolor { background: #f4811f; color: #fff; }
.btn.mcolor:hover { background: #e76a00; }

.btn.wh_line { background: transparent; border: 1px solid #fff; color: #fff; }
.btn.wh_line:hover { color: #ff9c59; border-color: #ff8d3e; }

[class *="btn"].disable { opacity: 0.6; pointer-events: none; cursor: default; }


.btn01,
.btn02,
.btn03 { color: #fff; border: 1px solid #fff; position: relative; overflow: hidden; background: transparent; }
.btn01:hover,
.btn03:hover { border: 1px solid rgba(255, 129, 26, .6); color: #fff; background: transparent; }
.btn01::before,
.btn03::before { content: ''; position: absolute; left: 0; bottom: 0; z-index: -1; width: 100%; height: 100%; border-radius: 30px; background: transparent; transition: all 0.4s cubic-bezier(.5, .24, 0, 0); }

.btn01:hover::before { box-shadow: inset 300px 0px 0px rgba(255, 129, 26, .6); }

.btn02:hover { border: 1px solid #ff9044; color: #ff9c59; background: transparent; }

.btn02::before{ content: ''; position: absolute; top: 0; left: 0; display: block; width: 100%; height: 100%; z-index: -1; background-color: transparent; -webkit-transform: scaleX(.3); transform: scaleX(.3); opacity: 0; transition: all .3s }
.btn02:hover::before{ opacity: 1; background-color: rgba(255, 129, 26, .1); -webkit-transform: scaleX(1); transform: scaleX(1); transition: -webkit-transform .6s cubic-bezier(.08, .35, .13, 1.02), opacity .4s; transition: transform .6s cubic-bezier(.08, .35, .13, 1.02), opacity }

.btn03:hover { border-color: #30456b; }
.btn03:hover::before { box-shadow: inset 450px 0px 0px rgba(48, 68, 107, 1); }
.btn03.w100p:hover::before { box-shadow: inset 800px 0px 0px rgba(48, 68, 107, 1); }


/* tab */
.tab01 { display: flex; justify-content: center; width: 40%; margin: 0 auto; margin-bottom: 100px; background: rgba(255, 255, 255, .15); border-radius: 15px; }
.tab01 a { flex: 1; margin: 8px; padding: 16px; font-size: 18px; border-radius: 10px; opacity: .8; }
.tab01 a:hover { opacity: 1; }
.tab01 a.on { background: rgba(0, 0, 0, .4); font-weight: 700; opacity: 1; box-shadow: 0 0 8px rgba(255, 255, 255, 0.2), 0 0 0px rgba(255, 255, 255, 0), 0 0 20px rgba(255, 255, 255, 0.4); }

.tab02 { z-index: 99; display: flex; flex-wrap: wrap; justify-content: center; gap: 50px; position: absolute; top: 125px; left: 50%; transform: translateX(-50%); width: 100%; max-width: 60%; margin: 0 auto;background: #40a5b9; border-radius: 30px; }
.tab02 a { padding: 20px 0; font-size: 20px; opacity: .6; }
.tab02 a:hover { opacity: 1; }
.tab02 a.on { font-weight: 700; opacity: 1; }

.smartfarm .tab02 { position: sticky; top: 100px; left: 0; margin-bottom: -28px; transform: unset; }

.tab03 { width: 100%; }
.tab03 li a { padding: 18px 32px; border-radius: 30px 0 0 30px; font-size: 20px; font-weight: 300; opacity: .8; }
.tab03 li a:hover { font-weight: 600; opacity: 1; }
.tab03 li a.on { margin: 16px 0; background: linear-gradient(90deg,rgba(63, 164, 183, 1) 20%, rgba(63, 164, 183, 0) 100%); font-weight: 600; opacity: 1; }

.tab04 { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.tab04 a { min-width: 160px; padding: 16px 32px; font-size: 18px; opacity: .6; text-align: center; }
.tab04 a:hover { opacity: 1; }
.tab04 a.on { background: #40a5b9; font-weight: 700; opacity: 1; border-radius: 30px; }

.history .tab04 { position: sticky; top: 70px; z-index: 9; padding: 40px 0 24px; background: rgba(12, 14, 20, .4); backdrop-filter: blur(10px); }

/* hover */
.hover01 { position: relative; overflow: hidden; border: 1px solid transparent; }
.hover01::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: #ed8450; transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(.5, .24, 0, 1); }
.hover01::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: #ed8450; transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(.5, .24, 0, 1); }
.hover01:hover::before,
.hover01:hover::after { transform: scaleX(1); }
.hover01:hover { border-left: 1px solid #ed8450; border-right: 1px solid #ed8450; }


b.blue { color: #99eeff; font-weight: 700; }
/* 공통 : E */



/* 로그인 : S */
#login_wrap { display: flex; align-items: center; justify-content: center; height: 90vh; padding-top: 60px; }

#login_wrap .area { text-align: center; }

#login_wrap .btn_home { margin-bottom: 32px; font-size: 18px; opacity: .8; }
#login_wrap .btn_home i { margin-right: 6px; }

.login {}
.login h1 {}
.login h1 p { margin-bottom: 60px; }

.inp_login { display: grid; gap: 20px; margin-bottom: 32px; }
.inp_login label {}
.inp_login label input { width: calc(100% - 50px); padding: 16px 12px; background: rgba(255, 255, 255, .2); color: #fff; border: 0; border-radius: 5px; }
.inp_login span { display: inline-block; width: 50px; color: #fff; text-align: left; }

.login button {}
/* 로그인 : E */


/* responsive web - viewport none */
/* wide */
@media screen and (min-width: 1600px) {
}



/* PC */
@media screen and (min-width: 1280px) and (max-width: 1599px) {
}



/* Tablet */
@media screen and (max-width: 1279px){
	.wrapper { padding: 0 40px; }

	h1 { font-size: 32px; }
	h2 { font-size: 22px; line-height: 28px; }
	h3 { font-size: 16px; line-height: 20px; }

	.btn.lg { min-width: 160px; padding: 10px 24px; font-size: 16px; }
	.btn.lg i { font-size: 14px; }
	.btn.full { font-size: 16px; }
	.btn.wide { font-size: 15px; }
	.btn.wide.w100p { margin-top: 40px; }

	.tab02 { gap: 32px; max-width: 80%; }
	.tab02 a { padding: 16px 0; font-size: 18px; }
	.tab03 { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; width: auto; }
	.tab03 li a { padding: 16px 32px; font-size: 18px; }
	.tab03 li a.on { margin: 0; background: rgba(63, 164, 183, 1); font-weight: 600; opacity: 1; border-radius: 30px; }
	.tab04 a { min-width: 150px; padding: 12px 24px; }

	.gnb li { width: 160px; }
	.gnb li > a { font-size: 18px; }
	.sub_gnb li a { font-size: 16px; }
}



/* Tablet */
@media screen and (max-width: 1023px){
	.logo img { width: 100px; }

	.gnb { display: none; }
	.mobile_btn { display: block; margin-top: 24px; }

	.mobile_menu .gnb { display: block; }
	.mobile_menu > ul > li > a { font-size: 18px;}

	.sub_gnb { display: block; }
	.sub_gnb li a { padding: 10px; opacity: .8; }
	.sub_gnb li a:hover { opacity: 1; }

	.mobile_menu > ul > li:hover > a { color: #ff7700; }

	.tab01 { width: 100%; }
	.tab01 a { padding: 14px; font-size: 16px; }

	.career .sub_visual .tab01 { width: 80%; }
}



/* small Tablet */
@media screen and (max-width: 839px){
}



@media screen and (max-width: 768px){
	h1 { font-size: 26px; }
	h2 { font-size: 20px; }
	h3 { font-size: 15px; }
	
	.btn_wrap { gap: 10px; }
	.btn.mid { min-width: 200px; padding: 10px 16px; font-size: 15px; }
	.btn.mid i { font-size: 14px; }
	.btn.lg { min-width: auto; padding: 8px 24px; font-size: 15px; }
	.btn.full { font-size: 15px; }
	.btn.wide { padding: 12px 20px; font-size: 15px; }
	.btn.wide.w100p { margin-top: 24px; font-size: 15px; }

	.tab01 a { margin: 6px; padding: 12px; }
	.tab02 { gap: 24px; max-width: 90%; }
	.tab02 a { padding: 16px 0; font-size: 18px; }
	.tab03 li a { padding: 12px 24px; font-size: 16px; }
	.tab04 a { min-width: 135px; padding: 10px 20px; font-size: 16px; }

	.logo img { width: 80px; }

	/* footer */
	.ft_info { display: grid; }
	.ft_logo img { height: 32px; }
	.address em { width: 100px; }
	.address span { font-size: 15px; line-height: 22px; }
}



/* mobile */
@media screen and (max-width:480px){
	h1 { font-size: 22px; }
	h2 { font-size: 18px; line-height: 24px; }

	.btn.mid { font-size: 14px; }
	.btn.lg { padding: 6px 20px; font-size: 14px; }
	.btn.lg i { font-size: 13px; }
	.btn.full { padding: 10px; font-size: 14px; }
	.btn.wide { padding: 12px 20px; font-size: 14px; }
	.btn.wide.w100p { font-size: 14px; }

	.tab01 { margin-bottom: 60px; }
	.tab01 a { padding: 10px; font-size: 15px; }
	.tab02 { gap: 0 12px; }
	.tab02 a { padding: 12px 0; font-size: 15px; }
	.tab03 { display: grid; grid-template-columns: 1fr; }
	.tab04 a { min-width: unset; padding: 6px 20px; font-size: 15px; }

	.smartfarm .tab02 { top: 80px; }

	.history .tab04 { top: 51px; padding: 20px 0 10px; }

	.wrapper { padding: 0 20px; }

	.header { height: 51px; }
	.header .wrapper { line-height: 51px; }
	.logo img { width: 60px; }

	.mobile_menu > ul { margin-top: 51px; }

	.h_r_wrap { gap: 16px; }
	.lang { gap: 8px; }
	.lang a { font-size: 14px; }

	.sub_gnb li a { padding: 6px; }

	.mobile_btn { margin-top: 16px; }
	.menu-trigger { width: 20px; height: 16px; }
	.menu-trigger span { height: 2px; }
	.menu-trigger span:nth-of-type(2) { top: 7px; }

	/* footer */
	.ft_list a { font-size: 14px; }
	.sns a { width: 30px; height: 30px; }
	.sns a i { font-size: 14px; }
	.sns a strong { font-size: 17px; }
	.ft_logo img { height: 30px; }
	.ft_cs { gap: 8px; font-size: 14px; }
	.address em { display: block; width: auto; font-size: 15px; }
	.address span { width: 100%; font-size: 14px; }
	.address p { margin-top: 10px; font-size: 14px; }
}



/* small mobile */
@media screen and (max-width:320px){
}