@charset "utf-8";

/*

SuperCon Lab 홈페이지 css

* File : common.css
* 
*
* SUMMARY:
* 01) root
* 02) global
* 03) layout


* 주의!
테마 파일로 옮길 때 이미지 경로 바꿔주기
url(/wp-content/uploads/to_top.png) -> url(/wp-content/uploads/to_top.png)

* Breakpoints
- 테블릿 : 1024px
- 모바일 : 767px
- 더 작은 모바일 : 480px


* font style
- 'Poppins', 'Pretendard', sans-serif;


*/




/* **************************************** *
 * root
 * **************************************** */
:root {
    /* color */
    --primary-color: #D83824;
	--primary-color2: #293A48;
	--bg-color: #EDF2F8;
    --font-color: #000;
    

    /* layout */
    --content-width: 1400px;
	--content-width-lg: 1740px;
    --content-padding: 0 16px; /* 컨텐츠 너비 아래로 줄였을때르 위한 padding */
	--content-gap: 0 40px;
	--content-gap-halb: 20px;

	/* font */
	--font-title: 'Poppins', 'Pretendard', sans-serif;

	/* font line-height */
	--text-line-height: 1.6em;
	--title-line-height: 1.4em;
}

@media screen and (max-width: 1024px) {
	:root {
		--content-gap: 0 16px;
		--content-gap-halb: 8px;
	}
}



/* **************************************** *
 * GLOBAL
 * **************************************** */
/* html {
	font-size: 20px;
 } */
html {
    overflow-x: hidden;
}
body {
	overflow-x: hidden;
	overflow-y: hidden; /* 메인 프로젝트 영역 들어가면 바디 영역이 늘어나길래...*/
	word-break: keep-all; 
	font-family: 'Poppins', 'Pretendard', sans-serif;
	color: var(--font-color);
	font-size: 20px;
	font-weight: 400;
	line-height: var(--text-line-height);}
html[lang="en-US"] body {
	font-size: 18px;
	letter-spacing: -0.03em;
}
* {
	box-sizing: border-box;
	font-family: 'Poppins', 'Pretendard', sans-serif;
}
a {
	color: var(--font-color);
	text-decoration: none;
}
.sr_only {
    position: fixed;
    top: -9999999999999999999999px;
    opacity: 0;
}
.br_pc {display:block;}
.br_t {display: none;}
.br_m,.image_m {display:none;}


@media screen and (max-width: 767px) {
	body, html[lang="en-US"] body {font-size: 16px;}
    .br_pc, .image_pc {display: none;}
    .br_m {display:block;}
	.image_m {display: inline-block;}
}


#wpadminbar {
	position: fixed;
}



/* selection */
::-moz-selection { background: var(--primary-color); color: #fff; }
::selection { background: var(--primary-color); color: #fff; }
img::-moz-selection { background: none; }
img::selection { background: none; }





/* **************************************** *
 * layout
 * **************************************** */
#main {
	padding-top: var(--header);
 }
.inno_section {
	width: 100%;
	padding: var(--content-padding);
	z-index: 20;
	position: relative;
	background: #fff;
}
.header_inner, .section_inner, .footer_inner {
    display: flex;
    flex-wrap: wrap;
    position: relative;
	margin: 0 auto;
	gap: var(--content-gap); /* global layout grid gap */
}
.section_content_width {
    width: 100%;
    max-width: var(--content-width);
}
.section_full_width {
    width: 100%;
}
.section_inner {
	padding-top: 160px;
	padding-bottom: 200px;
}
.section_padding-top {
	padding-top: 160px;
	padding-bottom: 0;
}
.section_padding-bottom {
	padding-top: 0;
	padding-bottom: 200px;
}
.section_no_padding {
	padding-top: 0;
	padding-bottom: 0;
}
.inno_column {
    width: 100%;
    position: relative;
}
.inno_column-9 {
	/* width: clac(100% - 25%); */
	width: calc((100% - 25%) - var(--content-gap-halb));
}
.inno_column-8 {
	/* width: 66.66%; */
	width: calc(66.66% - var(--content-gap-halb));
}
.inno_column-7 {
	/* width: calc(8.333% * 7); */
	width: calc((8.333% * 7) - var(--content-gap-halb));
}
.inno_column-6 {
    /* width: 50%; */
	width: calc(50% - var(--content-gap-halb));
}
.inno_column-5 {
	/* width: calc(8.333% * 5); */
	width: calc((8.333% * 5) - var(--content-gap-halb));
}
.inno_column-4 {
    /* width: 33.33%; */
	width: calc(33.33% - var(--content-gap-halb));
}
.inno_column-3 {
    /* width: 25%; */
	width: calc(25% - var(--content-gap-halb));
}
.title_column {
	padding-bottom: 80px;
	text-align: center;
}


@media screen and (max-width: 1024px) {
	.section_inner {
		padding-top: 100px;
		padding-bottom: 140px;
	}
	.section_padding-top {
		padding-top: 100px;
		padding-bottom: 0;
	}
	.section_padding-bottom {
		padding-bottom: 140px;
		padding-top: 0;
	}

	.inno_column-3, .inno_column-9 {
		width: 100%;
	}

	.title_column {
		padding-bottom: 64px;
	} 
	.title_column-s {
		padding-bottom: 48px;
	}
}

@media screen and (max-width: 767px) {
	.section_inner {
		padding-top: 60px;
		padding-bottom: 80px;
	}
	.section_padding-top {
		padding-top: 60px;
		padding-bottom: 0;
	}
	.section_padding-bottom {
		padding-bottom: 80px;
		padding-top: 0;
	}
	.inno_column-9, .inno_column-8, .inno_column-7, .inno_column-6, .inno_column-5, .inno_column-4, .inno_column-3, .inno_column-2 {
		width: 100%;
	}

	.title_column, .title_column-s {
		padding-bottom: 32px;
	}
}






/* **************************************** *
 * font default
 * **************************************** */
h1 {
	font-size: 70px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.4em;
}
h1 span.banner_en {
	font-weight: 600;
}
h1.page_title {
	font-size: 64px;
	color: #fff;
	font-weight: 700;
}
h2 {
	font-size: 56px;
	font-style: normal;
	line-height: 1.4em;
	font-weight: 700;
}
html[lang="en-US"] h2 {
	font-size: 48px;
	/* font-weight: 600; */
}
h2 strong {
	color: var(--primary-color);
	font-weight: 700;
}
h3 {
	font-size: 32px;
	line-height: 1.4em;
	font-style: normal;
	font-weight: 700;
}
html[lang="en-US"] h3 {
	font-size: 28px;
}
h3.title_lg, html[lang="en-US"] h3.title_lg {
	font-size: 44px;
}
h4 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.6em;
}
html[lang="en-US"] h4 {
	font-size: 22px;
	line-height: 1.4em;
}
p {
	line-height: var(--text-line-height);
}
p.txt_lg {
	font-size: 24px;
}
html[lang="en-US"] p.txt_lg {
	font-size: 20px;
}
strong {
	font-weight: 700;
}



@media screen and (max-width: 1024px) {
	h1 {
		font-size: 56px;
	}
	h1.page_title {
		font-size: 48px;
	}
	h2, html[lang="en-US"] h2 {
		font-size: 42px;
	}
	h3, html[lang="en-US"] h3 {
		font-size: 26px;
	}
	h4, html[lang="en-US"] h4 {
		font-size: 24px;
	}
	p.txt_lg {
		font-size: 22px;
	}
}


@media screen and (max-width: 767px) {
	h1 {
		font-size: 32px;
	}
	h1.page_title {
        font-size: 36px;
    }
	h2, html[lang="en-US"] h2 {
		font-size: 24px;
	}
	h3, html[lang="en-US"] h3 {
		font-size: 20px;
	}
	h4, html[lang="en-US"] h4 {
		font-size: 18px;
	}
	p.txt_lg {
		font-size: 16px;
	}
	html[lang="en-US"] p.txt_lg {
		font-size: 16px;
	}
}





/* **************************************** *
 * button default
 * **************************************** */

.btn {
	display: inline-flex;
	padding: 14px 18px 14px 24px;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	transition: .3s ease-in-out;
	border: 1px solid #000;
}
.btn:after {
	content:"";
	display: block;
	width: 26px;
	height: 26px;
	background: url(/wp-content/uploads/arrow_next_b.png) no-repeat center;
	background-size: cover;
}
.btn_txt {
	font-weight: 700;
	color: #000;
	font-size: 18px;
	line-height: 1.4em;
	transition: .3s ease-in-out;
}
.btn_w {
	border: 1px solid #fff;
}
.btn_w:after,
.btn:hover:after {
	background: url(/wp-content/uploads/arrow_next.png) no-repeat center;
	background-size: cover;
}
.btn_w .btn_txt {
	color: #fff;
}
.btn:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}
.btn:hover .btn_txt {
	color: #fff;
}
 


.btn_next {
	display: block;
	width: 48px;
	height: 48px;
	background: url(/wp-content/uploads/arrow_next_w.png) no-repeat center;
	background-size: 24px;
	border: 1px solid #fff;
	transition: .3s ease-in-out;
}
.btn_next:hover {
	/* border: 1px solid var(--primary-color); */
	background-color: var(--primary-color);
}


/* slick nav */
.carousel_nav_wrap {
	display: flex;
	/* justify-content: flex-end; */
	gap: 3px;
}
button.slick-arrow {
	appearance: none;
	outline: none;
	display: block;
	/* width: 70px;
	height: 70px; */
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
	border-radius: 0;
	transition: .3s ease-in-out;
	color: transparent;
	user-select: none;
	cursor: pointer;
}
button.slick-next.slick-arrow {
	background: transparent url(/wp-content/uploads/arrow_next.png) no-repeat center;
	background-size: 30px;
}
button.slick-prev.slick-arrow {
	background: transparent url(/wp-content/uploads/arrow_prev.png) no-repeat center;
	background-size: 30px;
}
button.slick-arrow:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

button.slick-arrow.slick-disabled {
	cursor: default;
}
button.slick-arrow.slick-disabled:hover {
	background-color: transparent;
}



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

@media screen and (max-width: 767px) {
	.btn {
		padding: 8px 16px;
	}
	.btn_txt {
		font-size: 14px;
	}
	.btn:after {
		width: 18px;
		height: 18px;
	}

	button.slick-arrow {
		width: 36px;
		height: 36px;
	}
	button.slick-next.slick-arrow, button.slick-prev.slick-arrow {
		background-size: 20px;
	}
}

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



/* **************************************** *
 * HEADER
 * **************************************** */
.inno_header {
	width: 100%;
	position: fixed;
	z-index: 99993;
	background: #fff;
    transition: .3s ease-in-out;
	padding: var(--content-padding);
}
.header_inner {
	justify-content: center;
	/* align-items: center; */
	align-items: stretch;
	gap: 40px;
    transition: .3s ease-in-out;
}
.header_content_width {
	width: 100%;
	max-width: var(--content-width-lg);
}

.header_logo {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s ease-in-out;
}
.header_sticky_logo {
	display: none;
}
.header_logo_link img {
	width: auto;
	height: 63px;
}


/* menu */
#inno_main_nav {
	height: 100%;
    display: flex;
    align-items: center;
}
#inno_main_nav .main-menu {
    display: flex;
    gap: 80px;
	align-items: center;
	height: 100%;
}

