/*** # 푸터 CSS ***/

#Footer{
	background: var(--point-red);
	padding-top: 50px;
	padding-bottom: 60px;
	width: 100%;
}
.footer-in {
	display: flex;
	justify-content: space-between;
	max-width: 1120px;
	width: 90%;
	box-sizing: border-box;
	margin: 0 auto;
	/* align-items :flex-end; */
	align-items: center;
	color: rgba(255,255,255,0.7);
}
.footer-logo-wrap {
	width: 180px;
	/* margin-bottom: 121px; */
	margin-bottom: 15px;
}
.footer-logo-img {
	width: 100%;
}
.footer-copyright {
	font-weight: 700;
	font-size: 14px;
}
.footer-in .right {
	display: flex;
	max-width: 540px;
	width: 55%;
	justify-content: space-between;
}
.footer-item .title {
	margin-bottom: 25px;
	font-size: 18px;
	font-weight: 700;
}
.footer-item .content {
	font-size: 14px;
	margin-bottom: 20px;
	word-break: keep-all;
}
.footer-item .content:last-child {
	margin-bottom: 0;
}
.footer-item .sub-title {
	font-weight: bold;
}


@media screen and (max-width: 1200px) {
	.footer-item .content {
		font-size: 13px;
	}
}

/* MOBILE */
@media screen and (max-width: 768px) {
	#Footer {
		padding: 40px 0;
	}
	.footer-mo-info {
		margin: 0 auto;
		display: flex;
		width: 100%;
		justify-content: center;
		/* text-align: center; */
		max-width: 500px;
	}
	.footer-in > .left {
		width: 100%;
	}
	.footer-logo-wrap {
		width: 100%;
		text-align: center;
		margin-bottom: 40px;
	}
	.footer-logo-img {
		width: 180px;
	}
	.footer-item {
		width: 37%;
		box-sizing: border-box;
		padding: 0 5px;
	}
	.footer-item:nth-child(2) {
		width: 26%;
	}
	.footer-copyright {
		text-align: center;
		margin-top: 50px;
	}
	.footer-item .content {
		font-size: 12px;
	}
}

@media screen and (max-width: 480px) {
	.footer-item .content {
		font-size: 11px;
	}
}

@media screen and (max-width: 360px) {
	.footer-item .content {
		font-size: 10px;
	}
	.footer-logo-img {
		width: 150px;
	}

	.footer-item {
		width: 100%;
		margin-bottom: 30px;
	}
	.footer-item:nth-child(2) {
		width: 100%;
	}
	.footer-mo-info {
		flex-wrap: wrap;
		text-align: center;
	}
	.footer-item .title {
		margin-bottom: 15px;
	}
	.footer-item .content {
		font-size: 14px;
	}
	.footer-copyright {
		margin-top: 30px;
	}
}

@media screen and (max-width: 320px) {
	
}