/* ========================================== */
/* === CSS Table of Contents ================ */
/* === 2023 © Guardian Sages ================ */ 
/* ========================================== */

/* ========================================== */
/* === 1. Top Header Section ================ */
/* === 2. Navigation Section ================ */
/* === 3. Website Pages Section ============= */
/* ===    a. Home Section =================== */
/* ===    b. About Section ================== */
/* ===    c. Services Section =============== */
/* ===    d. Gallery Section ================ */
/* ===    e. Areas We Service Section ======= */
/* ===    f. Testimonials Section =========== */
/* ===    g. Contact Section ================ */
/* ===    h. Sections On Every Page ========= */
/* === 4. Misc. Section ===================== */
/* ===    a. Referrals Owl Carousel ========= */
/* ===    b. Default Classes ================ */
/* ===    c. Gallery Function Section ======= */
/* ===    d. Reviews Function Section ======= */
/* === 5. Footer Section ==================== */
/* === 6. Lg. Laptop CSS Section ============ */
/* === 7. Sm. Laptop CSS Section ============ */
/* === 8. Tablet CSS Section ================ */
/* === 9. Mobile CSS Section ================ */
/* === 10. Sm. Mobile CSS Section =========== */
/* ========================================== */

@import url('https://fonts.googleapis.com/css?family=Staatliches');
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,700,900');

@font-face {
	font-family: 'font';
	src:url('../fonts/arvo.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'font2';
	src:url('../fonts/poppins.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'font3';
	src:url('../fonts/Monoton-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'feathericons';
	src:url('../fonts/feathericons/feathericons.eot?-8is7zf');
	src:url('../fonts/feathericons/feathericons.eot?#iefix-8is7zf') format('embedded-opentype'),
		url('../fonts/feathericons/feathericons.woff?-8is7zf') format('woff'),
		url('../fonts/feathericons/feathericons.ttf?-8is7zf') format('truetype'),
		url('../fonts/feathericons/feathericons.svg?-8is7zf#feathericons') format('svg');
}


  .popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
  }

  .popup-overlay.active {
    display: flex;
  }

  .popup-box {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: #f3f3f3;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    overflow: hidden;
  }

  .popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: transparent;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    z-index: 2;
  }

  .popup-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
  }

  .popup-left,
  .popup-right {
    flex: 1;
  }

  .popup-left img {
    width: 100%;
    height: auto;
    display: block;
  }

  .popup-right h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin: 0 0 20px;
    color: #111;
  }

  .popup-right p {
    font-size: 1.5rem;
    margin: 0 0 24px;
    color: #111;
  }

  .popup-button {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 8px;
    background: #b45ae0;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.2s ease;
  }

  .popup-button:hover {
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    .popup-content {
      flex-direction: column;
      text-align: center;
      padding: 28px 20px;
      gap: 24px;
    }

    .popup-right h2 {
      font-size: 1.6rem;
    }

    .popup-right p {
      font-size: 1.15rem;
    }
  }


/* ======================================== */
/* === Top Header Section ================= */
/* ======================================== */
:root {
  --nw-color-bg-top: rgba(255, 255, 255, 0.96);
  --nw-color-bg-main: transparent;
  --nw-color-bg-scrolled: rgba(17, 17, 17, 0.96);
  --nw-color-panel: rgba(17, 17, 17, 0.98);
  --nw-color-panel-soft: rgba(255, 255, 255, 0.06);
  --nw-color-text-dark: #2f3b52;
  --nw-color-text-light: #ffffff;
  --nw-color-accent: #fed000;
  --nw-color-border-light: rgba(255, 255, 255, 0.18);
  --nw-color-border-dark: rgba(0, 0, 0, 0.08);
  --nw-shadow-scrolled: 0 8px 24px rgba(0, 0, 0, 0.18);
  --nw-wrap-width: 1180px;
  --nw-transition: all 0.3s ease;
}

body.nw-menu-open {
  overflow: hidden;
}

.nw-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: var(--nw-transition);
}

.nw-header-wrap {
  width: min(100% - 40px, var(--nw-wrap-width));
  margin: 0 auto;
}

/* top bar */
.nw-header-top {
      overflow: hidden;
    background: linear-gradient(to right, #ffffffc9, #ffffffc2), url(/img/homepage/wood-bg-01.png);
    background-size: 190%;
    background-color: #fed000;
    background-position: top right;
    max-height: 80px;
    transition: var(--nw-transition);
}

.nw-header-top .nw-header-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nw-header-top-left,
.nw-header-top-right {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nw-top-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
	padding: 10px;
  color: var(--nw-color-text-dark);
  text-decoration: none;
  transition: var(--nw-transition);
}

.nw-top-link:hover {
  background: var(--nw-color-accent); color: #000; border-radius: 5px; box-shadow: 0px 0px 0px 1px #000; font-weight: 600;
	transform: translateY(-5px);
}

.nw-top-icon {
  font-size: 14px;
  opacity: 0.75;
}

.nw-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nw-social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
		background: #fff;
  text-decoration: none;
  color: #000;
  border: 1px dotted #0009;
  transition: var(--nw-transition);
}

.nw-social-link:hover {
  background: var(--nw-color-accent);
  border-color: var(--nw-color-accent);
  color: #111;
  transform: translateY(-1px);
}

.nw-top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  background: var(--nw-color-accent);
  transition: var(--nw-transition);
}

.nw-top-cta:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

/* main bar */
.nw-header-main {
  background: transparent;
  transition: var(--nw-transition);
}

.nw-header-main .nw-header-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--nw-color-border-light);
  transition: var(--nw-transition);
}

.nw-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nw-logo-img {
  display: block;
  width: auto;
  max-height: 42px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(77%) saturate(747%) hue-rotate(2deg) brightness(102%) contrast(101%);
  transition: var(--nw-transition);
}

.bottom-logo {
  max-height: 25px;
  margin-left: -15px;
}

.nw-header.nw-scrolled .nw-logo-img {
  max-height: 34px;
}

.nw-header.nw-scrolled .bottom-logo {
  max-height: 20px;
}

/* desktop nav */
.nw-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nw-nav-item {
  position: relative;
}

.nw-nav-link,
.nw-nav-toggle {
  color: var(--nw-color-text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: var(--nw-transition);
}

.nw-nav-link:hover,
.nw-nav-link.nw-is-active,
.nw-nav-toggle:hover,
.nw-nav-item.nw-dropdown-open .nw-nav-toggle {
  color: var(--nw-color-accent);
}

.nw-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nw-nav-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: var(--nw-transition);
}

.nw-nav-item.nw-dropdown-open .nw-nav-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.nw-nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 260px;
  background: rgba(17, 17, 17, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--nw-transition);
}

.nw-nav-item.nw-dropdown-open .nw-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nw-nav-dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: var(--nw-transition);
}

.nw-nav-dropdown-link:hover {
  background: rgba(254, 208, 0, 0.08);
  color: var(--nw-color-accent);
  padding-left: 24px;
}

/* mobile toggle */
.nw-mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 10002;
}

.nw-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: var(--nw-transition);
}

.nw-mobile-toggle.nw-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nw-mobile-toggle.nw-active span:nth-child(2) {
  opacity: 0;
}

.nw-mobile-toggle.nw-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile panel */
.nw-mobile-panel {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--nw-transition);
  z-index: 10000;
}

.nw-mobile-panel.nw-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nw-mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  background: var(--nw-color-panel);
  padding: 22px 20px 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: var(--nw-transition);
}

.nw-mobile-panel.nw-open .nw-mobile-menu.nw-mobile-menu-active {
  transform: translateX(0);
}

.nw-mobile-menu-sub {
  z-index: 2;
}

.nw-mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  min-height: 44px;
}

.nw-mobile-panel-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.nw-mobile-close,
.nw-mobile-back {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.nw-mobile-close {
  font-size: 34px;
  line-height: 1;
}

.nw-mobile-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
}

.nw-mobile-links {
  display: block;
}

.nw-mobile-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  text-decoration: none;
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.nw-mobile-link:hover {
  color: var(--nw-color-accent);
}

.nw-mobile-link-arrow {
  font-size: 22px;
  line-height: 1;
}

.nw-mobile-contact {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 14px;
}

.nw-mobile-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 15px;
}

.nw-mobile-contact-link i {
  color: var(--nw-color-accent);
  width: 16px;
}

.nw-mobile-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.nw-mobile-social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nw-mobile-social-link:hover {
  background: var(--nw-color-accent);
  border-color: var(--nw-color-accent);
  color: #111;
}

.nw-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  margin-top: 24px;
  background: var(--nw-color-accent);
  color: #111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

/* scrolled */
.nw-header.nw-scrolled .nw-header-top {
  max-height: 0;
  opacity: 0;
}

.nw-header.nw-scrolled .nw-header-main {
  background: var(--nw-color-bg-scrolled);
  box-shadow: var(--nw-shadow-scrolled);
}

.nw-header.nw-scrolled .nw-header-main .nw-header-wrap {
  min-height: 70px;
  border-bottom-color: transparent;
}

.nw-header-spacer {
  height: 166px;
}

/* tablet/mobile */
@media (max-width: 1024px) {
  .nw-nav {
    display: none;
  }

  .nw-mobile-toggle {
    display: block;
  }

  .nw-header-main .nw-header-wrap {
    min-height: 76px;
  }

  .nw-header-top {
    display: none;
  }

  .nw-header.nw-scrolled .nw-header-main .nw-header-wrap {
    min-height: 68px;
  }

  .nw-header-spacer {
    height: 76px;
  }
}

@media (max-width: 767px) {
  .nw-header-wrap {
    width: min(100% - 24px, var(--nw-wrap-width));
  }

  .nw-header-main .nw-header-wrap {
    min-height: 72px;
  }

  .nw-logo-img {
    max-height: 34px;
  }

  .bottom-logo {
    max-height: 20px;
    margin-left: -12px;
  }

  .nw-header.nw-scrolled .nw-logo-img {
    max-height: 32px;
  }

  .nw-header.nw-scrolled .bottom-logo {
    max-height: 18px;
  }

  .nw-mobile-menu {
    width: 100%;
    padding-top: 18px;
  }

  .nw-header-spacer {
    height: 72px;
  }
}


/* ======================================== */
/* === Navigvation Section ================ */
/* ======================================== */

body {
	padding: 0; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out; overflow-x: hidden;
}

/* ========================================== */
/* === Website Pages Section ================ */
/* ========================================== */

/**** Home Section ****/
.nw-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

/* SLIDES */

.nw-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
}

.nw-active {
  opacity: 1;
  z-index: 2;
}

/* OVERLAY */

.nw-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 20, 24, 0.85) 0%,
      rgba(15, 20, 24, 0.75) 45%,
      rgba(15, 20, 24, 0.35) 100%
    );
  z-index: 1;
}

/* CONTENT */

.nw-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 8%;
  padding: 120px 40px;
  color: #fff;
}

/* TEXT */

.nw-hero-subtitle {
  display: block;
  color: #FED000;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.nw-hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.1;
}

.nw-hero-overview {
  margin-bottom: 18px;
  line-height: 1.6;
  font-size: 16px;
}

/* BULLETS */

.nw-hero-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.nw-hero-bullets li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.nw-hero-bullets li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #FED000;
}

/* BUTTONS */

.nw-hero-cta a {
  display: inline-block;
  margin-right: 10px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.nw-btn-primary {
  background: #FED000;
  color: #111;
}

.nw-btn-secondary {
  background: #fff;
  color: #111;
}

/* ARROWS */

.nw-hero-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.4);
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 5;
}

.nw-prev { left: 20px; }
.nw-next { right: 20px; }

/* DOTS */

.nw-hero-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
}

.nw-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
}

.nw-dot.active {
  opacity: 1;
  background: #f4b400;
}

/* MOBILE */

@media (max-width: 768px) {
  .nw-hero-content {
    margin-left: 0;
    padding: 100px 20px;
  }

  .nw-hero-title {
    font-size: 32px;
  }
	
.nw-hero-cta a {
    display: inline-flex;
    margin-right: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    align-items: center;
}
	.nw-hero-cta{
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
	}

	
.nw-hero-arrows button {
    top: 80%;
}
	
}

