@charset "utf-8";

@import url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: "Paperlogy", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #151b29;
	background: #fff;
	word-break: keep-all;
	-webkit-font-smoothing: antialiased;
}

main, section, article, header, footer, nav, aside { display: block; }
ul, ol, li { list-style: none; padding-left: 0;}
a {
	color: inherit;
	text-decoration: none;
}
button, input, select, textarea { font: inherit; }
button {
	border: 0;
	background: none;
	cursor: pointer;
}
img { display: block; max-width: 100%; }
strong { font-weight: 700; }

.pac-container {
	width: calc(100% - 48px);
	max-width: 1200px;
	margin: 0 auto;
}
.pac-main {	overflow: hidden; }

/* 버튼 */
.pac-button {
	display: inline-flex;
	min-width: 230px;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 54px;
	padding: 0 28px;
	border-radius: 3px;
	font-size: 18px;
	font-weight: 650;
	line-height: 1;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

/* .pac-button:hover {
	transform: translateY(-2px);
} */

.pac-button--primary {
	color: #fff;
	background: linear-gradient(135deg, #0574df 0%, #2d9cff 100%);
	box-shadow: 0 12px 30px rgba(21, 120, 226, 0.26);
}

.pac-button--primary:hover {
	box-shadow: 0 16px 36px rgba(21, 120, 226, 0.34);
}

.pac-button--line {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(8px);
}

.pac-button--line:hover {
	border-color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.1);
}

.pac-button--large {
	min-width: 280px;
	min-height: 62px;
	font-size: 18px;
	border-radius: 3px;
}

.pac-button--white {
	min-width: 250px;
	min-height: 60px;
	color: #096ed3;
	background: #fff;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

/* .pac-button--white:hover {
	background: #edf6ff;
} */

/* 섹션 타이틀 */

.pac-section-heading {
	margin-bottom: 50px;
}

.pac-section-heading--center {
	text-align: center;
}

.pac-section-heading__eyebrow {
	display: block;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 700;
	color: #1681eb;
}

.pac-section-heading h2 {
	font-size: 38px;
	font-weight: 700;
	line-height: 1.28;
	color: #111b30;
}

.pac-section-heading h2 strong {
	color: #177ae1;
}

.pac-section-heading p {
	margin-top: 16px;
	font-size: 18px;
	line-height: 1.7;
	color: #697386;
}

.mo-only {
	display: none;
}

@media all and (max-width: 1200px) {
	.pac-button { font-size: 17px; }
}

@media all and (max-width: 1024px) {
	.pac-container {
		width: calc(100% - 40px);
	}

	.pac-section-heading {
		margin-bottom: 40px;
	}

	.pac-section-heading h2 {
		font-size: 34px;
	}
}

@media all and (max-width: 937px) {
	.pac-button { font-size: 16px; }
}

@media all and (max-width: 767px) {
	body {
		font-size: 15px;
	}

	.pac-container {
		width: calc(100% - 32px);
	}

	.pac-button {
		min-height: 50px;
		padding: 0 20px;
	}

	.pac-button--large,
	.pac-button--white {
		width: 100%;
		min-width: 0;
	}

	.pac-section-heading {
		margin-bottom: 32px;
	}

	.pac-section-heading__eyebrow {
		margin-bottom: 8px;
		font-size: 12px;
	}

	.pac-section-heading h2 {
		font-size: 24px;
	}

	.pac-section-heading p {
		margin-top: 12px;
		font-size: 16px;
	}

	.mo-only {
		display: block;
	}
}


/* 하단 협력사 logo */
/* 푸터 */
.pac-footer {
	padding: 45px 0;
	background: #fff;
    background: linear-gradient(135deg, #8ec8ff 0%, #62b5ff 100%);
	border-top: 2px solid #e5eaf0;
}
.pac-footer__title {
	margin-bottom: 28px;
	font-size: 13px;
	font-weight: 700;
	color: #8a94a3;
	text-align: center;
}
.pac-footer__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px 40px;
	padding-left: 0;
}
.pac-footer__logos li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc((100% - 150px) / 6);
	height: 50px;
}
.pac-footer__logos img {
	display: block;
	width: 100%;
	max-width: 160px;
	height: 46px;
	object-fit: contain;
}

/* 태블릿 */
@media all and (max-width: 1024px) {
	.pac-footer {
		padding: 45px 0;
	}
	.pac-footer__logos {
		gap: 22px;
	}
	.pac-footer__logos li {
		width: calc((100% - 66px) / 4);
		height: 56px;
	}
	.pac-footer__logos img {
		max-width: 140px;
		height: 42px;
	}
}


/* 모바일 */
@media all and (max-width: 767px) {
	.pac-footer {
		padding: 38px 0;
	}
	.pac-footer__title {
		margin-bottom: 22px;
		font-size: 12px;
	}
	.pac-footer__logos {
		gap: 18px 14px;
	}
	.pac-footer__logos li {
		width: calc((100% - 28px) / 3);
		height: 48px;
	}
	.pac-footer__logos img {
		max-width: 110px;
		height: 36px;
	}
}


@media all and (max-width: 480px) {
	.pac-footer__logos {
		gap: 18px 12px;
	}
	.pac-footer__logos li {
		width: calc((100% - 12px) / 2);
		height: 46px;
	}
	.pac-footer__logos img {
		max-width: 125px;
		height: 34px;
	}
}


/* 헤더 */
.pac_header { 
	position: relative;
	z-index: 100;
	width: 100%;
	border-bottom: 1px solid #e7edf4;
	background: #fff;
}
.pac_header__inner { 
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: calc(100% - 40px);
	max-width: 1440px;
	height: 76px;
	margin: 0 auto; 
}
.pac_header__logo { margin: 0; }
.pac_header__logo a { 
	display: flex;
	align-items: center;
}
.pac_header__logo img { display: block; width: auto; max-width: 180px; max-height: 42px; }

.pac_header__nav ul { 
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.pac_header__nav a { 
	display: flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	padding: 0 18px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	color: #344158;
	text-decoration: none;
	transition: .2s ease;
}
.pac_header__nav a:hover { background: #f1f7fd; color: #1479dc; }
.pac_header__nav li:nth-child(2) a { padding: 0 22px; background: #1479dc; color: #fff; }
.pac_header__nav li:nth-child(2) a:hover { background: #086cc8; color: #fff; }

.pac_header__right { display: none; }
.pac_header__hamburger { 
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
}
.pac_header__hamburger span { 
	display: block; 
	width: 22px;
	height: 2px;
	margin: 0 auto;
	background: #1e2a3d;
	transition: .2s ease;
}
.pac_header.is-open .pac_header__hamburger span:nth-child(1) {
	transform:translateY(7px) rotate(45deg);
}
.pac_header.is-open .pac_header__hamburger span:nth-child(2) {
	opacity:0;
}
.pac_header.is-open .pac_header__hamburger span:nth-child(3) {
	transform:translateY(-7px) rotate(-45deg);
}

.pac_header__mobile{
	display:none;
	position:fixed;
	top:64px;
	left:0;
	z-index:99;
	width:100%;
	max-height:calc(100vh - 64px);
	overflow-y:auto;
	border-top:1px solid #e7edf4;
	background:#fff;
	box-shadow:0 10px 20px rgba(20,40,70,.08);
}
.pac_header__mobile ul { 
	margin:0; 
	/* padding: 10px 20px 18px; */ 
	list-style:none; 
}
.pac_header__mobile li+li { border-top: 1px solid #edf1f5; }
.pac_header__mobile a { display: block; padding: 14px 4px; font-size: 14px; font-weight: 600;color: #344158; text-decoration: none; text-align: center; }
.pac_header.is-open .pac_header__mobile{display:block;}

@media all and (max-width:767px){
	.pac_header__inner { width: calc(100% - 30px); height :64px; }
	.pac_header__logo img { max-width: 140px;max-height: 34px; }
	.pac_header__nav { display: none;}
	.pac_header__right { display: block; }
}


/* 카카오 문의하기 */
.pac-kakao-btn {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 52px;
	padding: 0 20px;
	border-radius: 30px;
	background: #fee500;
	font-size: 15px;
	font-weight: 700;
	color: #191919;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pac-kakao-btn:hover {
	transform: translateY(-1px);
}

.pac-kakao-btn__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 23px;
	height: 23px;
	flex-shrink: 0;
}

.pac-kakao-btn__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 767px) {
	.pac-kakao-btn {
		right: 16px;
		bottom: 18px;
		min-height: 48px;
		padding: 0 17px;
		font-size: 14px;
	}

	.pac-kakao-btn__icon {
		width: 21px;
		height: 21px;
	}
}

@media (max-width: 578px) {
	.pac-kakao-btn { padding: 0 15px; }
	.pac-kakao-btn__text { display: none; }
}