@charset "utf-8";

/*

DB Robotics 홈페이지 css


* File : common.css
* Author : Innoplan
* Guideline : INNOstyle.0.1
* 
*
* 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


*/




/* **************************************** *
 * root
 * **************************************** */
:root {
    /* color */
    --primary-color: #295DAA;
    --bg-color: #E6EAEF;
    --font-color: #000;
    

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

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

	/* font */
	--font-title: "Play", sans-serif;
	--font-p: 'Pretendard', sans-serif;
}

@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: 'Pretendard', sans-serif;
	color: var(--font-color);
	font-size: 18px;
	font-weight: 400;
	line-height: var(--text-line-height);}
* {
	box-sizing: border-box;
	font-family: '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 {font-size: 16px;}
    .br_pc, .image_pc {display: none;}
    .br_m {display:block;}
	.image_m {display: inline-block;}
}






/* 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
 * **************************************** */
.inno_section {
	width: 100%;
	padding: var(--content-padding);
}
.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: 180px;
}
.section_padding-top {
	padding-top: 160px;
	padding-bottom: 0;
}
.section_padding-bottom {
	padding-bottom: 180px;
	padding-top: 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: 64px;
}


@media screen and (max-width: 1024px) {
	.section_inner {
		padding-top: 100px;
		padding-bottom: 120px;
	}
	.section_padding-top {
		padding-top: 100px;
	}
	.section_padding-bottom {
		padding-bottom: 120px;
	}
	/* .titlebox {
		padding-bottom: 32px;
	} */

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

@media screen and (max-width: 767px) {
	.section_inner {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.section_padding-top {
		padding-top: 60px;
	}
	.section_padding-bottom {
		padding-bottom: 60px;
	}
	.title_column {
		padding-bottom: 40px;
		text-align: center;
	}

	.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%;
	}
}






/* **************************************** *
 * font default
 * **************************************** */
h1 {
	font-size: 56px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	font-family: "Play", sans-serif;
}
h1 strong {
	font-family: "Play", sans-serif;
	font-weight: 700;
	color: #00A0E9;
}
h2 {
	font-size: 56px;
	line-height: 1.4em;
	font-weight: 700;
	font-family: "Play", sans-serif;
}
h2 strong {
	font-weight: 700;
	font-family: var(--font-title);
	color: var(--primary-color);
}
h3 {
	font-size: 32px;
	line-height: 1.4em;
	font-weight: 700;
	font-family: "Play", sans-serif;
}
h4 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4em;
	font-family: "Play", sans-serif;
}
p {
	line-height: var(--text-line-height);
}
p.txt_lg {
	font-size: 24px;
}

@media screen and (max-width: 1024px) {
	h1 {
		font-size: 42px;
	}
	h2 {
		font-size: 36px;
	}
	h3 {
		font-size: 26px;
	}
	h4 {
		font-size: 20px;
	}
}


@media screen and (max-width: 767px) {
	h1 {
		font-size: 34px;
	}
	h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 20px;
	}
	h4 {
		font-size: 18px;
	}
	p.txt_sm {
		font-size: 16px;
	}
}





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

/* slick nav */
button.slick-arrow {
	appearance: none;
	outline: none;
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.30);
	transition: .3s ease-in-out;
	color: transparent;
	user-select: none;
	cursor: pointer;
	background-color: transparent;
}
button.slick-next.slick-arrow {
	background: url(/wp-content/uploads/arrow_next.png) no-repeat center;
	background-size: cover;
}
button.slick-prev.slick-arrow {
	background: url(/wp-content/uploads/arrow_prev.png) no-repeat center;
	background-size: cover;
}
button.slick-next.slick-arrow:hover {
	background-color: var(--primary-color);
}
button.slick-prev.slick-arrow:hover {
	background-color: var(--primary-color);
}






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

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



/* **************************************** *
 * HEADER
 * **************************************** */
.inno_header {
	width: 100%;
	position: fixed;
	z-index: 99996;
	background: transparent;
    transition: .3s ease-in-out;
	padding: var(--content-padding);
}
.header_inner {
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	padding-top: 32px;
	padding-bottom: 32px;
    transition: .3s ease-in-out;
}
.header_content_width {
	width: 100%;
	max-width: var(--content-width-lg);
}
.header_sticky_logo {
	display: none;
}
.header_logo_link img {
	width: 100%;
	max-width: 140px;
}


