.page-history .sticky-container {
	padding-top: 80px;
}
.page-history .sticky-container-sections {
	gap: 30px;
}

#history_2.sec-history {
	margin-bottom: 50px;
}

.history-cont-wrapper {
	padding-inline: 30px;
	padding-block: 70px 50px;
	position: relative;
}
.history-cont {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 5%;
}
.history-img {
	max-width: 360px;
	aspect-ratio: 360 / 300;
	border-radius: 5px;
	flex-shrink: 0;
}
.history-txt-box {
	gap: 20px;
}

.history-tab-area {
	padding-block: 50px;
	padding-inline: 5%;
	gap: 20px;
}
.history-tab-btns {
	width: 100%;
	display: flex;
	gap: 20px;
	align-items: center;
}

.history-tab-btn {
	position: relative;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	font-size: 24px;
	font-weight: var(--fw-b);
	color: #ccc;
	transition: var(--transition-base);
	cursor: pointer;
}
.history-tab-btn.is-active {
	color: var(--c-primary);
}
.history-tab-btn:not(:first-child) {
	padding-left: 30px;
}
.history-tab-btn:not(:first-child)::before {
	content: "";
	width: 11px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-slash-gray.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
	.history-cont {
		justify-content: flex-start;
		flex-flow: column-reverse !important;
		gap: 20px;
		align-items: center;
	}
	.history-img {
		max-width: none;
		max-height: 280px;
	}
}

@media screen and (max-width: 999px) {
	.history-cont-wrapper {
		padding-inline: 20px;
		padding-block: 50px 30px;
	}
	.history-txt-box {
		gap: 15px;
	}
	.history-tab-btn {
		font-size: 18px;
	}
}
