:root {
	--border-color: rgb(140 140 140 / .2);
	--box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* body */
body {
    font-family: "Inter", Helvetica Neue, Arial, sans-serif;
	margin: 0;
	
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	color: #1D261F;
	/*background: #f4f2ee;*/
}

h1, h2, h3 { margin: 0; }

input,
textarea,
select {
	font-size: 16px;
}

/* a */
a {
	color: #1a73e8;
}
/*a:focus {
    text-decoration: underline
}*/

/* address */
address {
	font-style: inherit;
}

/* button */
button,
.button {
	--btn-height: 48px;
	
	--btn-background-color: #fff;
	--btn-background-hover-color: #e8f0fe;
	--btn-background-active-color: #e8f0fe;
	--btn-box-shadow-color: 218, 220, 224;
	--btn-color: #1a73e8;
	
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	
	border: 0;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: .25px;
	text-decoration: none !important;
	
	height: var(--btn-height);
	padding: 0 calc(var(--btn-height) * .5);
	border-radius: calc(var(--btn-height) * .15);
	background: var(--btn-background-color);
	color: var(--btn-color);
	box-shadow: inset 0 0 0 1px rgba(var(--btn-box-shadow-color), 1);
	transition: .2s all;
}
button:hover,
.button:hover {
	background: var(--btn-background-hover-color);
	transform: translateY(-2px);
	box-shadow:
		inset 0 0 0 1px rgba(var(--btn-box-shadow-color), 1),
		0 1px 2px 0 rgba(var(--btn-box-shadow-color), .5),
		0 2px 6px 2px rgba(var(--btn-box-shadow-color), .3);
}
button:active,
.button:active {
	background: var(--btn-background-active-color);
	transform: scale(0.97) translateY(0);
	box-shadow: 
		0 calc(var(--btn-h) * 0.15)
		calc(var(--btn-h) * 0.30)
		calc(var(--btn-h) * -0.20)
		var(--btn-box-shadow-color);
}
button svg,
.button svg {
	width: 24px;
	height: 24px;
}
button.big,
.button.big {
	--btn-height: 60px;
	font-size: 1.15rem;
}
button.rounded,
.button.rounded {
	border-radius: calc(var(--btn-height) * .5);
	padding: 0 calc(var(--btn-height) * .75);
}
button.primary,
.button.primary {
	--btn-background-color: #1a73e8;
	--btn-background-hover-color: #1765cc;
	--btn-background-active-color: #185abc;
	--btn-box-shadow-color: 26,115,232;
	--btn-color: #fff;	
}

/* header */
header {
	background: #fff;
	border-bottom: 1px solid var(--border-color);
	box-shadow: var(--box-shadow);
}
header a {
	color: initial;
	text-decoration: none;
}
header .header_grid {
	max-width: 1120px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	padding: 1rem 0;
}
header .back {
	grid-column: 1;
}
header .back svg {
	width: 24px;
	height: 24px;
}
header a.logo {
	grid-column: 2;
	margin: auto;
}
header a.logo .logobox {
	height: 60px;
	display: flex;
	align-items: center;
}
header a.logo .logobox img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}
header a.logo .logobox span {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: .25px;
	color: #1D261F;
}
header a.cta {
	grid-column: 3;
	margin-left: auto;
	font-size: 1.15rem;
	display: flex;
	align-items: center;
	gap: .25rem;
}
header a.cta span {
	font-size: 1.5rem;
	line-height: 1.25;
	border-bottom: 2px solid #1D261F;
}

/* main */
main {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	/*padding: 1.5rem 0;*/
}
main section {
	
}

/* footer */
footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	background: #F9FAF9;
	padding: 5rem 0;
	margin-top: 3rem;
}
footer a {
	color: initial;
}
footer a:hover {
	text-decoration: none;
}
footer .contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}
footer .contact .contact_now a {
	border-bottom: 2px solid #1D261F;
    display: inline-block;
    font-size: 1.875rem;
    line-height: 2.25rem;
	text-decoration: none;
}
footer .contact .ctas {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
footer .contact .ctas .cta a,
footer .contact .ctas address {
	display: flex;
	align-items: center;
	gap: .5rem;
}
footer .contact .ctas .cta svg,
footer .contact .ctas address svg {
	width: 24px;
	height: 24px;
}
footer .pages ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: .5rem;
}
footer .copyright {
	font-size: .85rem;
	text-align: center;
}