#inno_main_nav .main-menu > .menu-item {
	position: relative;
	height: 100%;
	/* padding: 36px 0; */
	transition: .3s ease-in-out;
}
#inno_main_nav .main-menu > .menu-item > a {
	position: relative;
	transition: .3s ease-in-out;
	font-weight: 600;
	height: 100%;
	display: flex;
	align-items: center;
	color: #000;
	font-size: 20px;
	padding: 36px 0;
	/* padding-right: 4.2vw; */
}

#inno_main_nav .main-menu > .menu-item:last-child > a {
	padding-right: 0;
}
#inno_main_nav .main-menu > .menu-item > a:hover {
	color: var(--primary-color);
}
#inno_main_nav .main-menu > .menu-item.current-menu-ancestor > a,
#inno_main_nav .main-menu > .menu-item.current-menu-item > a,
#inno_main_nav .main-menu > .menu-item.current-menu-parent > a,
#inno_main_nav .main-menu > .menu-item.current_page_item > a {
	color: var(--primary-color);
}





/* submenu */
#inno_main_nav .main-menu .sub-menu {
	display: none;
	position: absolute;
	padding: 0;
    width: 200px;
	background: #1B1A1E;
	top: 100%;
	left: -60px;
	box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
}
#inno_main_nav .main-menu .sub-menu .menu-item a {
    display: block;
    padding: 10px;
    color: #fff;
    font-size: 16px;
	font-weight: 600;
	text-align: center;
}
#inno_main_nav .main-menu .sub-menu .menu-item a span {
	font-weight: 600;
}

#inno_main_nav .main-menu .sub-menu .menu-item a:hover,
#inno_main_nav .main-menu .sub-menu .menu-item.current-menu-item a {
	background-color: var(--primary-color);
}







/* 다국어 */
.lang_btn_wrap {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s ease-in-out;
}
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul {
	display: flex;
	align-items: center;
	gap: 33px;
}
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul a {
	font-size: 16px;
	color: rgba(0, 0, 0, 0.30);
	font-weight: 600;
	transition: .3s ease-in-out;
	padding: 0;
}
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul li:first-child {
	position: relative;
}
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul li:first-child:after {	
	content:"";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -17px;
	width: 1px;
	height: 12px;
	background: rgba(0, 0, 0, 0.30);
}
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul li.wpml-ls-current-language a,
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul a:hover {
	color: var(--primary-color);
}



/* 영문 header */
html[lang="en-US"] #inno_main_nav .main-menu {
	gap: 48px;
}
html[lang="en-US"] #inno_main_nav .main-menu > .menu-item > a {
	font-size: 17px;
}
html[lang="en-US"] #inno_main_nav .main-menu .menu-item:nth-child(2) .sub-menu {
	left: -30px;
}
html[lang="en-US"] .lang_btn_wrap .wpml-ls-legacy-list-horizontal ul a {
	font-size: 14px;
}



/* header scroll */
.header-sticky {
    background: #fff;
}
.header-sticky .header_inner {
    padding-top: 0px;
    padding-bottom: 0px;
}
.header-sticky #inno_main_nav .main-menu > .menu-item.current-menu-ancestor > a,
.header-sticky #inno_main_nav .main-menu > .menu-item.current-menu-item > a,
.header-sticky #inno_main_nav .main-menu > .menu-item.current-menu-parent > a,
.header-sticky #inno_main_nav .main-menu > .menu-item.current_page_item > a {
	color: var(--primary-color);
}




/* mobile header */
.menu_mobile_btn {
	display: none;
	/* display: flex; */
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
    height: 17px;
	/* background : #fff; */
}
.menu_mobile_btn_line {
	display: block;
	width: 100%;
	height: 1px;
	background: #000;
}
/* .header_mobile_inner, */
#inno_mobile_nav {
    display: none;
}



@media screen and (max-width: 1200px) {
	#inno_main_nav .main-menu {
		gap: 48px;
	}
}



/* mobile header */
@media screen and (max-width: 1200px) {
	.inno_header {
		padding-left: 0;
		padding-right: 0;
	}
	.header_inner {
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		padding-top: 16px;
		padding-bottom: 16px;
		padding-left: 16px;
		padding-right: 16px;
	}
	.header-sticky .header_inner {
		padding-top: 16px;
		padding-bottom: 16px;
		padding-left: 16px;
		padding-right: 16px;
	}
	
	#inno_main_nav {
		width: 100%;
		display: none;
	}
	#inno_main_nav.menu_on {
		display: block !important;
	}
	.menu_mobile_btn {
		display: flex;
	}
	#inno_main_nav .main-menu {
		justify-content: flex-end;
		gap: 0;
		flex-direction: column;
		background: #fff;
	}
	#inno_main_nav .main-menu > .menu-item {
		padding: 12px 0;
		border-bottom: 1px solid var(--line-color);
	}
	#inno_main_nav .main-menu > .menu-item > a {
		color: #222;
		/* padding: 0 16px; */
		padding: 0;
		font-size: 14px;
		font-weight: 500;
	}
	html[lang="en-US"] .lang_btn_wrap .wpml-ls-legacy-list-horizontal ul a {
		padding: 0;
	}
	.header_logo {
        position: static;
        transform: unset;
    }
	.header_logo_link img {
        height: 39px;
    }




	/* lang */
	.lang_btn_wrap {
		margin-left: 0;
		margin-right: 64px;
		/* display: none; */
	}
	.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul a {
		font-size: 14px;
	}



	/* 모바일 버튼 */
	.menu_mobile_btn {
		display: flex;
	}
    /* 모바일 메뉴 */
	#inno_mobile_nav {
		position: relative;
		padding: 0;
	}
	#inno_mobile_nav .main-menu:before {
		content: "";
		position: absolute;
		left: -16px;
		top: 0;
		background: #fff;
		width: calc(100% + 16px + 16px);
		height: 100%;
		z-index: -1;
	}
    #inno_mobile_nav.menu_on {
        display: block;
    }
	#inno_mobile_nav .main-menu {
		justify-content: flex-end;
		gap: 0;
		flex-direction: column;
		background: #fff;
        /* padding-bottom: 16px; */

		height: calc(100vh - 62px);
        overflow-y: auto;
		padding-bottom: 60px;
	}

	#inno_mobile_nav .main-menu > .menu-item {
		border-bottom: 1px solid #dcdcdc;
	}
	#inno_mobile_nav .main-menu > .menu-item:last-child {
		border-bottom: 0;
	}
	#inno_mobile_nav .main-menu > .menu-item > a {
        position: relative;
		color: #222;
        padding: 12px 16px;
        font-size: 16px;
        font-weight: 600;
        display: block;
        /* border-bottom: 1px solid var(--line-color); */
	}
	#inno_mobile_nav .main-menu > .menu-item.menu-item-has-children > a:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translateY(-50%);
		width: 14px;
        height: 14px;
        background: url(/wp-content/uploads/menu_more_b.png) no-repeat center;
        background-size: cover;
		transition: .3s ease-in-out;
    }
	#inno_mobile_nav .main-menu > .menu-item.menu-item-has-children > a.submenu_on:before {
		transform: translateY(-50%) rotate(180deg);
	}
    #inno_mobile_nav .main-menu > .menu-item ul.sub-menu {
        display: none;
        /* padding: 4px 0; */
    }
	#inno_mobile_nav .main-menu > .menu-item > ul.sub-menu > li {
		margin-bottom: 2px;
		background: #f5f5f5;
	}
	#inno_mobile_nav .main-menu > .menu-item > ul.sub-menu li:last-child {
		margin-bottom: 0;
	}
    #inno_mobile_nav .main-menu > .menu-item ul.sub-menu > li > a {
		padding: 6px 24px;
        display: block;
        font-size: 14px;
        font-weight: 500;
    }
	
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children .sub-menu a span {
		display: inline-block;
		position: relative;
	}
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children .sub-menu a span:before {
		content: "-";
		display: inline-block;
		padding-right: 4px;
	}
	#inno_mobile_nav .main-menu > .menu-item.current_page_item > a,
	#inno_mobile_nav .main-menu > .menu-item.current-menu-ancestor > a,
	#inno_mobile_nav .main-menu > .menu-item.current-menu-parent > a,
	#inno_mobile_nav .main-menu > .menu-item.current_page_parent > a,
	#inno_mobile_nav .main-menu > .menu-item.current_page_ancestor > a {
		color: var(--primary-color);
	}
	#inno_mobile_nav .main-menu > .menu-item ul.sub-menu li.current-menu-item a,
	#inno_mobile_nav .main-menu > .menu-item ul.sub-menu li.current_page_item a {
		color: var(--primary-color);
		font-weight: 700;
	}

	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children > a {
		position: relative;
	}
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children > a:before {
		content:"";
		position: absolute;
		right: 16px;
		top: 50%;
        transform: translateY(-50%);
		width: 10px;
		height: 10px;
		background: url(/wp-content/uploads/menu_more_b.png) no-repeat center;
		background-size: 10px;
		transition: .3s ease-in-out;
	}
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children > a.submenu_on:before {
		transform: translateY(-50%) rotate(180deg);
	}
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children .sub-menu {
		background: #fff;
	}
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children .sub-menu a {
		color: #000;
		padding-left: 24px;
	}




	
}




/* **************************************** *
 * Footer
 * **************************************** */
 .inno_footer {
    background: #1B1A1E;
	position: relative;
	padding: var(--content-padding);
	z-index: 999;
}
.footer_inner {
    position: relative;
	width: 100%;
	max-width: var(--content-width);
}
.footer_content {
	padding: 64px 0 80px;
	width: 100%;
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	color: #fff;
}
.footer_logo img {
	width: 173px;
	height: auto;
}
.footer_txtbox {
	width: calc(100% - 161px);
	padding-right: 80px;
}
h4.footer_company {
	font-size: 20px;
}
.footer_info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer_info_block {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer_info_block dl {
	display: flex;
	gap: 8px 16px;
	line-height: 1.6em;
	flex-wrap: wrap;
}
.footer_info_block dl dt {
	font-weight: 600;
	width: 67px;
}
.footer_info_block dl dd {
	color: #fff;
	width: calc(100% - 16px - 67px);
}

.footer_copy {
	padding-top: 24px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.30);
}
.footer_copy strong {
	color: var(--primary-color);
}



/* floating menu */
.floating_menu_wrap {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 16px;
}


/* to top */
.floating_menu_top {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	background: #1B1A1E;
	position: relative;
	right: 0;
	bottom: -70px;
	transition: .3s ease-in-out;
	opacity: 0;
	border: 1px solid rgba(255, 255, 255, 0.20);

}
.floating_menu_top_show {
	opacity: 1;
	bottom: 0;
}
.floating_menu_top:before {
	content:"";
	width: 24px;
	height: 24px;
	background: url(/wp-content/uploads/totop.png) no-repeat center;
	background-size: cover;
}
.floating_menu_top:hover {
	background: var(--primary-color);

}



