/*
Theme Name: microsite
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: microsite
Tags: 
*/
:root {
  --color-acc: #f19235;
  --color-text: #000000;
  --color-gray: #929292;
  --font-acc: 'nimbus-sans', sans-serif;
  --font-text: 'proxima-nova', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

.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, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--font-text);
  font-weight: 900;
  line-height: 1;
}

.h1 {
  letter-spacing: 3px;
}

h1, .h1 {
  font-size: 48px;
}

h2, .h2 {
  font-size: 36px;
}

h3, .h3 {
  font-size: 30px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 30px;
  font-weight: 800;
}

h6, .h6 {
  font-size: 18px;
  letter-spacing: 0;
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
  font-family: "Font Awesome 6 Free";
}

.letter-space {
  letter-spacing: 3px;
}

@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;
  z-index: 1;
}

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

.block {
  display: block;
}

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

.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-1\.5 {
  line-height: 1.5;
}

.leading-2 {
  line-height: 2;
}

.italic {
  font-style: italic;
}

.text-justify {
  text-align: justify;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

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

.pb-100 {
  padding-bottom: 100px;
}

.pr-30 {
  padding-right: 30px;
}

.pl-30 {
  padding-left: 30px;
}

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

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

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

.clear,
.clearfix {
  clear: both;
}

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

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

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

/* 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, 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: #fff;
}

.mobile-phone a {
  color: #000;
  font-family: var(--font-acc);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.mobile-bars {
  transform: rotate(180deg);
  cursor: pointer;
}

.mobile-bars span {
  background-color: #1d82c5;
  height: 6px;
  width: 30px;
  display: block;
  position: relative;
  margin-bottom: 4px;
  border-radius: 5px;
  transition: margin .3s ease-in-out;
}

.mobile-bars span:nth-child(2) {
  width: 38px;
}

.mobile-bars span:last-child {
  width: 48px;
}

.mobile-bars:hover span {
  margin-bottom: 5px;
}

.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;
  border-bottom: 5px solid #f19235;
}

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

.header-logo {
  padding: 10px 25px;
}

.header-right {
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-info {
  text-align: right;
  display: flex;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 900;
  align-items: end;
}

.header-info p {
  margin-bottom: 0;
}

.header-info p:first-child {
  margin-right: 10px;
  margin-bottom: 3px;
}

.header-social {
  margin-right: 20px;
  font-size: 30px;
}

.header-phone {
  font-family: var(--font-text);
  font-size: 36px;
  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;
}

.header-nav ul li {
  font-family: "nimbus-sans";
}

.header-nav ul li.current_page_item a {
  color: var(--color-acc) !important;
}

.header-nav ul li:last-child.current_page_item a {
  background-color: #fff !important;
  border-color: var(--color-acc) !important;
}

@media (min-width: 1025px) {
  .sticky .header {
    position: fixed;
    top: 0;
  }
  /* .sticky:not(.home) {
		padding-top: 130px;
	} */
  .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;
    color: var(--color-text);
    padding: 10px 25px;
    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 {
    color: var(--color-acc);
  }
  .header-nav ul.menu > li:last-child > a {
    background-color: var(--color-acc);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px;
    border: 2px solid white;
    border-radius: 4px;
  }
  .header-nav ul.menu > li:last-child > a:hover {
    background-color: #fff;
    color: var(--color-acc);
    border-color: var(--color-acc);
  }
  .header-nav ul.menu > li:not(:first-child):not(:last-child) > a:before {
    content: "/";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
  }
  .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: rgba(0, 0, 0, 0.2);
  }
  .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 > a:hover {
    color: var(--color-acc);
  }
  .home:not(.sticky) .header-nav ul.menu > li:last-child > a {
    border-color: #fff;
  }
  .home:not(.sticky) .header-nav ul.menu > li:last-child > a:hover {
    border-color: var(--color-acc);
    background-color: var(--color-acc);
    color: #fff;
  }
}

@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: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background-color: var(--color-acc);
  color: #fff;
  text-align: center;
}

.side-button:hover {
  background-color: #000;
}

