/* --------------------
   Base / Layout
-------------------- */
:root {
  --mp-gray: #d7d7d7;
  --mp-blue: #004990;
  --mp-blue-dark: #06407a;
  --mp-gold: #c5a900;
  --mp-text: #111;
}
html {
  scroll-behavior: smooth;
}
.spacer-50 {
  height: 50px;
}
.spacer-100 {
  height: 100px;
}
.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;
}
.site-header .navbar {
  height: 65px;
  padding: 0;
  background: #fff;
  overflow: visible;
}
.site-logo {
  height: 65px;
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 120px;
  width: auto;
  display: block;
  position: relative;
  top: 65px;
}
.site-logo-mobile {
  height: 65px;
  display: flex;
  align-items: center;
}
.site-logo-mobile img {
  height: 120px;
  width: auto;
  display: block;
  position: relative;
  top: 65px;
}
.desktop-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.desktop-navigation li {
  position: relative;
}
.desktop-navigation a {
  display: block;
  padding: 20px 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: 5px;
  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: 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;
  height: calc(100vh - 65px);
  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: calc(100svh - 65px);
  }
  .left, .right {
    width: 100%;
  }
  .left {
    position: relative;
    --layer-h: auto;
    padding: 150px 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: 52vh;
    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;
}
.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: #000000;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.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%;
  }
}
/* Tile */
.wwd-item__inner {
  position: relative;
  height: 350px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Zoom */
.wwd-item__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform .45s ease;
  z-index: 0;
}
.wwd-item__inner:hover::before {
  transform: scale(1.08);
}
/* Overlay */
.wwd-overlay {
  position: relative;
  z-index: 1;
  background: rgba(245, 245, 245, 1);
  padding: 15px 15px 0 15px;
  text-align: center;
}
.wwd-overlay-2 {
  position: relative;
  z-index: 1;
  background: rgba(245, 245, 245, .75);
  padding: 15px 0;
  text-align: center;
}
.wwd-overlay h5 {
  padding: 30px 0 5px 0;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0px;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.wwd-rule {
  display: block;
  width: 100%;
  height: 2px;
  background: #c9b35c;
}
/* 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 {
  background-image: url("../img/about-results.jpg");
  background-size: cover;
  background-position: center center;
  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 */
.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: 100%;
    margin-bottom: 20px;
  }
}
/* 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;
}