@charset "UTF-8";
/*
Theme Name: Treeline
Author: Studio Ancla
Author URI: https://studioancla.com
Description: This custom WordPress theme, begun in May/June 2025 for Blue Spruce Construction Group, was completed October 2025. The result is a lean, rock-solid website that’s easy to maintain and ready to grow alongside the business.
Version: 1.05
*/
/* Typography ------------------------- */
/* Add a monospace font */
/* Colors ----------------------------- */
/* Textures --------------------------- */
/* Animations ------------------------- */
/* ======================================================================== */
/* =                   _animista-custom.scss – v2                        = */
/* = All animations only run when .anim--run is present                  = */
/* ======================================================================== */
/* =Variables & CSS Variables for Duration/Ease =========================== */
:root {
  --anim-duration: 0.15s;
  --anim-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =Helper – initial state + runtime flag ================================= */
[data-anim] {
  opacity: 0;
}

.anim--run {
  opacity: 1;
}

/* ======================================================================== */
/* =                             Keyframes                                = */
/* ======================================================================== */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-in-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes rotate-in-center {
  0% {
    transform: rotate(-360deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes swirl-in-fwd {
  0% {
    transform: rotate(-540deg) translateY(-100%) scale(0);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: rotate(0) translateY(0) scale(1);
    transform-origin: 50% 50%;
    opacity: 1;
  }
}
@keyframes flip-in-diag-2-br {
  0% {
    transform: rotate3d(1, 1, 0, 90deg);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: rotate3d(0, 0, 0, 0);
    transform-origin: 50% 50%;
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
/* ======================================================================== */
/* =                           Animation Rules                            = */
/* ======================================================================== */
.anim--run.anim-fade-in {
  animation: fade-in var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-up {
  animation: fade-in-up var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-down {
  animation: fade-in-down var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-left {
  animation: fade-in-left var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-right {
  animation: fade-in-right var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-slide-in-up, .anim--run.slide-in-up {
  animation: slide-in-up var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-slide-in-left, .anim--run.slide-in-left {
  animation: slide-in-left var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-slide-in-right, .anim--run.slide-in-right {
  animation: slide-in-right var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-zoom-in {
  animation: zoom-in var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-scale-up-center {
  animation: scale-up-center var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-tracking-in-expand {
  animation: tracking-in-expand var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-text-focus-in {
  animation: text-focus-in var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-rotate-in-center {
  animation: rotate-in-center var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-swirl-in-fwd {
  animation: swirl-in-fwd var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-flip-in-diag-2-br {
  animation: flip-in-diag-2-br var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-fwd {
  animation: fade-in-fwd var(--anim-duration) var(--anim-ease) both;
}

/* =Aliases for slide-in (optional)======================================= */
/* =Duration Helper Classes================================================
   Use in admin CSS Class(es):
     anim-dur-05 → 0.5s
     anim-dur-10 → 1.0s
     anim-dur-15 → 1.5s
     anim-dur-20 → 2.0s
=========================================================================== */
.anim-dur-05 {
  --anim-duration: 0.5s !important;
}

.anim-dur-10 {
  --anim-duration: 1.0s !important;
}

.anim-dur-15 {
  --anim-duration: 1.5s !important;
}

.anim-dur-20 {
  --anim-duration: 2.0s !important;
}

/* =Accessibility – reduced motion========================================= */
@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    animation: none !important;
    transform: none !important;
  }
}
/* Comments --------------------------- */
.comments-wrapper {
  margin-top: 3rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 6px;
}
.comments-wrapper .comments-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}
.comments-wrapper .comment-list,
.comments-wrapper .ping-list {
  list-style: none;
  padding-left: 0;
}
.comments-wrapper .comment-item,
.comments-wrapper .ping-item {
  margin-bottom: 2rem;
}
.comments-wrapper .comment-wrapper {
  display: flex;
  align-items: flex-start;
}
.comments-wrapper .comment-wrapper .comment-avatar {
  margin-right: 1rem;
}
.comments-wrapper .comment-wrapper .comment-details {
  font-size: 0.9rem;
  color: #555;
}
.comments-wrapper .comment-wrapper .comment-details .comment-author {
  font-weight: bold;
}
.comments-wrapper .comment-wrapper .comment-details .comment-time {
  display: block;
  font-size: 0.8rem;
  color: #999;
}
.comments-wrapper .comment-wrapper .comment-content {
  margin: 0.5rem 0 1rem;
}
.comments-wrapper .comment-wrapper .comment-reply .comment-reply-link {
  font-size: 0.9rem;
  color: #0073aa;
}
.comments-wrapper .comment-wrapper .comment-reply .comment-reply-link:hover {
  color: #005177;
}
.comments-wrapper .comments-nav {
  margin: 1rem 0;
  text-align: center;
}
.comments-wrapper .comments-nav--above {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}
.comments-wrapper .comments-nav--below {
  border-top: 1px solid #ddd;
  padding-top: 0.5rem;
}
.comments-wrapper .comment-form-author,
.comments-wrapper .comment-form-email,
.comments-wrapper .comment-form-url,
.comments-wrapper .comment-form-comment {
  margin-bottom: 1rem;
}
.comments-wrapper .comment-form-author input,
.comments-wrapper .comment-form-author textarea,
.comments-wrapper .comment-form-email input,
.comments-wrapper .comment-form-email textarea,
.comments-wrapper .comment-form-url input,
.comments-wrapper .comment-form-url textarea,
.comments-wrapper .comment-form-comment input,
.comments-wrapper .comment-form-comment textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.comments-wrapper .button--primary {
  background: #0073aa;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.comments-wrapper .button--primary:hover {
  background: #005177;
}

/* Resets ----------------------------- */
.set-width {
  max-width: 90vw;
  margin: 0 auto;
}

.kill-width { /* For use from WP admin */
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}
.kill-width > div:nth-of-type(2), .kill-width .kt-row-column-wrap:first-of-type { /* makes sure the overlay is full-width */
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
}

.hug-top {
  margin-top: -5rem;
}

.hug-bottom {
  margin-bottom: -5rem;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto; /* Keeps clickable behavior if needed */
}

html {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  padding: 0;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjZMACGKks6OfnJwUABHwBCkhjq1oAAAAASUVORK5CYII=") repeat #FAFBFB;
}
body.search-lock {
  overflow: hidden;
  height: 100vh;
}
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: "dejanire-headline", serif;
  color: #3F547B;
  margin: 20px 0;
  line-height: 1.1em;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.3em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.8em;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

.clear {
  clear: both;
}

p {
  margin: 20px 0;
}

/* Main Settings ---------------------- */
#alerts {
  padding: 7px;
  background: #252525;
  font-family: "menca", sans-serif;
  font-size: 15px;
  color: #FAFBFB;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
#alerts > * {
  flex-basis: auto;
}
#alerts p {
  margin: 0;
  width: fit-content;
  line-height: 1.8em;
}
#alerts p a {
  background: #3F547B;
  color: #FAFBFB;
  font-size: 13px;
  font-weight: 900;
  line-height: 1em;
  text-transform: uppercase;
  padding: 4px 8px;
  margin: 0 5px;
  border-radius: 6px;
  text-decoration: none;
}

#topBar {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjZMACGKks6OfnJwUABHwBCkhjq1oAAAAASUVORK5CYII=") repeat rgba(37, 37, 37, 0.2);
  transition: height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
#topBar div > div {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  padding: 8px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: flex-end;
  gap: 1.5em;
}
#topBar div > div p {
  margin: 0;
  font-family: "menca", sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  color: #252525;
  font-weight: 900;
  line-height: 1em;
}
#topBar div > div p a {
  text-decoration: none;
  color: #252525;
}

#header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjZMACGKks6OfnJwUABHwBCkhjq1oAAAAASUVORK5CYII=");
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjZMACGKks6OfnJwUABHwBCkhjq1oAAAAASUVORK5CYII=") repeat #FAFBFB;
  transition: transform 0.6s ease;
  z-index: 1000;
}
#header.scroll-down {
  transform: translateY(-100%);
}
#header.scroll-up {
  transform: translateY(0);
}
#header.stick {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjZMACGKks6OfnJwUABHwBCkhjq1oAAAAASUVORK5CYII=") repeat rgba(250, 251, 251, 0.6) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(37, 37, 37, 0.3);
}
#header .headerInner {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  padding: 15px 0;
  gap: 0.4em;
  margin: 0 auto;
}

#branding {
  flex-basis: 25%;
}
#branding #logo {
  width: 100%;
  height: auto;
}
#branding #logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
}

#container {
  padding: 2rem 0 5rem 0;
}

#content {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  font-family: "menca", sans-serif;
  color: #252525;
  font-size: 1.2em;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.6em;
}
#content ul {
  list-style: square;
  margin: 20px 0;
  padding: 0 0 0 20px;
}
#content a:not(.genBtn):not(.genBtnParent a):not(.nav-links div a):not(.local-services .serviceBlock a):not(.post-edit-link):not(.adminBtn):not(.cpt-title-list a) {
  color: #3F547B;
}
#content .header {
  /* used inside a contained element to use full width */
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
  padding: 20px 5px 20px 5px;
  border-bottom: 1px dashed url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjZMACGKks6OfnJwUABHwBCkhjq1oAAAAASUVORK5CYII=");
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
  box-shadow: 0 10px 5px -7px rgba(37, 37, 37, 0.1);
}
#content .header .entry-title {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  font-style: oblique;
  line-height: 1.1em;
}
#content .wp-block-list {
  margin: 20px 0;
  padding: 0 0 0 18px;
  list-style: square;
}