.nw-intro {
  position: relative;
  padding: 0 0 110px;
      background: linear-gradient(to right, #ffffffd6, #ffffff66), url(/img/homepage/wood-bg-01.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
  overflow: hidden;
  margin-top: -75px;
}

/* TOP CTA BANNER */
.nw-intro-banner-wrap {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
  transform: translateY(-34px);
}

.nw-intro-banner {
    position: relative;
    background: #FED000;
    color: #111;
    padding: 55px 75px 25px 25px;
    display: flex;
    border-left: 5px solid #222;
    border-bottom: 5px solid #222;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.nw-intro-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  width: 26px;
  height: 100%;
  background: #111;
  transform: skewX(-28deg);
  opacity: 0.18;
}

.nw-intro-banner__content {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.nw-intro-banner__icon {
  flex: 0 0 auto;
  font-size: 2.6rem;
  line-height: 1;
}

.nw-intro-banner__text {
  min-width: 0;
}

.nw-intro-banner__eyebrow {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nw-intro-banner__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 800;
}

.nw-intro-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nw-intro-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid #fff;
  transition: all 0.25s ease;
}

.nw-intro-banner__btn:hover {
  transform: translateY(-2px);
  background: #111;
  color: #fff;
  border-color: #111;
}

.nw-intro-banner__btn--dark {
  background: #111;
  color: #fff;
  border-color: #111;
}

.nw-intro-banner__btn--dark:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* MAIN INTRO */
.nw-intro__container {
  width: min(1320px, calc(100% - 40px));
  margin: -4px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.nw-intro__content {
  max-width: 760px;
}

.nw-intro__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  margin-top: 75px;
  padding: 8px 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: #111;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nw-intro__title {
     margin: 0 0 22px;
    font-size: 50px;
    line-height: 65px;
    font-weight: 800;
    color: #111;
    max-width: 100%;
}

.nw-intro__text {
  margin: 0 0 18px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #4d4d4d;
}

.nw-intro__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 34px;
}

.nw-intro__feature {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
}

.nw-intro__feature-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #FED000;
  font-size: 1.7rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
}

.nw-intro__feature-text h4 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.nw-intro__feature-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #5b5b5b;
}

.nw-intro__media {
  position: relative;
}

.nw-intro__image {
  display: block;
  width: 100%;
  min-height: 650px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .nw-intro-banner {
    clip-path: none;
  }

  .nw-intro-banner::after {
    display: none;
  }

  .nw-intro__container {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .nw-intro__image {
    min-height: 560px;
  }
}

@media (max-width: 991px) {
  .nw-intro {
    padding: 0 0 90px;
  }

  .nw-intro-banner-wrap {
    transform: translateY(-24px);
  }

  .nw-intro-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 35px 25px 25px;
  }

  .nw-intro-banner__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .nw-intro__container {
    grid-template-columns: 1fr;
  }

  .nw-intro__title {
    max-width: none;
  }

  .nw-intro__image {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .nw-intro {
    padding: 0 0 75px;
  }

  .nw-intro-banner-wrap,
  .nw-intro__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-intro-banner__content {
    align-items: flex-start;
  }

  .nw-intro-banner__icon {
    font-size: 2rem;
  }

  .nw-intro-banner__title {
    font-size: 1.1rem;
  }

  .nw-intro-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nw-intro-banner__btn {
    width: 100%;
  }

  .nw-intro__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
  }

  .nw-intro__text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-intro__features {
    grid-template-columns: 1fr;
  }

  .nw-intro__feature {
    grid-template-columns: 60px 1fr;
  }

  .nw-intro__feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .nw-intro__feature-text h4 {
    font-size: 1.2rem;
  }

  .nw-intro__image {
    min-height: 320px;
  }
}

.nw-services-showcase {
  padding: 110px 0;
      background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.71) 100%), url(/img/homepage/outdoor-01.webp);
    height: 100%;
    background-attachment: fixed;
    background-size: cover;
}

.nw-services-showcase__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-services-showcase__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
}

.nw-services-showcase__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #111;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-services-showcase__title {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.08;
  font-weight: 800;
  color: #111;
}

.nw-services-showcase__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.nw-services-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.nw-services-showcase__grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px; margin-top: 25px;
}

.nw-service-card {
  position: relative;
  min-height: 430px;
  padding: 0 34px 34px;
  background: #efefef;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.nw-service-card:hover {
  transform: translateY(-8px);
     box-shadow: 1px 1px 10px 1px #000;
}

.nw-service-card__bg,
.nw-service-card__overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nw-service-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nw-service-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(254, 208, 0, 0.78) 0%,
    rgba(254, 208, 0, 0.84) 100%
  );
}

.nw-service-card:hover .nw-service-card__bg,
.nw-service-card:hover .nw-service-card__overlay {
  opacity: 1;
}

.nw-service-card__icon,
.nw-service-card__content {
  position: relative;
  z-index: 2;
}

.nw-service-card__icon {
  width: 84px;
  height: 84px;
  margin: 0 -35px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FED000;
  color: #111;
  font-size: 2rem;
  transition: background 0.35s ease, color 0.35s ease;
}

.nw-service-card:hover .nw-service-card__icon {
  background: rgba(17, 17, 17, 0.92);
  color: #FED000;
}

.nw-service-card__content {
  text-align: center;
}

.nw-service-card__title {
  margin: 0 0 20px;
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 800;
  color: #111;
  transition: color 0.35s ease;
}

.nw-service-card__text {
  margin: 0 0 28px;
  font-size: 1.03rem;
  line-height: 1.8;
  color: #666;
  transition: color 0.35s ease;
}

.nw-service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  background: #FED000;
  border: 2px solid #FED000;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.nw-service-card:hover .nw-service-card__title,
.nw-service-card:hover .nw-service-card__text {
  color: #fff;
}

.nw-service-card:hover .nw-service-card__btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

@media (max-width: 1100px) {
  .nw-services-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
	
	
  .nw-services-showcase {
    padding: 80px 0;
  }

  .nw-services-showcase__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-services-showcase__grid {
    grid-template-columns: 1fr;
  }
.nw-services-showcase__grid2 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
  .nw-service-card {
    min-height: 380px;
    padding: 0 24px 24px;
  }

  .nw-service-card__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    font-size: 1.7rem;
  }

  .nw-service-card__title {
    font-size: 1.65rem;
  }

  .nw-service-card__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .nw-service-card__btn {
    width: 100%;
  }
}


:root {
  --nw-projects-bg: #f5f5f5;
  --nw-projects-text: #1a1a1a;
  --nw-projects-muted: #8d8d8d;
  --nw-projects-accent: #f4b400;
  --nw-projects-overlay: rgba(244, 180, 0, 0.88);
  --nw-projects-white: #ffffff;
  --nw-projects-dark: #111111;
  --nw-projects-transition: all 0.3s ease;
  --nw-projects-wrap: 1440px;
}

.nw-projects {
  padding: 110px 0 200px 0;
  background: linear-gradient(to right, #ffffffd6, #ffffff66), url(/img/homepage/wood-bg-01.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.nw-projects-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 0 20px;
}

.nw-projects-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border: 2px solid var(--nw-projects-accent);
  border-radius: 0;
  position: relative;
  box-sizing: border-box;
}

.nw-projects-icon::before,
.nw-projects-icon::after {
  content: "";
  position: absolute;
  border: 2px solid var(--nw-projects-accent);
  box-sizing: border-box;
}

.nw-projects-icon::before {
  width: 18px;
  height: 18px;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
}

.nw-projects-icon::after {
  inset: 4px;
  border-style: dashed;
  opacity: 0.55;
}

.nw-projects-title {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--nw-projects-text);
}

.nw-projects-subtitle {
  margin: 0;
  font-size: 24px;
  font-style: italic;
  color: #a6a6a6;
}

.nw-projects-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px 34px;
  padding: 0 20px 52px;
}

.nw-projects-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: #3b3b3b;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  position: relative;
  cursor: pointer;
  transition: var(--nw-projects-transition);
}

.nw-projects-tab:hover,
.nw-projects-tab.nw-is-active {
  color: var(--nw-projects-text);
}

.nw-projects-tab.nw-is-active::before,
.nw-projects-tab.nw-is-active::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.nw-projects-tab.nw-is-active::before {
  top: -2px;
  left: -8px;
  border-top: 3px solid var(--nw-projects-accent);
  border-left: 3px solid var(--nw-projects-accent);
}

.nw-projects-tab.nw-is-active::after {
  right: -8px;
  bottom: -2px;
  border-right: 3px solid var(--nw-projects-accent);
  border-bottom: 3px solid var(--nw-projects-accent);
}

.nw-projects-grid {
  width: min(100%, var(--nw-projects-wrap));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.nw-project-card {
  position: relative;
  overflow: hidden;
  background: #ddd;margin: 5px;
}

.nw-project-card:hover {
	box-shadow: 1px 1px 10px 1px #000; margin: 0px;
}

.nw-project-card.nw-is-hidden {
  display: none;
}

.nw-project-media {
  position: relative;
  min-height: 360px;
  height: 100%;
}

.nw-project-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.35s ease;
}

.nw-project-overlay {
  position: absolute;
  inset: 0;
  background: var(--nw-projects-overlay);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 24px 22px;
  opacity: 0;
  visibility: hidden;
  transition: var(--nw-projects-transition);
}

.nw-project-card:hover .nw-project-overlay {
  opacity: 1;
  visibility: visible;
}

.nw-project-card:hover .nw-project-img {
  transform: scale(1.06);
}

.nw-project-actions {
  display: flex;
  gap: 10px;
}

.nw-project-btn {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  color: var(--nw-projects-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--nw-projects-transition);
  font-size: 18px;
  line-height: 1;
}

.nw-project-btn:hover {
  background: var(--nw-projects-white);
  color: var(--nw-projects-text);
}

.nw-project-content {
  color: var(--nw-projects-white);
}

.nw-project-title {
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.nw-project-meta {
  margin: 0;
  font-size: 20px;
  font-style: italic;
  opacity: 0.96;
}

.nw-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: var(--nw-projects-transition);
}

.nw-lightbox.nw-is-open {
  opacity: 1;
  visibility: visible;
}

.nw-lightbox-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.nw-lightbox-img {
  display: block;
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  margin: 0 auto;
  background: #fff;
}

.nw-lightbox-caption {
  color: #fff;
  font-size: 16px;
  margin-top: 14px;
}

.nw-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: var(--nw-projects-transition);
}

.nw-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 1200px) {
  .nw-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .nw-projects {
    padding-top: 80px;
  }

  .nw-projects-title {
    font-size: 34px;
  }

  .nw-projects-subtitle {
    font-size: 18px;
  }

  .nw-projects-tabs {
    gap: 14px 16px;
    padding-bottom: 34px;
  }

  .nw-projects-tab {
    font-size: 13px;
    padding: 10px 12px;
  }

  .nw-projects-grid {
    grid-template-columns: 1fr;
  }

  .nw-project-media,
  .nw-project-img {
    min-height: 280px;
  }

  .nw-project-overlay {
    opacity: 1;
    visibility: visible;
    background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.08));
    padding: 20px;
  }

  .nw-project-actions {
    margin-bottom: auto;
  }

  .nw-project-title {
    font-size: 22px;
  }

  .nw-project-meta {
    font-size: 16px;
  }
}


.nw-stats {
  position: relative;
  padding: 100px 0;
  background: #111;
  overflow: hidden;
}

.nw-stats::before,
.nw-stats::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#FED000 1.2px, transparent 1.2px);
  background-size: 14px 14px;
}

.nw-stats::before {
  left: -40px;
  bottom: -80px;
}

.nw-stats::after {
  right: -40px;
  top: -80px;
}

.nw-stats__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.nw-stat-card {
  position: relative;
}

.nw-stat-card__inner {
  position: relative;
  min-height: 100%;
  padding: 38px 28px 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.nw-stat-card__inner::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: #FED000;
  transform: scaleX(0.18);
  transform-origin: left center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.nw-stat-card__inner::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(rgba(254, 208, 0, 0.22), rgba(254, 208, 0, 0));
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.nw-stat-card__icon {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FED000;
  color: #111;
  font-size: 2rem;
  box-shadow: 0 12px 24px rgba(254, 208, 0, 0.16);
  transition: transform 0.4s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.nw-stat-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 1.7rem;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  transition: color 0.35s ease, transform 0.35s ease;
}

.nw-stat-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.35s ease;
}

/* HOVER */
.nw-stat-card:hover .nw-stat-card__inner {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(254, 208, 0, 0.28);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.24);
}

.nw-stat-card:hover .nw-stat-card__inner::before {
  transform: scaleX(1);
  box-shadow: 0 0 18px rgba(254, 208, 0, 0.45);
}

.nw-stat-card:hover .nw-stat-card__inner::after {
  opacity: 1;
  transform: scale(1);
}

.nw-stat-card:hover .nw-stat-card__icon {
  transform: translateY(-4px) rotate(-6deg) scale(1.08);
  background: #fff;
  color: #111;
  box-shadow: 0 18px 28px rgba(254, 208, 0, 0.22);
}

.nw-stat-card:hover .nw-stat-card__title {
  color: #FED000;
  transform: translateX(4px);
}

.nw-stat-card:hover .nw-stat-card__text {
  color: rgba(255, 255, 255, 0.96);
}

/* Slight hover variation by card */
.nw-stat-card:nth-child(2):hover .nw-stat-card__icon {
  transform: translateY(-4px) rotate(6deg) scale(1.08);
}

.nw-stat-card:nth-child(3):hover .nw-stat-card__icon {
  transform: translateY(-4px) scale(1.1);
}

.nw-stat-card:nth-child(4):hover .nw-stat-card__icon {
  transform: translateY(-4px) rotate(-3deg) scale(1.08);
}

