@charset "utf-8";
/* 251213 main_renewal */
:root {
	--main-primary-color: #744eff;
	--main-tit-color: #212529;
	--main-tit-color2: #fff;
	--main-tit-color3: #9d92ff;
	--main-sub-color: #676f77;
	--main-txt-color: #e7eaed;
	--main-txt-color2: #495057;
	--main-txt-color3: #6f28e4;
	--main-txt-color4: #9d92ff;
	--float-btn-bg: #ebebeb;
	--float-btn-bg2: #782bd7;
	--float-btn-bg3: #2b2b2b;
	--float-btn-color: #2b2b2b;
	--float-btn-colo2: #fff;
	--main-btn-bg: #744eff;
	--main-btn-bg2: #fff;
	--main-btn-bg3: #0689ff;
	--main-btn-bg4: #f5439b;
	--main-btn-color: #212529;
	--main-btn-color2: #fff;
	--main-btn-color3: #0689ff;
	--main-btn-color4: #f5439b;
	--main-dim-bg: rgba(0, 0, 0, 0.45);
	--main-dim-bg2: rgba(0, 0, 0, 0.5);
	--main-border: 1px solid rgba(255, 255, 255, 0.4);
	--page-color: #adb5bd;
	--page-active-color: #212529;
	--font-family: 'pretendard',sans-serif;
}

i {
	font-family: 'renewalIcon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* component */
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	width: 180px;
	height: 48px;
	padding: 14px 12px;
	border-radius: 40px;
	background-color: var(--main-btn-bg2);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--main-btn-color);
	transition: background-color .2s;
}

.btn:link, .btn:visited {
	color: var(--main-btn-color);
}

.section .btn i {
	font-size: 24px;
}

.btn-purple {
	background-color: var(--main-btn-bg);
	color: var(--main-btn-color2);
}

.btn-blue {
	background-color: var(--main-btn-bg3);
	color: var(--main-btn-color2);
}

.btn-redpurple {
	background-color: var(--main-btn-bg4);
	color: var(--main-btn-color2);
}

.btn-redpurple:link,
.btn-redpurple:visited,
.btn-purple:link, 
.btn-purple:visited,
.btn-blue:link, 
.btn-blue:visited {
	color: var(--main-btn-color2);
}

.btn:hover {
	background-color: transparent;
	color: var(--main-btn-color2);
	border: 1px solid var(--main-btn-color2);
}

.section .btn:hover i:before {
	color: #fff;
}

.btn-purple:hover {
	color: var(--main-primary-color);
	border: 1px solid var(--main-primary-color);
}

.btn-redpurple:hover,
.visual .btn-redpurple:visited:hover {
	color: var(--main-btn-color4);
	border: 1px solid var(--main-btn-color4);
}

.btn-blue:hover,
.visual .btn-blue:visited:hover {
	color: var(--main-btn-color3);
	border: 1px solid var(--main-btn-color3);
}

.btn-float {
	width: 160px;
	height: 56px;
}

.btn-large {
	width: 220px;
	height: 56px;
	font-size: 18px;
	line-height: 1.56;
}

.text-wrap .btn {
	width: 156px;
}

.video-wrap {
	font-weight: 600;
	color: var(--main-tit-color2);
}

.video-wrap .video-tit {
	margin-bottom: 8px;
	font-size: 54px;
	font-weight: 600;
	line-height: 1.1;
}

.video-wrap .video-txt {
	font-size: 24px;
}

.floating-btn-wrap {
	display: none;
	position: fixed;
	bottom: 40px;
	right: 30px;
	width: 160px;
}

.floating-btn-wrap .floating-btn a,
.floating-btn-wrap .floating-btn button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px;
	margin-bottom: 8px;
	background-color: #ebebeb;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	color: #fff;
}

.floating-btn-wrap .floating-btn:nth-of-type(1) button {
	width: 100%;
	color: #2b2b2b;
}

.floating-btn-wrap .floating-btn:nth-of-type(2) a {
	background-color: #782bd7;
}

.floating-btn-wrap .floating-btn:nth-of-type(3) a {
	background-color: #2b2b2b;
}

.floating-btn i::before {
	font-size: 36px;
}

/* layout */
body, html, a, button {
	font-family: var(--font-family);
}

