/*
	Theme Name: VMG
	Theme URI: https://visualmediagroupllc.com/
	Description: HTML5 Blank WordPress Theme
	Version: 1.3
	Author: Visual Media Group
	Author URI: https: //visualmediagroupllc.com/
	Tags: Blank, HTML5, CSS3
	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family: 'Saira ExtraCondensed ExtraBold';
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	font-weight: 400;
	src: url('./fonts/saira/SairaExtraCondensed-ExtraBold.woff') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-display: swap;
	font-weight: 400;
	src: url('./fonts/poppins/files/poppins-latin-400-normal.woff2') format('woff2'), url('./fonts/poppins/files/poppins-latin-400-normal.woff2') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-display: swap;
	font-weight: 500;
	src: url('./fonts/poppins/files/poppins-latin-500-normal.woff2') format('woff2'), url('./fonts/poppins/files/poppins-latin-500-normal.woff2') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-display: swap;
	font-weight: 600;
	src: url('./fonts/poppins/files/poppins-latin-600-normal.woff2') format('woff2'), url('./fonts/poppins/files/poppins-latin-600-normal.woff2') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-display: swap;
	font-weight: 700;
	src: url('./fonts/poppins/files/poppins-latin-700-normal.woff2') format('woff2'), url('./fonts/poppins/files/poppins-latin-700-normal.woff') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-display: swap;
	font-weight: 800;
	src: url('./fonts/poppins/files/poppins-latin-800-normal.woff2') format('woff2'), url('./fonts/poppins/files/poppins-latin-800-normal.woff') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-display: swap;
	font-weight: 900;
	src: url('./fonts/poppins/files/poppins-latin-900-normal.woff2') format('woff2'), url('./fonts/poppins/files/poppins-latin-900-normal.woff') format('woff');
}

/*------------------------------------*\
    WPBakery Overrides
\*------------------------------------*/
.wpb_wrapper>h2:first-child,
.wpb_wrapper>p:first-child,
.wpb_wrapper>*:first-child {
	margin-top: 0;
}

body .vc_separator {
	margin-top: 2rem;
	overflow: hidden;
}

body .vc_separator h4 {
	font-size: 0;
	color: var(--body);
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	overflow: hidden
}

body .vc_toggle {
	display: block;
	margin: 0 0 0.5rem;
	padding: 0;
	font-size: inherit;
}

body .vc_toggle_title>h4 {
	font-size: 1.625rem;
	font-weight: 600;
	margin-bottom: 0;
	padding-bottom: 0;
	text-transform: unset;
	overflow: hidden;
	line-height: 1.2;
}

body .vc_toggle_content>p {
	margin-top: 0;
	overflow: hidden
}

html {
	scroll-behavior: smooth;
}

body main {
	overflow-x: hidden;
}

/*------------------------------------*\
    VARS
\*------------------------------------*/

:root {
	/* Color Variables */
	--white: #FFF;
	--body: #1F1F1F;
	--dark-blue: #041E3B;
	--yellow: #FFDC1C;
	--yellow-mid: #FCE14F;
	--yellow-darker: #f0cd01;
	--yellow-light: #FDF15E;
	--yellow-lightest: #FCE776;
	--green: #0D900D;
	--green-dk: #0B770B;
	--green-dark: #097909;
	--green-mid: #37A437;
	--green-light: #47D147;
	--green-lighter: #54D654;
	--green-lightest: #EAF8EA;
	--green-foam: #94EF94;
	--midnight: #041E3B;
	--dark-blue: #134277;
	--blue: #1C4B80;
	--blue-lighter: #2C5E96;
	--blue-lightest: #6182a9;
	--blue-light: #EAEFF5;
	/* Font Variables */
	--saira-extrabold: Saira ExtraCondensed ExtraBold, sans-serif;
	--body-font: 'Poppins', sans-serif;
	--poppins-semibold: 'Poppins', sans-serif;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smooth: always;
	text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
	font-size: 1rem;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	right: 0;
	width: 10px;
	height: 100%;
	background: red;
	pointer-events: none;
	display: none;
	z-index: 9999;
}

body.has-overflow::after {
	display: block;
}

body {
	font: 400 1rem/1.5 var(--body-font);
	color: var(--body);
	font-weight: 400;
	overflow-x: visible;
	antialiased: true;
	-moz-osx-font-smoothing: grayscale;
	font-smooth: always;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1;
}

/* clear */
.clear:before,
.clear:after {
	content: ' ';
	display: table;
}

.clear:after {
	clear: both;
}

.clear {
	*zoom: 1;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

main {
	font-size: 1.125rem;
}

main a:link {
	color: var(--green-dk);
	text-decoration: none;
}

main a:hover {
	color: var(--green);
}

main .blue-fade a:link {
	color: var(--green-light);
	text-decoration: none;
}

main .blue-fade a:hover {
	color: var(--green);
}

main a:focus {
	outline: 0;
}

main a:hover,
main a:active {
	outline: 0;
}

main a.btn:link,
main a.btn,
main .btn {
	color: var(--body) !important;
	text-decoration: none;
}

main a.btn:hover {
	color: var(--black);
}

main a.btn:focus {
	outline: 0;
}

main a.btn:hover,
main a.btn:active {
	outline: 0;
}

input:focus {
	outline: 0;
	border: 1px solid var(--green-foam);
}

main a:-webkit-any-link {
	color: var(--green-dk);
	text-decoration: none;
	cursor: pointer;
	text-decoration: none;
}

main a:-webkit-any-link:hover,
main a:-webkit-any-link:focus {
	color: var(--green);
	text-decoration: underline;
}

main a.btn {
	color: var(--body);
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width: 1280px;
	width: 95%;
	margin: 0 auto;
	position: relative;
}

/* header */
.header {
	background: linear-gradient(to bottom, var(--green-dark), var(--green-mid));
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
}

.nav a {
	position: relative;
}

.nav .menu-item-has-children>a::after {
	content: '\2303';
	display: inline-block;
	font-weight: 600;
	width: 10px;
	height: 3px;
	position: absolute;
	right: 104%;
	bottom: 0;
	transform: translate(0, -50%) rotate(180deg);
}

.mobile-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-toggle {
	margin: auto 0.675rem auto 1rem;
	width: 37px;
	height: 32px;
}

.login-img {
	margin: auto 0.rem;
	width: 56px;
	height: 52px;
}

.sidebar {}

.sidebar .search,
.wp-block-search__inside-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	font-size: 1.1rem;
	line-height: 1.2;
}

.sidebar .search .search-input,
.sidebar input .wp-block-search__input {
	margin: 1rem 0;
	width: 66%;
	padding: 1.25rem;
	box-sizing: border-box;
	background: #f9f9f9;
	border: none;
	box-shadow: inset 0 0 0 0.1rem rgba(0, 0, 0, 0.1)
}

.sidebar .search .search-submit {
	margin: 1rem 0;
	width: 33%;
	padding: 1.25rem;
	box-sizing: border-box;
	background: var(--green);
	color: white;
	border: none;
	font-weight: 600;
	transition: background 0.3s ease-in-out;
	cursor: pointer;
}

.sidebar .search .search-submit:hover,
.sidebar .search .search-submit:focus {
	background: var(--green-dk);
}


