/* --------------------
   Base / Layout
-------------------- */ :root {
  --mp-gray: #d7d7d7;
  --mp-blue: #004990;
  --mp-blue-dark: #06407a;
  --mp-gold: #c5a900;
  --mp-text: #111;
}
html {
  scroll-behavior: smooth;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.spacer-20 {
  height: 10px;
}
.spacer-50 {
  height: 50px;
}
.spacer-100 {
  height: 100px;
}
.right-line {
  margin-top: 90px;
  width: 100%;
  height: 1px;
  background-color: #d1d1d1;
}
.eyebrow {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mp-blue);
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  font-family: futura-pt, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 1px
}
p {
  margin: 0 0 32px 0;
  padding: 0;
  font-family: futura-pt, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 1px
}
h2 {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  font-size: 40px;
  letter-spacing: 1px;
}
h3 {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  font-size: 32px;
  letter-spacing: 1px;
}
h4 {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  font-size: 24px;
  letter-spacing: 1px;
}
.full-row {
  width: 100%;
  margin: 0;
  padding: 0;
}
.full-row.light-gray {
  background-color: #f5f5f5;
}
.full-row.medium-gray {
  background-color: #d9d9d9;
}
/* Default: mobile first */
.show-desktop {
  display: none !important;
}
.hide-desktop {
  display: block !important;
}
.show-mobile {
  display: block !important;
}
.hide-mobile {
  display: none !important;
}
/* Desktop breakpoint */
@media (min-width: 992px) {
  .show-desktop {
    display: block !important;
  }
  .hide-desktop {
    display: none !important;
  }
  .show-mobile {
    display: none !important;
  }
  .hide-mobile {
    display: block !important;
  }
  .site-logo img {
    height: 150px;
  }
}
/* HEADER */
.site-header {
  position: relative;
  z-index: 100;
}
.mobile-site-header {
  height: 90px;
}
.site-header .navbar {
  height: 90px;
  padding: 0;
  background: #fff;
  overflow: visible;
}
.site-logo {
  height: 90px;
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 180px;
  width: auto;
  display: block;
  position: absolute;
  top: 0px;
  z-index: 99;
  background-color: #ffffff;
  padding: 30px 50px;
}
.mobile-site-logo {
  height: 90px;
  display: flex;
  align-items: center;
}
.mobile-site-logo img {
  height: 140px;
  width: auto;
  display: block;
  position: absolute;
  top: 0px;
  z-index: 99;
  background-color: #ffffff;
  padding: 20px 20px;
}
.site-logo-mobile {
  height: 90px;
  display: flex;
  align-items: center;
}
.site-logo-mobile img {
  height: 140px;
  width: auto;
  display: block;
  position: absolute;
  top: 0px;
  z-index: 99;
  background-color: transparent;
  padding: 20px 20px;
}
.desktop-navigation {
width: 100%;
	margin-left: auto;
	  height: 90px;
}
.desktop-navigation ul {
    display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
	
}
.desktop-navigation li {
  position: relative;
}
.desktop-navigation a {
  display: block;
  padding: 25px 15px 5px 15px;
  margin: 0px 5px 15px 5px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  font-size: 18px;
  position: relative;
}
/* Gold bar */
.desktop-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #c5a900;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
/* Hover state */
.desktop-navigation a:hover::after, .desktop-navigation a:focus::after {
  transform: scaleX(1);
}
/* mobile */
#mobile-menu-toggle {
  display: inline-block;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  float: right;
  text-align: right;
}
#mobile-menu-toggle div {
  width: 40px;
  margin: 5px 0 0 0;
  height: 40px;
  position: absolute;
  z-index: 9999;
}
#mobile-menu-toggle span {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 0px;
  background: #000000;
  position: absolute;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  transform-origin: center;
  margin: 0;
  z-index: 9999;
}
#mobile-header-default #mobile-menu-toggle span {
  background: #000000;
}
.header.active #mobile-menu-toggle span {
  background: #000000;
}
#mobile-menu-toggle span.top {
  top: 0px;
  width: 40px;
}
#mobile-menu-toggle span.middle {
  top: 14px;
  width: 40px;
}
#mobile-menu-toggle span.bottom {
  top: 28px;
  width: 40px;
}
#mobile-menu-toggle.menu-is-active span {
  -webkit-transition: -webkit-transform 0.5s ease-in-out 0.3s, top 0.25s ease-in-out, opacity 0.25s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out 0.3s, top 0.25s ease-in-out, opacity 0.25s ease-in-out;
  transition: transform 0.5s ease-in-out 0.3s, top 0.25s ease-in-out, opacity 0.25s ease-in-out;
  background-color: #c5a900;
}
#mobile-menu-toggle.menu-is-active {
  -webkit-transition: -webkit-transform 0.5s ease-in-out 0.3s, top 0.25s ease-in-out, opacity 0.25s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out 0.3s, top 0.25s ease-in-out, opacity 0.25s ease-in-out;
  transition: transform 0.5s ease-in-out 0.3s, top 0.25s ease-in-out, opacity 0.25s ease-in-out;
  background-color: transparent;
}
#mobile-menu-toggle.menu-is-active span.top, #toggle-menu.menu-is-active span.middle {
  top: 20px;
  width: 40px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