.main-page a:focus,
.main-page button:focus,
.main-page input:focus,
.main-page select:focus,
.main-page textarea:focus,
.main-page [tabindex]:focus {
	outline: 1px auto rgb(16, 16, 16);
}

.main-page * {
	box-sizing: border-box;
}

.main-page {
	background-color: var(--main-btn-bg2);
}

.main-page .section {
	overflow: hidden;
	min-height: 100vh;
}

.main-page .section.fp-auto-height {
	min-height: 0 !important;
}

/* .main-page .fp-tableCell {
	vertical-align: baseline;
} */

.page-menu {
	position: fixed;
	top: 50%;
	right: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 12px;
	transform: translate(0, -50%);
}

.page-menu-item {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--page-color);
}

.page-menu-item.active {
	width: 12px;
	height: 12px;
	background: var(--page-active-color);
}

.page-menu-item a {
	display: block;
	width: 100%;
	height: 100%;
}

.main-page .flex {
	display: flex;
}

.main-page .text-wrap.flex .left {
	flex: 1;
}

.main-page .text-wrap.flex {
	align-items: flex-end;
}

.link {
	display: block;
}

.section .text-wrap {
	max-width: 1100px;
	margin: 0 auto;
	line-height: 1.5;
	margin-bottom: 118px;
}

.section .text-wrap {
	opacity: 0;
	position: relative;
	top: -20px;
}
/* .section.service .text-wrap {
	opacity: 1;
	top: 0;
} */
/* .section .text-wrap.visible {
	opacity: 1;
	top: 0;
} */

.section .text-wrap span {
	font-weight: 600;
	color: var(--main-primary-color);
}

.section .page-tit {
	margin: 4px 0 12px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.38;
	color: var(--main-tit-color);
}

.section .page-desc {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.56;
	color: var(--main-sub-color);
}

.section .swiper {
	height: auto;
}

.section .swiper-wrapper {
	margin-bottom: 0;
}

.section .swiper-slide {
	border-radius: 10px;
}

.video-wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

.video-wrap .video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-color: var(--main-dim-bg2);
}

.video-wrap .sub-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: absolute;
	left: 0;
	top: 32.4%;
	width: 100%;
	color: var(--main-tit-color2);
}

/* visual */
.visual-video {
	width: 100%;
	height: 100vh;
}
.visual-video img {
  width: 100%;
}
.visual .btn-list {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

.visual .btn {
	height: 56px;
}

.btn-scrolldown {
	position: absolute;
	bottom: 0;
	left: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translate(-50%, -40px);
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
}

.btn-scrolldown::after {
	content: '';
	width: 24px;
	height: 24px;
	background-image: url("../img/main/renewal/ico_arrow_down.png");
}

/* rendering - video slider */
.rendering .text-wrap {
	margin: 40px auto 60px;
	text-align: center;
}

.rendering .page-desc {
	margin: 0 28%;
	word-break: keep-all;
}

.triple-slider-container {
	position: relative;
	width: 100%;
	height: 40.2%;
	max-height: 434px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.rendering .swiper {
	max-height: 345px;
	height: 79.5%;
}

.triple-slider-prev,
.triple-slider-main,
.triple-slider-next {
	margin: 0;
}

.rendering .triple-slider-main {
	flex-shrink: 0;
	width: 47.5%;
	max-width: 914px;
	height: 100% !important;
	max-height: unset;
	z-index: 10;
}

/* 모든 슬라이드 기본 숨김 */
.triple-slider-container .swiper-slide {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
	width: 100%;
}

/* visible 클래스가 있는 슬라이드만 보이기 */
.triple-slider-container .swiper-slide-visible {
	opacity: 1 !important;
	visibility: visible !important;
}

.rendering .swiper-slide {
	width: 483px;
	max-width: unset;
	height: 100% !important;
	max-height: 345px;
	padding-bottom: 0;
	aspect-ratio: auto;
}

.rendering .triple-slider-main .swiper-slide {
	max-height: 100%;
}

.rendering .triple-slider-prev .swiper-slide {
	border-radius: 0 10px 10px 0;
}

.rendering .triple-slider-next .swiper-slide {
	border-radius: 10px 0 0 10px;
}

.video-controls {
	position: relative;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 10;
	width: 47.6%;
	max-width: 914px;
}

.video-control-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
}

.video-control-btn img {
	width: 24px;
	height: 24px;
}

.video-play-pause {
	background-color: #676f77;
}

.video-controls .video-next {
	transform: rotate(180deg);
}

.video-controls .playing .pause-icon {
	display: block;
}

.video-controls .paused .pause-icon {
	display: none;
}

.video-controls .playing .play-icon {
	display: none;
}

.video-controls .paused .play-icon {
	display: block;
}

.video-controls .swiper-pagination-progressbar {
	position: relative;
	height: 2px;
}

.video-controls .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background-color: #676f77;
}

