/*
Theme Name: Custom Builder Child Theme
Theme URI: http://405mediagroup.com/
Description: Custom Builder child theme for client sites.
Author: 405 Media Group
Author URI: http://405mediagroup.com/
Template: Builder
*/

:root {
	--color-primary: #aa2d2e;
	--color-text: #000;
	--font-base: ProximaNova, sans-serif;
	--font-custom: "FranklinGothic", sans-serif;
	--text-base: 16px;
	--leading-base: 1.5;
}

@font-face {
	font-family: ProximaNova;
	src: url('./fonts/ProximaNova-Regular.eot'); /* IE9 Compat Modes */
	src: url('./fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('./fonts/ProximaNova-Regular.woff2') format('woff2'), /* Super Modern Browsers */
		url('./fonts/ProximaNova-Regular.woff') format('woff'), /* Pretty Modern Browsers */
		url('./fonts/ProximaNova-Regular.ttf')  format('truetype'), /* Safari, Android, iOS */
		url('./fonts/ProximaNova-Regular.svg#ProximaNova-Regular') format('svg'); /* Legacy iOS */
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: ProximaNova;
	src: url('./fonts/ProximaNova-RegularIt.eot'); /* IE9 Compat Modes */
	src: url('./fonts/ProximaNova-RegularIt.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('./fonts/ProximaNova-RegularIt.woff2') format('woff2'), /* Super Modern Browsers */
		url('./fonts/ProximaNova-RegularIt.woff') format('woff'), /* Pretty Modern Browsers */
		url('./fonts/ProximaNova-RegularIt.ttf')  format('truetype'), /* Safari, Android, iOS */
		url('./fonts/ProximaNova-RegularIt.svg#ProximaNova-RegularIt') format('svg'); /* Legacy iOS */
	font-weight: 400;
	font-style: italic;
}

@font-face {
	font-family: ProximaNova;
	src: url('./fonts/ProximaNova-Bold.eot'); /* IE9 Compat Modes */
	src: url('./fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('./fonts/ProximaNova-Bold.woff2') format('woff2'), /* Super Modern Browsers */
		url('./fonts/ProximaNova-Bold.woff') format('woff'), /* Pretty Modern Browsers */
		url('./fonts/ProximaNova-Bold.ttf')  format('truetype'), /* Safari, Android, iOS */
		url('./fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg'); /* Legacy iOS */
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: FranklinGothic;
	src: url('./fonts/FranklinGothic-Book.eot'); /* IE9 Compat Modes */
	src: url('./fonts/FranklinGothic-Book.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('./fonts/FranklinGothic-Book.woff2') format('woff2'), /* Super Modern Browsers */
		url('./fonts/FranklinGothic-Book.woff') format('woff'), /* Pretty Modern Browsers */
		url('./fonts/FranklinGothic-Book.ttf')  format('truetype'), /* Safari, Android, iOS */
		url('./fonts/FranklinGothic-Book.svg#FranklinGothic-Book') format('svg'); /* Legacy iOS */
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: FranklinGothic;
	src: url('./fonts/FranklinGothic-Demi.eot'); /* IE9 Compat Modes */
	src: url('./fonts/FranklinGothic-Demi.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('./fonts/FranklinGothic-Demi.woff2') format('woff2'), /* Super Modern Browsers */
		url('./fonts/FranklinGothic-Demi.woff') format('woff'), /* Pretty Modern Browsers */
		url('./fonts/FranklinGothic-Demi.ttf')  format('truetype'), /* Safari, Android, iOS */
		url('./fonts/FranklinGothic-Demi.svg#FranklinGothic-Demi') format('svg'); /* Legacy iOS */
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: FranklinGothic;
	src: url('./fonts/FranklinGothic-Heavy.eot'); /* IE9 Compat Modes */
	src: url('./fonts/FranklinGothic-Heavy.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('./fonts/FranklinGothic-Heavy.woff2') format('woff2'), /* Super Modern Browsers */
		url('./fonts/FranklinGothic-Heavy.woff') format('woff'), /* Pretty Modern Browsers */
		url('./fonts/FranklinGothic-Heavy.ttf')  format('truetype'), /* Safari, Android, iOS */
		url('./fonts/FranklinGothic-Heavy.svg#FranklinGothic-Heavy') format('svg'); /* Legacy iOS */
	font-weight: 900;
	font-style: normal;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-base);
	font-size: var(--text-base);
	line-height: var(--leading-base);
	color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-custom);
	font-weight: 700;
	line-height: normal;
	margin-top: 15px;
	margin-bottom: 15px;
}

.h0 {
	font-size: 60px;
}
h1, .h1 {
	font-size: 36px;
}
h2, .h2 {
	font-size: 30px;
}
h3, .h3 {
	font-size: 24px;
}
h4, .h4 {
	font-size: 20px;
}
h5, .h5 {
	font-size: 18px;
}
h6, .h6 {
	font-size: 16px;
}

@media (max-width: 767px) {
	.h0 {
		font-size: 30px;
	}
	h1, .h1 {
		font-size: 30px;
	}
	h2, .h2 {
		font-size: 24px;
	}
	h3, .h3 {
		font-size: 20px;
	}
	h4, .h4 {
		font-size: 18px;
	}
	h5, .h5 {
		font-size: 16px;
	}
	h6, .h6 {
		font-size: 14px;
	}
	body {
		font-size: 14px;
	}
}

ul {
	list-style-type: disc;
}
ol {
	list-style-type: decimal;
}

ul, ol {
	list-style-position: outside;
	margin: 0 0 0 40px;
	padding: 0;
}
ul ul, ul ol, ol ul, ol ol {
	margin-left: 20px;
}

p, ul, ol {
	margin-bottom: 15px;
}
p:last-child,
ul:last-child,
ol:last-child {
	margin-bottom: 0;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: .3s;
}
a:hover {
	text-decoration: none;
}

.builder-module-background-wrapper {
	padding-left: 0;
	padding-right: 0;
	background-size: cover;
	background-position: center;
}

.custom-header {
	line-height: 1;
}

@media (max-width: 1024px) {
	.custom-header-background-wrapper .builder-module-column-1-outer-wrapper {
		width: 100% !important;
	}
	.custom-header-background-wrapper .builder-module-column-2-outer-wrapper {
		display: none;
	}
}

.builder-module-navigation li a {
	padding: 1em 1em;
	color: var(--color-text);
	line-height: 1;
}
.builder-module-navigation li ul {
	width: 14em;
	border: 1px solid #aaa;
	background-color: #fff;
}
.builder-module-navigation li li {
	display: block;
	float: none;
	border-bottom: 1px solid #aaa;
}
.builder-module-navigation li li:last-child {
	border-bottom: none;
}
.builder-module-navigation li li a {
	padding-top: 1em;
	padding-bottom: 1em;
}
.builder-module-navigation li ul ul {
	margin: -3em 0 0 14em;
	transform: translate(-1px, -1px);
}

@media (min-width: 1025px) {
	.builder-module-navigation .menu {
		display: flex;
		justify-content: flex-end;
	}
	.builder-module-navigation .menu > li {
		float: none;
	}

	.builder-module-navigation li ul {
		width: auto;
		transform: none;
	}
	.builder-module-navigation li:hover > ul {
		display: block !important;
	}
	.builder-module-navigation li li a {
		line-height: 1em;
	}
	.builder-module-navigation li li a:hover {
		color: var(--color-primary);
	}
	.builder-module-navigation li ul ul {
		margin-top: calc(-2em - 15px);
		margin-left: -15em;
		transform: none;
		width: 15em;
	}
}

@media (max-width: 1024px) {
	.builder-module-navigation .menu {
		position: fixed;
		overflow-y: scroll;
		top: 0;
		right: -75%;
		width: 75%;
		height: 100vh;
		background-color: var(--color-primary);
		transition: .3s;
	}
	.builder-module-navigation li {
		position: relative;
		width: 100%;
	}
	.builder-module-navigation li a {
		border-bottom: 1px solid #fff;
		color: #fff;
	}
	.menu-item-has-children > a:after {
		content: "\25bc";
		position: absolute;
		right: 20px;
		color: #fff;
		cursor: pointer;
	}
	.builder-module-navigation li ul {
		display: none;
		position: relative !important;
		left: 0 !important;
		width: 100%;
		background-color: transparent;
		border: none;
	}
	.builder-module-navigation li li {
		border-bottom: none;
		padding-left: 1em;
		width: 100%;
	}
	.builder-module-navigation li li a {
		color: #fff;
	}
	.builder-module-navigation li ul ul {
		margin: 0;
		transform: none;
	}
	.builder-module-navigation li li li {
		padding-left: 2em;
	}
}

#it-mobile-menu {
	display: none;
}
@media (max-width: 1024px) {
	#it-mobile-menu {
		display: inline-block;
		float: left;
	}
}

#it-mobile-phone {
	display: none;
}
@media (max-width: 1024px) {
	#it-mobile-phone {
		display: inline-block;
		float: right;
	}
	.mobile-menu-open #it-mobile-menu {
		opacity: 0;
	}
}

