@charset "utf-8";

/* ------------------------------------
 * Page Heading
 */
.page-heading {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 80px;
}

.page-heading h2 {
	font-size: 32px;
	font-weight: 700;
}

/* ------------------------------------
 * Breadcrumb
 */
.site-path {
  display: flex;
  align-items: center;
}

.site-path span {
  display: flex;
  color: var(--gray500);
  font-size: 14px;
  align-items: center;
}

.site-path .ico-home {
  background: url('../images/content/ico-path-home.svg') 50%;
  width: 14px;
  height: 14px;
}

.site-path span::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url('../images/content/ico-path-arrow.svg') 0;
  content: "";
  margin: 0 8px;
  vertical-align: top;
}

/* ------------------------------------
 * BIZ Content
 */
.block-tile-wrapper {
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.block-tile-flex {
	display: flex;
	justify-content: space-between;
	gap: 100px;
}

.block-tile-flex .block-tile {
	width: calc((100% / 2) - (((2 - 1) / 2) * 100px));
}

.block-tile {
	display: flex;
	gap: 30px;
	flex-direction: column;
}

.block-tile.full {
	flex-direction: row;
	justify-content: space-between;
	gap: 100px;
}

.block-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3em;
	min-height: calc(3.9em + 30px);
}

.block-title::before {
	display: block;
	width: 80px;
	height: 2px;
	background-color: var(--dark);
	margin-bottom: 28px;
	content: "";
}

.block-content {
	display: flex;
	gap: 30px;
	flex-direction: column;
}

.block-tile.full .block-content {
	width: 59%;
	flex-shrink: 0;
}

.block-sub-title {
	color: var(--gray500);
	font-size: 24px;
	line-height: 1.5em;
	letter-spacing: -0.01em;
	font-weight: 600;
	word-break: keep-all;
}

.block-sub-title:lang(en) {
	font-size: 20px;
}

.block-graph p {
	font-size: 18px;
	line-height: 1.6em;
}

.block-graph p:not(last-of-type){
	margin-bottom: 1.0em;
}

ul.block-list li {
	display: flex;
	font-size: 18px;
	line-height: 1.5em;
	padding-left: 32px;
	background: url('../images/content/ico-check-blue.svg') 0 0;
	word-break: keep-all;
}

ul.block-list li:lang(en) {
	font-size: 16px;
}

ul.block-list li:not(:last-of-type) {
	margin-bottom: 10px;
}

.tile-content {
	display: flex;
	gap: var(--tile-gap);
}

.tile-content {
	--tile-gap: 24px;
}

.tile-content.wrap {
	flex-wrap: wrap;
}

.tile-content-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 42px 24px;
	background-color: var(--blue200);
	border-radius: 12px;
	text-align: center;
	align-items: center;
}

.tile-content.wrap .tile-content-card {
	padding: 28px 24px;
}

.tile-content-card.align-left {
	text-align: left;
	gap: 24px;
	padding: 24px;
	align-items: flex-start;
}

.tile-content.grid-2-col .tile-content-card {
	width: calc((100% / 2) - (((2 - 1) / 2) * var(--tile-gap)));
}

.tile-content.grid-3-col .tile-content-card {
	width: calc((100% / 3) - (((3 - 1) / 3) * var(--tile-gap)));
}

.tile-content.grid-4-col .tile-content-card {
	width: calc((100% / 4) - (((4 - 1) / 4) * var(--tile-gap)));
}

.tile-content-card:nth-child(even) {
	background-color: var(--gray100);
}

.tile-content-card i {
	display: block;
	width: 38px;
	height: 38px;
}

.tile-content-card i.card-ico-xs {
	width: 24px;
	height: 24px;
	margin-bottom: 4px;
}

.tile-content-card p {
	font-size: 18px;
	line-height: 1.5em;
}

.tile-content-card p:lang(en) {
	font-size: 16px;
}

.tile-content-card p.tile-title {
	font-size: 20px;
	font-weight: 600;
	word-break: keep-all;
}

.tile-content-card p.tile-title-sub {
	font-size: 16px;
	word-break: keep-all;
}

