@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/open-sans-latin-normal-v44.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/open-sans-latin-italic-v44.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/raleway-latin-v37.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #0d4169;
  --navy-deep: #083655;
  --ink: #111;
  --rule: #d8d8d8;
  --shell: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  background: #fff;
  overflow-x: visible;
  overflow-y: visible;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: scroll;
  color: var(--navy);
  background: #fff;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 30px;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

main a:not(.service-card) {
  color: #2f678f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

main a:hover,
main a:focus-visible {
  color: var(--navy-deep);
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 9px 14px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
  background: #fff;
}

.utility-bar {
  height: 33px;
  min-height: 33px;
  color: #a5a5a5;
  background: #f7f7f7;
  border-bottom: 1px solid #dedede;
}

.utility-links {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8.042px;
  color: #aaa;
  font-family: monospace;
  font-size: 14.625px;
  letter-spacing: 0;
  line-height: 33px;
  white-space: nowrap;
}

.utility-links a,
.utility-separator {
  color: #aaa;
}

.utility-links a span[aria-hidden="true"] {
  width: 14.625px;
  height: 14.625px;
  display: inline-block;
  overflow: hidden;
  margin: 0 1.02375px;
  color: transparent;
  background: url("/assets/images/1f512.svg") center / contain no-repeat;
  font-size: 0;
  line-height: 0;
  vertical-align: -1.4625px;
}

.utility-links a:hover,
.utility-links a:focus-visible {
  color: var(--navy);
}

.utility-separator {
  color: #aaa;
}

.brand-row {
  height: 193.6667px;
  background: #fff;
}

.brand-row .site-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.brand {
  flex: 0 0 340px;
  width: 340px;
  height: 156px;
  display: grid;
  place-items: center;
}

.brand img {
  display: block;
  width: 340px;
  height: 156px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  min-width: 46px;
  min-height: 42px;
  padding: 7px 10px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #cfd6db;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 23px;
  height: 2px;
  display: block;
  background: currentColor;
}

.menu-toggle-lines {
  position: relative;
  margin: 0 auto;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before {
  top: -7px;
}

.menu-toggle-lines::after {
  top: 7px;
}

.primary-nav {
  margin-left: auto;
}

.primary-menu,
.sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.primary-menu > li {
  position: relative;
  display: flex;
  align-items: center;
}

.primary-menu > li + li::before {
  margin: 0 18px;
  color: #b7b7b7;
  content: "|";
  font-size: 16px;
  font-weight: 300;
}

.primary-menu > li > a {
  padding: 16px 0;
  color: #111;
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 1.2;
  white-space: nowrap;
}

.primary-menu a[aria-current="page"],
.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--navy);
}

.sub-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% - 5px);
  left: -22px;
  min-width: 285px;
  display: none;
  padding: 10px 0;
  background: #fff;
  border-top: 3px solid var(--navy);
  box-shadow: 0 10px 25px rgb(0 0 0 / 12%);
}

.sub-menu a {
  display: block;
  padding: 8px 22px;
  color: #444;
  font-size: 13px;
  letter-spacing: .7px;
  line-height: 1.45;
}

.has-submenu:hover > .sub-menu,
.has-submenu:focus-within > .sub-menu {
  display: block;
}

.content {
  min-width: 0;
  flex: 0 0 auto;
}

body[data-page="home"] .content {
  flex: 1 0 auto;
}

.content_inner {
  min-height: 100%;
}

.content_inner > style {
  display: none;
}

.content {
  flex: 1 0 auto;
}

.title_outer,
.title {
  width: 100%;
  height: 88px !important;
  overflow: hidden;
}