/* menu */
#inno_main_nav .main-menu {
	display: flex;
	justify-content: flex-end;
	gap: 64px;
}
#inno_main_nav .main-menu > .menu-item {
	position: relative;
}
#inno_main_nav .main-menu > .menu-item > a {
	color: #fff;
	position: relative;
	transition: .3s ease-in-out;
	font-size: 18px;
	font-weight: 700;
	font-family: var(--font-title);
}
#inno_main_nav .main-menu > .menu-item > a > span.menu_txt {
	font-family: var(--font-title);
}
#inno_main_nav .main-menu > .menu-item > a:hover {
	opacity: 0.6;	
}
#inno_main_nav .main-menu > .menu-item > a:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
	transition: .3s ease-in-out;
}
#inno_main_nav .main-menu > .menu-item.current-menu-item > a {
	color: var(--primary-color);
}


.menu_mobile_btn {
	display: none;
	/* display: flex; */
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
	/* background : #fff; */
}
.menu_mobile_btn_line {
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
}






/* header scroll */
.header-sticky {
    background: #fff;
}
.header-sticky .header_inner {
    /* padding-top: 8px;
    padding-bottom: 8px; */
    padding-top: 16px;
    padding-bottom: 16px;
}
.header-sticky .header_sticky_logo {
    display: block;
}
.header-sticky .header_standard_logo {
    display: none;
}
.header-sticky #inno_main_nav .main-menu > .menu-item {
    padding: 0;
}
.header-sticky #inno_main_nav .main-menu > .menu-item > a {
    color: var(--font-color);
}
.header-sticky #inno_main_nav .main-menu > .menu-item > a:hover,
.header-sticky #inno_main_nav .main-menu > .menu-item.current-menu-item > a,
.header-sticky #inno_main_nav .main-menu > .menu-item.menu-item_current > a {
	color: var(--primary-color);
}



/* mobile header */
.menu_mobile_btn_wrap {
	display: none;
}
.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: #fff;
}
.header-sticky .menu_mobile_btn_line {
	background: #000;
}
/* .header_mobile_inner, */
#inno_mobile_nav {
    display: none;
}



