/*브라우저 리셋*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
body, select{
    font-family: 'Inter', sans-serif,'Nanum Gothic', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #222;
}
div{
    box-sizing: border-box;
}
ul{ 
    list-style: none;
}
img{
    vertical-align: top;
    border: 0;
}
a{
    text-decoration: none;
}
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;
}
.mo,.ta{
    display: none;
}
.pc{
    display: block;
}

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

:root{
    --nav-height :80px;
    --nav-color :#fff;
}
#nav.active{
    --nav-color:#222;
    border-bottom: 1px solid #222;
}

section{
    margin: 16vh 0;
}
.cont_wrap{
    width: 1320px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.title{
    font-size: 64px;
    line-height: 64px;
    text-align: center;
    margin-bottom: 5vh;
}



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

#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;

}
.gnb >ul> li> a{
    display: block;
    height: 100%;
    line-height: var(--nav-height);
    font-size: 18px;
    color: var(--nav-color);
    font-weight: 500;
}
.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;
}
.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/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 {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
}

#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;
}

/* mainslide */
#main_slide{
    position: relative;
    /*height: 850px;*/
	height: 100vh;
    width: 100%;
    overflow: hidden;
	margin: auto;
	/*background-image: url("/include/img/design_03/main_slide.jpg");*/
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	animation: bgZoom 1s ease-in-out;
	transition: all 0.8s ease-in-out;
	will-change: transform, opacity;
	transform: translateZ(0); /* 강제 GPU 가속 */
}
video{
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	object-fit: cover;
	z-index: -1;

}
#main_slide::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #00000040;
}
@keyframes bgZoom {
	0% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1.0);
	}
}
/*#main_slide figure{*/
/*	width: 100%;*/
/*}*/
/*#main_slide img{*/
/*	object-fit: cover;*/
/*	width: 100%;*/
/*	filter: brightness(0.5);*/
/*}*/

@media screen and (min-width: 2501px){
	/*#main_slide{*/
	/*	background-image: url("/include/img/design_03/main_slide.jpg");*/
	/*	background-repeat: no-repeat;*/
	/*	background-size: cover;*/
	/*	background-position: center;*/
	/*}*/

}
@media screen and (max-width: 2500px){


}
#main_slide .cont_wrap{
	position: relative;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
    /*height: 100%;*/
    z-index: 5;
	line-height: 1.5;
	color: aliceblue;
	word-break: keep-all;
	animation: fadeInUp 1.5s ease forwards;
	animation-delay: 0.7s;
	opacity: 0;
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(-30%);
	}
	100% {
		opacity: 1;
		transform: translateY(-50%);
	}
}

#main_slide .main_title{
	font-size: clamp(20px, 5vw, 70px);
	color: aliceblue;
	line-height: 1.3;
	font-weight: 600;
	font-family: 'Nanum Gothic';
}
#main_slide p{
	font-size: clamp(14px, 3vw, 28px);
	/*font-size: 18px;*/
	margin: 18px 0 32px;

}
#main_slide button{
	background-color: #ffffff;
	height: clamp(36px, 7vw, 48px);
	border-radius: 30px;
	text-align: center;
	padding: 0 24px;
	border: 0;
	transition: all 0.2s ease-in-out;
}
#main_slide button a{
	color: inherit;
	text-decoration: none;
	font-size: 16px;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;

}
#main_slide button:hover{
	background-color: #e0e0e0;
}
.main_menu{
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100px;
    background-color: rgba(0,0,0,0.4);
    box-sizing: content-box;
    padding: 20px 40px;
}
.main_menu ul{
    display: flex;
    justify-content: space-between;
}
.main_menu ul li{
    position: relative;
    width: 100px;
    height: 100px;
    margin-right: 31px;
}
.main_menu ul li:after{
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 1px;
    height: 85%;
    background-color: #e9e9e9;
}
.main_menu ul li:last-child{
    margin-right: 0;
}
.main_menu ul li:last-child:after{
    display: none;
}
.main_menu ul li a{
    display: block;
    color: white;
    width: 100%;
    text-align: center;
    margin-top: 80px;
}

