.inner {
	width: 100%;
}

.top-btn .btn1 {
	margin-top: 15px;
}

.top-btn .btn2 {
	margin-top: 0px;
}

.top-btn .btn3 {
	margin-top: 0px;
}

.top-btn .btn4 {
	margin-top: 0px;
}

.top-btn .btn5 {
	margin-top: 0px;
}

.top-btn>div:first-child {
	background-image: url(../../img/sub/sub08/t-btn1h.png);
}

.top-btn>div:nth-child(2) {
	background-image: url(../../img/sub/sub08/t-btn2.png);
}

.intro-box-wrap {
	display: flex;
	flex: 1;
	gap: 30px;
	padding: 2% 15%;
	margin: 0 auto;
	opacity: 0;
	transform: translate3d(0, 50px, 0);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	will-change: opacity, transform;
}

.intro-box-wrap.animate {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.intro-box-wrap.animate .intro-box {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.intro-box-wrap.animate .intro-box:nth-child(1) {
	transition-delay: 0.05s;
}

.intro-box-wrap.animate .intro-box:nth-child(2) {
	transition-delay: 0.1s;
}

.intro-box-wrap.animate .intro-box:nth-child(3) {
	transition-delay: 0.15s;
}

.intro-box {
	display: flex;
	flex-direction: column;
	flex: 1;
	flex-direction: column;
	border-radius: 10px;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url(../../img/sub/sub08/길거리.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 80px;
	color: #fff;
	padding: 80px 40px;
	font-weight: 500;
	opacity: 0;
	transform: translate3d(0, 30px, 0);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
	will-change: opacity, transform;
}

.intro-box:nth-child(2) {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url(../../img/sub/sub08/주목.png);
}

.intro-box:nth-child(3) {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url(../../img/sub/sub08/홍보.png);
}

.intro-box span {
	font-size: 22px;
	font-weight: bold;
	color: #ff5a00;
	margin-bottom: 40px;
}

.intro-box h4 {
	font-size: 20px;
	font-weight: bold;
	color: #ffe200;
	text-shadow: 2px 2px 4px rgb(89 89 89);
	margin-bottom: 5px;
	font-family: 'Noto Sans KR', sans-serif;
}

/* .intro-box span:first-child {
	color: #ffaf00;
}

.intro-box span:last-child {
	color: #ff5a00;
} */

.circle-card-wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 30px;
	margin-bottom: 80px;

}

.circle-card {
	background: #fff;
	border: 4px solid #000;
	border-radius: 16px;
	box-shadow: 0 4px 16px 0 rgba(255, 128, 0, 0.08);
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding: 40px 20px 20px 20px;
	box-sizing: border-box;
	text-align: center;
}

.circle-card-number {
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-50%);
	background: #000;
	color: #fff;
	font-size: 28px;
	font-weight: 900;
	border-radius: 10px;
	padding: 8px 32px;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
	z-index: 2;
}

.circle-card-desc {
	margin-top: 30px;
	font-size: 24px;
	color: #222;
	font-weight: bold;
	line-height: 1.4;
}

.circle-card span {
	font-size: 20px;
	font-weight: bold;
}

.circle-card p {
	font-size: 16px;
	margin-top: 10px;
	font-weight: 500;
}

.banner-container {
	display: flex;
	flex-direction: column;
	padding: 5% 15%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 1)), url(../../img/sub/sub08/양주벽산블루밍더포레.png);
}

.banner-container h1 {
	font-size: 35px;
	font-weight: bold;
	/* background: linear-gradient(to bottom, yellow, #ff5a00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text; */
	text-align: center;
	margin-bottom: 50px;
	color: #fff;
}

.banner-box {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

/* 이미지 갤러리 스타일 */
.image-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 20px;
	padding: 0;
}

.image-gallery li {
	list-style: none;
	display: grid;
	place-items: center;
	opacity: 0;
	transform: translate3d(0, 30px, 0);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
	will-change: opacity, transform;
}