/* introduction */
.introduction {
	max-width: 1120px;
	margin: auto;
	padding: 0 1rem 1rem;
}

/* offerings_grid */
section.offerings .offerings_grid {
	max-width: 1120px;
	margin: 1rem auto;
	padding: 0 1rem;
	
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-column-gap: 1rem;
	grid-row-gap: 1.5rem;
}
section.offerings .offerings_grid .offering {
	background: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--border-color);
	box-shadow: var(--box-shadow);
	border-radius: .5rem;
	overflow: hidden;
}
section.offerings .offerings_grid .offering .media {
	min-height: 250px;
	height: 250px;
	overflow: hidden;
	position: relative;
}
section.offerings .offerings_grid .offering .media img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
section.offerings .offerings_grid .offering .details {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	padding: 1rem;
	height: 100%;
}
section.offerings .offerings_grid .offering .details .title {
	font-size: 1.25rem;
	font-weight: 600;
}
section.offerings .offerings_grid .offering .details .summary {
	font-size: .875rem;
	padding-bottom: 1rem;
}
section.offerings .offerings_grid .offering .details .cta {
	margin-top: auto;
}

/* page */
section.page {
	max-width: 1120px;
	margin: auto;
	padding: 1rem;
}

/* leadpage */
section.leadpage {
	padding: 1rem 0;
}
section.leadpage .media {
	max-width: 1120px;
	height: 400px;
	margin: auto;
}
section.leadpage .media img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: .5rem;
}
section.leadpage .content_grid {
	max-width: 1120px;
	margin: auto;
	padding: 1rem;
	
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

section.leadpage .content_grid .left {
	flex: 1 0 100%;
    max-width: 720px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
section.leadpage .content_grid .right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

section.leadpage .content_grid .address {
	display: flex;
	align-items: center;
	gap: .5rem;
}
section.leadpage .content_grid .address svg {
	width: 24px;
	height: 24px;
}
section.leadpage .content_grid .map {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
section.leadpage .content_grid .map iframe {
	border-radius: .5rem;
}

/* about */
.about {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
}
.about .content {
	max-width: 1120px;
	margin: auto;
	padding: 0 1rem;
	text-align: center;
}
.about .content h3 {
	font-size: 2rem;
}
.about .media {
	width: 100%;
	height: 400px;
}
.about .media img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/* leadform */
.leadform {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border: 1px solid var(--border-color);
	/*box-shadow: 0px 40px 44px -24px rgba(0, 0, 0, 0.25);*/
	box-shadow: var(--box-shadow);
	border-radius: .5rem;
	border: 2px solid #1a73e8;
	background: #fff;
	padding: 2rem 1rem;
	
	position: sticky;
	top: 1rem;
}
.leadform .header .form_title {
	font-size: 1.25rem;
	font-weight: 600;
	text-align: center;
}
.leadform .header .form_message {
	font-size: 1.15rem; 
	text-align: center;
}
.leadform form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.leadform form small {
	font-style: italic;
}
.leadform form input {
	border: 1px solid var(--border-color);
	height: 48px;
	border-radius: .5rem;
	padding: 0 1rem;
	outline-color: #1a73e8;
}
.leadform form .switch .switchFormTitle {
	font-size: 1.15rem;
	font-weight: 600;
}
.leadform form a.switch {
	font-size: .85rem;
	color: initial;
	text-decoration: none;
	text-align: center;
}
.no-touch .leadform form a.switch:hover {
	text-decoration: underline;
}
.leadform form .question {
	display: flex;
	flex-direction: column;
	gap: .25rem;
}
.leadform p {
	margin: 0;
}
.leadform ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.leadform ul li {
	padding: .25rem 0 .25rem 28px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJpY29uLWNoZWNrIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjx0aXRsZT5jaGVja21hcms8L3RpdGxlPjxwYXRoIGZpbGw9IiM0OEE3N0IiIGQ9Ik0xOS4yOTMgNS4yOTNsLTEwLjI5MyAxMC4yOTMtNC4yOTMtNC4yOTNjLTAuMzkxLTAuMzkxLTEuMDI0LTAuMzkxLTEuNDE0IDBzLTAuMzkxIDEuMDI0IDAgMS40MTRsNSA1YzAuMzkxIDAuMzkxIDEuMDI0IDAuMzkxIDEuNDE0IDBsMTEtMTFjMC4zOTEtMC4zOTEgMC4zOTEtMS4wMjQgMC0xLjQxNHMtMS4wMjQtMC4zOTEtMS40MTQgMHoiLz48L3N2Zz4=);
	background-size: 20px 20px;
}

/* faqs */
section.faqs .faq_body {
	display: flex;
	gap: 1rem;
	max-width: 1120px;
	margin: 2rem auto 0;
}
section.faqs .faq_body .text {
	flex: 1;
	display: flex;
	flex-direction: column;
}
section.faqs .faq_body .qas {
	flex: 3;
	display: flex;
	flex-direction: column;
}
section.faqs .faq_body .qas details {
	display: flex;
	flex-direction: column;
    cursor: pointer;
	border-bottom: 1px solid var(--border-color);
}
section.faqs .faq_body .qas details:last-of-type {
	border-bottom: none;
}
section.faqs .faq_body .qas details summary {
	font-weight: 500;
	font-size: 1.15rem;
	padding: .75rem 0;
}

/* cta_floater */
a.cta_floater {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 1001;
	background: #1a73e8;
	color: #fff;
	text-decoration: none;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(0,0,0,.25);
	transition: .2s ease;
}
a.cta_floater:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(0,0,0,.5);
	background: #1765cc;
}
a.cta_floater:active {
	transform: scale(1);
	box-shadow: 0 0 20px rgba(0,0,0,.25);
	background: #185abc;
}
a.cta_floater svg {
	width: 30px;
	height: 30px;
}

/* banner */
aside.banner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	text-align: center;
	background: #1a73e8;
	color: #fff;
	font-size: 1.15rem;
	padding: 1rem 0;
}
aside.banner strong {
	font-weight: 800;
}
aside.banner a {
	text-decoration: none;
	color: #fff;
}
aside.banner a:before {
	content: '|';
}
aside.banner a span {
	border-bottom: 1px solid #fff;
}

