div.home_banner{
	position: relative;
	overflow: hidden;
}

div.home_banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url(/modules/main/images/home/banner_back.jpg);
	background-size: cover;
	background-position: center;
	animation: zoomInOut 10s ease-in-out infinite;
	will-change: transform;
}

div.home_banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right,#121a21d9,#121a2166);
}

@keyframes zoomInOut {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

div.home_banner div.inner{
	position: relative;
	padding: 50px 20px;
	z-index: 1;
	width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
}

div.home_banner div.quote{
	background-image: linear-gradient(135deg, rgb(244, 185, 37), rgb(224, 151, 6));
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
	padding: 32px;
	width: 512px;
	box-sizing: border-box;
}

div.home_banner div.quote h2{
	font-weight: 800;
	font-size: 24px;
	line-height: 32px;
	color: #1b2632;
	margin-bottom: 30px;
}

div.home_banner div.quote input[type=text],
div.home_banner div.quote input[type=email]{
	border: 0px;
	border-radius: 0px 8px 8px 0px;
}

div.home_banner div.quote input.bold{
	font-weight: bold;
}

div.home_banner div.quote input.upper{
	text-transform: uppercase;
}

div.home_banner div.quote input:focus{
	outline: none;
}

div.home_banner div.quote div.field label{
	display: inline-block;
	background: linear-gradient(135deg,#f4b925,#e09706);
	padding: 12px;
	border-radius: 8px 0px 0px 8px;
	margin: 0px;
}

div.home_banner div.quote label img{
	height: 20px;
}

div.home_banner div.quote div.field{
	display: flex;
}

div.home_banner div.quote div.row{
	margin-top: 12px;
}

div.home_banner div.row.vehicle{
	display: none;
}

div.home_banner input[type=submit]{
	background: linear-gradient(135deg, rgb(36, 51, 66), rgb(57, 77, 96));
	color: white;
	text-transform: uppercase;
	font-size: 18px;
	width: 100%;
	padding: 17px 0px;
}

div.home_banner div.text{
	position: relative;
	width: calc(100% - 512px);
	text-align: center;
}

div.home_banner h1{
	margin: 0px;
	color: white;
	font-weight: 800;
	font-size: 48px;
}

div.home_banner div.tag{
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 3px;
	margin-top: 20px;
}

div.home_banner div.text div.message{
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	color: white;
	max-width: 75%;
}

div.home_banner div.carousel {
	position: absolute;
	inset: 0;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	transform: translateY(0);
	transition: opacity 0.5s ease, transform 0.5s ease;
	animation-name: fadeCycle;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	pointer-events: none;
}

@media (max-width: 1250px) {
	div.home_banner div.inner{
		width: 960px;
		flex-direction: column-reverse;
		gap: 40px;
	}

	div.home_banner div.text{
		width: 100%;
	}

	div.home_banner div.carousel {
		position: relative;
		animation: none;
		transform: translateY(0);
		display: none;
	}

	div.home_banner div.carousel:first-child{
		opacity: 1;
		display: block;
	}
}

@media (max-width: 1000px) {
	div.home_banner div.inner{
		width: auto;
	}
}

@media (max-width: 600px) {
	div.home_banner div.quote{
		width: auto;
	}

	div.form div.half{
		margin-top: 12px;
	}

	div.home_banner h1{
		font-size: 36px;
	}

	div.home_banner div.tag{
		font-size: 14px;
		margin-top: 15px;
	}
}












section.reviews{
	background-color: rgb(234, 237, 240);
}

section.reviews h2{
	font-size: 36px;
	font-weight: 700;
	line-height: 40px;
	margin-bottom: 10px;
}

section.reviews div.tag{
	color: #67737e;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
}

section.reviews li{
	text-align: left;
	position: relative;
	padding: 24px;
}

section.reviews img.quote{
	height: 32px;
}

section.reviews div.review{
	font-size: 14px;
	line-height: 22px;
	margin-top: 15px;
	margin-bottom: 75px;
}

section.reviews div.left{
	position: absolute;
	bottom: 24px;
	left: 24px;
}

section.reviews div.stars img{
	height: 15px;
}

section.reviews div.name{
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	margin-top: 7px;
}

section.reviews div.location{
	font-size: 12px;
	line-height: 16px;
	margin-top: 1px;
}

section.reviews div.right{
	position: absolute;
	bottom: 24px;
	right: 24px;
	font-weight: 600;
	font-size: 12px;
	color: #67737e;
}

section.reviews div.right img{
	height: 14px;
	vertical-align: text-top;
	margin-right: 2px;
}