/* sect2 */

.s2_cont{
    position: relative;
	/*border: 1px solid #e0f2f1;*/
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1px;
    /*background-color: #e0f2f1;*/
    /*max-width: 1140px;*/
    /*margin: 0 auto;*/
	gap: 2vw;
	margin: 0 2vw;
}
.s2_cont::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -250px;
    left: -570px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 200px solid #e9e9e9;
    z-index: -1;
}
.s2_cont >div{
    /* width: calc(100% / 3); */
    /*max-width: 380px;*/
    aspect-ratio: 1;
    background-color: #f1f9f9;
    border-collapse: collapse;
    position: relative;
    z-index: 9;
	transition: all 0.2s ease-in-out;
	border: 1px solid #e0f2f1;
}
.s2_cont >div:hover{
    /*background-color: #4B5563;*/
    background-color: #e0f2f1;

}
.s2c_wrap{
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}



.s2c_img{
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    /* background-image: url("/include/img/design_03/icon_01.png"); */
}
.s2c_img1{
    background-image: url("/include/img/design_03/icon_technology.png");
}
.s2c_img2{
    background-image: url("/include/img/design_03/icon_verified.png");
}
.s2c_img3{
	background-image: url("/include/img/design_03/icon_delivery.png");
}
.s2c_img4{
    background-image: url("/include/img/design_03/icon_01.png");
}
/*.s2c_img5{*/
/*    background-image: url("/include/img/design_03/icon_05.png");*/
/*    background-size: auto 80%;*/
/*}*/
/*.s2c_img6{*/
/*    background-image: url("/include/img/design_03/icon_06.png");*/
/*}*/

.s2_cont >div:hover .s2c_img{
    display: none;
}
.s2c_title{
    font-size: 22px;
    line-height: 22px;
    text-align:center;
    font-weight: 600;
}
.s2_cont >div:hover .s2c_title{
    /*color: #fff;*/
    margin-bottom: 18px;
}
.s2c_cont{
    display: none;
}
.s2_cont >div:hover .s2c_cont{
    display: block;
    width: 100%;
    /*color: #fff;*/
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
	word-break: keep-all;
}

/* sect3 */
#sect3 .cont_wrap{
    position: relative;
}
#sect3 .cont_wrap:after{
    content: "";
    display: block;
    width: 180px;
    height: 180px;
    position: absolute;
    bottom: -250px;
    right: -170px;
    border: 100px solid #eee;
    border-radius: 50%;
    z-index: 0;

}
.title_cont{
    position: relative;
    text-align:center;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 80px;
    z-index: 9;
	word-break: keep-all;
}
.title_cont span{
	color: #1f2937;
    font-weight: 700;
	/*font-size: clamp(18px, 1.8vw, 28px);*/
}
.s3_cont{
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}
.s3_cont div{
    width: calc((100% - 40px) / 3);
    aspect-ratio: 1;
    /*background-color: red;*/
}
.s3_img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.s3_img1{
    background-image: url("/include/img/design_03/s3_img1.jpg");
}
.s3_img2{
    background-image: url("/include/img/design_03/s3_img2.jpg");
}
.s3_img3{
    background-image: url("/include/img/design_03/s3_img3.jpg");
}

/*cta_section*/

