html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100%;
	font-family: "Lato", Arial, sans-serif;
	color: #202126;
	background: #ffffff;
}

* {
	box-sizing: border-box;
}

a {
	color: inherit;
}

.header_v2 {
	width: 100%;
	min-height: 100px;
	background-color: #ffffff;
	border-bottom: 1px solid #e7e7eb;
}

.header_v2 .heaver_v2_c {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	min-height: 100px;
	padding: 0 24px;
}

.header_v2 .logo {
	cursor: pointer;
}

.header_v2 .logo img {
	display: block;
	width: min(300px, 52vw);
	height: auto;
}

.header_v2 .c2a {
	background-color: #009dd7;
	border: 1px solid #009dd7;
	color: #ffffff;
	min-height: 100px;
	width: 320px;
	text-align: center;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: background-color 160ms ease, color 160ms ease;
}

.header_v2 .c2a:hover {
	background-color: #ffffff;
	color: #009dd7;
}

.header_v2 .c2a .txt {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.3;
}

.header_v2 .c2a .tel {
	font-size: 36px;
	line-height: 1.1;
}

.lp-hero {
	position: relative;
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.28)), var(--hero-bg);
	background-size: cover;
	background-position: center;
	color: #ffffff;
	min-height: 720px;
	overflow: hidden;
}

.lp-hero__inner {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
	padding: 70px 0 72px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 370px;
	gap: 54px;
	align-items: center;
}

.lp-hero__content {
	max-width: 740px;
}

.lp-eyebrow {
	margin: 0 0 6px;
	font-size: clamp(18px, 1.35vw, 21px);
	font-weight: 400;
	line-height: 1.25;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.65);
}

.lp-hero h1,
.lp-experience h2,
.lp-results h2,
.lp-feature h2,
.footer_form_wrapper h2 {
	font-family: "adobe-caslon-pro", Georgia, serif;
	font-weight: 400;
	line-height: 1.05;
}

.lp-hero h1 {
	margin: 0 0 12px;
	font-size: clamp(32px, 3.2vw, 46px);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.65);
}

.lp-hero ul {
	margin: 0 0 0 20px;
	padding: 0;
	max-width: 660px;
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.32;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.65);
}

.lp-hero li + li {
	margin-top: 6px;
}

.lp-hero__video {
	margin-bottom: 18px;
}

.lp-hero__video,
.lp-feature__media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #111217;
	border: 5px solid #ffffff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

.lp-hero__video iframe,
.lp-feature__media iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
	background: #ffffff;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 28px;
	border: 0;
	border-radius: 4px;
	background: #f44323;
	color: #ffffff;
	font-family: "Lato", Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 160ms ease, transform 160ms ease;
}

.btn:hover {
	background: #d93419;
	transform: translateY(-1px);
}

.form_wrapper {
	background-color: #f5f4fa;
	color: #464647;
	min-height: 462px;
	padding: 24px 0 26px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
}

.form_wrapper h2,
.form_wrapper h3 {
	margin: 0;
	text-align: center;
	color: #464647;
	line-height: 1.1;
}

.form_wrapper h2 {
	font-size: 38px;
	font-weight: 700;
	font-family: "Lato", Arial, sans-serif;
}

.form_wrapper h3 {
	font-size: 22px;
	font-weight: 700;
}

.form_wrapper .divider {
	width: 80%;
	height: 4px;
	background-color: #111217;
	margin: 20px auto;
}

.form {
	width: 100%;
}

.form input,
.form textarea {
	display: block;
	width: 80%;
	margin: 0 auto;
	border: 0;
	border-bottom: 1px solid #999aa3;
	background: transparent;
	color: #202126;
	font-family: "Lato", Arial, sans-serif;
	font-size: 18px;
	padding: 10px 0;
	outline: none;
}

.form textarea {
	resize: vertical;
	min-height: 86px;
}

.form input:focus,
.form textarea:focus {
	border-color: #009dd7;
}

.form_wrapper .btn {
	margin-top: 18px;
}

.form.thankyou {
	width: 90%;
	margin: 0 auto;
	padding: 34px 0 0;
	text-align: center;
	font-size: 18px;
	line-height: 1.45;
}

.form.thankyou h2 {
	font-size: 30px;
	margin-bottom: 16px;
}

