/****************************/
/*      Sovac 2025          */
/****************************/
@charset "UTF-8";
@font-face {
	font-family: 'Pretendard';
	font-weight: 900;
	font-display: swap;
	src: local('Pretendard Black'), url('../fontsPretendard/Pretendard-Black.woff2') format('woff2'), url('../fontsPretendard/Pretendard-Black.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 800;
	font-display: swap;
	src: local('Pretendard ExtraBold'), url('../fontsPretendard/Pretendard-ExtraBold.woff2') format('woff2'), url('../fontsPretendard/Pretendard-ExtraBold.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 700;
	font-display: swap;
	src: local('Pretendard Bold'), url('../fontsPretendard/Pretendard-Bold.woff2') format('woff2'), url('../fontsPretendard/Pretendard-Bold.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 600;
	font-display: swap;
	src: local('Pretendard SemiBold'), url('../fontsPretendard/Pretendard-SemiBold.woff2') format('woff2'), url('../fontsPretendard/Pretendard-SemiBold.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 500;
	font-display: swap;
	src: local('Pretendard Medium'), url('../fontsPretendard/Pretendard-Medium.woff2') format('woff2'), url('../fontsPretendard/Pretendard-Medium.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 400;
	font-display: swap;
	src: local('Pretendard Regular'), url('../fontsPretendard/Pretendard-Regular.woff2') format('woff2'), url('../fontsPretendard/Pretendard-Regular.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 300;
	font-display: swap;
	src: local('Pretendard Light'), url('../fontsPretendard/Pretendard-Light.woff2') format('woff2'), url('../fontsPretendard/Pretendard-Light.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 200;
	font-display: swap;
	src: local('Pretendard ExtraLight'), url('../fontsPretendard/Pretendard-ExtraLight.woff2') format('woff2'), url('../fontsPretendard/Pretendard-ExtraLight.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 100;
	font-display: swap;
	src: local('Pretendard Thin'), url('Pretendard-Thin.woff2') format('woff2'), url('Pretendard-Thin.woff') format('woff');
}
:root {
	--clr-base: #fff;
	--clr-text: #1d1d1b;
	--clr-secondary-text: #565656;
	--clr-third-text: #b2b2b2;
	--clr-accent: #0a46dc;
	--clr-secondary-accent: #00dcff;

	/* font families */
	--ff-base: 'Pretendard';
}

/** layout **/
*,
*:after,
*:before {margin: 0;padding: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html, body { width: 100%; font-family: var(--ff-base);margin: 0;padding: 0;height:100%;background-color:var(--clr-base);}
a {color: var(--clr-text); text-decoration:none;outline:none; }
a:visited {text-decoration:none;}
a:link {text-decoration:none;} 
ol, ul{list-style:none;} 
img {width: 100%;}
body * { font-family: var(--ff-base);margin: 0;padding: 0;}
.offer-wrapper {
	min-width: 1200px;
}
@media screen and (max-width: 1200px) {
	.offer-wrapper {
		min-width: 350px;
	}
}

.mobile {
	display: none !important;
}

.desktop {
	display: block !important;
}

.mobile-flex {
	display: none !important;
}

.desktop-flex {
	display: flex !important;
}

.mobile-colgroup {
	display: none !important;
}

.desktop-colgroup {
	display: table-column-group !important;
}

@media screen and (max-width: 1200px) {
	.mobile {
		display: block !important;
	}

	.desktop {
		display: none !important;
	}

	.mobile-flex {
		display: flex !important;
	}

	.desktop-flex {
		display: none !important;
	}

	.mobile-colgroup {
		display: table-column-group !important;
	}

	.desktop-colgroup {
		display: none !important;
	}
}
.header {	
	background-color: var(--clr-base);
	z-index: 100;
	width: 100%;
	min-width: 1200px;
	height: 120px;
	display: flex;
	align-items: center;
	padding: 17px 40px 12px;
	box-sizing: border-box;
	border-bottom: 1px solid var(--clr-accent);
	position: fixed;
	top: 0;
	left: 0;

	.logo {
		width: 170px;
		height: 91px;

		img {
			width: 100%;
		}
	}

	.btn-wrapper {
		margin-left: auto;
		padding-top: 33px;
		text-align: right;

		.btn {
			display: inline-block;
			width: 170px;
			height: 50px;			
			padding: 0;
			border-radius: 10px;
			background-image: linear-gradient(to top, var(--clr-accent), #0634a6);
			font-size: 20px;
			font-weight: 500;
			line-height: 50px;
			letter-spacing: -1px;
			text-align: center;
			color: var(--clr-base);
			transition: .3s;
		}
		.btn:last-child{
			background-image: linear-gradient(to top, #4f2a7f, #7146a8);
		}
		.btn+.btn {margin-left: 10px;}
		.btn:hover {
			box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.3);
		}

	}
}

.header-mobile {
	display: none;
	background-color: var(--clr-base);
	z-index: 100;
	width: 100%;	
	min-width: 350px;
	height: 63px;	
	padding: 8px 10px;
	box-sizing: border-box;
	border-bottom: 1px solid var(--clr-accent);
	position: fixed;
	top: 0;
	left: 0;

	.inner-wrapper {
		max-width: 720px;
		margin: 0 auto;
		display: flex;
		align-items: center;
	}

	.logo {
		width: 89px;
		height: 47px;

		img {
			width: 100%;
		}
	}

	.btn-wrapper {
		margin-left: auto;
		padding-top: 12px;
		text-align: right;

		.btn {
			display: inline-block;			
			height: 35px;			
			padding: 0 8px;
			border-radius: 5px;
			background-image: linear-gradient(to top, var(--clr-accent), #0634a6);
			font-size: 13px;
			font-weight: 600;
			line-height: 35px;
			letter-spacing: -1px;
			text-align: center;
			color: var(--clr-base);
		}
		.btn:last-child{
			background-image: linear-gradient(to top, #4f2a7f, #7146a8);
		}
		.btn+.btn {margin-left: 4px;}		

		@media screen and (max-width: 450px) {
			.btn {padding: 0 4px;}
			.btn+.btn {margin-left: 0px;}
		}
	}
}

@media screen and (max-width: 1200px) {
	.header {
		display: none;
	}

	.header-mobile {
		display: block;
	}
}

.article {
	background: var(--clr-accent);
	padding: 180px 0 0;
	max-width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 1200px) {
	.article {
		padding: 110px 0 0;
		max-width: 720px;
	}
}

.txt-slogan {
	padding: 40px 70px;

	.title {
		font-size: 62px;
		font-weight: 800;
		line-height: 1.16;
		letter-spacing: -1.55px;
		text-align: left;
		color: var(--clr-base);
		margin-bottom: 65px;
	}

	dl {
		padding-left: 120px;
		position: relative;

		dt,
		dd {
			font-size: 28px;
			font-weight: 600;
			line-height: 1.5;
			letter-spacing: -0.7px;
			text-align: left;
			color: var(--clr-base);
		}

		dt {
			position: absolute;
			left: 0;
			top: 0;
		}

		.ps {
			font-size: 20px;
			font-weight: 500;
			letter-spacing: -0.5px;
			text-align: left;
			color: var(--clr-third-text);
		}
	}

	p {
		margin-top: 60px;
		font-size: 25px;
		font-weight: 500;
		line-height: 1.52;
		letter-spacing: -0.28px;
		text-align: center;
		color: var(--clr-base);

		.txt-point {
			border-radius: 15px;
			background-color: var(--clr-secondary-accent);
			color: var(--clr-accent);
			padding: 0 10px;
		}
	}
}

@media screen and (max-width: 1200px) {
	.txt-slogan {
		padding: 24px 16px 0;

		.title {
			font-size: 24px;
			line-height: 1.15;
			letter-spacing: -0.59px;
			margin-bottom: 20px;
		}

		dl {
			padding-left: 64px;

			dt,
			dd {
				font-size: 15px;
				line-height: 1.34;
				letter-spacing: -0.36px;
			}

			.ps {
				font-size: 12px;
				letter-spacing: -0.29px;
			}
		}

		p {
			margin-top: 24px;
			font-size: 14px;
			line-height: 1.52;
			letter-spacing: -0.31px;
			word-break: keep-all;

			.txt-point {
				border-radius: 0px;
				color: var(--clr-accent);
				text-decoration: none;
				display: inline;
				box-shadow: inset 0 -19px 0 var(--clr-secondary-accent);
				background: none;
				padding: 0;
			}
		}
	}
}

.details {
	padding: 0 40px 80px;

	hr {
		display: block;
		outline: none;
		width: 100%;
		height: 1px;
		margin: 70px 0 60px;
		border: 0;
		background-color: var(--clr-secondary-accent);
	}
	.title2 {
		position: relative;
		padding-left: 60px;
		background: url(https://ksvf.kr/images/ic_star.png) no-repeat 0 center;
		background-size: 43px 44px;
		font-size: 36px;
		font-weight: 800;
		line-height: 1.11;
		letter-spacing: -0.28px;
		text-align: left;
		color: var(--clr-base);
		margin-bottom: 25px
	}

	.btn-wrapper {
		margin-top: 80px;
		text-align: center;

		.btn-go {
			display: inline-block;
			height: 90px;
			padding: 0 112px 0 68px;
			border-radius: 45px;
			border: solid 3px var(--clr-base);
			background: var(--clr-secondary-accent) url(https://ksvf.kr/images/arrow_right.png) no-repeat calc(100% - 46px) center;
			background-size: 14px 26px;
			font-size: 34px;
			font-weight: 600;
			line-height: 90px;
			text-align: left;
			color: var(--clr-text);
			transition: .3s;
		}
		.btn-go+.btn-go {
			margin-left: 16px;
		}
		.btn-go:hover {
			box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
		}
	}
}

@media screen and (max-width: 1200px) {
	.details {
		padding: 0 10px 30px;

		hr {
			margin: 25px 0 20px;
		}

		.title2 {
			padding-left: 24px;
			background-size: 16px 16px;
			font-size: 16px;
			margin-bottom: 8px;
		}

		.btn-wrapper {
			margin-top: 20px;
			text-align: center;

			.btn-go {
				height: 30px;
				padding: 0 27px 0 15px;
				border-radius: 15px;
				border: solid 1px var(--clr-base);
				background: var(--clr-secondary-accent) url(https://ksvf.kr/images/arrow_right.png) no-repeat calc(100% - 13px) center;
				background-size: 4px 8px;
				font-size: 14px;
				line-height: 30px;
			}
			.btn-go+.btn-go {
				margin-left: 5px;
			}
		}
	}
}

.join-target-wrapper {
	padding-left: 60px;

	p {
		font-size: 28px;
		font-weight: 600;
		line-height: 1.4;
		text-align: left;
		color: var(--clr-base);
	}

	.ps {
		margin-top: 24px;
		font-size: 24px;
		font-weight: 500;
		text-indent: -23px;
		padding-left: 23px;

		.btn-link {
			color: inherit;
			border-bottom: 1px dashed var(--clr-base);
		}
	}
}

@media screen and (max-width: 1200px) {
	.join-target-wrapper {
		padding-left: 24px;

		p {
			font-size: 14px;
		}

		.ps {
			margin-top: 8px;
			font-size: 13px;
			text-indent: -12px;
			padding-left: 15px;
			word-break: keep-all;
			letter-spacing: -0.31px;
		}
	}
}

.offering-field-wrapper {
	padding-left: 30px;
	margin-bottom: 45px;

	dl {
		padding-left: 190px;
		position: relative;

		
		dd {
			font-size: 28px;
			font-weight: 600;
			text-align: left;
			color: var(--clr-base);
			padding-top: 8px;
		}

		dt {
			position: absolute;
			left: 0;
			top: 0;
			width: 170px;
			height: 45px;			
			padding: 0 16px;
			border-radius: 15px;
			background-color: var(--clr-secondary-accent);
			font-size: 28px;
			font-weight: 600;
			line-height: 45px;
			text-align: center;
			color: var(--clr-accent);
		}
	}
	dl+dl {
		margin-top: 20px;
	}
}

@media screen and (max-width: 1200px) {
	.offering-field-wrapper {
		padding-left: 8px;
		margin-bottom: 15px;

		dl {
			padding-left: 85px;

			dd {
				font-size: 13px;
				padding-top: 0;
			}

			dt {
				width: 80px;
				height: 17px;
				padding: 0 6px;
				border-radius: 15px;
				font-size: 13px;
				line-height: 17px;
			}
		}
		dl+dl {
			margin-top: 10px;
		}
	}
}

.table-wrapper {
	background: var(--clr-base);
	padding: 30px 80px 25px 80px;
	box-shadow: 13px 15px #000;
	border: solid 2px #000;

	p.ps {
		font-size: 20px;
		font-weight: 500;
		text-align: left;
		color: var(--clr-secondary-text);
		margin-top: 16px;
	}
	p.ps.ar {
		text-align: right;
	}
}

@media screen and (max-width: 1200px) {
	.table-wrapper {
		padding: 7px 7px 13px 8px;
		box-shadow: 4px 5px #000;
		border: solid 1px #000;

		p.ps {
			font-size: 11px;
			margin-top: 6px;
		}
	}
}

.listTable.round {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	margin-top: 20px;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 0 0 1px var(--clr-accent);
	border-style: hidden;
}
.listTable.round thead th {
	height: 42px;
	background-color: var(--clr-accent);
	border-top-color: var(--clr-accent);
	font-size: 28px;
	font-weight: 600;
	line-height: 42px;
	letter-spacing: -0.064px;
	color: var(--clr-base);
	text-align: center;
	vertical-align: middle;
}
.listTable.round thead td {
	height: 42px;
	background-color: #e4e4e4;
	border-top-color: var(--clr-accent);
	font-size: 28px;
	font-weight: 600;
	line-height: 42px;
	letter-spacing: -0.064px;
	color: var(--clr-accent);
	text-align: center;
	padding: 0;
}
.listTable.round thead th+th {
	border-left: 1px solid #3365e2;
}
.listTable.round thead td+td {
	border-left: 1px solid var(--clr-accent);
}
.listTable.round th:first-child {
	border-left: 0
}
.listTable.round th:last-child {
	border-right: 0
}
.listTable.round td:last-child {
	border-right: 0
}
.listTable.round tbody th {
	height: auto;	
	font-size: 28px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: -0.064px;
	color: var(--clr-accent);
	text-align: center;
	vertical-align: middle;
}
.listTable.round td {
	padding: 12px;
	border-color: var(--clr-accent);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.06px;
	text-align: center;
	color: var(--clr-accent);
	vertical-align: middle;
	border-left: 1px solid var(--clr-accent);
	border-top: 1px solid var(--clr-accent);
}
.listTable.round td span {
	font-size: 23px;
	font-weight: 400;
}
.listTable.round thead th:first-child {
	border-top-left-radius: 10px;
}
.listTable.round thead th:last-child {
	border-top-right-radius: 10px;
}
.dot-list li {
	position: relative;
	padding-left: 15px;
	font-size: inherit;
	font-weight: inherit;
	line-height: 1.5;
	letter-spacing: inherit;
	text-align: left;
}

.dot-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 18px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--clr-accent);
}

.dot-list li span {
	font-weight: 400;
}

@media screen and (max-width: 1200px) {
	.listTable.round {
		margin-top: 0px;
		border-radius: 5px 5px 0 0;
	}

	.listTable.round thead th {
		height: 17px;
		font-size: 11px;
		line-height: 17px;
	}

	.listTable.round thead td {
		height: 17px;
		font-size: 11px;
		line-height: 17px;
	}

	.listTable.round tbody th {
		font-size: 11px;
		line-height: 17px;
	}

	.listTable.round td {
		padding: 8px 4px;
		font-size: 10px;
		letter-spacing: -0.6px;
	}

	.listTable.round td span {
		font-size: 0.9em;
	}
	.listTable.round thead th:first-child {
		border-top-left-radius: 5px;
	}
	.listTable.round thead th:last-child {
		border-top-right-radius: 5px;
	}
	.listTable.round tbody tr:last-child th:first-child,
	.listTable.round tbody tr:last-child td:first-child {
		border-bottom-left-radius: 0px;
	}
	.listTable.round tbody tr:last-child td:last-child {
		border-bottom-right-radius: 0px;
	}
}

@media screen and (max-width: 1200px) {
	.dot-list li {
		padding-left: 6px;
	}

	.dot-list li::before {
		top: 6px;
		width: 2px;
		height: 2px;
	}
}

.table-wrapper.with-title {
	position: relative;
	padding: 65px 60px;

	.title2 {
		color: var(--clr-accent);
	}

	.ico-earth {
		position: absolute;
		left: -19px;
		bottom: -3px;
		width: 238px;

		img {
			width: 100%;
		}
	}
}

@media screen and (max-width: 1200px) {
	.table-wrapper.with-title {
		padding: 20px 6px 16px 10px;

		.ico-earth {
			left: -6px;
			bottom: -3px;
			width: 84px;
		}
	}
}

.inner-table-wrapper{
	position: relative;
	padding-left: 200px;

	.title {
		position: absolute;
		left: 20px;
		top: 0;
		width: 170px;

		span {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
			height: 90px;
			padding: 17px 0 14px;
			border-radius: 15px;
			background-color: var(--clr-accent);
			font-size: 28px;
			font-weight: 600;
			line-height: 1.3;
			text-align: center;
			color: var(--clr-base);
		}
		.ps2 {
			display: block;
			text-align: center;
			font-size: 20px;
			font-weight: 500;
			color: var(--clr-secondary-text);
			margin-top: 8px;
		}		
	}
	.ps3 {
		display: block;
		text-align: center;
		font-size: 17px !important;
		font-weight: 400;
		color: var(--clr-secondary-text);
	}
	.listTable.round td {
		padding: 30px 12px;
	}

}

@media screen and (max-width: 1200px) {
	.inner-table-wrapper {
		padding-left: 63px;

		.title {
			left: -4px;
			width: 60px;

			span {
				height: 50px;
				padding: 5px 0;
				border-radius: 5px;
				font-size: 12px;
				line-height: 1.21;
				letter-spacing: -0.3px;
			}

			.ps2 {
				font-size: 11px;
				margin-top: 2px;
				letter-spacing: -0.26px;
			}
		}

		.ps3 {
			font-size: 10px !important;
		}

		.listTable.round td {
			padding: 20px 3px;
		}
	}
}

.inner-table-wrapper+.title2 {
	margin-top: 60px;
}
.step-wrapper {
	padding-left: 200px;

	dl {
		position: relative;
		padding-left: 165px;
		margin-top: 60px;

		dt {
			position: absolute;
			left: 0px;
			top: 0;
			width: 140px;
			padding: 3px 0;
			border-radius: 15px;
			background-color: var(--clr-accent);
			font-size: 28px;
			font-weight: 600;
			line-height: 1.3;
			text-align: center;
			color: var(--clr-base);
		}
		dd {		
			font-size: 28px;
			font-weight: 700;
			line-height: 1.3;
			text-align: left;
			color: var(--clr-accent);

			span {
				font-weight: 400;
			}
		}
	}
}

@media screen and (max-width: 1200px) {
	.inner-table-wrapper+.title2 {
		margin-top: 20px;
	}
	.step-wrapper {
		padding-left: 60px;

		dl {
			padding-left: 75px;
			margin-top: 20px;

			dt {
				width: 65px;
				padding: 3px 0;
				border-radius: 5px;
				font-size: 13px;
			}

			dd {
				font-size: 13px;
			}
		}
	}
}

.inner-step-wrapper {
	display: flex;
	align-items: center;

	div {
		width: calc((100% - 100px)/3);
	}
	div+div {
		margin-left: 50px;
		position: relative;
	}
	div+div::before {
		content: '';
		position: absolute;
		left: -38px;
		top: 40px;
		width: 31px;
		height: 57px;
		background: url(https://ksvf.kr/images/arrow_right2.png) no-repeat center;
		background-size: 100%;
	}
}

@media screen and (max-width: 1200px) {
	.inner-step-wrapper {
		div {
			width: calc((100% - 40px)/3);
		}

		div+div {
			margin-left: 20px;
		}

		div+div::before {
			left: -18px;
			top: 10px;
			width: 15px;
			height: 28px;
		}
	}
}

.video-wrapper {
	margin-top: 85px;
	width: 100%;
	height: 632px;
	background: #000;
	padding: 0;
	box-shadow: 13px 15px #000;
	border: solid 2px #000;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	height: 0;
	padding-bottom: 56.25%;

	iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}

@media screen and (max-width: 1200px) {
	.video-wrapper {
		margin-top: 25px;
		box-shadow: 4px 5px #000;
		border: solid 1px #000;
		border-radius: 8px;
	}
}

.foot-banner {
	max-width: 1200px;
	margin: 0 auto;
	line-height: 0;
	font-size: 0;

	img {
		width: 100%;
	}
}

@media screen and (max-width: 1200px) {
	.foot-banner {
		max-width: 720px;
	}
}