@media (max-width: 1100px) {
  .nw-stats__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .nw-stats {
    padding: 80px 0;
  }

  .nw-stats__container {
    width: min(100%, calc(100% - 24px));
    grid-template-columns: 1fr;
  }

  .nw-stat-card__inner {
    padding: 30px 22px 26px;
  }

  .nw-stat-card__icon {
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .nw-stat-card__title {
    font-size: 1.45rem;
  }

  .nw-stat-card__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}


.nw-cta-break {
  position: relative;
  padding: 75px 0;
  overflow: hidden;
  color: #fff; 
}

.nw-cta-break__bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url('/img/homepage/service-slide-5.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed; /* THIS is what you wanted */
}

.nw-cta-break__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK BASE OVERLAY */
.nw-cta-break__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.85) 0%,
    rgba(17, 17, 17, 0.75) 50%,
    rgba(17, 17, 17, 0.6) 100%
  );
}

/* OPTIONAL ACCENT GLOW */
.nw-cta-break::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    circle at 75% 50%,
    rgba(254, 208, 0, 0.15),
    transparent 60%
  );
  pointer-events: none;
}

.nw-cta-break__container {
  position: relative;
  z-index: 3;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-cta-break__content {
  max-width: 640px;
}

.nw-cta-break__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #FED000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-cta-break__title {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: 1.05;
  font-weight: 800;
}

.nw-cta-break__text {
  margin: 0 0 32px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.nw-cta-break__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */
.nw-cta-break__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* PRIMARY (YELLOW) */
.nw-cta-break__btn--primary {
  background: #FED000;
  color: #111;
}

.nw-cta-break__btn--primary:hover {
  background: #fff;
  color: #111;
}

/* SECONDARY (OUTLINE) */
.nw-cta-break__btn--secondary {
  border: 2px solid #fff;
  color: #fff;
}

.nw-cta-break__btn--secondary:hover {
  background: #fff;
  color: #111;
}

/* MOBILE */
@media (max-width: 767px) {
  .nw-cta-break {
    padding: 90px 0;
  }

  .nw-cta-break__container {
    width: calc(100% - 24px);
  }

  .nw-cta-break__title {
    font-size: 2.2rem;
  }

  .nw-cta-break__text {
    font-size: 1rem;
  }

  .nw-cta-break__btn {
    width: 100%;
  }
}


.nw-why {
  padding: 110px 0;
    background: linear-gradient(to right, #ffffffd6, #ffffff66), url(/img/homepage/wood-bg-01.png);
    background-size: cover;
  overflow: hidden;
}

.nw-why__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-why__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 36px;
}

.nw-why__content {
  max-width: 760px; margin-left: -45px;
}

.nw-why__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #FED000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-why__title {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #111;
  max-width: 100%;
}

.nw-why__intro {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.85;
  color: #666;
  max-width: 700px;
}

.nw-why__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}

.nw-why__media::before {
  content: "";
  position: absolute;
  width: min(420px, 84%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(254, 208, 0, 0.18) 0%,
    rgba(254, 208, 0, 0.08) 45%,
    rgba(254, 208, 0, 0) 72%
  );
  z-index: 1;
  top: 20px;
}

.nw-why__image {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.18));
}

.nw-why__bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.nw-why__item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 20px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.nw-why__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.10);
}

.nw-why__icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FED000 0%, #ffd83d 100%);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 12px 24px rgba(254, 208, 0, 0.22);
  flex-shrink: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.nw-why__item:hover .nw-why__icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 30px rgba(254, 208, 0, 0.28);
}

.nw-why__text h3 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.nw-why__text span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.4;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #8a8a8a;
}

.nw-why__text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #666;
}

@media (max-width: 1100px) {
  .nw-why__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nw-why__title {
    max-width: none;
  }

  .nw-why__intro {
    max-width: 100%;
  }

  .nw-why__media {
    justify-content: center;
    padding-top: 0;
  }

  .nw-why__image {
    width: min(460px, 100%);
  }

  .nw-why__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .nw-why {
    padding: 80px 0;
  }

  .nw-why__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-why__title {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .nw-why__intro,
  .nw-why__text p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .nw-why__item {
    grid-template-columns: 72px 1fr;
    gap: 14px;
    padding: 18px 16px;
  }

  .nw-why__icon {
    width: 72px;
    height: 72px;
    font-size: 1.5rem;
  }

  .nw-why__text h3 {
    font-size: 1.2rem;
  }

  .nw-why__text span {
    font-size: 0.88rem;
  }
}


.nw-reviews {
  padding: 110px 0;
     background: linear-gradient(to right, #0000005e, #00000040), url(/img/homepage/remodel-03.webp);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.nw-reviews__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-reviews__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
}

.nw-reviews__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #FED000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-reviews__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 65px; text-shadow: 1px 1px 1px #000;
  font-weight: 800;
  color: #fff;
}

.nw-reviews__intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #fff;
}

.nw-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.nw-review-card {
  display: none;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  padding: 24px; border-radius: 15px;
}

.nw-review-card.is-visible {
  display: flex;
}

.nw-review-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.nw-review-card__avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #FED000;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.nw-review-card__meta {
  min-width: 0;
}

.nw-review-card__author {
  margin: 0 0 6px;
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.nw-review-card__stars {
  color: #FED000;
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.nw-review-card__body {
  flex: 1 1 auto;
}

.nw-review-card__text {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
}

.nw-review-card__text.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nw-review-card__text.is-expanded {
  display: block;
}

.nw-review-card__toggle {
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: none;
    color: #c8a506;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nw-review-card__toggle:hover {
  color: #FED000;
}

.nw-review-card__footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.nw-review-card__footer a {
  color: #111;
  font-weight: 800;
  text-decoration: none;
}

.nw-review-card__footer a:hover {
  color: #FED000;
}

.nw-reviews__actions {
  margin-top: 40px;
  text-align: center;
}

.nw-reviews__loadmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  background: #111;
  color: #fff;
  border: 2px solid #111;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.28s ease;
}

.nw-reviews__loadmore:hover {
  background: #FED000;
  color: #111;
  border-color: #FED000;
}

@media (max-width: 1100px) {
  .nw-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .nw-reviews {
    padding: 80px 0;
  }

  .nw-reviews__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-reviews__grid {
    grid-template-columns: 1fr;
  }

  .nw-review-card {
    padding: 20px;
  }

  .nw-review-card__author {
    font-size: 1.15rem;
  }

  .nw-review-card__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .nw-reviews__loadmore {
    width: 100%;
  }
}







.nw-home-process {
    position: relative;
    padding: 110px 0;
    background: black;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.nw-home-process__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-home-process__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}

.nw-home-process__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #FED000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-home-process__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color:white;
}

.nw-home-process__intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: white;
}

.nw-home-process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}

.nw-home-process__track::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(17,17,17,0.12),
    rgba(17,17,17,0.24),
    rgba(17,17,17,0.12)
  );
  z-index: 0;
}

.nw-home-process-step {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  text-align: center;
}

.nw-home-process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 100px;
    margin-bottom: 18px;
    padding: 0 14px;
    background: #111;
    color: #FED000;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nw-home-process-step__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(17,17,17,0.08);
  color: #111;
  font-size: 2rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
		
		display: none;
}

.nw-home-process-step__title {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 800;
  color: white;
}

.nw-home-process-step__text {
  margin: 0 auto;
  max-width: 280px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: white;
}

.nw-home-process-step:hover .nw-home-process-step__icon {
  transform: translateY(-6px);
  background: #111;
  color: #FED000;
  border-color: #111;
  box-shadow: 0 18px 34px rgba(0,0,0,0.14);
}

.nw-home-process-step:hover .nw-home-process-step__number {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}

@media (max-width: 1100px) {
  .nw-home-process__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }

  .nw-home-process__track::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .nw-home-process {
    padding: 80px 0;
  }

  .nw-home-process__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-home-process__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.12;
  }

  .nw-home-process__intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-home-process__track {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nw-home-process-step {
    padding: 0;
  }

  .nw-home-process-step__icon {
    width: 74px;
    height: 74px;
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .nw-home-process-step__title {
    font-size: 1.25rem;
  }

  .nw-home-process-step__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}




















.nw-faq {
  padding: 110px 0;
    background: linear-gradient(to right, #ffffffd6, #ffffff66), url(/img/homepage/wood-bg-01.png);
    background-size: cover;
  overflow: hidden;
}

.nw-faq__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.nw-faq__content {
  max-width: 760px;
}

.nw-faq__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #FED000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-faq__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #111;
}

.nw-faq__intro {
  margin: 0 0 30px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
}

.nw-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nw-faq__item {
 /* background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);*/
  overflow: hidden;
}

.nw-faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 800;
}

.nw-faq__question i {
  flex-shrink: 0;
  color: #111;
  transition: transform 0.28s ease, color 0.28s ease;
}

.nw-faq__item.is-active .nw-faq__question {
  background: #111;
  color: #fff;
}

.nw-faq__item.is-active .nw-faq__question i {
  color: #FED000;
  transform: rotate(45deg);
}

.nw-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  background: #fff;
}

.nw-faq__answer-inner {
  padding: 0 24px 24px;
}

.nw-faq__answer-inner p {
  margin: 0 0 14px;
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
}

.nw-faq__answer-inner ul {
  margin: 0;
  padding-left: 18px;
}

.nw-faq__answer-inner li {
  margin-bottom: 10px;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.7;
}

.nw-faq__answer-inner a {
      color: #FED000;
    font-weight: 600;
    font-size: 15px;
}

.nw-faq__answer-inner a:hover {
  color: #000;
}

.nw-faq__media {
  position: sticky;
  top: 110px;
  align-self: start;
}

.nw-faq__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 560px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.14));
}

@media (max-width: 1100px) {
  .nw-faq__container {
    grid-template-columns: 1fr;
  }

  .nw-faq__media {
    position: relative;
    top: auto;
    order: -1;
  }

  .nw-faq__image {
    max-width: 460px;
  }
}

@media (max-width: 767px) {
  .nw-faq {
    padding: 80px 0;
  }

  .nw-faq__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-faq__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
  }

  .nw-faq__intro,
  .nw-faq__answer-inner p,
  .nw-faq__answer-inner li {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-faq__question {
    padding: 18px 18px;
    font-size: 1rem;
  }

  .nw-faq__answer-inner {
    padding: 0 18px 18px;
  }

  .nw-faq__image {
    max-width: 100%;
  }
}


/**** About Section ****/
.nw-inner-hero {
  position: relative;
  height: 850px;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nw-inner-hero__bg {
  position: absolute;
  inset: 0;
  background: url('/img/homepage/home-slide-1.jpg') center / cover no-repeat;
  z-index: 0;
}

.nw-inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,20,24,0.88) 0%,
    rgba(15,20,24,0.75) 50%,
    rgba(15,20,24,0.45) 100%
  );
  z-index: 1;
}

.nw-inner-hero__container {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-inner-hero__content {
  max-width: 680px;
  padding: 60px 0;
  color: #fff;
}

.nw-inner-hero__eyebrow {
  display: block;
  color: #FED000;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.nw-inner-hero__title {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}

.nw-inner-hero__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 26px;
  color: rgba(255,255,255,0.9);
}

.nw-inner-hero__actions a {
  margin-right: 10px;    padding: 15px;
    font-weight: 600;
}

.nw-about-intro {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(to right, #ffffffeb, #ffffffd9),
    url('/img/homepage/wood-bg-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.nw-about-intro__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.nw-about-intro__media {
  position: relative;
}

.nw-about-intro__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.nw-about-intro__image {
  display: block;
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.nw-about-intro__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 280px;
  padding: 18px 20px;
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  border-left: 4px solid #FED000;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.nw-about-intro__badge strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
}

.nw-about-intro__badge span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.nw-about-intro__content {
  max-width: 760px;
}

.nw-about-intro__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: #111;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nw-about-intro__title {
  margin: 0 0 22px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #111;
}

.nw-about-intro__text {
  margin: 0 0 18px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #555;
}

.nw-about-intro__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 34px;
}

.nw-about-intro__point {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: start;
}

.nw-about-intro__point-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #FED000;
  font-size: 1.55rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
}

.nw-about-intro__point-text h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.nw-about-intro__point-text p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5b5b5b;
}

@media (max-width: 991px) {
  .nw-about-intro {
    padding: 90px 0;
  }
.nw-inner-hero__actions a {
    display: inline-flex;
    gap: 10px;
}
  .nw-about-intro__container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .nw-about-intro__image {
    min-height: 420px;
  }
.nw-inner-hero__title {
    font-size: 2rem;
}
	
	
}

@media (max-width: 767px) {
  .nw-about-intro {
    padding: 80px 0;
  }

  .nw-about-intro__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-about-intro__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.12;
  }

  .nw-about-intro__text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-about-intro__points {
    grid-template-columns: 1fr;
  }

  .nw-about-intro__point {
    grid-template-columns: 60px 1fr;
  }

  .nw-about-intro__point-icon {
    width: 60px;
    height: 60px;
    font-size: 1.35rem;
  }

  .nw-about-intro__image {
    min-height: 320px;
  }

  .nw-about-intro__badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

