@charset "UTF-8";
/* Created by Daniel Draney for bestairducts.com © Fresh Air Duct Cleaning */
/* 12-22-2025 Created */

/*** COLORS ***
/*	#ffffff  White       */
/*	#000000  Black       */
/*	#2ea3f2  MAIN Blue   */
/*	#0c71c3  DK Blue     */
/*	#9cd6fd  LT Blue     */
/*	#3d4e59  Grey-Blue   */
/*	#eaeaea  xLT-Grey    */
/*	#228b22  Green       */


/********* START Basic HTML/CSS Reset *********/
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
    max-width: 100%;
}
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	overflow-x: hidden;
    max-width: 100%;
	overflow-x: hidden;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
button { background: none; border: none; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
table { border-collapse: collapse; border-spacing: 0; }
/* Mobile Only */
@media screen and (max-width: 750px) {
	h1{text-align: center;}
}
/********* END Basic HTML/CSS Reset *********/


/********* START FONTS *********/
@font-face {
	font-family: 'roboto';
	src: url('/wp-content/themes/FreshAir/fonts/Roboto-VariableFont_wdth,wght.ttf');
	font-weight: normal;
	font-style: normal;
}
/********* END FONTS *********/


/********* START GLOBAL *********/
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }
nav { display: flex; }

