/*
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: #ed1c24;
	--color-text: #3a3a3a;
	--color-gray: #b7b7b7;
	--font-acc: 'MicroExtendFLF-Bold', sans-serif;
	--font-text: 'Open Sans', sans-serif;
}

@font-face {
	font-family: 'MicroExtendFLF-Bold';
	src: url('MicroExtendFLF-Bold.eot');
    src: url('MicroExtendFLF-Bold.eot?#iefix') format('embedded-opentype'),
        url('MicroExtendFLF-Bold.woff2') format('woff2'),
        url('MicroExtendFLF-Bold.woff') format('woff'),
        url('MicroExtendFLF-Bold.ttf') format('truetype'),
        url('MicroExtendFLF-Bold.svg#MicroExtendFLF-Bold') format('svg');
	font-weight: 700;
}

* {
	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: 900;
	line-height: 1;
}
h2, .h2 {
	font-size: 36px;
	font-weight: 900;
	line-height: 1;
}
h3, .h3 {
	font-size: 30px;
	font-weight: 900;
	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: 1280px;
	padding-left: 64px;
	padding-right: 64px;
	margin-left: auto;
	margin-right: auto;
}
.container-lg {
	max-width: 1536px;
}

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

.flex-1 {
	flex: 1;
}

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

.align-middle {
	vertical-align: middle;
}

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

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

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

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 */

.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: #141315;
}
.mobile-phone a {
	color: #fff;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
}
.mobile-bars {
	width: 48px;
	height: 24px;
	background-image: url(../../uploads/2024/02/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: 20px 30px 20px 0;
}
.header-info {
	text-align: right;
}
.header-social {
	margin-right: 20px;
	font-size: 30px;
}
.header-phone {
	font-size: 36px;
	font-weight: 900;
}
.header-info a {
	color: var(--color-text);
	vertical-align: middle;
}
.header-info a:hover {
	color: 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: 127px;
	}

	.header-nav ul.menu {
		margin-top: 10px;
		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;
	}
	.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: 16px;
		left: -3px;
		width: 3px;
		height: 3px;
		border-radius: 3px;
		background-color: var(--color-text);
	}
	.header-nav ul.menu > li ul {
		position: absolute;
		left: 0;
		background-color: #fff;
		border: 1px solid #aaa;
		width: max-content;
		max-width: 260px;
		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 10px 10px;
		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: "\f105";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		position: absolute;
		right: 5px;
		top: 50%;
		transform: translateY(-50%);
	}
	.header-nav ul.menu > li ul li ul {
		top: 0;
		left: 100%;
	}
	.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 (max-width: 1024px) {
	.header-inner {
		justify-content: center;
	}
	.header-right {
		padding-right: 0
	}
	.header-info {
		display: none;
	}
	.header-logo {
		padding-left: 10px;
		padding-right: 10px;
	}

	.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-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(119px);
		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: 960px;
}
@media (min-width: 1536px) {
	.banner {
		min-height: 1060px;
	}
}
@media (min-width: 2000px) {
	.banner {
		min-height: 1200px;
	}
}
.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-image: url(../../uploads/2024/02/banner-top.png);
	background-repeat: repeat-x;
	background-position: top;
}
.banner-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}
.banner-content {
	margin-bottom: 100px;
	position: relative;
	margin-left: 120px;
	max-width: 690px;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}
.banner-content img {
	width: 376px;
}
@media (min-width: 2000px) {
	.banner-content {
		max-width: 50%;
		margin-bottom: 200px;
	}
	.banner-content img {
		width: 752px;
	}
}
.banner-content .h2 {
	font-size: 50px;
}
.banner-button {
	margin-top: 20px;
	display: inline-block;
	width: 100%;
	max-width: 320px;
	padding: 20px;
	background-color: var(--color-acc);
	color: #fff;
	border: 2px solid #fff;
	border-radius: 10px;
	/*font-family: var(--font-acc);*/
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}
.banner-button:hover {
	background-color: var(--color-text);
}
.banner-form {
	margin: 20px auto 0;
	max-width: 470px;
}
.banner-form-title img {
	margin-right: 15px;
}
.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;
}
.banner-form .gform_wrapper.gravity-theme .gfield input::placeholder {
	color: #fff;
}
.banner-form .gform_wrapper.gravity-theme .gfield input,
.banner-form .gform_wrapper.gravity-theme .gfield select {
	color: #fff;
}
.banner-form .gform_wrapper.gravity-theme .gfield select {
	padding: 7px 6px;
}
.banner-form .gform_wrapper.gravity-theme .gfield select option {
	color: #333;
}
.banner-form .gform_wrapper.gravity-theme .gform_footer {
	margin: 8px 0 0;
	padding: 0;
}
.banner-form .gform_wrapper.gravity-theme .gform_footer input {
	margin-bottom: 0;
	padding: 10px;
	border: 1px solid #fff;
	background-color: var(--color-acc);
	color: #fff;
	width: 100%;
	font-family: var(--font-text);
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
}
.banner-form .gform_wrapper.gravity-theme .gform_footer input:hover {
	background-color: var(--color-gray);
	color: #000;
}