.tile-content-card p.tile-ico-title {
	font-size: 16px;
	font-weight: 700;
}

.gap-h30 {
	height: 30px;
}

.block-tb-info {
	border-top: 1px solid var(--dark);
}

.block-tb-info ul li {
	display: flex;
	gap: 30px;
	border-bottom: 1px solid var(--gray300);
	align-items: center;
	line-height: 1.5;
	padding: 16px 8px;
}

.block-tb-info ul li em {
	color: var(--gray400);
	width: 100px;
	flex-shrink: 0;
}

.tile-banner {
	display: flex;
	align-items: center;
	background-color: #F1F4F9;
	height: 450px;
	padding: 100px 100px;
	border-radius: 12px;
	overflow: hidden;
}

.tile-banner p {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.3em;
}

.tile-banner p:lang(en) {
	font-size: 38px;
}

.tile-banner p span {
	display: block;
	margin-bottom: .5em;
	letter-spacing: 0.01em;
	font-size: 16px;
	font-weight: 300;
}

.tile-banner.banner-intro {
	justify-content: center;
	background: #000 url('../images/content/intro-banner.png') right 0 / cover;
}

.tile-banner.banner-intro p {
	color: #FFF;
	font-size: 32px;
	word-break: keep-all;
}

.tile-banner.banner-algo {
	background: #F1F4F9 url('../images/content/biz-banner-algo.jpg') right 0 / cover;
}

.tile-banner.banner-vr {
	background: #F1F4F9 url('../images/content/biz-banner-vr.jpg') right 0 / cover;
}

.tile-banner.banner-robot {
	background: #F1F4F9 url('../images/content/biz-banner-robot.jpg') right 0 / cover;
}

.tile-banner.banner-cctv {
	background: #F1F4F9 url('../images/content/biz-banner-cctv.jpg') right 0 / cover;
}

/* ------------------------------------
 * Vision Content
 */
.block-center-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 100px;
}

.block-center-headiline {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.3em;
	text-align: center;
}

.block-center-headiline::after {
	display: block;
	width: 120px;
	height: 2px;
	background-color: var(--dark);
	margin: 40px auto 0 auto;
	content: "";
}

.block-center-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 24px;
}

.block-center-content h4 {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}

.block-center-content p {
	color: var(--gray400);
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}

.block-value {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin: 38px 0; 
}

.value-word {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	border-radius: 50%;
	width: 240px;
	height: 240px;
	background-color: var(--primary);
}

.value-word:lang(en) {
	font-size: 20px;
}

.value-word::before {
	position: absolute;
	top: 6px;
	left: 6px;
	display: block;
	width: calc(100% - 14px);
	height: calc(100% - 14px);
	border: 1px solid rgba(255 255 255 / 40%);
	content: "";
	border-radius: 50%;
}

.value-word::after {
	position: absolute;
	top: 13px;
	left: 13px;
	display: block;
	width: calc(100% - 28px);
	height: calc(100% - 28px);
	border: 1px solid rgba(255 255 255 / 30%);
	content: "";
	border-radius: 50%;
}

.value-word.green {
	background-color: #38BA6F;
}

.value-word.gray {
	background-color: #748392;
}

.bottom-slogun {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 600px;
	background: url('../images/content/bottom-bg-kid.jpg') 50% 0 / cover;
	background-attachment: fixed;
	padding: 0 24px;
}

.bottom-slogun.case {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 600px;
	background: url('../images/content/bottom-bg-desert.jpg') 50% 0 / cover;
	background-attachment: fixed;
}

.bottom-slogun p {
	color: #FFF;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-align: center;
}

.bottom-slogun p::after {
	display: block;
	width: 12px;
	height: 12px;
	background-color: #FFF;
	margin: 40px auto;
	border-radius: 50%;
	content: "";
}

.dandy-kakao-map {
	width: 100%;
  aspect-ratio: 8 / 4.5;
  background-color: #EEE;
}

.dandy-kakao-map .cont {
	display: none;
}