.title {
  position: relative;
  color: #fff;
  background-color: #f6f6f6 !important;
  background-image: url("/assets/images/title-01c.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: 1800px 480px !important;
}

.title .image {
  display: none !important;
}

.title_holder {
  position: absolute !important;
  inset: 0 !important;
  width: 100%;
  height: 88px !important;
  display: flex;
  align-items: center;
  padding: 0 !important;
}

.title_holder .container,
.title_holder .container_inner,
.title_subtitle_holder,
.title_subtitle_holder_inner {
  width: 100%;
  height: 100%;
}

.title_holder .container_inner {
  width: min(calc(100% - 48px), var(--shell));
  display: flex;
  align-items: center;
  margin-inline: auto;
}

.title_subtitle_holder,
.title_subtitle_holder_inner {
  display: flex;
  align-items: center;
}

.title h1 {
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 300;
  letter-spacing: 8px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgb(0 0 0 / 18%);
}

@media (min-width: 981px) {
  body[data-page="services"] .content {
    flex: 0 0 calc(100vh - 505.344px);
  }

  .brand-row .site-shell {
    align-items: flex-start;
  }

  .brand {
    margin-top: 2px;
  }

  .primary-nav {
    height: 160px;
    margin-top: 33px;
    transform: translateX(41.656px);
  }

  .primary-menu,
  .primary-menu > li,
  .primary-menu > li > a {
    height: 160px;
  }

  .primary-menu > li + li::before {
    width: 8.25px;
    flex: 0 0 8.25px;
    margin: 0;
    overflow: hidden;
    text-align: center;
  }

  .primary-menu > li > a {
    padding: 0 17px;
    line-height: 160px;
  }

  .title h1 {
    font-size: 50px;
    line-height: 60px;
    transform: translateY(-32.667px);
  }
}

@media (min-width: 1201px) {
  html {
    overflow-x: visible;
  }

  body {
    min-height: 0;
    display: block;
    line-height: 26px;
  }

  body[data-page="privacy-page"] .page_container_inner p,
  body[data-page="services"] .page_container_inner p {
    line-height: 30px;
  }

  .site-header {
    position: fixed;
    z-index: 110;
    top: 0;
    left: 0;
    width: 100%;
  }

  .content {
    position: relative;
    z-index: 100;
    min-height: calc(100vh - 247px);
  }

  .content_inner {
    min-height: 0;
  }

  body[data-page="home"] .content {
    margin-top: 193px;
  }

  .title_outer,
  .title,
  .title_holder {
    height: 346.667px !important;
  }

  .title {
    background-position: center 32px !important;
  }

  .title h1 {
    transform: translateY(96.667px);
  }

  body[data-page="back-office-support-houston-tx"] .title h1 {
    transform: translateY(113.334px);
  }

  body[data-page="home"] .djl-home-01 {
    margin: 0 -15px !important;
  }

  footer {
    position: relative;
    z-index: 100;
  }

  .q_elements_holder .wpb_single_image,
  .q_elements_holder .wpb_single_image > .wpb_wrapper {
    display: inline-block !important;
    vertical-align: middle !important;
  }

  .q_elements_holder a {
    display: inline !important;
    line-height: 26px !important;
  }

  .q_elements_holder .vc_single_image-wrapper {
    display: inline-block !important;
    line-height: 26px !important;
    vertical-align: top !important;
  }

  .q_elements_holder img {
    display: inline !important;
    vertical-align: middle !important;
  }

  .sub-menu {
    top: 100%;
    left: 0;
    width: 226.333px;
    min-width: 226.333px;
    padding: 0;
    background: var(--navy);
    border: .667px solid #eee;
    box-shadow: none;
  }

  .sub-menu a {
    min-height: 48px;
    padding: 11px 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 26px;
    transition: color .3s ease-in-out;
  }

  .sub-menu li:not(:last-child) {
    border-bottom: .667px solid #eee;
  }

  .sub-menu a:hover,
  .sub-menu a:focus-visible {
    color: #ddd;
  }
}

.content_inner > .container {
  width: 100%;
}

.page_container_inner {
  width: min(calc(100% - 48px), var(--shell)) !important;
  min-height: 1px;
  margin-inline: auto !important;
  padding: 50px 0 0;
}

.wpb-content-wrapper,
.vc_row,
.full_section_inner,
.section_inner_margin,
.vc_column_container,
.vc_column-inner,
.wpb_wrapper {
  min-width: 0;
}

.vc_row {
  width: auto;
  margin-right: -15px;
  margin-left: -15px;
  line-height: 26px;
}

.vc_row::after,
.full_section_inner::after,
.section_inner_margin::after,
.clearfix::after {
  display: table;
  clear: both;
  content: "";
}

.full_section_inner,
.section_inner_margin {
  display: flex;
  flex-wrap: wrap;
}

.vc_column_container {
  width: 100%;
}

.vc_column-inner {
  padding-right: 15px;
  padding-left: 15px;
}

.vc_col-has-fill > .vc_column-inner {
  padding-top: 35px;
}

.vc_parallax {
  position: relative;
  overflow: hidden;
}

.vc_parallax-inner {
  position: absolute;
  z-index: 0;
  left: 0;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.qode_image_hover_zoom_in .vc_single_image-wrapper {
  overflow: hidden;
}

.qode_image_hover_zoom_in img {
  transition: transform .3s cubic-bezier(.4, 0, 1, 1);
}

.qode_image_hover_zoom_in:hover img {
  transform: scale(1.05);
}

.vc_custom_1581809107855 {
  padding-bottom: 2%;
}

.vc_custom_1581894324583 {
  padding: 7% 15px;
}

.vc_custom_1581894324583 .wpb_single_image {
  margin-bottom: 0;
}

body[data-page="us"] .avia_textblock > :last-child {
  margin-bottom: 0;
}

.vc_custom_1582151287477 {
  padding-bottom: 2%;
}

.vc_custom_1582675948418 {
  padding: 0 8%;
}

.vc_custom_1583357521197 {
  padding-top: 3%;
  padding-bottom: 2%;
}

.vc_col-sm-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.vc_col-sm-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.vc_col-sm-8 {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
}

.vc_col-sm-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.vc_col-sm-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.vc_col-sm-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.wpb_text_column h2,
.wpb_text_column h3,
.wpb_text_column h4,
.wpb_text_column h5,
.wpb_text_column h6 {
  color: #111;
}

.content_inner h2,
.content_inner h3,
.content_inner h5,
.content_inner h6 {
  text-transform: uppercase;
}

.wpb_text_column h6:empty {
  display: none;
}

.wpb_text_column h2 {
  margin: 0;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 7px;
  line-height: 40px;
  text-transform: uppercase;
}

.wpb_text_column h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 32px;
  text-transform: uppercase;
}

.wpb_text_column h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 29px;
}

