@charset "utf-8";

/* 내용관리 */


/* 연혁 1번 디자인 */

.history {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	padding: 120px 0 120px 0;
	box-sizing: border-box;
	overflow: hidden;
}

.history_left {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 20px;
}

.history_left img {
	display: block;
	width: 100%;
}

.history_left .history_img {
	width: 100%;
}

.history_left .history_img.img2,
.history_img.img3 {
	width: calc(100% / 2 - 10px);
}

.history_right {
	width: 50%;
	padding-left: 80px;
	box-sizing: border-box;
}

.history_section {
	width: 100%;
	box-sizing: border-box;
}

.history_detail {
	width: 100%;
}

.history_detail h2 {
	font-size: 2.4em;
	color: #353aac;

}

.history_wrap {
	border-left: 1px solid #ccc;
}

.history_item {
	padding-left: 50px;
	position: relative;
	margin-bottom: 40px;
}

.history_item:before {
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-color: #229548;
	border-radius: 100%;
	transform: translate(-50%, 40%);
}

.history_item h2 {
	font-size: 2em;
	margin-bottom: 20px;
	color: #229548;
}

.history_item p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6em;
	word-break: keep-all;
}

@media screen and (max-width:992px) {
	.history {
		padding: 120px 20px 120px 20px;
	}
}

@media screen and (max-width:550px) {
	.history {
		flex-wrap: wrap;
	}

	.history_left {
		width: 100%;
	}

	.history_right {
		width: 100%;
		/* padding-left: 50%; */
		padding-left: 10px;
		margin-top: 60px;
	}

	.history_item h2 {
		font-size: 1.6em;
	}

	.history_item p {
		font-size: 14px;
		line-height: 22px;
	}

	.history_item {
		padding-left: 20px;
	}

}

@media screen and (max-width:360px) {
	.history_item h2 {
		font-size: 1.3em;
	}

	.history_item p {
		font-size: 1em;
		line-height: 1.1em;
	}
}