#footer {
  display: block;
  position: relative;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjZMACGKksGBYW1gAABSoBiKuck3sAAAAASUVORK5CYII=") repeat #252525;
  padding: 3.5rem 0 2.5rem 0;
  border-top: 5px solid #3F547B;
  box-shadow: 0 0 7px 7px rgba(37, 37, 37, 0.2);
  z-index: 1;
}
#footer figure {
  position: absolute;
  width: 100px;
  height: 100px;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: -7px;
  z-index: 2;
}
#footer figure img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover !important;
  object-position: center center !important;
  box-shadow: 0 0 7px 7px rgba(37, 37, 37, 0.2);
}
#footer > div {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  position: relative;
  font-family: "menca", sans-serif;
  font-size: 1.2em;
  color: #FAFBFB;
  z-index: 0;
}
#footer > div ul.footerServices {
  text-align: center;
}
#footer > div .copyright {
  text-align: center;
  font-family: "menca", sans-serif;
  color: #FAFBFB;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  word-spacing: 0.15em;
  opacity: 0.6;
  border-top: 1px solid #FAFBFB;
}
#footer > div .copyright a {
  color: #FAFBFB;
}

/* Nav Settings ----------------------- */
nav#main {
  display: block;
  flex-basis: 75%;
}
nav#main div > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
  align-content: stretch;
  gap: 0.33em;
}
nav#main div > ul li {
  position: relative;
}
nav#main div > ul li > a { /* top-level links */
  background: #3F547B;
  color: #FAFBFB;
  font-family: "menca", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1em;
  padding: 8px 10px;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.1s ease;
}
nav#main div > ul li > a:hover {
  background: #FAFBFB;
  border: 1px solid #3F547B;
  color: #3F547B;
}
nav#main div > ul li > ul { /* sub-menu */
  display: none;
  position: absolute;
  min-width: 14rem;
  top: 25px;
  left: 0;
  background: #3F547B;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 5px 10px rgba(37, 37, 37, 0.3);
  z-index: 10;
}
nav#main div > ul li > ul li {
  position: relative;
}
nav#main div > ul li > ul li:has(ul)::after {
  content: "›";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #FAFBFB;
  font-size: 16px;
  pointer-events: none;
}
nav#main div > ul li > ul li a {
  display: block;
  padding: 8px 12px;
  color: #FAFBFB;
  font-weight: normal;
  font-size: 16px;
  line-height: 1em;
  text-align: left;
  white-space: nowrap;
  text-decoration: none;
}
nav#main div > ul li > ul li a:hover {
  background: #FAFBFB;
  color: #3F547B;
}
nav#main div > ul li > ul li ul { /* sub-sub-menu */
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #3F547B;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}
nav#main div > ul li > ul li ul li {
  position: relative;
}
nav#main div > ul li > ul li ul li a {
  padding: 8px 12px;
  color: #FAFBFB;
}
nav#main div > ul li > ul li ul li a:hover {
  background: #FAFBFB;
  color: #3F547B;
}
nav#main div > ul li > ul li:hover > ul { /* show sub-sub-menu */
  display: block;
  opacity: 1;
  pointer-events: auto;
  animation: fade-in-right 0.2s ease both;
}
nav#main div > ul li:hover > ul { /* Show sub-menu on hover */
  display: block;
  opacity: 1;
  pointer-events: auto;
  animation: fade-in-down 0.2s ease both;
}