.wpb_text_column h6 {
  margin: 0;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 18px;
}

.wpb_text_column hr {
  height: 0;
  margin: 8px 0;
  border: 1px inset gray;
}

.wpb_text_column p {
  margin: 0;
  line-height: 30px;
}

.wpb_text_column .wpb_wrapper > :last-child {
  margin-bottom: 0;
}

sup {
  font-size: 50%;
}

.page_container_inner > p {
  margin: 0;
}

.page_container_inner > h2,
.page_container_inner > h3,
.page_container_inner > h5,
.page_container_inner > h6 {
  margin: 0;
  color: #111;
  font-weight: 600;
}

.page_container_inner > h2 {
  color: #000;
  font-size: 28px;
  letter-spacing: 7px;
  line-height: 40px;
}

.page_container_inner > h3 {
  font-size: 20px;
  letter-spacing: 5px;
  line-height: 32px;
}

.page_container_inner > h5 {
  font-size: 14px;
  letter-spacing: 4px;
  line-height: 20px;
}

.page_container_inner > h6 {
  font-size: 12px;
  letter-spacing: 3px;
  line-height: 18px;
}

.wpb_text_column ul,
.wpb_text_column ol,
.list ul,
.list ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  line-height: 26px;
}

.wpb_text_column li,
.list li {
  margin: 0;
  letter-spacing: normal;
  line-height: 26px;
}

.wpb_single_image {
  margin-bottom: 24px;
}

.vc_align_left {
  text-align: left;
}

.vc_align_center {
  text-align: center;
}

.wpb_single_image img {
  display: inline-block;
  vertical-align: middle;
}

.full_width,
.full_width_inner {
  width: 100%;
}