#cta_section .cont_wrap{
	height:  clamp(440px, 10vw, 550px);
	/*border-radius: 50px;*/
	/*background-color: #1f2937;*/
	background: rgb(71,82,97);
	background: -moz-linear-gradient(265deg, rgba(71,82,97,1) 0%, rgba(31,41,55,1) 100%);
	background: -webkit-linear-gradient(265deg, rgba(71,82,97,1) 0%, rgba(31,41,55,1) 100%);
	background: linear-gradient(265deg, rgba(71,82,97,1) 0%, rgba(31,41,55,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#475261",endColorstr="#1f2937",GradientType=1);
	position: relative;
	overflow: hidden;
	width: 100%;
}
#cta_section .cont_wrap::after {
	content: "";
	position: absolute;
	bottom: 53%;
	left: 80%;
	width: 500px;
	height: 100%;
	/*border-radius: 50%;*/
	z-index: 0;
	background-image: url("/include/img/design_03/img_cta_section_bg.png");
	background-size: 100%;
	background-repeat: repeat;
	opacity: 0.2;
	transform: rotate(-270deg);
}
#cta_section .cont_wrap::before {
	content: "";
	position: absolute;
	top: 53%;
	right: 80%;
	width: 500px;
	height: 100%;
	/*border-radius: 50%;*/
	z-index: 0;
	background-image: url("/include/img/design_03/img_cta_section_bg.png");
	background-size: 100%;
	background-repeat: repeat;
	opacity: 0.2;
	transform: rotate(270deg);
}
#cta_section .cta_content{
	text-align: center;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

}
#cta_section .cta_txt{
	color: #ffffff;
}
#cta_section .cta_txt h4{
	font-size: clamp(28px, 2.5vw, 42px);
	line-height: 1.3;
	font-weight: 400;
}
#cta_section .cta_txt p{
	font-size: 18px;
	margin: 1.5vh 0 2.5vh;
	word-break: keep-all;
}
#cta_section .cta_txt p br{
	display: none;
}
#cta_section button{
	background-color: #ffffff;
	height: clamp(36px, 6.5vw, 48px);
	border-radius: 30px;
	text-align: center;
	padding: 0 24px;
	border: 0;
	transition: all 0.2s ease-in-out;
	min-width: 120px;
	font-size: 16px;
}
#cta_section button:hover{
	background-color: #f2f2f2;
	opacity: 0.8;
}
#cta_section button a{
	color: inherit;
}
/* sect 4 */
#sect4{
    position: relative;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    z-index: 50;
    background-color: white;
}
#sect4 .cont_wrap{
    display: flex;
    justify-content: space-between;
}
#sect4 .cont_wrap div {
    height: 300px;
    width: calc(100% / 2);
    font-size: 48px;
    line-height: 300px;
    position: relative;
}
#sect4 .cont_wrap div:hover a{
	color: #1f2937;
}
#sect4 .cont_wrap div:hover::after{
	right: 30px;
}
#sect4 .cont_wrap div a{
    display: block;
    color: #222;
}
#sect4 .cont_wrap div:after{
    content: "";
    display: block;
    width: 100px;
    height: 44px;
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    background-image: url("/include/img/design_03/icon_arrow.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right center;
	transition: all 0.3s ease-in-out;
}
.incruit{
    border-right: 1px solid #222;
}
.customer{
    padding-left: 32px;
}