/* mobile header */
@media screen and (max-width: 1024px) {
	.inno_header {
        padding-left: 0;
        padding-right: 0;
    }
	.header_inner {
		flex-wrap: wrap;
		padding-top: 12px;
		padding-bottom: 12px;
		padding-left: 16px;
        padding-right: 16px;
	}
	.header-sticky .header_inner {
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.header_logo_link img {
		max-width: 100px;
	}
	#inno_main_nav {
		width: 100%;
		display: none;
	}
	#inno_main_nav.menu_on {
		display: block !important;
	}
	.menu_mobile_btn_wrap {
		display: block;
	}
	.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;
		font-size: 14px;
		font-weight: 500;
	}



	/* 모바일 버튼 */
	.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 - 50px);
        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: #000;
        padding: 10px 16px;
        font-size: 15px;
        font-weight: 600;
        display: block;
        /* border-bottom: 1px solid var(--line-color); */
        line-height: 1.6em;
		text-transform: uppercase;
	}
	#inno_mobile_nav .main-menu > .menu-item > a span {
		font-family: var(--font-title);
	}
	#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: #000;
	color: #fff;
	position: relative;
	padding: var(--content-padding);
}
.footer_inner {
    position: relative;
}
.footer_content {
    padding: 56px 0 64px;
	width: 100%;
	display: flex;
	gap: 64px;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
.footer_wrap {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.footer_logo img {
	width: 125px;
}
.company_name {
	font-size: 16px;
	font-family: var(--font-title);
	font-weight: 700;
	line-height: 1.6em;
	padding-bottom: 4px;
}
.footer_info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.footer_info dl {
	display: flex;
	line-height: 1.6em;
	font-size: 16px;
	font-weight: 700;
}
.footer_info dl dt {
	color: rgba(255, 255, 255, 0.50);
	width: 85px;
	font-family: var(--font-title);
}
.footer_info dl dd {
	width: calc(100% - 85px);
}
.footer_copy {
	color: rgba(255, 255, 255, 0.50);
	font-size: 16px;
	font-weight: 700;
	font-family: var(--font-title);
}


/* floating menu */
.floating_menu_wrap {
    position: fixed;
    right: 0;
    z-index: 9999999999;
    bottom: 0;
}
.floating_menu_wrap.floating_nofix {
    position: absolute;
    bottom: 100%;
    z-index: 9999999999;}
a.floating_menu {
	transition: height .5s;
	width: 80px;
	height: 80px;
	display: flex;
	background: #000;
	align-items: center;
	justify-content: center;
	position: relative;
}
a.floating_menu:before {
	content:"";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	z-index: 1;
	border-bottom: 1px solid #A0A0A0;
}
a.floating_menu:last-child:before {
	border: 0;
}
a.floating_menu.floating_menu_top {
	transition: .3s ease-in-out;
	background: #000 url(/wp-content/uploads/to_top.png) no-repeat center;
	background-size: 40px;
	bottom: -80px;
	opacity: 0;}
a.floating_menu.floating_menu_top.floating_menu_top_show {
	opacity: 1;
	bottom: 0;}
a.floating_menu:hover,
a.floating_menu.floating_menu_top.floating_menu_top_show:hover {
	background-color: var(--primary-color);
	opacity: 1;}



@media screen and (max-width: 1024px) {
	/* footer */
	.footer_wrap {
		gap: 24px;
		width: 100%;
	}
	.footer_content {
		padding: 40px 0 48px;
		gap: 24px;
		width: 100%;
	}
	.footer_logo img {
		width: 100px;
	}

	/* floating menu */
	.floating_menu_wrap {
		right: 0;
	}
	a.floating_menu {
		font-size: 14px;
		width: 60px;
		height: 60px;
		font-weight: 600;
	}
	a.floating_menu.floating_menu_top {
		background-size: 30px;
	}
	a.floating_menu.floating_menu_top.floating_menu_top_show {
		height: 60px;
	}
}

@media screen and (max-width: 767px) {
	/* footer */
	.company_name, .footer_info dl, .footer_copy {
		font-size: 14px;
	}
	.footer_info dl {
		flex-direction: column;
	}

	/* floating menu */
	.floating_menu_wrap.floating_nofix {
		bottom: 0;
	}
	a.floating_menu {
		font-size: 12px;
		width: 40px;
		height: 40px;
	}
	a.floating_menu.floating_menu_top {
		background-size: 24px;
	}
	a.floating_menu.floating_menu_top.floating_menu_top_show {
		height: 40px;
	}
}






/* **************************************** *
 * main
 * **************************************** */
 /* banner */
#main_banner {
	position: relative;
	height: calc(var(--vh, 1vh) * 100);
	padding: 0;
}
#main_banner .section_inner {
    width: 100%;
	max-width: calc(1400px + 16px + 16px);
    height: 100%;
	padding: 0 16px;
}
#main_banner .inno_column {
    display: flex;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	max-width: var(--content-width);
	margin: 0 auto;
	height: 100%;
	padding-bottom: 80px;
}
.banner_bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
	z-index: -1;
}
.banner_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.70) 100%);
}
.banner_bg .bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



.main_banner_txtbox {
	display: flex;
	gap: 24px;
}
.banner_h1 {
	width: 535px;
	line-height: 1.2em;
}
.main_banner_txt {
	width: calc(100% - 535px - 24px);
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 14px;
}
.main_banner_txt strong {
	font-weight: 700;
	color: #00A0E9;
}

#con0 {
	display: none;
}



/* main - con0 */
.con1_col_title {
	display: flex;
	gap: 24px;
	align-items: stretch;
}
.con1_box {
	border-radius: 24px;
	height: 400px;
}
.con1_box_lg {
	width: calc(70% - 12px);
	background: url(/wp-content/uploads/main_con1_img1.jpg) no-repeat center;
	background-size: cover;
	display: flex;
	align-items: flex-end;
	color: #fff;
	padding: 40px 64px;
	overflow: hidden;
}
.con1_box_sm {
	width: calc(30% - 12px);
	background: url(/wp-content/uploads/main_con1_img2.jpg) no-repeat center;
	background-size: cover;
}
.con1_txtbox {
	width: 100%;
	max-width: 934px;
	margin-left: auto;
	padding-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.con1_txtbox strong {
	color: var(--primary-color);
	font-weight: 700;
}




/* con1, con1-2 */
#con1 {
	background: url(/wp-content/uploads/con1_bg.jpg) no-repeat center;
	background-size: cover;
}
#con1 .section_inner,
#con1-2 .section_inner {
	padding-bottom: 120px;
}
.section_d .title_column {
	color: #fff;
}
.sec_title {
	font-size: 26px;
	font-family: var(--font-title);
	font-weight: 700;
	padding-bottom: 24px;
}