.djl-home-01 {
  width: auto !important;
  min-height: 613px !important;
  margin: -65.667px -15px 0 !important;
  padding: 192px 13% 256px !important;
  background-image: url("/assets/images/hero-01b-scaled.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

.djl-home-01 > .section_inner {
  width: var(--shell);
  margin-inline: auto;
}

.djl-home-01 .vc_row,
.djl-home-01 .section_inner_margin {
  margin: 0;
}

.djl-home-01 .vc_column_container {
  padding: 0;
}

.djl-home-01 .vc_column-inner {
  padding: 0;
}

.q_elements_holder.four_columns {
  width: 100%;
  display: table !important;
  table-layout: fixed;
}

.q_elements_holder .q_elements_item {
  min-width: 0;
  display: table-cell !important;
  vertical-align: middle;
}

.q_elements_holder .q_elements_item_inner {
  width: 100%;
}

.q_elements_holder .q_elements_item_content {
  width: auto;
  box-sizing: content-box;
  text-align: center;
}

.q_elements_holder .wpb_single_image {
  margin: 0;
}

.q_elements_holder .vc_single_image-wrapper,
.q_elements_holder a {
  display: inline-block;
  line-height: 0;
}

.djl-home-01 .q_elements_holder img {
  width: 231px;
  height: 154px;
  object-fit: cover;
}

.djl-home-01 .djl-image-hover-01 {
  opacity: .9;
}

body[data-page="our-services"] .q_elements_holder {
  margin-top: 34px;
}

body[data-page="our-services"] .q_elements_holder img {
  width: 252px;
  height: 168px;
  object-fit: cover;
}

body[data-page="our-services"] .vc_custom_1582151287477 .wpb_single_image,
body[data-page="our-services"] .vc_custom_1582151287477 .wpb_single_image > .wpb_wrapper,
body[data-page="our-services"] .vc_custom_1582151287477 .vc_single_image-wrapper {
  display: inline-block;
  margin-bottom: 0;
}

body[data-page="our-services"] .vc_custom_1582151287477 .wpb_single_image,
body[data-page="our-services"] .vc_custom_1582151287477 .wpb_single_image > .wpb_wrapper {
  vertical-align: middle;
}

body[data-page="our-services"] .vc_custom_1582151287477 .vc_single_image-wrapper {
  vertical-align: top;
}

body[data-page="our-services"] .vc_custom_1582151287477 img {
  display: inline;
  height: auto;
  aspect-ratio: 3 / 2;
}

body[data-page="us"] .wpb_single_image img[src$="chris-calderwood.jpg"] {
  width: 300px;
  height: 420px;
  object-fit: cover;
}

.ums_MapPreview {
  position: relative !important;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #d9e4e8;
  border: 0;
  font: 12px/18px "Helvetica Neue", Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}

.umsMapMarkerFilters {
  display: block !important;
  position: relative;
  height: 0;
  margin-top: 30px;
}

.leaflet-pane,
.leaflet-map-pane,
.leaflet-tile-pane,
.leaflet-layer,
.leaflet-tile-container,
.leaflet-marker-pane,
.leaflet-control-container {
  position: absolute;
  inset: 0;
}

.leaflet-tile,
.leaflet-marker-icon {
  position: absolute;
  max-width: none;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 5;
}

.leaflet-top {
  top: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-control-zoom {
  height: 64.6667px;
  overflow: hidden;
  margin: 10px 0 0 10px;
  border: 2px solid rgb(0 0 0 / 20%);
  border-radius: 4px;
  box-shadow: 0 1px 5px rgb(0 0 0 / 45%);
}

.ums_MapPreview .leaflet-control-zoom a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #000;
  background: #fff;
  text-decoration: none;
  border-bottom: 0;
  font: 700 22px / 30px "Lucida Console", Monaco, monospace;
}

.ums_MapPreview .leaflet-control-zoom a.leaflet-control-zoom-in {
  height: 30.667px;
  border-bottom: .667px solid #ccc;
}

.leaflet-control-attribution {
  height: 16px;
  padding: 0 5px;
  color: #333;
  background: rgb(255 255 255 / 78%);
  font-size: 12px;
  line-height: 16.8px;
}

.umsMapMarkerFilters,
.umsMapProControlsCon,
.umsMapProDirectionsCon,
.umsMapProKmlFilterCon,
.umsSocialSharingShell,
.umsKMLLayersPreloader {
  display: none !important;
}

.umsMapMarkerFilters {
  display: block !important;
}

.leaflet-control-scale {
  position: absolute;
  bottom: 16px;
  left: 0;
  margin: 0 0 5px 5px;
  height: 34.3958px;
}

.leaflet-control-scale-line {
  height: 18.1979px;
  padding: 2px 5px 1px;
  color: #333;
  background: rgb(255 255 255 / 68%);
  border: 2px solid #777;
  border-top: 0;
  font-size: 10px;
  line-height: 13.2px;
  white-space: nowrap;
}

.leaflet-control-scale-line + .leaflet-control-scale-line {
  margin-top: -2px;
  border-top: 2px solid #777;
  border-bottom: 0;
}

.screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wpcf7,
.static-contact-form {
  line-height: 26px;
}

.static-contact-form > p {
  margin: 0 0 20px;
  line-height: 30px;
}

.contact-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.static-contact-form label,
.static-contact-form .wpcf7-form-control-wrap {
  display: inline;
  margin: 0;
}

.static-contact-form input:not([type="submit"]),
.static-contact-form textarea {
  width: 100%;
  display: block;
  height: 47px;
  margin: 5px 0 0;
  padding: 15px;
  color: #818181;
  background: #f7f7f7;
  border: 0;
  border-radius: 0;
  appearance: none;
  font: 400 13px/17px Raleway, sans-serif;
}

.static-contact-form textarea {
  height: 200px;
  min-height: 200px;
  resize: vertical;
}

.static-contact-form input[type="submit"] {
  box-sizing: content-box;
  width: auto;
  height: 58px;
  padding: 0 23px;
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
  font: 600 22px/58px Raleway, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.static-contact-form input[type="submit"]:hover,
.static-contact-form input[type="submit"]:focus-visible {
  color: #fff;
  background: var(--navy);
}

.static-contact-form input[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.62;
}

body[data-page="contact-us"] .wpb_single_image {
  margin-bottom: 0;
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
}

.footer_bottom_holder {
  min-height: 53px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--navy);
}

.footer_bottom {
  width: 100%;
  height: 53px;
  margin-inline: auto;
  padding: 4.5px 0;
  text-align: center;
  font-size: 12px;
  line-height: 22px;
}

.footer_bottom p {
  height: 22px;
  margin: 0;
  line-height: 22px;
}

.footer_bottom p:last-child {
  font-size: 10px;
}

.footer_bottom a {
  color: #fff;
}

.footer_bottom a:hover,
.footer_bottom a:focus-visible {
  text-decoration: underline;
}

.error-page {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
  padding: 90px 0;
}

@media (max-width: 1200px) {
  body[data-page="services"] .content {
    flex: 1 0 auto;
  }

  body.menu-open {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .utility-links,
  .brand-row .site-shell,
  .title_holder .container_inner,
  .page_container_inner {
    width: min(600px, calc(100% - 30px)) !important;
  }

  .utility-bar {
    height: 32.3333px;
    min-height: 32.3333px;
  }

  .title_outer,
  .title {
    height: calc(26.666667vw - 3.422px) !important;
  }

  .title {
    background-image: none !important;
  }

  .title .image {
    width: 100%;
    height: auto;
    display: block !important;
  }

  .title .image img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
  }

  .title_holder {
    height: calc(26.666667vw - 4.089px) !important;
  }

  .title h1 {
    font-size: 30px;
    line-height: 40px;
    transform: none;
  }

  .page_container_inner {
    padding-top: 30px;
  }

  .djl-home-01 > .section_inner {
    width: 600px !important;
  }

  .brand-row {
    height: auto;
    min-height: 100.667px;
  }

  .brand-row .site-shell {
    position: relative;
    min-height: 100.667px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100px auto;
    place-items: center;
    gap: 0;
  }

  .brand {
    grid-area: 1 / 1;
    position: absolute;
    top: 10px;
    left: 50%;
    width: 174.354px;
    height: 80px;
    margin-top: 0;
    transform: translateX(-80px);
  }

  .brand img {
    width: 174.354px;
    height: 80px;
  }

  .menu-toggle {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 20.573px;
    min-width: 0;
    height: 100px;
    min-height: 0;
    display: grid;
    place-items: center;
    padding: 0;
    color: #000;
    background: transparent;
    border: 0;
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    width: 14px;
    height: 2px;
  }

  .menu-toggle-lines::before {
    top: -5px;
  }

  .menu-toggle-lines::after {
    top: 5px;
  }

  .primary-nav {
    position: static;
    z-index: auto;
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    justify-self: stretch;
    width: 100%;
    height: auto;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    padding: 0;
    background: #fff;
    box-shadow: none;
    transform: none;
    transition: max-height .45s ease;
  }

  .primary-nav[data-open="true"] {
    max-height: 1000px;
  }

  .primary-menu {
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
  }

  .primary-menu > li {
    height: auto;
    display: block;
    border-bottom: 1px solid #eaeaea;
  }

  .primary-menu > li + li::before {
    display: none;
  }

  .primary-menu > li > a {
    position: relative;
    display: block;
    min-height: 60px;
    height: auto;
    padding: 10px 0;
    color: #111;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 40px;
    text-transform: uppercase;
  }

  .primary-menu > .has-submenu > a::after {
    position: absolute;
    right: 10px;
    content: "›";
    font-size: 24px;
    letter-spacing: 0;
    line-height: 40px;
  }

  .sub-menu {
    position: static;
    min-width: 0;
    display: block !important;
    margin: 0;
    padding: 0 0 0 20px;
    border: 0;
    box-shadow: none;
  }

  .sub-menu li {
    border-bottom: 1px solid #eaeaea;
  }

  .sub-menu li:last-child,
  .primary-menu > li:last-child {
    border-bottom: 0;
  }

  .sub-menu a {
    min-height: 60px;
    display: block;
    padding: 10px 0;
    color: #111;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 40px;
    text-transform: uppercase;
  }

  .djl-home-01 {
    width: auto !important;
    min-height: 0 !important;
    margin: 0 -15px !important;
    padding: 192px 13% 256px !important;
  }

  .q_elements_holder.four_columns {
    display: inline-block !important;
  }

  .q_elements_holder .q_elements_item {
    width: 100%;
    display: inline-block !important;
    vertical-align: middle;
  }

  .djl-home-01 .q_elements_holder .vc_single_image-wrapper,
  .djl-home-01 .q_elements_holder a {
    width: 100%;
    display: block;
  }

  .djl-home-01 .q_elements_holder img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .leaflet-map-pane {
    transform: translateX(calc(50% - 268px)) !important;
  }
}

@media (min-width: 1001px) and (max-width: 1200px) {
  .utility-bar {
    height: 33px;
    min-height: 33px;
  }

  .utility-links,
  .title_holder .container_inner,
  .page_container_inner {
    width: 950px !important;
  }

  .brand-row .site-shell {
    width: calc(100% - 90px) !important;
    min-height: 160.667px;
    grid-template-rows: 126px auto;
  }

  .djl-home-01 > .section_inner {
    width: 950px !important;
  }

  .brand-row {
    min-height: 160.667px;
  }

  .brand {
    top: 30px;
    width: 217.948px;
    height: 100px;
  }

  .brand img {
    width: 217.948px;
    height: 100px;
  }

  .menu-toggle {
    top: 26px;
    width: 20.573px;
    height: 100px;
  }

  .title_outer,
  .title,
  .title_holder {
    height: 346.667px !important;
  }

  .title {
    background-image: url("/assets/images/title-01c.jpg") !important;
    background-position: center 32px !important;
  }

  .title .image {
    display: none !important;
  }

  .title h1 {
    font-size: 50px;
    line-height: 60px;
    transform: translateY(96.667px);
  }

  .page_container_inner {
    padding-top: 50px;
  }

  .djl-home-01 {
    min-height: 0 !important;
    margin: 0 -15px !important;
  }

  .q_elements_holder.four_columns {
    display: table !important;
  }

  .q_elements_holder .q_elements_item {
    display: table-cell !important;
  }

  .djl-home-01 .q_elements_holder .vc_single_image-wrapper,
  .djl-home-01 .q_elements_holder a {
    width: auto;
    display: inline-block;
  }

  .djl-home-01 .q_elements_holder img {
    width: 231px;
    height: 133px;
    aspect-ratio: auto;
  }

  .djl-home-01 .q_elements_holder .wpb_single_image,
  .djl-home-01 .q_elements_holder .wpb_single_image > .wpb_wrapper {
    display: inline-block !important;
    vertical-align: middle !important;
  }

  .djl-home-01 .q_elements_holder a {
    display: inline !important;
    line-height: 26px !important;
  }

  .djl-home-01 .q_elements_holder .vc_single_image-wrapper {
    display: inline-block !important;
    line-height: 26px !important;
    vertical-align: top !important;
  }

  .djl-home-01 .q_elements_holder img {
    display: inline !important;
    vertical-align: middle !important;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .djl-home-01 .q_elements_item:nth-child(-n + 3) img {
    aspect-ratio: 1030 / 687;
  }

  .utility-links,
  .brand-row .site-shell,
  .title_holder .container_inner,
  .page_container_inner {
    width: 768px !important;
  }

  .djl-home-01 > .section_inner {
    width: 768px !important;
  }

  .utility-bar {
    height: 46.333px;
    min-height: 46.333px;
  }

  .title h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .page_container_inner {
    padding-top: 30px;
  }
}

@media (min-width: 1000px) and (max-width: 1000.98px) {
  .brand-row .site-shell {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  body[data-page="our-services"] .vc_custom_1582151287477 .vc_column_container:nth-child(-n + 3) img {
    aspect-ratio: 700 / 467;
  }

  .wpb_text_column li,
  .list li {
    letter-spacing: 1px;
  }

  .vc_col-sm-9,
  .vc_col-sm-8,
  .vc_col-sm-6,
  .vc_col-sm-4,
  .vc_col-sm-3 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    width: 21.573px;
  }

  .djl-home-01 .q_elements_item:nth-child(-n + 3) img {
    aspect-ratio: 700 / 467;
  }

  .title_holder .container_inner,
  .page_container_inner {
    width: min(300px, calc(100% - 30px)) !important;
  }

  .djl-home-01 > .section_inner {
    width: 300px !important;
  }

  .utility-links {
    width: min(300px, calc(100% - 30px)) !important;
    min-height: 65.333px;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 9.042px;
    padding: 4.667px 0 0;
    font-size: 14.625px;
    letter-spacing: 1px;
    line-height: 33px;
    white-space: normal;
  }

  .utility-bar {
    height: 65.333px;
    min-height: 65.333px;
    overflow: hidden;
  }

  .brand-row .site-shell {
    width: calc(100% - 30px) !important;
  }

  .footer_bottom_holder {
    min-height: 70px;
  }

  .footer_bottom {
    width: 100% !important;
    height: 70px;
    padding: 0;
    font-size: 9px;
    letter-spacing: 1px;
    line-height: 35px;
  }

  .footer_bottom p {
    height: 35px;
    line-height: 35px;
  }

  .footer_bottom p:last-child {
    font-size: 10px;
  }

  .title h1 {
    font-size: 20px;
    line-height: 25px;
  }

  .page_container_inner {
    padding-top: 30px;
  }

  .wpb_text_column h2 {
    font-size: 28px;
  }

  .wpb_text_column h3 {
    font-size: 20px;
    letter-spacing: 5px;
  }

  .djl-home-01 {
    min-height: auto !important;
    padding: 192px 13% 256px !important;
  }

  .q_elements_holder.four_columns {
    display: inline-block !important;
  }

  .ums_MapPreview {
    height: 400px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .utility-bar,
  .primary-nav,
  .menu-toggle,
  footer {
    display: none !important;
  }

  .brand-row {
    height: auto;
  }
}