nav#mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: #FAFBFB;
  z-index: 110;
  overscroll-behavior: contain;
}
nav#mobile > .menu-main-menu-container {
  position: absolute;
  inset: env(safe-area-inset-top) 0 env(safe-area-inset-bottom) 0;
  margin-top: 80px;
  padding: 10px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
nav#mobile > .menu-main-menu-container > ul.menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  max-inline-size: 900px;
}
nav#mobile > .menu-main-menu-container > ul.menu > li {
  border: 1px solid rgba(63, 84, 123, 0.12);
  background: #f8fafc;
  /* header row: link + toggle */
  /* level-2: use grid but animate height/opacity (no display toggling) */
  /* open state */
  /* default icon pair visibility */
}
nav#mobile > .menu-main-menu-container > ul.menu > li > .mobile-item-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: #3F547B;
  position: relative; /* contain toggle */
  /* no border radius anywhere */
}
nav#mobile > .menu-main-menu-container > ul.menu > li > .mobile-item-head > a {
  display: block;
  padding: 10px 12px;
  font-family: "menca", sans-serif;
  color: #FAFBFB;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.1;
  text-align: left;
  border-right: 1px solid rgba(250, 251, 251, 0.12);
}
nav#mobile > .menu-main-menu-container > ul.menu > li > .mobile-item-head > .submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #FAFBFB;
  font-size: 20px;
  line-height: 1;
  position: relative;
  z-index: 0; /* stays inside header */
}
nav#mobile > .menu-main-menu-container > ul.menu > li > ul.sub-menu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 6px;
  padding: 0 8px; /* start collapsed padding */
  background: #f8fafc;
  border-top: 1px solid rgba(63, 84, 123, 0.12);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.22s ease, opacity 0.18s ease, padding 0.18s ease;
  position: relative;
  z-index: 1; /* above header content so toggle never overlays it */
  /* clamp to 2 levels max */
}
nav#mobile > .menu-main-menu-container > ul.menu > li > ul.sub-menu > li {
  display: flex;
}
nav#mobile > .menu-main-menu-container > ul.menu > li > ul.sub-menu > li > a {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 0; /* no radius */
  font-family: "menca", sans-serif;
  color: #3F547B;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  background: #FAFBFB;
  border: 1px solid rgba(63, 84, 123, 0.18);
  line-height: 1;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
  text-wrap: balance;
  transition: transform 0.06s ease, background-color 0.12s ease, border-color 0.12s ease;
}
nav#mobile > .menu-main-menu-container > ul.menu > li > ul.sub-menu > li > a:active {
  transform: scale(0.985);
}
nav#mobile > .menu-main-menu-container > ul.menu > li > ul.sub-menu > li > a:hover {
  background: #eef3ff;
  border-color: rgba(63, 84, 123, 0.28);
}
nav#mobile > .menu-main-menu-container > ul.menu > li > ul.sub-menu > li > a:focus-visible {
  outline: 2px solid rgba(63, 84, 123, 0.45);
  outline-offset: 2px;
}
nav#mobile > .menu-main-menu-container > ul.menu > li > ul.sub-menu ul.sub-menu {
  display: none !important;
}
nav#mobile > .menu-main-menu-container > ul.menu > li.is-open > ul.sub-menu {
  max-height: 1200px;
  opacity: 1;
  padding: 8px;
}
nav#mobile > .menu-main-menu-container > ul.menu > li.is-open > .mobile-item-head > .submenu-toggle .fa-plus {
  display: none;
}
nav#mobile > .menu-main-menu-container > ul.menu > li.is-open > .mobile-item-head > .submenu-toggle .fa-xmark {
  display: inline-block;
}
nav#mobile > .menu-main-menu-container > ul.menu > li > .mobile-item-head > .submenu-toggle .fa-xmark {
  display: none;
}