@media screen and (max-width: 1024px) {
	/* footer */
	.footer_content {
		padding: 56px 0 64px;
		flex-wrap: wrap;
		gap: 24PX;
		flex-direction: column-reverse;
	}
	.footer_logo {
		order: 0;
		max-width: unset;
		width: 100%;
	}
	.footer_logo img {
		width: 153px;
		max-width: unset;
	}
	.footer_txtbox {
		width: 100%;
	}


	/* floating menu */
	.floating_menu_wrap {
		gap: 8px;
	}
	.floating_menu_top {
		width: 50px;
		height: 50px;
	}
	.floating_menu_top:before {
		width: 20px;
		height: 20px;
	}
}

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



	/* footer */
	.footer_content {
		padding: 40px 0 56px;
		font-size: 14px;
		
	}
	.footer_logo img {
        width: 100px;
    }
	.footer_txtbox {
        font-size: 14px;
		padding-right: 0;
    }
	h4.footer_company {
		font-size: 14px;
	}
	.footer_info {
		gap: 4px;
	}
	.footer_info_block {
		flex-direction: column;
		gap: 4px;
	}
	.footer_info_block dl {
		padding-right: 0;
	}
	.footer_info_block dl:after {
		display: none;
	}
	.footer_info_block dl dd {
		width: 100%;
	}
	.footer_copy {
		padding-top: 24px;
	}


	.floating_menu_top {
		width: 40px;
		height: 40px;
	}
}


@media screen and (max-width: 480px) {
	.footer_info_block dl {
		flex-direction: column;
		gap: 2px;
	}
}






/* **************************************** *
 * main
 * **************************************** */
/* banner */
#main_banner {
	height: calc(100vh - var(--header));
	background-color: #000;
}
#main_banner .section_inner {
    width: 100%;
    height: 100%;
	padding: 0 16px;
}
#main_banner .inno_column {
    height: 100%;
    display: flex;
    align-items: flex-end;
	position: relative;
}
.main_banner_carousel_wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main_banner_carousel {
	width: 100%;
	height: 100%;
}
#main_banner .slick-arrow {
	position: absolute;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
}
#main_banner .slick-arrow.slick-prev {
	left: 80px;
}
#main_banner .slick-arrow.slick-next {
	right: 80px;
}
#main_banner .main_banner_carousel .section_inner {
	height: calc(100vh - var(--header));
}
.main_banner_carousel_bg {
	position: absolute;
	top: 0;
	left: 0;
}
.main_banner_carousel_item .main_banner_carousel_bg {
	width: 100%;
	height: calc(100vh - var(--header));
	/* transform: scale(1); */
}
.main_banner_carousel_item.slick-active .main_banner_carousel_bg {
	transition: 10s ease-in-out;
	animation: 10s linear 0s infinite bg_zoom;
}
.main_banner_carousel_item1 .main_banner_carousel_bg {
	background: url(/wp-content/uploads/main_banner_bg1-v2.jpg) no-repeat center;
	background-size: cover;
}
.main_banner_carousel_item2 .main_banner_carousel_bg {
	background: url(/wp-content/uploads/main_banner_bg2-v2.jpg) no-repeat center;
	background-size: cover;
}
.main_banner_carousel_item3 .main_banner_carousel_bg {
	background: url(/wp-content/uploads/main_banner_bg3.jpg) no-repeat center;
	background-size: cover;
}
.main_banner_carousel_item4 .main_banner_carousel_bg {
	background: url(/wp-content/uploads/main_banner_bg4.jpg) no-repeat center;
	background-size: cover;
}
.main_banner_carousel_item5 .main_banner_carousel_bg {
	background: url(/wp-content/uploads/main_banner_bg6.jpg) no-repeat center;
	background-size: cover;
}
.slick-active .main_banner_carousel_bg,
.slick-current .main_banner_carousel_bg {
	/* transform: scale(1.5); */
	animation: 20s linear 0s infinite bg_zoom;
}
@keyframes bg_zoom {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.2);
	}
  }
.main_banner_content {
    z-index: 10;
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
	justify-content: center;
	text-align: center;
    height: 100%;
	position: relative;
}
.main_banner_txtbox {
    width: 100%;
}
.banner_h1 {
	color: #fff;
}


#main_banner .main_banner_carousel_item4 .inno_column {
	position: relative;
	height: calc(100vh - var(--header));
}
#main_banner .main_banner_carousel_item4 .banner_bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
	z-index: -1;
}
#main_banner .main_banner_carousel_item4 .banner_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#main_banner .main_banner_carousel_item4 video.bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.main_videobox {
	position: relative;
    height: calc(100vh - var(--header));
    width: 100%;
	overflow: hidden;
	z-index: 10;
	margin: 0 auto;
}
.main_videobox iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




/* con1 */
.main_con1_title_col {
	width: 100%;
	max-width: var(--content-width);
	margin: 0 auto;
}
.section_title {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	position: relative;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.4em;
	color: var(--primary-color);
	margin-bottom: 32px;
}
.section_title_dots {
	width: 28px;
	height: 10px;
	background: url(/wp-content/uploads/title_dots.png) no-repeat center;
	background-size: cover;
	display: block;
}
.section_title-w {
	color: #fff;
}
.section_title-w .section_title_dots {
	background: url(/wp-content/uploads/title_dots-w.png) no-repeat center;
	background-size: cover;
}

.main_con1_content_col {
	width: 100%;
	max-width: 1720px;
	margin: 0 auto;
}
.main_con1_wrap {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 24px;
}
.main_con1_box {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 520px;
	transition: .7s ease-in-out;
	position: relative;
	overflow: hidden;
}
.main_con1_box1 {
	background: url(/wp-content/uploads/main_con1_bg1.jpg) no-repeat center;
	background-size: cover;
}
.main_con1_box2 {
	background: url(/wp-content/uploads/main_con1_bg2.jpg) no-repeat center;
	background-size: cover;
}
.main_con1_box3 {
	background: url(/wp-content/uploads/main_con1_bg3.jpg) no-repeat center;
	background-size: cover;
}
.main_con1_box.active {
	flex: 4;
}
.main_con1_box_title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4em;
	text-align: center;
	opacity: 1;
	transition: .3s ease-in-out;
	background: rgba(41, 58, 72, 0.90);
	width: 100%;
	height: 100%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.main_con1_box.active .main_con1_box_title {
	opacity: 0;
}
.main_con1_content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 56px;
	position: absolute;
	opacity: 0;
	transition: .3s ease-in-out;
	background: rgba(0, 0, 0, 0.40);
	color: #fff;
	padding-top: 120px;
}
.main_con1_box.active .main_con1_content {
	opacity: 1;
	padding-top: 0;
}
.main_con1_txtbox {
	text-align: center;
	width: 600px;
}
.main_con1_txtbox h3 {
	padding-bottom: 24px;
}
p.main_con1_notice {
    text-align: center;
    padding-top: 32px;
}


#main_con2 {
	background: url(/wp-content/uploads/main_con2_bg.jpg) no-repeat center;
	background-size: cover;
}
#main_con2 h2 {
	color: #fff;
}
#main_con2 .btn {
	margin-top: 40px;
}

.main_con2_carousel .slick-list {
	margin: 0 -12px;
	overflow: visible;
}
.main_con2_box {
	position: relative;
	margin: 0 12px;
}
.main_con2_txtbox {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(54, 81, 162, 0.00) 66.17%, #3651A2 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	padding: 16px 24px;
	color: #fff;
	font-weight: 700;
}

#main_con3 .section_inner {
	padding-top: 100px;
	padding-bottom: 0;
	gap: 0;
	max-width: 1720px;
}
.main_con3_wrap {
	display: flex;
	align-items: stretch;
}
.main_con3_box {
	width: 50%;
	height: 44.8vw;
	max-height: 860px;
	min-height: 500px;
	position: relative;
}
.main_con3_box1 {
	background: url(/wp-content/uploads/main_con3_bg1.jpg) no-repeat center;
	background-size: cover;
}
.main_con3_box2 {
	background: url(/wp-content/uploads/main_con3_bg2.jpg) no-repeat center;
	background-size: cover;
}
.main_con3_box:before {
	content:"";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(54, 81, 162, 0.00) 0%, #3651A2 100%);
	opacity: 0;
	transition: .3s ease-in-out;
}
.main_con3_box:hover:before {
	opacity: 1;
}
.main_con3_txtbox {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 56px;
	padding: 40px;
	text-align: center;
	z-index: 10;
	position: relative;
}
.main_con3_txt {
	color: #fff;
}
.main_con3_txt h2 {
	padding-bottom: 24px;
}

#main_con4 {
	background: url(/wp-content/uploads/main_con4_bg.jpg) no-repeat center;
	background-size: cover;
}
#main_con4 .section_inner {
	display: flex;
	align-items: center;
	padding-top: 140px;
	padding-bottom: 140px;
}
#main_con4 .main_con4_title_col {
	text-align: left;
	width: calc(100% - 260px - 40px);
	padding-bottom: 0;
}
#main_con4 .section_title {
	justify-content: flex-start;
}
.main_con4_content_col {
	width: 260px;
}
#main_con4 .main_contact_btn {
	width: 100%;
	max-width: 260px;
}


@media screen and (max-width: 1024px)  {
	/* banner */
	.main_banner_carousel_item.slick-active .main_banner_carousel_bg {
		animation-play-state: paused;
	}
	#main_banner .slick-arrow.slick-prev {
		left: 16px;
	}
	#main_banner .slick-arrow.slick-next {
		right: 16px;
	}
	.main_banner_content {
		padding-left: 60px;
		padding-right: 60px;
	}

	.main_con1_wrap {
		gap: 8px;
	}
	.main_con1_box_title {
		font-size: 26px;
	}
	.main_con1_txtbox {
		width: 400px;
	}
	h3.title_lg, html[lang="en-US"] h3.title_lg {
		font-size: 36px;
	}

	#main_con3 .section_inner {
		padding-top: 80px;
	}

	#main_con4 .section_inner {
		padding-top: 100px;
		padding-bottom: 140px;
		justify-content: center;
	}
	#main_con4 .main_con4_title_col {
		width: 100%;
		padding-bottom: 64px;
		text-align: center;
	}
	#main_con4 .section_title {
		justify-content: center;
	}
}


@media screen and (max-width: 767px)  {
	#main_banner, .main_banner_carousel_item .main_banner_carousel_bg,
	#main_banner .main_banner_carousel .section_inner,
	#main_banner .main_banner_carousel_item4 .inno_column {
		height: 500px;
	}
	.main_banner_content {
        padding-left: 40px;
        padding-right: 40px;
    }
	#main_banner .slick-arrow {
		top: auto;
		transform: unset;
		bottom: 24px;
	}
	/* #main_banner .slick-arrow.slick-prev {
		left: 4px;
	}
	#main_banner .slick-arrow.slick-next {
		right: 4px;
	} */


	.section_title {
		margin-bottom: 16px;
		gap: 8px;
	}
	.section_title_dots {
		width: 17px;
		height: 6px;
	}

	.main_con1_wrap {
		flex-direction: column;
	}
	.main_con1_box, .main_con1_box.active {
		flex: auto;
		width: 100%;
		height: auto;
	}
	.main_con1_box_title {
		display: none;
	}
	.main_con1_content, .main_con1_box.active .main_con1_content {
		height: auto;
		position: relative;
		opacity: 1;
		padding: 40px 24px !important;
		gap: 24px;
	}
	.main_con1_txtbox {
        width: 100%;
    }
	.main_con1_txtbox h3 {
		padding-bottom: 16px;
	}
	h3.title_lg, html[lang="en-US"] h3.title_lg {
        font-size: 24px;
    }
	p.main_con1_notice {
		padding-top: 16px;
	}

	#main_con2 .btn {
		margin-top: 24px;
	}
	.main_con2_carousel .slick-list {
		margin: 0 -4px;
	}
	.main_con2_box {
		margin: 0 4px;
	}
	.main_con2_txtbox {
		padding: 8px 16px;
	}

	#main_con3 .section_inner {
        padding-top: 60px;
    }
	.main_con3_wrap {
		flex-wrap: wrap;
		gap: 8px;
	}
	.main_con3_box {
		width: 100%;
		height: 260px;
		min-height: unset;
		max-height: unset;
	}
	.main_con3_txtbox {
		padding: 24px 8px;
		gap: 32px;
	}
	.main_con3_txt h2 {
		padding-bottom: 16px;
	}

	#main_con4 .section_inner {
        padding-top: 80px;
        padding-bottom: 100px;
    }
	.main_con4_content_col {
		width: 100%;
		text-align: center;
	}
	#main_con4 .main_contact_btn {
		width: 100%;
		max-width: 180px;
		padding: 12px 18px 12px 18px;
	}
	#main_con4 .main_con4_title_col {
		padding-bottom: 32px;
	}

}


