@import "/include/fonts/pretendard/pretendard-subset.css";

/*브라우저 리셋*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
body{
	font-family: 'Pretendard';
	background-color: var(--color-bg);
	/*font-family: 'SUIT';*/
	color: var(--color-text)
}
:root{
	--nav-height :80px;
	--color-primary: #7599C0;
	--color-text: #262626;
	--color-black: #262626;
	--color-white: #ffffff;
	--color-darkGray: #55555;
	--color-gray: #aaaaaa;
	--color-bg: #F4F4F5;
	--fontSize-tag: 2rem;
	--fontSize-EL: 8.4rem;
	--fontSize-L : 4.8rem;
	--fontSize-ER : 3.8rem;
	--fontSize-R : 2.4rem;
	--fontSize-ES : 2rem;
	--fontSize-S : 1.8rem;
}
html, body{
	line-height: 1.3;
	font-size: 62.5%;
}
ul{ 
    list-style: none;
}
img{
    vertical-align: top;
    border: 0;
}
a{
    text-decoration: none;
	color: inherit;
}
input, button{
    /*font-family: 'Nanum Gothic', sans-serif;*/
    vertical-align: top;
    -webkit-appearance : none;
    -moz-appearance:none;
    appearance: none;
}
input:focus{
    outline: none;
}
button{
    cursor: pointer;
	border: 0;
	background-color: transparent;
	color: inherit;
}
h2{
	font-size: var(--fontSize-EL);
	font-family: 'Pretendard';
	font-weight: 900;
}
h3{
	font-size: var(--fontSize-ER);
	font-weight: 800;
}
h4{
	font-size: var(--fontSize-ER);
}
h5{
	font-size: var(--fontSize-R);
}
.mo,.ta{
    display: none;
}
.pc{
    display: block;
}

#wrap{
    min-width: 320px;
    overflow: hidden;
}





section{
    margin: 16vh 0;
}

.inner{
	max-width: 1920px;
	width: calc(100% - 80px);
	margin: 0 auto;
}

.layout_flex{
	display: flex;
}


.icon_chervon{
	background-color: var(--color-white);
	border-radius: 50%;
	width: 3.2rem;
	height: 3.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}
.icon_chervon i{
	color: var(--color-black);
	font-size: 14px;
}
/*swiper start*/
.swiper-button-next, .swiper-button-prev{
	color: var(--color-white);
}
.swiper-button-next{
	right: 5rem;
}
.swiper-button-prev{
	left: 5rem;
}
.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 18px;
}
/*swiper end*/
/*common end*/

.text-center {
	text-align: center;
}

#nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    /*background-color: rgba(0,0,0,0.4);*/
    z-index: 999;
	padding: 0 4rem;
	/*background-color: var(--color-white);*/
	transition: .2s;
}
#nav.active {
	background-color: #fff;
}

#nav.active .gnb ul li {
	color: var(--color-black);
}

#nav.active .gnb ul li:hover {
	color: var(--color-primary);
}


#nav .cont_wrap{
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.logo{
    height: 100%;
}
.logo a{
    height: 100%;
    line-height: var(--nav-height);
    color: var(--nav-color);
    /*font-size: 24px;*/
    font-weight: 600;
    letter-spacing: 1px;
	width: clamp(84px, 26vw, 140px);
	display: flex;
}
.logo a img{
	width: 100%;
	object-fit: contain;
}
.open_mb{
	background: transparent;
	border: none;
}
.open_mb i{
	font-size: 18px;
	color: #ffffff;
}
.gnb{
    /*position: absolute;*/
    /*right: 250px;*/
}
.gnb > ul{
    display: flex;
    justify-content: left;
}
.gnb > ul> li {
    position: relative;
    height: 100%;
    padding: 0 40px;
    display: block;
	color: var(--color-white);
	position: relative;
	transition: 0.12s;
}
.gnb > ul> li:hover {
	color: var(--color-primary);
}
.gnb > ul> li:hover::after {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--color-primary);
	position: absolute;
	left: 20%;
	top: 30%;
	transition: 0.12s;
}
.gnb > ul > li > a{
    display: block;
    height: 100%;
    line-height: var(--nav-height);
	white-space: nowrap;
    font-size: var(--fontSize-ES);
    color: var(--nav-color);
    font-weight: 600;
}