.robot_list_wrap {
	width: 100%;
	max-width: 980px;
	margin-left: auto;
	display: flex;
	gap: 40px;
	align-items: flex-end;
}
.robot_item {
	/* padding-top: 73px; */
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.robot_label {
	/* position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%); */
	position: relative;
	display: inline-block;
	padding: 12px 24px;
	border-radius: 8px;
	background: #FFF;
	box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.25);
	opacity: 0;
	transition: .3s ease-in-out;
}
.robot_label:before {
	content:"";
	position: absolute;
	top: calc(100% - 4px);
	left: 50%;
	transform: translateX(-50%);
	width: 15px;
	height: 12px;
	background: url(/wp-content/uploads/label_arrow.png) no-repeat center;
	background-size: cover;
}
.robot_item:hover .robot_label {
	opacity: 1;
}
.robot_label p {
	font-family: var(--font-title);
	font-weight: 700;
	line-height: 1.4em;
}
.robot_imgbox {
	overflow: hidden;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.30);
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(7.5px);
}

#con1-2 {
	background: url(/wp-content/uploads/con1-2_bg.jpg) no-repeat center;
	background-size: cover;
}
.con1-2_robot_list_wrap .robot_imgbox {
	border-radius: 24px;
	box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.30);
}


/* con1-3 */
/* 부모 컨테이너 */
.con1-3_wrap {
    display: grid;
    /* 1:1:1 비율의 3열 그리드 생성 */
    grid-template-columns: repeat(3, 1fr);
    /* 행 사이와 열 사이의 간격 */
	gap: 24px;
    max-width: 1400px;
}

/* 모든 이미지 박스 공통 스타일 */
.con1-2_imgbox {
    width: 100%;
	height: 340px;
    background-color: #f0f0f0; /* 이미지 없을 때 대비용 */
    border-radius: 24px;      /* 이미지의 둥근 모서리 */
    overflow: hidden;
    aspect-ratio: 4 / 3;       /* 이미지 비율 유지 (필요에 따라 조절) */
	max-height: 340px;
    background-size: cover;
    background-position: center;
	position: relative;
}
.con1-2_imgbox1-1 {
	background: url(/wp-content/uploads/con1-3_img1.jpg) no-repeat center;
	background-size: cover;
}
.con1-2_imgbox1-2 {
	background: url(/wp-content/uploads/con1-3_img2.jpg) no-repeat center;
	background-size: cover;
}
.con1-2_imgbox1-3 {
	background: url(/wp-content/uploads/con1-3_img3.jpg) no-repeat center;
	background-size: cover;
}
.con1-2_imgbox2-1 {
	background: url(/wp-content/uploads/con1-3_img4.jpg) no-repeat center;
	background-size: cover;
}
.con1-2_imgbox3-1 {
	background: url(/wp-content/uploads/con1-3_img5.jpg) no-repeat center;
	background-size: cover;
}
.con1-2_imgbox3-2 {
	background: url(/wp-content/uploads/con1-3_img6.jpg) no-repeat center;
	background-size: cover;
}
.con1-2_imgbox3-3 {
	background: url(/wp-content/uploads/con1-3_img7.jpg) no-repeat center;
	background-size: cover;
}
.con1-3_txt {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.80);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	font-family: var(--font-title);
	font-size: 22px;
	font-weight: 700;
	opacity: 0;
	transition: .3s ease-in-out;
	padding: 40px;
}
.con1-2_imgbox:hover .con1-3_txt {
	opacity: 1;
}