#mobile-menu-toggle.menu-is-active span.middle {
  opacity: 0;
}
#mobile-menu-toggle.menu-is-active span.bottom {
  top: 20px;
  width: 40px;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
}
#mobile-nav-container {
  background-color: #f5f5f5;
  z-index: 900;
  overflow: auto;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
}
#menu-menu-2 {
  list-style: none;
  margin: 0;
  padding: 160px 20px 20px 20px;
  width: 100%;
}
#menu-menu-2 li {
  width: 100%;
  list-style: none;
}
#menu-menu-2 li a {
  display: block;
  width: 100%;
  padding: 20px 0;
  margin: 0 0 10px 0;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  font-size: 30px;
}
#menu-menu-2 li a span {
  position: relative;
}
#menu-menu-2 li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #c5a900;
  transition: width 0.3s ease;
}
#menu-menu-2 li a:hover::after, #menu-menu-2 li a:focus::after {
  width: 100%;
}
/* HERO */
.homepage-landing-section {
  display: flex;
  min-height: calc(100vh - 65px);
  min-height: calc(100svh - 65px);
}
/* LEFT PANEL */
.left {
  position: relative;
  width: 43%;
  z-index: 4;
  --layer-h: 60%;
}
.layer {
  position: absolute;
  bottom: 0;
  height: var(--layer-h);
  width: 100%;
}
.layer .background {
  position: absolute;
  inset: 0;
  background-color: #ebebeb;
  width: 110%;
  z-index: 1;
}
/* HEADINGS */
.title, .title-small-group, .sub-title {
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity 0.6s ease, transform 0.3s ease;
}
.title {
  position: absolute;
  left: 50%;
  bottom: calc(var(--layer-h) + 20px);
  text-align: center;
  z-index: 3;
  text-transform: uppercase;
  font-family: futura-pt, sans-serif;
  font-weight: 800;
  font-style: normal;
  color: #000000;
  font-size: clamp(75px, 8vw, 150px);
  line-height: 0.9;
}
.title-small {
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  font-family: "futura-pt", sans-serif;
  font-weight: 800;
  font-style: normal;
  color: #000000;
  font-size: 50px;
  line-height: 60px;
}
.title-small-group {
  position: absolute;
  top: 22px;
  left: 50%;
  text-align: center;
  z-index: 2;
}
.sub-title {
  position: absolute;
  top: 55%;
  left: 50%;
  text-align: center;
  color: #000000;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 1px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  z-index: 2;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
/* RIGHT PANEL */
.right {
  position: relative;
  width: 57%;
  overflow: hidden;
}
.right .image {
  height: 100%;
  background-position: center;
  background-size: cover;
}
/* HERO ANIMATION */
.reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: clip-path;
}
.reveal.is-visible {
  clip-path: inset(0 0 0 0);
}
.js-loading .reveal, .js-loading .fade-up {
  opacity: 0;
}
/* ---------------------------
   HERO — MOBILE LAYOUT
   --------------------------- */