#it-mobile-menu-close {
	display: none;
	position: fixed;
	z-index: 9;
	margin-top: 20px;
}
@media (max-width: 1024px) {
	#it-mobile-menu-close:before,
	#it-mobile-menu-close:after {
		content: "";
		position: absolute;
		width: 35px;
		height: 4px;
		background-color: #fff;
	}
	#it-mobile-menu-close:before {
		transform: rotate(45deg);
	}
	#it-mobile-menu-close:after {
		transform: rotate(-45deg);
	}

	.mobile-menu-open #it-mobile-menu-close {
		display: block;
	}
}

.builder-container:after {
	content: "";
	position: fixed;
	z-index: 3;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .5);
	transition: .3s;
}
@media (max-width: 1024px) {
	.mobile-menu-open {
		overflow: hidden;
	}
	.mobile-menu-open .builder-container:after {
		visibility: visible;
		opacity: 1;
	}
	.mobile-menu-open .builder-module-navigation .menu {
		right: 0;
	}
}

.menu-social {
	display: none;
}
@media (max-width: 1024px) {
	.menu-social {
		display: block;
		padding: 1em 2em;
		border-bottom: 1px solid #fff;
	}
	.menu-social a {
		display: inline-block;
		margin-right: 20px;
		color: #fff;
		font-size: 24px;
	}
}

