/*
Theme Name: Blank
Author: 405mediagroup
Author URI: https://www.405mediagroup.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blank
Tags: 
*/

:root {
	--color-acc: #f9a132;
	--color-text: #3a3a3a;
	--color-gray: #929292;
	--font-acc: 'nimbus-roman', sans-serif;
	--font-text: 'nimbus-sans', sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--color-text);
	font-family: var(--font-text);
	font-size: 16px;
	line-height: 1.5;
}

.text-text {
	color: var(--color-text);
}
.text-acc {
	color: var(--color-acc);
}
.text-gray {
	color: var(--color-gray);
}
.text-white {
	color: #fff;
}

.font-acc {
	font-family: var(--font-acc);
}
.font-text {
	font-family: var(--font-text);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-acc);
}

h1, .h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
}
h2, .h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
}
h3, .h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
}
.h4 {
	font-size: 24px;
}
.h5 {
	font-size: 20px;
}
.h6 {
	font-size: 18px;
}
@media (max-width: 767px) {
	h1, .h1 {
		font-size: 36px;
	}
	h2, .h2 {
		font-size: 30px;
	}
	h3, .h3 {
		font-size: 24px;
	}
	.h4 {
		font-size: 20px;
	}
	.h5 {
		font-size: 18px;
	}
	.h6 {
		font-size: 16px;
	}
}

.container,
.container-lg {
	width: 100%;
	max-width: 1300px;
	padding-left: 64px;
	padding-right: 64px;
	margin-left: auto;
	margin-right: auto;
}
.container-lg {
	max-width: 1500px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	grid-row-gap: 30px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
	padding-left: 15px;
	padding-right: 15px;
}
.col-1 {
	width: 8.333333%;
}
.col-2 {
	width: 16.666666%;
}
.col-3 {
	width: 25%;
}
.col-4 {
	width: 33.333333%;
}
.col-5 {
	width: 41.666666%;
}
.col-6 {
	width: 50%;
}
.col-7 {
	width: 58.333333%;
}
.col-8 {
	width: 66.666666%;
}
.col-9 {
	width: 75%;
}
.col-10 {
	width: 83.333333%;
}
.col-11 {
	width: 91.666666%;
}
.col-12 {
	width: 100%;
}

@media (max-width: 767px) {
	.container,
	.container-lg {
		padding-left: 15px;
		padding-right: 15px;
	}

	.col-1,
	.col-2,
	.col-3,
	.col-4,
	.col-5,
	.col-6,
	.col-7,
	.col-8,
	.col-9,
	.col-10,
	.col-11 {
		width: 100%;
	}

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

.flex {
	display: flex;
}
.inline-flex {
	display: inline-flex;
}

.flex-1 {
	flex: 1;
}

.items-center {
	align-items: center;
}
.items-stretch {
	align-items: stretch;
}
.items-end {
	align-items: flex-end;
}

.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;
}

.align-baseline {
	vertical-align: baseline;
}
.align-middle {
	vertical-align: middle;
}
.align-text-top {
	vertical-align: text-top;
}
.align-bottom {
	vertical-align: bottom;
}

.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-normal {
	font-weight: 400;
}
.font-light {
	font-weight: 300;
}
.font-extralight {
	font-weight: 200;
}
.font-thin {
	font-weight: 100;
}

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

.italic {
	font-style: italic;
}

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

.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-40 {
	padding-top: 40px;
}
.pb-40 {
	padding-bottom: 40px;
}
.pt-60 {
	padding-top: 60px;
}
.pb-60 {
	padding-bottom: 60px;
}
.pt-80 {
	padding-top: 80px;
}
.pb-80 {
	padding-bottom: 80px;
}

.mt-auto {
	margin-top: auto;
}
.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-40 {
	margin-top: 40px;
}
.mb-40 {
	margin-bottom: 40px;
}
.mt-60 {
	margin-top: 60px;
}
.mb-60 {
	margin-bottom: 60px;
}
.mt-80 {
	margin-top: 80px;
}
.mb-80 {
	margin-bottom: 80px;
}

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