.gnb  ul li a:last-child {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	opacity: 0;
}
/*.sub_gnb{*/
/*    position: absolute;*/
/*    top: var(--nav-height);*/
/*    left: 0;*/
/*    display: none;*/
/*    width: 100%;*/
/*    padding-top: 20px;*/
/*    text-align: center;*/
/*}*/
.sub_gnb ul li a{
    font-size: 16px;
    line-height: 35px;
    color: var(--nav-color);
    font-weight: 400;
    letter-spacing: 1px;
}
.sub_gnb ul li a:hover{
    font-weight: 600;
}
/*.sub_bg{*/
/*    display: none;*/
/*    width: 100%;*/
/*    height: 200px;*/
/*    background-color: rgba(0,0,0,0.4);*/
/*    border-top: 1px solid rgba(244,244,244,0.4);*/
/*}*/
/*.sub_bg.active{*/
/*    background-color: #fff;*/
/*    border-bottom: 1px solid #222;*/
/*}*/

.nav_icon_wrap{
    height: 100%;
    width: auto;
	display: none;
}
.search{
    width: 40px;
    height: 40px;
    margin-top: 20px;
    border-radius: 20px;
    transition: width 0.3s ease-in-out;
    background-image: url("/include/img/design_03_old/icon_search.png");
    background-repeat: no-repeat;
    background-size: auto 25px;
    background-position: right 10px center;
    overflow: hidden;
}
.search:hover{
    width: 210px;
    border: 1px solid var(--nav-color);
}
.search input{
    height: 100%;
    width: 100%;
    background-color: transparent;
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    cursor: pointer;
    border: 0;
}

/* 언어 전환 버튼 */
#lang-switcher {
	display: flex;
	align-items: center;
	gap: 8px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
}

#lang-switcher button {
	padding: 6px 12px;
	border: none;
	background-color: #007bff;
	color: white !important;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s;
	height: 27px;
}

#lang-switcher button:hover {
	background-color: #0056b3;
}

/* 기본: 영어 숨김 */
.lang-en { display: none; }

#wrap_in{
    width: 100%;
}
.scroll-section{
	display: flex;
	align-items: center;
}

#main_visual {
	margin: 0;
}

#main_visual .video {
	width: 100%;
	height: 100vh;
}

#main_visual .video video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}





/*----- sec_01 -----*/
#sec_01 .inner {
	display: flex;
	justify-content: space-between;
	gap: 3rem;
}

#sec_01 .left {
	width: 40%;
}

#sec_01 .left h3 {
	font-size: var(--fontSize-L);
}

#sec_01 .left a {
	display: inline-block;
	margin-top: 12rem;
}

#sec_01 .left .btn {
	padding: 0 4rem;
	height: 6rem;
	border: 1px solid var(--color-black);
	border-radius: 50px;
	font-size: var(--fontSize-S);
	color: var(--color-black);
	font-weight: 500;
	transition: 0.17s ease-in-out;
}

#sec_01 .left a:hover .btn {
	border: 1px solid var(--color-primary);
	background-color: var(--color-primary);
	color: var(--color-white);
}

#sec_01 .left p {
	margin-top: 4rem;
	font-size: var(--fontSize-R);
}

#sec_01 .video {
	overflow: hidden;
	width: 60%;
	border-radius: 2rem;
}

#sec_01 .video video {
	object-fit: cover;
	width: 100%;
	/*height: 60vw;*/
}