.nw-about-values {
  position: relative;
  padding: 110px 0;
  background: #111;
  overflow: hidden;
}

.nw-about-values::before,
.nw-about-values::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#FED000 1.2px, transparent 1.2px);
  background-size: 14px 14px;
}

.nw-about-values::before {
  left: -40px;
  top: -60px;
}

.nw-about-values::after {
  right: -40px;
  bottom: -60px;
}

.nw-about-values__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-about-values__header {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.nw-about-values__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #FED000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-about-values__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #fff;
}

.nw-about-values__intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.nw-about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.nw-about-value-card {
  position: relative;
  min-height: 100%;
  padding: 34px 26px 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.nw-about-value-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: #FED000;
  transform: scaleX(0.18);
  transform-origin: left center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.nw-about-value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(254, 208, 0, 0.28);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.24);
}

.nw-about-value-card:hover::before {
  transform: scaleX(1);
  box-shadow: 0 0 18px rgba(254, 208, 0, 0.45);
}

.nw-about-value-card__icon {
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FED000;
  color: #111;
  font-size: 1.95rem;
  box-shadow: 0 12px 24px rgba(254, 208, 0, 0.16);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.nw-about-value-card:hover .nw-about-value-card__icon {
  transform: translateY(-4px) rotate(-4deg);
  background: #fff;
  color: #111;
}

.nw-about-value-card__title {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

.nw-about-value-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 1100px) {
  .nw-about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .nw-about-values {
    padding: 80px 0;
  }





  .nw-about-values__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-about-values__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.12;
  }

  .nw-about-values__intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-about-values__grid {
    grid-template-columns: 1fr;
  }

  .nw-about-value-card {
    padding: 28px 22px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .nw-about-value-card__icon {
    width: 68px;
    height: 68px;
    font-size: 1.65rem;
    margin-bottom: 18px;
  }

  .nw-about-value-card__title {
    font-size: 1.3rem;
  }

  .nw-about-value-card__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

.nw-about-story {
  position: relative;
  padding: 110px 0;
  background: #fff;
}

.nw-about-story__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.nw-about-story__content {
  max-width: 720px;
}

.nw-about-story__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #FED000;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-about-story__title {
  margin: 0 0 22px;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
}

.nw-about-story__text {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #555;
}

.nw-about-story__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin-top: 28px;
}

.nw-about-story__highlight {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.nw-about-story__highlight-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #FED000;
  font-size: 1.3rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.nw-about-story__highlight-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 4px;
}

.nw-about-story__highlight-text span {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #777;
}

.nw-about-story__media {
  position: relative;
}

.nw-about-story__image {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

@media(max-width: 991px){
	
.nw-about-story__container {
    grid-template-columns: 1fr;
}
.nw-about-story__title {
    font-size: 2rem;
}

.nw-about-story__highlights {
    grid-template-columns: 1fr;
}
}

.nw-about-builds {
  position: relative;
  padding: 110px 0;
     background: linear-gradient(#000000a3, #000000a3), url(/img/homepage/remodel-02.jpg) center / cover no-repeat;
    background-attachment: fixed;
}

.nw-about-builds__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-about-builds__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
}

.nw-about-builds__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #FED000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-about-builds__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #fff;
}

.nw-about-builds__intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #fff;
}

.nw-about-builds__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.nw-about-build-card {
  position: relative;
  padding: 34px 30px 30px;
  background: #fff;
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 16px 34px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nw-about-build-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254,208,0,0.4);
  box-shadow: 0 24px 40px rgba(0,0,0,0.10);
}

.nw-about-build-card__icon {
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #FED000;
  font-size: 1.8rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.10);
}

.nw-about-build-card__title {
  margin: 0 0 14px;
  font-size: 1.7rem;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.nw-about-build-card__text {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.75;
  color: #5b5b5b;
}

.nw-about-build-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nw-about-build-card__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #444;
}

.nw-about-build-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #FED000;
}

@media (max-width: 991px) {
  .nw-about-builds__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .nw-about-builds {
    padding: 80px 0;
  }

  .nw-about-builds__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-about-builds__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.12;
  }

  .nw-about-builds__intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-about-build-card {
    padding: 28px 22px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
		}

  .nw-about-build-card__icon {
    width: 66px;
    height: 66px;
    font-size: 1.55rem;
    margin-bottom: 18px;
  }

  .nw-about-build-card__title {
    font-size: 1.35rem;
  }

  .nw-about-build-card__text,
  .nw-about-build-card__list li {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}


.nw-about-stats-band {
  position: relative;
  padding: 85px 0;
  background: #FED000;
  overflow: hidden;
}

.nw-about-stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17,17,17,0.14) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  opacity: 0.18;
  pointer-events: none;
}

.nw-about-stats-band__container {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-about-stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.nw-about-stats-band__item {
  position: relative;
  text-align: center;
  padding: 26px 22px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.nw-about-stats-band__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: rgba(17,17,17,0.18);
}

.nw-about-stats-band__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.08);
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 0;
}

.nw-about-stats-band__icon,
.nw-about-stats-band__value,
.nw-about-stats-band__label {
  position: relative;
  z-index: 1;
}

.nw-about-stats-band__icon {
  margin-bottom: 16px;
  font-size: 2rem;
  color: #111;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.nw-about-stats-band__value {
  margin-bottom: 10px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
  color: #111;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.nw-about-stats-band__label {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 800;
  color: #111;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    letter-spacing 0.3s ease;
}

/* Hover magic */
.nw-about-stats-band__item:hover {
  transform: translateY(-6px);
}

.nw-about-stats-band__item:hover::before {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 36px rgba(0,0,0,0.14);
}

.nw-about-stats-band__item:hover .nw-about-stats-band__icon {
  transform: translateY(-4px) scale(1.08);
  color: #fff;
  text-shadow: 0 0 18px rgba(255,255,255,0.18);
}

.nw-about-stats-band__item:hover .nw-about-stats-band__value,
.nw-about-stats-band__item:hover .nw-about-stats-band__label {
  color: #fff;
}

.nw-about-stats-band__item:hover .nw-about-stats-band__value {
  transform: scale(1.04);
}

.nw-about-stats-band__item:hover .nw-about-stats-band__label {
  transform: translateY(2px);
  letter-spacing: 0.01em;
}

/* Slight per-item variation */
.nw-about-stats-band__item:nth-child(2):hover .nw-about-stats-band__icon {
  transform: translateY(-4px) rotate(-6deg) scale(1.08);
}

.nw-about-stats-band__item:nth-child(3):hover .nw-about-stats-band__icon {
  transform: translateY(-4px) rotate(6deg) scale(1.08);
}

.nw-about-stats-band__item:nth-child(4):hover .nw-about-stats-band__icon {
  transform: translateY(-4px) scale(1.12);
}

@media (max-width: 991px) {
  .nw-about-stats-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .nw-about-stats-band__item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .nw-about-stats-band {
    padding: 70px 0;
  }

  .nw-about-stats-band__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-about-stats-band__grid {
    grid-template-columns: 1fr;
  }

  .nw-about-stats-band__item {
    padding: 22px 16px;
  }

  .nw-about-stats-band__item::after {
    display: none;
  }

  .nw-about-stats-band__icon {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }

  .nw-about-stats-band__value {
    font-size: 2.7rem;
  }

  .nw-about-stats-band__label {
    font-size: 1rem;
  }
}

.nw-about-process {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(to right, #ffffffeb, #ffffffd9),
    url('/img/homepage/wood-bg-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.nw-about-process__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-about-process__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}

.nw-about-process__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #111;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-about-process__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #111;
}

.nw-about-process__intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.nw-about-process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.nw-about-process__track::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(17,17,17,0.12),
    rgba(17,17,17,0.24),
    rgba(17,17,17,0.12)
  );
  z-index: 0;
}

.nw-about-process-step {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  text-align: center;
}

.nw-about-process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  background: #111;
  color: #FED000;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

.nw-about-process-step__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(17,17,17,0.08);
  color: #111;
  font-size: 2rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.nw-about-process-step__title {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.nw-about-process-step__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #5b5b5b;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.nw-about-process-step:hover .nw-about-process-step__icon {
  transform: translateY(-6px);
  background: #111;
  color: #FED000;
  border-color: #111;
  box-shadow: 0 18px 34px rgba(0,0,0,0.14);
}

@media (max-width: 1100px) {
  .nw-about-process__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }

  .nw-about-process__track::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .nw-about-process {
    padding: 80px 0;
  }

  .nw-about-process__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-about-process__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.12;
  }

  .nw-about-process__intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-about-process__track {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nw-about-process-step {
    padding: 0;
  }

  .nw-about-process-step__icon {
    width: 74px;
    height: 74px;
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .nw-about-process-step__title {
    font-size: 1.25rem;
  }

  .nw-about-process-step__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

.nw-about-area {
  position: relative;
  padding: 120px 0;
  background: url('/img/homepage/washington-state.jpg') center / cover no-repeat;
  overflow: hidden;
}

.nw-about-area__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,20,24,0.92) 0%,
    rgba(15,20,24,0.85) 45%,
    rgba(15,20,24,0.55) 100%
  );
  z-index: 1;
}

.nw-about-area__container {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
}

.nw-about-area__content {
  max-width: 680px;
  color: #fff;
}

.nw-about-area__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #FED000;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-about-area__title {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.nw-about-area__text {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.nw-about-area__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.nw-about-area__list span {
  position: relative;
  padding-left: 18px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.nw-about-area__list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #FED000;
}

@media (max-width: 767px) {
  .nw-about-area {
    padding: 90px 0;
  }

  .nw-about-area__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-about-area__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .nw-about-area__text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-about-area__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nw-about-cta {
  position: relative;
  padding: 90px 0;
  background: #111;
  overflow: hidden;
}

.nw-about-cta::before,
.nw-about-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
}

.nw-about-cta::before {
  top: -40px;
  left: -40px;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(#FED000 1.2px, transparent 1.2px);
  background-size: 14px 14px;
}

.nw-about-cta::after {
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  border: 2px solid rgba(254, 208, 0, 0.14);
  transform: rotate(18deg);
}

.nw-about-cta__container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-about-cta__panel {
  position: relative;
  padding: 60px 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.nw-about-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: #FED000;
}

.nw-about-cta__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #FED000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-about-cta__title {
  margin: 0 auto 18px;
  max-width: 860px;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
}

.nw-about-cta__text {
  margin: 0 auto 30px;
  max-width: 820px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.nw-about-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nw-about-cta__actions a{
    margin-right: 10px;
    padding: 15px;
    font-weight: 600;
}
 
.nw-about-cta .nw-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.nw-about-cta .nw-btn-secondary:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

@media (max-width: 767px) {
  .nw-about-cta {
    padding: 75px 0;
  }

  .nw-about-cta__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-about-cta__panel {
    padding: 40px 24px;
  }

  .nw-about-cta__title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.12;
  }

  .nw-about-cta__text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-about-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nw-about-cta .nw-btn {
    width: 100%;
  }
}

/**** Services Section ****/

.nw-service-hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nw-service-hero__bg-decks {
  position: absolute;
  inset: 0;
  background: url('/img/homepage/deck-02.webp') center / cover no-repeat;
  z-index: 0; 
}

.nw-service-hero__bg-patios {
  position: absolute;
  inset: 0;
  background: url('/img/homepage/patio-02.webp') center / cover no-repeat;
  z-index: 0;background-position: bottom center;
}

.nw-service-hero__bg-remodeling {
  position: absolute;
  inset: 0;
  background: url('/img/homepage/remodel-03.webp') center / cover no-repeat;
  z-index: 0;
}

.nw-service-hero__bg-additions {
  position: absolute;
  inset: 0;
  background: url('/img/homepage/addition-01.webp') center / cover no-repeat;
  z-index: 0;
}

.nw-service-hero__bg-docks {
  position: absolute;
  inset: 0;
  background: url('/img/homepage/dock-03.webp') center / cover no-repeat;
  z-index: 0;
}

.nw-service-hero__bg-boat-lifts {
  position: absolute;
  inset: 0;
  background: url('/img/homepage/boat-lift-02.webp') center / cover no-repeat;
  z-index: 0;
}

.nw-service-hero__bg-windows {
  position: absolute;
  inset: 0;
  background: url('/img/homepage/window-installation-02.webp') center / cover no-repeat;
  z-index: 0;
}

.nw-service-hero__bg-adu {
  position: absolute;
  inset: 0;
  background: url('/img/homepage/dadu-01.webp') center / cover no-repeat;
  z-index: 0;
}


.nw-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,20,24,0.92) 0%,
    rgba(15,20,24,0.82) 45%,
    rgba(15,20,24,0.55) 100%
  );
  z-index: 1;
}

.nw-service-hero__container {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.nw-service-hero__content {
  max-width: 700px;
  color: #fff;
}

.nw-service-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #FED000;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-service-hero__title {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
}