@media screen and (max-width: 480px) {
	#main_banner, .main_banner_carousel_item .main_banner_carousel_bg, #main_banner .main_banner_carousel .section_inner, #main_banner .main_banner_carousel_item4 .inno_column {
        height: 360px;
    }
	.main_banner_content {
        padding-left: 0;
        padding-right: 0;
    }
	#main_banner .slick-arrow {
		display: none;
	}
}











 /* **************************************** *
 * subbanner
 * **************************************** */
#subbanner {
	height: 456px;
	background: url(/wp-content/uploads/subbanner_about.jpg) no-repeat center;
	background-size: cover;
}
#subbanner .section_inner, #subbanner .section_inner .inno_column {
	padding: 0;
	height: 100%
}
.subbanner_txtbox {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	color: #fff;
	text-align: center;
}
.subbnaner_parent {
	font-size: 24px;
	font-weight: 700;
}


@media screen and (max-width: 1024px) {
	#subbanner {
        height: 300px;
    }
	.subbanner_txtbox {
		gap: 16px;
	}
	.subbnaner_parent {
		font-size: 16px;
	}

	
}


@media screen and (max-width: 767px) {
	#subbanner {
        height: 240px;
    }
}





 /* **************************************** *
 * 101 회사소개 > 인사말
 * **************************************** */
#greeting_con1 .section_inner {
    padding-top: 120px;
	padding-bottom: 0;
    max-width: 1720px;
}
#greeting_con1 .section_inner:before {
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 592px;
	height: calc(100% - 120px - 160px);
	background: url(/wp-content/uploads/greeting_con1_bg.jpg) no-repeat center;
	background-size: cover;
	min-height: 320px;
}
#greeting_con1 .section_inner .inno_column {
    display: flex;
    align-items: flex-end;
	justify-content: space-between;
    width: 100%;
    max-width: 1432px;
	padding: 0 16px;
    margin: 0 auto;
	gap: 40px;
}
.greeting_con1_imgbox {
	width: calc(33.33% - 20px);
}
.greeting_con1_txtbox {
	width: calc(66.66% - 20px);
	max-width: 800px;
	color: #fff;
	padding: 0 0 8px 48px;
	margin-bottom: 64px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	border-left: 1px solid #FFF;
}
.greeting_con1_txtbox span.gre_title {
	font-size: 40px;
}
html[lang="en-US"] .greeting_con1_txtbox span.gre_title {
	font-size: 28px;
	white-space: nowrap;
	line-height: 1em;
}
h2 span.gre_color {
	color: #00A854;
}
.greeting_con1_company {
	font-size: 26px;
	font-weight: 600;
}
.greeting_position_wrap {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
}
.greeting_con1_company .greeting_position {
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 0;
    padding-top: 1px;
}
html[lang="en-US"] .greeting_con1_company p  {
	width: calc(100% - 16px - 114px);
}
html[lang="en-US"] .greeting_con1_company .greeting_position {
	width: 114px;
}

#greeting_con2 .section_inner {
    padding-top: 120px;
}
#greeting_con2 .inno_column {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.greeting_txtbox {
    display: flex;
    flex-direction: column;
    gap: 24px;
	text-align: justify;
}
.greeting_txtbox strong.strong_color {
	color: var(--primary-color);
}
p.greeting_ceo {
    padding-top: 40px;
    font-size: 24px;
    font-weight: 700;
}



@media screen and (max-width: 1024px) {
	#greeting_con1 .section_inner {
		padding-top: 64px;
	}
	#greeting_con1 .section_inner:before {
		height: calc(100% - 64px - 120px);
		min-height: 240px;
	}
	.greeting_con1_txtbox {
		margin-bottom: 40px;
		padding-left: 24px;
		gap: 8px;
	}
	.greeting_con1_txtbox span.gre_title, html[lang="en-US"] .greeting_con1_txtbox span.gre_title {
		font-size: 24px;
	}
	.greeting_con1_company .greeting_position {
		font-size: 18px;
	}
	.greeting_con1_company {
		font-size: 20px;
	}
	

	#greeting_con2 .section_inner {
		padding-top: 80px;
	}
	p.greeting_ceo {
		font-size: 20px;
	}
}

@media screen and (max-width: 767px) {
	#greeting_con1 .section_inner {
        padding-top: 48px;
    }
	#greeting_con1 .section_inner:before {
		height: calc(100% - 40px);
        min-height: unset;
    }
	.greeting_con1_txtbox {
        margin-bottom: 24px;
        padding-left: 16px;
        padding-bottom: 4px;
        gap: 8px;
    }
	.greeting_con1_txtbox span.gre_title, html[lang="en-US"] .greeting_con1_txtbox span.gre_title {
        font-size: 16px;
    }
	.greeting_con1_company .greeting_position {
		font-size: 16px;
		padding-top: 0;
	}
	html[lang="en-US"] .greeting_con1_company p  {
		width: calc(100% - 16px - 73px);
	}
	html[lang="en-US"]  .greeting_con1_company .greeting_position {
		width: 73px;
	}
	.greeting_con1_company {
		font-size: 16px;
	}

	#greeting_con2 .section_inner {
        padding-top: 40px;
    }
	.greeting_txtbox {
		gap: 16px;
		text-align: left;
	}
	p.greeting_ceo {
		font-size: 16px;
		padding-top: 24px;
	}
}

@media screen and (max-width: 480px) {
	#greeting_con1 .section_inner .inno_column {
		flex-wrap: wrap;
		flex-direction: column-reverse;
		align-items: flex-start;
		justify-content: center;
		gap: 0;
	}
	#greeting_con1 .section_inner:before {
        height: calc(100% - 16px);
    }
	.greeting_con1_imgbox {
		width: 90%;
		margin: 0 auto;
	}
	.greeting_con1_txtbox {
		width: 100%;
		margin-bottom: 24px;
	}
}



 /* **************************************** *
 * 102 회사소개 > CEO 프로필
 * **************************************** */
#ceo_con1 .inno_column {
	display: flex;
	gap: 24px;
	flex-direction: column;
}
.ceo_col_wrap {
	display: flex;
	gap: 24px;
	align-items: stretch;
}
.ceo_col {
	width: calc(50% - 12px);
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.ceo_box1 {
	display: flex;
	padding: 40px;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	color: #fff;
	background: var(--primary-color2);
	font-weight: 700;
	height: 100%;
	position: relative;
}
.ceo_box1:before {
	content:"";
	position: absolute;
	right: 40px;
	bottom: 40px;
	background: url(/wp-content/uploads/ceo_icon1.png) no-repeat center;
	background-size: cover;
	width: 82px;
	height: 82px;
}
.ceo_box1 h2, html[lang="en-US"] .ceo_box1 h2 {
	font-size: 40px;
}
.ceo_box1 h2 span {
	font-size: 20px;
	font-weight: 600;
	white-space: nowrap;
}
.ceo_box1 .greeting_con1_company {
	padding-right: 90px;
}
.ceo_box1 .greeting_con1_company p {
	font-size: 20px;
}
.ceo_box {
	display: flex;
	padding: 32px;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
	border-top: 1px solid var(--primary-color2);
	background: var(--bg-color);
}
.ceo_box h4 {
	color: var(--primary-color2);
}
ul.list_dots {
	display: block;
	display: flex;
	flex-direction: column;
}
ul.list_dots > li {
	position: relative;
	padding-left: 17px;
	display: block;
	line-height: 1.6em;
	width: 100%;
}
ul.list_dots > li:before {
	content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 4.5px;
    height: 4.5px;
    border-radius: 50%;
    background: #000;
	display: block;
}
.ceo_box2 {
	flex-direction: row;
	padding: 40px;
	align-items: stretch;
}
.ceo_box2 h4 {
	width: 25%;
	padding-right: 40px;
	position: relative;
}
.ceo_box2 h4:before {
	content:"";
	position: absolute;
	left: 0;
	bottom: 0;
	background: url(/wp-content/uploads/ceo_icon2.png) no-repeat center;
	background-size: cover;
	width: 195px;
	height: 195px;
}
.ceo_box2_list {
	width: 75%;
}
.ceo_box2_list > li {
	padding: 32px 0;
	border-bottom: 1px dashed #72828F;
}
.ceo_box2_list > li:first-child {
	padding-top: 0;
}
.ceo_box2_list > li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.ceo_box2_list > li > p {
	font-weight: 700;
	color: var(--primary-color2);
}
.ceo_box2_list_li {
	padding-top: 16px;
	font-size: 18px;
}
html[lang="en-US"] .ceo_box2_list_li {
	font-size: 16px;
}
.ceo_box2_list_li li {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid rgba(165, 182, 196, 0.30);
	padding: 4px 0;
}
.ceo_box2_list_li li .ceo_list_period {
	width: 170px;
	padding-right: 24px;
	color: #72828F;
	font-weight: 600;
}
.ceo_box2_list_li li .ceo_list_txt {
	width: calc(100% - 170px);
}


.ceo_etc_box {
	padding-top: 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}
a.ceo_resume_link {
    display: inline-block;
    border: 1px solid var(--primary-color2);
    padding: 16px 32px;
    font-weight: 700;
    color: var(--primary-color2);
	transition: .3s ease-in-out;
}
a.ceo_resume_link:hover {
	background: var(--primary-color2);
	color: #fff;
}
.ceo_etc_txtbox a {
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 1px solid;
}



@media screen and (max-width: 1024px) {
	#ceo_con1 .inno_column {
		gap: 16px;
	}
	.ceo_col_wrap {
		gap: 16px;
	}
	.ceo_col {
		gap: 16px;
	}
	.ceo_box1 {
		padding: 32px;
	}
	.ceo_box2 {
		padding: 32px;
		flex-direction: column;
	}
	.ceo_box1:before {
		right: 32px;
		bottom: 32px;
		width: 60px;
		height: 60px;
	}
	
	.ceo_box2 h4:before {
		display: none;
	}
	.ceo_box2_list {
		width: 100%;
	}
	.ceo_box2 h4 {
		width: 100%;
		padding-right: 0;
	}
	.ceo_box2_list > li {
		padding: 16px 0;
	}
	.ceo_box2_list_li, html[lang="en-US"] .ceo_box2_list_li {
		font-size: 16px;
		padding-top: 8px;
	}
	
}

