.tis-hero {
	background-image: linear-gradient( rgba( 255, 255, 255, 0.4 ), rgba( 255, 255, 255, 0.4 ) ), url('../images/hero-background.jpg');
	background-size: cover;
	background-position: center;
	min-height: 810px;
	display: flex;
	align-items: center;
}

.tis-hero-inner {
	max-width: 1180px;
	width: 100%;
	height: 730px;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.tis-hero-text {
	flex: 1;
	max-width: 501px;
	margin-left: 60px;
}

.tis-hero .tis-quote-form {
	flex-shrink: 0;
	margin-left: auto;
	margin-right: 60px;
}

.tis-hero-text h1 {
	font-size: 56px;
	line-height: 64px;
	font-weight: 800;
	color: #142553;
	margin: 0 0 24px;
	text-transform: capitalize;
}

.tis-hero-text h1 span {
	color: #FF5C1A;
	font-style: italic;
}

.tis-hero-text p {
	font-size: 20px;
	line-height: 28px;
	color: #142553;
	margin: 0;
}

@media (max-width: 768px) {
	.tis-hero {
		min-height: auto;
		padding: 30px 0;
	}

	.tis-hero-inner {
		flex-direction: column;
		align-items: stretch;
		height: auto;
		padding: 0 20px;
	}

	.tis-hero .tis-quote-form {
		margin-left: 0;
		margin-right: 0;
	}

	.tis-hero-text {
		margin-left: 0;
	}

	.tis-hero-text h1 {
		font-size: 36px;
		line-height: 44px;
	}
}