@media (max-width: 1024px) {
	.banner {
		min-height: auto;
		padding-top: 140px;
		padding-bottom: 80px;
	}
	.banner-bg:after {
	}
	.banner-bg-inner:after {
		background-image: url(../../uploads/2024/02/banner-bottom.png);
		background-repeat: repeat-x;
		background-position: bottom;
	}
	.banner-content {
		margin-top: 0;
		margin-left: 0;
	}
	.banner-form {
		display: none;
	}
}

.rounded-bg {
	position: relative;
}
.rounded-bg:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 166px;
	background-image: url(../../uploads/2024/03/rounded-bg.png);
	background-size: 100% 100%;
}

.about-bg h1 {
	margin-top: 0;
	font-size: 24px;
	font-weight: 300;
	line-height: 48px;
	text-align: center;
}
.about-bg h1 strong {
	font-size: 60px;
	font-weight: 700;
}
@media (max-width: 767px) {
	.about-bg h1 {
		font-size: 18px;
		line-height: 36px;
	}
	.about-bg h1 strong {
		font-size: 48px;
	}
}

.logo-title {
	width: 140px;
	height: 8px;
	background-color: var(--color-acc);
	margin: 20px auto;
}
.about-bg .logo-title {
	width: 216px;
}

.service-item {
	position: relative;
}
.service-image {
	position: relative;
	padding-top: 125%;
}
.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/02/service-overlay.png);
	background-position: bottom;
	background-repeat: repeat-x;
}
.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.service-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: .2s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-align: center;
}
.service-title {
	margin-bottom: 20px;
}
.service-item h2 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	font-weight: 900;
	text-transform: uppercase;
}
.service-button {
	font-size: 18px;
}
.service-button i {
	margin-left: 15px;
}
.service-item:hover .service-inner {
	background-color: rgba(142, 11, 11, .5);
}
.service-item:hover h2 .text-gray {
	color: #fff;
}
.service-item:hover .service-button {
	color: #fff;
}

.feature-bg {
	padding-top: 120px;
	padding-bottom: 100px;
	background-image: url(../../uploads/2024/02/feature-bg.jpg);
	background-size: cover;
	background-position: center;
}
.feature-inner {
	max-width: 768px;
}
.feature-inner .h1 {
	margin-left: 150px;
}
.feature-inner ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	grid-gap: 60px;
}
.feature-inner ul li {
	min-height: 100px;
	padding-left: 150px;
	color: #fff;
	font-size: 18px;
	position: relative;
}
.feature-inner ul li strong {
	font-family: var(--font-acc);
	font-size: 30px;
	font-weight: 900;
	text-transform: uppercase;
}
.feature-inner ul li:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 120px;
	height: 120px;
	background-position: left 10px top 10px;
	background-repeat: no-repeat;
	background-size: 100px 100px;
	transition: .2s;
}
.feature-inner ul li:nth-child(1):before {
	background-image: url(../../uploads/2024/03/feature-icon-1.png);
}
.feature-inner ul li:nth-child(2):before {
	background-image: url(../../uploads/2024/03/feature-icon-2.png);
}
.feature-inner ul li:nth-child(3):before {
	background-image: url(../../uploads/2024/03/feature-icon-3.png);
}
.feature-inner ul li:hover:before {
	background-position: left top;
	background-size: 120px 120px;
}
@media (max-width: 767px) {
	.feature-bg {
		background-image: url(../../uploads/2024/02/feature-bg-1.jpg);
		background-position: bottom;
		padding-bottom: 480px;
	}
	.feature-inner .h1 {
		margin-left: 0;
	}
	.feature-inner ul li {
		padding-left: 0;
		padding-top: 160px;
		text-align: center;
		justify-content: center;
	}
	.feature-inner ul li strong {
		font-size: 24px;
		display: block;
		margin-bottom: 10px;
	}
	.feature-inner ul li br {
		display: none;
	}
	.feature-inner ul li:before {
		left: 50%;
		transform: translatex(-50%);
		background-position: top 10px center;
	}
	.feature-inner ul li:after:before {
		background-position: top center;
	}
}