@media (max-width: 1024px) {
	.custom-mobile-menu-background-wrapper {
		padding: 10px 15px;
		background-color: var(--color-primary);
	}
	#it-mobile-menu {
		color: #fff;
		font-size: 36px;
		line-height: 1;
	}
	#it-mobile-phone a {
		display: inline-block;
		color: #fff;
		font-family: var(--font-custom);
		font-size: 30px;
		font-weight: 700;
		line-height: 36px;
	}
	#it-mobile-menu-close:before,
	#it-mobile-menu-close:after {
		background-color: #fff;
	}
}

.custom-slider-outer-wrapper {
	max-width: 100% !important;
}

#builder-module-5358add06aa15-outer-wrapper,
.city-category #builder-module-52449ac681116-outer-wrapper {
	max-width: 100% !important;
}

#builder-module-52449ac681116 {
	padding: 60px 15px;
}

@media (min-width: 1025px) {
	#builder-module-52449ac681116,
	#builder-module-5358add06aa15 .container {
		padding-left: 40px;
		padding-right: 40px;
	}
}

.city-category #builder-module-52449ac681116 {
	padding: 0;
}

.builder-module-widget-bar,
.builder-module-block-outer-wrapper {
	overflow: visible;
}

.builder-module-widget-bar .widget-wrapper {
	float: none;
	overflow: visible;
}

.entry-footer {
	display: none;
}

input::placeholder,
textarea::placeholder {
	color: #000;
}
input,
textarea,
select {
	border: 1px solid #000;
	font-family: var(--font-base);
}

input,
button,
select {
	-webkit-appearance: none;
	appearance: none;
}
input[type=checkbox],
input[type=radio] {
	-webkit-appearance: auto;
	appearance: auto;
}

video,
iframe,
img {
	vertical-align: middle;
}

.full-img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

.alignleft {
	margin-right: 30px;
	margin-bottom: 30px;
}
.alignright {
	margin-left: 30px;
	margin-bottom: 30px;
}
@media (max-width: 767px) {
	.alignleft {
		float: none;
		margin-right: 0;
	}
	.alignright {
		float: none;
		margin-left: 0;
	}
}

.owl-carousel .owl-item img {
	display: inline;
	width: auto;
}

.gform_footer .gform_button {
	cursor: pointer;
	transition: .3s;
}

@media only screen and (min-width: 641px) {
	.gform_wrapper.gform_legacy_markup_wrapper ul.gform_fields li.gfield {
		padding-right: 0;
	}
}
.gform_wrapper.gform_legacy_markup_wrapper .gfield_html.gfield_no_follows_desc,
body .gform_wrapper.gform_legacy_markup_wrapper ul li.gfield,
body .gform_wrapper.gform_legacy_markup_wrapper .top_label div.ginput_container,
.gform_wrapper.gform_legacy_markup_wrapper li.hidden_label input {
	margin-top: 0;
}
.gform_wrapper.gform_legacy_markup_wrapper.gf_browser_chrome select {
	padding: 5px 4px;
	line-height: normal;
}
.gform_wrapper.gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_left select,
.gform_wrapper.gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_right select,
.gform_wrapper.gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield select {
	margin-left: 0;
}

/****************************************************************************************/

.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