.nw-service-hero__text {
  margin: 0 0 26px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.nw-service-hero__actions {
  display: flex;
  gap: 14px; padding: 15px; font-weight: 600;
  flex-wrap: wrap;
}

/* NAVIGATION */
.nw-service-hero__nav {
  align-self: flex-end;
  padding: 20px 22px;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(6px);
  border-left: 3px solid #FED000;
	width: 300px;
}

.nw-service-hero__nav-label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.nw-service-hero__nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.padder {
	padding: 15px;
}

.nw-service-hero__nav-links a {
  color: #fff;
  font-size: 0.95rem; padding: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nw-service-hero__nav-links a:hover {
  color: #FED000;
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .nw-service-hero__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nw-service-hero__nav {
    width: 100%;
  }

  .nw-service-hero__nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 18px;
		        justify-content: center;
  }
	
	
.nw-service-hero__nav-label {
    text-align: center;
}
	
}

@media (max-width: 767px) {
  .nw-service-hero {
    min-height: auto;
    padding: 90px 0;
  }

  .nw-service-hero__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-service-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .nw-service-hero__text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-service-hero__actions {
    flex-direction: column;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .nw-service-hero .nw-btn {
    width: 100%;
  }

  .nw-service-hero__nav {
    padding: 16px;
  }

  .nw-service-hero__nav-links a {
    font-size: 0.9rem;
  }
}


.nw-service-overview {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(to right, #ffffffeb, #ffffffd9),
    url('/img/homepage/wood-bg-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.nw-service-overview__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.nw-service-overview__media {
  position: relative;
}

.nw-service-overview__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.nw-service-overview__image {
  display: block;
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.nw-service-overview__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 18px 20px;
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  border-left: 4px solid #FED000;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.nw-service-overview__badge strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
}

.nw-service-overview__badge span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.nw-service-overview__content {
  max-width: 760px;
}

.nw-service-overview__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: #111;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nw-service-overview__title {
  margin: 0 0 22px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #111;
}

.nw-service-overview__text {
  margin: 0 0 18px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #555;
}

.nw-service-overview__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 34px;
}

.nw-service-overview__point {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: start;
}

.nw-service-overview__point-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #FED000;
  font-size: 1.55rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
}

.nw-service-overview__point-text h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.nw-service-overview__point-text p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5b5b5b;
}

@media (max-width: 991px) {
  .nw-service-overview {
    padding: 90px 0;
  }

  .nw-service-overview__container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .nw-service-overview__image {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .nw-service-overview {
    padding: 80px 0;
  }

  .nw-service-overview__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-service-overview__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.12;
  }

  .nw-service-overview__text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-service-overview__points {
    grid-template-columns: 1fr;
  }

  .nw-service-overview__point {
    grid-template-columns: 60px 1fr;
  }

  .nw-service-overview__point-icon {
    width: 60px;
    height: 60px;
    font-size: 1.35rem;
  }

  .nw-service-overview__image {
    min-height: 320px;
  }

  .nw-service-overview__badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

.nw-service-benefits {
  position: relative;
  padding: 110px 0;
  background: #111;
  overflow: hidden;
}

.nw-service-benefits::before,
.nw-service-benefits::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#FED000 1.2px, transparent 1.2px);
  background-size: 14px 14px;
}

.nw-service-benefits::before {
  left: -40px;
  top: -60px;
}

.nw-service-benefits::after {
  right: -40px;
  bottom: -60px;
}

.nw-service-benefits__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-service-benefits__header {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.nw-service-benefits__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #FED000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-service-benefits__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #fff;
}

.nw-service-benefits__intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.nw-service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.nw-service-benefit {
  position: relative;
  padding: 0 18px;
}

.nw-service-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: -17px;
  width: 1px;
  height: calc(100% - 24px);
  background: rgba(255,255,255,0.10);
}

.nw-service-benefit__icon {
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FED000;
  color: #111;
  font-size: 1.9rem;
  box-shadow: 0 12px 24px rgba(254, 208, 0, 0.16);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.nw-service-benefit__title {
  margin: 0 0 14px;
  font-size: 1.6rem;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

.nw-service-benefit__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.nw-service-benefit:hover .nw-service-benefit__icon {
  transform: translateY(-4px) rotate(-4deg);
  background: #fff;
  color: #111;
}


@media (max-width: 1100px) {
  .nw-service-benefits__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nw-service-benefit {
    padding: 0;
  }

  .nw-service-benefit::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .nw-service-benefits {
    padding: 80px 0;
  }
.nw-service-benefit {
    position: relative;
    padding: 0 18px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
  .nw-service-benefits__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-service-benefits__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.12;
  }

  .nw-service-benefits__intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-service-benefit__icon {
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
    margin-bottom: 18px;
  }

  .nw-service-benefit__title {
    font-size: 1.3rem;
  }

  .nw-service-benefit__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}


.nw-service-process {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(to right, #fed00045, #fed00045),
    url('/img/homepage/wood-bg-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.nw-service-process__container {
  width: min(1500px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-service-process__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}

.nw-service-process__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #111;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-service-process__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #111;
}

.nw-service-process__intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.nw-service-process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}

.nw-service-process__track::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(17,17,17,0.12),
    rgba(17,17,17,0.24),
    rgba(17,17,17,0.12)
  );
  z-index: 0;
}

.nw-service-process-step {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  text-align: center;
}

.nw-service-process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  background: #111;
  color: #FED000;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nw-service-process-step__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(17,17,17,0.08);
  color: #111;
  font-size: 2rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.nw-service-process-step__title {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.nw-service-process-step__text {
  margin: 0 auto;
  max-width: 280px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #5b5b5b;
}

.nw-service-process-step:hover .nw-service-process-step__icon {
  transform: translateY(-6px);
  background: #111;
  color: #FED000;
  border-color: #111;
  box-shadow: 0 18px 34px rgba(0,0,0,0.14);
}

.nw-service-process-step:hover .nw-service-process-step__number {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}

@media (max-width: 1100px) {
  .nw-service-process__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }

  .nw-service-process__track::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .nw-service-process {
    padding: 80px 0;
  }

  .nw-service-process__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-service-process__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.12;
  }

  .nw-service-process__intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-service-process__track {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nw-service-process-step {
    padding: 0;
  }

  .nw-service-process-step__icon {
    width: 74px;
    height: 74px;
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .nw-service-process-step__title {
    font-size: 1.25rem;
  }

  .nw-service-process-step__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

.nw-service-why {
  position: relative;
  padding: 110px 0;
  background: #111;
  overflow: hidden;
}

.nw-service-why__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.nw-service-why__media {
  position: relative;
}

.nw-service-why__image {
  display: block;
  width: 100%;
  min-height: 620px;
  object-fit: cover;
      box-shadow: -15px -15px 0px 0px #fed000;
    border: 5px solid #fff;
}

.nw-service-why__content {
  max-width: 760px;
}

.nw-service-why__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #FED000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-service-why__title {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #fff;
}

.nw-service-why__intro {
  margin: 0 0 30px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.nw-service-why__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.nw-service-why__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nw-service-why__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FED000;
  color: #111;
  font-size: 1.6rem;
  box-shadow: 0 12px 24px rgba(254, 208, 0, 0.18);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.nw-service-why__item:hover .nw-service-why__icon {
  transform: translateY(-4px);
  background: #fff;
  color: #111;
}

.nw-service-why__text h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

.nw-service-why__text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 991px) {
  .nw-service-why {
    padding: 90px 0;
  }

  .nw-service-why__container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .nw-service-why__image {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .nw-service-why {
    padding: 80px 0;
  }

  .nw-service-why__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-service-why__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.12;
  }

  .nw-service-why__intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-service-why__item {
    grid-template-columns: 60px 1fr;
    gap: 14px;
    padding-bottom: 18px;
  }

  .nw-service-why__icon {
    width: 60px;
    height: 60px;
    font-size: 1.35rem;
  }

  .nw-service-why__text h3 {
    font-size: 1.18rem;
  }

  .nw-service-why__text p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .nw-service-why__image {
    min-height: 320px;
  }
}





.nw-service-faq {
  position: relative;
  padding: 110px 0 150px 0;
  background:
    linear-gradient(to right, #ffffffeb, #ffffffd9),
    url('/img/homepage/wood-bg-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.nw-service-faq__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 820px) 180px;
  gap: 28px;
  align-items: start;
  justify-content: center;
}

.nw-service-faq__content {
  position: relative;
  z-index: 2;
}

.nw-service-faq__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.nw-service-faq__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #111;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-service-faq__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #111;
}

.nw-service-faq__intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.nw-service-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nw-service-faq__art {
  position: relative;
  min-height: 100%;
  pointer-events: none;
}

.nw-service-faq__art i {
  position: absolute;
  line-height: 1;
  opacity: 0.2;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nw-service-faq__art--left i:nth-child(1) {
  top: 40px;
  left: -5px;
  font-size: 125px;
  color: #111;
}

.nw-service-faq__art--left i:nth-child(2) {
  bottom: 40px;   /* 👈 THIS is the change */
  left: -5px;
  font-size: 125px;
  color: #FED000;
}

.nw-service-faq__art--right i:nth-child(1) {
  top: 200px;
  right: 10px;
  font-size: 125px;
  color: #FED000;
}

.nw-service-faq__art--right i:nth-child(2) {
  bottom: -100px;  /* 👈 THIS is the change */
  right: 0;
  font-size: 125px;
  color: #111;
}
.nw-service-faq__item {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.nw-service-faq__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.nw-service-faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 800;
}

.nw-service-faq__question i {
  flex-shrink: 0;
  color: #111;
  transition: transform 0.28s ease;
}

.nw-service-faq__item.is-active .nw-service-faq__question {
  background: #FED000;
  color: #111;
}

.nw-service-faq__item.is-active .nw-service-faq__question i {
  transform: rotate(45deg);
}

.nw-service-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  background: #fff;
}

.nw-service-faq__answer-inner {
  padding: 0 24px 24px;
}

.nw-service-faq__answer-inner p {
  margin: 0 0 14px;
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
}

.nw-service-faq__answer-inner ul {
  margin: 0;
  padding-left: 18px;
}

.nw-service-faq__answer-inner li {
  margin-bottom: 10px;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.7;
}

.nw-service-faq__answer-inner a {
  color: #c8a506;
  font-weight: 700;
  text-decoration: none;
}

.nw-service-faq__answer-inner a:hover {
  color: #111;
}

@media (max-width: 1100px) {
  .nw-service-faq__container {
    grid-template-columns: 120px minmax(0, 1fr) 120px;
    gap: 18px;
  }

  .nw-service-faq__art--left i:nth-child(1) {
    font-size: 5.5rem;
  }

  .nw-service-faq__art--left i:nth-child(2) {
    font-size: 4.5rem;
    top: 150px;
  }

  .nw-service-faq__art--right i:nth-child(1) {
    font-size: 5rem;
  }

  .nw-service-faq__art--right i:nth-child(2) {
    font-size: 4rem;
    top: 260px;
  }
}

@media (max-width: 991px) {
  .nw-service-faq__container {
    grid-template-columns: 1fr;
  }

  .nw-service-faq__art {
    display: none;
  }
}

@media (max-width: 767px) {
  .nw-service-faq {
    padding: 80px 0;
  }

  .nw-service-faq__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-service-faq__title {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.12;
  }

  .nw-service-faq__intro,
  .nw-service-faq__answer-inner p,
  .nw-service-faq__answer-inner li {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nw-service-faq__question {
    padding: 18px 18px;
    font-size: 1rem;
  }

  .nw-service-faq__answer-inner {
    padding: 0 18px 18px;
  }
}










.nw-service-tabs {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(to right, #ffffffeb, #ffffffd9),
    url('/img/homepage/wood-bg-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.nw-service-tabs__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-service-tabs__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 52px;
}

.nw-service-tabs__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #111;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-service-tabs__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #111;
}

.nw-service-tabs__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT SIDE TAB NAV */
.nw-service-tabs__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nw-service-tabs__tab {
  position: relative;
  width: 100%;
  padding: 22px 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
  color: #111;
  text-align: left;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}

.nw-service-tabs__tab::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #FED000;
  transition: width 0.3s ease;
  z-index: 0;
}

.nw-service-tabs__tab span,
.nw-service-tabs__tab {
  position: relative;
  z-index: 1;
}

.nw-service-tabs__tab:hover {
  transform: translateX(6px);
  border-color: rgba(254, 208, 0, 0.5);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.nw-service-tabs__tab.is-active {
  color: #111;
  border-color: #FED000;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.10);
}

.nw-service-tabs__tab.is-active::before {
  width: 6px;
}

/* RIGHT SIDE CONTENT */
.nw-service-tabs__content {
  position: relative;
  min-height: 540px;
}

.nw-service-tabs__pane {
  display: none;
  grid-template-columns: 1fr;
  gap: 20px;
  animation: nwServiceTabFade 0.35s ease;
}

.nw-service-tabs__pane.is-active {
  display: grid;
}

.nw-service-tabs__pane-text {
  max-width: 760px;
}

.nw-service-tabs__pane-title {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.nw-service-tabs__pane-text p {
  margin: 0 0 18px;
  font-size: 1.03rem;
  line-height: 1.8;
  color: #555;
}

.nw-service-tabs__pane-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.nw-service-tabs__pane-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #444;
}

.nw-service-tabs__pane-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #FED000;
}

.nw-service-tabs__pane-media {
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.14);
}

.nw-service-tabs__pane-media img {
  display: block;
  width: 100%;
  min-height: 420px;
	height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nw-service-tabs__pane.is-active .nw-service-tabs__pane-media img {
  transform: scale(1.02);
}

/* OPTIONAL SMALL IMAGE LABEL */
.nw-service-tabs__pane-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 12px 16px;
  background: rgba(17, 17, 17, 0.88);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
  border-left: 4px solid #FED000;
}

/* ANIMATION */
@keyframes nwServiceTabFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media(max-width:991px){
	
	
.nw-service-tabs__layout {
    grid-template-columns: 310px 1fr;
}
.nw-service-tabs__title {
    font-size: 2rem;
    line-height: 45px;
}
}
@media(max-width:690px){
.nw-service-tabs__layout {
		
    grid-template-columns: 1fr;

}
	
}
/**** Gallery Section ****/
.gallery-page {
padding: 275px 0 150px 0;
    background: linear-gradient(to right, #ffffff70, #ffffff70), url(/img/homepage/wood-bg-01.png);
    background-size: cover;
    background-color: #000000;
    background-attachment: fixed;
}
.gallery-page h1 {
	font-size: 75px; font-weight: 800;  margin-bottom: 75px; text-align: center; color: #fed000;
	text-shadow: 1px 1px 1px #000;
}

/**** Areas We Service Section ****/
.nw-area-hero {
    position: relative;
    min-height: 900px;
    padding-top: 115px;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.nw-area-hero__bg {
  position: absolute;
  inset: 0;
  background: url('/img/homepage/washington-state.jpg') center / cover no-repeat;
  z-index: 0;
}

.nw-area-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,20,24,0.92) 0%,
    rgba(15,20,24,0.82) 40%,
    rgba(15,20,24,0.65) 75%,
    rgba(15,20,24,0.55) 100%
  );
  z-index: 1;
}

.nw-area-hero__container {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 90px;
}

.nw-area-hero__content {
  max-width: 820px;
  margin: 0 auto;
  color: #fff;
}

.nw-area-hero__subtitle {
  display: inline-block;
  margin-bottom: 16px;
  color: #FED000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-area-hero__title {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
}

.nw-area-hero__overview {
  margin: 0 auto 36px;
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.9);
}

/* LOCATION LINKS */

.nw-area-hero__locations {
  margin-top: 30px;
}

.nw-area-hero__locations-label {
  display: block;
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.nw-area-hero__locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nw-area-hero__locations-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.nw-area-hero__locations-grid a:hover {
  transform: translateY(-2px);
  background: #FED000;
  border-color: #FED000;
  color: #111;
  box-shadow: 0 12px 24px rgba(254,208,0,0.18);
}

/* MOBILE */

@media (max-width: 991px) {
	
  .nw-area-hero {
    min-height: auto;
  }

  .nw-area-hero__container {
    width: min(100%, calc(100% - 24px));
    padding: 100px 0 70px;
  }
.nw-area-hero__title {
    font-size: 2rem;
    line-height: 45px;
}
  .nw-area-hero__overview {
    font-size: 1rem;
    line-height: 1.75;
  }

  .nw-area-hero__locations-grid a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}


.nw-area-section {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(to right, #ffffffeb, #ffffffd9),
    url('/img/homepage/wood-bg-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.nw-area-section__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-area-section__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: stretch;
  margin-bottom: 40px;
}

.nw-area-section--reverse .nw-area-section__content {
  order: 2;
}

.nw-area-section--reverse .nw-area-section__map {
  order: 1;
}

.nw-area-section__content {
  max-width: 760px;
  align-self: center;
}

.nw-area-section__subtitle {
  display: inline-block;
  margin-bottom: 14px;
  color: #111;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nw-area-section__title {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
  color: #111;
}

.nw-area-section__overview {
  margin: 0 0 18px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: #555;
}

.nw-area-section__map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  background: #eaeaea;
}

.nw-area-section__map iframe,
.nw-area-section__map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  object-fit: cover;
}

/* SERVICES GRID */
.nw-area-section__services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.nw-area-service-card {
  position: relative;
  min-height: 100%;
  padding: 26px 22px 22px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.nw-area-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 208, 0, 0.45);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.10);
}