.body--lock {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

.menu-icon {
  display: none;
  position: absolute;
  z-index: 200;
  right: 1.5em;
  cursor: pointer;
  transition: transform 0.3s;
}
.menu-icon.rotate { /* transition between x and bars */
  transition: transform 0.3s;
  transform: rotate(90deg);
}
.menu-icon i {
  font-size: 30px;
  color: #3F547B;
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  font-size: 35px;
  background-color: #555;
  color: white;
  cursor: pointer;
  padding: 5px;
  line-height: 1em;
  border-radius: 100%;
}
#scrollToTopBtn i {
  position: relative;
  top: 1px;
}

#scrollToTopBtn:hover {
  background-color: #444;
}

.nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  margin-top: 2em;
}
.nav-links div {
  flex-basis: 45%;
}
.nav-links div:empty {
  display: none;
}
.nav-links div:only-of-type {
  flex-grow: 1 !important;
}
.nav-links div a {
  display: block;
  background: #252525;
  color: #FAFBFB;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  line-height: 1em;
}

.breadcrumbs {
  font-size: 0.8em;
  margin-bottom: 1em;
}

.breadcrumbs a {
  color: #3F547B;
  text-decoration: none;
}

.breadcrumbs .current {
  font-weight: bold;
}

@media (max-width: 600px) {
  .breadcrumbs {
    font-size: 0.8rem;
  }
}
/* Page Specific Settings ------------- */
.homeServices p {
  z-index: 1;
}