.inset-0 {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.pt-15 {
	padding-top: 15px;
}
.pb-15 {
	padding-bottom: 15px;
}
.pt-30 {
	padding-top: 30px;
}
.pb-30 {
	padding-bottom: 30px;
}
.pt-60 {
	padding-top: 60px;
}
.pb-60 {
	padding-bottom: 60px;
}

.mt-0 {
	margin-top: 0;
}
.mb-0 {
	margin-bottom: 0;
}
.mt-15 {
	margin-top: 15px;
}
.mb-15 {
	margin-bottom: 15px;
}
.mt-30 {
	margin-top: 30px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mt-60 {
	margin-top: 60px;
}
.mb-60 {
	margin-bottom: 60px;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.container {
	max-width: 1280px;
	padding-left: 40px;
	padding-right: 40px;
	margin-left: auto;
	margin-right: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	grid-row-gap: 30px;
}
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-12 {
	padding-left: 15px;
	padding-right: 15px;
}
.col-3 {
	width: 25%;
}
.col-4 {
	width: 33.333333%;
}
.col-5 {
	width: 41.666667%;
}
.col-6 {
	width: 50%;
}
.col-7 {
	width: 58.333333%;
}
.col-8 {
	width: 66.666667%;
}
.col-9 {
	width: 75%;
}
.col-12 {
	width: 100%;
}
@media (max-width: 767px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.col-3,
	.col-4,
	.col-5,
	.col-6,
	.col-7,
	.col-8,
	.col-9 {
		width: 100%;
	}

	.reverse > :first-child {
		order: 2;
	}
	.reverse > :last-child {
		order: 1;
	}
}

.flex {
	display: flex;
}
.items-center {
	align-items: center;
}
.items-stretch {
	align-items: stretch;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.justify-evenly {
	justify-content: space-evenly;
}

.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.text-justify {
	text-align: justify;
}

.font-black {
	font-weight: 900;
}
.font-extrabold {
	font-weight: 800;
}
.font-bold {
	font-weight: 700;
}
.font-semibold {
	font-weight: 600;
}
.font-medium {
	font-weight: 500;
}
.font-regular {
	font-weight: 400;
}
.font-light {
	font-weight: 300;
}
.font-extralight {
	font-weight: 200;
}
.font-thin {
	font-weight: 100;
}

.italic {
	font-style: italic;
}

.uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}

.text-white {
	color: #fff;
}
.text-black {
	color: #000;
}
.text-primary {
	color: var(--color-primary);
}

.bg-primary {
	background-color: var(--color-primary);
}

.font-base {
	font-family: var(--font-base);
}
.font-custom {
	font-family: var(--font-custom);
}

.leading-1 {
	line-height: 1;
}
.leading-1\.5 {
	line-height: 1.5;
}
.leading-2 {
	line-height: 2;
}

.tracking-1\.5 {
	letter-spacing: .15em;
}
.tracking-2 {
	letter-spacing: .2em;
}

@media (min-width: 768px) {
	.columns-2 {
		columns: 2;
	}
}

.gform_heading {
	display: none;
}

@media (max-width: 767px) {
	.hidden-mobile {
		display: none;
	}
}

@media (min-width: 768px) {
	.hidden-desktop {
		display: none;
	}
}

/****************************************************************************************/

.custom-header-background-wrapper {
	background-color: #fff;
	top: 0;
	width: 100%;
}
.custom-header-outer-wrapper {
	max-width: 100% !important;
}
.header-logo {
	padding: 5px 20px;
}
.header-info {
	margin-top: 25px;
	margin-right: 20px;
	text-align: right;
}
.header-social {
	color: #fff;
	font-size: 30px;
	margin-left: 10px;
}
.header-no {
	margin-left: 20px;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
}
.header-social:hover,
.header-no:hover {
	color: #000;
}

@media (min-width: 1025px) {
	.builder-container {
		padding-top: 129px;
	}
	.custom-header-background-wrapper {
		position: fixed;
		z-index: 2;
		background-color: var(--color-primary);
		box-shadow: 0 0 5px rgba(0, 0, 0, .5);
	}
	.custom-mobile-menu-background-wrapper {
		position: fixed;
		z-index: 2;
		top: 80px;
		left: 180px;
		width: calc(100% - 180px - 25px);
	}
	.custom-mobile-menu-outer-wrapper {
		max-width: 100% !important;
	}
	.builder-module-navigation .menu > li > a {
		position: relative;
		padding: 0.5em 1em;
		color: #fff;
	}
	.builder-module-navigation .menu > li:last-of-type > a {
		border: 2px solid #fff;
		color: #fff;
	}
	.builder-module-navigation .menu > li:last-of-type > a:hover {
		background-color: var(--color-primary);
	}
	.builder-module-navigation .menu > li:not(:first-of-type):not(:last-of-type) > a:before {
		content: "•";
		position: absolute;
		top: 10px;
		left: -2px;
		font-size: 10px;
	}

	.home .builder-container {
		padding-top: 0;
	}
	.home:not(.sticky) .custom-header-background-wrapper {
		position: absolute;
		background-color: transparent;
		box-shadow: none;
	}
	.home:not(.sticky) .header-logo {
		display: none;
	}
	.home:not(.sticky) .header-social,
	.home:not(.sticky) .header-no {
		/*color: #fff;*/
	}
	.home:not(.sticky) .header-social:hover,
	.home:not(.sticky) .header-no:hover {
		/*color: var(--color-primary);*/
	}
	.home:not(.sticky) .custom-mobile-menu-background-wrapper {
		position: absolute;
	}
	.home:not(.sticky) .builder-module-navigation .menu > li > a {
		/*color: #fff;*/
	}
}

@media (max-width: 1024px) {
	.header-logo {
		text-align: center;
	}
}

.banner-wrap {
	position: relative;
	padding-top: 80px;
	padding-bottom: 90px;
}
.banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.banner-bg:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(/wp-content/uploads/2023/03/banner-overlay.png);
	background-repeat: repeat-y;
	background-position: left;
}
.banner-inner {
	position: relative;
	padding-left: 50px;
	padding-right: 50px;
	max-width: 820px;
}
.banner-badge {
	text-align: center;
}
.banner-title {
	font-size: 115px;
	line-height: .8;
}
.banner-form {
	margin-top: 30px;
	border: 1px solid var(--color-primary);
	padding: 15px 50px 30px;
}
.banner-form-title {
	line-height: 28px;
}
.title-1 {
	font-size: 34px;
}
.title-2 {
	font-size: 40px;
}
.banner-form-wrap {
	flex: 1;
}
@media (max-width: 1024px) {
	.banner-wrap {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.banner-badge,
	.banner-form {
		display: none;
	}
	.banner-bg:after {
		background-position: center;
	}
	.banner-inner {
		padding-left: 15px;
		padding-right: 15px;
	}
	.banner-title .text-primary {
		font-size: 100px;
		display: block;
	}
	.banner-title-sm {
		font-size: 18px;
		margin-bottom: 0;
	}
}
#gform_wrapper_1 {
	margin-top: 0;
	margin-bottom: 0;
	position: relative;
}
#gform_wrapper_1 ul.gform_fields {
	display: flex;
	flex-wrap: wrap;
}
#gform_wrapper_1 input,
#gform_wrapper_1 textarea,
#gform_wrapper_1 select {
	color: #fff;
	background-color: transparent;
	border: 1px solid var(--color-primary);
	padding: 10px 10px;
}
#gform_wrapper_1 textarea {
	height: 70px;
}
#gform_wrapper_1 select option {
	color: #333;
}
#gform_wrapper_1 input::placeholder,
#gform_wrapper_1 textarea::placeholder {
	color: #fff;
}
#gform_wrapper_1 .gform_footer {
	padding: 0;
	margin: 0;
	position: absolute;
	right: 0;
	bottom: 7px;
	width: 49%;
	height: 70px;
}
#gform_wrapper_1 .gform_footer input {
	background-color: var(--color-primary);
	color: #fff;
	font-family: var(--font-custom);
	font-size: 24px;
	font-weight: 700;
	line-height: 15px;
	border: 1px solid var(--color-primary);
	margin-bottom: 0;
	width: 100%;
	height: 100%;
}
#gform_wrapper_1 .gform_footer input:hover {
	background-color: #000;
	border-color: #fff;
}

