html,
body {
	overflow-x: inherit !important;
}

.table {
	padding: 48px 0 0 0;
}

.table .flex {
	display: inline-flex;
	align-items: stretch;
	justify-content: center;
	gap: 68px;
	width: 100%;
}

.table .flex .half {
	width: calc(60% - 34px);
}

.table .flex .half.image {
	width: calc(40% - 34px);
}

.table .flex .half img {
	margin-top: 0;
	width: 100%;
	height: auto;
	position: sticky;
    top: 120px;
}

.table .flex .half table {
	width: 100%; 
	border-collapse: collapse; 
	margin-bottom: 40px; 
	background-color: #fff;
}

.table .flex .half table tbody tr:first-of-type {
	border-top: 24px solid #fff;
}

.table .flex .half table thead tr th {
	color: #252525;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	padding: 24px; 
	text-align: left; 
	border-right: 2px solid #fff;
	white-space: nowrap;
}

.table .flex .half table thead tr th:first-of-type {
	border-radius: 8px 0 0 8px;
}

.table .flex .half table thead tr th:last-of-type {
	border-radius: 0 8px 8px 0;
	border:none;
}

.table .flex .half table tbody tr td {
	color: #000; 
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	padding: 15px;     
	border-bottom: 1px solid #e0e0e0;
}

.table .flex .half table tbody tr td:first-of-type {
	color: #000; 
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	padding: 15px;     
	border-bottom: 1px solid #e0e0e0;
}

.table .flex .half table + p {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; 
	text-align: left; 
	margin-top: 20px;
}

.table .flex .half .title {
	display: block;
	color: #000;
	font-size: 44px;
	font-style: normal;
	font-weight: 700;
	line-height: 50px;
	margin: 0 auto 48px 0;
	width: 100%;
}

.table .flex .half .title span {
	color: #8DD3BF;
}

@media only screen and (max-width: 996px) {
	html,
	body {
		overflow-x: hidden;
	}

	.table .flex {
		gap: 50px;
	}

	.table .flex .half.image {
		display: none;
	}

	.table .flex {
		flex-wrap: wrap;
	}

	.table .flex .half {
		width: 100%;
		text-align: center;
	}

	.table .flex .half .title {
		font-size: 24px;
		font-style: normal;
		font-weight: 700;
		line-height: 32px;
		margin-bottom: 32px;
		text-align: center;
	}

	.table .flex .half table thead tr th {
		text-align: left;
		font-size: 18px;
		font-style: normal;
		font-weight: 700;
		line-height: 24px;
		padding: 24px 8px;
		white-space: pre-wrap;
	}

	.table .flex .half table tbody tr td {
		color: #000; 
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
		padding: 15px;     
		text-align: left;
		border-bottom: 1px solid #e0e0e0;
	}

	.table .flex .half table tbody tr td:first-of-type {
		color: #000; 
		font-size: 16px;
		padding: 12px 8px;     
	}
}