.footer {
	margin: 0 auto;
	background: var(--midnight);
	color: var(--white);
	padding: 1rem 0;
}

.footer a {
	color: var(--white);
	text-decoration: none;
}

.footer-cta {
	background: linear-gradient(to bottom, var(--midnight), var(--blue-lighter));
}

.footer-cta .wrapper {
	display: block;
	max-width: none;
	float: none;
	margin: 0 auto;
	padding: 0 1rem 2.9rem;
	width: 100%;
	height: auto;
}

.footer-cta h3 {
	text-align: center;
	font-size: 4.188rem;
	line-height: 0.9;
	color: var(--green-lighter);
	font-family: var(--saira-extrabold);
	font-weight: 400;
	margin: 0 auto;
	padding: 3.8rem 0 1rem;
	text-transform: uppercase;
	flex-direction: column;
}

.footer-cta .btn {
	display: block;
	text-align: center;
	max-width: fit-content;
	margin: 0.25rem auto 1rem;
	font-size: 1.688rem;
}

img.logo-footer {
	max-width: 236px;
	margin: 1rem auto 0;
	width: 100%;
	display: block;
}

.footer {
	font-size: 0.875rem;
}

.footer-phone a {
	font-size: 2.125rem;
	line-height: 1;
	font-weight: 700;
	text-decoration: none;
	margin: 1rem auto 0;
	padding: 0;
	display: block;
}

.footer-container {
	display: block;
	padding: 1rem ; 
}

.footer-text {
	text-align: center;
	margin-bottom: 0.5rem;
}

.site-credit {
	padding: 1rem;
	margin: auto;
	text-align: center;
}

.site-credit a {
	font-size: 0.625rem;
	color: var(--blue-lightest);
}

.footer-copyright span {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 0.5rem 0;
	text-align: center;
}

.footer-cta .footer-logo {
	display: block;
	float: none;
	margin: auto auto;
	width: 100%;
	height: auto;
	max-width: 220px;
}

ul#menu-footer-menu li {
	padding: 0 0.3rem;
}

.footer-cta .footer-text {
	display: flex;
	max-width: none;
	float: none;
	margin: auto auto;
	width: 100%;
	height: auto;
	font-size: 1rem;
}

.footer-social {
	display: none;
}

.footer-social img {
	float: none;
	display: inline-block;
	margin: 0 0.5rem;
}

.footer-social-mobile {
	margin: 0.75rem auto 1rem;
}

.footer-social-mobile img {
	margin: auto 0.25rem;
}

ul#menu-footer-menu {
	list-style-type: none;
	margin-block-end: unset;
	margin-block-start: unset;
	margin-inline-end: unset;
	margin-inline-start: unset;
	padding-inline-start: unset;
}

ul#menu-footer-menu li {
	display: inline-block;
}

ul#menu-footer-menu li a {
	text-decoration: none;
}

.footer-text,
.footer-nav,
.footer-phone {
	display: block;
	font-size: 0.875rem;
}

.footer-copyright {
	display: block;
	padding: 0;
}

.footer-copyright p {
	padding: 0.25rem 0 0;
	margin: 0;
}

.footer-copyright a {
	text-decoration: none;
	padding-left: 1rem;
}

.footer-social {
	display: none;
}

.footer-social img {
	width: 50px;
	height: 50px;
	margin: auto 0.25rem;
}

a.btn,
.btn,
input[type="submit"] {
	display: inline-block;
	background: var(--yellow);
	color: var(--body);
	font-size: 1.188rem;
	font-weight: 700;
	padding: 0.675rem 1.6rem;
	border-radius: 4px;
	margin: 1rem 0;
	clear: both;
	border: none;
	transition: background 0.3s ease-in-out;
}

.btn:hover,
a.btn:hover,
.btn:focus,
a.btn:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: var(--yellow-darker);
	color: var(--body) !important;
	text-decoration: none !important;
}

/*------------------------------------*\
PAGES
\*------------------------------------*/
.menu-title {
	display: none;
}

.page-header {
	display: block;
	position: relative;
	width: 100%;
	margin: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.dots-bg {
	background-image: url('./img/map-dots.svg');
	background-size: 220%;
	background-repeat: repeat;
	background-position: 30% 80%;
}

.header-overlay {
	width: 100%;
	height: 100%;
	background: rgba(7, 57, 7, 0.84);
	background-position: center;
	background-size: cover;
}

.page-header-inner {
	display: block;
	width: 100%;
	height: auto;
}

.home .page-header {
	padding: 0;
}

.home .page-header-inner {
	background-image: none !important;
}

.header-text {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 3rem 0.75rem;
	margin: 0 auto;
	z-index: 1;
}

.home .header-text {
	max-width: 70rem;
}

.header-text h1 {
	display: block;
	max-width: none;
	text-align: center;
	color: var(--white);
	margin: auto auto 0.25rem;
	font-size: 3.438rem;
	padding: 0 1rem;
	text-transform: uppercase;
	font-weight: 400;
	font-family: var(--saira-extrabold);
	line-height: 0.925;
	text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}

.subhead p {
	display: block;
	font-size: 1.3rem;
	line-height: 1;
	letter-spacing: -0.01rem;
	margin: auto;
	text-align: center;
	font-family: var(--poppins-semibold);
	color: var(--yellow);
	font-weight: 600;
}

.blue-fade {
	padding: 0 0 1.75rem;
}

.blue-fade .wpb_wrapper p {
	color: var(--white);
}

.blue-fade .wpb_wrapper p a {
	color: var(--green-lighter);
}

.blue-fade .wrapper-md {
	display: block;
	max-width: 985px;
	margin: auto auto;
	padding: 0.75rem 1.5rem;
}

.blue-fade .wpb_wrapper .vc_figure {
	display: block;
}

.blue-fade .blue-fade-col-text h3 {
	color: var(--yellow-lightest);
	font-size: 1.875rem;
	line-height: 1;
	font-weight: 600;
	margin: 0 auto;
	padding: 1.2rem 0 0.4rem;
	text-transform: capitalize;
}

.blue-fade .blue-fade-col-text p {
	color: var(--white);
	font-size: 1rem;
	line-height: 1.4;
	margin: 0 auto;
	padding: 0.25rem 0 1.1rem;
}

.blue-fade a:link {
	color: var(--green-light);
	text-decoration: none;
}

.blue-fade a:hover {
	color: var(--green-lighter);
	text-decoration: underline;
}

.home .blue-fade .vc_row.wpb_row.vc_inner.vc_row-fluid {
	margin-left: auto;
	margin-right: auto;
	max-width: fit-content;
}

.home .wpb_text_column:last-child,
.home .wpb_text_column p:last-child {
	margin: auto auto;
}

.blue-fade .vc_row.wpb_row.vc_inner.vc_row-fluid {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
}

.blue-fade .wpb_content_element {
	margin: 0 auto;
}

.blue-fade-col-text {
	padding: 0;
}

.green-map-cta-text {
	background-image: url('./img/map-dots-opacity-06.svg');
	background-position: 88% 60%;
	background-size: 175%;
	background-color: var(--green);
	background-repeat: no-repeat;
	width: 100%;
	height: auto;
}

.green-map-cta .wpb_content_element {
	margin-bottom: 0;
}

.green-map-cta-text-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-self: center;
	color: var(--white);
	padding: 1rem 0 2.5rem;
	margin: auto;
	width: 100%;
	height: auto;
	max-width: 650px;
	text-align: center;
}