.custom-content-outer-wrapper {
	max-width: 100% !important;
}

.about-title .font-black {
	font-size: 85px;
}
@media (max-width: 767px) {
	.about-title .font-black {
		font-size: 40px;
	}
	.about-title .font-light {
		font-size: 20px;
	}
}

.service-image:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(/wp-content/uploads/2023/03/service-overlay.png);
	background-repeat: repeat-x;
	background-position: bottom;
}
.service-overlay {
	transition: .2s;
}
.service-item:hover .service-overlay {
	background-color: rgba(170, 45, 46, .8);
}
.service-title {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px;
	text-align: center;
}
.service-title h2 {
	margin-top: 0;
	margin-bottom: 5px;
	color: #fff;
	line-height: 1;
	text-transform: uppercase;
}
.service-item > a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.cta-bg {
	padding-top: 80px;
	padding-bottom: 150px;
}
.cta-buttons {
	margin-top: 80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 10px;
}
.cta-buttons a {
	width: 360px;
	height: 110px;
	padding: 40px;
	border: 2px solid var(--color-primary);
	font-size: 18px;
}
.cta-buttons a:first-child {
	font-family: var(--font-custom);
	font-weight: 900;
	color: #fff;
	background-color: var(--color-primary);
}
.cta-buttons a:first-child:hover {
	color: #000;
	background-color: #fff;
}
.cta-buttons a:last-child {
	color: #000;
}
.cta-buttons a:last-child:hover {
	color: #fff;
	background-color: var(--color-primary);
}
@media (max-width: 767px) {
	.cta-bg  {
		padding-top: 0;
		padding-bottom: 60px;
	}
	.cta-buttons {
		margin-top: 30px;
	}
	.cta-buttons a {
		width: 100%;
	}
}