.intro-box img {
  clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
}

.middle-box {
  /* used inside a contained element to use full width */
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjZMACGKks6OfnJwUABHwBCkhjq1oAAAAASUVORK5CYII=");
}
.middle-box > div {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  margin: 4rem auto;
  padding: 2rem 0;
}
.middle-box > div img {
  clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

.image-left, .image-right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: space-around;
}
.image-left .area-image, .image-right .area-image {
  flex-basis: 40%;
}
.image-left .area-image img, .image-right .area-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
}
.image-left .area-content, .image-right .area-content {
  flex-basis: 60%;
}
.image-left.image-left .area-image, .image-right.image-left .area-image {
  padding-right: 2rem;
}
.image-left.image-right .area-image, .image-right.image-right .area-image {
  padding-left: 2rem;
}

.roof-options {
  margin: 4rem 0;
}
.roof-options > div {
  /* used inside a contained element to use full width */
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}
.roof-options > div > div:nth-of-type(2) {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
}

.local-services section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
}
.local-services .serviceBlock a {
  position: relative;
  text-decoration: none;
  color: #252525;
  flex: 1 1 auto;
}
.local-services .serviceBlock a p {
  position: relative;
  padding: 2rem;
  margin: 0 auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid #252525;
  border-radius: 4px;
  transition: all 0.2s ease;
  z-index: 1;
  overflow: hidden;
}
.local-services .serviceBlock a p:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(250, 251, 251, 0.85);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.2s ease;
  z-index: -1;
}
.local-services .serviceBlock a p:hover {
  color: #FAFBFB;
}
.local-services .serviceBlock a p:hover:before {
  background: rgba(63, 84, 123, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px); /* used for safari and older browsers */
}