/* feature - page3 */
.main-page .feature {
	background: url("../img/main/renewal/main_bg2.png") center / cover no-repeat;
	transition: background .2s;
}

.main-page .feature.hover-right {
	background: url("../img/main/renewal/main_bg1.png")  center / cover no-repeat;
}

.feature .flex {
	justify-content: center;
	/* min-width: 1100px; */
	height: 100%;
}

.feature .flex section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	height: 100%;
	text-align: center;
	cursor: pointer;
	transition: background .5s ease-out;
}

.feature section:hover,
.feature section:focus {
	background-color: var(--main-dim-bg);
}

.feature section .section-link {
  display: flex;
  justify-content: center;
  flex-direction: column;
  /* width: 100%; */
  width: fit-content;
  white-space: nowrap;
}

.feature .feature-left {
	/* padding-left: 21.35%; */
	align-items: end;
	padding-right: 103px;
	border-right: var(--main-border);
}

.feature .feature-right {
	/* padding-right: 21.35%; */
	align-items: start;
	padding-left: 103px;
}

.feature-tit,
.feature-hover-tit {
	color: var(--main-txt-color);
	font-weight: 700;
	font-size: 32px;
	line-height: 1.38;
}

.feature-compare-hover {
	width: fit-content;
	opacity: 0;
	color: var(--main-tit-color2);
}

.feature section:hover .feature-compare-hover,
.feature .section-link:focus .feature-compare-hover,
.hover-right .section-link:focus .feature-compare-hover {
	margin-top: -66px;
	opacity: 1;
}

.feature-compare-hover p {
	margin-bottom: 4px;
	color: var(--main-tit-color2);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.56;
}

.feature-compare-hover strong {
	color: var(--main-txt-color4);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
}

.feature section:hover .feature-tit,
.feature .section-link:focus .feature-tit,
.hover-right .section-link:focus .feature-tit {
	font-size: inherit;
	font-weight: inherit;
	color: #adb5bd;
}

.gif-wrap {
	overflow: hidden;
	max-width: 447px;
	max-height: 265px;
	margin: 32px auto 36px;
	border-radius: 15px;
}

.gif-wrap .video {
	width: 100%;
}

/* gallery */
.infinite-swiper .swiper-wrapper {
	margin-bottom: 0;
}

.infinite-swiper .swiper-slide {
	--slide-scale: 1.7;
	overflow: hidden;
	max-width: 450px;
	max-height: 250px;
	height: auto !important;
	padding-bottom: 0;
	aspect-ratio: 9/5;
}

.infinite-swiper .swiper-slide a {
	position: absolute;
	width: 100%;
	height: 100%;
}

.infinite-swiper .swiper-slide .txt-box {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background-color: var(--main-btn-bg2);
	padding: 8px 16px;
	border-radius: 8px;
	opacity: 1;
	transform-origin: bottom left;
}

.infinite-swiper .swiper-slide .img-box,
.swiper-slide .img-box .img {
	width: 100%;
	height: 100%;
}

.infinite-swiper:hover {
	overflow: visible;
}

