.gx-history-section {
	width: 100%;
	position: relative;
}
.history-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
}
.history-item {
	flex: 1;
	border-radius: 5px;
	transition: all .3s ease;
	font-size: 18px;
	margin: 20px 0;
	z-index: 10;
}
.history-year {
	font-size: 32px;
	margin-left: 10%;
	margin-bottom: 8px;
	font-weight: 700;
}
.gx-history-desc {
	border-top: 10px solid #fff700;
	color: black;
	background:var(--white);
	box-shadow: 2px 2px 15px #00000064;
	margin-left: 10%;
	border-radius: 5px 0 0 5px;
}
.history-row.reverse .gx-history-desc {
	border-radius: 0 5px 5px 0;
}
.gx-history-desc img,
.gx-history-desc iframe {
	display: block;
	border: 0;
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	background: #00000064;
}
.desc-text {
	display: block;
	padding: 10px 15px;
}
.history-row.reverse {
	flex-flow: row-reverse;
}
.history-row.reverse .history-year {
	margin-left: 0;
	margin-right: 10%;
	text-align: right;
}
.gx-history-section::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 10px;
	height: 100%;
	background: #fff700;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 0 10px #00000070;
	z-index: 30;
	content: "";
}
.history-row.reverse .gx-history-desc {
	margin-left: 0;
	margin-right: 10%;
}
.history-item .desc-text p {
	font-size: 18px;
	color: var(--black);
}

@media (max-width:1159px) {
	.history-year {
		font-size: 22px;
		margin-bottom: 5px;
		margin-left: 0;
	}
	.history-item .desc-text p {
		font-size: 14px;
		line-height: 18px;
	}
	.gx-history-desc {
		margin-left: 0;
	}
	.history-row.reverse .gx-history-desc {
		margin-left: 0;
		margin-right: 0;
	}
	.gx-history-section {
		padding: 0 10px;
	}
}