.green-map-cta-text-inner h2 {
	color: var(--yellow);
	font-family: var(--saira-extrabold);
	font-weight: 400;
	font-size: 2.313rem;
	line-height: 1;
	text-transform: uppercase;
	margin: 0;
	padding: 1rem 0;
}

.green-map-cta-text-inner h3 {
	margin: 0;
	padding: 0 0.5rem;
	;
	font-size: 1.5rem;
}

.green-map-cta-text p {
	margin: 0 0.75rem 1.25rem;
}

.green-map-cta-text {
	background-image: url('./img/map-dots-opacity-06.svg');
	background-position: 88% 60%;
	background-size: 175%;
	background-color: var(--green-dk);
	background-repeat: no-repeat;
	width: 100%;
	height: auto;
}

.light-green-map-cta .wpb_content_element {
	margin-bottom: 0;
}

.light-green-map-cta-text {
	background-image: url('./img/map-dots-opacity-55.svg');
	background-position: 30% 74%;
	background-size: 330%;
	background-color: var(--green-lightest);
	background-repeat: no-repeat;
	width: 100%;
	height: auto;
	padding: 0 0 1rem;
}

.light-green-map-cta-text-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-self: center;
	color: #000;
	padding: 1rem;
	margin: auto auto;
	width: 100%;
	height: auto;
	max-width: 800px;
}

.light-green-map-cta-text-inner h2 {
	color: var(--green-mid);
	font-family: var(--saira-extrabold);
	font-weight: 400;
	font-size: 2.313rem;
	line-height: 1;
	text-transform: uppercase;
	margin: 0;
	padding: 0.75rem 0 0;
}

.light-green-map-cta-text-inner h3 {
	margin: 0;
	padding: 0;
	font-size: 1.5rem;
}

.light-green-map-cta-text ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: 100%;
	max-height: auto;
	padding: 0;
	list-style-type: none;
	margin: auto auto;
	color: var(--body);
}

.light-green-map-cta-text li {
	display: flex;
	flex-direction: column;
	margin: 0.125rem 0;
	min-width: auto;
	word-wrap: break-word;
	box-sizing: border-box;
	font-size: 1.125rem;
	padding: 0 30px;
	text-align: left;
	background: url('./img/blue-checkmark.svg') no-repeat left center;
	background-size: 17px;
}

.light-green-map-cta-text-inner .btn {
	display: block;
	float: none;
	text-align: center;
	margin: 0 0 auto;
	width: 100%;
	height: auto;
	max-width: 12rem;
}

.light-green-map-cta-text .flex-container {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0.75rem auto;
}

.light-green-map-cta-text .btn,
.green-map-cta-text .btn {
	margin: 0 auto;
}

.light-green-map-cta-text p {
	padding: 0;
	margin: 0;
	margin-block-start: initial;
	margin-block-end: initial;
	margin-inline-start: initial;
	margin-inline-end: initial;
}

#icon-grid .vc_column-inner {
	padding: 0 0 1rem;
	margin-bottom: 1rem;
}

#icon-grid.vc_row {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	padding: 0;
}

#icon-grid .wpb_button,
#icon-grid .wpb_content_element,
#icon-grid ul.wpb_thumbnails-fluid>li {
	margin-bottom: 0.25rem;
}

#icon-grid .wpb_wrapper>.wpb_text_column {
	width: 100%;
	text-align: center;
}

#icon-grid h2 {
	font-size: 2.25rem;
	letter-spacing: -0.02rem;
	line-height: 0.9;
	font-family: var(--saira-extrabold);
	font-weight: 400;
	color: var(--green-mid);
	text-transform: uppercase;
	margin: auto;
	padding: 2.5rem 0 1.75rem;
}

#icon-grid #headline-duo h2 {
	padding: 2.5rem 0 0;
	margin: 0 auto;
}

#icon-grid #headline-duo h3 {
	padding: 0.4rem 0 3rem;
}

#icon-grid .icon-grid-inner {
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: auto auto;
}

#icon-grid-inner-tri,
.icon-grid-inner {
	display: flex;
	text-align: center;
	flex-wrap: wrap;
	width: 50%;
	margin: auto auto;
}

#icon-grid .vc_row.vc_row-flex {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
}

.icon-grid-inner .vc_column_container.vc_col-sm-3,
.icon-grid-inner .vc_column_container.vc_col-sm-4 {
	width: 50%;
	box-sizing: border-box;
}

#icon-grid img {
	width: 100%;
	height: auto;
	max-height: 3rem;
	margin: auto auto 0.25rem;
	display: block;
}

#icon-grid p {
	font-weight: 600;
	line-height: 1;
	font-size: 1.25rem;
	padding-bottom: 1.5rem;
	text-align: center;
	overflow: visible;
}

.icon-grid-inner {
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	margin: auto 1rem;
}

.icon-grid-inner {
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	margin: auto 1rem;
}

.home #icon-grid img:nth-child(8) {
	max-width: 120px;
	margin: auto auto 0.25rem;
	display: block;
}

#text-img-grid p {
	margin: 0;
	padding: 0 0 1rem;
}

#text-img-grid a.btn {
	color: var(--body) !important;
	margin: 0 0 0.25rem;
}

#text-img-grid .vc_column_container>.vc_column-inner,
#icon-grid .vc_column_container>.vc_column-inner {
	padding: 0;
}

#text-img-grid .wpb_button,
#text-img-grid .wpb_content_element,
#text-img-grid ul.wpb_thumbnails-fluid>li {
	margin-bottom: 0;
}

#icon-grid p {
	padding: 0 1rem;
	margin-bottom: 1rem;
}

#text-img-grid h2 {
	color: var(--green-mid);
	padding: 0;
	margin: 0;
}

#lt-blue-bg {
	background: var(--blue-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

#wrapper-md {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1100px;
	margin: auto auto;
	padding: 2rem 0;
}

#lt-blue-bg img {
	max-width: 100%;
	height: auto;
	padding: 1rem;
}

#lt-blue-bg #wrapper-md h2 {
	color: var(--green);
	margin: 0;
	padding: 0;
	font-size: 2rem;
}

#lt-blue-bg p {
	font-size: 1.125rem;
	padding-left: 0;
	padding-right: 0;
	margin: 0;
}

#intro-text .vc_column_container>.vc_column-inner {
	padding: 0;
	overflow: hidden;
}

#intro-text .phone-cta {
	color: var(--green);
	font-size: 2.375rem;
	font-weight: 600;
	text-align: center;
	margin: 0 auto 2rem;
	padding: 0 1rem;
	position: relative;
	padding-left: 35px;
}

#intro-text .phone-cta::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 36px;
	background-image: url('./img/mobile-phone.svg');
	background-size: contain;
	background-repeat: no-repeat;
}

#tribox {
	margin: auto auto 2rem;
}

#tribox .wpb_wrapper {
	background-color: #EAF8EA;
}

#tribox .last .wpb_wrapper {
	background-color: #FFFADD;
}

#tribox .wpb_wrapper h2 {
	margin: 0 auto;
	color: var(--green);
	font-weight: 700;
}