.infinite-swiper .swiper-slide:hover {
	max-height: 405px;
	z-index: 20;
	position: relative;
	transform: translateY(0) scale(var(--slide-scale));
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.infinite-swiper .swiper-slide:hover .txt-box {
	bottom: 8px;
	left: 10px;
	opacity: 0;
	/* transform: scale(0.6); */
	transform: scale(calc(1 / var(--slide-scale)));
	/* transition: transform 0.2s; */
	/* opacity는 animation으로 정확한 타이밍 제어 */
	animation: txtBoxFade 0.2s ease-in-out forwards;
}

@keyframes txtBoxFade {
	0% {
		opacity: 0; /* 즉시 사라짐 */
	}
	95% {
		opacity: 0; /* scale 조정 중에는 계속 숨김 */
	}
	100% {
		opacity: 1; /* scale 완료 후 나타남 */
	}
}

.gallery .btn-more {
	transition: background-color .2s;
}

.gallery .btn-more:hover {
	position: relative;
	background-color: #e7eaed;
	border-color: transparent;
	color: transparent;
}

.gallery .btn-more:hover::after {
	position: absolute;
	width: 100px;
	height: 20px;
	background: url("../img/main/renewal/logo_kovien.png") center / cover no-repeat;
	content: '';
}

.gallery .btn-more:hover i {
	display: none;
}

/* service */
.main-page .service {
	background: url("../img/main/renewal/main_bg3.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.service .text-wrap {
	margin-bottom: 64px;
}

.service-wrap {
	display: flex;
	justify-content: center;
	gap: 16px;
	max-width: 1100px;
	margin: 0 auto;
}

.service-item {
	display: flex;
	flex-direction: column;
	flex: 1;
	max-width: 353px;
	padding: 32px;
	border-radius: 20px;
	background-color: #fff;
}

.service-item .img-wrap {
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 200px;
}

.service-item .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.service-item .sub-desc {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--main-sub-color);
	margin-bottom: 4px;
}

.service-item .sub-tit {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--main-tit-color);
}

.service .sub-tit i {
	display: flex;
  align-content: center;
  justify-content: center;
  height: 44px;
	padding: 8px 6px;
	border-radius: 50%;
	font-size: 32px;
	transition: all .2s;
}

.service-item:hover i {
	background: #744eff;
}

.service-item:hover i::before {
	height: 28px;
	color: #fff;
}

.service-item:hover .img-wrap {
	animation: updown 1.2s linear infinite backwards;
}

@keyframes updown {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-16px);
	}
	100% {
		transform: translateY(0);
	}
}

/* 20th */
.record .text-wrap {
	margin-bottom: 70px;
}

.record .text-wrap .btn {
	width: 200px;
}

.record .text-wrap .btn:hover {
	background-color: #e7eaed;
	border-color: transparent;
	color: #212529;
}

.record .text-wrap .btn:hover i::before {
	color: #212529;
}

.record .basic-swiper {
	position: relative;
	opacity: 0;
	transition: opacity 0.3s;
	height: 410px;
	max-width: 1100px;
}

.record .swiper-btn-wrap {
	position: absolute;
	width: 85%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 10;
}

/* Swiper 초기화 후 보이기 */
.record .basic-swiper.swiper-initialized {
	opacity: 1;
}

.record .swiper-wrapper {
	align-items: center;
}

.basic-swiper .swiper-slide {
	position: relative;
	width: 538px;
	height: 304px !important;
	padding-bottom: 0;
	border-radius: 0;
	aspect-ratio: 0;
}

.basic-swiper .swiper-slide::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .6);
}

.basic-swiper .swiper-slide-fully-visible {
	max-width: 720px;
	transform: scale(1.35) !important;
}

.basic-swiper .swiper-slide-fully-visible::before {
	background-color: transparent;
}

.basic-swiper .swiper-slide iframe {
	width: 100%;
	height: 100%;
}

.record .swiper-button-next,
.record .swiper-button-prev {
	color: #fff;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.7);
}

.record .swiper-button-next::after,
.record .swiper-button-prev::after {
	font-size: 16px;
}

/* corp - page7 */
.corp .video-bg {
	background-color: rgba(20, 3, 115, 0.5);
}

.corp .video-txt {
	margin: 24px 0 40px;
}

.corp .video-txt-sm {
	margin-bottom: 80px;
}

.corp .video-wrap .sub-inner {
	align-items: start;
	left: 26.2%;
	top: 26%;
	max-width: 1100px;
	height: auto;
}

/* modal */
.apply_form_box .form_box form input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  display: block;
}

/* .apply_form_box .form_box form input[type="radio"]:focus + label {
  outline: 2px solid #5c3bff;
  outline-offset: 2px;
} */

button:focus-visible,
a:focus-visible,
.apply_form_box .form_box form input[type="radio"]:focus-visible + label span{
  outline: 2px solid #5c3bff;
  outline-offset: 2px;
}
.apply_form_box .form_box form input[type="radio"]:focus-visible + label span {
	border-radius: 50%;
}