@media screen and (max-width: 767px) {
	.ceo_col_wrap {
		flex-wrap: wrap;
	}
	.ceo_col {
		width: 100%;
	}
	.ceo_box1 h2, html[lang="en-US"] .ceo_box1 h2  {
		font-size: 26px;
	}
	.ceo_box1 h2 span {
		font-size: 16px;
	}
	.ceo_box1 {
		padding: 24px 56px 24px 16px;
		gap: 24px;
	}
	.ceo_box1:before {
		right: 16px;
		bottom: 24px;
		width: 40px;
		height: 40px;
	}
	.ceo_box1 .greeting_con1_company {
		padding-right: 0;
	}
	.ceo_box1 .greeting_con1_company p {
		font-size: 16px;
	}
	.ceo_box {
		padding: 24px 16px;
	}
	.ceo_box2_list_li li .ceo_list_period,
	.ceo_box2_list_li li .ceo_list_txt {
		width: 100%;
		font-size: 14px;
	}

	.ceo_etc_box {
		padding-top: 24px;
		gap: 24px;
	}
	a.ceo_resume_link {
		padding: 10px 24px 8px;
	}
}





 /* **************************************** *
 * 103 회사소개 > 협력사
 * **************************************** */
#partners_con1 .section_inner {
	padding-bottom: 0;
}
h2.section_h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}
#partners_con2 {
	background: url(/wp-content/uploads/partners_bg.jpg) no-repeat center;
	background-size: cover;
}
#partners_con2 .section_inner {
	padding-top: 120px;
}
.partners_con2_col_title {
	text-align: center;
	padding-bottom: 80px;
	color: #fff;
}
.partners_con2_col_title h3, html[lang="en-US"] .partners_con2_col_title h3 {
	font-size: 48px;
	color: #FFF;
	font-weight: 600;
	letter-spacing: 0.09em;
	padding-bottom: 8px;
}
.partners_con2_col_title p {
	font-size: 18px;
	letter-spacing: 0.22em;
	font-weight: 500;
}
.partners_con2_col_content {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 24px;
}
.partners_box {
	width: calc(33.33% - 16px);
	display: flex;
	padding: 40px 16px;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid #FFF;
	background: rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(10px);
}
.partners_title {
	width: 100%;
	color: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	text-align: center;
	padding-bottom: 24px;
}
.partners_title:before {
	content:"";
	display: block;
	width: 48px;
	height: 48px;
	background: url(/wp-content/uploads/partners_icon1.png) no-repeat center;
	background-size: cover;
}
.partners_box2 .partners_title:before {
	background: url(/wp-content/uploads/partners_icon2.png) no-repeat center;
	background-size: cover;
}
.partners_box3 .partners_title:before {
	background: url(/wp-content/uploads/partners_icon3.png) no-repeat center;
	background-size: cover;
}
.partners_list {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.partners_list li {
	width: 100%;
	padding: 4px 4px 2px;
	text-align: center;
	border-radius: 8px;
	border: 1px solid #AEBEC4;
	background: #FFF;
	font-size: 18px;
}
html[lang="en-US"] .partners_list li {
	font-size: 16px;
}
.partners_li_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
}
.partners_sub {
	display: block;
	line-height: 1.6em;
	color: #A0A0A0;
}


@media screen and (max-width: 1024px) {
	#partners_con2 .section_inner {
		padding-top: 64px;
	}
	.partners_con2_col_title h3, html[lang="en-US"] .partners_con2_col_title h3 {
		font-size: 32px;
	}
	.partners_con2_col_title p {
		font-size: 16px;
		letter-spacing: 0.05em;
	}
	.partners_con2_col_title {
		padding-bottom: 56px;
	}
	.partners_con2_col_content {
		gap: 8px;
	}
	.partners_box {
		width: calc(33.33% - 5.33px);
	}
}

@media screen and (max-width: 767px) {
	h2.section_h2 {
		gap: 16px;
	}
	#partners_con2 .section_inner {
        padding-top: 48px;
    }
	.partners_con2_col_title h3, html[lang="en-US"] .partners_con2_col_title h3 {
        font-size: 26px;
        letter-spacing: 0.2em;
    }
	.partners_con2_col_title p {
        font-size: 14px;
        letter-spacing: 0.05em;
    }
	.partners_con2_col_title {
		padding-bottom: 40px;
	}
	.partners_con2_col_content {
		flex-direction: column;
		gap: 40px;
	}
	.partners_box {
        width: 100%;
        padding: 24px 8px 8px;
    }
	.partners_list li, html[lang="en-US"] .partners_list li {
		font-size: 14px;
	}
	.partners_li_wrap {
		flex-direction: column;
	}
}



 /* **************************************** *
 * 104 회사소개 > CI
 * **************************************** */
.ci_con1_col {
	display: flex;
	flex-direction: column;
	gap: 120px;
}
.ci_con1_content1 {
	border: 1px solid #A0A0A0;
	padding: 80px 40px;
	background: url(/wp-content/uploads/ci_grid.png) no-repeat center;
	background-size: cover;
	text-align: center;
}
.ci_con1_content1 img {
	width: 414px;
	height: auto;
}
.ci_con1_content {
	display: flex;
	align-items: flex-start;
}
.ci_con1_content1 {
	justify-content: center;
}
.ci_con1_content h3 {
	width: 33.33%;
	padding-right: 40px;
}
h3.h3_dots {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
h3.h3_dots span.section_title_dots {
    margin-top: 14px;
}
h3.h3_dots .h3_txt {
    width: calc(100% - 16px - 28px);
	text-align: left;
}
.ci_con1_box {
	width: 66.66%;
}
.ci_con1_box h4 {
	padding-bottom: 24px;
}
.ci_color_list {
	display: flex;
	align-items: stretch;
	gap: 16px;
}
.ci_color {
	width: calc(25% - 12px);
	display: flex;
	padding: 24px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex: 1 0 0;
	color: #fff;
	text-align: center;
	font-size: 18px;
}
html[lang="en-US"] .ci_color {
	font-size: 16px;
	gap: 4px;
}
.ci_color1 {
	background: #0F3075;
}
.ci_color2 {
	background: #BC1B1F;
}
.ci_color3 {
	border: 1px solid #DCDCDC;
	background: #FFF;
	color: #000;
}
.ci_color4 {
	background: #000;
}
.ci_color .ci_color_title {
	font-size: 20px;
	font-weight: 700;
}
.ci_color_txt {
	padding-top: 24px;
}
.ci_con1_lang li:first-child {
	padding-bottom: 32px;
	border-bottom: 1px dashed #72828F;
}
.ci_con1_lang li:last-child {
	padding-top: 32px;
}
.ci_slogan {
	padding: 56px 24px;
	background-color: var(--bg-color);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4em;
	text-align: center;
	letter-spacing: 0.1em;
}
.ci_slogan_txt {
	padding-top: 24px;
}
#ci_con2 {
	background: url(/wp-content/uploads/ci_con2_bg.jpg) no-repeat center;
	background-size: cover;
}
#ci_con2 .section_inner {
	gap: 0;
	padding-bottom: 160px;
	align-items: center;
}
#ci_con2 .inno_column {
	width: 50%;
}
#ci_con2 .title_column {
	padding-right: 40px;
	padding-bottom: 0;
}
#ci_con2 .title_column p {
	text-align: left;
	padding-top: 24px;
}
.ci_con2_col {
	display: flex;
	justify-content: center;
}
.ci_con2_col img {
	height: 178px;
	width: auto;
}


@media screen and (max-width: 1024px) {
	
	.ci_con1_content1 img {
		width: 300px;
		height: auto;
	}
	.ci_con1_col {
		gap: 80px;
	}
	#ci_con2 .section_inner {
		gap: 0;
		padding-bottom: 100px;
	}
	.ci_con1_content {
		flex-wrap: wrap;
	}
	.ci_con1_content1 {
		padding: 48px 8px;
	}
	.ci_con1_content h3 {
		width: 100%;
		padding-bottom: 24px;
		padding-right: 0;
	}
	h3.h3_dots span.section_title_dots {
		margin-top: 12px;
	}
	.ci_con1_box {
		width: 100%;
	}
	.ci_con1_box h4 {
		padding-bottom: 16px;
	}
	.ci_slogan {
		padding: 40px 16px;
		font-size: 26px;
	}
	.ci_con2_col img {
		height: 130px;
		width: auto;
	}
	
}

@media screen and (max-width: 767px) {
	.ci_con1_content1 img {
		width: 80%;
		max-width: 260px;
	}
	.ci_con1_content h3 {
		padding-bottom: 16px;
	}
	.ci_con1_col {
        gap: 56px;
    }
	.ci_con1_box h4 {
        padding-bottom: 8px;
    }
	.ci_color_list {
		flex-wrap: wrap;
		gap: 8px;
	}
	.ci_color {
		width: calc(50% - 4px);
		flex: unset;
		font-size: 14px;
		padding: 16px;
	}
	html[lang="en-US"] .ci_color {
		font-size: 14px;
	}
	html[lang="en-US"] .ci_color p {
		line-height: 1.4em;
	}
	.ci_color .ci_color_title {
		font-size: 16px;
	}
	.ci_color_txt, .ci_slogan_txt, #ci_con2 .title_column p {
		padding-top: 16px;
	}
	.ci_con1_lang li:first-child {
		padding-bottom: 16px;
	}
	.ci_con1_lang li:last-child {
		padding-top: 16px;
	}
	.ci_slogan {
		padding: 32px 16px;
		font-size: 20px;
	}

	#ci_con2 .inno_column {
		width: 100%;
	}
	#ci_con2 .title_column {
		padding-right: 0;
		padding-bottom: 32px;
	}

	h3.h3_dots {
		gap: 8px;
	}
	h3.h3_dots span.section_title_dots {
		margin-top: 11px;
	}
	h3.h3_dots .h3_txt {
		width: calc(100% - 8px - 17px);
		text-align: left;
	}
}




 /* **************************************** *
 * 201 슈퍼콘크리트™ > 기술
 * **************************************** */
#subbanner.subbanner_tech {
	background: url(/wp-content/uploads/subbanner_tech.jpg) no-repeat 56% center;
	background-size: cover;
}
#subpage_nav_con {
	width: 100%;
	z-index: 100;
}
#subpage_nav_con.nav_tap_padding {
	padding-bottom: 80px; /*  고정되는 서브메뉴 높이만큼 */
}
#subpage_menu {
	width: 100%;
	border-bottom: 1px solid #DCDCDC;
	background: #FFF;
	z-index: 100;
	padding-left: 16px;
	padding-right: 16px;
}
#subpage_menu.nav_tap_fixed {
    position: fixed;
    top: var(--header);
    left: 0;
	border-top: 1px solid #dcdcdc;
}
/* 어드민 바 */
.admin-bar #subpage_menu.nav_tap_fixed {
	top: calc(32px + 104px);
}
#subpage_menu ul {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	gap: 80px;
	align-items: center;
	justify-content: center;
}
#subpage_menu ul a {
	display: block;
	padding: 24px 0px;
	font-weight: 600;
	color: #A0A0A0;
	text-align: center;
	line-height: 1.4em;
}
#subpage_menu ul li.current-menu-item a,
#subpage_menu ul a:hover {
	color: var(--primary-color);
}
.business_anchor {
	padding-top: 104px;
    margin-top: -104px;
    position: relative;
	overflow: hidden;
    top: 0;
	z-index: -1;
}