.nw-area-service-card__icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #FED000;
  font-size: 1.45rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.nw-area-service-card:hover .nw-area-service-card__icon {
  transform: translateY(-3px);
  background: #FED000;
  color: #111;
}

.nw-area-service-card__title {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.nw-area-service-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a5a5a;
}

/* TABLET */
@media (max-width: 1100px) {
  .nw-area-section__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nw-area-section--reverse .nw-area-section__content,
  .nw-area-section--reverse .nw-area-section__map {
    order: initial;
  }

  .nw-area-section__services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE */
@media (max-width: 767px) {
.nw-area-section {
    padding: 80px 0;
    text-align: center;
}
  .nw-area-section__container {
    width: min(100%, calc(100% - 24px));
  }

  .nw-area-section__title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.12;
  }

  .nw-area-section__overview {
    font-size: 1rem;
    line-height: 1.75;
  }

  .nw-area-section__map,
  .nw-area-section__map iframe,
  .nw-area-section__map img {
    min-height: 300px;
  }

  .nw-area-section__services {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nw-area-service-card {
    padding: 22px 18px 18px;
		
	display: flex;
	flex-direction: column;
	justify-content: center; 
	flex-direction:column;text-align: center
		
  }

  .nw-area-service-card__icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    margin-bottom: 16px;
		
    transform: translate(-50%, -50%);
    background: #FED000;
    color: #111;
    top: 10%;
    left: 50%;
    position: relative;
		
  }

  .nw-area-service-card__title {
    font-size: 1.08rem;
  }

  .nw-area-service-card__text {
    font-size: 0.94rem;
    line-height: 1.65;
  }
}


/**** Contact Section ****/



.nw-contact-hero {
  position: relative;
  min-height: 900px; padding-top: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* BACKGROUND IMAGE */
.nw-contact-hero__bg {
  position: absolute;
  inset: 0;
  background: url('/img/homepage/dadu-01.jpg') center/cover no-repeat;
  z-index: 0;
}

/* OVERLAY */
.nw-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

/* CONTAINER */
.nw-contact-hero__container {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* CONTENT BLOCK */
.nw-contact-hero__content {
  max-width: 680px;
}

/* EYEBROW */
.nw-contact-hero__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fed000;
}

/* TITLE */
.nw-contact-hero__title {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.1;
  font-weight: 800;
}

/* TEXT */
.nw-contact-hero__text {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* BULLETS */
.nw-contact-hero__list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.nw-contact-hero__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height:35px;
}

.nw-contact-hero__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fed000;
  border-radius: 50%;
  margin-top: 8px;
  flex: 0 0 8px;
}

/* ACTIONS */
.nw-contact-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTON OVERRIDES (if needed) */
.nw-contact-hero .nw-btn-primary {
  background: #fed000;
  color: #111;
}

.nw-contact-hero .nw-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .nw-contact-hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .nw-contact-hero__container {
    width: calc(100% - 24px);
  }

  .nw-contact-hero__title {
    font-size: 2.2rem;
  }

  .nw-contact-hero__text {
    font-size: 16px;
  }
}


.nw-contact-overview {
  padding: 90px 0;
  background: #fff;
}

.nw-contact-overview__container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.nw-contact-overview__image-wrap {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.nw-contact-overview__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.nw-contact-overview__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fed000;
}

.nw-contact-overview__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  color: #111; font-weight: 800;
}

.nw-contact-overview__text {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.nw-contact-overview__points {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.nw-contact-overview__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.nw-contact-overview__point-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #111;
  color: #fed000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 52px;
}

.nw-contact-overview__point-text h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #111; font-weight: 600;
}

.nw-contact-overview__point-text p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}



.nw-contact-services {
  padding: 90px 0;
  background: #111;
}

.nw-contact-services__container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.nw-contact-services__header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.nw-contact-services__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fed000;
}

.nw-contact-services__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1; font-weight: 800;
  color: #fff;
}

.nw-contact-services__intro {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.nw-contact-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.nw-contact-service-card {
  perspective: 1200px;
}

.nw-contact-service-card__inner {
  position: relative;
  width: 100%;
  height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.nw-contact-service-card:hover .nw-contact-service-card__inner {
  transform: rotateY(180deg);
}

.nw-contact-service-card__face {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.nw-contact-service-card__face--front {
  background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  align-items: center;
  text-align: center;
}

.nw-contact-service-card__face--back {
  background: #fed000;
  color: #111;
  transform: rotateY(180deg);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.nw-contact-service-card__icon {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: rgba(254, 208, 0, 0.12);
  color: #fed000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.nw-contact-service-card__title {
  margin: 0;
  font-size: 28px; font-weight: 600;
  line-height: 1.2;
}

.nw-contact-service-card__title--extended {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.2;
}

.nw-contact-service-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 1199px) {
  .nw-contact-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .nw-contact-overview__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nw-contact-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .nw-contact-overview,
  .nw-contact-services {
    padding: 70px 0;
  }

  .nw-contact-overview__container,
  .nw-contact-services__container {
    width: min(100% - 24px, 1200px);
  }

  .nw-contact-overview__image {
    min-height: 280px;
  }

  .nw-contact-services__grid {
    grid-template-columns: 1fr;
  }

  .nw-contact-service-card__inner {
    height: 280px;
  }

  .nw-contact-service-card__title {
    font-size: 24px;
  }

  .nw-contact-service-card__title--extended {
    font-size: 21px;
  }
}








/**** Testimonials Section ****/
.testimonials {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}


/**** Sections On Every Page ****/
.eh-contactWrapJ{
    --eh-navy:#2a3d56;
    --eh-accent:#e12757;
    --eh-black:#000;
    --eh-white:#fff;
    --eh-soft:#f6f6f4;
    --eh-muted:#686868;
    padding:90px 0;
        background: linear-gradient(#ffffffa3, #ffffffa3), url(/img/homepage/deck-04.jpeg) center / cover no-repeat;
		background-attachment: fixed;
}
.eh-contactWrapJ *{
    box-sizing:border-box;
}
.eh-contactWrapJ__shell{
    width:min(1280px, calc(100% - 32px));
    margin:0 auto;
    display:grid;
    grid-template-columns:.92fr 1.08fr;
    gap:34px;
    align-items:start;
}
.eh-contactWrapJ__intro{
    background:#111;
    color:#fff;
    border-radius:24px;
    padding:38px 32px;
    box-shadow:0 16px 36px rgba(0,0,0,.10);
    position:sticky;
    top:120px;
}
.eh-contactWrapJ__eyebrow{
    margin:0 0 10px;
    color:#fed000;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.eh-contactWrapJ__title{
    margin:0 0 16px;
    font-size:44px;
    line-height:1.08;
    font-weight:800;
    color:#fff;
}
.eh-contactWrapJ__text{
    margin:0 0 24px;
    color:rgba(255,255,255,.88);
    font-size:17px;
    line-height:1.8;
}
.eh-contactWrapJ__points{
    display:grid;
    gap:14px;
    margin-bottom:24px;
}
.eh-contactWrapJ__point{
    display:flex;
    gap:14px;
    align-items:flex-start;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.12);
    color:#fff;
    font-size:16px;
    line-height:1.6;
}
.eh-contactWrapJ__point a{
    color:#fed000;
    font-weight:800;
    text-decoration:none;
}
.eh-contactWrapJ__point a:hover{
    color:#fff;
}
.eh-contactWrapJ__pointIcon{
    width:38px;
    height:38px;
    border-radius:50%;
    flex:0 0 38px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.12);
    color:#fed000;
}
.eh-contactWrapJ__callout{
    margin-top:8px;
    padding:16px 18px;
    border-radius:16px;
    background:rgba(255,255,255,.10);
    color:#fff;
}
.eh-contactWrapJ__callout strong{
    display:block;
    margin-bottom:6px;
    font-size:16px; color: #fed000;
}
.eh-contactWrapJ__callout span{
    display:block;
    color:rgba(255,255,255,.86);
    font-size:15px;
    line-height:1.6;
}

.eh-contactWrapJ__formCard{
      background: linear-gradient(rgb(0 0 0 / 82%), rgb(0 0 0 / 82%)), url(/img/homepage/nwqrd-truck.jpg) center / cover no-repeat;
    border-radius: 24px;
    border-right: 15px solid #fed000;
    border-left: 15px solid #fed000;
    border-bottom: 15px solid #fed000;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
    overflow: hidden;
}
.eh-contactWrapJ__formHead{
    padding:26px 28px 18px;
    border-bottom:1px solid #efefef;
    background:#fed000;
}
.eh-contactWrapJ__formEyebrow{
    margin:0 0 8px;
    color:#fff; text-align: center; text-shadow: 1px 1px 1px #000;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.eh-contactWrapJ__formTitle{
    margin:0; text-align: center;
    color:#000;
    font-size:30px;
    line-height:1.15;
    font-weight:800;
}
.eh-contactWrapJ__formViewport{
    min-height:520px;
    transition:min-height .3s ease;
}
.eh-contactWrapJ__formInner{
   /* padding:24px 28px 28px;*/ margin: 0px -13px;
}

/* tame the included form */


@media (max-width: 991px){
    .eh-contactWrapJ{
        padding:70px 0;
    }
    .eh-contactWrapJ__shell{
        grid-template-columns:1fr;
    }
    .eh-contactWrapJ__intro{
        position:static;
    }
    .eh-contactWrapJ__title{
        font-size:34px;
    }
    .eh-contactWrapJ__formTitle{
        font-size:26px;
    }
    .eh-contactWrapJ__formViewport{
        min-height:420px;
    }
}
@media (max-width: 640px){
    .eh-contactWrapJ__shell{
        width:min(100% - 24px, 1280px);
    }
    .eh-contactWrapJ__intro,
    .eh-contactWrapJ__formInner,
    .eh-contactWrapJ__formHead{
        padding-left:22px;
        padding-right:22px;
    }
    .eh-contactWrapJ__title{
        font-size:30px;
    }
    .eh-contactWrapJ__formTitle{
        font-size:22px;
    }
    .eh-contactWrapJ__formViewport{
        min-height:360px;
    }
}
}

/* ========================================== */
/* === Misc. Section ======================== */
/* ========================================== */

/****  Referrals Owl Carousel ****/
.owl-carousel .owl-stage-outer {
	padding: 40px 0;
}
.owl-nav {
	position: absolute; width: 100%; top: 10%; display: none;
}
.owl-carousel .item {
	display: block; height: 100%;
}
.owl-carousel .owl-item span {
	font-size: 20px; font-weight: 500;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
	position: absolute;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
	background: transparent !important; color: #212121 !important; opacity: .5 !important;
}
.owl-nav .owl-next {
	left: 100%;
}
.owl-nav .owl-prev {
	right: 100%;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
	font-size: 3em; display: block;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
	outline: none;
}

/**** Default Classes ****/
body {
	font-family: 'Montserrat', sans-serif;
}
body#barbajs {
	visibility: visible;
}
a, button, .btn {
	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
a {
	cursor:pointer;	text-decoration: none !important;
}
a:hover {
	color: #252525; text-decoration: underline;
}
.btn {
	cursor: pointer; border-radius: 0;
}
.btn.alert-trigger {
	color: #fdfdfd; background-color:#333;
}
.btn:hover {
	opacity: 0.9;
}
.inner-content-section .btn {
	background:rgba(135,170,188);	border-color: #949494; color: rgba(255,255,255,1);
}
.inner-content-section .btn:hover {
	background-color: rgba(135,170,188,0.4); color: #fff;
}
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {outline: none;box-shadow: none;background-color: #444;border-color: #949494;color: #fff;}
.btn-primary:hover {
	border-color: #949494;
}
.btn.focus, .btn:focus {
	outline:none; box-shadow: none;
}
.section-divider {
	position: relative; padding: 50px 0;
}
.estimate-section-divider .alert, .estimate-section-divider .alert p {
    text-align: left; font-size: inherit;
}
.block-overlay {
	position: absolute; display: inline-block; background:rgba(0, 0, 0, 0.6); width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; z-index: 0;
}
.fadeDiv {
	position: fixed; display: inline-block; z-index: 1050; color: #fff; background: #300e87; padding: 50px; top: 150px; bottom: 150px; left: 300px; right: 300px; transform:scale(0,0); box-shadow: 0px 0px 20px -1px #000; transition: all .20s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.menu-scaler {
	position: fixed; display: inline-block; padding: 50px; z-index: 1050; top: 150px; bottom: 150px; left: 300px; right: 300px; transform: scale(1,1);
}
.fadeDiv .fadeDiv-close {
	position: absolute; right: 20px; top: 10px; font-weight: 900; font-size: 2em; font-family: 'Lato'; cursor: pointer;
}
.navbar-collapse ul {
	width: 100%; justify-content: center; align-items: center;
}
.overlay {
	height: 100%; width: 100%; background: #ffffffbf;
}
#myBtn {
	display: block; width: 50px; height: 50px; position: fixed; top: 100%; right: 30px; z-index: 99; border: none; outline: none; background-color: #000000; color: #ffffff; cursor: pointer; font-size: 14px; padding-top: 0; border-radius: 0px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease;
}
#myBtn i {
	color: white;
}
#myBtn:hover {
	background-color: #424242; color: #fff;
}

