@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: #04044b;
	border-radius:100%;
	transform: translate(-50%, 40%);
}

.history_item h2 {
	/* font-size: 2em; */
	font-size: 28px;
    margin-bottom: 20px;
	color:#04044b;
	font-weight:700;
}

.history_item p {
	/* font-size: 1.4em; */
	font-size: 18px;
    font-weight: 400;
    line-height: 26px;
	word-break:keep-all;

	& span {
		display: block;
		position: relative;
		padding-left:15px;
		&::after {
			content:'-';
			position: absolute;
			left: 0;
			top: 0;
		}
	}
}

@media screen and (max-width:992px) {
	.history {
		padding:40px 20px 40px 20px;
	}
}

@media screen and (max-width:550px) {
	.history_item {
		padding-left: 25px;
		padding-top: 7px;
	}
	.history {
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}

	.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: 16px;
		line-height: 24px;
	}
}