.tech1_con1_txtbox {
	display: flex;
	flex-direction: column;
	gap: 24px;
	text-align: justify;
}
.tech_con2_col {
	padding-top: 120px;
}

#tech1_con2 {
	background: var(--bg-color);
}
.tech1_con2_wrap {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	align-items: stretch;
}
.tech1_con2_box {
	width: calc(33.33% - 16px);
	background: #fff;
}
.tech1_con2_titlebox {
	padding: 32px 24px 24px 24px;
	background: url(/wp-content/uploads/tech1_con2_title_bg.jpg) no-repeat center;
	background-size: cover;
}
html[lang="ko-KR"] .tech1_con2_box:last-child .tech1_con2_titlebox {
	min-height: 204px;
}
html[lang="en-US"] .tech1_con2_box:last-child .tech1_con2_titlebox  {
	min-height: 212px;
}
.tech1_con2_titlebox h4 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
	color: #fff;
	position: relative;
}
.tech1_con2_titlebox h4:before {
	content:"";
	display: block;
	width: 48px;
	height: 48px;
}
.tech1_con2_box1 .tech1_con2_titlebox h4:before {
	background: url(/wp-content/uploads/tech1_con2_icon1.png) no-repeat center;
	background-size: cover;
}
.tech1_con2_box2 .tech1_con2_titlebox h4:before {
	background: url(/wp-content/uploads/tech1_con2_icon2.png) no-repeat center;
	background-size: cover;
}
.tech1_con2_box3 .tech1_con2_titlebox h4:before {
	background: url(/wp-content/uploads/tech1_con2_icon3.png) no-repeat center;
	background-size: cover;
}
.tech1_con2_box4 .tech1_con2_titlebox h4:before {
	background: url(/wp-content/uploads/tech1_con2_icon4.png) no-repeat center;
	background-size: cover;
}
.tech1_con2_box5 .tech1_con2_titlebox h4:before {
	background: url(/wp-content/uploads/tech1_con2_icon5.png) no-repeat center;
	background-size: cover;
}
.tech1_con2_box6 .tech1_con2_titlebox h4:before {
	background: url(/wp-content/uploads/tech1_con2_icon6.png) no-repeat center;
	background-size: cover;
}
.tech1_con2_txtbox {
	padding: 24px 24px 24px 24px;
}

.tech1_con2_sm {
	font-size: 14px;
	text-align: right;
	display: block;
}



.tech1_con3_tap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	align-self: stretch;
}
.tech1_con3_tap li {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex: 1 0 0;
	border-right: 1px solid rgba(255, 255, 255, 0.30);
	background: var(--primary-color2);
}
.tech1_con3_tap li:last-child {
	border-right: 0;
}
.tech1_con3_tap li.current_tap {
	background: var(--primary-color);
}
.tech1_con3_tap li a {
	width: 100%;
	padding: 16px 24px;
	text-align: center;
	font-size: 24px;
	color: #fff;
	line-height: 1.6em;
	font-weight: 700;
}
.tech1_con3_box {
	display: none;
}
.tech1_con3_box.current_box {
	display: flex;
	padding: 40px;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	background: var(--bg-color);
}
.tech1_con3_box h3 {
	display: none;
}
.tech1_con3_item {
	width: 100%;
}
.tech1_con3_item > li {
	display: flex;
	padding: 32px 8px 32px;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
	border-bottom: 1px dashed #72828F;
}
.tech1_con3_item > li:first-child,
.tech1_con3_item2 > li:nth-child(2) {
	padding-top: 0;
}
.tech1_con3_item > li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.tech1_con3_item2 {
	display: flex;
	flex-wrap: wrap;
}
.tech1_con3_item2 > li {
	width: 50%;
}
.tech1_con3_item > li h4 {
	color: var(--primary-color2);
}
.tech1_con3_list_sub {
    font-size: 16px;
}
.tech1_con3_box_rnd .tech1_con3_item > li h4 {
	position: relative;
	padding-left: 27px;
}
.tech1_con3_box_rnd .tech1_con3_item > li:first-child h4 {
	padding-left: 0;
}
.tech1_con3_num {
	position: absolute;
	display: inline-block;
	left: 0;
}
/* span.tech1_con3_block {
    display: inline-block;
    width: 27px;
} */




#tech1_con4 {
	background: var(--bg-color);
}
.tech1_con4_column {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 80px;
	align-self: stretch;
}
.tech1_con4_content {
	width: 100%;
	background: #fff;
}
.tech1_con4_content .h3_dots {
	display: flex;
	padding: 20px 32px;
	align-items: center;
	gap: 16px;
	align-self: stretch;
	background: var(--primary-color2);
	color: #fff;
}
.tech1_con4_content h3.h3_dots span.section_title_dots {
    margin-top: 0;
}
.tech1_con4_content .h3_dots .section_title-w {
	background: url(/wp-content/uploads/title_dots-w.png) no-repeat center;
	background-size: cover;
}
.tech1_con4_box {
	display: flex;
	padding: 32px;
	flex-direction: column;
	gap: 40px;
}
.tech1_con4_txtbox {
	width: 100%;
}
.tech1_con4_txtbox strong {
	color: var(--primary-color);
}
.tech1_con4_imgbox {
	width: 100%;
	display: flex;
	gap: 24px;
	justify-content: space-between;
}
.tech1_con4_imgbox img {
	width: calc(50% - 12px);
}
.tech1_con4_imgbox2 img {
	width: calc(50% - 20px);
}
.tech1_con4_video_wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
}
.tech1_con4_video_box {
	display: flex;
	padding-bottom: 20px;
	justify-content: center;
	align-items: center;
	gap: 40px;
	align-self: stretch;
	border-bottom: 1px dashed #DCDCDC;
}
.tech1_con4_video_box:last-child {
	padding-top: 20px;
	padding-bottom: 0;
	border-bottom: 0;
}
.tech1_con4_videobox_wrap {
	width: calc(50% - 20px);
}
.tech1_con4_videobox {
	position: relative;
	padding-bottom: 56.25%;
    height: 0;
    width: 100%;
	overflow: hidden;
	z-index: 10;
	margin: 0 auto;
}
.tech1_con4_videobox iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.tech1_con4_video_txtbox {
	width: calc(50% - 20px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 0 0;
}
.tech1_con4_video_txtbox h4 {
	color: var(--primary-color2);
	padding-bottom: 16px;
}
.tech1_con4_video_title {
	margin-top: 40px;
	display: flex;
	padding: 4px 16px 2px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	border: 1px solid #DCDCDC;
	background: #EEE;
	font-size: 18px;
	color: #838383;
}
.tech1_con4_txtbox strong {
	color: var(--primary-color);
}
.tech1_con4_txtbox h4 {
	color: var(--primary-color2);
	padding-bottom: 16px;
}


ul.tech1_con4_col2_list {
    display: flex;
    gap: 40px 24px;
    flex-wrap: wrap;
}
ul.tech1_con4_col2_list li {
    width: calc(16.66% - 20px);
    text-align: center;
    display: flex;
    flex-direction: column;
	align-items: center;
	gap: 16px;
}
ul.tech1_con4_col2_list li p {
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 500;
}
.tech1_con4_imgbox3 {
    gap: 40px;
}
.tech1_con4_col4_txtbox p {
    color: #A0A0A0;
    font-size: 16px;
}


@media screen and (max-width: 1024px) {
	#subpage_menu.nav_tap_fixed {
		position: fixed;
		top: 71px;
		left: 0;
		border-top: 1px solid #dcdcdc;
	}
	.admin-bar #subpage_menu.nav_tap_fixed {
		top: calc(32px + var(--header));
	}
	#subpage_menu ul {
		gap: 32px;
	}
	#subpage_menu ul a {
		padding: 12px 0;
		font-size: 16px;
	}

	.tech_con2_col {
		padding-top: 80px;
	}
	.tech1_con2_wrap {
		gap: 16px;
	}
	.tech1_con2_box {
		width: calc(50% - 8px);
	}
	html[lang="ko-KR"] .tech1_con2_box:last-child .tech1_con2_titlebox, 
	html[lang="en-US"]	.tech1_con2_box:last-child .tech1_con2_titlebox {
		min-height: unset;
	}
	.tech1_con3_box.current_box {
		padding: 24px;
	}
	.tech1_con3_item > li {
		padding: 24px 8px 24px;
	}
	.tech1_con4_content .h3_dots {
		padding: 16px;
	}
	.tech1_con4_box {
		padding: 24px 16px;
		gap: 24px;
	}
	.tech1_con4_video_box {
		flex-wrap: wrap;
		gap: 24px;
	}
	.tech1_con4_videobox_wrap {
		width: 100%;
	}
	.tech1_con4_video_txtbox h4 {
		padding-bottom: 8px;
	}
	.tech1_con4_video_title {
		margin-top: 16px;
		font-size: 14px;
	}
	.tech1_con4_txtbox h4 {
		padding-bottom: 8px;
	}

	.tech1_con4_imgbox3 {
		gap: 24px;
	}
	ul.tech1_con4_col2_list {
		gap: 32px 24px;
	}
	ul.tech1_con4_col2_list li {
		width: calc(25% - 18px);
	}
}

@media screen and (max-width: 767px) {
	.admin-bar #subpage_menu.nav_tap_fixed {
		top: calc(46px + var(--header));
	}
	html[lang="en-US"] #subpage_menu ul li {
		flex: 1;
	}
	html[lang="en-US"] #subpage_menu ul {
		gap: 8px;
	}
	html[lang="en-US"] #subpage_menu ul a {
        font-size: 14px;
        line-height: 1.2em;
    }

	.tech1_con1_txtbox {
		gap: 16px;
		text-align: left;
	}
	.tech_con2_col {
        padding-top: 56px;
    }
	.tech1_con2_box {
        width: 100%;
    }
	.tech1_con2_titlebox h4:before {
		width: 36px;
		height: 36px;
	}
	.tech1_con2_titlebox {
		padding: 24px 16px 16px;
	}
	.tech1_con2_txtbox {
		padding: 16px 16px 24px;
	}
	.tech1_con3_tap li a {
		font-size: 16px;
		padding: 12px 4px;
	}
	.tech1_con3_box.current_box {
        padding: 24px 16px;
    }
	.tech1_con3_item > li {
        padding: 16px 0;
		gap: 4px;
    }
	.tech1_con3_item2 > li {
		width: 100%;
	}
	.tech1_con3_item2 > li:nth-child(2) {
		padding-top: 16px;
	}
	ul.list_dots > li {
		padding-left: 12px;
	}
	ul.list_dots > li:before {
		top: 11px;
		left: 0;
		width: 3px;
		height: 3px;
	}
	.tech1_con3_list_sub {
		font-size: 14px;
	}
	.tech1_con3_box_rnd .tech1_con3_item > li h4 {
	position: relative;
	padding-left: 17px;
	}
	.tech1_con3_box_rnd .tech1_con3_item > li:first-child h4 {
		padding-left: 0;
	}


	.tech1_con4_imgbox, .tech1_con4_imgbox4 {
		flex-wrap: wrap;
		gap: 24px;
	}
	.tech1_con4_imgbox img, .tech1_con4_imgbox2 img {
		width: 100%;
	}
	.tech1_con4_content .h3_dots .section_title-w {
		display: none;
	}
	.tech1_con4_content h3.h3_dots .h3_txt {
		width: 100%;
	}
	.tech1_con4_column {
		gap: 56px;
	}

	ul.tech1_con4_col2_list {
        gap: 24px 8px;
    }
	ul.tech1_con4_col2_list li {
        width: calc(33.33% - 5.33px);
		gap: 8px;
    }
	ul.tech1_con4_col2_list li p {
		font-size: 14px;
	}
	.tech1_con4_col4_txtbox p {
		font-size: 14px;
	}
}