/**** Gallery Function Section ****/
#portfolio input {
	display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; margin: 0; top: 0; left: -60px; z-index: 2; width: 60px; height: 60px; -webkit-appearance: none; background-image: url(/img/icons/close-btn-icon-red.png); background-repeat: no-repeat; background-color: transparent; background-size: contain; color: #ffffff; border: none; cursor: pointer; outline: none !important; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
#portfolio input:hover {
	background-color: #fff;	opacity: .;
}
button.mfp-close, button.mfp-arrow {
	outline :none !important;
}
#portfolio {
	display: flex; padding: 0; overflow: hidden; flex-wrap: wrap; justify-content: center;
}
#portfolio li {
	display: flex; justify-content: center; align-items: center; float: left; position: relative; overflow: hidden; margin: 0 10px 20px;
}
#portfolio li a {
	transform: scale(1,1); display: block; width: 100%; height: 295px; width: 490px; overflow: hidden; -o-transition:all .30s ease; -moz-transition:all .30s ease; -webkit-transition:all .30s ease; transition:all .30s ease;
}
#portfolio li a:hover {
	transform: scale(1.1,1.1) !important;
}
#portfolio li a img {
	display: block; position: absolute; top: 0%; bottom: 0%; left: 0%; right: 0%; margin: auto; width: 100%; height: auto; transform: scale(1,1);
}
#portfolio li:hover .block-overlay {
	background-color: #000000cc;
}
#portfolio li:hover input {
	left: 0;
}
#portfolio .block-overlay {
	background: rgb(0,0,0,0.1); z-index: 1; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}

.mfp-ready .mfp-figure {
	opacity: 0; margin-left: -100px;
}
.mfp-zoom-in .mfp-figure, .mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
	opacity: 0; margin-left: -100px; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; -webkit-transform: scale(0.95); -ms-transform: scale(0.95); transform: scale(0.95);
}
.mfp-zoom-in.mfp-bg,
.mfp-zoom-in .mfp-preloader {
	opacity: 0; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-image-loaded .mfp-figure, .mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler {
	opacity: 1; margin-left: 0; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg,
.mfp-zoom-in.mfp-ready .mfp-preloader {
	opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-figure, .mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler {
	-webkit-transform: scale(0.95);	-ms-transform: scale(0.95); transform: scale(0.95); opacity: 0; margin-left: -100px;
}
.mfp-zoom-in.mfp-removing.mfp-bg,
.mfp-zoom-in.mfp-removing .mfp-preloader {
	opacity: 0; margin-left: -20px;
}
.mfp-iframe-scaler {
	overflow: visible; /*so the close button is shown*/
}
.mfp-zoom-out-cur {
	cursor: auto;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: pointer;
}

/**** Reviews Function ****/
.carousel-indicators li {
	position: relative; top: 51px; -ms-flex: 0 1 auto; flex: 0 1 auto; width: 30px;	height: 3px; margin-right: 3px;	margin-left: 3px; text-indent: -999px; background-color: rgb(191, 190, 190);
}
.carousel-indicators .active {
	background-color: #0f8029;
}

/* ========================================== */
/* === Footer Section ======================= */
/* ========================================== */
.nw-footer {
  --nw-footer-bg: #111111;
  --nw-footer-bg-alt: #0b0b0b;
  --nw-footer-bg-soft: #171717;
  --nw-footer-text: #ffffff;
  --nw-footer-muted: rgba(255, 255, 255, 0.72);
  --nw-footer-line: rgba(255, 255, 255, 0.10);
  --nw-footer-accent: #fed000;
  --nw-footer-accent-dark: #d8b100;
  --nw-footer-wrap: 1280px;
  --nw-footer-transition: all 0.3s ease;

  background: var(--nw-footer-bg);
  color: var(--nw-footer-text);
  position: relative;
  overflow: hidden;
}

.nw-footer-wrap {
  width: min(100% - 40px, var(--nw-footer-wrap));
  margin: 0 auto;
}

/* Top CTA band */
.nw-footer-cta {
  background:
    linear-gradient(120deg, var(--nw-footer-accent) 0%, var(--nw-footer-accent) 64%, #151515 64%, #0f0f0f 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.nw-footer-cta-wrap {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
}

.nw-footer-cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nw-footer-cta-icon {
  width: 62px;
  height: 62px;
  border: 3px solid #fff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex: 0 0 auto;
}

.nw-footer-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nw-footer-cta-eyebrow {
  color: #111;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.nw-footer-cta-title,
.nw-footer-cta-title a {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1;    text-shadow: 1px 1px 1px #000;
  text-decoration: none;
}

.nw-footer-cta-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nw-footer-cta-btn {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: var(--nw-footer-transition);
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 8% 50%);
}

.nw-footer-cta-btn span {
  font-size: 20px;
  line-height: 1;
}

.nw-footer-cta-btn-primary {
  background: #111;
  color: #fff;
}

.nw-footer-cta-btn-primary:hover {
  background: #000;
  color: var(--nw-footer-accent);
}

.nw-footer-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.nw-footer-cta-btn-secondary:hover {
  background: #fff;
  color: #111;
}

/* Main footer */
.nw-footer-main {
  background: linear-gradient(90deg, #141414 0%, #1a1a1a 100%);
  padding: 70px 0 48px;
}

.nw-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 44px;
}

.nw-footer-col {
  min-width: 0;
}

.nw-footer-logo-link {
  display: inline-block;
  margin-bottom: 24px;
}

.nw-footer-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
	    filter: brightness(0) saturate(100%) invert(72%) sepia(77%) saturate(747%) hue-rotate(2deg) brightness(102%) contrast(101%);
}

.nw-footer-text {
  margin: 0 0 26px;
  color: var(--nw-footer-muted);
  font-size: 17px;
  line-height: 1.8;
}

.nw-footer-heading {
  position: relative;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 16px;
}

.nw-footer-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 102px;
  height: 3px;
  background: linear-gradient(to right, #fff 0 18px, rgba(254, 208, 0, 0.35) 18px 100%);
}

.nw-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 14px;
  height: 10px;
  background: #fff;
  transform: skew(-18deg);
}

/* Socials */
.nw-footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nw-footer-social {
  width: 38px;
  height: 38px;
  border: 1px solid var(--nw-footer-line);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--nw-footer-transition);
}

.nw-footer-social:hover {
  background: var(--nw-footer-accent);
  border-color: var(--nw-footer-accent);
  color: #111;
}

/* Affiliates */
.nw-footer-affiliates {
  display: grid;
  gap: 16px; margin-top: 50px;
}

.nw-footer-affiliate {
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid var(--nw-footer-line);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--nw-footer-transition);
}

.nw-footer-affiliate:hover {
  border-color: rgba(254, 208, 0, 0.45);
  background: rgba(254, 208, 0, 0.06);
}

.nw-footer-affiliate-logo {
  max-width: 170px;
  max-height: 42px;
  width: auto;
  height: auto;
  display: block;
/*  filter: brightness(0) invert(1);
  opacity: 0.95;*/
}

/* Links */
.nw-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nw-footer-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nw-footer-links a {
  display: block;
  position: relative;
  padding: 13px 0 13px 18px;
  color: var(--nw-footer-muted);
  text-decoration: none;
  font-size: 17px;
  transition: var(--nw-footer-transition);
}

.nw-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--nw-footer-accent);
  font-size: 20px;
  line-height: 1;
}

.nw-footer-links a:hover {
  color: #fff;
  padding-left: 22px;
}

/* Contact */
.nw-footer-contact-list {
  display: grid;
  gap: 18px;
}

.nw-footer-contact-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.nw-footer-contact-icon {
  width: 38px;
  height: 38px;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--nw-footer-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.nw-footer-contact-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  color: #fff;
}

.nw-footer-contact-content p,
.nw-footer-contact-content a {
  margin: 0;
  color: var(--nw-footer-muted);
  text-decoration: none;
  line-height: 1.6;
  font-size: 16px;
}

.nw-footer-contact-content a:hover {
  color: var(--nw-footer-accent);
}

/* Bottom bar */
.nw-footer-bottom {
  position: relative;
  background: var(--nw-footer-bg-alt);
  border-top: 4px solid transparent;
  border-image: repeating-linear-gradient(
    90deg,
    var(--nw-footer-accent) 0 12px,
    transparent 12px 24px
  ) 1;
}

.nw-footer-bottom-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.nw-footer-bottom-left p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
}