/* 타이틀 박스 설정 (가장 중요) */
.con1-2_titlebox {
    /* 2번째 열부터 시작해서 2칸을 차지함 */
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 3.3vw;
	padding-right: 40px;
    text-align: left;
}
.con1-2_titlebox .sec_title {
	color: var(--primary-color);
	padding-bottom: 16px;
}



/* con2 */
#con2 {
	background: #E6EAEF;
}
#con2 h2 {
	text-align: center;
}
.con2_col_content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.con2_box {
	display: flex;
	padding: 64px 56px;
	align-items: center;
	border-radius: 24px;
	backdrop-filter: blur(7.5px);
}
.con2_box1 {
	background: url(/wp-content/uploads/con2_bg1.jpg) no-repeat center;
	background-size: cover;
}
.con2_box2 {
	flex-direction: row-reverse;
	background: url(/wp-content/uploads/con2_bg2.jpg) no-repeat center;
	background-size: cover;
}
.con2_box3 {
	background: url(/wp-content/uploads/con2_bg3.jpg) no-repeat center;
	background-size: cover;
}
.con2_txtbox {
	width: 50%;
	padding-right: 4.2vw;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.con2_box2 .con2_txtbox {
	padding-right: 0;
	padding-left: 4.2vw;
}
.con2_videobox {
	width: 50%;
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	/* background: #C9C9C9; */
	box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.50);
	z-index: 10;
}
.con2_videobox .bg-video__content {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.con2_txtbox ul li {
	position: relative;
	padding-left: 14px;
}
.con2_txtbox ul li:before {
	content:"";
	position: absolute;
	left: 0;
	top: 12px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #fff;
}


#con2-1 .section_inner .inno_column {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.robot_carousel .slick-list {
    overflow: visible;
	margin: 0 -12px;
}
.robot_carousel_item {
	margin: 0 12px;
	border-radius: 24px;
	overflow: hidden;
}

.robot_carousel button.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	z-index: 10;
}
.robot_carousel button.slick-prev.slick-arrow {
	left: calc(-64px + -24px + -40px);
}
.robot_carousel button.slick-next.slick-arrow {
	right: calc(-64px + -24px + -40px);
}

.robot_carousel_dots .slick-dots {
	padding-top: 40px;
	display: flex;
	gap: 16px;
	justify-content: center;
}
.robot_carousel_dots .slick-dots li button {
	appearance: none;
	outline: 0;
	border: 0;
	color: transparent;
	user-select: none;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #C8CBD1;
	padding: 0;
	display: block;
	cursor: pointer;
}
.robot_carousel_dots .slick-dots li.slick-active button {
	background: #295DAA;
}


#con3-0 {
	padding: 0;
}
.con3_section_img {
	background: url(/wp-content/uploads/con3_bg.jpg) no-repeat center top;
	background-size: cover;
	padding-bottom: 0;
	height: 51.5vw;
    max-height: 989px;
    min-height: 750px;
}
.con3_content_section {
	width: 100%;
	/* padding-top: 0; */
	/* margin-top: -400px; */
	margin-top: -560px;
}
.con3_content_section h2 {
	color: #fff;
	text-align: center;
}
.con3_content_col1 {
	display: flex;
	padding: 64px 4.2vw;
	flex-direction: column;
	gap: 40px;
	border-radius: 24px;
	background: #FFF;
	box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.15);
	margin-bottom: 80px;
}
.con3_leader {
	display: flex;
	justify-content: center;
	gap: 64px;
	align-items: center;
}
.con3_leader_img {
	width: calc(25% - 32px);
	border-radius: 24px;
	background: #000;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.con3_txtbox{
	width: calc(75% - 32px);
}
.con3_leader_title {
    padding-bottom: 24px;
}
span.con3_leader_positoin {
    color: var(--primary-color);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 16px;
    display: block;
    line-height: 1.6em;
    padding-bottom: 8px;
}
.con3_leader_list {
	padding-top: 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.30);
}
.con3_leader_list li {
	position: relative;
	line-height: 1.6em;
	padding-left: 14px;
}
.con3_leader_list li:before {
	content:"";
	position: absolute;
	left: 0;
	top: 12px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #000;
}
.con3_content_col2 {
	display: flex;
	padding: 80px 40px;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 80px 0;
	background: url(/wp-content/uploads/con3_team_bg.jpg) no-repeat center;
	background-size: cover;
	border-radius: 24px;
	color: #fff;
}
.con3_team {
	width: 25%;
	display: flex;
	padding: 16px 24px;
	flex-direction: column;
	gap: 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.30);
}
.con3_team:nth-child(4),
.con3_team:nth-child(8) {
	border-right: 0;
}
.con3_team_logo {
	display: flex;
	align-items: center;
	justify-content: center;
}
.con3_team_logo img {
	width: 90%;
	max-width: 180px;
}


