.textimage-hero-container {
	width: 100%;
    min-height: 46rem;
    padding: 4rem 8rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
	gap: 1rem;
}

.textimage-hero-left {
	flex-flow: row-reverse;
	gap: 1.5rem;
}

.textimage-hero-check-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 0.25rem;
	row-gap: 0.3rem;

	padding-bottom: 2rem;
}

.textimage-hero-check {
	font-size: 20px;

	display: flex;
}

.textimage-hero-icon {
	color: #24ad24;
	font-size: 24px;
}

.textimage-hero-text-container {
	max-width: 37rem;
    display: flex;
    flex-flow: column;
    flex-basis: 50%;
}

.textimage-hero-text-title {
	font-size: 36px;
	font-weight: 600;
	padding-bottom: 3rem;
}

.textimage-hero-text-content {
	font-size: 24px;
	padding-bottom: 3rem;
}

.textimage-hero-button-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 3rem;
}

.textimage-hero-button {
	font-size: 24px;
    text-transform: uppercase;
    border-radius: 9999px;
    border: none;
    padding: 1rem 3.5rem;
    line-height: 130%;
}

.textimage-hero-button:hover {
	cursor: pointer;
}

.hero-input-container {
	width: 100%;

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

	position: relative;
}

.hero-form-input {
	width: 75%;
	height: 2.5rem;
}

.hero-form-button {
	position: absolute;
	right: 13%;
	height: 2.1rem;
	
	border: none;
	background: #469EFF;
	color: #fff;

	border-radius: 5px;
	padding: 0 1rem;

	cursor: pointer;
}

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

.textimage-hero-img-container {
	max-height: 100%;
}

.textimage-hero-img {
	border-radius: 8px;
}

@media screen and (max-width: 1200px) {
	.textimage-hero-container {
		flex-flow: column;
		gap: 4rem;
		padding: 2rem;
	}
}

@media screen and (max-width: 1024px) {
	.textimage-hero-text-title {
		line-height: 110%;
		text-align: center;
	}

	.textimage-hero-text-content {
		line-height: 125%;
		text-align: center;
	}
}

@media screen and (max-width: 768px) {
	.textimage-hero-button {
		font-size: 20px;
	}
}