.feature-bg {
	background-image: url(/wp-content/uploads/2023/03/feature-bg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	padding-top: 120px;
	padding-bottom: 160px;
}
.feature-inner {
	max-width: 560px;
}
.feature-inner ul {
	list-style: none;
}
.feature-inner ul li {
	margin-top: 20px;
	padding-left: 115px;
	background-image: url(/wp-content/uploads/2023/03/feature-icon.png);
	background-repeat: no-repeat;
	background-position: left;
}
.feature-inner ul li strong {
	color: var(--color-primary);
	font-family: var(--font-custom);
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
@media (max-width: 767px) {
	.feature-bg {
		background-image: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)),
			url(/wp-content/uploads/2023/03/feature-bg.jpg);
		padding-top: 60px;
		padding-bottom: 60px;
		text-align: center;
	}
	.feature-inner ul {
		margin-left: 0;
	}
	.feature-inner ul li {
		margin-top: 30px;
		padding-left: 0;
		padding-top: 80px;
		background-position: top;
	}
}

.custom-footer-outer-wrapper {
	max-width: 100% !important;
}

.testi-bg {
	background-color: #efefef;
}
.reviews-list.owl-carousel .owl-stage {
	display: flex;
}
.review-item {
	height: 100%;
}
.review-inner {
	background-color: #fff;
	border-radius: 10px;
	padding: 100px 40px 20px;
	text-align: center;
	background-image: url(/wp-content/uploads/2023/03/testi-quote.png);
	background-repeat: no-repeat;
	background-position: top 40px center;
	position: relative;
}
.review-inner:after {
	content: "";
	position: absolute;
	top: 100%;
	left: calc(50% - 60px);
	width: 119px;
	height: 47px;
	background-image: url(/wp-content/uploads/2023/03/testi-triangle.png);
}
.review-more a {
	display: inline-block;
	margin-top: 20px;
	color: #000;
	font-style: italic;
	text-transform: uppercase;
}
.review-rating-wrap {
	color: #fcd021;
}
.review-meta {
	margin-top: 80px;
	text-align: center;
	font-size: 18px;
	line-height: 1;
}
.review-reviewer {
	display: block;
	color: #000;
	font-family: var(--font-custom);
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}

.map-wrap iframe {
	width: 100%;
	height: 350px;
}

.footer-bg {
	background-color: #000;
}
.footer-bg a {
	color: #fff;
}
.footer-bg a:hover {
	color: var(--color-primary);
}

@media (max-width: 767px) {
	.footer-office .h2,
	.footer-general .h2,
	.footer-services .h2 {
		margin-left: 65px;
		margin-bottom: 15px;
	}
	.footer-services ul {
		margin-left: 65px;
	}
}

.info-box {
	display: flex;
}
.info-icon {
	width: 65px;
}
.info-content {
	width: calc(100% - 65px);
}

.custom-subfooter-outer-wrapper {
	max-width: 100% !important;
}
.subfooter-bg {
	padding-top: 10px;
	padding-bottom: 10px;
}
.subfooter-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.footer-text {
	flex: 1;
	margin-right: auto;
	font-family: var(--font-custom);
}
.footer-social a {
	margin-left: 5px;
	margin-right: 5px;
	color: #000;
	font-size: 18px;
}
.footer-social a:hover {
	color: var(--color-primary);
}
@media (max-width: 767px) {
	.subfooter-bg {
		padding-bottom: 20px;
	}
	.subfooter-inner {
		text-align: center;
		justify-content: center;
	}
	.footer-text {
		width: 100%;
		flex: auto;
		margin-bottom: 20px;
	}
}