p {
	margin-block-start: 0;
	margin-block-end: 1em;
}
p:last-child {
	margin-block-end: 0;
}

a {
	color: var(--color-acc);
	text-decoration: none;
	transition: .2s;
}

a svg {
	transition: .2s;
}

input,
textarea,
select {
	font-family: var(--font-text);
	font-size: 16px;
}

input[type=submit],
input[type=button] {
	cursor: pointer;
	transition: .2s;
}

select {
	appearance: none;
}

img,
iframe {
	vertical-align: middle;
	max-width: 100%;
}

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

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

/* custom style */

.page-content:after {
	content: "";
	display: block;
	clear: both;
}

.mobile-overlay {
	content: "";
	position: fixed;
	z-index: 3;
	visibility: hidden;
	opacity: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	transition: .2s;
}
.mobile-overlay .close {
	position: absolute;
	top: 0;
	right: 10px;
	color: #fff;
	font-size: 48px;
}
.header-mobile {
	display: none;
	padding: 10px;
	background-color: var(--color-acc);
}
.mobile-phone a {
	color: #282829;
	font-family: var(--font-acc);
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
}
.mobile-bars {
	width: 48px;
	height: 24px;
	background-image: url(../../uploads/2024/04/mobile-bars.png);
}
.mobile-open .mobile-bars {
	visibility: hidden;
}
@media (max-width: 1024px) {
	.mobile-open .mobile-overlay {
		visibility: visible;
		opacity: 1;
	}
	.header-mobile {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

.header {
	position: relative;
	z-index: 2;
	background-color: #fff;
	width: 100%;
	line-height: 1;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo {
	padding: 20px 25px;
}
.header-right {
	padding-right: 30px;
}
.header-info {
	text-align: right;
}
.header-social {
	margin-right: 20px;
	font-size: 30px;
}
.header-phone {
	font-family: var(--font-acc);
	font-size: 30px;
	font-weight: 700;
}
.header-info a {
	color: var(--color-text);
	vertical-align: middle;
}
.header-info a:hover {
	color: var(--color-acc);
}
.header-info a svg {
	fill: var(--color-text);
}
.header-info a:hover svg {
	fill: var(--color-acc);
}

.header-nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 1025px) {
	.sticky .header {
		position: fixed;
		top: 0;
	}
	.sticky:not(.home) {
		padding-top: 132px;
	}

	.header-nav ul.menu {
		margin-top: 20px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.header-nav ul.menu > li {
		position: relative;
	}
	.header-nav ul.menu > li > a {
		display: block;
		border: 2px solid transparent;
		color: var(--color-text);
		padding: 10px 20px;
		position: relative;
		text-transform: uppercase;
	}
	.header-nav ul.menu > li.menu-item-has-children > a:after {
		content: "\f107";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		margin-left: 5px;
		vertical-align: middle;
	}
	.header-nav ul.menu > li > a:hover {
		background-color: var(--color-acc);
		color: #fff;
	}
	.header-nav ul.menu > li:last-child > a {
		border-color: #fff;
		background-color: var(--color-acc);
		color: #fff;
	}
	.header-nav ul.menu > li:not(:first-child):not(:last-child) > a:before {
		content: "";
		position: absolute;
		top: 10px;
		left: -2px;
		width: 1px;
		height: 15px;
		background-color: var(--color-text);
	}
	.header-nav ul.menu > li ul {
		position: absolute;
		right: 0;
		background-color: #fff;
		border: 1px solid #aaa;
		width: max-content;
		max-width: 240px;
		min-width: 100%;
		visibility: hidden;
		opacity: 0;
		transition: .2s;
	}
	.header-nav ul.menu > li:hover > ul {
		visibility: visible;
		opacity: 100;
	}
	.header-nav ul.menu > li ul li {
		position: relative;
	}
	.header-nav ul.menu > li ul li a {
		display: block;
		padding: 10px 20px;
		color: var(--color-text);
	}
	.header-nav ul.menu > li ul li a:hover {
		background-color: var(--color-acc);
		color: #fff;
	}
	.header-nav ul.menu > li > ul li.menu-item-has-children > a:before {
		content: "\f104";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		position: absolute;
		left: 5px;
		top: 50%;
		transform: translateY(-50%);
	}
	.header-nav ul.menu > li ul li ul {
		top: 0;
		right: 100%;
		min-width: unset;
	}
	.header-nav ul.menu > li ul li:hover > ul {
		visibility: visible;
		opacity: 1;
	}

	.home:not(.sticky) .header {
		position: absolute;
		top: 0;
		background-color: transparent;
	}
	.home:not(.sticky) .header-logo img {
		visibility: hidden;
	}
	.home:not(.sticky) .header-info a {
		color: #fff;
	}
	.home:not(.sticky) .header-info a:hover {
		color: var(--color-acc);
	}
	.home:not(.sticky) .header-nav ul.menu > li > a {
		color: #fff;
	}
	/*.home:not(.sticky) .header-nav ul.menu > li:last-child > a {
		border-color: #fff;
		background-color: transparent;
	}
	.home:not(.sticky) .header-nav ul.menu > li:last-child > a:hover {
		border-color: var(--color-acc);
		background-color: var(--color-acc);
	}*/
	.home:not(.sticky) .header-nav ul.menu > li:not(:first-child):not(:last-child) > a:before {
		background-color: #fff;
	}
}

@media (min-width: 1280px) and (max-width: 1439px) {
	.header-nav ul.menu > li > a {
		padding: 10px 14px;
	}
}
@media (min-width: 1025px) and (max-width: 1279px) {
	.header-nav ul.menu > li > a {
		padding: 10px 8px;
		font-size: 12px;
	}
}

@media (max-width: 1024px) {
	.header-inner {
		justify-content: center;
	}
	.header-right {
		padding-right: 0
	}
	.header-info {
		display: none;
	}

	.header-nav {
		position: fixed;
		z-index: 3;
		top: 0;
		bottom: 0;
		left: -75%;
		width: 75%;
		overflow-y: auto;
		background-color: var(--color-acc);
		transition: .2s;
	}
	.mobile-open .header-nav {
		left: 0;
	}
	.header-nav ul.menu {
		display: block;
		margin: 10px 0 0 0;
		list-style-type: none;
	}
	.header-nav ul.menu > li.menu-item-has-children > a:after {
		content: "\25bc";
		position: absolute;
		right: 20px;
		color: #fff;
		cursor: pointer;
	}
	.header-nav ul.menu > li.menu-item-has-children > ul {
		max-height: 0;
		transition: .2s;
		overflow: hidden;
	}
	.header-nav ul.menu > li.open > ul {
		max-height: max-content;
	}
	.header-nav ul.menu li > a {
		display: block;
		border-bottom: 1px solid #fff;
		color: #fff;
		padding: 10px 20px;
		text-transform: uppercase;
		position: relative;
	}
	.header-nav ul.menu ul li > a {
		padding-left: 40px;
	}
	.header-nav ul.menu ul li li > a {
		padding-left: 60px;
	}
}

.side-button {
	z-index: 9;
	position: fixed;
	padding: 15px 30px 10px;
	font-family: var(--font-acc);
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	background-color: var(--color-acc);
	color: #fff;
	text-align: center;
}
@media (min-width: 768px) {
	.side-button {
		top: 330px;
		right: 0;
		transform: rotateZ(-90deg) translateY(121px);
		border-radius: 15px 15px 0 0;
	}
}
@media (max-width: 767px) {
	body {
		padding-bottom: 64px;
	}
	.side-button {
		bottom: 0;
		width: 100%;
		padding: 20px 15px;
	}
}

.gform_wrapper {
	position: relative;
}
.gform_heading {
	display: none;
}
@media (max-width: 640px) {
	.gform_wrapper.gravity-theme .ginput_complex span:last-child {
		margin-bottom: 0;
	}
}

.banner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 880px;
}
.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;
}
.banner-bg-inner {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.banner-bg-inner:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: repeat-y;
	background-position: left;
}
.banner-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.banner-content {
	position: relative;
	max-width: 780px;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}
.banner-form {
	max-width: 670px;
	border-top-left-radius: 50px;
	border: 2px solid #fff;
	padding: 5px;
}
.banner-form-title {
	margin-top: 5px;
	margin-bottom: 10px;
}
.banner-form .gform_wrapper.gravity-theme .gform_fields {
	grid-gap: 8px;
}
.banner-form .gform_wrapper.gravity-theme .gfield input,
.banner-form .gform_wrapper.gravity-theme .gfield select {
	border-radius: 3px;
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
}
.banner-form .gform_wrapper.gravity-theme .gfield input::placeholder {
	color: #fff;
}
.banner-form .gform_wrapper.gravity-theme .gfield select {
	padding: 8px 6px;
}
.banner-form .gform_wrapper.gravity-theme .gfield select option {
	color: #333;
}
.banner-form .gform_wrapper.gravity-theme .gform_footer {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 0;
	width: calc(50% - 4px);
}
.banner-form .gform_wrapper.gravity-theme .gform_footer input {
	margin-bottom: 0;
	padding: 0;
	border: none;
	background-color: var(--color-acc);
	color: var(--color-text);
	width: 100%;
	font-family: var(--font-text);
	font-size: 18px;
	font-weight: 700;
	line-height: 36px;
	text-transform: uppercase;
}
.banner-form .gform_wrapper.gravity-theme .gform_footer input:hover {
	background-color: #fff;
}

.rounded-bg {
	position: relative;
}
.rounded-bg:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100px;
	background-image: url(../../uploads/2024/04/banner-bottom.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
@media (max-width: 1024px) {
	.banner {
		min-height: auto;
		padding-top: 160px;
		padding-bottom: 100px;
	}
	.banner-bg:after {
	}
	.banner-bg-inner:after {
	}
	.banner-form {
		display: none;
	}
	.rounded-bg:after {
		height: 36px;
		background-image: url(../../uploads/2024/04/banner-bottom-1.png);
	}
}

.service-item {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
}
.service-image {
	position: relative;
	padding-top: 120%;
}
.service-image-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.service-image-inner:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(../../uploads/2024/04/service-overlay.png);
	background-position: bottom;
	background-repeat: repeat-x;
}
.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.service-title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px 15px;
	text-align: center;
	transition: .2s;
	visibility: visible;
	opacity: 1;
}
.service-item:hover .service-title {
	visibility: hidden;
	opacity: 0;
}
.service-title h2 {
	margin-bottom: 5px;
}
.service-inner {
	background-color: rgba(249, 161, 50, .6);
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: .2s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-align: center;
	padding: 100px 15px 25px;
}
.service-item:hover .service-inner {
	visibility: visible;
	opacity: 1;
}
.service-buttons {
	margin-top: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 5px 0;
	position: relative;
}
.service-buttons:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(50% - 1px);
	width: 2px;
}
.service-buttons.has-video:after {
	background-color: var(--color-acc);
}
.service-button {
	width: 50%;
	padding: 0 20px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	grid-gap: 15px;
	line-height: 1;
}
.service-play,
.service-link {
	width: 50px;
	height: 50px;
	background-color: var(--color-acc);
	color: #fff;
	border: 2px solid #fff;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.feature-bg {
	background-size: cover;
	background-position: center;
}
.feature-inner {
	padding-left: 30px;
}
.feature-inner ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	grid-gap: 50px;
}
.feature-inner ul li {
	min-height: 90px;
	padding-left: 120px;
	position: relative;
	text-transform: uppercase;
}
.feature-inner ul li strong {
	font-size: 24px;
}
.feature-inner ul li:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 90px;
	height: 100%;
	background-image: url(../../uploads/2024/04/feature-icon.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 74px 74px;
	transition: .2s;
}
.feature-inner ul li:hover:before {
	background-size: 90px 90px;
}
@media (max-width: 767px) {
	.feature-inner {
		padding-left: 0;
	}
	.feature-inner .h4 {
		text-align: center;
	}
	.feature-inner ul li {
		padding-left: 0;
		padding-top: 120px;
		text-align: center;
		justify-content: center;
	}
	.feature-inner ul li:before {
		width: 100%;
		height: 90px;
	}
}