#tribox .wpb_wrapper p {
	margin: 0.4rem auto;
	padding: 0.25rem 0.2rem;
}

#tribox .wpb_wrapper .btn {
	margin: 1rem auto 2.25rem;
}

#locations {
	background-color: var(--blue-light);
	margin: 3rem auto;
	padding: 3rem 1rem;
}

#locations h2 {
	margin: 0;
	padding: 0 0 1rem;
	color: var(--green);
}

#locations #locations-inner {
	max-width: 1100px;
	margin: auto auto;
	line-height: 1.5;
}

#locations #locations-inner .wpb_content_element {
	margin: 2rem auto;
}

#locations #locations-inner address span {
	display: block;
	width: 100%;
	line-height: 1.6;
}

#locations .location-item {
	margin: auto auto 1.5rem;
}

#locations .location-item h3 {
	margin: 0 auto;
	padding: 0;
}

#locations .location-item p {
	padding: 0.5rem 0;
	margin: auto auto;
}

#locations .location-item address {
	font-style: normal;
}

#locations .location-item a {
	color: var(--green);
	display: block;
	width: 100%;
}

.location-item .address-links a {
	padding-bottom: 1.2rem;
}

.gform_wrapper {
	max-width: 950px;
	display: block;
	margin: auto auto;
}

body .gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_blue {
    background-color: var(--green);
    color: #fff
}

body input.gform_next_button.gform-theme-button.button,
body .gform_previous_button.gform-theme-button.gform-theme-button--secondary.button {
    background: var(--yellow);
    border: none;
    border-radius: 4px;
    clear: both;
    color: var(--body);
    display: inline-block;
    font-size: 1.188rem;
    font-weight: 700;
    margin: 1rem 0;
    padding: .675rem 1.6rem;
    transition: background .3s ease-in-out;
	cursor: pointer;
}

body input.gform_next_button.gform-theme-button.button:hover,
body input.gform_next_button.gform-theme-button.button:focus,
body .gform_previous_button.gform-theme-button.gform-theme-button--secondary.button:hover,
body .gform_previous_button.gform-theme-button.gform-theme-button--secondary.button:focus {
    background: var(--yellow-darker);
}

.gform_heading {
	text-align: center;
	padding: 0 1rem 3rem;
}

.gform_heading .gform_title {
	color: var(--green);
	font-family: var(--saira-extrabold);
	font-weight: 400;
	font-size: 4rem;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
}

.gform_heading .gform_description {
	font-size: 1.2rem;
	margin: 0;
	padding: 0;
}

.gfield_radio {
	display: flex;
	flex-direction: row;
}

.gfield_radio .gchoice {
	margin-right: 1rem;
}

#service-area-map {
	width: 100%;
	height: 480px;
	background: #fff;
	border: solid 2px #fff;
	margin: 0 auto;
}

#service-area-map .gm-style .gm-style-iw {
	font-size: 15px;
	padding: 15px;
}

.request-quote main article p:first-child {
	margin: 4rem auto;
}

/*------------------------------------*\
	HOME
\*------------------------------------*/

.home #intro-text,
#intro-text {
	width: fit-content;
	height: auto;
	display: block;
	float: none;
	max-width: 64rem;
	margin: auto auto;
	padding: 2rem 0.25rem 0;
	line-height: 1.5;
	text-align: center;
	overflow-x: hidden;
}

#intro-text {
	width: fit-content;
	height: auto;
	display: block;
	float: none;
	max-width: 64rem;
	margin: auto auto;
	padding: 3rem 0 0;
	line-height: 1.5;
	overflow-x: hidden;
}

.home #intro-text p {
	padding: 0 0 1.5rem;
	width: 100%;
	margin: 0 auto;
}

.home-intro-cta {
	justify-content: center;
	align-items: center;
	max-width: 55rem;
	margin: auto auto;
}

.home-intro-cta {
	display: flex;
	flex-wrap: wrap;
	gap: none;
	width: 100%;
	height: auto;
}

#home-cols {
	text-align: center;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#home-cols .vc_column_container>.vc_column-inner {
	text-align: center;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#home-cols h2 {
	text-align: center;
	margin: 0 auto;
	padding: 0 1rem 1.25rem;
	color: var(--green-mid);
	text-transform: capitalize;
	font-size: 1.5rem;
	font-weight: 700;
}

.home-intro-cta {
	display: block;
	flex-direction: column;
}

.home-img-cols {
	flex: 1;
	background-color: var(--green-lightest);
	padding: 0 0 2rem;
	margin: auto 0.5rem 1rem;
}

.home-img-cols .btn {
	margin: 0.4rem auto auto;
	max-width: fit-content;
	display: block;
	text-align: center;
}

.home-img-cols h3 {
	margin: 1.5rem auto 0;
	padding: 0.25rem;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 1;
	color: var(--green);
}

.home-img-cols p {
	padding: 0.6rem 1rem;
	margin: 0 auto;
}

.triangle-img {
	position: relative;
	display: block;
	max-width: 100%;
	height: auto;
}

.triangle-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 30px;
	background: url('./img/white-triangle.svg') no-repeat;
	background-size: contain;
}

.home .blue-fade {
	margin: 1rem auto;
	padding: 0 0 0.25rem;
	color: var(--white);
	background: linear-gradient(to bottom, var(--midnight), var(--dark-blue));
}

.home .blue-fade .vc_row {
	margin-left: auto;
	margin-right: auto;
}

.home .blue-fade .light-green-header {
	color: var(--green-light);
	font-size: 1.75rem;
	font-weight: 600;
	margin: 0;
	padding: 2.5rem 1rem 1rem;
	line-height: 1;
}

.home .blue-fade h2 {
	font-size: 3.625rem;
	margin: 0 auto;
	color: var(--yellow-mid);
	font-family: var(--saira-extrabold);
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1;
	padding: 0 1rem 1rem;
	display: block;
	width: 100%;
	height: auto;
}

.home .blue-fade h3 {
	margin-block-end: 0;
	margin-block-start: 0;
	color: var(--yellow-lightest);
	font-size: 1.75rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
	text-transform: capitalize;
}

.home .blue-fade p {
	margin: 0 auto 0.75rem;
	padding: 0 1rem;
	font-size: 1rem;
}

.home .blue-fade a.btn {
	margin: 0 auto 2rem;
}

.home .blue-fade img {
	max-width: 120px;
	height: auto;
	margin: auto auto;
}

.home .wpb_content_element {
	margin-bottom: 0;
}

.home-full-width-cols .wpb_column.vc_column_container.vc_col-sm-6:nth-child(1) {
	order: 1;
}

#col-wide .wpb_single_image .vc_figure {
	display: block;
	vertical-align: top;
	margin: 0;
	max-width: 100%;
}

.inset-img .vc_single_image-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	padding: 0;
}

.blue-fade h2 {
	font-size: 3.625rem;
	margin: 0 auto;
	color: var(--yellow);
	font-family: var(--saira-extrabold);
	font-weight: 400;
	text-transform: uppercase;
	line-height: 0.9;
	padding: 2.75rem 0 0.5rem;
	display: block;
	width: 100%;
	height: auto;
}