/* hero */
#hero{
	margin-bottom: 0;
	margin-top: 9vh;
}
#hero .cont_wrap .inner{
	display: flex;
	justify-content: space-between;
	padding: 10vh 3vw;
	align-items: center;
}
#hero h2{
	font-weight: 900;
}
#hero h4{
	font-weight: 700;
	margin-top: 3.2rem;
	word-break: keep-all;
}
#hero .cta_area{
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
}
#hero .cta_area button{
	height: 20rem;
	width: 30vw;
	padding: 3rem;
	color: var(--color-white);
	min-width: 300px;
}
#hero .cta_area button a{
	height: 100%;
	display: flex;
	flex-direction: column;
}
#hero .cta_area button hr{
	color: var(--color-white);
}
#hero .cta_area button p{
	margin-top: auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--fontSize-S);
}
#hero .cta_area button:hover .icon_chervon{
	transform: translateX(10px);
}
#hero .cta_area button:hover .icon_chervon i{
	color: var(--color-primary)
}
#hero .cta_area .btn_view_prd{
	background-color: var(--color-primary);
}
#hero .cta_area .btn_cstm_center{
	background-color: var(--color-text);
}
.video_wrap{
	display: flex;
}
.video_wrap video{
	width: 50%;
}
/*hero section end*/
#sec_vision{
	background-color: var(--color-black);
	padding: 10vw 8rem;
	margin: 0;
}
.tag_title{
	color: var(--color-primary);
	margin-bottom: 18px;
	font-size: var(--fontSize-tag);
	display: block;
	font-weight: 800;
	word-break: keep-all;
}
#sec_vision .tag_title{
	text-align: center;
}
#sec_vision h3{
	color: var(--color-white);
	text-align: center;
	word-break: keep-all;
	font-weight: 400;
}

/* vision section end */


#sec_product .cont_wrap{
	margin-bottom: 4.8rem;
}
#sec_product .tag_title{
	text-align: end;
}
#sec_product h3{
	text-align: end;
	margin-bottom: 1.8rem;
}
#sec_product .cont_wrap p{
	font-size: 1.8rem;
	margin-bottom: 3rem;
	text-align: end;
	word-break: keep-all;
}
#sec_product .slide_wrap{
	position: relative;
	width: 50%;
	height: 60rem;
}
#sec_product .slide_wrap .swiper{
	height: 100%;
}
#sec_product .slide_wrap figure{
	width: 100%;
	height: 100%;
	position: relative;
}
#sec_product .slide_wrap figure::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
#sec_product .slide_wrap figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sec_product .slide_wrap .text_area p{
	font-size: var(--fontSize-S);
}
#sec_product .slide_wrap .slide_cont{
	display: flex;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 5rem 11rem;
	width: 100%;
	color: var(--color-white);
	justify-content: space-between;
	align-items: end;
}
#sec_product .slide_wrap .slide_cont .text_area h6{
	font-size: var(--fontSize-L);
	margin-bottom: 18px;
}
#sec_product .slide_wrap .slide_cont .btn_more{
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: var(--fontSize-S);
}
#sec_product .slide_wrap .swiper-slide{
	cursor: pointer;
}
#sec_product .slide_wrap .swiper-slide:hover .icon_chervon{
	transform: translateX(10px);
	background-color: var(--color-white);
}
#sec_product .slide_wrap .swiper-slide:hover .icon_chervon i{
	color: var(--color-black);
}
#sec_product .slide_wrap .slide_cont .icon_chervon{
	background-color: var(--color-primary);
}
#sec_product .slide_wrap .slide_cont .icon_chervon i{
	color: var(--color-white);
}
#sec_product .list_wrap{
	width: 50%;
}
#sec_product .list_wrap ul{
	height: 100%;
}
#sec_product .list_wrap li{
	height: 50%;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 6rem;
	background-color: var(--color-black);
	color: var(--color-white);
}
#sec_product .list_wrap li p{
	text-align: start;
	font-size: var(--fontSize-R);
	font-weight: 400;
	margin-bottom: 1.8rem;
}
#sec_product .list_wrap li p span{
	color: var(--color-primary);
}
#sec_product .list_wrap li h5{
	font-size: var(--fontSize-ER);
	font-weight: 400;
}
#sec_product .list_wrap li.active{
	background-color: #373737;
}
/* product section end */


#sec_value .item_wrap {
	display: flex;
	gap: 3rem;
}
#sec_value .item_wrap .item {
	width: 25%;
	height: 24vw;
}

#sec_value .item_wrap .item .card {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	transform: perspective(800px);
	transition: transform 0.3s;
}