/* sect5 */
#sect5 .cont_wrap{
    position: relative;
}
#sect5 .cont_wrap:before{
    content: "";
    display: block;
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -400px;
    left: -200px;
    border: 150px solid rgba(194, 194, 194, 0.15);
    border-radius: 50%;
}
.s5_wrap{
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 99;
}
.s5_wrap > div{
    width: calc((100% - 50px) / 2);
}
.s5c_title_wrap{
    margin-bottom: 16px;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
}
.s5c_title{
    font-size: 28px;
    line-height: 28px;
    font-weight: bold;
    color: #26487c;
}
.s5c_more{
    width: 18px;
    height: 28px;
    background-image: url("/include/img/design_03/icon_plus.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}
.s5c_cont{
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
}
.s5c_cont ul li{
    padding: 24px 16px;
    border-bottom: 1px solid #ccc;
}
.t_wrap{
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.inner_title{
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #222;
}
.s5_date{
    color: #333;
}
.b_cont{#lang-switcher
    width: 100%;
    font-size: 16px;
    color: #777;
    height: 46px;
    line-height: 24px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* footer */
footer{
    position: relative;
    z-index: 99;
    background-color: #4B5563;
    padding: 60px 0 120px 0;
}
.top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}
.ft_logo{
    font-size: 28px;
    line-height: 28px;
    color: white;
    font-weight: 600;
	margin-bottom: 3rem;
}
.ft_logo img{
	width: 180px;
}
.ft2_top{
    margin-bottom: 24px;
}
.ft2_top ul{
    display: flex;
    justify-content: left;
}
.ft2_top ul li{
    margin-right: 30px;
}
.ft2_top ul li a{
    color: #fff;
    font-size: 16px;
    line-height: 28px;
}
.ft2_bottom{
    color: #e9e9e9;
    font-weight: 400;
}
.ft2_bottom span{
	margin-left: 16px;
	position: relative;
}
.ft2_bottom span::before{
	content: '';
	width: 1px;
	height: 80%;
	background-color: #ffffff;
	position: absolute;
	top: 50%;
	left: -8px;
	transform: translateY(-50%);

}
.info1{
    margin-bottom: 24px;
}
.info_title{
    color: #e9e9e9;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 8px;
}
.info_cont{
    color: #fff;
    font-size: 22px;
    line-height: 22px;
}
.bottom{
    width: 100%;
    color: #e9e9e9;
    font-size: 16px;
    font-weight: 300;
}


@media screen and (max-width:1500px){
	.gnb > ul> li{
		padding: 0 25px;
	}
}


@media screen and (max-width:1240px){

    :root{
        --nav-height:60px;
    }
    .pc,.mo{
        display: none;
    }
    .ta{
        display: block;
    }


    .cont_wrap{
        width: 100%;
        padding: 0 24px;
    }
    .title{
        font-size: 42px;
    }


    /* gnb start */
    #nav{
        width: 100vw;
    }
    .logo a{
        font-size: 22px;
    }
    .gnb{
        display: block;
        position: absolute;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        transition: right  0.3s ease-in-out;
        background-color: black;
    }
    .gnb.on{
        right: 0;
    }
    .gnb .close{
        width: 40px;
        height: 60px;
        margin: 0 24px 40px auto;
        background-image: url("/include/img/design_03/icon_close.png");
        background-repeat: no-repeat;
        background-size: auto 20px;
        background-position: right center;
    }
    .gnb > ul{
        display: block;
    }
    .gnb > ul > li{
        border-bottom: 1px solid #e9e9e9;
    }

	#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/icon_menu.png");
        background-repeat: no-repeat;
        background-size: auto 20px;
        background-position: right center;
    }
	#nav.active .menu{
		background-image: url("/include/img/design_03/icon_menu_black.png");
		background-size: auto 27px;
	}

    /* 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:890px){
    .main_menu{
        display: none;
    }
    #main_slide .swiper{
        display: block;
        position: absolute;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: auto;
    }
    #main_slide .swiper .swiper-slide{
        /*background-color: rgba(0,0,0,0.7);*/
        aspect-ratio: 1;
    }
    .s2c_cont{
        font-size: 10px;
    }

    /* sect 4 */
    #sect4 .cont_wrap div{
        height: 200px;
        line-height: 200px;
        font-size: 28px;
        padding-left: 20px;
    }
    #sect4 .cont_wrap div:after{
        background-size: auto 28px;
    }

    /* sect5 */
    .s5_wrap{
        flex-direction: column;
        justify-content: center;
    }
    .s5_wrap > div{
        width: 95%;
        margin: 0 auto 0 auto;
    }
    .s5_wrap .release{
        margin-bottom: 80px;
    }
    footer{
        padding: 60px 40px;
    }
    .top{
        flex-direction: column;
    }
    .ft_logo{
        margin-bottom: 48px;
    }
	.ft_logo img{
		width:130px;
	}
    .ft2_top{
        margin-bottom: 16px;
        font-weight: 600;
    }
    .ft2_bottom{
        margin-bottom: 48px;
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
    }
    .bottom{
        text-align: left;
    }

}
@media screen and (max-width:768px){
    .s2_cont::after{
        bottom: -400px;
        left: -400px;
    }
    .s2c_img{
        width: 60px;
        height: 60px;
        background-size: auto 100%;
    }
    .s2c_img5{
        background-size: auto 80%;
    }
    .s2c_title{
        font-size: 18px;
    }
    .s2c_cont{
        display: none;
    }
    .s2_cont >div{
        pointer-events: none;
    }



}
@media screen and (max-width:680px){
    .title{
        margin-bottom: 40px;
    }
    .title_cont{
        font-size: 16px;
        width: 90%;
        margin-bottom: 40px;
    }
    .s3_cont div{
        width: calc((100% - 16px) / 3);
        margin-right: 8;
    }
    /* sect4 */
    #sect4 .cont_wrap{
        display: block;
        padding: 0
    }
    #sect4 .cont_wrap div{
        width: 100%;
        height: 150px;
        line-height: 150px;
        padding: 0 40px;
    }
    .incruit{
        border-bottom: 1px solid #222;
        border-right: 0;
    }

}
@media screen and (max-width:520px){
    .s2c_img{
        width: 40px;
        height: 40px;
        background-size: auto 100%;
    }
    .s2c_img5{
        background-size: auto 80%;
    }
    .s2c_title{
        font-size: 16px;
    }

    #sect4{
        padding: 0;
    }
    #sect4 .cont_wrap div{
        font-size: 24px;
        line-height: 120px;
        height: 120px;
    }

    .s5c_title_wrap{
        margin-bottom: 8px;
    }
    .s5c_title{
        font-size: 24px;
    }
    .s5c_more{
        background-size: auto 14px;
    }
}