.blue-fade h3 {
	color: var(--green-lighter);
	font-size: 1.875rem;
	font-weight: 600;
	margin: 0 auto;
	padding: 0;
	text-transform: capitalize;
}

.blue-fade hr.hr-blue {
	margin: 1.25rem auto 1.5rem !important;
}

.blue-fade a:link {
	color: var(--green-light);
	text-decoration: none;
}

.blue-fade a:hover {
	text-decoration: underline;
}

hr.hr-blue {
	display: block;
	width: 100%;
	height: auto;
	text-align: center;
	border: 0;
	height: 3px;
	background: var(--blue);
	max-width: 11.25rem;
}

#yellow-rule {
	margin: 2rem auto;
}

#yellow-rule .wpb_text_column.wpb_content_element {
	margin: 0;
}

hr.hr-yellow {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	text-align: center;
	border: 0;
	height: 3px;
	background: var(--yellow);
	max-width: 11.25rem;
	margin: 2rem auto;
}

.light-blue {
	background-color: var(--blue-light);
}

#faq {
	padding: 3rem 0;
}

#faq h2 {
	text-align: center;
}

#faq .wrapper {
	max-width: 788px;
	margin: auto auto;
}

#faq .vc_toggle {
	margin-bottom: 2rem;
}

#faq .vc_toggle_content {
	display: none;
	margin-bottom: 0;
	margin-top: 0;
	overflow: hidden;
	padding: 1rem 0 0 1.5rem;
}

/*------------------------------------*\
	PAGES
\*------------------------------------*/

.blue-fade {
	background: url('./img/blue-fade-map-dots.svg'), linear-gradient(to bottom, var(--midnight), var(--dark-blue));
	background-size: 66%;
	background-position: 105% 10%;
	mix-blend-mode: multiply;
}

.light-green-header {
	color: var(--green-light);
}

.blue-fade div.vc_row.wpb_row.vc_inner.vc_row-fluid.wrapper {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#text-img-grid {
	margin: auto auto;
	padding: 1.5rem 0;
}

#text-img-grid h2 {
	color: var(--green-mid);
	font-size: 1.675rem;
	letter-spacing: -0.04rem;
	padding: 0 0 0.5rem;
	font-weight: 600;
	margin-block-end: 0;
}

#text-img-grid a:link {
	color: var(--green-mid)
}

.industries .icon-grid-inner {
	max-width: 800px;
	margin: auto auto;
}

#light-green-cols {
	background: var(--green-lightest);
	padding: 4rem 0;
	margin: auto auto 2rem;
}

#light-green-cols-inner {
	max-width: 1280px;
	margin: auto auto;
}

#light-green-cols-inner h2 {
	margin: 0.75rem auto 0.25rem;
	padding: 0;
	color: var(--green-mid);
}

#light-green-cols-inner p {
	margin: 0 auto;
	padding: 0 1rem 2rem;
}

#light-green-cols-inner .wpb_content_element {
	margin-bottom: auto;
}

#post-404 .search-input,
#results-none .search-input {
	width: 65%;
	display: inline-block;
	font-size: 18px;
	padding: 2%;
}

#post-404 .search-form {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#post-404 .search-submit,
#results-none .search-submit {
	width: 25%;
	padding: 2%;
	font-size: 1.3rem;
	font-weight: 700;
	background-color: var(--green);
	color: var(--white);
	border: none;
	border-radius: 3px;
	text-align: center;
	align-items: center;
}

article#post-404 {
	text-align: center;
}

article#post-404 p {
	font-size: 1.25rem;
	margin: auto;
	padding: 1.5rem;
}

.post-wrapper {
	display: grid;
	grid-template-columns: 66% 34%;
	gap: 20px;
	margin: 1.5rem auto;
}

.post-wrapper {
	display: grid;
	grid-template-columns: 66% 34%;
	gap: 20px;
	margin: 1.5rem auto;
}

.archive-wrap {
	display: grid;
	grid-template-columns: 1fr;
	margin: 3rem auto 1.5rem;
}

.post-flex-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 1.2rem;
}

.post-flex-container .post-thumbnail {
	flex: 0 0 25%;
	max-width: 25%;
}

.post-flex-container .post-content {
	flex: 1;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
}

.post-wrapper .attachment-post-featured-xl {
	margin: 0.9rem auto
}

.post-content h2 {
	font-size: 1.675rem;
}

.post-wrapper .sidebar {
	/* Additional styling for the sidebar */
}

/*------------------------------------*\
    PAGINATION
\*------------------------------------*/
.pagination {
	text-align: center;
	margin: 2.5rem auto;
}

.pagination .page-numbers {
	padding: 4px 9px;
	border: solid 1px #d9d9d9;
	font-size: 1.1rem;
}

.pagination .page-numbers.dots {
	border: none;
}

.pagination .page-numbers.current {
	background: #f6f6f6;
	border-color: #e6e6e6;
}

/*------------------------------------*\
    COOKIES NOTIFICATION
\*------------------------------------*/
section.cookies {
	position: relative;
	z-index: 99;
}

section.cookies #cookieConsent {
	display: none;
	position: fixed;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.75);
	color: #ffffff;
	font-size: 14px;
	line-height: 1;
	padding: 15px 35px 20px 25px;
	border-radius: 5px 0 0 0;
}

section.cookies #cookieConsent p {
	margin: 0;
	line-height: 1.2;
}

section.cookies #cookieConsent svg {
	fill: #fff;
	max-width: 15px;
	max-height: 15px;
	margin-left: 5px;
}

#cookieConsent .accept {
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 10px;
}

section.cookies #cookieConsent a {
	color: #fff;
}

section.cookies #cookieConsent a:hover {
	color: rgba(255, 255, 255, 0.5);
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/

.responsive {
	width: 100%;
	height: auto;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:320px) {}

@media (min-width:400px) and (max-width:600px) {
	.light-green-map-cta-text ul {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		width: 100%;
		max-height: 175px;
		padding: 0;
		list-style-type: none;
		margin: auto auto;
		color: var(--body);
	}
}

@media only screen and (min-width:768px) {
	.hidden-sm {
		display: none;
	}
}

@media only screen and (max-width:768px) {
	.post-flex-container {
		flex-direction: column;
	}

	.post-flex-container .post-thumbnail,
	.post-flex-container .post-content {
		flex: 1 1 auto;
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.home-img-cols>div {
		flex: 0 0 100%;
	}
}

@media (max-width:768px) {
	.map-dots {
		display: none;
	}

	.header-text h1 {
		padding: 0 1rem;
	}

	.subhead p {
		font-size: 1.4rem;
	}

	.light-green-map-cta-text {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}

	.light-green-map-cta-text h2 {
		text-align: center;
	}

	#lt-blue-bg .wpb_column.vc_column_container.vc_col-sm-5 {
		order: 1;
	}

	#lt-blue-bg .wpb_column.vc_column_container.vc_col-sm-7 {
		order: 2;
	}

	#lt-blue-bg img {
		max-width: 75%;
		height: auto;
		margin: 2rem auto 0;
	}
	.single main .wrapper {
		grid-template-columns: 1fr;
	}
}