.quote-button {
	position: fixed;
	z-index: 999;
	top: 330px;
	right: 0;
	transform: rotateZ(-90deg) translateY(126px);
	padding: 15px 40px;
	border: 2px solid #fff;
	border-radius: 15px 15px 0 0;
	background-color: var(--color-primary);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	transition: .2s;
	cursor: pointer;
}
.page-id-8 .quote-button {
	display: none;
}
@media (max-width: 1024px) {
	.builder-container {
		padding-bottom: 70px;
	}
	.quote-button {
		top: unset;
		bottom: 0;
		transform: none;
		text-align: center;
		width: 100%;
		border: none;
		border-radius: 0;
		padding: 5px 20px;
		line-height: 30px;
	}
	.quote-button span {
		display: block;
	}
	.quote-button .font-light {
		font-size: 32px;
	}
	.quote-button .font-black {
		font-size: 40px;
	}
}
@media (min-width: 1025px) {
	.home .quote-button {
		visibility: hidden;
		opacity: 0;
	}
	body:not(.home) .quote-button,
	.home.form-sticky .quote-button {
		visibility: visible;
		opacity: 1;
	}
}

.custom-page-header-background-wrapper {
	padding-top: 140px;
	padding-bottom: 140px;
	background-image: url(/wp-content/uploads/2023/03/page-header.jpg);
	position: relative;
}
.custom-page-header-background-wrapper:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(/wp-content/uploads/2023/03/page-header-overlay.png);
	background-repeat: repeat-x;
	background-position: bottom;
}
.custom-page-header-outer-wrapper {
	max-width: 100% !important;
	position: relative;
}
.custom-page-header {
	color: #fff;
	font-family: var(--font-custom);
	text-transform: uppercase;
	line-height: 1;
}
.custom-page-header h1 {
	margin-bottom: 0;
	font-size: 48px;
	font-weight: 900;
}
.custom-page-header .entry-subtitle {
	font-size: 34px;
	letter-spacing: .15em;
}
@media (max-width: 767px) {
	.custom-page-header-background-wrapper {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.custom-page-header-background-wrapper:before {
		background-position: center;
	}
	.custom-page-header h1 {
		margin-left: 15px;
		margin-right: 15px;
		font-size: 30px;
	}
	.custom-page-header .entry-subtitle {
		font-size: 20px;
	}
}

.contact-page-wrap {
	display: flex;
	flex-wrap: wrap;
	border-top: 3px solid #fff;
	border-bottom: 3px solid #fff;
}
.contact-page-content,
.contact-page-form {
	display: flex;
	align-items: center;
	width: 50%;
}
.contact-page-form .main-title {
	font-size: 36px;
}
.contact-page-content {
	font-size: 18px;
	background-color: #e5e5e5;
}
.contact-page-content-inner {
	width: 100%;
	max-width: 700px;
	padding: 60px;
	margin-left: auto;
}
.contact-social {
	font-size: 30px;
}
.contact-social a {
	color: inherit;
	margin: 0 10px;
}
.contact-social a:hover {
	color: var(--color-primary);
}
.contact-page-form {
	padding: 40px 0;
	background-color: var(--color-primary);
}
.contact-page-form-inner {
	width: 100%;
	max-width: 700px;
	padding: 40px;
}
@media (max-width: 1024px) {
	.contact-page-content,
	.contact-page-form {
		width: 100%;
	}
	.contact-page-content-inner {
		margin-right: auto;
	}
	.contact-page-form-inner {
		margin-left: auto;
		margin-right: auto;
	}
}
@media (max-width: 767px) {
	.contact-page-content-inner,
	.contact-page-form-inner {
		padding-left: 15px;
		padding-right: 15px;
	}
}

#gform_wrapper_2 {
	margin-top: 30px;
}
#gform_wrapper_2 input,
#gform_wrapper_2 textarea,
#gform_wrapper_2 select {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 5px;
	padding: 20px;
}
#gform_wrapper_2 select option {
	color: #333;
}
#gform_wrapper_2 input::placeholder,
#gform_wrapper_2 textarea::placeholder {
	color: #fff;
}
#gform_wrapper_2 .gform_footer input[type=submit] {
	background-color: #000;
	color: #fff;
	font-size: 24px;
	padding: 20px 60px;
	border-color: #000;
	border-radius: 0;
}
#gform_wrapper_2 .gform_footer input[type=submit]:hover {
	background-color: #fff;
	color: #000;
}

@media (min-width: 1025px) {
	.category-desc img {
		max-width: 50%;
	}
}

.category-main h2,
.category-desc h2 {
	font-size: 24px;
	text-transform: uppercase;
}
.category-main ul li h3 {
	margin: 0;
	font-size: 18px;
	line-height: 2;
}
.category-main ul li h3 a {
	font-family: var(--font-base);
}
@media (min-width: 767px) {
	.category-main ul {
		columns: 2;
	}
}
.category-map iframe {
	max-width: 100%;
}