.cta-bg {
	padding-top: 120px;
	padding-bottom: 120px;
	background-image: url(../../uploads/2024/02/cta-bg.jpg);
	background-size: cover;
	background-position: center;
}
.cta-inner {
	max-width: 580px;
	margin-left: auto;
}
.cta-inner .more-button {
	margin-top: 60px;
}
@media (max-width: 767px) {
	.cta-bg {
		padding-top: 660px;
		padding-bottom: 60px;
		background-image: url(../../uploads/2024/02/cta-bg-1.jpg);
	}
}

.more-button {
	display: inline-block;
	background-color: var(--color-acc);
	color: #fff;
	padding: 40px 100px;
	border: 2px solid #fff;
	/*font-family: var(--font-acc);*/
	font-size: 18px;
	font-weight: 900;
}
.more-button:hover {
	background-color: var(--color-text);
}

.testi-bg .owl-carousel .owl-stage {
	display: flex;
}
.review-item {
	padding: 30px 30px;
	height: 100%;
}
.review-inner {
	height: 100%;
	padding: 30px 30px 20px;
	border-radius: 10px;
	box-shadow: 5px 5px 19.74px 1.26px rgba(0, 0, 0, 0.25);
	background-color: #fff;
	display: flex;
	flex-direction: column;
	position: relative;
}
.testi-bg .owl-carousel .owl-item img {
	display: inline-block;
	width: auto;
}

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

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

.menu-footernav-container ul {
	padding-left: 0;
	list-style: none;
}
.menu-footernav-container ul li {
	margin-bottom: 10px;
}
.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);
}

.footer-social {
	display: flex;
	align-items: center;
	column-gap: 20px;
	font-size: 24px;
}
.footer-social a {
	color: var(--color-text);
}
.footer-social a:hover {
	color: var(--color-acc);
}
@media (max-width: 767px) {
	.footer-bg {
		background-image: none;
		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: 200px;
	padding-bottom: 160px;
}
.page-header-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-header-overlay {
	background-image: url(../../uploads/2024/02/page-header-overlay.png);
	background-repeat: repeat-y;
	background-position: left;
}
.page-header h1 {
	margin: 0 0 20px;
	color: #fff;
	font-size: 36px;
	font-weight: 900;
	text-transform: uppercase;
}
@media (max-width: 767px) {
	.page-header-wrap {
		padding-top: 120px;
		padding-bottom: 80px;
	}
	.page-header-overlay {
		background-position: center;
	}
	.page-header {
		text-align: center;
	}
	.page-header h1 {
		font-size: 30px;
	}
}

.page-id-8 .cta-bg {
	display: none;
}

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

#gform_wrapper_2 {
	margin: 0;
	position: relative;
}
#gform_wrapper_1 .gform_fields,
#gform_wrapper_2 .gform_fields {
	grid-row-gap: 10px;
}
#gform_wrapper_1 input,
#gform_wrapper_1 textarea,
#gform_wrapper_1 select,
#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_1 input::placeholder,
#gform_wrapper_1 textarea::placeholder,
#gform_wrapper_2 input::placeholder,
#gform_wrapper_2 textarea::placeholder {
	color: #8f8f8f;
}
#gform_wrapper_1 textarea,
#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_1 .gfield_label {
	text-transform: uppercase;
}
#gform_wrapper_2 .gform_footer {
	margin-top: 0;
	padding: 0;
}
#gform_wrapper_1 .gform_button,
#gform_wrapper_2 .gform_button {
	padding: 20px 120px;
	margin: 40px auto 0;
	background-color: #000;
	color: #fff;
	/*font-family: var(--font-acc);*/
	font-size: 24px;
	font-weight: 900;
	text-transform: uppercase;
	border-radius: 50px;
}
#gform_wrapper_2 .gform_button:hover {
	background-color: var(--color-acc);
}
#gform_wrapper_1 .gform_button {
	background-color: var(--color-acc);
}
#gform_wrapper_1 .gform_button:hover {
	background-color: var(--color-gray);
}
@media (max-width: 767px) {
	#gform_wrapper_2 .gfield_checkbox {
		columns: 1;
	}
	#gform_wrapper_2 .gform_button {
		padding-left: 15px;
		padding-right: 15px;
		width: 100%;
	}
}

.city-about-bg h2 {
	margin-top: 15px;
	font-size: 36px;
	font-weight: 300;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
}
.city-about-bg h2 strong {
	display: block;
	font-size: 80px;
	font-weight: 900;
}
@media (max-width: 767px) {
	.city-about-bg h2 {
		font-size: 24px;
	}
	.city-about-bg h2 strong {
		font-size: 36px;
	}
}