#hero {
  display: block;
  position: relative;
  height: 80vh;
}
#hero > div > div > div {
  height: 80vh;
}
#hero > div > div > div > div:nth-child(2) {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
}
#hero i {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  color: #FAFBFB;
  transform: translate(-50%, -50%);
  font-size: 2.8em;
}
#hero h1 {
  font-family: "dejanire-headline", serif;
}
#hero p {
  font-family: "menca", sans-serif;
}
#hero .genBtnParent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 0.5rem;
}
#areaWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  gap: 0.8em;
}
#areaWrap article {
  flex-basis: 25%;
  padding: 18px;
  flex-grow: 1;
  flex-shrink: 0;
  overflow: hidden;
  background: #FAFBFB;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(37, 37, 37, 0.2);
  transition: all 0.2s ease;
}
#areaWrap article:hover {
  box-shadow: 0 0 18px rgba(37, 37, 37, 0.2);
}
#areaWrap article img {
  display: block;
  width: 100%;
  height: 25vh;
  border-radius: 4px;
  object-fit: cover !important;
  object-position: center center !important;
}
#areaWrap article h2 {
  display: block;
  padding: 5px 10px;
  margin: 10px 0;
  text-align: center;
  background: rgba(37, 37, 37, 0.1);
  border-radius: 4px;
}
#areaWrap article h2 a {
  display: block;
  text-decoration: none;
  color: #3F547B;
}

/* Blog Settings ---------------------- */
.categoryList {
  margin: 30px auto;
}
.categoryList a {
  text-decoration: none;
}

#blogWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 1.2em;
}
#blogWrap article {
  flex-basis: 30%;
  flex-grow: 1;
  background: #FAFBFB;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}
#blogWrap article:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
#blogWrap article img {
  display: block;
  width: 100%;
  height: 40vh;
  object-fit: cover !important;
  object-position: center center !important;
}
#blogWrap article .articleContent {
  padding: 15px;
}
#blogWrap article .articleContent h2 {
  margin-top: 0;
}
#blogWrap article .articleContent .postDate {
  display: block;
  padding: 0.5em 1em;
  background: rgba(37, 37, 37, 0.1);
  color: rgba(37, 37, 37, 0.7);
  font-size: 0.7em;
  text-transform: uppercase;
  line-height: 1.3;
  border-radius: 4px;
}

.articleImg {
  position: relative;
  margin-top: -50px;
  margin-bottom: 50px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  height: 50vh;
  z-index: -1;
}

.cpt-title-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.cpt-title-list li {
  margin: 0;
  align-content: center;
}
.cpt-title-list li a {
  display: table;
  position: relative;
  padding: 5px 12px;
  background: #EC6E32;
  color: #FAFBFB !important;
  text-decoration: none;
  font-weight: 900;
  line-height: 1em;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.cpt-title-list li a:hover {
  top: -2px;
  left: -2px;
  background: #252525;
  box-shadow: 2px 2px 0 rgba(37, 37, 37, 0.2);
}

/* Form settings ---------------------- */
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjZMACGKks6OfnJwUABHwBCkhjq1oAAAAASUVORK5CYII=") repeat rgba(250, 251, 251, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px); /* used for safari and older browsers */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-popup.active {
  opacity: 1;
  visibility: visible;
}
.search-popup .search-popup-inner {
  position: relative;
  text-align: center;
  max-width: 500px;
  width: 90%;
}
.search-popup .search-popup-inner .search-form {
  display: flex;
  border: 2px solid #3F547B;
  border-radius: 5px;
  overflow: hidden;
}
.search-popup .search-popup-inner .search-form input[type=search] {
  flex: 1;
  padding: 15px;
  border: none;
  font-family: "menca", sans-serif;
  font-size: 1.2em;
  background: #FAFBFB;
  color: #252525;
}
.search-popup .search-popup-inner .search-form input[type=search]::placeholder {
  color: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjZMACGKks6OfnJwUABHwBCkhjq1oAAAAASUVORK5CYII=");
}
.search-popup .search-popup-inner .search-form button {
  background: #3F547B;
  color: #FAFBFB;
  padding: 0 20px;
  border: none;
  cursor: pointer;
}
.search-popup .search-popup-inner .search-form button i {
  pointer-events: none;
}
.search-popup .search-popup-inner .close-popup {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2em;
  color: #252525;
  cursor: pointer;
}