@media screen and (max-width:490px){
    section{
        /*padding: 72px 16px;*/
        margin-bottom: 0;
    }

    .cont_wrap{
        padding: 0;
    }
	#nav .cont_wrap{
		padding: 0 16px;
	}
	#main_slide .cont_wrap{
		padding: 3vw;
		text-align: center;
	}
	#main_slide p{
		padding: 0 13vw;
	}
	#main_slide button{
		font-size: 14px;
	}
	#main_slide .swiper{
		display: none;
	}
    .s2_cont:after{
        width: 150px;
        height: 150px;
        border: 80px solid #e9e9e9;
        bottom: -130px;
        left: -150px;
    }
    .title{
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 48px;
    }
    .s2_cont{
        grid-template-columns: 1fr 1fr;
    }
    .s2c_img{
        width: 60px;
        height: 60px;
    }
	#cta_section .cta_txt p br{
		display: block;
	}
    footer{
        padding: 60px 0 120px 0;
    }
    footer .cont_wrap{
        padding: 0 16px;
    }
    .ft_logo{
        font-size: 22px;
    }
    .ft2_top ul li a{
        font-size: 14px;
        white-space: nowrap;
    }
    .ft2_bottom{
        font-size: 14px;
    }
    .info_title{
        font-size: 14px;
        line-height: 14px;
    }
    .info_cont{
        font-size: 18px;
    }
    .bottom{
        font-size: 14px;
    }
}
@media screen and (max-width:420px){
    .s5c_title{
        font-size: 18px;
    }
    .inner_title{
        font-size: 18px;
    }
    .s5_date{
        font-size: 14px;
    }
    .b_cont{
        font-size: 14px;
        line-height: 22px;
    }
}
@media screen and (max-width:375px){
    .s2c_img{
        width: 40px;
        height: 40px;
    }
    .s2c_title{
        font-size: 16px;
    }


    #sect4 .cont_wrap div{
        font-size: 22px;
        background-size: auto 24px;
        cursor: pointer;
    }


    /* sect5 */
    .s5_wrap > div{
        width: 100%;
    }
    .s5c_cont ul li{
        padding: 12px 16px;
    }

    .s5_wrap .release{
        margin-bottom: 40px;
    }
    .t_wrap{
        flex-direction: column;
        margin-bottom: 0;
    }
    .inner_title{
        width: 100%;
        font-size: 16px;
        -webkit-line-clamp: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 8px;
    }
    .s5_date{
        color: #777;
    }
    .b_cont{
        display: none;
    }



    .ft_logo{
        font-size: 22px;
    }
    .ft2_top ul li{
        margin-right: 10px;
    }
    .ft2_top ul li a{
        font-size: 12px;
        white-space: nowrap;
    }
    .ft2_bottom{
        font-size: 12px;
    }
    .info_title{
        font-size: 12px;
        line-height: 12px;
    }
    .info_cont{
        font-size: 16px;
    }
    .bottom{
        font-size: 12px;
    }
}