#con4 {
	background: url(/wp-content/uploads/con4_bg.jpg) no-repeat center;
	background-size: cover;
}
#con4 h2 {
	text-align: center;
}
.con4_content_col {
	padding: 80px 4.2vw;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(0, 0, 0, 0.20);
	backdrop-filter: blur(10px);
}





@media screen and (max-width: 1200px) {
	.main_banner_txtbox {
		flex-direction: column;
	}
	.banner_h1 {
		width: 100%;
	}
	.main_banner_txt {
		width: 100%;
		padding-top: 0;
	}
}




@media screen and (max-width: 1024px) {
	#main_banner {
		height: 700px;
	}
	#main_banner .inno_column {
		padding-bottom: 40px;
	}
	#main_banner .main_banner_txt {
		display: none;
	}

	#con0 {
		display: block;
		color: #000;
	}
	#con0 .section_inner {
		padding: 80px 0;
	}
	#con0 .main_banner_txt {
		color: #000;
	}

	.con1_col_title {
		gap: 16px;
	}
	.con1_box {
		height: 280px;
	}
	.con1_box_lg {
		width: calc(70% - 8px);
		padding: 40px;
	}
	.con1_box_sm {
		width: calc(30% - 8px);
	}
	.con1_txtbox {
		padding: 40px 24px 0;
	}

	#con1 .section_inner, #con1-2 .section_inner {
		padding-bottom: 100px;
	}
	.sec_title {
		font-size: 22px;
	}
	.robot_list_wrap {
		gap: 16px;
	}
	.robot_label {
		font-size: 14px;
		padding: 8px 16px;
	}

	.con1-3_wrap {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.con1-2_titlebox {
        grid-column: span 2;
        padding-left: 0;
        order: -1; /* 타이틀을 가장 위로 올리고 싶을 경우 */
		padding-bottom: calc(64px - 16px);
        padding-right: 0;
    }
	.con1-2_imgbox {
		height: 280px;
	}
	.con1-3_txt {
		font-size: 18px;
		padding: 24px;
	}
	.con1-2_imgbox3-3 {
		aspect-ratio: 2 / 2;
        height: auto;
        grid-column: span 2;
	}

	.con2_box {
		padding: 56px 32px;
		flex-wrap: wrap;
	}
	.con2_txtbox {
		gap: 16px;
	}
	/* .con2_txtbox {
		width: 100%;
		padding-right: 0;
		padding-bottom: 40px;
		gap: 24px;
	} */

	#con2-1 .section_inner .inno_column {
		max-width: 500px;
	}

	.con3_leader {
		gap: 40px;
	}
	.con3_leader_img {
		width: calc(33.33% - 20px);
	}
	.con3_txtbox {
		width: calc(66.66% - 20px);
	}
	.con3_content_col2 {
		padding: 56px 16px;
		gap: 40px 0;
	}
	.con3_team {
		width: 50%;
		border-right: 1px solid rgba(255, 255, 255, 0.30);
	}
	.con3_team:nth-child(even) {
		border-right: 0;
	}
	.con3_team_logo img {
		width: 70%;
		max-width: 160px;
	}
}