.video-bg {
	background-image: url(../../uploads/2024/04/video-bg.jpg);
	background-size: cover;
	background-position: center;
	padding-top: 200px;
	padding-bottom: 140px;
}
.video-inner {
	max-width: 600px;
	margin-left: auto;
}
.video-play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 133px;
	height: 133px;
	border: 2px solid #fff;
	border-radius: 70px;
	background-color: var(--color-acc);
	color: #fff;
	font-size: 48px;
	padding-left: 10px;
	margin-left: 40px;
}
@media (max-width: 767px) {
	.video-bg {
		background-image: url(../../uploads/2024/04/video-bg-1.jpg);
		padding-top: 60px;
		padding-bottom: 160px;
	}
	.video-button {
		flex-direction: column;
		
	}
	.video-button .h4 {
		order: 1;
	}
	.video-play {
		margin-bottom: 40px;
		margin-left: 0;
	}
}

.cta-bg {
	background-image: url(../../uploads/2024/04/cta-bg.jpg);
	background-size: cover;
	background-position: center;
	padding-top: 140px;
	padding-bottom: 140px;
}
.cta-inner {
	max-width: 680px;
}
.cta-button {
	display: inline-block;
	background-color: var(--color-acc);
	color: #fff;
	padding: 20px 60px;
	border: 2px solid #fff;
	border-radius: 0;
	font-size: 24px;
	margin: 0 5px;
}
.cta-button:hover {
	background-color: #fff;
	color: var(--color-text);
}
@media (max-width: 767px) {
	.cta-bg {
		background-image: url(../../uploads/2024/04/cta-bg-1.jpg);
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.cta-button {
		margin: 5px 0;
	}
}

.testi-bg .owl-carousel .owl-stage {
	display: flex;
}
.testi-bg .owl-carousel .owl-item img {
	display: inline-block;
	width: auto;
}
.review-item {
	padding: 30px 30px;
	height: 100%;
}
.review-inner {
	height: 100%;
	padding: 30px 30px 20px;
	border-radius: 10px;
	box-shadow: 0px 2px 34.58px 3.42px rgba(40, 40, 35, 0.2);
	background-color: #231f20;
	display: flex;
	flex-direction: column;
	position: relative;
}

.map-bg iframe {
	width: 100%;
	height: 270px;
}

.bbb-inner {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	grid-gap: 40px;
}

.footer-bg {
	padding-top: 120px;
	padding-bottom: 100px;
	background-color: #231f20;
	background-image: url(../../uploads/2024/04/footer-bg.jpg);
	background-size: cover;
	background-position: center;
	line-height: 2;
}
@media (min-width: 1280px) {
	.footer-about {
		padding-right: 100px;
	}
}

.menu-footernav-container ul {
	padding-left: 0;
	list-style: none;
}
.menu-footernav-container ul li {
	margin-bottom: 5px;
}
.menu-footernav-container ul li a {
	color: inherit;
}
.menu-footernav-container ul li a:before {
	content: "\f0c1";
	font-family: "Font Awesome 6 Free";
	font-size: 14px;
	font-weight: 900;
	margin-right: 10px;
	color: var(--color-acc);
}
.menu-footernav-container ul li a:hover {
	color: var(--color-acc);
}

.footer-social {
	display: flex;
	align-items: center;
	column-gap: 20px;
	line-height: 1
}
.footer-social a {
	color: var(--color-text);
}
.footer-social a:hover {
	color: var(--color-acc);
}
.footer-social a svg {
	fill: var(--color-text);
}
.footer-social a:hover svg {
	fill: var(--color-acc);
}
@media (max-width: 767px) {
	.footer-bg {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.subfooter-bg {
		padding-left: 15px;
		padding-right: 15px;
		text-align: center
	}
	.footer-social {
		width: 100%;
		justify-content: center;
	}
}

.page-header-wrap {
	padding-top: 220px;
	padding-bottom: 240px;
}
.page-header-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-header-overlay {
	background-repeat: repeat-y;
	background-position: left;
}
.page-header h1 {
	margin: 0;
	color: #fff;
	font-size: 56px;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	padding-bottom: 20px;
}
.page-header h1 strong {
	color: var(--color-acc);
}
.page-header h1:after {
	content: "";
	position: absolute;
	left: 16%;
	right: 16%;
	bottom: 0;
	height: 4px;
	background-color: var(--color-acc);
}
@media (max-width: 767px) {
	.page-header-wrap {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.page-header-overlay {
		background-color: rgba(0, 0, 0, .3);
		background-position: center;
	}
	.page-header {
		text-align: center;
	}
	.page-header h1 {
		font-size: 36px;
	}
}

.contact-map,
.contact-map iframe {
	width: 100%;
	height: 100%;
}
.contact-map,
.contact-content {
	border: 2px solid #bebebe;
	border-radius: 15px;
	overflow: hidden;
}
.contact-content {
	padding: 70px 60px;
	background-color: #f4f4f4;
}
@media (max-width: 767px) {
	.contact-content {
		padding: 40px 15px;
	}
	.contact-map {
		height: 320px;
	}
}

#gform_wrapper_2 {
	margin: 0;
	position: relative;
}
#gform_wrapper_2 .gform_fields {
	grid-row-gap: 10px;
}
#gform_wrapper_2 input,
#gform_wrapper_2 textarea,
#gform_wrapper_2 select {
	background-color: #f4f4f4;
	border: 2px solid #bebebe;
	border-radius: 30px;
	padding: 15px 15px;
	vertical-align: middle;
}
#gform_wrapper_2 input::placeholder,
#gform_wrapper_2 textarea::placeholder {
	color: #8f8f8f;
}
#gform_wrapper_2 textarea {
	height: 140px;
}
#gform_wrapper_2 .gfield_checkbox {
	margin: 40px auto 30px;
	max-width: 560px;
	columns: 2;
}
#gform_wrapper_2 .gfield_checkbox .gchoice {
	margin-bottom: 20px;
}
#gform_wrapper_2 .gfield-choice-input+label {
	max-width: 100%;
}
#gform_wrapper_2 .gform_footer {
	margin-top: 40px;
	padding: 0;
}
#gform_wrapper_2 .gform_footer .button {
	padding: 20px 120px;
	margin: 0 auto;
	background-color: var(--color-acc);
	color: #fff;
	font-family: var(--font-acc);
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 50px;
}
#gform_wrapper_2 .gform_footer .button:hover {
	background-color: var(--color-text);
}
@media (max-width: 767px) {
	#gform_wrapper_2 .gfield_checkbox {
		columns: 1;
	}
	#gform_wrapper_2 .gform_footer .button {
		padding-left: 15px;
		padding-right: 15px;
		width: 100%;
	}
}