#sec_value .item_wrap .item:hover .card {
	transform: rotateY(180deg);
}

#sec_value .item_wrap .item .card .front,
#sec_value .item_wrap .item .card .back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
}

#sec_value .item_wrap .item .card .front .text {
	font-size: 3.2rem;
	font-weight: 700;
}

#sec_value .item_wrap .item .card .back {
	border-radius: 20px;
	background-color: var(--color-primary);
	color: var(--color-white);
	transform: rotateY(180deg);
}

#sec_value .item_wrap .item .card .back .text {
	width: 100%;
	height: 100%;
	padding: 3rem;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(12px);
}

#sec_value .item_wrap .item .card .back .text p {
	font-size: 3.2rem;
	font-weight: 700;
}

#sec_value .item_wrap .item .card .back .text span {
	display: inline-block;
	margin-top: 12px;
	font-size: 2.4rem;
}

#sec_value .item_wrap .item .image {
	border-radius: 2rem;
	overflow: hidden;
	width: 100%;
	height: 100%;
	position: relative;
}

#sec_value .item_wrap .item .image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#sec_value .item_wrap .item .image .text {
	width: 100%;
	height: 100%;
	padding: 3rem;
	background-color: rgba(0, 0, 0, 0.4);
	color: var(--color-white);
	position: absolute;
	left: 0;
	top: 0;
}







#sec_value .tag_title{
	text-align: center;
}
#sec_value h3{
	font-size: var(--fontSize-L);
	text-align: center;
	margin-bottom: 4.8rem;
}
#sec_value br{
	display: none;
}
#sec_value .grid_wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0 auto;
}
#sec_value .grid_item {
	background: var(--color-white);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/*aspect-ratio:1;*/
}
#sec_value .grid_item.text{
	padding: 3rem;
}
#sec_value .grid_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#sec_value .grid_item .title{
	font-size: var(--fontSize-R);
	font-weight: 600;
	margin-bottom: 1rem
}
#sec_value .grid_item .desc{
	font-size: var(--fontSize-S);
	color: var(--color-gray);
}
#sec_value .grid_item hr{
	background: var(--color-primary);
	height:2px;
	border:0;
}
/* value section end */

#sec_process{
	margin: 15vw 0;
}
#sec_process .cont_wrap .inner{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#sec_process .cont_wrap h3{
	font-size: var(--fontSize-L);
	margin-bottom: 3.2rem;
}
#sec_process .cont_wrap p{
	font-size: var(--fontSize-S);
	color: #555555;
}
#sec_process .slide_wrap{
	width: 70%;
}
#sec_process .swiper-slide{
	aspect-ratio: 1.5;
	position: relative;
}
#sec_process .swiper-slide figure{
	width: 100%;
	height: 100%;
}
#sec_process .swiper-slide-active figure{
	position: relative;
}
#sec_process .swiper-slide-active figure::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--color-primary) 100%);
}
#sec_process .swiper-slide-active .slide_cont{
	display: block;
}
#sec_process .swiper-slide figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sec_process .slide_cont{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}
#sec_process .layout_flex{
	justify-content: space-between;
	align-items: center;
}
#sec_process .slide_cont .text_area{
	width: 100%;
	padding: 3rem;
	font-size: var(--fontSize-L);
	color: var(--color-white);
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
}
#sec_process .slide_cont .text_area span{
	font-weight: 800;
}
#sec_process .slide_cont .text_area p{
	font-size: var(--fontSize-R);
	font-weight: 600;
}
/* process section end */


