/*** # 푸터 CSS ***/

#Footer{
	background: #F2F2F2;
	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;
	color: var(--gray-dark);
}
.footer-logo-wrap {
	width: 132px;
	margin-bottom: 95px;
}
.footer-logo-img {
	width: 100%;
}
.footer-copyright {
	font-weight: 700;
	font-size: 14px;	
	color: var(--gray-dark);
}
.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: 132px;
	}
	.footer-item {
		width: 33%;
		box-sizing: border-box;
		padding: 0 5px;
	}
	.footer-copyright {
		text-align: center;
		margin-top: 50px;
	}
}

@media screen and (max-width: 360px) {
	.footer-item .content {
		font-size: 11px;
	}
	.footer-logo-img {
		width: 100px;
	}
}

@media screen and (max-width: 320px) {
	.footer-item {
		width: 100%;
		margin-bottom: 30px;
	}
	.footer-mo-info {
		flex-wrap: wrap;
	}
	.footer-item .title {
		margin-bottom: 15px;
	}
	.footer-item .content {
		font-size: 14px;
	}
	.footer-copyright {
		margin-top: 30px;
	}
}