.category-desc .recent-posts-list {
	display: block;
}
.category-desc .recent-post-item {
	box-shadow: none;
	display: block;
	text-align: left;
}
.category-desc .recent-post-item h2 a {
	color: inherit;
}
.category-desc .recent-posts-more {
	display: none;
}

/*@media (min-width: 1025px) {
	.page-id-61 .builder-container,
	.error404 .builder-container {
		padding-top: 0;
	}
	.page-id-61:not(.sticky) .custom-header-background-wrapper,
	.error404:not(.sticky) .custom-header-background-wrapper,
	.page-id-61:not(.sticky) .custom-mobile-menu-background-wrapper,
	.error404:not(.sticky) .custom-mobile-menu-background-wrapper {
		position: absolute;
	}
	.page-id-61:not(.sticky) .custom-header-background-wrapper,
	.error404:not(.sticky) .custom-header-background-wrapper {
		background-color: transparent;
		border: none;
	}
	.page-id-61,
	.error404 {
		padding-top: 0 !important;
	}
	.page-id-61:not(.sticky) .header-logo img,
	.error404:not(.sticky) .header-logo img {
		display: none;
	}

	.page-id-61:not(.sticky) .header-social,
	.error404:not(.sticky) .header-social,
	.page-id-61:not(.sticky) .header-no,
	.error404:not(.sticky) .header-no {
		color: #fff;
	}
	.page-id-61:not(.sticky) .header-social:hover,
	.error404:not(.sticky) .header-social:hover,
	.page-id-61:not(.sticky) .header-no:hover,
	.error404:not(.sticky) .header-no:hover {
		color: var(--color-primary);
	}
	.page-id-61:not(.sticky) .builder-module-navigation .menu > li > a,
	.error404:not(.sticky) .builder-module-navigation .menu > li > a {
		color: #fff;
		position: relative;
	}
	.page-id-61:not(.sticky) .builder-module-navigation .menu > li > a:hover,
	.error404:not(.sticky) .builder-module-navigation .menu > li > a:hover {
		color: var(--color-primary);
	}
	.page-id-61:not(.sticky) .builder-module-navigation .menu > li:not(:first-of-type):not(:last-of-type) > a:before,
	.error404:not(.sticky) .builder-module-navigation .menu > li:not(:first-of-type):not(:last-of-type) > a:before {
		color: #fff;
	}
}*/

.page-id-61 .custom-page-header-background-wrapper,
.error404 .custom-page-header-background-wrapper {
	display: none;
}
.page-id-61 .default-module-style-background-wrapper,
.error404 .default-module-style-background-wrapper {
	position: relative;
	background-image: url(/wp-content/uploads/2023/03/thank-bg.jpg);
}
.thank-bg,
.error404-content {
	padding-top: 300px;
	padding-bottom: 240px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.error404-content {
	padding-top: 240px;
	padding-bottom: 80px;
}
.thank-badge,
.error404-badge {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}
.error404-badge {
	padding: 20px 15px;
}
.thank-heading,
.error404-heading {
	color: #fff;
	font-family: var(--font-custom);
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}
.thank-text {
	color: #fff;
	font-size: 24px;
	line-height: 1.25;
}
.error404-text {
	margin-top: 40px;
	margin-bottom: 40px;
	color: #fff;
	font-size: 24px;
}
.error404-button {
	display: inline-block;
	background-color: var(--color-primary);
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	padding: 10px 30px;
}
.error404-button:hover {
	background-color: #000;
}
.thank-logo {
	position: absolute;
	top: 20px;
	left: 40px;
}
@media (max-width: 767px) {
	.thank-bg,
	.error404-content {
		height: auto;
		padding: 40px 15px;
	}
	.error404-logo {
		display: none;
	}
	.thank-logo {
		display: none;
	}
	.thank-heading,
	.error404-heading {
		font-size: 48px;
	}
	.thank-text,
	.error404-text {
		font-size: 18px;
	}
	.error404-text {
		margin-top: 0;
	}
}

.blog-item {
	box-shadow: 12px 12px 29px 0px rgba(0, 0, 0, 0.5);
}
.blog-image {
	position: relative;
	padding-top: 66.666666%;
}
.blog-image a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.blog-inner {
	background-color: #fff;
	padding: 20px 15px;
	text-align: center;
}
.blog-title {
	margin-top: 0;
	font-size: 24px;
}
.blog-button {
	margin-top: 20px;
}
.blog-button a {
	display: inline-block;
	padding: 10px 30px;
	background-color: var(--color-primary);
	color: #fff;
}
.blog-button a:hover {
	background-color: #000;
}