/* footer */
footer{
    position: relative;
    z-index: 99;
    background-color: var(--color-black);
	padding: 0 8rem;
}
.footer_top {
	align-items: center;
	padding: 6.4rem 0;
	border-bottom: 1px solid rgba(244, 244, 245, 0.2);
}
footer .logo{
	height: 8rem;
}
.footer_top p{
	margin-top: 0;
	color: var(--color-white);
	font-size: var(--fontSize-ER);
}
.footer_bottom{
	padding: 6.4rem 0;
	color: #aaaaaa;
	font-size: var(--fontSize-S);
}
.footer_bottom .half{
	width: 50%;
}
.footer_right{
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 1rem;
}
.footer_info{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer_info li:last-child {
	display: flex;
	gap: 2rem;
}
.footer_menu{
	display: flex;
	gap: 3rem;
	align-items: center;
}
.footer_menu li {
	padding: 20px 0;
}

.footer_menu li a {
	transition: 0.2s;
}

.footer_menu li:hover a {
	color: var(--color-white);
}
/* end */


@media screen and (max-width:1500px){
	html, body{
		font-size: 58%;
	}
	:root{
		--fontSize-EL: 6.4rem;
		--fontSize-L: 3.8rem;
		--fontSize-ER: 3.2rem;
		--fontSize-R: 2rem;
		--fontSize-S: 1.6rem;
	}
	#sec_product .slide_wrap .slide_cont{
		padding: 4vw;
	}
	#sec_product .list_wrap li{
		padding: 4rem;
	}
	.gnb > ul> li{
		padding: 0 25px;
	}
}
@media screen and (max-width:1440px){
	html, body{
		font-size: 56%;
	}
	.gnb > ul> li{
		padding: 0 25px;
	}
	#hero .cta_area button{
		height: 15vh;
		min-height: 15rem;
	}
}
@media screen and (max-width:1280px){
	#hero .cta_area button{
		width: 20vw;
	}
}