.city-about-bg h2 {
	margin-top: 0;
	margin-bottom: 15px;
	font-family: var(--font-text);
	font-size: 36px;
	font-weight: 300;
	text-transform: uppercase;
	text-align: center;
}
.city-about-bg h2 strong {
	display: block;
	font-family: var(--font-acc);
	font-size: 48px;
}
@media (max-width: 767px) {
	.city-about-bg h2 {
		font-size: 24px;
	}
	.city-about-bg h2 strong {
		font-size: 30px;
	}
}

.city-service-bg {
	background-color: var(--color-acc);
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
}
.city-map {
	border: 2px solid #fff;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
}
.city-map * {
	width: 100%;
	height: 100%;
}
.city-map iframe {
	min-height: 540px;
}
.city-service {
	height: 100%;
	background-color: #fff;
	border-radius: 20px;
	padding: 60px 60px;
}
.city-service h2 {
	margin-top: 0;
	margin-bottom: 60px;
	font-family: var(--font-text);
	font-size: 24px;
	font-weight: 300;
	text-transform: uppercase;
	text-align: center;
}
.city-service h2 strong {
	font-family: var(--font-acc);
	font-size: 30px;
	font-weight: 700;
}
.city-service ul {
	margin: 0;
	font-size: 18px;
	column-count: 2;
	column-gap: 60px;
}
.city-service ul li {
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.city-service-bg {
		padding-bottom: 80px;
	}
	.city-service-bg:before {
		height: 24px;
		background-size: 100% 24px;
	}
	.city-map iframe {
		min-height: 320px;
	}
	.city-service {
		padding: 30px 15px;
	}
	.city-service .mt-60 {
		margin-top: 30px;
	}
	.city-service ul {
		font-size: 18px;
		column-count: 1;
	}
}