@media (min-width:768px) {
	.page-header {
		display: block;
		position: relative;
		width: 100%;
		margin: auto;
		padding: 0;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		overflow: hidden;
	}

	.dots-bg {
		background-image: url('./img/map-dots-opacity-33.svg');
		background-size: 110%;
		background-repeat: repeat;
		background-position: 30% 80%;
	}

	.home .dots-bg {
		background-image: none;
	}

	.header-overlay {
		background: rgba(7, 57, 7, 0.84);
		background-position: center;
		background-size: cover;
	}

	.page-header-inner {
		display: block;
		width: 100%;
		height: auto;
	}

	.home .page-header {
		padding: 0;
	}

	.home .page-header-inner {
		background-image: none !important;
	}

	.header-text {
		width: 100%;
		max-width: 80rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0 1rem;
		margin: auto;
		z-index: 1;
	}

	.header-text {
		padding: 6.7rem 1rem;
	}

	.home .header-text {
		max-width: 70rem;
		padding: 7.675rem 1rem;
	}

	.header-text h1 {
		padding: 0 1rem;
		margin: auto;
		font-size: 6.813rem;
	}

	.subhead p {
		display: block;
		font-size: 1.75rem;
		line-height: 1;
		padding: 0.675rem 0.5rem 0;
		letter-spacing: -0.01rem;
		margin: auto;
		text-align: center;
		font-family: var(--poppins-semibold);
		color: var(--yellow);
		font-weight: 600;
	}

	.map-dots {
		position: absolute;
		top: -45rem;
		left: 0;
		width: 500%;
		transition: transform 1.25s;
		mix-blend-mode: overlay;
		opacity: 0.5;
	}

	.home-intro-cta {
		display: flex;
		flex-direction: row;
		padding: 0 1rem 2rem;
	}

	.home #intro-text {
		width: fit-content;
		height: auto;
		display: block;
		float: none;
		max-width: 65rem;
		margin: auto auto;
		padding: 4rem 0 0;
		line-height: 1.5;
		text-align: center;
		overflow-x: hidden;
	}

	.home-intro-cta {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		width: 100%;
		height: auto;
	}

	#home-cols h2 {
		padding: 0.5rem 1rem 2rem;
		color: var(--green)
	}

	.home #icon-grid {
		padding-bottom: 3rem;
	}

	.home-full-width-cols .wpb_column.vc_column_container.vc_col-sm-6:nth-child(2) {
		order: 2;
	}

	.blue-fade-col-text {
		padding: 0 3.125rem;
	}

	.home .blue-fade {
		margin: 2.75rem auto;
		padding: 0 0 3.5rem;
	}

	.home .blue-fade .light-green-header {
		color: var(--green-light);
		font-size: 2rem;
		font-weight: 500;
		margin: 0;
		padding: 4.25rem 1rem 0;
		line-height: 1;
		font-weight: 600;
	}

	.home .blue-fade h2 {
		font-size: 3.625rem;
		margin: 0 auto 1.75rem;
		color: var(--yellow);
		font-family: var(--saira-extrabold);
		font-weight: 400;
		text-transform: uppercase;
		line-height: 0.9;
		padding: 0.5rem;
		display: block;
		width: 100%;
		height: auto;
	}

	.home .blue-fade h3 {
		margin-block-end: 0;
		margin-block-start: 0;
		color: var(--yellow-lightest);
		font-size: 2rem;
		padding: 0.5rem 0 0;
		text-transform: capitalize;
	}

	.home .blue-fade img {
		display: block;
		max-width: 160px;
		margin: auto auto 0.25rem;
	}

	.home .blue-fade p {
		font-size: 1.125rem;
		padding: 0.5rem 1.5rem;
		margin: 0 auto;
	}

	.home .blue-fade .vc_row.wpb_row.vc_inner.vc_row-fluid {
		margin-left: auto;
		margin-right: auto;
		max-width: 1280px;
		padding-bottom: 0.22rem;
	}

	.blue-fade .vc_row.wpb_row.vc_inner.vc_row-fluid {
		padding: 0;
	}

	.blue-fade hr.hr-blue {
		margin: 1.875rem auto 0.25rem !important;
	}

	.blue-fade .blue-fade-col-text p {
		font-size: 1.125rem;
	}

	.blue-fade .vc_row.wpb_row.vc_inner.vc_row-fluid {
		padding: 0 0 3rem;
	}

	.inset-img .vc_single_image-img {
		width: 100%;
		height: auto;
		display: block;
		margin: 0 auto;
		padding: 0;
	}

	#icon-grid-inner-tri {
		max-width: 60rem;
		margin: 1rem auto;
	}

	.green-map-cta-text-inner {
		padding: 1rem;
		margin: auto;
		width: 100%;
		height: auto;
		text-align: left;
	}

	.green-map-cta-text h2 {
		margin: 0;
		padding: 0 0 0.5rem;
		font-size: 2.875rem;
	}

	.green-map-cta-text h3 {
		margin: 0;
		padding: 0;
	}

	.green-map-cta-text p {
		margin: 0;
		padding-bottom: 1rem;
		max-width: 33rem;
	}

	.green-map-cta-text p:last-child {
		margin: 0;
		padding: 0;
	}

	.light-green-map-cta-text h2 {
		font-size: 2.875rem;
		padding: 0;
		margin: 0;
	}

	.light-green-map-cta-text .flex-container {
		display: flex;
		justify-content: space-between;
		flex-wrap: nowrap;
		margin: 1.5rem auto;
	}

	.light-green-map-cta-text .flex-container .col {
		width: 100%;
	}

	.light-green-map-cta-text-inner {
		padding: 0;
		margin: auto;
	}

	.light-green-map-cta-text .flex-container {
		display: flex;
		flex-wrap: wrap;
		margin: 1.5rem auto;
	}

	.light-green-map-cta-text ul {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		width: 100%;
		padding: 0;
		list-style-type: none;
		margin: 0 0 10rem;
		color: var(--body);
		max-height: 150px;
	}

	.light-green-map-cta-text li {
		flex: 1 0 calc(33.3333% - 10px);
		margin: 5px auto;
		min-width: 10rem;
		box-sizing: border-box;
		margin: 0.5rem 0;
		font-size: 1.125rem;
		padding-left: 20px;
		background: url('./img/blue-checkmark.svg') no-repeat left center;
		background-size: 17px;
	}

	.light-green-map-cta-text .btn,
	.green-map-cta-text .btn {
		margin: 0;
	}

	#text-img-grid {
		margin: 3.5rem auto;
		padding: 0;
	}

	#text-img-grid h2 {
		margin: 0 auto;
	}

	#text-img-grid h2 {
		padding: 0 1.25rem 1rem;
	}

	#text-img-grid p {
		margin: 0;
		padding: 0 1.25rem 1rem;
	}

	#text-img-grid a.btn {
		margin: 0;
	}

	#faq {
		margin-top: 2.5rem;
		padding: 0 0 5.5rem;
	}

	#faq h2 {
		font-size: 2.5rem;
		font-weight: 600;
		padding: 5rem 1rem 0.75rem;
	}

	#faq h4 {
		font-size: 1.25rem;
	}

	#text-img-grid h2 {
		padding-bottom: 0.675rem;
	}

	#icon-grid {
		margin: 2rem auto 0;
	}

	#icon-grid .vc_column-inner {
		padding: 0;
		margin-bottom: 0;
	}

	#icon-grid p {
		margin: 0;
		padding: 0;
	}

	#icon-grid-quad {
		max-width: 1050px;
	}

	#icon-grid-tri {
		max-width: 960px;
	}

	#icon-grid h3 {
		font-size: 2rem;
		margin: 0 auto;
		padding: 0;
		font-weight: 600;
		margin-block-start: 0;
	}

	#icon-grid h2 {
		text-align: center;
		font-size: 4.813rem;
		font-family: var(--saira-extrabold);
		font-weight: 400;
		color: var(--green-mid);
		text-transform: uppercase;
		margin: 0 auto 1.75rem;
	}

	.freight-shipping #icon-grid {
		margin: 3rem auto 3.5rem;
	}

	.freight-shipping #icon-grid h2 {
		text-align: center;
		font-size: 4.813rem;
		font-family: var(--saira-extrabold);
		font-weight: 400;
		line-height: 0.9;
		color: var(--green-mid);
		text-transform: uppercase;
		margin: 3rem auto 0;
		padding: 0;
	}

	.freight-shipping #icon-grid h3 {
		text-align: center;
		font-size: 2rem;
		font-weight: 600;
		text-transform: capitalize;
		margin: 0 auto;
		padding: 0.25rem 1rem;
	}

	.freight-shipping #icon-grid hr {
		margin: 2rem auto 2.5rem;
	}

	#icon-grid p {
		font-size: 1.375rem;
		line-height: 1.1;
		font-weight: 600;
		padding: 0 0 2.5rem;
		margin: 0.75rem auto;
		max-width: 10rem;
	}

	#icon-grid p span {
		display: block;
		width: 100%;
	}

	.home .icon-grid-inner {
		max-width: 1050px;
	}

	.icon-grid-inner .vc_column_container.vc_col-sm-3 {
		width: 25%;
	}

	.icon-grid-inner .vc_column_container.vc_col-sm-4 {
		width: 33%;
	}

	#icon-grid img {
		width: 100%;
		height: auto;
		max-height: 100px;
		margin: auto auto 0.25rem;
		display: block;
	}

	.home #icon-grid img:nth-child(8) {
		max-width: none;
		margin: auto auto 0.25rem;
		display: block;
	}

	#icon-grid .wpb_content_element {
		margin: 0 auto;
	}

	.home .blue-fade h2 {
		font-size: 5.58rem;
	}

	.blue-fade h2 {
		font-size: 5.58rem;
		margin: 0 auto;
		color: var(--yellow);
		font-family: var(--saira-extrabold);
		font-weight: 400;
		text-transform: uppercase;
		line-height: 0.9;
		padding: 4rem 1rem 0.4rem;
		display: block;
		width: 100%;
		height: auto;
	}

	.blue-fade h3 {
		color: var(--green-lighter);
		font-size: 2rem;
	}

	.blue-fade p {
		font-size: 1.125rem;
		padding: 0 1rem 1rem;
	}

	.blue-fade .wrapper-md {
		margin: auto auto;
		padding: 0.75rem 1.5rem;
	}

	#wrapper-md {
		display: flex;
		justify-content: center;
		align-items: center;
		max-width: 1100px;
		margin: auto auto;
		padding: 2rem 4rem;
	}

	#lt-blue-bg {
		margin: 1rem auto 2.5rem;
	}

	#lt-blue-bg img {
		max-width: 100%;
		margin: auto auto;
	}

	#lt-blue-bg p {
		font-size: 1.125rem;
		padding: 0 2rem 0 0;
		margin: 0;
	}

	.privacy-policy main {
		padding-top: 3rem;
	}

	.privacy-policy main p:last-of-type {
		padding-bottom: 3rem;
	}

	#light-green-cols-inner p {
		max-width: 325px;
		margin: auto auto;
	}

	.footer-cta .wrapper {
		display: flex;
		align-items: center;
		max-width: none;
		margin: auto;
		padding: 1.5rem 0;
		max-width: 52rem;
	}

	.footer-cta {
		padding: 3.6rem;
	}

	.footer-cta h3 {
		text-align: center;
		font-size: 4.438rem;
		line-height: 0.9;
		color: var(--green-lighter);
		font-family: var(--saira-extrabold);
		font-weight: 400;
		margin: 0 auto;
		padding: 0;
		text-transform: uppercase;
		flex-direction: column;
	}

	.footer-cta .btn {
		color: var(--body) !important;
		text-align: center;
		max-width: none;
		margin: auto auto;
		font-size: 1.688rem;
	}

	.footer-container {
		align-items: center;
		display: flex;
		justify-content: space-between;
		padding: 0.5rem 0 0.25rem;
		text-align: left;
	}

	img.logo-footer {
		max-width: 180px;
		margin: 0 2rem auto 0;
		width: 100%;
	}

	.footer-phone,
	.footer-phone a {
		padding: 0;
		text-align: left;
		font-size: 1.375rem;
		padding: 0;
		margin: 0 0 0.1rem;
	}

	.footer-text {
		height: auto;
	}

	.footer-text,
	.footer-nav,
	.footer-phone {
		font-size: 0.875rem;
		text-align: left;
		line-height: 1;
		align-items: center;
		justify-content: space-between;
	}

	.site-credit {
		font-size: 0.875rem;
		max-width: none;
		padding: 0.125rem 0;
		margin: auto;
		text-align: left;
	}

	.footer-copyright {
		display: flex;
		flex-direction: row;
		width: fit-content;
		margin: 0;
		padding: 0;
		text-align: left;
		justify-content: space-between;
		align-items: center;
	}

	.footer-copyright {
		padding: 0;
		margin: 0.125rem 0;
	}

	.footer-copyright span {
		margin: 0 auto;
		padding: 0;
		text-align: center;
	}

	.footer-left {
		display: flex;
		flex-direction: row;
		text-align: left;
		width: auto;
	}

	ul#menu-footer-menu {
		display: flex;
		margin: 0;
		padding: 0.25rem 0 0;
	}

	ul#menu-footer-menu li {
		padding: 0.25rem 1rem 0.5rem 0;
	}

	.footer-social {
		display: flex;
		justify-content: flex-end;
		width: auto
	}

	.site-credit {
		font-size: 0.875rem;
		margin-top: 0.5rem;
	}

	.footer-social img {
		margin-left: 0.6rem;
	}

	.footer-social-mobile {
		display: none
	}

	.industries .blue-fade {
		padding-bottom: 2rem;
	}

	.industries #icon-grid {
		padding: 1.6rem 0 1rem;
	}
		
}