.dandy-kakao-map .root_daum_roughmap .wrap_map {
  height: calc(100% - 32px);
}

/* ------------------------------------
 * Case 
 */
ul.case-list li {
	display: flex;
	gap: 30px;
	border-bottom: 1px solid var(--gray200);
	align-items: center;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
	padding: 24px 12px;
}

ul.case-list li:lang(en) {
	font-size: 18px;
}

ul.case-list li:first-of-type {
	padding-top: 0;
}

ul.case-list li em {
	color: var(--gray400);
	font-size: 16px;
	font-weight: 400;
	width: 100px;
	flex-shrink: 0;
}

/* ------------------------------------
 * Warranty 
 */
.warranty-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.warranty-card {
	display: flex;
	gap: 40px;
	border-bottom: 1px solid var(--gray200);
	padding-bottom: 24px;
	width: calc((100% / 2) - (((2 - 1) / 2) * 50px));
}

.warranty-thumb {
	flex-shrink: 0;
}

.warranty-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.warranty-label {
	color: var(--primary);
	font-size: 16px;
}

.warranty-name {
	font-size: 24px;
	font-weight: 600;
}

.warranty-sub {
	font-size: 18px;
	color: var(--gray500);
}

/* ------------------------------------
 * Form Consult
 */

.form-set {
	display: flex;
	gap: 16px;
	padding: 12px 8px;
	border-bottom: 1px solid var(--gray200);
}

.form-set label {
	font-size: 16px;
	font-weight: 600;
	width: 120px;
	padding-top: 11px;
}

.cs-field {
	/* Field 정의 */
	font-size: 16px;
	width: 100%;
	height: 42px;
}

.cs-field:focus, .cs-textarea:focus {
	outline: 0;
}

.cs-textarea {
	font-size: 16px;
	width: 100%;
	height: 250px;
	padding: 12px 0;
	resize: none;
}

.check-label {
	top: -12px;
}

input[type="checkbox"].cs-check {
  appearance: none;
  display: none;
}

input[type=checkbox].cs-check + label {
  display: flex;
  font-size: 16px;
  line-height: 1.5em;
  word-break: keep-all;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

input[type=checkbox].cs-check + label::before {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  content: "";
  background-color: var(--gray200);
  cursor: pointer;
 }

input[type=checkbox].cs-check:checked + label::before {
  background: var(--primary) url('../images/ico-check.svg') 50% / 12px no-repeat;
  border-color: var(--primary);
}

.form-agree-box {
  margin: 0;
  margin-bottom: 16px;
  padding: 24px;
  background-color: var(--blue100);
  overflow-x: hidden;
  overflow-Y: auto;
  text-align: left;
}

.form-agree-box > h5 {
  font-size: 18px;
  margin-bottom: 1.0em;
}

.form-agree-box > ul {
  margin: 0 5px;
}

.form-agree-box > ul > li {
  color: #444;
  font-size: 16px;
  margin-bottom: 0.6em;
  padding-left: 12px;
}

.form-agree-box > ul > li:last-child {
  margin-bottom: 0;
}

.form-agree-box > ul > li::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  width: 3px;
  height: 3px;
  background-color: #999;
  border-radius: 4px;
  content: "";
  vertical-align: 1px;
}