@media screen and (max-width:1240px){
	section {
		margin: 10vh 0;
	}

    :root{
        --nav-height:60px;
    }
    .pc,.mo{
        display: none;
    }
    .ta{
		cursor: pointer;
        display: block;
    }
    .cont_wrap{
        padding: 0;
    }
    .title{
        font-size: 42px;
    }


    /* gnb start */
    #nav{
        width: 100vw;
    }
    .logo a{
        font-size: 22px;
    }
    .gnb {
        /*display: none;*/
        position: absolute;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        transition: right 0.65s ease-out;
        background-color: var(--color-black);
    }
    .gnb.on{
		/*display: block;*/
        right: 0;
		box-shadow: -30px 0 60px rgba(0, 0, 0, 0.2);
    }
    .gnb .close{
        width: 40px;
        height: 60px;
		margin-right: 4rem;
        /*margin: 0 24px 40px auto;*/
		margin-left: auto;
        background-image: url("/include/img/design_03_old/icon_close.png");
        background-repeat: no-repeat;
        background-size: auto 20px;
        background-position: right center;
    }

	.gnb .close svg {
		width: 100%;
		height: 100%;
	}

	.gnb .close svg path {
		stroke: var(--color-white);
	}
    .gnb > ul{
        display: block;
    }
    .gnb > ul > li {
		color: var(--color-white);
		font-size: var(--fontSize-ER);
		font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
	.gnb > ul > li:hover {
		color: rgba(255, 255, 255, 0.5);
	}
	.gnb > ul > li:hover::after {
		content: none;
	}

	.footer_info li:last-child {
		flex-direction: column;
		gap: 1rem;
	}

	#nav.active .gnb > ul > li > a{
		color: #fff;
	}

	.s2_cont{
		grid-template-columns: 1fr 1fr;
	}

    .sub_gnb{
        display: none;
        position: initial;
        padding-top: 0;
        padding-left: 20px;
        text-align: left;
    }
    .nav_icon_wrap{
        display: flex;
    }
    .search{
        width: 40px;
        margin-top: 10px;
    }
    .search:hover{
        width: 40px;
        border: 0;
    }
    .search.on{
        width: 210px;
        border: 1px solid #fff;
    }
    .menu {
        width: 30px;
        height: 100%;
        margin-left: 10px;
        /*background-image: url("/include/img/design_03_old/icon_menu.png");*/
        background-repeat: no-repeat;
        background-size: auto 20px;
        background-position: right center;
    }
	.menu svg {
		width: 100%;
		height: 100%;
	}

	.menu svg path {
		stroke: var(--color-white);
	}

	.menu.scrolled svg path {
		stroke: var(--color-black);
		/*background-image: url('/include/img/design_03_old/hamburger.png');*/
	}

	#nav.active .menu{
		/*background-image: url("/include/img/design_03/icon_menu_black.png");*/
		background-size: auto 27px;
	}



	/* -----Value Creation----- */
	#sec_value .item_wrap .item .card .front .text,
	#sec_value .item_wrap .item .card .back .text p {
		font-size: 2.4rem;
	}

	#sec_value .item_wrap .item .card .back .text span {
		font-size: var(--fontSize-R);
	}




    /* sect 3 */
    #sect3 .title{
        margin-bottom: 40px;
    }
    .title_cont{
        width: 80%;
        margin: 0 auto 80px;
        font-size: 18px;
    }
    /* sect4 */
    #sect4 .cont_wrap div{
        font-size: 36px;
        padding-left: 50px;
        height: 250px;
        line-height: 250px;
    }
    #sect4 .cont_wrap div:after{
        background-size: 80%;
    }
    .ft_02{
        margin-left: 0;
        
    }
}
@media screen and (max-width:980px){
	.inner{
		width: calc(100% - 30px);
	}
	.cont_wrap{
		padding: 0;
	}
	.swiper-button-next{
		right: 3rem;
	}
	.swiper-button-prev{
		left: 3rem;
	}

	#main_visual .video {
		height: auto;
	}

	/* -----Value Creation----- */
	#sec_01 .inner {
		flex-direction: column;
	}
	#sec_01 .inner .left,
	#sec_01 .inner .video {
		width: 100%;
	}

	#sec_01 .inner .left .text {
		text-align: center;
	}

	#sec_01 .left p {
		margin-top: 1.6rem;
	}

	#sec_01 .inner .left .text p br {
		display: none;
	}

	#sec_01 .inner .left a {
		display: none;
	}

	/* -----Value Creation----- */
	#sec_value h3 {
		margin-bottom: 1.6rem;
	}
	#sec_value .item_wrap {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		grid-auto-rows: minmax(100px, auto);
	}

	#sec_value .item_wrap .item {
		width: 100%;
	}

	#sec_product .slide_wrap .slide_cont{
		flex-direction: column;
		align-items: start;
		gap: 1.8rem;
	}

	#sec_process .cont_wrap h3 {
		margin-bottom: 0;
	}
	#sec_process .cont_wrap p {
		margin-top: 1.6rem;
	}

	#sec_process .layout_flex {
		flex-direction: column;
		align-items: center;
	}

	#sec_process .cont_wrap .inner {
		align-items: center;
		margin-bottom: 2.4rem;
	}

	#sec_process .cont_wrap p {
		text-align: center;
	}

	#sec_process .slide_wrap {
		width: 100%;
	}
}
@media screen and (max-width:860px){
	section {
		margin: 5vh 0;
	}


	#hero .cont_wrap .inner{
		display: block;
		padding: 10vh 0;
	}
	#hero h4{
		margin-top: 1.8rem;
		font-weight: 600;
	}
	#hero .cont_wrap .text_area{
		margin-bottom: 3.2rem;
		text-align: center;
	}
	#hero .cta_area{
		gap: 1.8rem;
		flex-direction: row;
	}
	#hero .cta_area button{
		width: 50%;
		min-width: auto;
	}

	#sec_product .layout_flex{
		flex-direction: column;
	}
	#sec_product .slide_wrap{
		width: 100%;
	}
	#sec_product .slide_wrap{
		height: 40rem;
	}
	#sec_product .list_wrap{
		width: 100%;
		order: -1;
	}
	#sec_product .list_wrap li h5{
		font-size: var(--fontSize-R);
	}
	#sec_value .grid_item.text{
		border-bottom: 1px solid #dddddd;
	}
	#sec_value .grid_wrap{
		grid-template-columns: repeat(2, 1fr);
	}
	/*#sec_process .layout_flex{*/
	/*	flex-direction: column;*/
	/*	align-items: center;*/
	/*}*/
	/*#sec_process .cont_wrap .inner{*/
	/*	align-items: center;;*/
	/*	margin-bottom: 2.4rem;*/
	/*}*/
	/*#sec_process .cont_wrap p{*/
	/*	text-align: center;*/
	/*}*/
	.tag_title{
		text-align: center;
	}
	#sec_process .slide_cont .text_area{
		padding: 1.5rem;
		gap: 8px;
	}
	/*#sec_process .slide_wrap {*/
	/*	width: 100%;*/
	/*}*/
	#sec_process .swiper-slide{
		aspect-ratio: 1;
	}
	footer {
		padding: 0;
	}
	footer .inner {
		position: relative;
	}

	.footer_bottom .half{
		width: 100%;
	}
	.footer_top{
		padding: 3rem;
	}
	.footer_top p {
		display: none;
	}
	.footer_bottom{
		padding: 3rem;
		flex-direction: column;
		gap: 20px;
	}
	.footer_menu {
		position: absolute;
		right: 0;
		top: calc(100% - 249px - 56px);
	}
	.footer_right{
		align-items: start;
	}
	.footer_menu li{
		padding: 0;
		margin-right: 18px;
	}
	footer .logo{
		height: 40px;
	}
	.footer_top p{
		font-size: 1.8rem;
	}
}