@media screen and (max-width:1024px) {
	.blue-fade {
		text-align: center;
	}
}

@media screen and (max-width:1024px) {
	.home .map-dots {
		position: absolute;
		top: -900px;
		left: 0;
		width: 900%;
		transition: transform 1.25s;
		mix-blend-mode: overlay;
		opacity: 0.5;
	}
}

@media (min-width:768px) and (max-width:1024px) {

	#full-duo-cols .green-map-cta-text.wpb_column.vc_column_container.vc_col-sm-6.vc_col-lg-6.vc_col-md-6.vc_col-xs-12,
	#full-duo-cols .wpb_column.vc_column_container.vc_col-sm-6.vc_col-lg-6.vc_col-md-6.vc_col-xs-12 {
		display: flex;
		flex-direction: column;
		width: 100%;
		height: auto;
		order: 2;
	}

	#full-duo-cols .wpb_column.vc_column_container.vc_col-sm-6.vc_col-lg-6.vc_col-md-6.vc_col-xs-12:nth-child(2) {
		order: 1;
	}

	#full-duo-cols .light-green-map-cta-text.wpb_column.vc_column_container.vc_col-sm-6.vc_col-lg-6.vc_col-md-6.vc_col-xs-12 {
		order: 2;
		padding: 3rem 0;
		margin: auto;
	}

	#full-duo-cols .green-map-cta-text {
		padding: 3rem 0;
	}

	.footer-cta .wrapper {
		display: block;
		max-width: none;
		margin: auto;
		padding: 3rem 0;
		max-width: none;
	}

	.footer-cta {
		padding: 3.6rem;
	}

	.footer-cta h3 {
		display: block;
		width: 100%;
		height: auto;
		margin: 1rem auto;
	}

	.footer-cta .btn {
		display: block;
		width: fit-content;
		height: auto;
	}
}