.form-bottom {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.btn-round-confirm {
	width: 220px;
	padding: 20px 20px;
	color: #FFF;
	font-size: 20px;
	font-weight: 500;
	background-color: var(--primary);
	border-radius: 68px;
	cursor: pointer;
	transition: background .2s ease, width .4s .1s ease;
}

.btn-round-confirm:hover {
	background-color: #15397a;
	width: 248px;
}

/* 에러 메시지 */
.field-error {
	display: none;
	color: #e74c3c;
	font-size: 13px;
	margin-top: 6px;
}

/* Honeypot 필드 숨김 */
.honeypot-field {
	position: absolute;
	left: -9999px;
}

/* 결과 메시지 */
.form-result {
	margin-top: 24px;
	padding: 16px 20px;
	border-radius: 8px;
	text-align: center;
}

.form-result.success {
	background-color: #d4edda;
	color: #155724;
}

.form-result.error {
	background-color: #f8d7da;
	color: #721c24;
}


/* RWD
--------------------------------------------- */
@media screen and (max-width:1536px) {
	/* */
}


@media screen and (max-width:1024px) {
	/* Solution */
	.tile-banner {
		padding: 0;
		padding-left: 60px;
	}

	/* Vison */
	.block-center-content p br {
		display: none;
	}

	/* warranty */
	.warranty-card {
		width: 100%;
	}

	.warranty-thumb {
		width: 25%;
	}
}

@media screen and (max-width: 800px) {
	/** Heading */
	.page-heading {
		gap: 16px;
		margin-bottom: 60px;
	}

	.page-heading h2 {
		font-size: 24px;
	}

	/** biz **/
	.block-tile-wrapper {
		gap: 80px;
	}

	.block-tile.full {
		flex-direction: column;
		gap: 30px;
	}

	.block-tile.full .block-content {
		width: 100%;
	}

	.block-tile-flex {
		flex-direction: column;
		gap: 80px;
	}

	.block-tile-flex .block-tile {
		width: 100%;
	}

	.block-title {
		font-size: 24px;
		min-height: inherit;
	}

	.block-title::before {
		width: 48px;
	}

	.block-sub-title {
		font-size: 18px;
	}

	.block-content {
		gap: 20px;
	}

	.tile-banner {
		height: auto;
		padding: 80px 40px;
	}

	.tile-banner p {
		font-size: 32px;
	}

	.tile-banner p:lang(en) {
		font-size: 32px;
	}

	/** Company **/
	.block-center-headiline {
		font-size: 32px;
	}

	.block-center-content h4 {
		font-size: 28px;
	}

	.block-center-content p {
		font-size: 21px;
	}

	.block-center-content {
		width: 100%;
	}

	.block-value {
		width: 100%;
		padding: 0 24px;
	}

	.value-word {
		width: calc((100% / 3) - (((3 - 1) / 3) * 24px));
		height: auto;
		aspect-ratio: 1/1;
		font-size: 20px;
	}

	.value-word:lang(en) {
		font-size: 16px;
		padding: 12px;
	}

	.bottom-slogun, .bottom-slogun.case {
		height: 40vh;
		background-size: cover;
		background-attachment: inherit;
	}

	.bottom-slogun.case {
		background-position: 25% 0;
	}

	.bottom-slogun p {
		font-size: 24px;
	}

	.bottom-slogun p::after {
		display: none;
	}

	/** Case **/
	ul.case-list li {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		font-size: 18px;
		padding: 16px 8px;
	}

	ul.case-list li em {
		font-size: 14px;
	}

	/** warranty **/
	.warranty-label {
		font-size: 12px;
	}

	.warranty-name {
		font-size: 20px;
	}

	.warranty-sub {
		font-size: 16px;
	}

	/** Consult **/
	.check-label {
		top: -6px;
	}

}

@media screen and (max-width: 640px) {
	/** Solution **/
	.tile-content.grid-4-col {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.tile-content.grid-4-col .tile-content-card {
		width: calc((100% / 2) - (((2 - 1) / 2) * var(--tile-gap)));
	}
}

@media screen and (max-width: 430px) {
	.page-heading {
		margin-bottom: 40px;
	}

	.site-path .ico-home {
		width: 12px;
		height: 12px;
		background-size: 10px;
	}

	.site-path span {
		font-size: 12px;
	}

	.site-path span::before {
		margin: 0 4px;	
	}

	/** Solution **/
	.block-title {
		font-size: 21px;	
	}

	.block-sub-title {
		font-size: 16px;
	}

	.block-sub-title:lang(en) {
		font-size: 16px;
	}

	.block-tile-wrapper, .block-tile-flex {
		gap: 60px;
	}

	ul.block-list li {
		font-size: 15px;
		padding-left: 24px;
		background-size: 18px;
	}

	.tile-content {
		--tile-gap: 12px;
		flex-direction: column;
	}

	.tile-content.grid-2-col .tile-content-card,
	.tile-content.grid-3-col .tile-content-card {
		width: 100%;
	}

	.tile-content.grid-3-col.wrap {
		flex-direction: row;
	}

	.tile-content.grid-3-col.wrap .tile-content-card {
		width: calc((100% / 2) - (((2 - 1) / 2) * var(--tile-gap)));
	}

	.tile-content-card {
		padding: 24px 16px;
		gap: 2px;
	}

	.tile-content-card.align-left,  {
		padding: 20px;
		gap: 18px;
	}

	.tile-content-card i {
		width: 24px;
		height: 24px;
	}

	.tile-content-card p {
		font-size: 16px;
	}

	.tile-content-card p.tile-title {
		font-size: 17px;
	}

	.tile-content-card p.tile-title-sub {
		font-size: 14px;
	}

	.tile-content-card i.card-ico-xs {
		margin-bottom: 12px;
	}

	.tile-banner {
		padding: 40px 24px;
	}

	.tile-banner p, .tile-banner.banner-intro p {
		color: #FFF;
		font-size: 21px;
		line-height: 1.4em;
		word-break: keep-all;
	}

	.tile-banner p:lang(en) {
		font-size: 20px;
		font-weight: 500;
	}

	.tile-banner p span {
		color: #FFF;
		font-size: 12px;
	}

	.tile-banner::before {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0 0 0 / 55%);
		content: "";
	}

	.block-title::before {
		margin-bottom: 24px;
	}

	/** Company **/
	.block-graph p {
		font-size: 16px;
	}

	.block-tb-info ul li {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		padding: 12px 6px;
		font-size: 16px;
		word-break: keep-all;
	}

	.block-tb-info ul li em {
		padding: 0;
		width: auto;
		font-size: 13px;
	}

	/** Company **/
	.block-center-wrapper {
		gap: 60px;
	}

	.block-center-headiline {
		margin-top: 24px;
		font-size: 28px;
	}

	.block-center-content h4 {
		font-size: 21px;
	}

	.block-center-content p {
		font-size: 16px;
		line-height: 1.5em;
		word-break: keep-all;
	}

	.block-center-content p br {
		display: none;
	}

	.block-value {
		padding: 24px 0;
		margin: 0;
		gap: 6px;
	}

	.value-word {
		width: calc((100% / 3) - (((3 - 1) / 3) * 6px));
		font-size: 16px;
	}

	.value-word:lang(en) {
		font-size: 14px;
	}

	.value-word::after {
		display: none;
	}

	.value-word::before {
		width: calc(100% + 22px);
		height: calc(100% + 22px);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		border-color: rgba(0 0 0 / 10%);
		z-index: -1;
	}

	.dandy-kakao-map {
		aspect-ratio: 8 / 10;
	}

	/** Case **/
	ul.case-list li {
		gap: 6px;
		font-size: 16px;
		padding: 12px 0;
	}

	ul.case-list li em {
		font-size: 12px;
	}

	ul.case-list li:lang(en) {
		font-size: 15px;
	}

	/** warranty **/
	.warranty-wrapper {
		gap: 24px;
	}
	.warranty-card {
		gap: 24px;
		padding-left: 6px;
		padding-right: 6px;
	}

	.warranty-label {
		font-size: 12px;
	}

	.warranty-name {
		font-size: 18px;
	}

	.warranty-name:lang(en) {
		font-size: 16px;
	}

	.warranty-sub {
		font-size: 14px;
	}

	/** Consult **/
	.form-set {
		flex-direction: column;
		gap: 6px;
		padding: 8px 6px;
	}

	.form-set label {
		font-size: 14px;
	}

	.form-agree-box {
		padding: 18px;
	}

	.form-agree-box > h5 {
		font-size: 14px;
		margin-bottom: 0.8em;
	}

	.form-agree-box > ul > li {
		font-size: 14px;
		margin-bottom: 0.3em;
	}

	input[type=checkbox].cs-check + label {
		font-size: 14px;
	}

	.btn-round-confirm {
		font-size: 16px;
		padding: 16px;
	}

}
