/*
Theme Name: Foundation Child
Description: Business Name
Template: foundation-parent
Version: 1.0.0
*/
/* Global */
:root {
	--font_body: "Inter",
		sans-serif;
	--font_heading: "Clash Display",
		sans-serif;
}
.primary-header .logo-col img {
	max-height: 55px;
}
body.scrolled .primary-header .logo-col img {
	max-height: 45px;
}
.primary-header .header-row {
	gap: 30px;
}
.primary-header .logo-col {
	flex-basis: 350px;
}
.main-nav .menu li {
	margin: 0;
}
.mobile-header .nav-base .nav-toggler {
	width: 3.5em;
}
.menu-item-has-children .sub-menu {
	background-color: var(--color-2);
	text-align: center;
}
.main-nav .menu li a {
	padding-bottom: 4px;
}
.primary-footer .gform_wrapper.gravity-theme .gfield select {
	background: none;
	border: none;
	border-bottom: 1px solid #fff;
}
.primary-footer .gform_wrapper.gravity-theme .gfield select option {
	color: var(--color-text);
}
.content-section p:last-child {
	margin-bottom: 0;
}
.primary-footer .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: 40px;
	justify-content: center;
}
@media screen and (max-width: 1199px) {
	.primary-header .header-row {
		gap: 15px;
		font-size: 14px;
	}
	.primary-header .logo-col {
		flex-basis: 250px;
	}
	.main-nav .menu li a {
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media screen and (max-width: 767px) {
	.btn {
		white-space: normal;
	}
}

/* Banner Section */
.banner-section .content {
	right: 10%;
	color: #fff;
	font-size: 24px;
	max-width: 1000px;
}
.banner-section .content .btn {
	color: #fff;
}
body.ip .banner-section .content,
body.hp .banner-section .content {
	display: flex;
	gap: 30px;
}
body.ip .banner-section .content {
	align-items: center;
}
body.hp .banner-section .content {
	align-items: flex-start;
}
body.ip .banner-section .content .banner-image,
body.hp .banner-section .content .banner-image {
	flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
	body.ip .banner-section .content,
	body.hp .banner-section .content {
		flex-direction: column;
	}
}
@media screen and (max-width: 991px) {
	.banner-section .content {
		position: relative;
		transform: none;
		z-index: 2;
		top: auto;
		left: auto;
		right: auto;
		padding: 75px 15px;
	}
	.banner-section .image {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1;
	}
	.banner-section .image * {
		height: 100%
	}
	.banner-section .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
/* Hover Boxes */
.hover-boxes {
	padding: 30px 0;
	background-color: var(--color-2);
	color: #fff;
}
.hover-boxes .boxes {
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 15px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}
.hover-boxes .box {
	flex: 1 1 calc(25% - 15px);
	background-color: var(--color-2);
	border-radius: 5px;
	position: relative;
	z-index: 2;
	overflow: hidden;
	background-size: cover;
	background-position: 50% 50%;
	color: var(--text_color_alt);
}
.hover-boxes .box .link-inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 30px 15px;
}
.hover-boxes .box:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 33%, var(--color-2) 100%);
	z-index: 0;
	transition: all ease 0.3s;
	height: 100%;
}
.hover-boxes .box:before {
	overflow: hidden;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-1);
	transition: all ease 0.3s;
	height: 0;
	z-index: 1;
}
.hover-boxes .box:hover:before {
	height: 100%;
}
.hover-boxes .box .content {
	max-height: 0;
	overflow: hidden;
	transition: all ease 0.3s 0s;
	opacity: 0;
	border-top: 1px solid var(--text_color_alt);
	padding-top: 20px;
}
.hover-boxes .box.measuring-height .content {
	max-height: none;
}
.hover-boxes .box .content p {
	margin-bottom: 17px;
}
.hover-boxes .box:hover .content {
	max-height: 400px;
	opacity: 1;
	transition: all ease 0.6s;
}
.hover-boxes .box .content p:last-child {
	margin-bottom: 0;
}
.hover-boxes .box .inner {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.hover-boxes .box a {
	color: var(--text_color_alt);
	font-weight: 400;
	height: 100%;
}
.hover-boxes .box .content-wrap {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.hover-boxes .box .heading {
	font-weight: 700;
	color: var(--text_color_alt);
	font-size: 25px;
	font-weight: 800;
	margin-bottom: 10px;
}
.hover-boxes .box .link-icon {
	margin-top: 20px;
	border-radius: 50%;
	border: 3px solid var(--text_color_alt);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hover-boxes .box.has-bg:after {
	display: block;
}
.hover-boxes .box.has-bg .link-icon {
	border-color: var(--color-3);
	color: var(--color-3);
	transition: all ease 0.3s;
}
.hover-boxes .box.has-bg:hover .link-icon {
	border-color: var(--text_color_alt);
	color: var(--text_color_alt);
}
@media screen and (max-width: 1199px) {
	.hover-boxes .boxes {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 767px) {
	.hover-boxes .boxes {
		grid-template-columns: 1fr;
	}
	.hover-boxes .box .content {
		max-height: none;
		opacity: 1;
	}
	.hover-boxes .box:before {
		height: 100%;
	}
}
/* Review Section */
.review-section {
	background-color: var(--color-3);
	background-image: url(assets/images/az-subtle.png);
	text-align: center;
	padding: 100px 0;
}
.review-section h2 {
	color: var(--color-1);
	margin-bottom: 50px;
}
.review-section .reviews .heading {
	font-style: italic;
}
.review-section .owl-carousel {
	max-width: calc(100% - 150px);
	margin: 0 auto;
}
.review-section .owl-carousel .owl-nav {
	font-size: 42px;
	color: var(--color-1);
}
.review-section .owl-carousel .owl-nav button.owl-prev,
.review-section .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.review-section .owl-carousel .owl-nav button.owl-prev {
	left: -75px;
}
.review-section .owl-carousel .owl-nav button.owl-next {
	right: -75px;
}
.review-section .owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	column-gap: .5em;
	margin-top: 20px;
}
.review-section .owl-carousel .owl-dots .owl-dot {
	border: 1px solid var(--color-1);
	border-radius: 50%;
	width: 14px;
	height: 14px;
}
.review-section .owl-carousel .owl-dots .owl-dot.active {
	background-color: var(--color-1);
}
.review-section.heading-underline h2:after {
	background-color: var(--color-1);
}
.review-section .owl-carousel .owl-dots.disabled {
	display: none;
}
@media screen and (max-width: 767px) {
	.review-section .owl-carousel {
		max-width: calc(100% - 90px);
	}
	.review-section .owl-carousel .owl-nav {
		font-size: 38px;
	}
	.review-section .owl-carousel .owl-nav button.owl-prev {
		left: -45px;
	}
	.review-section .owl-carousel .owl-nav button.owl-next {
		right: -45px;
	}
}
@media screen and (max-width: 449px) {
	.review-section .owl-carousel {
		max-width: 100%;
	}
	.review-section .owl-carousel .owl-nav {
		display: none;
	}
}
.brands-section.heading-underline h2 {
	margin-bottom: 20px;
}
.brands-section .content {
	margin-bottom: 50px;
}
.brands-section {
	background-color: #fff;
}
.services-section .service a.btn {
	color: #fff;
}
.services-section .service a.btn:hover,
.services-section .service a.btn:focus {
	color: var(--color-text);
}
/* Zip Checker Section */
.zip-checker-section {
	padding: 60px 0 0;
}
.zip-checker-section.heading-underline h2 {
	font-size: 34px;
	margin-bottom: 15px;
	padding-bottom: 0;
}
.zip-checker-section.heading-underline h2:after {
	display: none;
}
.zip-checker-section-inner {
	display: flex;
	justify-content: center;
}
.zip-checker-card {
	width: 100%;
	max-width: 600px;
	text-align: center;
	padding: 45px 40px;
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
}
.zip-checker-card .zip-checker-state {
	display: none;
}
.zip-checker-card.is-idle .zip-checker-state--idle,
.zip-checker-card.is-qualified .zip-checker-state--qualified,
.zip-checker-card.is-not-qualified .zip-checker-state--not-qualified {
	display: block;
}
.zip-checker-card p {
	margin-bottom: 25px;
}
.zip-checker-form {
	display: flex;
	gap: 10px;
	max-width: 380px;
	margin: 0 auto 20px;
}
.zip-checker-form input[type="text"] {
	flex: 1 1 auto;
	padding: 0 16px;
	font-size: 16px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
}
.zip-checker-form .btn {
	flex: 0 0 auto;
	padding: 15px 22px;
}
.zip-checker-form .btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.zip-checker-form .btn:disabled:hover,
.zip-checker-form .btn:disabled:focus {
	background-color: var(--color-2);
	color: var(--color-4);
}
.zip-checker-note {
	font-size: 14px;
	opacity: 0.7;
	margin-bottom: 0;
}
.zip-checker-state--qualified h2 {
	color: #2e7d32;
}
.zip-checker-state--not-qualified h2 {
	color: #c62828;
}
.zip-checker-cta {
	display: inline-block;
	margin-bottom: 15px;
}
.zip-checker-reset {
	display: block;
	margin: 0 auto;
	background: none;
	border: none;
	color: var(--color-1);
	text-decoration: underline;
	cursor: pointer;
	font-size: 14px;
}
@media screen and (max-width: 500px) {
	.zip-checker-card {
		padding: 35px 20px;
	}
	.zip-checker-form {
		flex-direction: column;
	}
}
.photo-feature .photo-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
}
.photo-feature .left {
	grid-row: span 2;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.photo-feature .left .content {
	position: relative;
	z-index: 2;
}
.photo-feature .left .image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
	z-index: 1;
}
.photo-feature .left .image img {
	opacity: 0.25;
}
.photo-feature .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.photo-feature .right {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-row: span 2;
	position: relative;
}
.photo-feature .right .image {
	grid-row: span 1;
	position: relative;
	min-height: 25vw;
}
.photo-feature .right .image img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.content-section-3 .image-col .image {
	background-attachment: scroll;
	background-position: 50% 0%;
}
@media screen and (max-width: 767px) {
	.photo-feature .photo-row {
		display: block;
	}
	.photo-feature .right .image {
		min-height: 45vw;
	}
}
/* Team Section */
.team-section {
	background-color: var(--color-2);
	padding: 75px 0;
	color: #fff;
}
.team-section .content {
	margin-bottom: 100px;
}
.team-section .members {
	flex-wrap: wrap;
	column-gap: 100px;
	row-gap: 75px;
}
.team-section .member {
	flex: 0 1 calc(50% - 50px);
	min-width: min(100%, 300px);
}
.team-section .member .image {
	margin-bottom: 30px;
}
.team-section .member .image img {
	width: 100%;
	box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.team-section .member .heading {
	font-size: 25px;
	color: #fff;
	letter-spacing: 2.5px;
	margin-bottom: 5px;
}
.team-section .member .title {
	letter-spacing: 2px;
	font-weight: 700;
}
.team-section .member .content {
	margin-top: 30px;
	margin-bottom: 0;
}
.team-section .member .content p:last-child {
	margin-bottom: 0;
}
.team-section.heading-underline h2 {
	color: #fff;
}
.team-section.heading-underline .member h2 {
	margin-bottom: 5px;
	padding-bottom: 0;
}
.team-section.heading-underline .member h2:after {
	display: none;
}
body.ip .faq-section+.gallery-section {
	background-color: #fff;
}
@media screen and (max-width: 1199px) {
	.team-section .members {
		column-gap: 100px;
	}
}
@media screen and (max-width: 991px) {
	.team-section .members {
		column-gap: 50px;
	}
}
/* Blog Section */
.blog-section .pagination {
	display: flex;
	margin: 0 0 20px;
	text-align: center;
	justify-content: center;
}
.blog-section .pagination .page-numbers {
	flex: 0 0 auto;
	padding: 6px 10px;
	color: #fff;
	transition: all ease 0.3s;
	margin-bottom: 5px;
	display: block;
	min-width: 2em;
}
.blog-section .pagination .page-numbers:not(:last-child) {
	border-right-width: 1px;
	border-right-style: solid;
}
.blog-section .pagination .page-numbers:not(:first-child) {
	border-left-width: 1px;
	border-left-style: solid;
}
.blog-section .pagination .page-numbers.dots {
	padding: 6px;
}
.blog-section .pagination .page-numbers:hover,
.blog-section .pagination .page-numbers:focus {
	text-decoration: none;
}
.blog-section .pagination .page-numbers {
	background-color: var(--color-1);
}
.blog-section .pagination .page-numbers {
	border-color: var(--color-5);
}
.blog-section .pagination .page-numbers.current,
.blog-section .pagination a.page-numbers:hover,
.blog-section .pagination a.page-numbers:focus {
	background-color: var(--color-2);
	color: #fff;
}
.news-section {
	margin: 100px 0;
}
.news-section h2 {
	text-align: center;
	color: var(--color-2);
	font-size: 32px;
	font-weight: 700;
	font-family: var(--font_heading);
	letter-spacing: 3px;
	margin-bottom: 30px;
}
.news-section .posts {
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 15px;
}
.news-section .post {
	flex: 1 1 calc(33.33% - 33.33px);
}
.news-section .post .image:hover img {
	transform: scale(1.1);
}
.news-section .post .image img {
	transition: all ease 0.3s;
}
.news-section .post .image {
	position: relative;
	background-color: #fff;
	overflow: hidden;
}
.news-section .post a {
	color: var(--color-6);
	font-weight: 400;
}
.news-section .post .date {
	margin-top: 10px;
}
.news-section .post .heading {
	font-weight: 700;
	margin: 10px 0;
	font-size: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: var(--font_heading);
}
.news-section .post .content .read-more .text {
	display: block;
	color: var(--color-2);
	font-weight: 700;
	margin-top: 10px;
	font-family: var(--font_heading);
}
.blog-section {
	padding: 50px 0;
}
.blog-section h2 {
	color: var(--color-2);
}
.blog-section .filter-form {
	margin-bottom: 50px;
}
.blog-section .filter-form .filters {
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 25px;
	row-gap: 15px;
	text-align: center;
}
.blog-section .filter-form .filter {
	display: flex;
	flex-wrap: wrap;
	row-gap: 5px;
	column-gap: 10px;
	align-items: center;
	justify-content: center;
}
.blog-section .filter-form .filter label {
	margin: 0;
}
.blog-section .filter-form .submit {
	align-self: stretch;
}
.blog-section .filter-form .btn {
	height: 100%;
}
.blog-section .filter-form input[type="text"],
.blog-section .filter-form select {
	padding: 6px;
	width: 235px;
	font-size: 14px;
}
.blog-section .news-items {
	flex-wrap: wrap;
	column-gap: 50px;
	row-gap: 30px;
}
.blog-section .news-items .item {
	flex: 0 1 calc(33.33% - 33.33px);
}
.blog-section .news-items .item a {
	font-weight: 400;
	color: #000;
}
.blog-section .news-items .item .image {
	position: relative;
	background-color: #fff;
	overflow: hidden;
}
.blog-section .news-items .item .image img {
	transition: all ease 0.3s;
}
.blog-section .news-items .item .image:hover img {
	transform: scale(1.1);
}
.blog-section .news-items .item .heading {
	font-size: 28px;
	text-align: center;
	color: var(--color-1);
	text-shadow: 0.5px 0.5px 3px rgba(255, 255, 255, 0.75);
	display: none;
}
.blog-section .news-items .item .heading:not(:first-child) {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 0 15px;
}
.blog-section .news-items .item {
	font-family: var(--font_heading);
}
.blog-section .news-items .item .title {
	margin-top: 10px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
}
.blog-section .news-items .item .date {
	margin-top: 10px;
	font-family: var(--font_body);
}
.blog-section .news-items .item .excerpt {
	margin-top: 10px;
	font-family: var(--font_body);
}
.blog-section .news-items .item .read-more .text {
	font-family: var(--font_heading);
	display: block;
	color: var(--color-2);
	font-weight: 700;
	margin-top: 10px;
}
.blog-section .pagination {
	margin-top: 50px;
}
.news-section .posts .post .read-more .text {
	font-family: var(--font_heading);
	display: block;
	color: var(--color-2);
	font-weight: 700;
	margin-top: 10px;
}
/* Cat Section */
.cat-section .category-nav {
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 30px;
	font-weight: 700;
	font-size: 18px;
	justify-content: center;
	margin-bottom: 75px;
	text-align: center;
}
.cat-section .category-nav .nav-item {
	cursor: pointer;
}
.cat-section .item {
	display: none;
}
.cat-section .item.active {
	display: block;
}
.cat-section .current-category {
	text-align: center;
	margin-bottom: 30px;
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	color: var(--color-8);
	position: relative;
}
.cat-section .current-category .clear-filters {
	display: none;
}
.cat-section .type-filter {
	position: relative;
}
.cat-section .type-filter .clear-filters {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -54px;
	cursor: pointer;
	white-space: nowrap;
}
.cat-section .type-filter:hover .clear-filters:hover~.filter-options {
	display: none;
}
.cat-section .filter-row {
	column-gap: 25px;
	row-gap: 30px;
	flex-wrap: wrap;
	margin-bottom: 50px;
	color: var(--color-8);
}
.cat-section .filter-row .col {
	flex: 1 1 calc(33.33% - 33.33px);
}
.cat-section .filter-row .col .btn {
	width: 100%;
	letter-spacing: 1px;
}
.cat-section .filter-dropdown {
	position: relative;
}
.cat-section .filter-dropdown .filter-options {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 3;
	background-color: #fff;
	padding: 10px 15px;
	box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.25);
	color: var(--color-8);
}
.cat-section .filter-dropdown:hover .filter-options {
	display: block;
}
.cat-section .filter-dropdown .nav-item {
	cursor: pointer;
	margin: 10px 0;
}
.cat-section .item {
	position: relative;
	transition: all ease 0.3s;
}
.cat-section .item .overlay {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 15px;
	text-align: left;
	color: #fff;
	text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
}
.cat-section .item .overlay .heading {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 0;
}
.cat-section .item .overlay .sub-heading {
	font-weight: 400;
}
.cat-section .item .project-details {
	display: none;
}
.cat-section .item .project-details .sub-heading {
	text-transform: uppercase;
	font-size: 12px;
}
.cat-section .item .project-details .heading {
	margin: 0 0 20px 0;
}
.cat-section .item .project-details .read-more {
	margin: 20px 0 0 0;
}
.cat-section .item:hover .project-details {
	display: block;
}
.cat-section .item:hover .project {
	display: none;
}
.cat-section .item .project-details {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 40px;
	text-align: left;
	color: #fff;
	text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
}
.filter-dropdown.topic-filter .hidden-select {
	display: none;
}
.filter-dropdown.topic-filter {
	flex-basis: 270px;
}
.filter-dropdown.topic-filter .btn {
	width: 100%;
}
.blog-section .filters .search {
	flex: 1 1 auto;
	margin-bottom: 0;
}
.blog-section .filters .search input {
	width: 100%;
	height: 100%;
	padding: 10px;
}
.blog-section.cat-section .item {
	display: block;
}
.clear-filters {
	cursor: pointer;
}
/* Breadcrumb Section */
.breadcrumb-section {
	margin: 30px 0;
}
.breadcrumb-section .breadcrumbs {
	justify-content: center;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
	font-family: var(--font_heading);
}
.breadcrumb-section .breadcrumbs .crumb:not(:last-child):after {
	content: ">";
	padding: 0 10px;
	display: inline-block;
}
.breadcrumbs-section {
	margin: 35px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: var(--font_heading);
	font-weight: 600;
	font-size: 14px;
}
.breadcrumbs-section .breadcrumbs {
	justify-content: center;
}
.breadcrumbs-section .item {
	position: relative;
}
.breadcrumbs-section .item:not(:last-child):after {
	content: ">";
	display: inline-block;
	padding: 0 5px;
}
.breadcrumbs-section .item a {
	font-weight: 700;
}
.breadcrumb-section-inner h2 {
	color: var(--color-2);
	text-align: center;
}
.breadcrumb-section .breadcrumbs {
	flex-wrap: wrap;
	text-align: center;
}
.breadcrumb-section .breadcrumbs .crumb.parent {
	white-space: nowrap;
}
/* Services Section */
.services-section .services {
	display: grid;
	grid-template-columns: repeat(var(--col_count, 3), 1fr);
}
.services-section[style*="col_count: 4"] .services {
	gap: 25px;
}
.services-section.heading-underline h2 {
	margin-bottom: 20px;
}
.services-section.heading-underline .container>.content {
	margin-bottom: 50px;
}
@media screen and (max-width: 1199px) {
	.blog-section .filter-form .filters {
		column-gap: 15px;
	}
	.services-section[style*="col_count: 4"] .services {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 991px) {
	.cat-section .filter-row {
		flex-wrap: wrap;
		column-gap: 30px;
		row-gap: 20px;
		margin-bottom: 30px;
	}
	.cat-section .type-filter .clear-filters {
		display: none;
	}
	.cat-section .current-category .clear-filters {
		display: block;
		flex-basis: 100%;
		margin-top: 10px;
	}
	.services-section[style*="col_count:"] .services {
		grid-template-columns: repeat(1, 1fr);
	}
	.service-section .content-row .image-col {
		min-height: 0;
	}
}
@media screen and (max-width: 767px) {
	.news-section .post {
		flex-basis: 100%;
	}
	.blog-section .news-items .item {
		flex-basis: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 580px) {
	.cat-section .filter-row .col {
		flex-basis: 100%;
	}
	.blog-section .filters .col {
		flex-basis: 100%;
	}
}
@media screen and (max-width: 450px) {
	.cat-section .filter-row .col .btn {
		white-space: nowrap;
	}
}
.green {
	color: var(--color-5);
}
.orange {
	color: var(--color-3);
}
.banner-section .content h1 strong {
	color: var(--color-3);
}
.btn,
.primary-footer .form-col .gform_wrapper.gravity-theme .button,
.primary-header .logo-col {
	border-radius: 10px;
}
.services-section .service {
	background-color: var(--color-1);
	color: #fff;
	border-radius: 10px;
}
.services-section .service .btn {
	background-color: var(--color-3);
}
.services-section .service .btn:hover,
.services-section .service .btn:focus {
	background-color: var(--color-4);
}
.services-section .service .content {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.services-section .service .content p:last-child:has(.btn) {
	flex: 1 1 auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
body.home .content-section,
.service-section {
	background-color: var(--color-1);
	color: #fff;
}
body.home .content-section a,
.service-section a {
	color: var(--color-3);
}
body.home .content-section a:hover,
body.home .content-section a:focus,
.service-section a:hover,
.service-section a:focus {
	color: var(--color-4);
}
body.home .content-section .btn,
.service-section .btn {
	background-color: var(--color-3);
	color: #fff;
}
body.home .content-section .btn:hover,
body.home .content-section .btn:focus,
.service-section .btn:hover,
.service-section .btn:focus {
	background-color: var(--color-4);
	color: var(--color-1);
}
body.home .content-section.heading-underline h2,
.service-section.heading-underline h2 {
	color: #fff;
}
.primary-header .nav-col .menu a:hover,
.primary-header .nav-col .menu a:focus,
.primary-header .nav-col .menu .current_page_item>a,
.primary-header .nav-col .info-row a {
	color: var(--color-5);
}
.heading-underline h2:after {
	background-color: var(--color-5);
}
body .gform_wrapper.gravity-theme .button:hover,
body .gform_wrapper.gravity-theme .button:focus,
.btn:hover,
.btn:focus,
.services-section .service .btn:hover,
.services-section .service .btn:focus {
	background-color: #F33B45 !important;
	color: #fff !important;
}

.primary-footer .social a:hover,
.primary-footer .social a:focus {
	color: #F33845 !important;
}
.orange-text {
	color: var(--color-3);
}
.service-section ul {
	margin-bottom: 20px;
}
.home .owl-stage {
	display: flex;
	align-items: center;
}
.home .owl-carousel .owl-item img {
	max-height: 100px;
	width: auto;
}
.primary-footer .footer-row {
	display: flex;
	flex-wrap: wrap;
}
.services-section .service {
	border: 3px solid var(--color-5);
	box-shadow: 0px 2px 4px 0 #1e1e1e;
}
.banner-section .image img {
	opacity: .5;
}
@media screen and (max-width: 991px) {
	.services-section .services {
		max-width: 550px;
		margin: 0 auto;
		display: flex !important;
		flex-wrap: wrap;
	}
}
.zip-checker-section {
	padding: 60px 0px;
}
@media screen and (min-width: 991px) {
	.footer-logo img {
		max-width: 500px;
	}
}
/* Services Section - Membership Plans style */
.services-section_plans {
	background-color: var(--color-1);
	color: #fff;
}
.services-section_plans .eyebrow {
	color: var(--color-5);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 12px;
}
.services-section_plans.heading-underline h2 {
	color: #fff;
	text-align: center;
	margin-bottom: 15px;
}
.services-section_plans.heading-underline h2:after {
	display: none;
}
.services-section_plans.heading-underline .container>.content {
	color: #94a4b8;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 45px;
}
.services-section_plans.heading-underline .container>.content p:last-child {
	margin-bottom: 0;
}
.services-section_plans .services {
	/* minmax(0,1fr) so a long feature line can't widen its own column */
	grid-template-columns: repeat(var(--col_count, 3), minmax(0, 1fr));
	align-items: stretch;
	padding-top: 14px;
}
.services-section_plans .service {
	position: relative;
	background-color: #12283f;
	/* 2px on every card so the highlighted one doesn't sit 1px off the others */
	border: 2px solid #1c3049;
	border-radius: 12px;
	box-shadow: none;
	color: #fff;
	overflow: visible;
}
.services-section_plans .service.service_featured {
	border-color: var(--color-3);
}
.services-section_plans .service:hover {
	transform: none;
}
.services-section_plans .service .badge {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--color-3);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	white-space: nowrap;
	padding: 5px 16px;
	border-radius: 20px;
}
.services-section_plans .service .service-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 30px 26px;
}
.services-section_plans .service .image {
	margin-bottom: 20px;
}
.services-section_plans .service .content {
	height: auto;
	display: block;
	padding: 0;
}
.services-section_plans .service .content h3 {
	color: #fff;
	margin-bottom: 12px;
}
.services-section_plans .service .content p {
	color: #94a4b8;
	font-size: 16px;
	margin-bottom: 0;
}
.services-section_plans .service .price {
	margin-top: 22px;
	line-height: 1.1;
}
.services-section_plans .service .price .amount {
	font-family: 'Clash Display', sans-serif;
	font-size: 36px;
	font-weight: 600;
	color: #fff;
}
.services-section_plans .service .price .period {
	font-size: 17px;
	color: #94a4b8;
}
.services-section_plans .service .price-note {
	font-size: 13px;
	color: #94a4b8;
	margin-top: 6px;
}
.services-section_plans .service .features {
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
}
.services-section_plans .service .features .feature {
	display: flex;
	align-items: flex-start;
	column-gap: 10px;
	font-size: 15px;
	line-height: 1.45;
	color: #94a4b8;
}
.services-section_plans .service .features .feature+.feature {
	margin-top: 12px;
}
.services-section_plans .service .features .feature .icon {
	flex: 0 0 auto;
	color: var(--color-3);
	font-size: 14px;
	line-height: 1.55;
}
.services-section_plans .service .features .feature_highlight {
	color: #fff;
	font-weight: 700;
}
.services-section_plans .service .features .feature_excluded {
	color: #f33b45;
}
.services-section_plans .service .features .feature_excluded .icon {
	color: #f33b45;
}
.services-section_plans .service .features .feature_excluded .text {
	text-decoration: line-through;
}
.services-section_plans .service .cta {
	margin-top: auto;
	padding-top: 28px;
}
.services-section_plans .service .cta .btn {
	display: block;
	width: 100%;
	text-align: center;
	background-color: var(--color-3);
	color: #fff;
	font-size: 16px;
	padding: 13px 18px;
}
.services-section_plans .service .cta .btn_disabled {
	background-color: rgba(255, 145, 48, .4) !important;
	color: rgba(255, 255, 255, .55) !important;
	cursor: default;
	pointer-events: none;
}
.zip-checker-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .75);
	z-index: 99;
	display: none;
}
.zip-checker-modal .zip-checker-section {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.zip-checker-modal .close-icon {
	position: absolute;
	top: 8px;
	right: 8px;
	cursor: pointer;
}
.zip-checker-card {
	position: relative;
}
.zip-checker-state--qualified .zip-checker-reset {
	margin-top: 20px;
}
@media screen and (max-width: 991px) {
	.services-section_plans .services {
		align-items: stretch;
	}
	.services-section_plans .service {
		display: flex;
	}
	.services-section_plans .service .service-inner {
		width: 100%;
	}
}
@media screen and (min-width: 1500px) {
	.services-section_plans .container {
		width: 1470px;
	}
}
@media screen and (min-width: 1600px) {
	.services-section_plans .container {
		width: 1570px;
	}
}