@charset "utf-8";
/* 공통 */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, table, dl, dd {
	margin: 0;
	padding: 0;
}
h1 {
	font-size: 1em;
}
a {
	text-decoration: none;
	color: #000;
}
ul, ol {
	list-style: none;
}
img {
	max-width: 100%;
	vertical-align: top;
	border: none;
}
body {
	font-family: "Roboto", "Noto Sans KR", sans-serif, "Paperlogy-1Thin", "Paperlogy-2ExtraLight", "Paperlogy-3Light", "Paperlogy-4Regular", "Paperlogy-5Medium", "Paperlogy-6SemiBold", "Paperlogy-7Bold", "Paperlogy-8ExtraBold", "Paperlogy-9Black";
}
/* 페이퍼로지 */
@font-face {
    font-family: 'Paperlogy-1Thin';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-1Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy-2ExtraLight';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy-3Light';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy-4Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy-5Medium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy-6SemiBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy-7Bold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy-8ExtraBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Paperlogy-9Black';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

/* 피씨버전 */
.solution_section  .circle_chart {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(-0%, -40%) rotate(0deg) ;
    width: 620px !important;
    height: 620px !important;
	animation: rotate360 1.2s ; 
}
@keyframes rotate360 {
    0% {
        transform: translate(-0%, -40%) rotate(0deg);
    }
    100% {
        transform: translate(-0%, -40%) rotate(360deg); 
    }
}
/* 모바일 버전  */

@media only screen and (max-width: 940px) {
    .solution_section .circle_chart {
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(50%, -23%) rotate(0deg); /* 940px 이하에서도 위치 고정 및 회전 */
        width: 450px !important;
        height: 450px !important;
        animation: rotate360 1.2s ;
    }

    @keyframes rotate360 {
        0% {
            transform: translate(50%, -23%) rotate(0deg); /* 시작 시 위치 고정 */
        }
        100% {
            transform: translate(50%, -23%) rotate(360deg); /* 끝날 때도 위치 고정 */
        }
    }
}

/* -----스크롤---- */

*, :after, :before {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
::-webkit-scrollbar { width:8px; height:4px;}
::-webkit-scrollbar-track { background:none;}
::-webkit-scrollbar-thumb { background:#1a2334;}


/* lang 활성화 시  sns갯수에 따라 'margin-right' 값 조절 */

/* header .header_inner .header_wrap .gnb {
	display: flex;
	align-items: center;
	position: absolute;
	right: -30px;
	top: 30px;
	margin-right: 150px !important;
}
*/

/*  메인페이지 */

/* Header */

body, html {
	position: relative !important;
}
header {
	margin: 0 auto;
	height: 80px;
    display: table;
    justify-content: space-between;
    align-items: center;
}
header .header_inner  {
	position: fixed;
    padding: 0 100px;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 80px;
	overflow: hidden;
    background-color: rgba(25,35,50,0.7);
	transition: height 0.4s, background-color 0.4s, top 0.4s;
}
header .header_inner .header_wrap {
	position: relative;
}
header .header_inner .header_wrap .logo {
	position: absolute;
	/* width: 200px; */
	left: 0;
	top: 20px;
	display: flex;
	align-items: center;
	color: #fff;
}
header .header_inner .header_wrap .logo img {
	width: 200px;
	height: 100%;
	object-fit: contain;
}
header .header_inner .header_wrap .gnb {
	display: flex;
	align-items: center;
	position: absolute;
	/* float: right; */
	/* right: 203px; */
	right: -30px;
	top: 30px;
	/* margin-right: 150px; */ /* lang 활성화 시*/
}
header .header_inner .gnb ul {
    display: flex;
    list-style: none;
}
header .header_inner .gnb ul li a {
    color: #fff;
    text-decoration: none;
	padding: 0 40px;
	font-family: "Paperlogy-4Regular";
	display: flex;
}
header .header_inner .gnb ul li:hover a {
	color: #f7d381;
}
header .header_inner .gnb .lang {
	display: flex;
	align-items: center;
}
header .header_inner .gnb .lang a {
	padding: 0 5px;
}
header .header_wrap .lang {
	float: right;
    margin-top: 26px;
    margin-right: 0;
    margin-left: 20px;
}
header .header_wrap .lang a {
	padding: 0 5px;
}
.mobile {
	display: none;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: 100vh;
	padding: 30px 20px;
	transition: right 0.3s;
	box-sizing: border-box;
}
.mobile.active {
	display: block;
}
.mobile.active {
	display: block;	
}
.mobile ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	gap: 30px;
}
.mobile ul li a {
	font-size: 1.875em;
	color: #f7d381;
	padding: 15px 20px;
	font-weight: 800;
	font-family: "Paperlogy-8ExtraBold";
}
header .header_inner .m_tab {
    display: none;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 25px;
    cursor: pointer;
	z-index: 1001;
}
header .header_inner .m_tab span {
    width: 100%;
    height: 3px;
    background-color: #fff;
}
header .header_inner .m_tab.active span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
header .header_inner .m_tab.active span:nth-child(1) {
transform: rotate(45deg);
}
header .header_inner .m_tab.active span:nth-child(2) {
display: none;
}
header .header_inner .m_tab.active span:nth-child(3) {
transform: rotate(-45deg);
}
header .dim {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background-color: #142530;
}
header .dim.active {
	display: block;
}
@media only screen and (max-width: 940px) {
	header .header_wrap .lang {
		margin-right: 50px;
	}
	header .header_inner .header_wrap .gnb {
		display: none !important;
	}
	header .header_inner .m_tab {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
	}
	header .header_inner {
		padding: 0 50px;
	}
}
@media only screen and (max-width: 380px) {

	header .header_wrap .lang {
        margin-right: 40px;
		margin-top: 30px;
    }
	header .header_wrap .lang a {
		padding: 0px;
	}
}
@media only screen and (max-width: 350px) {

	header .header_wrap .lang {
        margin-right: 35px;
		margin-top: 30px;
    }
	header .header_wrap .lang a {
		padding: 0px;
	}
}
/* Visual Section */
/* 슬라이드 */
.swiper {
	position: absolute !important;
	top: 0;
	width: 100%;
	height: 100vh; 
}
.swiper-slide {
	width: 100%;
	height: 100%;
	min-height: 100%;
	text-align: center;
	font-size: 1.125em;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* .swiper-slide:first-child {
    transition: opacity 0.8s ease-out;
} */

.swiper-slide .slide_img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-slide .slide_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 0% 50% ;
}

.swiper-slide .slide_txt { 
	position:absolute;
	width:100%;
	left:0;
	top:0;
	z-index:10;
	color:#fff;
	text-shadow:rgba(0,0,0,0.25) 0 0 20px;
	padding-top:300px;
	text-align: left;
}
.swiper-slide .slide_txt .slide_txt_wrap {
	max-width:1600px;
	width:100%;
	padding:0 40px;
	margin:0 auto;
	position:relative;
}
.swiper-slide .slide_txt  .slide_txt_wrap .slide_title {
	font-family: "Paperlogy-7Bold";
	font-size: 3.75em;
	line-height:1.6;
	margin-bottom:40px;
	font-weight: 700
}
.swiper-slide .slide_txt  .slide_txt_wrap .slide_sub_title {
	font-family: "Paperlogy-4Regular";
	font-size: 1.875em;
	line-height:1.5;
	margin-bottom:10px;
	font-weight: normal;
}
.swiper .swiper-pagination {
	margin-left: 60px;
    width: 50%;
    bottom: 70px;
    text-align: left !important;
    margin-bottom: 70px;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
	margin: 0 5px;
	width: 50px;
	height: 12px;
	background-color: #fff;
	opacity: 0.8;
	border-radius: 25px;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 50px;
	height: 12px;
	border-radius: 25px;
	background-color: #f3cb6f;
	opacity: 1;
}
@media only screen and (max-width: 940px) {
	.swiper-slide .slide_txt  .slide_txt_wrap .slide_title {
		font-size: 3em;
	}
	.swiper-slide .slide_txt  .slide_txt_wrap .slide_sub_title {
		font-size: 1.125rem;
		width: 100%;
	}
	.swiper .swiper-pagination {
		margin-left: 40px;
		bottom: 100px !important;
		text-align: left !important;
	}	
}
@media only screen and (max-width: 640px) {
	header .header_inner {
		padding: 0 30px;
	}
	header .header_inner .header_wrap .logo {
		width: 150px;
		top: 25px;
	}
	header .header_inner .m_tab {
		right: 30px;
	}
	.swiper-slide .slide_txt  .slide_txt_wrap .slide_title {
		font-size: 2.35em;
	}
	.swiper-slide .slide_txt  .slide_txt_wrap .slide_sub_title {
		font-size: 1.1em;
	}
	.swiper .swiper-pagination {
		margin-left: 40px;
	}
}
@media only screen and (max-width: 420px) {
	.swiper-slide .slide_txt {
		padding-top: 260px;
	}
}
@media only screen and (max-width: 380px) {
	header .header_inner {
		padding: 0 20px;
	}
	header .header_inner .header_wrap .logo {
		width: 120px;
		top: 30px;
	}
	header .header_inner .m_tab {
		right: 20px;
		top: 52%;
	}
	.swiper-slide .slide_txt  .slide_txt_wrap .slide_title {
		margin-bottom: 10px;
	}
	.swiper-slide .slide_txt  .slide_txt_wrap .slide_sub_title {
		font-size: 0.875em !important;
	}
	.swiper .swiper-pagination {
		margin-left: 40px;
		/* top: 80px !important; */
	}
}
@media only screen and (max-width: 350px) {
	header .header_inner {
		padding: 0 10px;
	}
	header .header_inner .m_tab {
		right: 10px;
	}
	.swiper-slide .slide_txt .slide_txt_wrap {
		padding: 0 35px;
	}
		.swiper-slide .slide_txt  .slide_txt_wrap .slide_title {
		font-size: 1.875em;
		margin-bottom: 10px;
	}
}
@media only screen and (max-height: 700px) {
	.swiper-slide .slide_txt { 
		padding-top:200px;
	}
	.swiper .swiper-pagination {
		margin-left: 40px;
		bottom: 20px !important;
	}
}
@media only screen and (max-height: 600px) {
	.swiper-slide .slide_txt { 
		padding-top:180px;
	}
	.swiper .swiper-pagination {
		margin-left: 40px;
		bottom: 10px !important;
	}
}
@media only screen and (max-height: 500px) {
	.swiper-slide .slide_txt { 
		padding-top:150px;
	}
	.swiper .swiper-pagination {
		margin-left: 40px;
		bottom: 20px !important;
	}
}
@media only screen and (max-height: 450px) {
	.swiper .swiper-pagination {
		margin-left: 40px;
		bottom: 0 !important;
	}
}
@media only screen and (max-height: 400px) {
	.swiper-slide .slide_txt { 
		padding-top:120px;
	}
	.swiper .swiper-pagination {
		margin-left: 40px;
		bottom: 0 !important;
		margin-bottom: 20px !important;
	}
}
@media only screen and (max-height: 330px) {
	.swiper-slide .slide_txt { 
		padding-top:80px;
	}
}
@media (orientation: landscape) {
	.swiper .swiper-pagination {
		margin-left: 40px;
		bottom: 0 !important;
		margin-bottom: 30px !important;
	}
}

/* 솔루션 섹션 */
.solution_section {
    margin-top: 90vh !important;
    position: relative;
    width: 100%;
    height: 102vh; 
    background: url(/resources/image/main_pages/solution_bg.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	overflow: hidden;
	font-family: "Paperlogy-4Regular";
}
.solution_section .section_inner {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.solution_section .arrow {
	position: absolute;
	left: -200px;
	width: 62vw;
	top: 50% !important;
	margin-top: 50px;
}

.solution_section  img {
    width: 100%;
    height: 100%;
}
.solution_section .text_section {
    position: absolute;
    top: -220px;
    left: 30px;
    z-index: 3;
    max-width: 52%;
	text-align: center;
}

.solution_section .text_section h1 {
    font-size: 7em;
	color: #fff;
	margin-bottom: 120px;
	line-height: 120px;
	font-family: "Paperlogy-7Bold";
	font-weight: 700;
	text-shadow:rgba(0,0,0,0.25) 0 0 20px;
}
.solution_section .text_section p {
    font-size: 1.6em;
    line-height: 50px;
	color: #fff;
	text-align: left;
	text-shadow:rgba(0,0,0,0.25) 0 0 20px;
}

.solution_section .circle_chart .chart_item_01 {
	position: absolute;
    top: 17%;
    left: 33%;
    transform: translate(-50%, -50%);
	z-index: 100;
}
.solution_section .circle_chart .chart_item_01 img {
	width: 80%;
	height: 80%;
}

.solution_section .circle_chart .chart_item_02 {
	position: absolute;
    top: 23%;
    left: 76%;
    transform: translate(-50%, -50%);
	z-index: 100;
}
.solution_section .circle_chart .chart_item_02 img {
	width: 80%;
	height: 80%;
}

.solution_section .circle_chart .chart_item_03 {
	position: absolute;
    bottom: 23%;
    left: 81%;
    transform: translate(-50%, -50%);
	z-index: 100;
}
.solution_section .circle_chart .chart_item_03 img {
	width: 100%;
	height: 100%;
}

.solution_section .circle_chart .chart_item_04 {
	position: absolute;
    bottom: 0%;
    left: 45%;
    transform: translate(-50%, -40%);
	z-index: 100;
}
.solution_section .circle_chart .chart_item_04 img {
	width: 80%;
	height: 80%;
}

.solution_section .circle_chart .chart_item_05 {
	position: absolute;
    top: 53%;
    left: 15%;
    transform: translate(-50%, -50%);
	z-index: 100;
}
.solution_section .circle_chart .chart_item_05 img {
	width: 80%;
	height: 80%;
}

@media (max-width: 1700px) {
	.solution_section .arrow {
		left: -80px;
		width: 62vw;
	}
}
@media (max-width: 1500px) {
	.solution_section .text_section {
		left: 20px;
		top: -200px;
		width: 90%;
	}
    .solution_section .text_section h1 {
        font-size: 6.5em;
		line-height: 110px;
    }

    .solution_section .text_section p {
        font-size: 1.5em;
		line-height: 30px;
    }
	.solution_section .arrow {
		left: -80px;
		width: 62vw;
	}
}
@media (max-width: 1400px) {
	.solution_section .text_section {
		top: -200px;
	}
}
@media (max-width: 1300px) {
	.solution_section .text_section {
		top: -200px;
		left: 25px;
	}
	.solution_section .arrow {
		left: -80px;
		width: 60vw;
	}
	.solution_section .circle_chart {
		position: absolute;
		top: 53%;
		right: 20px;
		transform: translate(-0%, -40%);
		width: 550px;
		height: 550px;
	}
	.solution_section .text_section h1 {
		font-size: 6em;
	}
	.solution_section .text_section p {
		font-size: 1.125em;
		width: 94%;
	}
}
@media (max-width: 1200px) {
	.solution_section .arrow {
		left: -80px;
		width: 53vw;
	}
	.solution_section .text_section {
		position: absolute;
		top: -125px;
		left: 15px;
		z-index: 3;
		max-width: 40%;
		text-align: center;
	}
	.solution_section .text_section h1 {
		font-size: 3.5em;
		line-height: normal;
		margin-bottom: 70px;
	}
	.solution_section .text_section h1 {
		font-size: 3.5em;
		line-height: normal;
		margin-bottom: 70px;
	}
	.solution_section .text_section p {
        font-size: 0.875em;
		line-height: 30px;
		width: 85%;
    }
}
@media (max-width: 1000px) {
	.solution_section .text_section {
        top: -110px;
        left: 10px;
		max-width: 30%;
    }
	.solution_section .arrow {
		left: -80px;
		width: 45vw;
	}
	.solution_section .text_section h1 {
		font-size: 3.25em;
	}
	.solution_section .text_section p {
		font-size: 0.875em;
		width: 100% !important;
	}
	
}

@media screen and (max-width:940px) {
	.solution_section {
		text-align: center;
		height: 1000px;
	}
	.solution_section .section_inner {
		max-width: 1500px;
		width: 100%;
		position: unset;
	}
	.solution_section .text_section {
		top: 15%;
		left: 50%;
		transform: translateX(-50%);
		max-width: unset;
		width: 70%;
	}

	.solution_section .text_section h1 {
		font-size: 3em;
		margin-bottom: 20px;
		line-height: normal;
	}

	.solution_section .text_section p {
		font-size: 1em;
		margin-bottom: 40px;
		line-height: 1.6;
	}
	.solution_section .circle_chart {
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(50%, -23%);
        width: 500px;
        height: 500px;
    }

	.solution_section .arrow  {
		display: none;
	}
	.solution_section .circle_chart .chart_item_01 {
		position: absolute;
		top: 17%;
		left: 33%;
		transform: translate(-50%, -50%);
		z-index: 100;
	}
	.solution_section .circle_chart .chart_item_01 img {
		width: 55%;
		height: 55%;
	}
	
	.solution_section .circle_chart .chart_item_02 {
		position: absolute;
		top: 23%;
		left: 76%;
		transform: translate(-50%, -50%);
		z-index: 100;
	}
	.solution_section .circle_chart .chart_item_02 img {
		width: 55%;
		height: 55%;
	}
	
	.solution_section .circle_chart .chart_item_03 {
		position: absolute;
		bottom: 23%;
		left: 81%;
		transform: translate(-50%, -50%);
		z-index: 100;
	}
	.solution_section .circle_chart .chart_item_03 img {
		width: 100%;
		height: 100%;
	}
	
	.solution_section .circle_chart .chart_item_04 {
		position: absolute;
		bottom: 0%;
		left: 45%;
		transform: translate(-50%, -40%);
		z-index: 100;
	}
	.solution_section .circle_chart .chart_item_04 img {
		width: 55%;
		height: 55%;
	}
	
	.solution_section .circle_chart .chart_item_05 {
		position: absolute;
		top: 53%;
		left: 15%;
		transform: translate(-50%, -50%);
		z-index: 100;
	}
	.solution_section .circle_chart .chart_item_05 img {
		width: 55%;
		height: 55%;
	}
}
	
	@media screen and (max-width:640px) {
		.solution_section .text_section {
			top: 10%;
			left: 50%;
			transform: translateX(-50%);
			max-width: unset;
			width: 80%;
			margin-top: 50px;
		}
	
		.solution_section .text_section h1 {
			font-size: 2.2em;
			margin-bottom: 20px;
			line-height: normal;
		}
	
		.solution_section .text_section p {
			font-size: 0.875em;
			margin-bottom: 40px;
			line-height: 1.6;
		}
		.solution_section .circle_chart {
			position: absolute;
			top: 47%;
			right: 50%;
			transform: translate(50%, -23%);
			width: 400px !important;
			height: 400px !important;
		}
	}

	@media screen and (max-width:460px) {
		.swiper-slide .slide_txt .slide_sub_title {
			font-size: 1.25em;
		}
		.solution_section .text_section h1 {
			font-size: 2em;
		}
		.solution_section .text_section p {
			font-size: 0.875em;
		}
		.solution_section .circle_chart .chart_item_01 {
			position: absolute;
			top: 17%;
			left: 33%;
			transform: translate(-50%, -50%);
			z-index: 100;
		}
		.solution_section .circle_chart .chart_item_01 img {
			width: 35%;
			height: 35%;
		}
		.solution_section .circle_chart .chart_item_04 {
			position: absolute;
			bottom: 0%;
			left: 45%;
			transform: translate(-50%, -40%);
			z-index: 100;
		}
		.solution_section .circle_chart .chart_item_04 img {
			width: 35%;
			height: 35%;
		}
		
		.solution_section .circle_chart .chart_item_05 {
			position: absolute;
			top: 53%;
			left: 15%;
			transform: translate(-50%, -50%);
			z-index: 100;
		}
		.solution_section .circle_chart .chart_item_05 img {
			width: 35%;
			height: 35%;
		}
	}
	@media screen and (max-width:420px) {
		.solution_section {
			height: 850px;
		}
		.solution_section .text_section {
			top: 15%;
		}
		.solution_section .text_section p {
			font-size: 1rem;
		}
		.solution_section .circle_chart {
			position: absolute;
			top: 48%;
			right: 50%;
			transform: translate(50%, -23%);
			width: 250px !important;
			height: 250px !important;
			margin-top: 50px;
		}
	}

	@media screen and (max-height:820px) {
		.solution_section {
			margin-top: 88vh !important;
		}
	}
	@media screen and (max-height:720px) {
		.solution_section {
			margin-top: 86vh !important;
		}
	}
	@media screen and (max-height:670px) {
		.solution_section {
			margin-top: 84vh !important;
		}
	}
	@media screen and (max-height:540px) {
		.solution_section {
			margin-top: 80vh !important;
		}
	}
	@media screen and (max-height:400px) {
		.solution_section {
			margin-top: 75vh !important;
		}
	}
	@media screen and (max-height:350px) {
		.solution_section {
			margin-top: 73vh !important;
		}
	}

/* 푸터 */
footer {
	padding: 50px 20px;
    background: #08151e;
    color: #fff;
	position: relative;
	font-family: "Paperlogy-4Regular";
}
.footer_inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.footer_info {
    padding-left: 300px;
}
.footer_info .footer_logo {
    margin-left: -330px;
}
.footer_logo  {
	width: 300px;
	margin-top: 20px;
	filter: invert(47%) sepia(22%) saturate(468%) hue-rotate(158deg) brightness(87%) contrast(86%) !important;
}
.footer_logo img {
	width: 100%;
	height: 100%;
	margin-top: 20px;
}
.footer_info ul {
    font-size: 0;
    margin-top: -60px;
}
.footer_info .footer_top {
    font-size: 13px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: #444 solid 1px;
}
.footer_info ul li {
    display: inline-block;
    vertical-align: top;
    font-size: 0.8125rem;
    line-height: 2;
    width: 33.33%;
}
.footer_info ul li img {
	width: 60px !important;
	height: 60px !important;
}
.footer_info ul li a {
	color: #fff;
}

.footer_info ul li a img {
	display: block;
	margin-top: 6px;
	width: 30px;
	height: 30px;
}
.footer_info .copyright {
    font-size: 0.8125em;
    color: #657784;
    margin-top: 20px;
    padding-top: 20px;
    border-top: #444 solid 1px;
}
@media screen and (max-width:1550px) {
	.footer_info {
		padding-left: 360px;
	}
}
@media screen and (max-width:991px){
	.footer { 
		padding:40px 20px;
	}
	.footer_inner {
		padding: 0 0;
	}
	.footer_info { 
		padding-left:0;
	}
	.footer_info .footer_logo { 
		margin-left:0;
	}
	.footer_info ul {
		margin-top:30px;
	}
}
@media screen and (max-width:730px){
	.footer_info ul li {
		width: 100%;
	}
}

/* work */


.gallery {
	margin-top: -85px;
	position: absolute;
	top: 0;
    text-align: center;
    background-color: #c6ced2;
	position: relative;
	padding-bottom: 100px;
}
.gallery .page_title {
	width: 100%;
	padding: 100px 0;
	background: url(/resources/image/Work_pages/Work_Title_BG.jpg) no-repeat center center;
}
.gallery .page_title strong {
	display: block;
	margin-top: 20px;
    font-size: 4.375em;
	color: #fff;
	font-family: "Paperlogy-8ExtraBold";
}

.projects {
    display: grid;
	margin: 0 auto;
    padding: 160px 30px 60px ;
	max-width: 1400px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project {
    position: relative;
	overflow: hidden;
    padding-top: 56.25%; /* 16:9 비율 */
	width: 100%;
	height: 100%;
    /* margin-bottom: 20px; */
}
.project:hover img{
	transform: scale(1.2);
	transition: 0.5s;
}

.project img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	transition: 0.6s;
	object-fit: cover;
}

.project_info {
    position: absolute;
    bottom: 00%;
    left: 50%;
    transform: translate(-50%, -0%);
    color: white;
    padding: 10px 20px;
    font-size: 1.125rem;
    width: 100%;
    text-align: left;
	background-color: #101e2a;
	opacity: 0.6;
	transition: 0.6s;
	font-family: "Paperlogy-4Regular";
}
.project:hover .project_info {
	opacity: 1;
	transition: 0.6s;
}

/* 페이지네이션 */
.gallery .pagination {
	-webkit-tap-highlight-color : transparent;
	padding: 0 20px;
}
.gallery .pagination ul {
    display: flex;
    justify-content: center;
    border-collapse: collapse;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-top: 80px;
	gap: 10px;
}
.gallery .pagination ul li {
	display: block;
	width: 45px;
	height: 45px;
    border-collapse: collapse;
	font-size: 1.5rem;
    cursor: pointer;
	line-height: 45px;
    text-align: center;
	border: 1px solid  #999;
	border-radius: 8px;
	background-color: transparent;
	border-spacing: none;
	color: #667b8a;
	font-weight: 600;
	font-family: "Paperlogy-6SemiBold";
}
.gallery .pagination ul li.pagination_prev {
	display: block;
	width: 45px;
	height: 45px;
	font-size: 1.5rem;
    border-collapse: collapse;
	border: 1px solid #999;
	border-radius: 8px;
	line-height: 45px;
    cursor: pointer;
    text-align: center;
	color: #667b8a;
	font-weight: 900;
}
.gallery .pagination ul li.pagination_next {
	display: block;
	width: 45px;
	height: 45px;
	font-size: 1.5rem;
    border-collapse: collapse;
	border: 1px solid #999;
	border-radius: 8px;
	line-height: 45px;	
    cursor: pointer;
    text-align: center;
	color: #667b8a;
	font-weight: 900;
}
.gallery .pagination ul li:nth-child(2n).active {
	background-color: #7595aa;
	border: 1px solid  #c6ced2;
	font-weight: 800;
	color: #fff;
}
.gallery .pagination ul li:nth-child(2n+1).active {
	font-weight: 800;
	color: #fff;
	background-color: #7595aa;
	border: 1px solid  #c6ced2;
}
.gallery .pagination ul li:nth-child(2n):hover.on {
	background-color: #819daf;
	border-color: #c6ced2;
}
.gallery .pagination ul li:nth-child(2n+1):hover.on {
	background-color: #819daf;
	border-color: #c6ced2;
}
.gallery .page_info {
	margin: 0 auto;
	margin-top: 35px;
	max-width: 1400px;
	padding: 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2vw;
	font-size: 1.5rem;
	color: #667b8a;
	font-family: "Paperlogy-4Regular";
}
.gallery .page_info .data_selector {
    display: inline-block;
    padding-left: 1rem;
    padding-right: 2.125rem;
    margin-right: 0.25rem;
	padding: 8px 30px 8px 20px;
	font-size: 1.125rem;
    line-height: 1.5;
	font-weight: 500;
	font-family: "Paperlogy-4Regular";
    color: #667b8a;
	background-color: #b5bec4;
    background-image: url(/resources/image/Work_pages/Page_No/BTN_Arrow_Down.png);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
	background-size: 16px 12px;
    border: none;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.gallery .page_info .data_selector option {
	font-size: 1.5rem;
	text-align: left;
    padding-left: 0px;
}


@media (max-width: 1024px) {
    .projects {
        grid-template-columns: repeat(2, 1fr);
		width: 100%;
    }
}
@media (max-width: 768px) {
    .projects {
        grid-template-columns: 1fr;
		/* gap: 10px; */
		gap: 20px;
    }
	/* .project {
		height: 400px;
	} */
}

@media (max-width: 940px) {
	.gallery .page_title {
		width: 100%;
		padding: 60px 0;
	}
	.gallery .page_title strong {
		margin-top: 40px;
		font-size: 3.75em;
	}
}
@media (max-width: 720px) {
	.gallery .pagination ul li  {
		font-size: 1.25rem;
		width: 50px;
		height: 50px;
		line-height: 50px;
	}
	.gallery .page_info,
	.gallery .page_info .data_selector  {
		font-size: 1rem;
	}
	.gallery .pagination ul li.pagination_next,
	.gallery .pagination ul li.pagination_prev {
		font-size: 1.25rem;
		width: 50px;
		height: 50px;
		line-height: 50px;
	}
	.gallery .page_info .data_selector option  {
		font-size: 1rem;
	}
}
@media (max-width: 680px) {
	/* .project {
		height: 310px;
	} */
	.gallery .pagination ul li  {
		font-size: 1rem;
		width: 45px;
		height: 45px;
		line-height: 45px;
	}
	.gallery .pagination ul li.pagination_next,
	.gallery .pagination ul li.pagination_prev {
		font-size: 1rem;
		width: 45px;
		height: 45px;
		line-height: 45px;
	}
	.gallery .page_info,
	.gallery .page_info .data_selector  {
		font-size: 1rem;
	}
	.gallery .page_info .data_selector option {
		font-size: 1rem;
	}
}

@media (max-width: 520px) {
	.projects {
		padding: 80px 20px 00px;
	}
	.gallery .page_title {
		width: 100%;
		padding: 60px 0;
	}
	.gallery .page_title strong {
		margin-top: 40px;
		font-size: 3.75em;
	}
}
@media (max-width: 480px) {
	.gallery .pagination ul li  {
		font-size: 1rem;
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
	.gallery .pagination ul li.pagination_next,
	.gallery .pagination ul li.pagination_prev {
		font-size: 1rem;
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
	.gallery .page_title {
		width: 100%;
		padding: 60px 0;
	}
	.gallery .page_title strong {
		margin-top: 40px;
		font-size: 2.5em;
        margin-bottom: -20px;
	}
}
@media (max-width: 480px) {
	.gallery .pagination ul li  {
		font-size: 1rem;
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
	.gallery .pagination ul li.pagination_next,
	.gallery .pagination ul li.pagination_prev {
		font-size: 1rem;
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
}
@media (max-width: 420px) {
	.projects {
		padding: 80px 20px 00px;
	}
	.project_info {
		padding: 7px 20px;
		font-size: 1em;
	}
	.gallery .page_info .data_selector {
		font-size: 1em;
		padding: 7px 40px 7px 15px;
	}
}
@media (max-width: 370px) {
	.gallery .pagination ul li  {
		font-size: 1rem;
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
	.gallery .pagination ul li.pagination_next,
	.gallery .pagination ul li.pagination_prev {
		font-size: 1rem;
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
	.gallery .page_info {
		gap: 7vw;
		font-size: 0.875rem;
	}
	.project {
		height: 210px;
	}
	.project_info  {
		padding: 7px 10px;
        font-size: 0.875em;
	}
	.gallery .page_info .data_selector {
		font-size: 0.875em;
	}
}

/* 프로젝트 화면 크게 (상세페이지) */
.work_pg {
	margin-top: -80px;
    text-align: center;
    background-color: #c6ced2;
	position: relative;
	padding-bottom: 100px;
}
.work_pg .page_title {
	width: 100%;
	padding: 100px 0;
	background: url(/resources/image/Work_pages/Work_Title_BG.jpg) no-repeat center center;
}
.work_pg .page_title strong {
    /* margin-bottom: 40px; */
	display: block;
    font-size: 4.375em;
	color: #fff;
	font-family: "Paperlogy-8ExtraBold";
}
.work_pg .page_sub_title {
	margin-top: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 2.125em;
	color: #374753;
	font-weight: lighter;
	font-family: "Paperlogy-4Regular";
}
.work_pg .page_sub_title span {
	margin-bottom: 30px;
}
.work_pg .page_sub_title .sub_title_line {
	max-width: 1400px;
	padding: 0 30px;
}
.work_pg .page_sub_title .sub_title_line img {                                                                                                                                                                                                                                   
	width: 100%;
	height: 100%;
}
/* 프로젝트 이미지 */
.work {
	margin: 0 auto;
    padding: 90px 30px 60px ;
	max-width: 1400px;
} 

.work_img {
	width: 100%;
	height: 100%;
	margin-bottom: 40px;
}
.work_img img {
	width: 100%;
	height: 100%;
}

/* 이미지 사이즈 작은 버전 (1050px) */
/* .work {
    margin: 0 auto;
    padding: 90px 20px 60px;
    max-width: 1090px;
} */

/* 비율 통일  (1050px X 590px)*/
/* .work_img {
    position: relative;
    width: 100%;
    max-width: 1050px;
    padding-top: 56.25%;
    margin: 0 auto;
    overflow: hidden;
	margin-bottom: 20px;
}

.work_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

.list_btn a {
	display: block;
	width: 210px;
	height: 60px;
	background-color: #d6dfe4;
	margin: 0 auto;
	cursor: pointer;
	font-size: 2em;
	font-weight: 300;
	color: #636e74;
	padding: 5px  0;
	border: 1px solid #969fa3;
	font-family: "Paperlogy-3Light";
	line-height: 45px;
}
.list_btn a:hover  {
	background-color: #a7bbc5;
}
@media (max-width: 940px) {
	.work_pg .page_sub_title .sub_title_line  {
		display: none;
	}
	.work_pg .page_title {
		width: 100%;
		padding: 60px 0;
	}
	.work_pg .page_title strong {
		margin-top: 40px !important;
		font-size: 3.75em;
	}
	.work_pg .page_sub_title {
		margin-top: 80px;
	}
}
@media (max-width: 640px) {
	.work_pg .page_sub_title   {
		font-size: 2rem ;
	}
	.work_img {
		margin-bottom: 20px !important; 
	}
}
@media (max-width: 520px) {
	.projects {
		padding: 80px 20px 00px;
	}
	.work_pg .page_title {
		width: 100%;
		padding: 60px 0;
	}
	.work_pg .page_title strong {
		margin-top: 40px;
		font-size: 3.75em;
	}
}
@media (max-width: 480px) {
	.work_pg .page_title {
		width: 100%;
		padding: 60px 0;
	}
	.work_pg .page_title strong {
		margin-top: 40px;
		font-size: 2.5em;
        margin-bottom: -20px;
	}
	.work_pg .page_sub_title {
		margin-top: 50px;
	}
	.work {
        padding: 80px 20px 00px;
    }
	.work_pg .page_sub_title {
        font-size: 1.75rem;
    }
}
@media (max-width: 420px) {
	.list_btn a {
		width: 150px;
		font-size: 1.5rem;
		height: 50px;
		padding: 5px  0;
	}
}
@media (max-width: 420px) {
	.work {
		padding: 50px 20px 00px;
	}
}


/* 회사소개 */

.about_section {
	margin-top: -85px;
	position: absolute;
	top: 0;
    text-align: center;
    background-color: #c6ced2;
	position: relative;
	padding-bottom: 100px;
}
.about_section .page_title {
	width: 100%;
	padding: 100px 0;
	background: url(/resources/image/about/Refference_Header_Title_BG.jpg) no-repeat center center;
}
.about_section .page_title strong {
	display: block;
	margin-top: 20px;
    font-size: 4.375em;
	color: #fff;
	font-family: "Paperlogy-8ExtraBold";
}
.about_section .history_container {
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
	margin-top: 115px;
}
.about_section .history_container .page_sub_title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 2.625em;
	font-weight: 600;
}
.about_section .history_container .page_sub_title span {
	margin-bottom: 30px;
	color: #4d6576 !important;
	font-family: 'Paperlogy-6SemiBold';
}
.about_section .history_container .page_sub_title .sub_title_line {
	max-width: 1400px;
	padding: 0 30px;
}
.about_section .history_container .page_sub_title .sub_title_line img {
	width: 100%;
	height: 100%;
}

/* 히스토리 */

.swiper2 {
	margin-top: 65px;
	padding:0 20px;
	height: max-content;
	overflow: hidden;
	position: relative;
}
.swiper2 .swiper-slide {
	width: auto;
	background-color: transparent;
	height: auto !important;
	text-align: left;
}
.swiper2 .swiper-slide ul .his_title {
	font-family: "Paperlogy-7Bold";
	font-size: 1.625em;
	color:#6489a0;
	font-weight: 700;
	margin-bottom:10px;
}

.swiper2 .swiper-slide ul li {
	font-size: 1rem;
	margin-top:10px;
	color: #3d4d57;
	font-family: 'Paperlogy-4Regular';
}
.swiper2 .swiper-slide ul li span{
	font-size: 0.7rem;
	color: #3d4d57;
}
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50% !important;
    width: 20px !important;
    height: 30px !important;
    margin-top: -17px;
    cursor: pointer;
    background-size: 20px 30px !important;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper-button-next {
	background: url(/resources/image/about/slide_next_arrow.png) no-repeat;
	right: 0px !important;
    left: auto;
}
.swiper-button-prev {
	background: url(/resources/image/about/slide_prev_arrow.png) no-repeat;

	left: 0px !important;
    right: auto;
}
.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}
.abo_bg01 {
	max-width: 1400px;
    width: 100%;
    margin: 0 auto;
	margin-top: 70px;
}
.abo_bg01 ul {
	display: flex;
	gap: 20px;
}
@media (max-width: 940px) {
	.about_section .page_title {
		width: 100%;
		padding: 60px 0;
	}
	.about_section .page_title strong {
		margin-top: 40px !important;
		font-size: 3.75em;
	}
	.about_section .history_container {
		margin-top: 100px;
	}
		.about_section .history_container {
		margin-top: 100px;
	}
	.swiper-slide {
		width: 100%;
		height: 100%;
		min-height: auto;
		text-align: center;
		font-size: 1.125em;
		background: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.business_section .page_sub_title,
	.promise_section .page_sub_title {
		padding-top: 150px !important;
	}
}

@media (max-width: 520px) {
	.about_section .page_title {
		width: 100%;
		padding: 60px 0;
	}
	.about_section .page_title strong {
		margin-top: 40px;
		font-size: 3.75em;
	}
	.business_section .page_sub_title,
	.promise_section .page_sub_title {
		padding-top: 100px !important;
	}
}

@media (max-width: 480px) {
	.about_section .page_title {
		width: 100%;
		padding: 60px 0;
	}
	.about_section .page_title strong {
		margin-top: 40px;
		font-size: 2.5em;
        margin-bottom: -20px;
	}
	.about_section .history_container {
		margin-top: 80px;
	}
}
@media (max-width: 640px) {
	.about_section .history_container .page_sub_title {
		font-size: 2.25rem ;
	}
}
@media (max-width: 420px) {
	.swiper2 .swiper-slide ul .his_title {
		font-size: 1.25em;
	}
	.swiper-button-next, .swiper-button-prev {
		position: absolute;
		width: 17px !important;
		height: 34px !important;
		margin-top: -17px;
		z-index: 10;
		cursor: pointer;
		background-size: 17px 34px;
		background-position: center;
		background-repeat: no-repeat;
	}
	.swiper2 .swiper-slide ul li {
		font-size: 0.7rem !important;
	}
	.about_section .history_container .page_sub_title span,
	.business_section .page_sub_title,
	.promise_section .page_sub_title {
		font-size: 2rem !important;
	}
}
@media (max-width: 380px) {
	.about_section .history_container .page_sub_title span,
	.business_section .page_sub_title,
	.promise_section .page_sub_title {
		font-size: 1.875rem !important;
	}
}

/* 사업영역 */

.business_section {
	max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}
.business_section .page_sub_title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 2.625em;
	font-weight: 600;
	padding-top: 200px;
	font-family: "Paperlogy-6SemiBold";
}
.business_section .page_sub_title span {
	margin-bottom: 30px;
	color: #4d6576 !important;
}
.business_section .page_sub_title .sub_title_line {
	max-width: 1400px;
	padding: 0 30px;
}
.business_section .page_sub_title .sub_title_line img {
	width: 100%;
	height: 100%;
}
.abo_orgul {
	padding-top: 90px;
	display: grid;
	width: 100%;
	font-size:0;
    grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.abo_orgul li {
	display:inline-block;
	vertical-align:top;
	width: 100%;
	height:auto;
	margin-right:1%;
	margin-bottom:1%;
	border:#899fb0 solid 5px;
	border-radius:25px;
	padding:40px 20px;
	text-align:center;
}
.abo_orgul li:last-child {
	margin-right: 0px;
	background-color: #899fb0;
}
.abo_orgul li:first-child {
	background-color: #899fb0;
}
.abo_orgul li:last-child .abo_org_text ul li {
	color: #e2ebef !important;
}
.abo_orgul li:first-child .abo_org_text ul li {
	color: #e8f0f4 !important;
}
.abo_orgul li:first-child .abo_org_title01 {
	font-family: "Paperlogy-7Bold";
	font-size:2rem;
	color:#e8f0f4;
	line-height:1.3;
	font-weight: 600;
	margin-top: 30px;
}
.abo_orgul li:last-child .abo_org_title01 {
	font-family: "Paperlogy-7Bold";
	font-size:2rem;
	color:#e8f0f4;
	line-height:1.3;
	font-weight: 600;
	margin-top: 30px;
}
.abo_orgul li .abo_org_title01 {
	font-family: "Paperlogy-7Bold";
	font-size:2rem;
	color:#778997;
	line-height:1.3;
	font-weight: 600;
	margin-top: 30px;
}
.abo_orgul li .line {
	margin-top: 30px;
}
.abo_orgul li .abo_org_text {
	width: 100%;
}
.abo_orgul li .abo_org_text ul {
	padding: 40px 20px 0!important;
	margin: 0 auto;
}
.abo_orgul li .abo_org_text ul li {
	display:block !important;
	width:100% !important;
	margin-right:0 !important;
	margin-bottom:0 !important;
	border:none !important;
	border-radius:0 !important;
	text-align:left !important;
	padding: 5px 0 !important;
	font-size:1.5rem !important;
	height: auto !important;
	color: #778997 !important;
	font-family: "Paperlogy-6SemiBold";
	font-weight: 500;
}
.business_section .abo_org_img ul {
	display: flex;
	gap: 20px;
	margin-top: 60px;
}
.abo_orgul li .abo_org_text ul li img {
	width: 160px;
	height: 160px;
}
@media (max-width: 1024px) {
    .abo_orgul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:940px) {
	.abo_bg01 {
		padding: 0;
	}
	.abo_bg01 ul {
		display: flex;
		flex-direction: column;
	}
	.abo_bg01 ul li {
		width: 100%;
		height: 100%;
		padding: 0;
	}
	.abo_bg01 ul li img {
		width: 100%;
		height: 100%;
	}
	.business_section .abo_org_img ul {
		display: flex;
		flex-direction: column;
	}
	.business_section .abo_org_img ul li img {
		width: 100%;
		height: 100%;
	}
}
@media (max-width: 768px) {
    .abo_orgul {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
	.business_section .page_sub_title {
		font-size: 2.25rem;
	}
}
@media screen and (max-width:340px) {
	.swiper2 .swiper-slide {
		background-color: transparent;
		text-align: left;
	}
	.abo_orgul li {
		padding: 40px 10px;
	}
	.abo_orgul li .abo_org_title01 {
		font-size: 1.5rem;
	}
	.abo_orgul li .abo_org_text ul li {
		font-size: 1rem !important;
	}
	.business_section .page_sub_title {
		font-size: 2rem;
	}
	.abo_orgul {
		padding-top: 30px;
	}
}

.promise_section {
	max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
	padding-bottom: 130px;
}
.promise_section .page_sub_title {
    padding-top: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 2.625em;
	font-weight: 600;
	font-family: "Paperlogy-4Regular";
}
.promise_section .page_sub_title span {
	margin-bottom: 30px;
	color: #4d6576 !important;
}
.promise_section .page_sub_title .sub_title_line {
	max-width: 1400px;
	padding: 0 30px;
	margin-bottom: 30px;
}
.promise_section .page_sub_title .sub_title_line img {
	width: 100%;
	height: 100%;
}
.promise_section ul {
	max-width: 1400px;
	width: 100%;
	font-family: 'Paperlogy-4Regular';
}
.promise_section ul li {
	display: flex;
	gap: 70px;
	justify-content: space-between;
	padding: 25px 0;
	align-items: center;
	border-bottom: #353738 dashed 1px;
	text-align: left;
	margin: 0 50px;
}
.promise_section ul li .promise_img {
	width: 100px;
	height: 100px;
	margin-left: 50px;
}
.promise_section ul li .promise_img img {
	width: 100%;
	height: 100%;
}
.promise_section ul li .promise_txt .promise_title {
	font-size: 2rem;
	color: #567e9c;
	font-weight: 700;
	margin-bottom: 20px;
	font-family: 'Paperlogy-4Regular';
}
.promise_section ul li .promise_txt {
	width: 87%;
}
.promise_section ul li .promise_txt .promise_comment {
	font-size: 1.5rem;
	color: #4d6576;
	font-family: 'Paperlogy-4Regular';
}
@media screen and (max-width:940px) {
	.promise_section ul li {
		display: flex;
		flex-direction: column;
		text-align: center;
		margin: 0;
	}
	.promise_section ul li .promise_img {
		margin-left: 0;
	}
}
@media screen and (max-width:640px) {
	.promise_section ul li .promise_txt .promise_title {
		font-size: 1.875rem;
		color: #567e9c;
		font-weight: bold;
		margin-bottom: 15px;
	}
	.promise_section ul li .promise_txt .promise_comment {
		font-size: 1.25rem;
		color: #4d6576;
	}
	.promise_section .page_sub_title {
		font-size: 2.25rem;
	}
}
@media screen and (max-width:540px) {
	.promise_section ul li {
		gap: 30px;
	}
	.promise_section ul li .promise_img {
		width: 100px;
		height: 100px;
	}
}
@media screen and (max-width:420px){
	.promise_section ul li .promise_txt .promise_title {
		font-size: 1.3rem;
		color: #567e9c;
		font-weight: bold;
		margin-bottom: 20px;
	}
	.promise_section ul li .promise_txt .promise_comment {
		font-size: 1rem;
		color: #4d6576;
	}
	.promise_section ul li .promise_img {
		width: 100px;
		height: 100px;
	}
	.promise_section .page_sub_title .sub_title_line {
		margin-bottom: auto;
	}
}
@media screen and (max-width:350px) {
	.promise_section .page_sub_title {
		font-size: 2rem;
	}
	.promise_section ul li .promise_img {
		width: 100px;
		height: 100px;
	}
	.promise_section ul li .promise_txt .promise_title {
		font-size: 1rem;
		color: #567e9c;
		font-weight: bold;
		margin-bottom: 20px;
	}
	.promise_section ul li .promise_txt .promise_comment {
		font-size: 0.875rem;
		color: #4d6576;
	}
}


/* CONTACT */
.contact_section {
	background: url(/resources/image/Contact_pages/Contact_BG.jpg) no-repeat center center;
	margin-top: -80px;
	background-size: cover;
}
.contact_section .page_title {
	width: 100%;
}
.contact_section .page_title strong {
	display: block;
	padding-top: 100px;
	text-align: center;
    font-size: 4em;
	color: #fff;
	font-family: "Paperlogy-8ExtraBold";
}
.contact_container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    gap: 20px;
}

.contact_form, .contact_map {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    margin: 20px;
    flex: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
	position: relative;
}

.contact_form {
    max-width: 700px;
}

.contact_form h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.form_group {
    margin-bottom: 15px;
}

.form_group label {
    display: block;
    margin-bottom: 5px;
}

.form_group input,
.form_group textarea,
.email_input {
    width: 100%;
    padding: 0 30px;
	height: 50px;
    border: none;
    background-color: #000;
    color: #bbb;
	font-family: 'Paperlogy-4Regular';
}
.form_group input::placeholder,
.form_group textarea::placeholder,
.email_input::placeholder {
	color: #bbb;
	font-size: 1rem;
	font-family: 'Paperlogy-4Regular';
}
.form_group textarea {
	padding-top: 10px;
}
.email_input {
    display: flex;
    align-items: center;
    gap: 5px;
	background-color: transparent !important;
	padding: 10px 0 !important;
}

.email_input span {
    color: #bbb;
}

.email_input select {
    padding-left: 20px;
	height: 50px;
    border: 1px solid #000;
    background-color: #000;
    color: #bbb;
	font-family: 'Paperlogy-4Regular';
}


.information {
	text-align: left;
    color: #bbb;
	font-size: 1.22em;
    border: none;
    border: rgba(255, 255, 255, 0.3) solid 1px;
    height: 100px !important;
    box-shadow: none;
    margin-top: 5px;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.3);
}
.information h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.information p {
    font-size: 0.9rem;
}
.term_box {
    overflow: auto;
    box-sizing: border-box;
    max-height: 100px;
    margin: 9px 0 0 0;
    padding: 15px;
	background-color: #000;
}
.article {
    line-height: 18px;
    letter-spacing: -.43px;
	margin-left: 15px;
	color: #bbb;
	font-family: 'Paperlogy-4Regular';
}
.article_title {
	display: block;
    letter-spacing: -.38px;
    color: #ccc;
	font-family: 'Paperlogy-4Regular';
}
.article_text {
	font-size: 0.875em;
    margin-top: 5px;
	font-weight: 400;
	color: #bbb;
}

.privacy_policy {
    margin-top: 20px;
}
.privacy_policy .agree_check {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 100px;
	color: #bbb;
	font-family: 'Paperlogy-4Regular';
}
.contact_form .submit_button {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0);
    width: 200px;
	height: 60px;
    background-color: #ff7f00;
    border: none;
    border-radius: 50px;
    color: #ddd;
    font-size: 1.5rem;
    cursor: pointer;
	font-weight: 600;
	margin: 30px 0;
	font-family: 'Paperlogy-4Regular';
}
.contact_form .submit_button:hover {
	background-color: #d36c2c;
}
.contact_map {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.map {
    width: 100%;
    height: 300px;
    background: #555;
    border-radius: 10px;
    margin-bottom: 20px;
}
.root_daum_roughmap_landing {
	width: 100% !important;
	height: auto;
	border-radius: 10px;
}
.root_daum_roughmap {
	width: 100%;
	height: 100%;
}
.contact_info {
    color: #ddd;
    width: 100%;
}
.contact_info .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
    padding-bottom:40px;
    border-bottom:rgba(255,255,255,0.3) dashed 1px;
	font-family: 'Paperlogy-4Regular';
}
.contact_info .adress,
.contact_info .project_consultant,
.contact_info .phone {
	display: inline-block;
    vertical-align: top;
    width: 50%;
	font-family: 'Paperlogy-4Regular';
    font-size: 1rem;
}
.contact_info .phone {
	font-family: 'Paperlogy-4Regular';
    font-size: 0.8125rem;
    margin: 20px 0 5px 0;
	color: #ddd !important;
}

.contact_info h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    margin:20px 0 5px 0;
}

.contact_info p {
    font-size: 0.9rem;
	color: #ddd !important;
}

/* 반응형 스타일 */

@media (max-width: 940px) {
    .contact_container {
        flex-direction: column;
        align-items: stretch;
    }
    .contact_form, .contact_map {
        width: 100%;
        max-width: none;
        margin: 10px 0;
    }
    .contact_info {
        flex-direction: column;
        align-items: center;
    }
	.contact_section .page_title strong {
		font-size: 3.75em;
	}
}

@media (max-width: 640px) {
	.contact_form .submit_button {
		width: 150px;
		height: 50px;
		padding: 15px;
		font-size: 1rem;
	}
	.contact_info .top {
		display: flex;
		flex-direction: column;
        align-items: unset;
	}
	.contact_info .adress,
	.contact_info .project_consultant,
	.contact_info .phone {
		width: 100%;
	}
}
@media (max-width: 520px) {
	.contact_section .page_title strong {
		font-size: 3.75em;
	}
}
@media (max-width: 480px) {
	.contact_section .page_title strong {
		font-size: 2.5rem;
	}
    .contact_form h1 {
        font-size: 1.5rem;
    }
	.form_group textarea {
		padding-top: 10px !important;
	}
    .submit_button {
        font-size: 0.9rem;
        padding: 12px;
    }
    .contact_info h3 {
        font-size: 1rem;
    }
    .contact_info p {
        font-size: 0.8rem;
		color: #ddd !important;
    }
	.form_group input, 
	.form_group textarea,
	.email_input {
		width: 100%;
		padding: 0 15px;
		height: 50px;
		border: none;
		background-color: #000;
		color: #fff;
	}
	.form_group input::placeholder,
	.form_group textarea::placeholder,
	.email_input::placeholder {
		color: #bbb;
		font-size: 0.75rem;
	}
	.article_text {
		font-size: 0.8rem;
	}
	.email_input select {
		font-size: 0.8rem;
	}
	.article {
		margin-left: 0;
	}
	.privacy_policy .agree_check label {
		font-size: 0.875em;
	}
}
@media (max-width: 380px) {
    .article_text {
        font-size: 0.75rem;
    }
	.contact_container {
		margin-top: 10px;
		padding: 10px;
	}

	.form_group input, .form_group textarea, .email_input {
		padding-left: 5px;
	}
}


/* 한페이지 이미지구성 */


.fullpage {
	margin-top: -80px;
	height: 100vh;
}
.fullpage .mobile_ver {
	display: none;
	z-index: -1;
}
.fullpage img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}
@media (max-width: 940px) {
	.fullpage .desk {
		display: none;
	}
	.fullpage .mobile_ver {
		display: block;
	}
}