@media screen and (max-width: 480px) {
	.tech1_con3_tap li a {
        font-size: 13px;
        padding: 10px 4px;
        font-weight: 600;
    }
	.tech1_con4_column {
		gap: 40px;
	}
	ul.tech1_con4_col2_list li {
        width: calc(50% - 4px);
    }
}



 /* **************************************** *
 * 202 슈퍼콘크리트™ > 제품 & 솔루션
 * **************************************** */
#tech2_con0 .section_inner {
    max-width: 1550px;
}
sup {
    vertical-align: super;
    font-size: 0.8em;
	font-weight: 600;
}
.tech2_con1_table {
	width: 100%;
	font-size: 18px;
	text-align: center;
}
.tech2_con1_table thead tr th {
	padding: 16px 8px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.30);
	background: var(--primary-color2);
	color: #fff;
	vertical-align: middle;
	font-weight: 600;
}
.tech2_con1_table thead tr:first-child th {
	border-bottom: 1px solid rgba(255, 255, 255, 0.30);
	/* width: 289px; */
}
html[lang="en-US"] .tech2_con1_table1 thead tr th {
	width: 130px;
}
.tech2_con1_table thead tr:first-child th:first-child {
	width: 289px;
}
.tech2_con1_table thead tr th:last-child {
	border-right: 0;
}
.tech2_con1_table tbody tr th,
.tech2_con1_table tbody tr td {
	padding: 16px 8px;
	border-right: 1px solid #DCDCDC;
	border-bottom: 1px solid #DCDCDC;
	vertical-align: middle;
	line-height: 1.6em;
}
.tech2_con1_table tbody tr td:last-child {
	border-right: 0;
}
.tech2_con1_table tbody tr:nth-child(even) th,
.tech2_con1_table tbody tr:nth-child(even) td {
	background: var(--bg-color);
}
.tech2_con1_table tbody tr:last-child th,
.tech2_con1_table tbody tr:last-child td {
	border-bottom: 1px solid #000;
}
.tech2_con1_table tbody tr th {
	font-weight: 700;
}
ul.tech2_con2_list {
    padding-top: 24px;
    font-size: 16px;
    line-height: 1.4em;
    color: #A0A0A0;
}
.tech_con1_col2 {
	padding-top: 80px;
}
.tech_con1_col2 h3 {
	padding-bottom: 40px;
	flex-wrap: wrap;
}
.tech2_con1_table2 thead tr th {
	padding-top: 32px;
	padding-bottom: 32px;
}
span.h3_txt_sm {
    font-size: 18px;
    line-height: 1.4em;
    display: inline-block;
    position: relative;
    top: -4px;
}
.tech2_con1_table tbody tr td strong {
	font-weight: 400;
}


#tech2_con2 {
	background: var(--bg-color);
}
.title_column .txt_lg {
	padding-top: 24px;
}
#tech2_con2 .tech_con1_col2 {
	padding-top: 0;
}
.tech2_con1_table3 thead tr th {
    width: 20% !important;
}
.tech2_con1_table3 tbody tr:nth-child(odd) td {
    background: #fff;
}
/* .tech2_con1_table3 tbody tr td strong {
	color: var(--primary-color);
} */
.tech2_con2_col {
	display: flex;
	align-items: stretch;
	gap: 24px;
	padding-top: 80px;
}
.tech2_con2_box {
	width: calc(33.33% - 16px);
	display: flex;
	padding: 24px;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	flex: 1 0 0;
	align-self: stretch;
	text-align: center;
	border-top: 1px solid var(--primary-color2);
	background-color: #fff;
}
.tech2_con2_box strong {
	color: var(--primary-color);
}
span.down {
    color: #D83824;
}
span.up {
    color: #1787D0;
}






@media screen and (max-width: 1024px) {
	.tech2_con1_table thead tr:first-child th:first-child {
		width: auto;
	}
	.tech_con1_col2 h3 {
		padding-bottom: 24px;
	}
	.tech2_con1_table2 thead tr th {
		padding-top: 16px;
		padding-bottom: 16px;
	}

	.title_column .txt_lg {
		padding-top: 16px;
	}
	.tech2_con2_col {
		gap: 16px;
	}
	.tech2_con2_box {
		width: calc(33.33% - 10.66px);
		padding: 8px 8px 16px;
		gap: 16px;
	}
	.tech2_table_wrap table.tech2_con1_table3 {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	#tech2_con1, #tech2_con2 {
		padding-right: 0;
	}
	#tech2_con1 .title_column, .tech_con1_col2 h3,
	#tech2_con2 .title_column, #tech2_con2 .tech2_con2_col  {
		padding-right: 16px;
	}
	.tech2_table_wrap {
		width: 100%;
		overflow-x: auto;
	}
	.tech2_table_wrap table {
		width: calc(767px + 16px);
		font-size: 14px;
	}
	.tech2_table_wrap table.tech2_con1_table3 {
		width: 100%;
		/* width: 500px; */
	}
	.tech2_con1_table tbody tr th, .tech2_con1_table tbody tr td {
		padding: 8px 4px;
		line-height: 1.3em;
	}
	.tech2_con1_table thead tr th {
		padding: 8px 4px;
		line-height: 1.3em;
	}
	html[lang="en-US"] .tech2_con1_table1 thead tr th {
		width: 90px;
	}
	span.h3_txt_sm {
		font-size: 14px;
	}



	.tech2_con1_table thead tr th img {
		width: 100%;
		max-width: 270px;
	}
	ul.tech2_con2_list {
		padding-top: 16px;
		font-size: 14px;
	}
	.tech_con1_col2, .tech2_con2_col {
		padding-top: 56px;
	}

	.title_column .txt_lg {
        padding-top: 8px;
    }
	.tech2_con2_col {
		flex-wrap: wrap;
		flex-direction: column;
		gap: 24px;
	}
	.tech2_con2_box {
		width: 100%;
		padding: 16px;
	}
}

@media screen and (max-width: 480px) {
	.tech2_table_wrap table.tech2_con1_table3 {
		width: 500px;
	}
}




 /* **************************************** *
 * 203 슈퍼콘크리트™ > 적용분야
 * **************************************** */
ul.history_list {
	border-top: 1px solid #000;
}
ul.history_list > li {
    display: flex;
    padding: 40px 0px;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    border-bottom: 1px solid #DCDCDC;
}
.history_year {
    width: 33.33%;
    font-size: 42px;
    color: #A5B6C4;
    font-weight: 600;
    line-height: 1.4em;
}
.history_year span {
	display: inline-block;
    line-height: 1.4em;
}
.history_year span strong {
	font-weight: 600;
	color: var(--primary-color2);
}
.history_event_wrap {
	flex: 1;
}
ul.history_event {
    width: 100%;
	padding-left: 13px;
}
ul.history_event li {
	position: relative;
	padding-left: 17px;
}
ul.history_event li:before {
	content:"";
	position: absolute;
	top: 14px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #000;
}
html[lang="en-US"] ul.history_event li:before {
	top: 11px;
}
ul.history_event li strong {
    font-weight: 700;
    color: var(--primary-color);
}
.history_imgbox {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
	padding-top: 32px;
	flex-wrap: wrap;
}


#tech3_con2 {
	background: var(--bg-color);
}
.tech3_con2_col {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.tech3_con2_box h3 {
	padding-bottom: 16px;
	border-bottom: 1px solid #000;
}
.tech3_con2_content {
	display: flex;
	padding-top: 24px;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
}
.tech3_con2_imgbox {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}
.tech3_con2_imgbox img {
	width: calc(25% - 6px);
}


@media screen and (max-width: 1024px) {
	ul.history_list > li {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px 0 32px;
		gap: 16px;
	}
	.history_year {
		width: 100%;
		max-width: unset;
		text-align: left;
		padding-left: 13px;
		font-size: 36px;
	}
}

@media screen and (max-width: 767px) {
	ul.history_event {
		padding-left: 0;
	}
	ul.history_list > li {
		padding: 18px 0 24px;
		gap: 8px;
	}
	.history_year {
		padding-left: 0;
		font-size: 26px;
	}
	ul.history_event li {
		position: relative;
		padding-left: 13px;
	}
	ul.history_event li:before, html[lang="en-US"] ul.history_event li:before {
		top: 10px;
	}
	.history_imgbox {
		gap: 8px;
		padding-top: 16px;
	}
	.history_imgbox img {
		max-width: unset;
		height: 146px;
		width: auto;
	}

	.tech3_con2_col {
		gap: 48px;
	}
	.tech3_con2_box h3 {
		padding-bottom: 8px;
	}
	.tech3_con2_content {
		padding-top: 16px;
		gap: 16px;
	}
	.tech3_con2_imgbox {
		flex-wrap: wrap;
	}
	.tech3_con2_imgbox img {
		width: calc(50% - 4px);
	}
}






 /* **************************************** *
 * 301 프로젝트, 지식센터, 미디어센터 
 * **************************************** */
#subbanner.subbanner_projects {
	background: url(/wp-content/uploads/subbanner_projects.jpg) no-repeat center;
	background-size: cover;
}
#subbanner.subbanner_archive {
	background: url(/wp-content/uploads/subbanner_archive.jpg) no-repeat center;
	background-size: cover;
}
#subbanner.subbanner_media {
	background: url(/wp-content/uploads/subbanner_media.jpg) no-repeat center;
	background-size: cover;
}

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

}

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





 /* **************************************** *
 * 601 문의하기
 * **************************************** */
#subbanner.subbanner_contact {
	background: url(/wp-content/uploads/subbanner_contact.jpg) no-repeat 80% center;
	background-size: cover;
}