@media screen and (max-width: 767px) {
	#main_banner {
        height: 500px;
    }
	#con0 .section_inner {
		padding: 40px 0;
	}

	.con1_col_title {
        gap: 8px;
    }
	.con1_box {
        height: auto;
        border-radius: 16px;
    }
	.con1_box_lg {
        width: calc(66.66% - 4px);
        padding: 80px 16px 16px;
    }
	.con1_box_sm {
        width: calc(33.33% - 4px);
    }
	.con1_txtbox {
        padding: 24px 0 0 8px;
		gap: 8px;
    }

	#con1 .section_inner, #con1-2 .section_inner {
        padding-bottom: 50px;
    }
	.sec_title {
        font-size: 16px;
        padding-bottom: 8px;
    }
	.robot_list_wrap {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}
	.robot_item {
		gap: 16px;
	}
	.robot_label {
		opacity: 1;
	}
	.con1-2_robot_list_wrap .robot_imgbox {
		border-radius: 16px;
	}


	/* .con1-3_wrap {
        grid-template-columns: 1fr; 
    } */
	.con1-3_wrap {
		gap: 8px;
	}
	.con1-2_titlebox {
		padding-bottom: calc(40px - 8px);
		text-align: center;
	}
	.con1-2_titlebox .sec_title {
		padding-bottom: 8px;
	}
	.con1-2_imgbox {
        height: auto;
        border-radius: 16px;
    }
	.con1-2_imgbox3-3 {
		aspect-ratio: 4 / 3;
	}
	.con1-3_txt {
        font-size: 16px;
        padding: 16px;
    }


	.con2_col_content {
		gap: 24px;
	}
	.con2_box {
		border-radius: 16px;
		padding: 32px 24px;
	}
	.con2_txtbox {
        gap: 16px;
        width: 100%;
        padding-right: 0;
        padding-bottom: 24px;
    }
	.con2_box2 .con2_txtbox {
		padding-right: 0;
		padding-left: 0;
	}
	.con2_videobox {
		width: 100%;
		border-radius: 8px;
	}

	.robot_carousel .slick-list {
		margin: 0 -4px;
	}
	.robot_carousel_item {
		margin: 0 4px;
		border-radius: 16px;
	}
	.robot_carousel_dots .slick-dots {
		padding-top: 24px;
		gap: 8px;
	}
	.robot_carousel_dots .slick-dots li button {
		width: 6px;
		height: 6px;
	}

	.con3_section_img {
		min-height: 550px;
	}
	.con3_content_section {
		margin-top: -360px;
	}
	.con3_content_col1 {
		padding: 40px 24px;
		border-radius: 16px;
	}
	.con3_leader {
        gap: 24px;
        flex-direction: column;
    }
	.con3_leader_img {
        width: 100%;
		border-radius: 16px;
    }
	.con3_leader_img img {
		width: 100%;
		max-width: 200px;
	}
	.con3_txtbox {
        width: 100%;
    }
	.con3_leader_title {
		padding-bottom: 16px;
	}
	span.con3_leader_positoin {
		font-size: 14px;
		padding-bottom: 4px;
	}
	.con3_leader_list {
		padding-top: 16px;
	}
	.con3_content_col2 {
		padding: 32px 16px;
		gap: 24px 0;
		border-radius: 16px;
	}
	.con3_leader_list li:before, .con2_txtbox ul li:before {
		top: 10px;
	}
}


@media screen and (max-width: 480px) {
	#main_banner {
        height: 400px;
    }
	.con1_robot_list_wrap .robot_imgbox {
		width: 80%;
	}
	.con3_section_img {
        min-height: 400px;
    }
	.con3_content_col1 {
		padding: 24px 24px 40px;
	}
	.con3_leader_img {
        width: 100%;
        border-radius: 8px;
    }
	.con3_team {
		width: 100%;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.30);
		padding: 24px 0;
		gap: 8px;
	}
	.con3_team:nth-child(7) {
		border-bottom: 0;
	}
	.con3_content_col2 {
		gap: 0;
		padding: 8px 24px;
	}
	.con3_team_logo {
		display: none;
	}
	.con3_content_section {
        margin-top: -280px;
    }
}




/* **************************************** *
 * Contact
 * **************************************** */
.contact_item_box {
	border-top: 1px solid rgba(255, 255, 255, 0.30);
}
.contact_item {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}
label.contact_label {
    color: #fff;
    padding-top: 8px;
    font-family: var(--font-title);
    font-weight: 700;
    width: 20%;
}
.contact_input {
    width: 80%;
}



/* input */
input[type=text], 
input[type=email],
input[type=password] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	outline: 0;
    display: block;
    height: 45px;
    width: 100%;
    font-size: 20px;
    padding: 6px 16px;
	border: 1px solid rgba(255, 255, 255, 0.90);
	background: rgba(255, 255, 255, 0.90);
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	color: #000;
	transition: .3s ease-in-out;
}


