@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	font-size: 16px;
	font-family: "Paperlogy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.contents {
	width: 100%;
	min-height: 100dvh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ddd;
	padding: 40px;
	background: url("../img/bg01.png") no-repeat center center;
	background-size: cover;
	overflow: hidden;
}

#citizen-wrap {
	width: 100%;
	height: 100%;
}

.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.util {
	margin: 0 auto;
	display: block;
	width: 100%;
	max-width: 800px;
	text-align: center;
	position: relative;
	z-index: 3;
}

.util::before {
	content: "";
	display: block;
	width: 160px;
	height: 160px;
	background: url("../img/icon-dashboard.png") no-repeat center center;
	background-size: contain;
	position: absolute;
	left: 50%;
	top: -63%;
	transform: translateX(-50%);
	z-index: 1;
	pointer-events: none;
}

.util-wrap {
	margin: 0 auto;
	padding: 15px;
	width: 100%;
	max-width: 800px;
	/* height: 170px; */
	background: #fff;
	display: flex;
	justify-content: stretch;
	align-items: center;
	border-radius: 42.5px;
	position: relative;
	z-index: 2;
}

.util-wrap::before {
	content: "";
	display: block;
	width: 310px;
	height: 310px;
	background: url("../img/icon-gonubi.png") no-repeat center center;
	background-size: contain;
	position: absolute;
	right: -21%;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.util-wrap .utitle-wrap {
	padding: 15px;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(to right, #efeeef, #f9f9f9, #efeeef);
	border-radius: 34px;
	gap: 25px;
}

.util-wrap .utitle-wrap .utitle {
	font-family: "Paperlogy";
	font-size: 3.75rem;
	font-weight: 800;
	background: linear-gradient(to right, #18b48c, #81c64a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.btn-search {
	/* display: block; */
	width: 70px;
	height: 70px;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 10;
	display: none;
}

.btn-search img {
	display: block;
	width: 100%;
	height: auto;
}

.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(30, 30, 30, 0.6);
	display: none;
	z-index: 9999;
}

.search-box {
	background: #fff;
	border: 2px solid #18b48c;
	border-radius: 30px;
	padding: 10px 25px;
	/* display: flex; */
	align-items: center;
	gap: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	z-index: 10000;
	width: 80%;
	max-width: 500px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

.search-box .goto-search {
	display: inline-block;
	width: 24px;
	height: 24px;
	background: none;
	border: none;
	cursor: pointer;
}

.search-box .goto-search img {
	display: block;
	width: 100%;
	height: auto;
}

.search-box input {
	border: none;
	outline: none;
	font-size: 1rem;
	flex: 1;
}

.search-box .btn-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #333;
	transition: transform 0.3s ease;
}

.search-box .btn-close:hover {
	transform: rotate(180deg);
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sub-title {
	margin: 10px 0 20px;
	display: block;
	text-align: center;
	font-family: "LeeSeoyun";
	font-size: 2.1875rem;
	font-weight: 400;
	color: #333;
}

.citizen-list {
	padding: 25px 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 25px;
	background: linear-gradient(to right, #d9f0e1 0%, rgba(217, 240, 225, 0.3) 50%, #d9f0e1 100%);
	border-radius: 17px;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	position: relative;
}

.citizen-list::before {
	content: "";
	display: inline-block;
	width: 200px;
	height: 200px;
	background: url("../img/icon-crab.png") no-repeat center center;
	background-size: contain;
	position: absolute;
	left: -10%;
	top: -22%;
	pointer-events: none;
}

.citizen-list::after {
	content: "";
	display: inline-block;
	width: 500px;
	height: 500px;
	background: url("../img/icon-poloct.png") no-repeat center center;
	background-size: contain;
	position: absolute;
	left: -33%;
	bottom: -59%;
	pointer-events: none;
}

.citizen-list li {
	flex: 1 1 calc(25% - 20px);
	min-width: 170px;
}

.citizen-list li a {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #000;
	transition: transform 0.3s ease-in-out;
}

.citizen-list li a:hover {
	transform: translateY(-10px);
}

.citizen-icons {
	margin: 0 auto 6px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
}

.citizen-icons img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.citizen-txt {
	display: inline-block;
	font-size: 15.3px;
	font-weight: 500;
	color: #000;
	position: relative;
}

.citizen-list li:last-child {
	position: relative;
}

.citizen-list li:last-child::before {
	content: "";
	display: block;
	width: 259px;
	height: 265px;
	background: url("../img/icon-bubble.png") no-repeat center center;
	background-size: contain;
	position: absolute;
	right: -50%;
	bottom: -122%;
	pointer-events: none;
}

.citizen-txt .topdesc {
	padding-bottom: 6px;
	display: block;
	font-size: 0.9575rem;
	color: #1e1e1e;
}

.citizen-txt .botdesc {
	display: block;
	font-size: 1.5rem;
	font-weight: 765;
	color: #1f274d;
}

@media (max-width: 1024px) {
	.contents {
		padding: 25.5px;
	}

	.citizen-list li {
		flex: 1 1 calc(42.5% - 17px);
	}
}

@media (max-width: 1024px) {
	.contents {
		padding: 25px;
	}

	.citizen-list {
		padding: 25px;
	}

	.citizen-list li {
		flex: 1 1 calc(50% - 20px);
	}

	.util::before,
	.util-wrap::before,
	.citizen-list::before,
	.citizen-list::after,
	.citizen-list li:last-child::before {
		display: none;
	}
}

@media all and (max-width: 768px) {
	.util-wrap .utitle-wrap {
		gap: 10px;
	}

	.util-wrap .utitle-wrap .utitle {
		font-size: 2.5rem;
	}

	.btn-search {
		width: 40px;
		height: 40px;
	}

	.sub-title {
		font-size: 1.6125rem;
	}

	.citizen-icons {
		width: 120px;
		height: 120px;
	}

	.citizen-txt .botdesc {
		font-size: 1.2rem;
	}
}

@media (max-width: 600px) {
	.util-wrap .utitle-wrap .utitle {
		font-size: 2rem;
	}

	.btn-search {
		width: 32px;
		height: 32px;
	}

	.sub-title {
		font-size: 1.2rem;
	}
	
	.citizen-list li {
		flex: 1 1 calc(50% - 20px);
		min-width: auto;
	}
	
	.citizen-icons {
		width: 80px;
		height: 80px;
	}
	
	.citizen-txt .topdesc {
		font-size: 0.8125rem;
	}

	.citizen-txt .botdesc {
		font-size: 1rem;
	}
}

@media (max-width: 425px) {
	.contents {
		padding: 20px;
		align-items: flex-start;
	}

	.util-wrap {
		padding: 10px;
	}

	.citizen-list li {
		flex: 1 1 calc(50% - 20px);
		min-width: auto;
	}

	.util-wrap .utitle-wrap .utitle {
		font-size: 1.45rem;
	}

	.btn-search {
		width: 32px;
		height: 32px;
	}

	.sub-title {
		font-size: 1rem;
	}

	.citizen-icons {
		width: 60px;
		height: 60px;
	}

	.citizen-txt .topdesc {
		font-size: 0.625rem;
	}

	.citizen-txt .botdesc {
		font-size: 0.8125rem;
	}
}