.things-bg {
	background-color: #1e1e1e;
	color: #fff;
}
.things-bg h2 {
	margin-top: 0;
	margin-bottom: 15px;
	text-transform: uppercase;
	text-align: center;
}

.city-blogs-bg h2 {
	margin-top: 0;
	margin-bottom: 15px;
	text-transform: uppercase;
	text-align: center;
}
.city-blogs h2 {
	font-size: 24px;
	line-height: 1;
	margin-bottom: 40px;
}

.post-content:after {
	content: "";
	display: block;
	clear: both;
}

.page-id-61 .cta-bg,
.error404 .cta-bg {
	display: none;
}

.thank-bg,
.error-bg {
	background-image: url(../../uploads/2024/04/thank-bg.jpg);
	background-size: cover;
	background-position: center;
	min-height: 860px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
@media (max-width: 767px) {
	.thank-bg,
	.error-bg {
		min-height: auto;
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.thank-bg p {
	margin-top: 60px;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
}

.error-bg p {
	margin-top: 20px;
	margin-bottom: 80px;
	color: #fff;
	font-size: 24px;
	text-transform: uppercase;
}
.error-bg a {
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 0;
	background-color: var(--color-acc);
	color: var(--color-text);
	padding: 20px 40px;
	font-family: var(--font-acc);
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0px 11px 20px 0px rgba(0, 0, 0, 0.39);
}
.error-bg a:hover {
	background-color: #fff;
}
@media (max-width: 767px) {
	.error-bg img {
		display: none;
	}
	.error-bg p {
		margin-top: 0;
	}
}

.blog-item {
	height: 100%;
	border-radius: 10px;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 17px 29px 0px rgba(85, 85, 85, 0.2);
	border: 2px solid transparent;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: .2s;
}
.blog-item:hover {
	border-color: var(--color-acc);
}
.blog-image {
	position: relative;
	padding-top: 66.666667%;
}
.blog-image a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.blog-image a:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: .2s;
}
.blog-item:hover .blog-image a:after {
	background-color: rgba(249, 161, 50, .7);
}
.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-inner {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	padding: 20px 15px;
}
.blog-title {
	margin-top: 0;
	font-family: var(--font-acc);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
}
.blog-title a {
	color: var(--color-text);
}
.blog-title a:hover {
	color: var(--color-acc);
}
.blog-excerpt {
	margin-bottom: 20px;
	text-align: center;
}
.blog-button {
	margin-top: auto;
	text-align: center;
}
.blog-button a {
	display: inline-block;
	background-color: var(--color-acc);
	color: var(--color-text);
	font-size: 16px;
	padding: 10px 30px;
	border-radius: 0;
}
.blog-button a:hover {
	color: #fff;
}