@media (min-width: 768px) {
  .side-button {
    top: 330px;
    right: 0;
    transform: rotateZ(-90deg) translateY(100px);
    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 {
  display: flex;
  align-items: center;
  min-height: 1000px;
}

.banner-bg-inner:after, .banner-bg-inner:before, .bg-after:after, .bg-after:before {
  content: '';
  background-image: url("../microsite/images/home/banner-acc.png");
  width: 100%;
  height: 50px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.banner-bg-inner:before, .bg-after:before {
  background-image: url("../microsite/images/home/banner-filter.png");
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
}

.banner-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.banner-bg-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner-bg-inner img {
  width: 100%;
  height: 1000px;
  object-fit: cover;
  object-position: center;
  opacity: .6;
}

.banner-content {
  position: absolute;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 640px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.error404 .banner-content {
  left: 50%;
  max-width: 850px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.banner-form {
  max-width: 670px;
  border: 2px solid var(--color-acc);
  padding: 5px;
}

.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 var(--color-acc);
  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: 2px solid #fff;
  background-color: var(--color-acc);
  width: 100%;
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 39px;
  text-transform: uppercase;
  color: #fff;
}

.banner-form .gform_wrapper.gravity-theme .gform_footer input:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 1024px) {
  .banner {
    min-height: auto;
  }
  .banner-form {
    display: none;
  }
}

.service-item {
  position: relative;
}

.service-image {
  position: relative;
  padding-top: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.service-image-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 20px;
  transition: .2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  border-radius: 10px;
  z-index: 1;
}

.service-item .service-inner:after {
  content: '';
  background-color: rgba(29, 130, 197, 0.91);
  height: 0px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: height .4s ease-in-out;
  z-index: -1;
  border-radius: 10px;
}

.service-item:hover .service-inner:after {
  height: 100%;
}

.service-item:hover .service-inner p {
  color: #fff;
}

.service-inner h2 {
  margin-top: 0;
  margin-bottom: 30px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
}

.feature-bg {
  background-image: url(../../uploads/2024/06/feature-bg.jpg);
  background-size: cover;
  background-position: center;
}

.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: 70px;
  padding-left: 100px;
  font-size: 18px;
  position: relative;
}

.feature-inner ul li strong {
  font-family: var(--font-acc);
  font-size: 30px;
}

.feature-inner ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 100%;
  background-image: url(../../uploads/2024/06/feature-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60px 59px;
  transition: .2s;
}

.feature-inner ul li:hover:before {
  background-size: 70px 69px;
}

@media (max-width: 767px) {
  .feature-inner ul li {
    padding-left: 0;
    padding-top: 100px;
    text-align: center;
    justify-content: center;
  }
  .feature-inner ul li:before {
    width: 100%;
    height: 70px;
  }
}

.cta-button {
  display: inline-block;
  background-color: var(--color-acc);
  color: #fff;
  padding: 20px 60px;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: var(--color-text);
}

.testi-bg .owl-carousel .owl-stage {
  display: flex;
}

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

.review-item {
  padding: 10px;
  height: 100%;
}

.review-inner {
  height: 100%;
  padding: 30px 30px 20px;
  border-radius: 10px;
  background-color: #1d1b1d;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #fff;
}

.review-inner a {
  color: #fff;
}

.review-reviewer {
  position: absolute;
  top: calc(100% + 80px);
  left: 0;
  width: 100%;
  text-align: center;
}

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

.footer-bg {
  padding: 3rem 0;
  background-color: #231f20;
  background-image: url(../microsite/images/footer-bg.png);
  background-size: cover;
  background-position: center;
  font-size: 18px;
}

.menu-footernav-container ul {
  padding-left: 0;
  list-style: none;
}

.menu-footernav-container ul li {
  margin-bottom: 15px;
}

.menu-footernav-container ul li a {
  color: inherit;
}

.menu-footernav-container ul li a:hover {
  color: var(--color-acc);
}

.footer-hours p.hours-text {
  max-width: 250px;
  margin: auto;
}

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

.footer-information {
  border: 2px dashed #fff;
  padding: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.footer-information img {
  max-width: 35px;
}

.footer-information .h4 {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .footer-information {
    min-height: 126px;
  }
}

@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 {
  max-width: 800px;
  margin: auto;
}

.page-header .page-subtitle {
  max-width: 535px;
  font-size: 20px;
  margin: 10px auto;
  font-weight: 700;
}

.page-header-bg {
  background-color: #000;
}

.page-header-wrap {
  padding-top: 240px;
  padding-bottom: 240px;
}

.page-header-wrap.thank-you {
  text-align: center;
}

.page-header-wrap.thank-you .page-header, .page-header-wrap.thank-you .page-subtitle {
  margin: auto;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}

.page-header h1 {
  margin: 0;
  color: var(--color-acc);
  font-size: 80px;
  font-weight: 900;
}

@media (max-width: 767px) {
  .page-header-wrap {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .page-header-overlay {
    background-position: center;
  }
  .page-header h1 {
    font-size: 50px;
    text-align: center;
  }
  .page-header .page-subtitle {
    text-align: center;
  }
}

.contact-map,
.contact-map iframe {
  width: 100%;
  height: 100%;
}

.contact-map,
.contact-content {
  border: 2px solid #bebebe;
  border-radius: 25px;
  overflow: hidden;
}

.contact-content {
  padding: 70px 60px;
  background-color: #000;
}

.contact-info {
  max-width: 280px;
  margin: auto;
}

.contact-bottom {
  font-size: 18px;
}

@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: transparent;
  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: 10px 30px;
  background-color: transparent;
  border: 2px solid #bebebe;
  color: #fff;
  font-size: 16px;
  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 {
  font-size: 35px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0;
  font-family: "nimbus-sans-dv";
  font-weight: 400;
}

.city-about-bg h2 strong,
.city-about-bg h2 span {
  display: block;
  font-size: 48px;
  font-weight: 700;
}

.border-img {
  border-radius: 25px;
  border: 2px solid #fff;
}

.city-service-bg {
  background-color: var(--color-acc);
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.city-map {
  border: 2px solid #fff;
  border-radius: 36px;
  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: 36px;
  padding: 60px 60px;
}

.city-service h2 {
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0;
  font-family: "nimbus-sans-dv";
  font-weight: 400;
}

.city-service h2 strong {
  font-size: 30px;
  font-weight: 700;
}

.city-service ul {
  margin: 0;
  font-size: 18px;
  column-count: 2;
  column-gap: 60px;
  list-style: none;
}

.city-service ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.city-service ul li:before {
  content: '';
  border-radius: 50%;
  background-color: #2fabda;
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
}

@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: 30px;
  }
  .city-service .mt-60 {
    margin-top: 30px;
  }
  .city-service ul {
    font-size: 18px;
    column-count: 1;
  }
}

.things-bg {
  background-color: #1e1e1e;
}

.things-bg h2 {
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

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

.city-blogs h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

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

.post-content-img img {
  height: 565px;
  object-fit: cover;
  object-position: center;
}

.thank-bg,
.error-bg {
  background-image: url(../../uploads/2024/06/thank-bg.jpg);
  background-size: cover;
  background-position: center;
  min-height: 720px;
  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: 15px;
  background-color: var(--color-acc);
  color: #fff;
  padding: 20px 40px;
  font-size: 24px;
}

.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-item {
  height: 100%;
  box-shadow: 0px 10px 32.9px 2.1px rgba(21, 42, 51, 0.78);
  border-radius: 17px;
  border: 2px solid #fff;
  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;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  transition: .2s;
}

.blog-item:hover .blog-image a:after {
  background-color: rgba(29, 130, 197, 0.8);
  height: 100%;
}

.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: 24px;
  text-align: center;
  line-height: 1;
}

.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: #fff;
  font-size: 16px;
  padding: 10px 30px;
  border-radius: 9px;
  border: 2px solid #fff;
  box-shadow: 0px 5px 6.58px 0.42px rgba(21, 42, 51, 0.09);
}

.blog-button a:hover {
  background-color: var(--color-gray);
}

.blog-footer a {
  text-transform: uppercase;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-size: 18px;
}

.page-content {
  z-index: 1;
  position: relative;
}

.page-content form {
  max-width: 820px;
  margin: auto;
}

.btn {
  border-radius: 9px;
  background-color: var(--color-acc);
  padding: 10px 30px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0px 0px 60px 0px rgba(251, 187, 4, 0.21);
}

.btn:hover {
  background-color: #000;
}

.banner-text {
  color: #fff;
  padding-bottom: 30px;
}

.banner-text h1 {
  font-size: 66px;
  text-transform: uppercase;
  margin-top: 10px;
  color: #f19235;
  margin-bottom: 0;
}

.banner-text h1 span {
  font-size: 36px;
  color: #fff;
}

.banner-cta {
  position: relative;
}

.banner-cta:after {
  content: '';
  background-color: #f19235;
  height: 8px;
  width: 75%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.section-col {
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0px 10px 46px 0px rgba(11, 11, 10, 0.17);
  height: 100%;
  padding: 2.5rem;
}

.section-col h2, .section-col h3 {
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
  padding-bottom: 3rem;
  margin-bottom: 4rem;
  position: relative;
  text-align: center;
}

.section-col h2:before, .section-col h3:before {
  content: '';
  height: 10px;
  width: 185px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #000;
}

.about-section p {
  line-height: 2;
}

.footer-copyright {
  border-radius: 23px;
  background-image: url(../microsite/images/home/footer-bg.png);
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 10px 20px;
}

.banner-title h2 {
  color: #fff;
  font-size: 48px;
  background-color: #f19235;
  width: 264px;
  height: 264px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border: 5px solid #fff;
}

@media (max-width: 1400px) {
  .banner {
    min-height: 800px;
  }
  .banner-bg-inner img {
    height: auto;
  }
  .banner-logo img {
    max-width: 250px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    display: none !important;
  }
  .banner-logo img {
    max-width: 185px;
  }
  .header-logo {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .banner-text h1 {
    font-size: 50px;
  }
  .banner-text h1 span {
    font-size: 28px;
  }
  .banner-content {
    width: 100%;
    top: 44%;
  }
  .banner {
    min-height: 580px;
  }
  .footer-copyright .text-right {
    text-align: center;
  }
  .footer-copyright .row {
    grid-row-gap: 0;
  }
  .pb-80 {
    padding-bottom: 50px;
  }
  .pt-80 {
    padding-top: 50px;
  }
  #gform_wrapper_2 input, #gform_wrapper_2 textarea, #gform_wrapper_2 select {
    border-radius: 15px;
  }
  html {
    scroll-padding-top: 20px;
  }
}

@media (max-width: 400px) {
  .banner-logo img {
    max-width: 140px;
  }
  .banner-text h1 span {
    font-size: 25px;
  }
  .banner-text h1 {
    font-size: 46px;
  }
  .banner-bg-inner img {
    height: 580px;
  }
  .section-col h2, .section-col h3 {
    margin-bottom: 3rem;
  }
}