textarea {
    display: block;
    height: 199px;
    width: 100%;
    font-size: 20px;
    padding: 8px 16px;
	border: 1px solid rgba(255, 255, 255, 0.90);
	background: rgba(255, 255, 255, 0.90);
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	color: #000;
	transition: .3s ease-in-out;
}

select.wpcf7-form-control {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: 0;
    display: block;
    height: 45px;
    width: 100%;
    font-size: 16px;
    line-height: 1em;
    padding: 4px 16px;
    border: 1px solid rgba(255, 255, 255, 0.90);
    background: rgba(255, 255, 255, 0.90);
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    color: #000;
	position: relative;
}
.contact_select_input {
	position: relative;
}
.contact_select_input:before {
    content: "";
    position: absolute;
    right: 8px;
    top: 12px;
    width: 20px;
    height: 20px;
    background: url(/wp-content/uploads/menu_arrow.png) no-repeat center;
    background-size: cover;
    z-index: 10;
}



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

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

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


.contact_submit .wpcf7-submit.btn {
	appearance: none;
	outline: 0;
	background: transparent;
	cursor: pointer;
	border: 1px solid #fff;
	display: flex;
	padding: 12px 32px;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6em;
	color: #fff;
	transition: .3s ease-in-out;
}
.contact_submit .wpcf7-submit.btn .btn_txt {
	font-family: var(--font-title);
}
.contact_submit .wpcf7-submit.btn:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
}
.contact_submit .wpcf7-submit.btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #74bdff;
	position: absolute;
}
.wpcf7 form .wpcf7-response-output {
	text-align: center;
	color: #fff;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--primary-color);
}




@media screen and (max-width: 1024px) {
	.con4_content_col {
		padding: 64px 40px;
	}
}

@media screen and (max-width: 767px) {
	.con4_content_col {
		padding: 32px 24px;
	}
	.contact_item {
		flex-wrap: wrap;
		padding: 12px 0 16px;
	}
	label.contact_label {
		width: 100%;
		padding-top: 0;
		padding-bottom: 8px;
	}
	.contact_input {
		width: 100%;
	}
	input[type=text], input[type=email], input[type=password], textarea, select.wpcf7-form-control {
		padding: 4px 8px;
		font-size: 16px;
	}
	.agree_wrap {
		flex-wrap: wrap;
		gap: 32px;
		padding-top: 24px;
	}
	.agree_check input[type=checkbox] + span.wpcf7-list-item-label {
		padding-left: 27px;
	}
	.agree_check input[type=checkbox] + span.wpcf7-list-item-label::before,
	.agree_check input[type=checkbox] + span.wpcf7-list-item-label::after {
		width: 16px;
		height: 16px;
		top: 4px;
	}
	.contact_submit {
		width: 100%;
	}
	.contact_submit .wpcf7-submit.btn {
		padding: 8px 24px;
		width: 100%;
		justify-content: center;
	}
	.wpcf7-not-valid-tip {
		position: static;
	}
}

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

}




/* **************************************** *
 * login, 404
 * **************************************** */
#login_con2 {
    background: url(/wp-content/uploads/con4_bg.jpg) no-repeat center;
    background-size: cover;
}
.tml label {
    color: #fff;
    font-weight: 700;
}
.tml-login .tml-submit-wrap input {
    appearance: none;
    outline: 0;
    background: transparent;
    cursor: pointer;
    border: 1px solid #fff;
    display: flex;
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6em;
    color: #fff;
    transition: .3s ease-in-out;
}
.tml-login .tml-submit-wrap input:hover {
	background: var(--primary-color);
}
.tml-login .tml-submit-wrap {
    display: flex;
    justify-content: flex-end;
}

section.inno_section.banner_404 {
    background: url(/wp-content/uploads/con4_bg.jpg) no-repeat center;
    background-size: cover;
    height: 100vh;
}
.banner_404 .subbanner_txtbox {
    display: flex;
    justify-content: center;
    text-align: center;
	align-items: center;
    color: #fff;
    flex-direction: column;
    gap: 24px;
}
.banner_404 .subbanner_txtbox a {
    color: #fff;
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #fff;
}

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

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

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

}