@media screen and (min-width: 981px) {
	.lp-hero__inner {
		align-items: stretch;
	}

	.form_wrapper {
		align-self: stretch;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.lp-section {
	width: 100%;
	padding: 58px 0;
}

.lp-section__inner {
	width: min(1200px, calc(100% - 48px));
	margin: 0 auto;
}

.lp-results {
	background: #f5f6f8;
}

.lp-results h2,
.lp-feature h2 {
	margin: 0;
	font-size: clamp(34px, 4vw, 52px);
}

.lp-results h2 {
	text-align: center;
	margin-bottom: 34px;
}

.lp-timers {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.lp-timers .timer {
	background: #ffffff;
	border: 1px solid #dedfe5;
	border-radius: 6px;
	padding: 22px 16px;
	text-align: center;
	min-height: 158px;
}

.lp-timers .num {
	font-size: 44px;
	font-weight: 700;
	color: #009dd7;
	line-height: 1;
}

.lp-timers .title {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.lp-timers .divider {
	width: 44px;
	height: 2px;
	margin: 12px auto;
	background: #202126;
}

.lp-timers .name {
	font-size: 13px;
	line-height: 1.35;
	color: #555860;
}

.lp-experience {
	position: relative;
	min-height: 360px;
	display: flex;
	align-items: center;
	background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)), url("/assets/getaquote/shared/experiencebg.jpg");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	text-align: center;
}

.lp-experience h2 {
	margin: 0;
	font-size: clamp(40px, 5vw, 66px);
}

.lp-experience p {
	max-width: 780px;
	margin: 20px auto 0;
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.45;
}

.lp-companies {
	padding: 0;
	margin: 0;
	text-align: center;
	background: #212127;
	background-position: center center;
	background-size: contain;
}

.lp-companies img {
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.lp-companies .comp_desktop {
	display: block;
}

.lp-companies .comp_mobile {
	display: none;
}

.lp-feature {
	background: #ffffff;
}

.lp-feature:nth-of-type(even) {
	background: #f7f8fa;
}

.lp-feature__grid {
	display: grid;
	grid-template-columns: minmax(290px, 420px) minmax(0, 1fr);
	gap: 42px;
	align-items: center;
}

.lp-feature--alt .lp-feature__grid {
	grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
}

.lp-feature--alt .lp-feature__media {
	order: 2;
}

.lp-feature h3 {
	margin: 12px 0 18px;
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 400;
	line-height: 1.25;
}

.lp-feature p {
	margin: 0;
	font-size: 17px;
	line-height: 1.58;
}

.link_readmore {
	display: inline-flex;
	margin-top: 20px;
	color: #009dd7;
	text-decoration: none;
	font-weight: 700;
}

.link_readmore:hover {
	text-decoration: underline;
}

.footer_form_wrapper {
	padding: 62px 0;
	background-image: linear-gradient(rgba(20, 20, 24, 0.86), rgba(20, 20, 24, 0.86)), url("/assets/getaquote/shared/granite.jpg");
	background-size: cover;
	background-position: center;
	color: #ffffff;
}

.footer_form_wrapper h2 {
	margin: 0 0 28px;
	text-align: center;
	font-size: clamp(38px, 5vw, 58px);
	color: #ffffff;
}

.footer_form_wrapper .form {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 22px;
}

.footer_form_wrapper .form input,
.footer_form_wrapper .form textarea {
	width: 100%;
	margin: 0;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.94);
	border-radius: 3px;
}

.footer_form_wrapper .form textarea {
	grid-column: 1 / -1;
}

.footer_form_wrapper .tel {
	margin-top: 22px;
	text-align: center;
	font-size: 34px;
	font-weight: 700;
}

.footer_form_wrapper .tel a {
	color: #ffffff;
	text-decoration: none;
}

.footer_form_wrapper .form.thankyou {
	display: block;
	color: #ffffff;
}

@media screen and (max-width: 980px) {
	.lp-hero__inner {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-top: 46px;
	}

	.lp-hero__content {
		max-width: none;
	}

	.form_wrapper {
		width: min(440px, 100%);
		margin: 0 auto;
	}

	.lp-timers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lp-feature__grid {
		grid-template-columns: 1fr;
	}

	.lp-feature--alt .lp-feature__media {
		order: 0;
	}

	.footer_form_wrapper .form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 760px) {
	.header_v2 .heaver_v2_c {
		flex-direction: column;
		gap: 0;
		padding: 16px 0 0;
	}

	.header_v2 .logo {
		padding-bottom: 14px;
	}

	.header_v2 .c2a {
		width: 100%;
		min-height: 88px;
	}

	.lp-hero {
		min-height: 0;
	}

	.lp-hero__inner,
	.lp-section__inner {
		width: calc(100% - 28px);
	}

	.lp-hero h1 {
		font-size: 40px;
	}

	.lp-hero ul {
		font-size: 18px;
	}

	.lp-timers {
		grid-template-columns: 1fr;
	}

	.lp-section {
		padding: 42px 0;
	}

	.lp-feature__grid {
		gap: 24px;
	}

	.lp-feature h2 {
		font-size: 34px;
	}

	.footer_form_wrapper .form {
		grid-template-columns: 1fr;
	}

	.lp-companies .comp_desktop {
		display: none;
	}

	.lp-companies .comp_mobile {
		display: block;
	}
}