.city-service-bg {
	background-color: #000;
	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-size: 24px;
	font-weight: 300;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
}
.city-service h2 strong {
	font-size: 30px;
	font-weight: 900;
}
.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: 60px 15px 30px;
	}
	.city-service h2 {
		margin-bottom: 20px;
	}
	.city-service .mt-60 {
		margin-top: 30px;
	}
	.city-service ul {
		font-size: 18px;
		column-count: 1;
	}
}

.city-feature-bg {
	padding-top: 80px;
	padding-bottom: 120px;
}
.city-feature-bg h2 {
	margin-top: 0;
}
.city-feature-bg ul {
	margin: 40px 0 0;
	padding-left: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	grid-row-gap: 60px;
}
.city-feature-bg ul li {
	width: 33.33%;
	padding: 160px 30px 0;
	font-size: 18px;
	text-align: center;
	position: relative;
}
.city-feature-bg ul li:before {
	content: "";
	position: absolute;
	top: 0;
	height: 120px;
	left: 0;
	right: 0;
	background-size: 100px 100px;
	background-position: center;
	background-repeat: no-repeat;
	transition: .2s;
}
.city-feature-bg ul li:nth-child(1):before {
	background-image: url(../../uploads/2024/02/feature-icon-4.png);
}
.city-feature-bg ul li:nth-child(2):before {
	background-image: url(../../uploads/2024/02/feature-icon-5.png);
}
.city-feature-bg ul li:nth-child(3):before {
	background-image: url(../../uploads/2024/02/feature-icon-6.png);
}
.city-feature-bg ul li:hover:before {
	background-size: 120px 120px;
}
.city-feature-bg ul li strong {
	font-family: var(--font-acc);
	font-size: 24px;
	font-weight: 900;
	text-transform: uppercase;
	display: block;
}
@media (max-width: 767px) {
	.city-feature-bg ul li {
		width: 100%;
	}
}

.things-bg {
	background-color: #000;
}
.things-bg h2 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
}

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

.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/02/thank-bg.jpg);
	background-size: cover;
	background-position: center;
	min-height: 910px;
	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: 40px;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
}

.error-bg p {
	margin-top: 60px;
	margin-bottom: 60px;
	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: #fff;
	padding: 20px 40px;
	font-family: var(--font-acc);
	font-size: 24px;
	font-weight: 900;
	text-transform: uppercase;
}
.error-bg a:hover {
	background-color: var(--color-text);
}
@media (max-width: 767px) {
	.error-bg img {
		display: none;
	}
	.error-bg p {
		margin-top: 0;
	}
}

.blog .page-content {
	padding-bottom: 120px;
}
.blog-item {
	height: 100%;
	box-shadow: 6px 8px 32.9px 2.1px rgba(0, 0, 0, 0.8);
	border-radius: 10px;
	border: 2px solid transparent;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: .2s;
}
.blog-item:hover {
	border-color: var(--color-gray);
}
.blog-image {
	position: relative;
	padding-top: 66.66%;
}
.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(142, 11, 11, .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: 900;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
}
.blog-title a {
	color: var(--color-text);
}
.blog-title a:hover {
	color: var(--color-gray);
}
.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: #fff;
	font-size: 16px;
	padding: 10px 30px;
}
.blog-button a:hover {
	background-color: var(--color-gray);
}

#gform_wrapper_3 .gform_footer .button {
	display: inline-block;
	background-color: var(--color-acc);
	color: #fff;
	/*font-family: var(--font-acc);*/
	font-size: 20px;
	font-weight: 700;
	padding: 20px 40px;
	text-transform: uppercase;
	border: none;
}
#gform_wrapper_3 .gform_footer .button:hover {
	background-color: var(--color-gray);
}

.acc-title {
	padding: 20px 40px 20px 20px;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
	position: relative;
}
.acc-title:after {
	content: "\2b";
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translatey(-50%);
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}
.acc-title.active:after {
	content: "\f068";
}
.acc-title h2 {
	margin: 0;
	font-family: var(--font-text);
	font-size: 20px;
}
.acc-content {
	padding-left: 20px;
	padding-right: 20px;
	max-height: 0;
	overflow: hidden;
	transition: .2s;
	word-wrap: break-word;
}
.acc-title.active ~ .acc-content {
	max-height: max-content;
	padding-top: 20px;
	padding-bottom: 20px;
}
.acc-content h3 {
	font-family: var(--font-text);
	font-size: 18px;
}