#contact_con2 {
	background: var(--primary-color2);
	color: #fff;
	padding: 0;
}
#contact_con2 .section_inner {
	gap: 0;
	padding-top: 0;
	padding-bottom: 0;
}
#contact_con2 .inno_column {
	width: 50%;
}
.contact_title_column {
	padding-left: 16px;
	padding-top: 120px;
	padding-bottom: 120px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.contact_con2_txtbox {
	width: 100%;
	max-width: 700px;
	display: flex;
	flex-direction: column;
	gap: 80px;
	padding-right: 4.2vw;
}
.contact_con2_txtbox h2.section_h2 {
    align-items: flex-start;
}
.section_title_dots-w {
    background: url(/wp-content/uploads/title_dots-w.png) no-repeat center;
    background-size: cover;
}
.contact_con2_map {
	height: 830px;
}
.contact_con2_map #map {
	height: 100%;
}
.contact_con2_info {
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.contact_con2_info dl {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.contact_con2_info dl dt {
	width: 120px;
	padding: 12px 0;
	font-weight: 600;
}
.contact_con2_info dl dd {
	width: calc(100% - 120px);
	padding: 12px 0;
}



/* 컨텍폼 */
.contact_notice {
	font-weight: 500;
	text-align: right;
	padding-bottom: 8px;
}
.contact_item_wrap {
	display: flex;
	align-items: stretch;
	gap: 80px;
	flex-wrap: wrap;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
.contact_item_box {
	width: calc(50% - 40px);
}
.contact_item {
	display: flex;
	padding: 16px 0px;
	align-items: flex-start;
	align-self: stretch;
	border-bottom: 1px solid #DCDCDC;
}
.contact_item:last-child {
	border-bottom: 0;
}
.contact_item .contact_label {
	width: 150px;
	padding: 16px 0px;
	font-weight: 700;
}
.contact_item .contact_label .contact_req {
	color: var(--primary-color);
}
.contact_item .contact_input {
	width: calc(100% - 150px);
	position: relative;
}


/* input */
input[type=text], 
input[type=email],
input[type=password] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	outline: 0;
    border: 0;
    display: block;
    height: 64px;
    width: 100%;
    font-size: 20px;
    padding: 16px 24px;
	background: var(--bg-color);
	font-family: 'Pretendard', sans-serif;
	font-weight: 500;
}
/* .contact_item input[type=text], 
.contact_item input[type=email],
.contact_item input[type=password],
.contact_item textarea {
	color: #fff;
} */
.contact_item.contact_item_txtarea {
    height: 100%;
}
.contact_item.contact_item_txtarea, .contact_item_txtarea .contact_input, .contact_item_txtarea .contact_input > p, .contact_item_txtarea .contact_input .wpcf7-form-control-wrap {
    height: 100%;
}
textarea {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    font-size: 20px;
    padding: 16px 24px;
	background: var(--bg-color);
	font-family: 'Pretendard', sans-serif;
	font-weight: 500;
}



/* radio btn*/
.contact_item .contact_input_radio {
	width: 100%;
}
.contact_input_radio .wpcf7-form-control-wrap {
    /* height: 3.8vw;
    min-height: 72px; */
    /* height: 72px; */
    display: flex;
    align-items: center;
    padding: 16px 0;
}
span#contact_radio {
    display: flex;
    gap: 8px 48px;
    flex-wrap: wrap;
}
span#contact_radio span.wpcf7-list-item {
    margin: 0;}
.contact_item input[type=radio]:checked,
.contact_item input[type="radio"]:not(:checked) {
    position: absolute;
    left: -99999999px;}
.contact_item input[type=radio] + span.wpcf7-list-item-label {
    /* font-family: 'Play', 'Pretendard', sans-serif !important; */
    position: relative;
    padding-left: 38px;
    cursor: pointer;
    display: block;
    line-height: 1.6em;
	/* color: #A0A0A0; */
    /* font-size: 20px; */
    font-weight: 700;}
.contact_item input[type=radio] + span.wpcf7-list-item-label:before {
	content:"";
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: transparent url(/wp-content/uploads/check.png) no-repeat center;
	background-size: cover;
    /* border:  1px solid #A0A0A0; */
    z-index: 10;}
.contact_item input[type=radio] + span.wpcf7-list-item-label:after {
	content:"";
    position: absolute;
	left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
	background: transparent url(/wp-content/uploads/check_checked.png) no-repeat center;
	background-size: cover;
    z-index: 10;
    opacity: 0;}
html[lang="en-US"] .contact_item input[type=radio] + span.wpcf7-list-item-label:after,
html[lang="en-US"] .contact_item input[type=radio] + span.wpcf7-list-item-label:before {
	top: 2px;
}
/* .contact_item input[type="radio"]:checked + span.wpcf7-list-item-label {
    color: #fff;} */
/* .contact_item input[type=radio]:checked + span.wpcf7-list-item-label:before {
	border-color: var(--primary-color);
	background: var(--primary-color);
} */
.contact_item input[type="radio"]:checked + span.wpcf7-list-item-label:before {
    opacity: 0;
}
.contact_item input[type="radio"]:checked + span.wpcf7-list-item-label:after {
    opacity: 1;
}


/* 개인정보 + 버튼  */
.contact_bottom {
	padding-top: 40px;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	align-items: center;
}

/* checkbox */
.agree_chk span.wpcf7-list-item {
    margin: 0;}
.agree_chk .wpcf7-form-control-wrap {
    margin-right: 16px;
}
.agree_chk .wpcf7-list-item label {
    display: inline-block;
    position: relative;}
.agree_chk input[type=checkbox]:checked,
.agree_chk input[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -99999999px;}
.agree_chk input[type=checkbox] + span.wpcf7-list-item-label {
    display: block;
    line-height: 1.6em;
    font-weight: 500;
    position: relative;
    padding-left: 42px;
    cursor: pointer;}
.agree_chk .contact_item.contact_item_check input[type=checkbox] + span.wpcf7-list-item-label {
    color: transparent !important;}
.agree_chk input[type=checkbox] + span.wpcf7-list-item-label::before {
	content:"";
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: transparent url(/wp-content/uploads/check.png) no-repeat center;
	background-size: cover;
    /* border:  1px solid #A0A0A0; */
    z-index: 10;}
.agree_chk input[type=checkbox] + span.wpcf7-list-item-label::after {
	content:"";
    position: absolute;
	left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
	background: transparent url(/wp-content/uploads/check_checked.png) no-repeat center;
	background-size: cover;
    z-index: 10;
    opacity: 0;}
/* .agree_chk input[type="checkbox"]:checked + span.wpcf7-list-item-label::before {
    border-color: var(--primary-color);
	background: var(--primary-color);
} */
.agree_chk input[type="radio"]:checked + span.wpcf7-list-item-label:before {
    opacity: 0;
}
.agree_chk input[type="checkbox"]:checked + span.wpcf7-list-item-label::after {
    opacity: 1;
}

a.prviacy_btn {
    display: inline-block;
    font-weight: 700;
    line-height: 1.6em;
    border-bottom: 1px solid #000;
}
a.prviacy_btn:hover {
	color:var(--primary-color);
	border-color: var(--primary-color);
}

.wpcf7-submit.btn {
	appearance: none;
	outline: 0;
    width: 250px;
	background: transparent;
	cursor: pointer;
}
.wpcf7-submit.btn:hover {
	background: var(--primary-color);
}
.wpcf7-submit.btn:disabled {
    opacity: 0.3;
}

.wpcf7-not-valid-tip {
    color: var(--primary-color);
    font-size: 16px;
    position: absolute;
    right: 9px;
    bottom: 0;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--primary-color);
    text-align: center;
}



.agree_privacy {
    padding: 24px;
    font-size: 16px;
    line-height: 1.6em;
}
.agree_privacy strong {
	display: inline-block;
	padding-top: 16px;
}
.agree_privacy strong:first-child {
	padding-top: 0;
}









@media screen and (max-width: 1024px) {
	#contact_con2 .inno_column {
		width: 100%;
	}
	.contact_title_column {
		padding: 100px 16px;
	}
	.contact_con2_txtbox {
		max-width: unset;
		padding-right: 0;
		gap: 64px;
	}
	.contact_con2_txtbox h2.section_h2 {
		align-items: center;
	}
	.contact_con2_map {
		height: 500px;
	}



	.contact_item_wrap {
		gap: 40px;
	}
	.contact_item_box {
		width: calc(50% - 20px);
	}
	.contact_item {
		flex-direction: column;
	}
	.contact_item .contact_label {
		width: 100%;
		padding: 0 0 8px;
	}
	.contact_item .contact_input {
		width: 100%;
	}

}

@media screen and (max-width: 767px) {
	.contact_title_column {
        padding: 60px 16px 60px;
    }
	.contact_con2_txtbox {
		gap: 32px;
	}
	.contact_con2_info dl dt {
		width: 86px;
	}
	.contact_con2_info dl dd {
		width: calc(100% - 86px);
	}
	.contact_con2_map {
        height: 300px;
    }



	.contact_notice {
		font-size: 14px;
	}
	.contact_item_wrap {
		gap: 0;
	}
	.contact_item_box {
        width: 100%;
    }
	.contact_item_box:first-child {
		border-bottom: 1px solid rgba(255, 255, 255, 0.50);
	}

	/* radio + checkbox */
	span#contact_radio {
		flex-direction: column;
	}
	.contact_input_radio .wpcf7-form-control-wrap {
		padding: 8px 0;
	}
	.contact_item input[type=radio] + span.wpcf7-list-item-label,
	.agree_chk input[type=checkbox] + span.wpcf7-list-item-label {
		padding-left: 28px;
	}
	.contact_item input[type=radio] + span.wpcf7-list-item-label:before,
	.contact_item input[type=radio] + span.wpcf7-list-item-label:after,
	.agree_chk input[type=checkbox] + span.wpcf7-list-item-label::before,
	.agree_chk input[type=checkbox] + span.wpcf7-list-item-label::after {
		width: 18px;
		height: 18px;
	}

	input[type=text], input[type=email], input[type=password] {
		font-size: 16px;
		height: 50px;
		padding: 8px 12px;
	}
	textarea {
		padding: 8px 12px;
		height: 200px;
	}

	.contact_bottom {
		flex-direction: column;
		padding-top: 24px;
		align-items: center;
		text-align: center;
	}
	.agree_chk .wpcf7-form-control-wrap {
		margin-right: 0;
		display: block;
		margin-bottom: 8px;
	}
	.wpcf7-submit.btn {
		width: 100%;
	}
	.wpcf7-not-valid-tip {
		font-size: 12px;
	}


	.agree_privacy {
		font-size: 14px;
	}
}




 /* **************************************** *
 * LOGIN, 404 
 * **************************************** */
.subbanner_login {
	background: url(/wp-content/uploads/main_con2_bg.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
}

.subbanner_login .inno_column {
    width: calc(50% - 20px);
}
.tml {
    max-width: 500px;
}
.tml input[type=text], .tml input[type=email], .tml input[type=password] {
	color: #000;
    BACKGROUND: #fff;
}
.tml .tml-submit-wrap input {
	appearance: none;
	outline: 0;
	display: inline-flex;
	padding: 16px 32px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	transition: .3s ease-in-out;
	border: 3px solid rgba(255, 255, 255, 0.30);
	font-weight: 600;
	color: #fff;
	font-size: 18px;
	line-height: 1.4em;
	background: transparent;
	cursor: pointer;
}
.tml .tml-submit-wrap input:hover {
	background-color: var(--primary-color);
}
.tml .tml-action-links a {
    color: #fff;
    padding: 8px 0;
    display: inline-block;
    border-bottom: 1px solid #fff;
}
.tml.tml-lostpassword input[type=text], .tml.tml-lostpassword input[type=email], .tml.tml-lostpassword input[type=password] {
	border: 2px solid rgba(0,0,0,0.3);
	color: #000;
}
.tml.tml-lostpassword .tml-submit-wrap input {
	border: 3px solid rgba(0, 0, 0, 0.10);
	color: #787878;
}
.tml.tml-lostpassword .tml-submit-wrap input:hover {
	background-color: var(--primary-color);
	border: 3px solid rgba(255, 255, 255, 0.30);
	color: #fff;
}
.tml.tml-lostpassword .tml-action-links a {
	color: #000;
	border-color: #000;
}

@media screen and (max-width: 1024px) {
	.subbanner_login .inno_column {
		width: 100%;
	}
}

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





 /* **************************************** *
 * 101 
 * **************************************** */


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

}

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