.banner-container .image-gallery li.animate {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.banner-container .image-gallery li:nth-child(1).animate {
	transition-delay: 0.05s;
}

.banner-container .image-gallery li:nth-child(2).animate {
	transition-delay: 0.1s;
}

.banner-container .image-gallery li:nth-child(3).animate {
	transition-delay: 0.15s;
}

.banner-container .image-gallery li:nth-child(4).animate {
	transition-delay: 0.2s;
}

.banner-container .image-gallery li:nth-child(5).animate {
	transition-delay: 0.25s;
}

.banner-container .image-gallery li:nth-child(6).animate {
	transition-delay: 0.3s;
}

.image-gallery img {
	width: 100%;
	max-width: 100%;
	height: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
	border-radius: 12px;
	object-fit: cover;
	will-change: transform;
}

.image-gallery img:hover {
	transform: scale3d(1.05, 1.05, 1);
}

.modal-trigger {
	cursor: pointer;
}

.report-container {
	display: flex;
	flex-direction: column;
	padding: 10% 15%;
}

.report-title {
	font-size: 35px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}

.report-content {
	display: flex;
	/* justify-content: center;
	align-items: center; */
	gap: 80px;
	border-radius: 20px;
	background-color: #f4f4f4;
	padding: 10%;
	justify-content: center;
}

.report-image {
	width: 40%;
	max-width: 400px;
}

.report-content img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.report-box {
	display: flex;
	justify-content: center;
	width: 60%;
}

.report-box ul {
	display: flex;
	flex-direction: column;
}

.report-box ul li {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 50px 20px;
	border-bottom: 1px solid #cacaca;
	color: #333333;
	opacity: 0;
	transform: translate3d(-30px, 0, 0);
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
	will-change: opacity, transform;
}

.report-box ul li.animate {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.report-box ul li:nth-child(1).animate {
	transition-delay: 0.05s;
}

.report-box ul li:nth-child(2).animate {
	transition-delay: 0.1s;
}

.report-box ul li:nth-child(3).animate {
	transition-delay: 0.15s;
}

.report-box ul li:nth-child(4).animate {
	transition-delay: 0.2s;
}

.report-box ul li:hover {
	background-color: #000000;
	padding-left: 40px;
	padding-right: 0;
	color: #ffffff;
	transition: all 0.1s ease;
}

.report-box ul li span {
	font-size: 40px;
	font-family: 'HakgyoansimPuzzleTTF-Outline';
}

.report-box ul li p {
	font-size: 30px;
	font-weight: 500;

}

.trust-badge {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: #ff5a00;
	color: white;
	padding: 10px 25px;
	border-radius: 25px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 15px rgba(255, 90, 0, 0.3);
}

.trust-badge .material-icons {
	font-size: 20px;
}

.report-box {
	display: flex;
	flex-direction: column;

}

.report-box h3 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 90px;
	text-align: center;
}

.report-box h3::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 4px;
	background: #ff5a00;
	border-radius: 2px;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 30px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 30px;
}

.feature-item span {

	color: #ff5a00;
	font-weight: bold;
}

.feature-item p {
	font-size: 18px;
	font-weight: 500;
	color: #444;
	margin: 0;
}

.trust-message {
	font-size: 20px;
	color: #111;
	margin-bottom: 50px;
	font-weight: bold;
}

footer {
	margin-top: 30%;
}

/* 모달 스타일 */
.vertical-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 99999;
	overflow-y: auto;
}

.vertical-modal-content {
	position: relative;
	margin: 50px auto;
	max-width: 800px;
	width: 90%;
	height: 100%;
}

.vertical-modal-close {
	position: fixed;
	top: 20px;
	right: 30px;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
	z-index: 100000;
}

.vertical-image-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
}

#modalImage {
	width: 100%;
	height: auto;
	display: block;
}

.vertical-modal::-webkit-scrollbar {
	width: 8px;
}

.vertical-modal::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
}

.vertical-modal::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 4px;
}

@media (max-width: 1520px) {
	.intro-box span {
		font-size: 18px;
	}

	.intro-box p {
		font-size: 16px;
	}

	.report-content {
		gap: 40px;
	}

	.report-box ul li {
		padding: 30px 20px;
	}

	.report-box ul li span {
		font-size: 28px;
	}

	.report-box ul li p {
		font-size: 22px;
	}
}

@media (max-width: 1160px) {
	.intro-box span {
		font-size: 18px;
	}

	.intro-box p {
		font-size: 16px;
	}

	.report-content {
		gap: 20px;
	}

	.report-box ul li {
		padding: 15px 20px;
	}

	.report-box ul li span {
		font-size: 22px;
	}

	.report-box ul li p {
		font-size: 22px;
	}
}

@media (max-width: 980px) {
	.intro-box span {
		font-size: 18px;
	}

	.intro-box p {
		font-size: 16px;
	}

	.report-content {
		gap: 20px;
	}

	.report-box ul li {
		padding: 10px;
	}

	.report-box ul li span {
		font-size: 18px;
	}

	.report-box ul li p {
		font-size: 18px;
	}

	.intro-box-wrap {
		flex-direction: column;
	}

	.intro-box {
		margin-bottom: 0;
		padding: 40px 20px;
	}

	.banner-container h1 {
		font-size: 25px;
	}

	.report-title {
		font-size: 25px;
	}
}

/* 모바일 반응형 */
@media (max-width: 768px) {
	.vertical-modal-content {
		width: 95%;
		margin: 20px auto;
	}

	.vertical-image-container {
		padding: 10px;
	}

	.intro-box span {
		font-size: 18px;
	}

	.intro-box p {
		font-size: 16px;
	}

	.banner-container h1 {
		font-size: 18px;
	}

	.report-container {
		background-color: #f4f4f4;
	}

	.report-content {
		flex-direction: column;
		padding: 0;
		background-color: transparent;
	}

	.report-image {
		width: 100%;
		max-width: none;
	}

	.report-box {
		width: 100%;
	}

	.report-box ul li:hover {
		padding-left: 10px;
		padding-right: 10px;
	}



	.image-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.report-title {
		font-size: 18px;
	}

	.intro-box {
		padding: 30px;
	}
}

/* 탑버튼 */

.btn_top {
	position: fixed;
	right: 10%;
	bottom: 5%;
	display: none;
	z-index: 10000;
	width: 50px;
	height: 50px;
	border: 2px solid #b1b1b1;
	text-align: center;
	line-height: 50px;

	background-color: #575757;
	border-radius: 50%;
	padding: 0.2% 0.2%;
}

.btn_top span {
	color: #fff;
	font-size: 20px;

}