.body {
	display: flex;
	flex-flow: column nowrap;
	width: 100%;
	height: 100%;
	background-color: #ffffff/*White*/;
	color: #3d4e59/*Grey-Blue*/;
	font-family: 'roboto';
	font-size: 1rem;
}
.screen-reader-text {
	word-wrap: normal !important;
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.gradient-blue { background: linear-gradient(to bottom, #0c71c3/*DK Blue*/, #2ea3f2/*MAIN Blue*/); }

a { color: #2ea3f2/*MAIN Blue*/; text-decoration: none; }
a:hover { color: #228b22/*Green*/; text-decoration: none; }

h1 { font-size: 2.1rem;  color: #2ea3f2/*MAIN Blue*/; margin: 15px 0 25px 0; }
h2 { font-size: 1.75rem; color: #2ea3f2/*MAIN Blue*/; margin: 10px 0 20px 0; }
h3 { font-size: 1.25rem; color: #2ea3f2/*MAIN Blue*/; margin: 5px 0 15px 0; }

main p { margin-bottom: 15px; }
main ul, ol { list-style: inside; margin-bottom: 15px; }

.wp-block-separator { color: #2ea3f2/*MAIN Blue*/; margin: 25px; }

.emoji {
	width: 1em;
	height: 1em;
	display: inline;
	vertical-align: -0.1em;
}
figure {
	display: block;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
	unicode-bidi: isolate;
	width: 100%;
}

/* Buttons */
.btn-green,.btn-blue,
.phone-btn-green,.phone-btn-blue {
	width: max-content;
	border-radius: 8px;
	padding: 10px 15px;
	color: #ffffff/*White*/;
}
.btn-green,.phone-btn-green { background-color: #228b22/*Green*/; }
.btn-blue,.phone-btn-blue  { background-color: #2ea3f2/*MAIN Blue*/; }
.btn-green:hover,.btn-blue:hover,
.phone-btn-green:hover,.phone-btn-blue:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	color: #ffffff/*White*/;
	text-decoration: underline;
}
.btn-green:hover,.phone-btn-green:hover { background-color: #2ea3f2/*MAIN Blue*/; }
.btn-blue:hover,.phone-btn-blue:hover  { background-color: #228b22/*Green*/; }
.content-btn-block{
	display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px;
}
/* Social / Payment Icons */
.social-icons,
.payment-icons {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-evenly;
	color: #2ea3f2/*MAIN Blue*/;
	font-size: 1.3rem;
}

.font-awesome-list{
	list-style:none;
}

.read-more-style {
    border: none;
    background: none;
}

.read-more-style summary {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    cursor: pointer;
    padding: 10px 0;
}

.read-more-style summary::-webkit-details-marker {
    display: none;
}

.read-more-style summary::before,
.read-more-style summary::after {
    content: "";
    flex: 1;
    border-top: 1px solid #b0cfe8;
}

.read-more-style summary .summary-label {
    padding: 0 15px;
    color: #2b7bb9;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.read-more-style summary .summary-arrow {
    color: #2b7bb9;
    font-size: 12px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-more-style[open] summary .summary-arrow {
    transform: rotate(180deg);
}

/* hide the default triangle */
.read-more-style summary::-webkit-details-marker {
    display: none;
}

/* change text when open */
.read-more-style[open] summary::after {
    content: "Read Less";
}

.read-more-style:not([open]) summary::after {
    content: "Read More";
}

/* hide the summary label itself if you want only the after content to show */
.read-more-style summary {
    font-size: 0; /* hides any typed summary text */
}

.read-more-style summary::after {
    font-size: 14px; /* restores size for the pseudo content */
}
/********* END GLOBAL *********/


/********* START HEADER *********/
.header {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	width: 100%;
}

/* Top Bar */
.header-top-bar {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
	padding: 10px 25px 8px 25px;
	background: linear-gradient(to bottom, #0c71c3/*DK Blue*/, #2ea3f2/*MAIN Blue*/);
	color: #ffffff/*White*/;
	font-size: .75rem;
}
.top-bar-info a { color: #ffffff/*White*/; }
.top-bar-info a:hover { color: #ffffff/*White*/; text-decoration: underline; }

.header-top-bar .top-bar-menu .menu {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
}
.header-top-bar .top-bar-menu .menu li { white-space: nowrap; }
.header-top-bar .top-bar-menu .menu li a { color: #ffffff/*White*/; white-space: nowrap; }
.header-top-bar .top-bar-menu .menu li a:hover { color: #ffffff/*White*/; text-decoration: underline; }
.header-top-bar .top-bar-menu .menu li::after { content: '|'; margin: 0 8px; }
.header-top-bar .top-bar-menu .menu li:last-child::after { content: ''; }

/* Logo */
.header-logo,
.footer-logo {
	display: flex;
	flex: 0 0 25%;
	margin: 0;
	padding: 0 0 0 20px;
	min-height: 115px;
}
.header-logo img,
.footer-logo img {
	width: 100%;
	height: auto;
	min-height: 115px;
	max-height: 150px;
}

/* Header Main */
.header-main {
	display: flex;
	flex-flow: row nowrap;
	flex: 0 0 75%;
	justify-content: space-between;
	width: 100%;
	color: #2ea3f2/*MAIN Blue*/;
	background-color: #ffffff/*White*/;
}
.header-content {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-around;
}
.header-main-content {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
	align-items: center;
	padding: 15px 50px 0 0;
}
.header-main-content img { width: 150px; padding: 0 20px; }
.header-main-content .book-service {
	background-color: #ffffff/*White*/;
	border: 2px solid #2ea3f2/*MAIN Blue*/;
	border-radius: 8px;
	color: #2ea3f2/*MAIN Blue*/;
	padding: 10px 20px 7px 20px;
	height: fit-content;
}
.header-main-content .book-service:hover {
	color: #228b22/*Green*/;
	border-color: #228b22/*Green*/;
}

/* Nav - Desktop */
.header-nav {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
	max-width: max-content;
}
.header-nav .menu {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	color: #2ea3f2/*MAIN Blue*/;
	padding: 0 40px 15px 0;
}
.header-nav .menu ul {
	display: flex;
	flex-flow: row nowrap;
}
.header-nav .menu li {
	display: block;
	position: relative;
	width: min-content;
	white-space: nowrap;
}
.header-nav .menu li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	white-space: nowrap;
	line-height: 1em;
	font-size: 1.1rem;
}
.header-nav .menu li a:hover { text-decoration: underline; }
.header-nav .menu li.menu-item-has-children > a::after {
	content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-left: 6px;
	text-decoration:none;
}
.header-nav .menu li.menu-item-has-children:hover > a{color:#228b22/*Green*/;text-decoration:none;}
.header-nav .menu li.menu-item-has-children:hover > a::after{
	content: "\f0d7";
}
/* Nav - Level 2 Sub Menu */
.header-nav .menu li ul.sub-menu {
	display: none;
	flex-flow: column nowrap;
	position: absolute;
	top: 100%;
	left: 0;
	right: auto;
	min-width: 260px;
	background-color: #ffffff/*White*/;
	border-top: 3px solid #2ea3f2/*MAIN Blue*/;
	border-radius: 0 0 8px 8px;
	box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	margin: 0;
	padding: 0;
}

/* Level 2 items */
.header-nav .menu li ul.sub-menu > li {
	display: block;
	width: 100%;
	position: relative;
	border-bottom: 1px solid #eaeaea/*xLT-Grey*/;
	background-color: #ffffff/*White*/;
}
.header-nav .menu li ul.sub-menu > li:last-child { border-bottom: none; }
.header-nav .menu li ul.sub-menu > li > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 13px 18px;
	color: #2ea3f2/*MAIN Blue*/;
	font-weight: 600;
	font-size: 1rem;
	width: 100%;
	text-decoration: none;
}
.header-nav .menu li ul.sub-menu > li > a:hover,
.header-nav .menu li ul.sub-menu > li.is-active > a {
	background-color: #2ea3f2/*MAIN Blue*/;
	color: #ffffff/*White*/;
	text-decoration: none;
}

/* Chevron on level 2 items that have children */
.header-nav .menu li ul.sub-menu > li.menu-item-has-children > a::after {
	content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1.0rem;
	margin-left: 10px;
	color: inherit;
}
.header-nav .menu li ul.sub-menu > li.menu-item-has-children > a::after {
	content: "\f0d7";
}
/* Nav - Level 3 Sub Menu */
.header-nav .menu li ul.sub-menu li ul.sub-menu {
	display: none;
	flex-flow: column nowrap;
	position: absolute;
	top: 0;
	left: 100%;
	right: auto;
	min-width: 220px;
	background-color: #ffffff/*White*/;
	border-top: 3px solid #2ea3f2/*MAIN Blue*/;
	border-radius: 0 0 8px 8px;
	box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 1001;
	margin: 0;
	padding: 0;
}

/* Level 3 items */
.header-nav .menu li ul.sub-menu li ul.sub-menu > li {
	display: block;
	width: 100%;
	border-bottom: 1px solid #eaeaea/*xLT-Grey*/;
	background-color: #ffffff/*White*/;
}
.header-nav .menu li ul.sub-menu li ul.sub-menu > li:last-child { border-bottom: none; }
.header-nav .menu li ul.sub-menu li ul.sub-menu > li > a {
	display: block;
	padding: 13px 18px;
	color: #2ea3f2/*MAIN Blue*/;
	font-size: 1rem;
	width: 100%;
	text-decoration: none;
}
.header-nav .menu li ul.sub-menu li ul.sub-menu > li > a:hover,
.header-nav .menu li ul.sub-menu li ul.sub-menu > li.is-active > a {
	background-color: #2ea3f2/*MAIN Blue*/;
	color: #ffffff/*White*/;
	text-decoration: none;
}

/* Last top-level item: panels open rightward-safe */
.header-nav .menu > li:last-of-type > ul.sub-menu { left: auto; right: 0; }
.header-nav .menu > li:last-of-type ul.sub-menu li ul.sub-menu { left: auto; right: 100%; }

.header-nav-mobile-hamburger,
.header-nav-mobile-phone,
.header-mobile-info-bar { display: none; }

/* Desktop Only */
@media screen and (min-width: 751px) {
	.header-nav .menu li.menu-item-has-children:hover > ul.sub-menu,
	.header-nav .menu li ul.sub-menu li.menu-item-has-children:hover > ul.sub-menu { display: flex; }
	.header-nav .menu li ul.sub-menu li.menu-item-has-children:hover > a,
	.header-nav .menu li ul.sub-menu li.menu-item-has-children:hover > a::after {
		background-color: #2ea3f2/*MAIN Blue*/;
		color: #ffffff/*White*/;
	}
}

/* Mobile Only */
@media screen and (max-width: 750px) {
	.header-top-bar .top-bar-info,
	.top-bar-menu-phone { display: none; }

	.top-bar-menu {
		font-size: .93rem;
		width: 100%;
	}
	.header-top-bar .top-bar-menu .menu {
		flex-flow: row nowrap;
		justify-content: center;
	}
	.header-top-bar .top-bar-menu .menu li::after { margin: 0 15px; }
	.header-top-bar .top-bar-menu .menu li.top-bar-menu-mobile-last::after { content: ''; }
	.header-top-bar .top-bar-menu .menu li.top-bar-menu-mobile-last { margin-right: -25px; }

	.header-logo a,
	.footer-logo img a { min-width: 150px; max-width: 150px; }

	.header-phone a {
		background-color: #228b22/*Green*/;
		border-radius: 8px;
		padding: 10px 15px;
		color: #ffffff/*White*/;
	}
	.header-phone a:hover { background-color: #2ea3f2/*MAIN Blue*/; }

	.header-main-content { display: none; }

	.header-nav {
		flex-flow: row nowrap;
		align-items: flex-end;
		max-width: none;
		font-size: 2rem;
	}
	.header-nav-mobile-hamburger,
	.header-nav-mobile-phone {
		display: flex;
		padding: 15px 25px;
		background-color: #ffffff/*White*/;
		color: #3d4e59/*Grey-Blue*/;
	}
	.header-nav-mobile-hamburger:hover,
	.header-nav-mobile-phone:hover { color: #2ea3f2/*MAIN Blue*/; }

	.header-nav .menu { display: none; }
	.header-nav .menu.open {
		position: absolute;
		top: 150px;
		left: 0;
		right: 0;
		z-index: 999;
		display: flex;
		flex-flow: column nowrap;
		padding: 0;
		transition: max-height 0.3s ease;
		background-color: #2ea3f2/*MAIN Blue*/;
	}
	.header-nav .menu.open ul { flex-flow: column nowrap; }
	.header-nav .menu.open li {
		display: flex;
		flex-flow: column nowrap;
		position: unset;
		width: 100%;
		border-bottom: 1px solid #ffffff/*White*/;
	}
	.header-nav .menu.open li a { width: 100%; color: #ffffff/*White*/; }
	.header-nav .menu.open li a:hover { background-color: #228b22/*Green*/;color: #ffffff/*White*/; }

	.header-nav .menu.open li.open ul.sub-menu{
		display: flex;
		position: unset;
		width: 100%;
		box-shadow: none;
		border-top: 1px solid #ffffff/*White*/;
	}
	.header-nav .menu.open li.open ul.sub-menu li ul{display:none;}
	.header-nav .menu.open li.open ul.sub-menu li.open ul{display:flex;}
	.menu-item-has-children.open ul.sub-menu li,
	.menu-item-has-children.open ul.sub-menu .menu-item-has-children.open ul.sub-menu li {
		border-bottom: 1px solid #ffffff/*White*/;
	}
	.menu-item-has-children.open ul.sub-menu li:last-of-type,
	.menu-item-has-children.open ul.sub-menu .menu-item-has-children.open ul.sub-menu li:last-of-type {
		border-bottom: none;
	}
	.menu-item-has-children.open ul.sub-menu li a { padding-left: 50px; }

	.header-mobile-info-bar {
		display: flex;
		flex-flow: row nowrap;
		justify-content: center;
		background-color: #2ea3f2/*MAIN Blue*/;
		color: #ffffff/*White*/;
		padding: 13px 25px;
		text-align: center;
	}
}
/********* END HEADER *********/


/********* START FOOTER *********/
.footer {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	width: 100%;
	margin: auto 0 0 0;
}

/* CTA Form */
.footer-cta-form {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	padding: 25px 30px;
}
.footer-cta-form .form-img { width: 48%; border-radius: 8px;object-fit:cover; }

/* Business Directories */
.business-directories {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
	padding: 50px 30px;
}
nav.business-directories { padding: 0; }
.business-directories img {
	width: 100%;
	height: auto;
	min-height: 90px;
	max-height: 175px;
	padding: 15px;
}

/* CTA Bar */
.footer-cta-bar {
	width: 100%;
	height: 30px;
	background-color: #2ea3f2/*MAIN Blue*/;
	position: relative;
}
.footer-cta-bar-box {
	background-color: #228b22/*Green*/;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 75px;
	width: 50%;
	min-width: 500px;
	color: #ffffff/*White*/;
	border-radius: 8px;
}

/* Footer Main */
.footer-main {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	padding: 50px;
}
.footer-main-part-one,
.footer-main-part-two,
.footer-main-part-three {
	display: flex;
	flex-flow: column nowrap;
	width: 30%;
	justify-content: space-between;
}
.footer-logo { padding: 0; }
.footer-main .social-icons {
	justify-content: flex-start;
	padding: 0 20px;
}
.footer-main .social-icons a { padding: 5px; }

/* Bottom Bar */
.footer-bottom-bar {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
	padding: 10px 40px 8px 50px;
	background-color: #0c71c3/*DK Blue*/;
	color: #ffffff/*White*/;
	font-size: .75rem;
}
.footer-bottom-bar a { color: #ffffff/*White*/; }
.footer-bottom-bar a:hover { color: #ffffff/*White*/; text-decoration: underline; }
.footer-bottom-bar .menu ul {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
}
.footer-bottom-bar .menu ul li a { margin: 5px; padding: 5px; color: #ffffff/*White*/; }
.footer-bottom-bar .menu ul li a:hover { color: #ffffff/*White*/; text-decoration: underline; }

.bottom-bar-menu .menu {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
}
.bottom-bar-menu .menu li:not(:last-child)::after { content: '|'; margin: 0 8px; }

/* Footer Mobile */
@media screen and (max-width: 750px) {
	.footer-cta-form { flex-flow: column nowrap; }
	.footer-cta-form .form-img,
	.footer-cta-form .form-container { width: 100%; margin-bottom: 25px; }

	.business-directories { padding: 50px 25px; }
	nav.business-directories { flex-wrap: wrap; justify-content: space-evenly; padding: 0; }
	.business-directories img { min-height: 125px; max-height: 125px; }

	.footer-cta-bar-box { flex-flow: column nowrap; min-width: 85%; justify-content: space-evenly; min-height: 125px; }

	.footer-bottom-bar { flex-flow: column nowrap; padding: 13px 25px; }
	.bottom-bar-info,
	.footer-bottom-bar .menu { text-align: center; }
	.footer-bottom-bar .menu { padding-top: 20px; }
	.footer-bottom-bar .menu ul { justify-content: center; }

	.footer-main { flex-flow: column nowrap; align-items: center; padding: 50px 25px; }
	.footer-main-part-one,
	.footer-main-part-two,
	.footer-main-part-three { width: 100%; text-align: center; }

	.nap-info { padding: 10px 0; }
	.footer-logo a { width: 100%; }
	.footer-nav-main { justify-content: center; margin: 25px 0 20px 0; }
	.bbb { display: flex; flex-flow: row nowrap; justify-content: center; }
	.footer-main .social-icons,
	.payment-icons { justify-content: center; padding: 0 150px; }
	.payment-icons i { margin: 0 15px; }
	.bottom-bar-menu .menu { justify-content: center; }
}
/********* END FOOTER *********/


/********* START MAIN *********/
.main {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
	padding:50px 25px;
	background-color: #ffffff/*White*/;
}
/********* END MAIN *********/


/********* START PAGINATION *********/
.pagination {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	width: 100%;
}
.pagination .page-numbers {
	padding: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin: 0 5px;
	color: #ffffff/*White*/;
	background-color: #2ea3f2/*MAIN Blue*/;
	border-radius: 50%;
}
.pagination .page-numbers:hover { background-color: #228b22/*Green*/; }
.pagination .page-numbers.current { background-color: #eaeaea/*xLT-Grey*/; }
/********* END PAGINATION *********/


/********* START TABLES *********/
main .wp-block-table table,
main table.has-fixed-layout {
	border-radius: 8px;
	overflow: hidden;
	margin: 0 0 25px 0;
	border-collapse: separate;
	border-spacing: 0;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
	width: 99%;
}
main .wp-block-table table thead,
main table.has-fixed-layout thead {
	background-color: #2ea3f2/*MAIN Blue*/;
	color: #ffffff/*White*/;
	border: 1px solid #2ea3f2/*MAIN Blue*/;
}
main .wp-block-table table th,
.main .wp-block-table .has-fixed-layout th { border: none; padding: 5px; word-break: keep-all; }
main .wp-block-table table td,
main .wp-block-table td { border: 1px solid #2ea3f2/*MAIN Blue*/; padding: 5px; }
main .wp-block-table table tr:last-child td:first-child,
main table.has-fixed-layout tr:last-child td:first-child { border-bottom-left-radius: 8px; }
main .wp-block-table table tr:last-child td:last-child,
main table.has-fixed-layout tr:last-child td:last-child { border-bottom-right-radius: 8px; }
/********* END TABLES *********/


/********* START FORMS *********/
form input,form select {
	margin: 10px;
	padding: 7px 15px;
	background-color: #eaeaea/*xLT-Grey*/;
	border-radius: 8px;
	border: none;
	line-height: 1em;
	width: calc(50% - 20px);
}
form .select-wrapper {
	position: relative;
	display: inline-block;
	width: calc(50% - 20px);
}
form .select-wrapper select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	padding-right: 25px;
}
form .select-wrapper::after {
	content: "\f0d7";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	right: 5px;
	top: 25px;
	transform: translateY(-50%);
	pointer-events: none;
}
button {
	width: max-content;
	background-color: #228b22/*Green*/;
	border-radius: 8px;
	padding: 10px 15px;
	color: #ffffff/*White*/;
}
button:hover { background-color: #2ea3f2/*MAIN Blue*/; }

.form-container {
	display: flex;
	flex-flow: column nowrap;
	border-radius: 8px;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}
.form-container .form-title {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	padding: 15px;
	background-color: #2ea3f2/*MAIN Blue*/;
	color: #ffffff/*White*/;
}
.form-container .form {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	padding: 10px 25px;
	background-color: #ffffff/*White*/;
}
.form-container .button {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	width: calc(50% - 20px);
	margin: 10px;
}

@media screen and (max-width: 750px) {
	form input,
	form select,
	.form-container .button { width: 100%; }
	form .select-wrapper { width: calc(100% - 20px); }
}
div:has(.cta-form){
	width: 48%;
    margin: 0;
}
.cta-form{
	display: flex;
    flex-flow: column nowrap;
    width: 100%;
    margin: 0;
    border: 1px solid #eaeaea /*xLT-Grey*/;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}
.cta-form h2{
	background-color: #2ea3f2 /*MAIN Blue*/;
    color:#ffffff /*White*/;
    margin: 0;
    padding: 10px;
    text-align: center;
}
.cta-form .frm_fields_container{
	display: flex;
    flex-flow:row wrap;
	justify-content: space-between;
    grid-gap: unset;
    direction: unset;
	width: 100%;
    padding: 15px;
}
.cta-form .frm_style_formidable-style.with_frm_style .form-field{
	width: 45%;
    margin:0 0 20px 0;
}
.cta-form .with_frm_style input[type=text],
.cta-form .with_frm_style input[type=password],
.cta-form .with_frm_style input[type=email],
.cta-form .with_frm_style input[type=number],
.cta-form .with_frm_style input[type=url],
.cta-form .with_frm_style input[type=tel],
.cta-form .with_frm_style input[type=file],
.cta-form .with_frm_style input[type=search],
.cta-form .with_frm_style select,
.cta-form .with_frm_style .frm-card-element.StripeElement{
    min-height:unset;
    margin: 0;
    padding: 7px 15px;
    background-color: #eaeaea /*xLT-Grey*/;
    border-radius: 8px;
    border: none;
    line-height: 1em;
    width: 100%;
}
.cta-form .vertical_radio,
.cta-form .frm_html_container{
	width: 100% !important;
    margin: 0 0 20px 0;
}
.cta-form .form-field:has(.frm_submit){
	width: 100% !important;
    text-align: center;
}
.cta-form .frm_submit button{
	background-color: #2ea3f2 /*MAIN Blue*/;
	border-radius: 8px;
    padding: 10px 15px;
    color: #ffffff /*White*/;
}
.cta-form .frm_submit button:hover{background-color: #228b22/*Green*/!important;}
@media screen and (max-width: 750px) {
	div:has(.cta-form){width: 100%;}
}
/********* END FORMS *********/


/********* START CARDS *********/
.card-container { display: flex; flex-flow: row wrap; justify-content: space-between; }
.card {
	display: flex;
	flex-flow: column nowrap;
	width: 30%;
	margin: 20px 0;
	border: 1px solid #eaeaea/*xLT-Grey*/;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease;
}
.card-link {
	display: flex;
	flex-flow: column nowrap;
	width: 100%;
	height: 100%;
	color: #3d4e59/*Grey-Blue*/;
}
.card-featured-img,
.card-featured-img img { display: block; width: 100% !important; }
.card-content { display: flex; flex-flow: column nowrap; margin: 20px; }
.card-btn {
	display: flex;
	flex-flow: row nowrap;
	align-self: center;
	width: max-content;
	margin: auto 0 20px 0;
	padding: 8px 15px;
	color: #ffffff/*White*/;
	background-color: #2ea3f2/*MAIN Blue*/;
	border-radius: 8px;
}
.card:hover {
	box-shadow: 1px 1px 10px rgba(0, 208, 24, 0.5)/*Green*/;
	transform: translate(2px, 2px);
}
.card-link:hover .card-btn { background-color: #228b22/*Green*/; }
@media (prefers-reduced-motion: reduce) {
	.card { transition: none; }
}

/* Blog Archive Card widths */
@media screen and (max-width: 950px) { .archive-blog-card { width: 48%; } }
@media screen and (max-width: 600px) { .archive-blog-card { width: 100%; } }
/********* END CARDS *********/


/********* START BLOG *********/
.blog {
	display: flex;
	flex-flow: column nowrap;
	width: 75%;
}
.blog-featured-img img { border-radius: 8px; }
.blog-info {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}
.blog-info .blog-nav-tags .blog-category-group { display: flex; }
.blog-info .blog-nav-tags .blog-category-group li { padding: 13px; list-style: none; white-space: nowrap; }
.blog-info .blog-data { padding: 13px; }

.blog-aside { width: 23%; }
.blog-aside .search-aside {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
}
.blog-aside form input { width: 75%; margin: 0; padding: 7px 15px; }
.blog-aside form button { padding: 0; width: 20%; text-align: center; }
.blog-aside-categories { margin: 25px 0; }
.blog-aside-card { width: 100%; }
.blog-aside-card img { width: 100%; height: auto; }
.blog-aside-card .archive-blog-card-title,
.blog-aside-card .archive-blog-card-excerpt { margin: 5px 5px 10px 5px; }
.blog-aside-card .archive-blog-card-btn { margin: 5px auto 15px auto; }

@media screen and (max-width: 750px) {
	.main:has(.blog) { flex-flow: column nowrap; padding-top: 0; }
	.blog { width: 100%; }
	.blog-aside { width: 100%; margin-top: 50px; }
	.blog-featured-img {
		width: calc(100% + 50px);
		left: -25px;
		position: relative;
	}
	.blog-featured-img img { border-radius: 0; }
	.blog-info { flex-flow: column nowrap; justify-content: unset; }
	.blog-nav-tags { order: 2; }
	.blog-info .blog-nav-tags .blog-category-group { padding: 0; margin: 0; }
	.blog-info .blog-nav-tags .blog-category-group li { padding: 0 5px; }
	.blog-data { order: 1; padding: 5px 0 0 5px; }
	.cta-inline {
		width: calc(100% + 50px);
		left: -25px;
		position: relative;
		display: flex;
	}
}
/********* END BLOG *********/


/********* START FAQs *********/
.faq-section { width: 100%; }
.home-page .faq-section {padding: 50px 30px;}
.faq-list { display: flex; flex-flow: column nowrap; }
.faq-item {
	margin-bottom: 25px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-question {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 18px 20px;
	background-color: #2ea3f2/*MAIN Blue*/;
	color: #ffffff/*White*/;
	font-size: 1.2rem;
	text-align: left;
	cursor: pointer;
}
.faq-question:hover { background-color: #228b22/*Green*/; }
.faq-icon { flex-shrink: 0; font-size: 1.1rem; color: #ffffff/*White*/; width: 16px; text-align: center; }
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
	background-color: #ffffff/*White*/;
}
.faq-item.open .faq-answer { max-height: 100%; }
.faq-answer-inner { padding: 15px 15px 0 15px; }

@media screen and (max-width: 750px) {
	.faq-question { font-size: 1.0rem; }
}
/********* END FAQs *********/


/********* START WP BLOCK GROUP *********/
.wp-block-group {
	display: flex;
	flex-flow: column nowrap;
	width: 100%;
	padding: 30px 30px;
}
/********* END WP BLOCK GROUP *********/

.top-cta-featured{
	display: flex;
    flex-flow: row nowrap;
	align-items: stretch;
    position: relative;
    top: -65px;
    width: 100%;
    margin: 0 0 -100px 0;
    border: none;
    box-shadow: none;
}
.top-cta-featured a{
	display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    position: relative;
    width: calc(25% + 10px);
    margin: 0;
    padding: 12px;
    border: none;
    border-radius: 8px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    background-color: #2ea3f2 /*MAIN Blue*/;
    color: #ffffff /*White*/;
}
.top-cta-featured a:hover{
    background-color:#228b22/*Green*/;
    color: #ffffff /*White*/;
}
.top-cta-featured-left{
	display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}
.top-cta-featured-left p.top-cta-featured-title{
	margin: 0 0 5px 0;
    font-size: 1.15rem;
}
.top-cta-featured-left p.top-cta-featured-text{
	margin: 0 !important;
    font-size: 0.85rem;
}
.top-cta-featured-right{
	display: flex;
    align-items: center;
    justify-content: end;
    font-size: 1.5rem;
}
.top-cta-featured a.top-cta-featured-one{background-color: #228b22/*Green*/;}
.top-cta-featured a.top-cta-featured-one:hover{background-color:#2ea3f2 /*MAIN Blue*/;}
.top-cta-featured a.top-cta-featured-three{background-color: #eaeaea/*xLT-Grey*/;color:#3d4e59/*Grey-Blue*/;}
.top-cta-featured a.top-cta-featured-three:hover{background-color: #228b22/*Green*/;color:#ffffff /*White*/;}
@media screen and (max-width: 750px) {
	.top-cta-featured {flex-flow: row wrap !important;justify-content: space-between;}
	.top-cta-featured a{width:calc(50% - 10px);}
	.top-cta-featured-left p.top-cta-featured-title{margin:0;}
	.top-cta-featured-left p.top-cta-featured-text{display:none;}
}
.gbp-reviews{
	display: flex;
    flex-flow: column nowrap;
    width: 100%;
    align-items: center;
    padding: 30px 50px;
}
.gbp-reviews-feed{width: 100%;}

.cta-services{
	display: flex;
    flex-flow: column nowrap;
	justify-content: space-between;
    width: 100%;
    margin: 0 0 25px 0;
    padding: 0;
	padding: 25px 30px;
    border: none;
    border-bottom: 15px solid #2ea3f2 /*MAIN Blue*/;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
	background-color: rgb(46 163 242 / 75%);
	background-image: url(/wp-content/uploads/2026/03/blue-sky_1920x1080.jpg);
    transition: transform 0.2s ease;
}
.cta-services .wp-block-group__inner-container{
	display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
	background-color: rgb(46 163 242 / 75%);
	padding: 25px 30px;
}
.cta-services .cta-services-title{
	margin: 0;
    color: #ffffff /*White*/;
    font-size: 1.5rem;
    text-align:center;
	text-transform: uppercase;
}
.cta-services .cta-services-break{
	display: flex;
    flex-flow: row nowrap;
}
.cta-services .cta-services-break-line{
	width: 40%;
    border: none;
    border-top: 3px solid #ffffff /*White*/;
    margin: 15px auto;
}
.cta-services .cta-services-break-icon{
	color: #ffffff /*White*/;
    font-size: 2.0rem;
}
.cta-services .cta-services-btn-box{
	display: flex;
    flex-flow: row nowrap;
	align-items: stretch;
    width: 100%;
    margin: 0;
    border: none;
}
.cta-services .cta-services-btn{
	display: flex;
    flex-flow: column nowrap;
    width: 25%;
    margin: 0 5px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff /*White*/;
}
.cta-services .cta-services-btn-icon{
	margin: 0 5px;
    font-size: 1.5rem;
	text-align: center;
}
.cta-services .cta-services-btn-title{
	margin: 15px 0 0 0;
	text-align: center;
	font-size: 1.15rem;
	color: #228b22/*Green*/;
}
.cta-services .cta-services-btn:hover{background-color: #228b22/*Green*/;color: #ffffff /*White*/;}
.cta-services .cta-services-btn:hover .cta-services-btn-title{color: #ffffff /*White*/;}
@media screen and (max-width: 750px) {
	.cta-services .cta-services-btn-box{flex-flow:column nowrap;}
	.cta-services .cta-services-btn{width: 100%;margin: 10px 5px;}
}
/********* START HOME PAGE *********/
.main:has(> .home-page){
	padding:0;
}
.home-page{
	display: flex;
    flex-flow: column nowrap;
    width: 100%;
}
.main .featured-media-block{
	height: 550px;
    display: flex;
    align-items: center;
}
.main .featured-media-block__wrapper{
	padding-top: 52.75% !important;
}
@media screen and (max-width: 1050px) {
	.main .featured-media-block{
		height: unset;
		display: flex;
		align-items: unset;
	}
}
/********* END HOME PAGE *********/

.cta-price{
	display: flex;
    flex-flow: row nowrap;
    width: 100%;
    justify-content: space-between;
    padding: 25px 30px;
}
.cta-price .cta-price-link{
	display: flex;
	flex-flow: column nowrap;
	width: calc(33% - 5px);
	margin: 30px 0;
	border: 1px solid #eaeaea/*xLT-Grey*/;
	border-radius: 8px;
	overflow: hidden;
	background-color: #3d4e59 /*Grey-Blue*/;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease;
}
.cta-price .cta-price-link:hover{
	background-color: #228b22/*Green*/;
}
.cta-price .cta-price-service{
	display: flex;
	flex-flow: column nowrap;
	width:100%
}
.cta-price .cta-price-title{
	text-align: center;
    padding: 20px 10px 15px 10px;
	margin: 0;
    text-transform: uppercase;
	font-size: 1.75rem;
}
.cta-price .cta-price-title{
	color: #ffffff /*White*/;
    text-align: center;
    margin: 0;
}
.cta-price .cta-price-start{
	margin: 0;
    text-align: center;
	color:#2ea3f2 /*MAIN Blue*/;
}
.cta-price .cta-price-amount{
	font-size: 3.0rem;
    color: #ffffff /*White*/;
    text-align: center;
	margin: 10px 0 15px 0;
}
.cta-price .cta-price-amount-detail{
	font-size: 0.9rem;
}
.cta-price .cta-price-phone{
	margin: 0;
    background-color: #2ea3f2 /*MAIN Blue*/;
    color: #ffffff /*White*/;
    padding: 20px 0;
	text-align: center;
}
.cta-price .cta-price-phone a.phone-text{color:#ffffff /*White*/;}
.cta-price .cta-price-list{color:#ffffff /*White*/;padding: 15px;}
.cta-price .cta-price-list li{padding: 0 0 10px 0;}
.cta-price .cta-price-list li:last-of-type{padding:0;}
@media screen and (max-width: 750px) {
	.cta-price {
		display: flex;
		flex-flow: column nowrap;
	}
	.cta-price .cta-price-link {width: 100%;}
}



