.textimage-section-title-container {
	width: 100%;
	padding: 4rem 2rem 0rem;

	display: flex;
	align-items: center;
	justify-content: center;
}

.textimage-section-title {
	font-size: 36px;
	font-weight: 600;
	line-height: 110%;
	text-align: center;
}

.textimage-container {
	width: 100%;
	padding: 4rem 1rem;
}

.textimage-image-left {
	flex-flow: row-reverse;
}

.textimage-wrapper {
	display: flex;
	justify-content: center;
	gap: 5rem;

	max-width: 80rem;
	margin-inline: auto;
	height: 24rem;
}


.textimage-text-container {
	flex-basis: 60%;
	display: flex;
	flex-flow: column;
	gap: 1rem;

	padding-top: 2rem;
}

.textimage-image-container {
	flex-basis: 40%;
}

.textimage-text-title-container {
	display: flex;
	flex-flow: column;
	gap: 1rem;
}

.textimage-text-subtitle {
	color: #000;
	font-weight: 600;
	font-size: 16px;

	display: inline-block;
	padding-left: .75rem;
	position: relative;
}

.textimage-text-subtitle:after {
	content: "";
	width: 3px;
	height: 100%;
	position: absolute;
	background-color: #000;
	top: 0;
	left: 0;
}

.textimage-text-title {
	font-weight: 600;
	font-size: 42px;
	line-height: 110%;
}

.textimage-text-content {
	font-size: 18px;
	line-height: 130%;
	color: #808080;
}

.textimage-text-button {
	font-size: 16px;
	color: #000;
	width: fit-content;
	font-weight: 600;
}

.textimage-text-button:hover {
	cursor: pointer;
	text-decoration: underline;
}

.textimage-image {
	border-radius: 8px;
	max-height: 24rem;
}

@media screen and (max-width: 800px) {
	.textimage-wrapper {
		flex-flow: column;
		align-items: center;
		height: auto;
	}

	.textimage-text-title {
		font-size: 26px;
	}

	.textimage-text-content {
		font-size: 16px;
	}
}