@media (max-width:1024px) {
	.logo {
		max-width: 155px;
	}

	.nav,
	.nav-login,
	.menu-title {
		display: none;
	}

	.menu-title {
		display: block;
		margin: 2rem auto 1rem;
		padding-left: 2rem;
		text-transform: uppercase;
		color: var(--green-foam);
	}

	.nav ul {
		display: block;
		list-style-type: none;
		margin-block-start: unset;
		margin-block-end: unset;
		margin-inline-start: unset;
		margin-inline-end: unset;
		padding-inline-start: unset;
		padding-left: 2rem;

	}

	.nav li {
		display: block;
		width: 100%;
		margin-bottom: 0.4rem;
		font-size: 1.5rem;
		text-decoration: none;
	}

	.nav li a {
		color: var(--white);
		text-decoration: none;
	}

	.nav .close-btn {
		position: absolute;
		top: 1rem;
		right: 1rem;
		background-color: transparent;
		border: none;
		cursor: pointer;
		color: var(--white);
	}

	.nav .header-cta a.btn {
		display: block;
		margin: 1.5rem 2rem auto 2rem;
		background: linear-gradient(to bottom, var(--yellow-light), var(--yellow));
		padding: 1rem 1.5rem 0.75rem;
		color: var(--body);
		font-weight: 800;
		font-size: 1.1rem;
		border-radius: 4px;
		text-transform: uppercase;
		text-shadow: 1px 2px 0 rgba(255, 255, 255, 0.6);
		transition: all 1s ease-in-out;
		text-decoration: none;
		max-width: fit-content;
		text-align: center;
	}

	.overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(4, 21, 39, 0.97);
		z-index: 999998;
		display: none;
	}
}

@media (max-width: 1024px) {
	.nav {
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		width: 90%;
		height: 100%;
		max-width: 326px;
		background-color: rgba(55, 164, 44, 1);
		z-index: 999999;
		transition: transform 400ms ease-in-out;
		transform: translateX(-100%);
	}

	.nav.active {
		transform: translateX(0);
	}

	.menu-item-has-children li {
		margin: 0.5rem 0;
	}
}

@media (min-width:1024px) {
	.header-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0.375rem 0;
	}

	.header-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.header-inner a {
		text-decoration: none;
		color: var(--white)
	}

	.logo {
		flex-shrink: 0;
	}

	.menu-title {
		display: none;
	}

	.nav-login {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		color: var(--white);
		padding: 0.5rem 0.75rem 0 0;
	}

	.nav-login img {
		margin-right: 0.25rem;
		width: 33px;
		height: auto;
	}

	.nav-login span {
		font-size: 1.3rem;
		line-height: 1.3;
		font-weight: 700;
		text-transform: uppercase;
		vertical-align: bottom;
		padding: 2.5rem 0.3rem 0 0;
	}

	.nav {
		display: flex;
		align-items: center;
		flex-direction: row;
		margin: 0.25rem 0;
	}

	.nav>div {
		display: flex;
		align-items: center;
		color: var(--white);
	}

	.header-cta {
		margin-left: auto;
	}

	.header-cta .btn {
		background: linear-gradient(to bottom, var(--yellow-light), var(--yellow));
		padding: 1rem 1.5rem 0.75rem;
		margin-left: 1rem;
		color: var(--body);
		font-weight: 800;
		font-size: 1.2rem;
		border-radius: 4px;
		text-transform: uppercase;
		text-shadow: 1px 2px 0 rgba(255, 255, 255, 0.6);
		transition: all 1s ease-in-out;
	}

	.header-cta .btn:hover,
	.header-cta .btn:focus {
		background: linear-gradient(to bottom, var(--yellow), var(--yellow-light));
	}

	.nav ul {
		list-style-type: none;
		padding: 0;
	}

	.nav ul>li {
		display: inline-block;
		position: relative;
	}

	.nav ul a {
		display: block;
		padding: 10px 14px;
		text-decoration: none;
		color: var(--white);
		position: relative;
		font-size: 1.2rem;
		font-weight: 500;
		letter-spacing: -0.02rem;
	}

	.nav .menu-item-has-children>a::after {
		content: '\2303';
		display: inline-block;
		font-weight: 600;
		width: 10px;
		height: 3px;
		position: absolute;
		right: -5px;
		bottom: 12px;
		transform: translate(0, -50%) rotate(180deg);
	}

	.nav .menu-item-has-children {
		margin-right: 1rem;
	}

	.nav .menu-item-has-children .sub-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		list-style-type: none;
		padding: 0;
		background-color: #fff;
		border: 1px solid #ccc;
		z-index: 1000;
		min-width: 225px;
		padding: 1rem;
	}

	.nav .menu-item-has-children .sub-menu li a {
		color: var(--green-dark);
		padding: 0.75rem 1rem;
		font-size: 1.1rem;
	}

	.header-nav {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	.mobile-nav,
	.close-btn {
		display: none;
	}

	#home-cols h2 {
		font-size: 1.75rem;
	}

	.light-green-map-cta-text ul {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		width: 100%;
		padding: 0;
		list-style-type: none;
		margin: 0 0 10rem;
		color: var(--body);
		max-height: 150px;
	}

	.light-green-map-cta-text li {
		flex: 1 0 calc(33.3333% - 10px);
		margin: 5px auto;
		min-width: 9rem;
		box-sizing: border-box;
		margin: 0.5rem 0;
		font-size: 1.125rem;
		padding-left: 24px;
		background: url('./img/blue-checkmark.svg') no-repeat left center;
		background-size: 17px;
	}

	.inset-img .vc_single_image-wrapper {
		width: 100%;
		height: auto;
		overflow: hidden;
		padding: 0;
	}

	#service-area-map {
		width: 100%;
		height: 500px;
	}
}

@media only screen and (min-width:1140px) {}

@media (min-width:1280px) {}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-resolution:144dpi) {}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background: var(--green-lighter);
	color: #FFF;
	text-shadow: none;
}

::-webkit-selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

::-moz-selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #FFF;
	border: 1px solid #F0F0F0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " (" attr(href) ")";
	}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}
}

.nav.active,
.overlay.active {
	display: block;
}