.reviews {
	display: flex;
	flex-direction: column;
	gap: 1;
}
.reviews .stars {
	color: #fbbc04;
	font-size: 1.5rem;
}
.reviews .reviews_header {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.reviews .reviews_header .reviews_summary {
	font-size: 1.15rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .5rem;
}

.reviews .reviews_grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(calc(50% - 1rem), 1fr));
	gap: 1rem;
	margin: 1rem auto;
}

.reviews .reviews_grid .review_card {
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: .5rem;
	padding: 1rem 1.25rem;
	box-shadow: var(--box-shadow);
	display: flex;
	flex-direction: column;
}

.reviews .reviews_grid .review_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: .5rem;
}

.reviews .reviews_grid .review_meta {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin-left: .75rem;
}

.reviews .reviews_grid .review_meta .date {
	font-size: .8rem;
	color: #888;
}

.reviews .reviews_grid .avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.reviews .reviews_grid svg {
	width: 20px;
	height: 20px;
}
.reviews .reviews_grid .review_text {
	font-size: .925rem;
	color: #444;
}

/* trustbox */
.trustbox {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.trustbox.leadpage {
	background: #454545;
	color: #fff;
	padding: 1rem;
	border-radius: .5rem;
	box-shadow: var(--box-shadow);
}
.trustbox .logo svg {
	width: 30px;
	height: 30px;
}
.trustbox .google_rating {
	font-size: 1.5rem;
	font-weight: 600;
}
.trustbox .google_rating span {
	color: #fbbc04;
}

/* hero */
section.hero {
	position: relative;
	overflow: hidden;
	color: #fff;
}
section.hero img,
section.hero video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
section.hero .hero_body {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	min-height: 50vh;
	max-height: 80vh;
	padding: 1rem;
	background: rgba(0,0,0,.35);
	text-shadow: 0 0 8px rgba(0,0,0,.5);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	gap: 1rem;
}
section.hero .hero_body h1 {
	font-size: 3rem;
}
section.hero .hero_body .trustbox {
	padding-top: 1rem;
}