.nw-footer-bottom-center {
  display: flex;
  justify-content: center;
}

.nw-footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: var(--nw-footer-transition);
}

.nw-footer-powered img {
  height: 28px;
  width: auto;
  display: block;
}

.nw-footer-powered:hover {
  color: #fff;
}

.nw-footer-bottom-right {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.nw-footer-bottom-right a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 15px;
  transition: var(--nw-footer-transition);
}

.nw-footer-bottom-right a:hover {
  color: var(--nw-footer-accent);
}

/* Disclaimer */
.nw-footer-disclaimer {
  padding: 14px 0 18px;
  background: #0a0a0a;
}

.nw-footer-disclaimer p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1199px) {
  .nw-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .nw-footer-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nw-footer-cta-right {
    width: 100%;
  }

  .nw-footer-bottom-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px 0;
  }

  .nw-footer-bottom-left,
  .nw-footer-bottom-center,
  .nw-footer-bottom-right {
    justify-content: center;
  }

  .nw-footer-bottom-right {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .nw-footer-wrap {
    width: min(100% - 24px, var(--nw-footer-wrap));
  }

  .nw-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .nw-footer-main {
    padding: 52px 0 38px;
    text-align: center;
		
  }
.nw-footer-socials {
    justify-content: center;
}
  .nw-footer-cta {
    background: linear-gradient(180deg, var(--nw-footer-accent) 0%, var(--nw-footer-accent) 58%, #111 58%, #111 100%);
  }

  .nw-footer-cta-wrap {
    min-height: auto;
    padding: 26px 0;
  }

  .nw-footer-cta-left {
    align-items: flex-start;
  }

  .nw-footer-cta-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .nw-footer-cta-title,
  .nw-footer-cta-title a {
    font-size: 30px;
  }

  .nw-footer-cta-right {
    flex-direction: column;
    align-items: stretch;
  }

  .nw-footer-cta-btn {
    justify-content: center;
    clip-path: none;
    min-height: 50px;
  }

  .nw-footer-logo {
    max-width: 220px;
  }

  .nw-footer-text,
  .nw-footer-links a,
  .nw-footer-contact-content p,
  .nw-footer-contact-content a {
    font-size: 15px;
  }
}

/* Container */
.nw-service-popover {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nw-service-popover.nw-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Toggle Button */
.nw-service-toggle {
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* Panel */
/* Container */
.nw-service-popover {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.nw-service-popover.nw-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Toggle */
.nw-service-toggle {
  background: #fed000;
  color: #000;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/* PANEL (big change here) */
.nw-service-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 700px;              /* wider = no scroll */
  background: #000;
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.nw-service-panel.nw-open {
  display: block;
}

/* Close */
.nw-service-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* HEADER */
.nw-service-header {
  text-align: center;
  margin-bottom: 20px;
}

.nw-service-logo {
  width: 120px;
  margin-bottom: 10px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(77%) saturate(747%) hue-rotate(2deg) brightness(102%) contrast(101%);
}

.nw-service-title {
  font-size: 22px; font-weight: 800;
  margin-bottom: 6px;
}

.nw-footer-service-overview {
  font-size: 14px;
  color: #ccc;
  max-width: 520px;
  margin: 0 auto;
}

/* GRID */
.nw-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

/* SERVICES */

.nw-footer-service-card {
  display: block;
  text-decoration: none;
  color: #fff;
	font-weight: 600;
  background: #111;
  border: 1px solid #fed000;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 8px;
  text-align: center;

  transition: all 0.2s ease;
}

/* Hover state = feels clickable */
.nw-footer-service-card:hover {
  background: #fed000;
  color: #000;
  transform: translateY(-2px);
}

/* AREAS */
.nw-service-area-list {
  columns: 2; /* split into 2 columns */
  font-size: 13px;
  list-style: none;
  padding: 0;
}

.nw-service-area-list li {
  margin-bottom: 6px;
  color: #ddd;
}

@media(max-width:768px){
	
.nw-service-panel.nw-open {
    width: auto;
    display: block;
}
}

/* === Lg. Laptop CSS Section ================= */
@media screen and (max-width : 1440px) {
	/*** Don't place anything here, unless absolutely necessary ***/
}
/* === Sm. Laptop CSS Section ================= */
@media screen and (max-width: 1024px) {
	
}
/* === Tablet CSS Section ===================== */
@media screen and (max-width: 768px) {

}
/* === Mobile CSS Section ===================== */
@media screen and (max-width: 425px) {

/**** Top Header Section ****/
.mobile-top-header {
	display:block !important; padding: 0 30px 0; background: rgb(135,170,188); z-index: 4; overflow: visible;
}
.mobile-menu {
	text-align: center; position: fixed; height: 100%; width: 100%;	display: block;	padding-top: 6em; top: 100%; border: 0;	background: #232323; border-radius: 0; z-index: 1100; overflow: auto; -webkit-transition-property: all;	-webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.mobile-menu .nav-link {
	font-size: 2em;	color: #c5c5c5 !important;
}
.mobile-menu-custom-show {
	top: 0%;
}
.mobile-menu-top-hero {
	background-size: cover;	padding: 40px 0 0; top:0; left:0; width: 100%; text-align: center;
}
.mobile-menu-top-hero h2 {
	padding: 0 25px;
}
#mobile-menu-header {
	margin-top: 0; background: #ffffff00; box-shadow: none;
}
#mobile-menu-header ul {
	list-style: none; padding: 0 20px; margin-top: 8em; position: relative; width: inherit;
}
#mobile-menu-header ul li a {
	color:#ffffff; padding: 20px 20px;
}
.header-contact_info a {
	color: rgb(255,255,255); margin: 0;
}
.top-header a, .top-header i, .top-header p {
	color: rgb(0,0,0);
}
.top-header-animate a, .top-header-animate i, .top-header-animate p {
	color: rgb(0,0,0);
}
.top-header {
	background: white; display: none;
}
.header-contact_info {
	font-size: 1.5em;
}
.navbar-scroll {
	display: none;
}
.header-contact_info .navbar-brand {
	font-size: 1.3em;
}
.top-header div[class*='col-']:first-child {
	justify-content: flex-start;
}
.top-header div[class*='col-'] {
	display: flex; justify-content: left; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(3) {
	display: flex; justify-content: flex-end; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(2) {
	background: none; margin: 0; display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(1) a {
	font-size: 1.5em;
}
.top-header div[class*='col-']:nth-child(2) p {
	font-size: inherit; line-height: inherit;
}

/**** Navigation Section ****/
.dropdown-wrapper {
	margin: 0; padding: 0;
}
.navbar-sidebar .dropdown-menu-mobile {
	position: relative; display: none; top: 0; left: 0; z-index: 1000; float: left; height: 0px; margin: 0; width: 100%; padding: 0; font-size: 18px; color: #e6e6e6 !important; text-align: left; list-style: none; background-color: rgb(200,200,200); border: 0; visibility: hidden; border-radius: 0; transform: scale(1,0); -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.dropdown-menu-animate {
	display: inline-block !important; transform: scale(1,1) !important; padding: 25px 0 !important; height: auto !important; visibility: visible !important;
}
.navbar-sidebar .dropdown-menu-mobile a {
	color: rgb(75,75,75); font-weight:600 !important; font-size: 1.3em; font-family: 'Raleway'; text-align: center;
}
.navbar-sidebar {
	padding-top: 84px; height: 100%; width: 200px; background-color: rgb(250,250,250); position: fixed !important; z-index: 1; overflow: auto;
}
.bar-block .dropdown-hover, .bar-block .dropdown-click {
	width: 100%;
}
.bar-block .dropdown-hover .dropdown-content, .bar-block .dropdown-click .dropdown-content {
	min-width: 100%;
}
.bar-block .dropdown-hover .button, .bar-block .dropdown-click .button {
	width: 100%; text-align: left; padding: 8px 16px;
}
.main, #main {
	transition: margin-left .4s;
}
.modal {
	display: none; padding-top: 100px; position: fixed; left: 0; top: 0; width: 100%; height: 100%;	overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4);
}
.modal-content {
	margin: auto; background-color: #fff; position: relative; padding: 0; outline: 0; width: 1200px;
}
.bar {
	width: 100%; overflow: hidden;
}
.center .bar {
	display: inline-block; width: auto;
}
.bar .bar-item {
	padding: 8px 16px; float: left; width: auto; border: none; display: block; outline: 0;
}
.bar .dropdown-hover, .bar .dropdown-click {
	position: static; float: left;
}
.bar .button {
	white-space: normal;
}
.bar-block .bar-item {
	width: 100%; display: block; padding: 8px 16px; text-align: left; border: none; white-space: normal; float: none; outline: 0;
}
.bar-block.center .bar-item {
	text-align: center;
}
.block {
	display: block; width: 100%;
}

/**** Home Section ****/
.home-header-section {
	padding-top: 125px;
}
.dropdown-menu {
	position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 10rem; padding: .5rem 0; margin: .125rem 0 0; font-size: 1rem; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(87, 86, 87); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-item {
	display: block;	width: 100%; padding: .25rem 1.5rem; clear: both; color: rgb(255,255,255); text-align: inherit;	white-space: nowrap; background: 0 0; border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255, 255, 255); text-decoration: none; background-color: rgb(22,22,22) !important;
}
.video {
	overflow: hidden; position: relative; z-index: 2; display: block;
}
.video .pad {
	padding: 350px 0px 0px 300px; position: absolute;
}
.video .pad h5 {
	font-weight: 500; color: rgb(255,255,255); font-size: 50px; text-shadow: 0px 0px 5px #000; font-family: 'Arial'; text-align: left;
}
.video .pad p {
	margin-top: 0% !important; color: rgb(255,255,255); text-shadow: 0px 0px 5px #000; font-size: 25px; font-family: 'Arial'; text-align: left;
}
.video .pad a {
	font-size: 16px; color: rgb(255,255,255); font-family: 'Arial'; font-weight: 600; border: 1px solid rgb(12,32,63); padding: 15px 30px; border-radius: 1.6rem; background: rgb(12,32,63);
}
.video .pad a:hover {
	color: rgb(255,255,255); border: 1px solid rgb(255,255,255); background: transparent;
}
.home1 {
	padding: 75px 0 75px 0; background: rgb(245,245,245);
}
.home1 .pad {
	padding-top: 85px;
}
.home1 h1 {
	font-family: 'font2'; font-size: 35px; text-align: left; font-weight: 800; color: rgb(196,41,56);
}
.home1 p {
	font-size: 17px; font-family: 'font2'; font-weight: 600; text-align: justify; color: rgb(150,150,150);
}
.home1 span {
	color: rgb(83,82,82);
}

/**** About Section ****/


/**** Services Section ****/


/**** Gallery Section ****/
.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}

/**** Areas We Service Section ****/
.area:nth-child(odd) {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}
.area:nth-child(even) {
	padding: 75px 0 75px 0; background: rgb(245,245,245);
}
.area h2 {
	font-size: 2.5rem; font-family: font2; font-weight: 800; color: rgb(196,41,56);
}
.area h4 {
	font-size: 1.5rem; font-family: font2; color: rgb(75,75,75);
}
.area p {
	font-size: 17px; text-align: justify; color: rgb(12,12,12);
}
.area iframe {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px rgb(0,0,0);
}

/**** Testimonials Section ****/
.testimonials {
	padding: 30px 0 30px 0; background: rgb(255,255,255);
}

/**** Contact Section ****/


/**** Sections On Every Page ****/
.contact-section {
	padding: 50px 0 50px 0;
}
.contact-section h3 {
	font-size: 2rem; font-family: font2; font-weight: 800; text-align: center; color: rgb(12,12,12);
}

/**** Footer Section ****/
.footer-section {
	padding-top: 30px; text-align: center;
}
.footer-section img {
	max-width: 210px; padding-bottom: 25px;
}
.service-cities h4 {
	font-size: 24px; font-weight: 600; color: rgb(255,255,255);
}
.service-cities a {
	font-size: 18px; line-height: 10px; color: rgb(255,255,255);
}

/**** Misc. Section ****/
.btn {
	background: rgb(249,78,1); width: 50%; padding: 10px 0px; color: #ffffff; cursor: pointer; outline: none; border: none;
}
.alert h1,
.alert p {
	top: 2em; opacity: 0; position:relative;
}
.alert h1 {
	margin-top: 0; color: #2b1663;
}
.custom-show {
	position: fixed; transform: scale(1,1); border: 0; background: white; border-radius: 0; z-index: 1100; overflow: inherit; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.alert-dismissible .close {
	position: absolute; top: 0; right: 0; background: transparent; border: none; padding: 0.75rem 1.25rem; color: rgb(80,80,80); font-family: 'font2'; outline: none; z-index: 3;
}
.alert-dismissible .close span {
	font-size: 35px;
}
.lnr {
	display: inline-block; fill: currentColor; width: 1em; height: 1em; vertical-align: -0.2em; cursor: pointer;
}

}
/* === Sm. Mobile CSS Section ================= */
@media screen and (max-width: 375px) {

}