@media screen and (max-width:560px) {
	html, body{
		font-size: 42.5%;
	}
	section{
		margin: 3vh 0;
	}

	#nav {
		height: 50px;
	}

	.gnb {
		width: 80%;
	}

	.gnb > ul > li > a {
		font-size: var(--fontSize-L);
	}

	#hero .cont_wrap .inner{
		padding: 5rem 0;
	}
	#hero h4 br{
		display: none;
	}
	#hero .cta_area{
		gap: 0;
	}
	#sec_vision{
		padding: 3rem;
	}

	#sec_product .tag_title,
	#sec_product h3,
	#sec_product .cont_wrap p{
		text-align: center;
	}

	#sec_01 .left h3 {
		margin-bottom: 8px;
	}

	#sec_01 .left p {
		margin-top: 0;
	}


	#sec_product .slide_wrap .slide_cont .text_area h6{
		font-size: 14px;
	}
	#sec_product .slide_wrap .text_area p br{
		display: none;
	}
	.swiper-button-next, .swiper-button-prev{
		display: none;
	}
	#sec_product .slide_wrap{
		height:30rem;
	}
	#sec_product .list_wrap li p{
		font-size: 11px;
	}
	#sec_product .slide_wrap .slide_cont .text_area h6{
		margin-bottom: 8px;
	}
	#sec_product .list_wrap li{
		padding: 2vw;
	}
	#sec_value h3 br{
		display: block;
	}
	#sec_product .list_wrap li{
		padding: 18px;
	}
	.icon_chervon i{
		font-size: 1.1rem;
	}
	#sec_value h3 {
		margin-bottom: 8px;
	}
	#sec_value .grid_item .desc{
		display: none;
	}
	#sec_value .grid_item .title{
		margin-bottom: 0;
	}
	#sec_value .grid_item.text{
		padding: 10px 12px;
	}
	#sec_value .grid_item hr{
		height: 1px;
	}
	#sec_process .cont_wrap h3{
		margin-bottom: 8px;
	}
	.tag_title{
		margin-bottom: 8px;
	}
	:root {
		--fontSize-EL: 4.8rem;
		--fontSize-L: 3.2rem;
		--fontSize-ER: 2rem;
		--fontSize-R: 1.6rem;
		--fontSize-S: 1.4rem;
	}
	.footer_top{
		padding: 2rem 0;
	}
	.footer_bottom{
		padding: 2rem 0;
		font-size: 11px;
	}
	.footer_menu {
		display: none;
	}
	footer .logo{
		height: 30px;
	}
}

@media screen and (max-width:360px) {
	.tag_title {
		font-size: var(--fontSize-R);
		margin-bottom: 4px;
	}

	#sec_01 .inner {
		gap: 0;
	}
	#sec_01 .left h3,
	#sec_process .cont_wrap h3 {
		font-size: var(--fontSize-ER);
	}
	#sec_01 .inner .left .text p {
		display: none;
	}

	#sec_value h3 {
		font-size: var(--fontSize-ER);
	}

	#sec_value .item_wrap {
		display: flex;
		flex-direction: column;
	}
}