input[type=text], input[type=email], input[type=password], input[type=tel], input[type=search], textarea {
  padding: 4px 8px;
  background-color: #FAFBFB;
  border: 1px solid #d0cecf;
  font-family: "menca", sans-serif;
  font-size: 17px;
  line-height: 1em;
  color: #252525;
  outline: none;
  border-radius: 4px;
  box-shadow: none;
  position: relative;
}

input[type=submit] {
  position: relative;
  top: 1px;
  padding: 4px 8px;
  background: #3F547B;
  font-family: "menca", sans-serif;
  color: #FAFBFB;
  font-size: 17px;
  line-height: 1em;
  outline: none;
  border-radius: 4px;
  box-shadow: none;
}

/* Image Settings --------------------- */
.insetPhoto img {
  position: relative;
  margin-bottom: -50px;
  border: 10px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

/* Miscellaneous Settings ------------- */
div[class*=has-overlay] > div:before {
  z-index: 0 !important;
}

div[id*=kt],
div[class*=kt],
div[id*=kadence],
div[class*=kadence] {
  z-index: auto !important; /* remove explicit z-index */
}

#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
}

#map1, #map2 {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vh;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 0;
  z-index: 110;
}

.blur {
  backdrop-filter: blur(10px);
}

.postEdit {
  display: table;
  padding: 4px 8px;
  background: rgba(37, 37, 37, 0.2);
  font-size: 13px;
  font-weight: 900;
  color: #252525;
  text-decoration: none;
  line-height: 1em;
  margin: 5px 0;
}

.genBtn,
.genBtnParent a {
  display: table;
  padding: 8px 12px;
  background: #3F547B;
  font-family: "menca", sans-serif;
  color: #FAFBFB;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  line-height: 1em;
  border-radius: 4px;
  border: 1px solid #FAFBFB;
  transition: all 0.2s ease;
}
.genBtn i,
.genBtnParent a i {
  margin-right: 5px;
}
.genBtn:hover,
.genBtnParent a:hover {
  background: #EC6E32;
}

.genBtnParent.full a {
  display: block;
}

.genBtnParent.center a {
  margin: 0 auto;
}

.genBtnParent.large a {
  font-size: 1.5em;
}

.genBtnParent.inline a {
  display: inline-block;
  margin: 2px 10px 2px 0;
}

#lsc-percent {
  font-family: "menca", sans-serif;
}

.post-edit-link {
  display: block;
  position: fixed;
  left: 15px;
  bottom: 15px;
  padding: 5px 12px;
  line-height: 1em;
  background: rgba(236, 110, 50, 0.8);
  color: #FAFBFB;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  z-index: 100;
}

.adminBtn {
  display: table;
  z-index: 10;
  position: fixed;
  left: 30px;
  bottom: 30px;
  padding: 5px 8px;
  background: #EC6E32;
  font-family: "menca", sans-serif;
  font-size: 1.1em;
  color: #FAFBFB;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  line-height: 1em;
  border-radius: 4px;
  border: 1px solid #FAFBFB;
  transition: all 0.2s ease;
}
.adminBtn i {
  margin-right: 5px;
}
.adminBtn:hover {
  background: #EC6E32;
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 1024px) and (orientation: portrait) { /* 600px is fine */
  #branding {
    flex-basis: 50%;
  }
  nav#main {
    display: none !important;
  }
  .menu-icon {
    display: block;
  }
  .menu-icon .fa-xmark {
    background: #FAFBFB;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 1em;
    border-radius: 100%;
    border: 4px solid #FAFBFB;
  }
  .menu-icon .fa-xmark i {
    position: relative;
    text-align: center;
    right: 2px;
  }
  #blogWrap article, #areaWrap article {
    flex-basis: 100%;
  }
  .cpt-title-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-left, .image-right {
    flex-wrap: wrap;
  }
  .image-left .area-image, .image-left .area-content, .image-right .area-image, .image-right .area-content {
    flex-basis: 100%;
  }
  .insetPhoto img {
    width: 50vw !important;
    height: auto !important;
  }
} /* End of file */

/*# sourceMappingURL=style.css.map */