@media (max-width: 991.98px) {
  .layer {
    z-index: 2;
  }
  .layer .background {
    inset: 0 auto 0 8% !important;
    width: 100%;
  }
  .right {
    margin-top: -75px;
  }
  .homepage-landing-section {
    flex-direction: column;
    height: auto;
    min-height: auto !important;
  }
  .left, .right {
    width: 100%;
  }
  .left {
    position: relative;
    --layer-h: auto;
    padding: 75px 0 0;
  }
  .layer {
    position: relative;
    bottom: auto;
    height: auto;
    width: 100%;
    padding: 26px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .layer .background {
    width: 100%;
    left: 0;
    right: 0;
  }
  /* FLEX title above panel */
  .title {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 8px auto 12px;
    transform: translateY(20px);
    font-size: clamp(64px, 16vw, 110px);
    line-height: 0.9;
  }
  .title-small-group {
    position: relative;
    top: auto;
    left: auto;
    margin: 6px 0 18px;
    transform: translateY(20px);
  }
  .title-small {
    font-size: clamp(34px, 7.5vw, 50px);
    line-height: 1.05;
  }
  /* Subtitle inside panel */
  .sub-title {
    position: relative;
    top: auto;
    left: auto;
    margin: 10px 0 0;
    transform: translateY(20px);
    font-size: clamp(24px, 6vw, 40px);
    line-height: 1.25;
  }
  .fade-up.is-visible {
    transform: translateY(0);
  }
  .right {
    overflow: hidden;
  }
  .right .image {
    min-height: 40vh;
    height: auto;
    background-position: center;
    background-size: cover;
  }
}
/* WELCOME VIDEO */
.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}
.video-thumb img {
  display: block;
  width: 100%;
  height: auto;
}
/* Play button */
.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play i {
  color: #fff;
  font-size: 28px;
  margin-left: 4px;
}
/* STAT */
.stat {
  padding: 18px 0 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.stat .value {
  font-size: 60px;
  font-family: futura-pt, sans-serif;
  font-weight: 800;
  font-style: normal;
  color: var(--mp-blue);
  letter-spacing: .5px;
  line-height: 1;
}
.stat .label {
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: 1px;
  color: #000;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  min-height: auto;
  display: flex;
  align-items: flex-start;
}
.stat .rule {
  margin-top: 12px;
  height: 2px;
  width: 100%;
  background: var(--mp-gold);
  opacity: .9;
  /* animation */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms ease;
}
/* trigger */
.stats-glance.is-inview .stat .rule {
  transform: scaleX(1);
}
/* WWD Grid */
.row-5col {
  margin-left: -5px;
  margin-right: -5px;
  flex-wrap: nowrap;
}
.row-5col > .col-5th {
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 5px;
  padding-right: 5px;
}
/* Responsive fallback */
@media (max-width: 991.98px) {
  .row-5col {
    flex-wrap: wrap;
  }
  .row-5col > .col-5th {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}
@media (max-width: 767.98px) {
  .row-5col > .col-5th {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575.98px) {
  .row-5col > .col-5th {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* FULL BLEED IMAGE BLOCK */
.full-bleed-image {
  width: 100%;
}
/* OPTIONAL: limit vertical size on very tall images */
.full-bleed-image img {
  display: block;
  height: auto; /* preserves aspect ratio */
  max-height: 80vh; /* optional safety cap */
  object-fit: contain; /* never crop */
}
.full-bleed-image .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}



/* =====================================================
   FULL WIDTH HERO
   ===================================================== */

.hero {
  position: relative;
  width: 100%;
}

/* IMAGE */
.hero-image {
  padding: 0;
}

.opta-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTENT AREA */
.hero-content {
  background: #d9d9d9;
  padding: 2.25rem 1rem;
}

/* TYPOGRAPHY */
.hero-title {
  color: #000;
  text-transform: uppercase;
  font-family: futura-pt, sans-serif;
  font-size: 72px;
  line-height: 80px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  color: #000;
  font-size: 42px;
  line-height: 42px;
  letter-spacing: 1px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
}

.hero-divider {
  width: 140px;
  height: 2px;
  background-color: #c9a300;
  margin: 2.5rem auto 1.5rem;
}

.hero-tagline {
  font-family: futura-pt, sans-serif;
  font-style: italic!important;
  font-weight: 400;
  color: #000;
  font-size: 30px;
  line-height: 60px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
  .hero-title {
  font-size: 72px;
  line-height: 80px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 60px;
    line-height: 65px;
  }

  .hero-subtitle {
    font-size: 40px;
    line-height: 40px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 40px;
    line-height: 55px;
  }

  .hero-subtitle {
    font-size: 28px;
    line-height: 30px;
  }

  .hero-tagline {
    font-size: 18px;
    line-height: 40px;
  }
}




.split-bleed {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  /* THIS is what fixes it */
  display: flex;
  align-items: center;
}
/* Content layer */
.split-bleed__content {
  width: 100%;
  position: relative;
  z-index: 2;
}
.split-bleed h2 {
  font-weight: 600;
  margin-bottom: 1rem;
}
.split-bleed__copy {
  max-width: 420px;
  line-height: 1.6;
}
/* Full-bleed image */
.split-bleed__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mt-6, .my-6 {
  margin-top: 3.25rem !important;
}
/* Image on left when text on right */
.split-bleed.text-right .split-bleed__image {
  left: 0;
  right: auto;
}
/* Mobile */
@media (max-width: 767.98px) {
  .split-bleed {
    display: block;
    min-height: auto;
  }
  .split-bleed__image {
    position: relative;
    width: 100%;
    height: 350px;
  }
  .split-bleed__content {
    padding-top: 50px;
    padding-bottom: 35px;
  }
  /* Optional: tighten heading spacing on mobile */
  .split-bleed h2 {
    margin-bottom: 1.25rem;
  }
}
/* Tile */
.wwd-item__inner {
  position: relative;
  height: 350px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}
/* Top overlay (title + rule + overlay-2) */
.wwd-overlay {
  position: relative;
  background: rgba(245, 245, 245, 1);
  padding: 15px 15px 0;
  text-align: center;
  z-index: 3;
}
/* Rule */
.wwd-rule {
  display: block;
  width: 100%;
  height: 2px;
  background: #c9b35c;
}
/* Overlay-2 sits under rule and overlaps image */
.wwd-overlay-2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px; /* pulls it into the image */
  height: 15px;
  background: rgba(245, 245, 245, .75);
  z-index: 4;
}
/* Image container */
.wwd-image {
  position: relative;
  overflow: hidden;
}
/* Background image */
.wwd-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform .45s ease;
  will-change: transform;
}
/* Hover zoom (desktop only) */
@media (hover: hover) {
  .wwd-item__inner:hover .wwd-image::before {
    transform: scale(1.08);
  }
}
/* Typography */
.wwd-overlay h5 {
  padding: 30px 0 5px;
  font-size: 20px;
  line-height: 20px;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}
/* Results */
.results-section {
  position: relative;
  padding: 90px 0 40px;
  overflow: visible;
}
.results-card, .results-card-right {
  background: #d9d9d9;
  padding: 45px 45px 10px 45px;
  max-width: 585px;
}
.results-image {
  height: 500px;
}
.results-inner {
  position: relative;
  z-index: 2;
  margin-left: -25%;
  margin-bottom: -120px;
  margin-right: -15px;
}
.results-inner-right {
  position: relative;
  z-index: 2;
  margin-right: -15px;
  margin-bottom: -120px;
  margin-left: 10%;
}
.results-inner .container {
  padding-left: 25%;
}
.results-inner-right .container {
  padding-right: 0;
}
/* DESKTOP / TABLET */
@media (min-width: 768px) {
  .results-image {
    height: 700px;
  }
  .results-section {
    padding: 140px 0;
  }
  .results-row {
    margin: 0;
  }
  .results-row > [class^="col-"] {
    padding: 0;
  }
  .results-inner, .results-inner-right {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-bottom: 0;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .results-card {
    margin-left: -25%;
    pointer-events: auto;
  }
  .results-card-right {
    margin-right: -25%;
    pointer-events: auto;
  }
  .results-inner .container {
    padding-left: 25%;
  }
  .results-inner-right .container {
    padding-right: 25%;
    float: right;
  }
}
.service-box {
  border: 1px solid #c5a900;
}
/* Accodion */
/* default state */
.accordion-icon .icon-minus {
  display: none;
}
/* expanded state */
.building-header[aria-expanded="true"] .icon-plus {
  display: none;
}
.building-header[aria-expanded="true"] .icon-minus {
  display: inline-block;
}
/* optional polish */
.accordion-icon i {
  transition: opacity 0.2s ease;
}
.buildings-accordion {
  width: 100%;
  display: block;
}
/* Accordion wrapper */
.buildings-accordion {
  border: 2px solid #d6b328;
  border-radius: 0;
  margin-top: 50px;
}
.building-item + .building-item .building-header {
  border-top: 2px solid #d6b328;
}
.building-header {
  cursor: pointer;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 28px;
  color: #000000;
}
.building-header .accordion-title {
  margin: 0;
}
.building-header .accordion-icon {
  font-size: 28px;
  line-height: 1;
}
.building-body {
  padding: 30px 28px 30px;
  border-top: 2px solid #ffffff;
}
.building-body p {
  margin-bottom: 8px;
}
.building-body strong {
  font-weight: 700;
}
.building-body .row > div {
  margin-bottom: 15px;
}
/* Image */
.building-img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .building-body .text-col {
    padding-right: 30px;
  }
}
/* Approach */
.link-plain {
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--mp-gold);
  padding-bottom: 2px;
}
.link-plain:hover {
  text-decoration: none;
  opacity: .85;
}
/* Footer */
.footer {
  background: var(--mp-blue);
  color: #fff;
  padding: 56px 0;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-brand-logo img {
  width: 95px;
  height: auto;
}
.footer-brand-logo {
  margin: 0 0 40px 0;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  color: #ffffff;
}
.contact-list li:last-child {
  margin-bottom: 0;
}
.contact-list .icon {
  width: 24px;
  height: 24px;
  background: #ffffff;
  color: #1e4f91;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-family: futura-pt, sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.contact-list a:hover {
  text-decoration: none;
  color: #569af8;
}
.footer-bottom {
  background: var(--mp-blue);
  color: rgba(255, 255, 255, .85);
  padding: 40px 0;
  font-size: 18px;
  font-family: futura-pt, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.footer-bottom a:hover {
  text-decoration: none;
  color: #569af8;
}
/* Buttons */
.learn-more {
  position: relative;
  display: inline-block;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  color: #000;
  text-decoration: none;
  padding-bottom: 10px;
}
.learn-more-line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 40px;
  background-color: #c5a900;
  transition: width .35s ease;
}
a.learn-more {
  text-decoration: none;
}
/* Hover animation */
.learn-more:hover .learn-more-line {
  width: 100%;
}
/* ----- Base form wrapper ----- */
.nf-multi-cell .nf-cell {
  float: left;
  padding: 0 !important;
}
.nf-before-form-content, .ninja-forms-req-symbol, .nf-error-wrap {
  display: none !important;
}
#nf-form-2-cont {
  background-color: transparent;
  padding: 0;
  color: #ffffff;
  font-family: futura-pt, sans-serif;
  font-weight: 300;
  font-style: normal;
}
#nf-form-2-cont .nf-form-layout {
  background: transparent;
  border: none;
}
/* Remove default NF styling */
#nf-form-2-cont .nf-field-label label {
  font-weight: 400;
  text-transform: none;
}
#nf-form-2-cont .nf-element {
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  color: #ffffff;
}
/* ----- Two-column layout ----- */
@media (min-width: 992px) {
  #nf-form-2-cont .cf-left, #nf-form-2-cont .cf-right {
    float: left;
  }
  #nf-form-2-cont .cf-left {
    padding-right: 10px;
    width: 100%;
  }
  #nf-form-2-cont .cf-right {
    padding-left: 10px;
    width: 100%;
  }
}
/* Stack on mobile */
@media (max-width: 991.98px) {
  #nf-form-2-cont .cf-left, #nf-form-2-cont .cf-right {
    width: 100%;
    float: none;
  }
}
/* ----- Labels ----- */
#nf-form-2-cont .nf-field-label label {
  display: block;
  font-size: 18px;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  font-weight: 300;
}
/* ----- Single-line inputs (Name, Email, Phone) ----- */
#nf-form-2-cont .cf-left .nf-element[type="text"], #nf-form-2-cont .cf-left .nf-element[type="email"], #nf-form-2-cont .cf-left .nf-element[type="tel"] {
  width: 100%;
  border-bottom: 1px solid #ffffff;
  padding: 6px 0 12px;
  font-size: 18px;
}
#nf-form-2-cont .cf-left .nf-element::placeholder {
  color: rgba(255, 255, 255, 1);
}
/* Spacing between left fields */
#nf-form-2-cont .cf-left {
  margin-bottom: 20px;
}
/* ----- Message textarea (right side box) ----- */
#nf-form-2-cont .cf-message .nf-element {
  width: 100%;
  min-height: 205px;
  border: 1px solid #ffffff;
  padding: 15px;
  font-size: 18px;
  resize: vertical;
}
.checkbox-wrap {
  background-color: #7e9cc1;
  width: 150px;
  padding: 10px 10px 7px 10px;
}
.checkbox-wrap .nf-field-label {
  color: #000000 !important;
}
#nf-form-2-cont .cf-human {
  margin-right: 20px;
}
/* 1) Style the submit input text */
#nf-field-8[type="submit"] {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 1px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  cursor: pointer;
  margin-top: 9px;
}
#nf-field-8[type="submit"]:focus {
  outline: none;
}
/* 2) Place underline on clickable container */
#nf-field-8-wrap, #nf-field-8-container, #nf-field-8 .nf-field-element {
  position: relative;
  display: inline-block;
}
/* 3) gold animated underline */
#nf-field-8-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 3px;
  width: 25%;
  background: #c5a900;
  transition: width 0.35s ease-in-out;
}
/* 4) grow underline on hover / focus */
#nf-field-8-wrap:hover::after, #nf-field-8-container:hover::after, #nf-field-8:hover + *, #nf-field-8:focus + * {
  width: 100%;
}
/* ONLY apply to field 10 and 8 */
#nf-field-10-container, #nf-field-8-container {
  float: left;
  width: 45% !important;
  clear: none !important;
  box-sizing: border-box;
}
/* keep them aligned vertically */
#nf-field-10-wrap, #nf-field-8-wrap {
  width: 100%;
}
/* optional: stack on mobile */
@media (max-width: 640px) {
  #nf-field-10-container, #nf-field-8-container {
    float: none;
    width: 100% !important;
  }
}
/* Mobile spacing tweak */
@media (max-width: 767.98px) {
  #nf-form-2-cont .cf-human .nf-field-element {
    width: 30px !important;
  }
}
/* Form ID 2 — message textarea placeholder black */
#nf-form-2-cont .cf-message .nf-element::placeholder {
  color: #ffffff !important;
  opacity: 1; /* make sure it appears fully black in Safari/Firefox */
}
/* For older browsers */
#nf-form-2-cont .cf-message .nf-element::-webkit-input-placeholder {
  color: #ffffff !important;
}
#nf-form-2-cont .cf-message .nf-element:-ms-input-placeholder {
  color: #ffffff !important;
}
/* Focus / errors */
#nf-form-2-cont .nf-element:focus {
  outline: none;
  box-shadow: none;
  border-color: #f4c64a;
}
#nf-form-2-cont .nf-error-msg {
  color: #ffdede;
  font-size: 13px;
  margin-top: 6px;
}
.flex-feature {
  position: relative;
  width: 100%;
}
.flex-feature.top-margin {
  margin: 100px 0;
}
.flex-feature.no-top-margin {
  margin: 75px 0 100px 0;
}
.feature-inner {
  position: relative;
}
/* Shared text box styling */
.feature-textbox {
  background: #d9d9d9;
  max-width: 650px;
  padding: 40px 50px;
  line-height: 1.55;
  z-index: 2;
}
/* Base image styles */
.feature-image img {
  display: block;
  object-fit: cover;
}
/* =========================
   DESKTOP (image overlaps + centered text)
   ========================= */
