.title-image-container {
	width: 100%;
	padding: 4rem 2rem;

	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 2rem;
}

.title-image-text-container {
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	gap: 2.5rem;
}

.title-image-text-subtitle {
	font-weight: 600;
	font-size: 18px;

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

.title-image-text-subtitle:after {
	content: "";
	width: 3px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

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

.title-image-text-content {
	max-width: 60rem;
	font-size: 18px;
	line-height: 130%;
}

.title-image-text-button {
	border: none;
	font-size: 18px;
	font-weight: 500;
	padding: .5rem 1rem;
	border-radius: 32px;
}

.title-image-text-button:hover {
	cursor: pointer;
}

@media screen and (max-width: 800px) {
	.title-image-text-title {
		font-size: 32px;
	}

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