@media (min-width: 992px) {
  .feature-image img {
    width: 65vw; /* 65% viewport width */
    max-height: 700px; /* desktop max height */
    height: auto;
  }
  /* Image on RIGHT */
  .layout--image-right .feature-image img {
    margin-left: auto; /* push to right edge */
  }
  /* Image on LEFT */
  .layout--image-left .feature-image img {
    margin-right: auto; /* push to left edge */
  }
  .feature-textbox {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) !important; /* vertical center */
  }
  .layout--image-right .feature-textbox {
    left: 150px; /* 100px from left */
  }
  .layout--image-left .feature-textbox {
    right: 150px; /* 100px from right */
  }
}
/* =========================
   MOBILE (text BEFORE image + overlap)
   ========================= */
@media (max-width: 991px) {
  .feature-inner {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  /* Text box first in visual order */
  .feature-textbox {
    position: relative;
    order: 1;
    top: 0;
    right: 0; /* 50px from left edge */
    right: auto;
    max-width: calc(100% - 50px); /* 50px left + 50px right */
    transform: none;
    padding: 20px 25px 0px 25px;
  }
  /* Image second in visual order */
  .feature-image {
    order: 2;
    margin-top: -100px; /* pulls image up to sit under text */
  }
  .feature-image img {
    width: 100%;
    max-height: 550px; /* mobile max height */
    height: auto;
  }
}
@media (min-width: 544px) {}
@media(min-width:768px) {
  .stat .label {
    min-height: auto;
  }
}
@media(min-width:992px) {
	.mt-6, .my-6 {
  margin-top: 5rem !important;
}
  .stat .label {
    min-height: 2.6em;
  }
}
@media(min-width:1200px) {
	.mt-6, .my-6 {
  margin-top: 5rem !important;
}
  .stat .label {
    min-height: auto;
  }
}