@charset "UTF-8";
/* OLD */
.kitchor-mobile-nav {
  background: #222;
}
.kitchor-mobile-nav .mobile-nav-close .kitchor-icon-times {
  top: 18px;
  font-size: 24px;
  color: #2aa0d9;
}
.kitchor-mobile-nav .mobile-nav-tabs {
  background: #000000;
}
.kitchor-mobile-nav .menu-item a {
  color: #299fd9 !important;
  font-weight: 500;
  text-decoration: none;
}
.kitchor-mobile-nav .menu-item .dropdown-toggle {
  color: #299fd9 !important;
}

/*------------------------------------*\
 RESET
 \*------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strike, strong, sub, sup, tt, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
section, article, aside, footer, header, hgroup, nav, .h6, .h5, .h4, .h3, .h2, .h1 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

html body {
  line-height: 1;
}
html ol, html ul {
  list-style: none;
}
html blockquote, html q {
  quotes: none;
}
html blockquote:before, html blockquote:after,
html q:before, html q:after {
  content: "";
  content: none;
}
html ins {
  text-decoration: none;
}
html del {
  text-decoration: line-through;
}
html table {
  border-collapse: collapse;
  border-spacing: 0;
}
html a {
  transition: 0.2s ease-in-out;
  color: inherit;
  text-decoration: none;
}
html a:hover {
  text-decoration: none;
}
html ul {
  margin: 0;
}
html strong {
  font-weight: bold;
}
html b {
  font-weight: bold;
}
html i {
  font-style: italic;
}
html button {
  border: none;
  background: none;
}
html textarea {
  resize: none;
}
html input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
}
html div::-webkit-scrollbar {
  width: 0 !important;
}
html div {
  overflow: -moz-scrollbars-none;
}
html div {
  -ms-overflow-style: none;
}
html button:focus {
  outline: none;
}
html input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
html input:focus, html input[type=checkbox]:focus {
  outline: none;
}
html textarea:focus {
  outline: none;
}
html select:focus {
  outline: none;
}

html {
  font-size: 20px;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 1rem;
  max-width: 100vw;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

p {
  line-height: 1.5;
}
p.smaller {
  font-size: 0.9rem;
}

h1, h2, h3, h4, h6 {
  font-family: "Quattrocento", serif;
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

#content ul, #content ol {
  padding-left: 25px;
}
#content ul li, #content ol li {
  line-height: 1.5;
  list-style-type: disc;
  margin-bottom: 10px;
}

.overflow-hidden {
  overflow: hidden;
}

.color-primary {
  color: #EAEDE6;
}

.color-white {
  color: #fff;
}

/* New style */
/* HEADER */
.header-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  max-height: 90px;
  transition: max-height 0.3s ease;
  padding-bottom: 5px;
}

.running-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: #EAEDE6;
  color: #000;
  font-size: 14px;
  line-height: 36px;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1001;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.running-line.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.running-line .running-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: running-line 40s linear infinite;
}
.running-line .running-item {
  padding: 0 2rem;
}

@keyframes running-line {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
  background: transparent;
  box-shadow: none;
  height: auto;
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 2px 15px -2px rgba(0, 0, 0, 0.4);
}
#navbar .navbar-brand {
  padding: 0;
}
#navbar.scrolled {
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 2px 15px -2px rgba(0, 0, 0, 0.4);
  top: 0;
  padding-top: 10px;
}
#navbar.scrolled .header-logo {
  max-height: 60px;
}
#navbar #header-nav {
  display: flex;
  justify-content: end;
  flex-grow: 1;
  align-items: center;
}
#navbar #menu-main-menu li,
#navbar #menu-mobile-menu li {
  transition: all 0.2s;
}
#navbar #menu-main-menu li .nav-link,
#navbar #menu-mobile-menu li .nav-link {
  font-size: 0.9rem;
  line-height: 16px;
  color: #fff;
  padding-top: 25px;
  padding-bottom: 25px;
  cursor: pointer;
}
#navbar #menu-main-menu li .nav-link span,
#navbar #menu-mobile-menu li .nav-link span {
  position: relative;
}
#navbar #menu-main-menu li .nav-link span:before,
#navbar #menu-mobile-menu li .nav-link span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: auto;
  right: 0;
  bottom: -5px;
  background-color: #fff;
  transition: all 0.4s ease;
}
#navbar #menu-main-menu li.current-menu-item:not(#menu-item-167) .nav-link span:before, #navbar #menu-main-menu li:hover .nav-link span:before,
#navbar #menu-mobile-menu li.current-menu-item:not(#menu-item-167) .nav-link span:before,
#navbar #menu-mobile-menu li:hover .nav-link span:before {
  width: 100%;
  left: 0;
  right: auto;
}
#navbar .my_btn, #navbar .get-quote-form .gform_footer .gform_button, .get-quote-form .gform_footer #navbar .gform_button,
#navbar .get-quote-form .gform_footer button,
.get-quote-form .gform_footer #navbar button,
#navbar .get-quote-form .gform_footer input[type=submit],
.get-quote-form .gform_footer #navbar input[type=submit] {
  font-size: 0.9rem;
}

body.nav-black #navbar:not(.scrolled) #menu-main-menu .nav-link,
body.nav-black #navbar:not(.scrolled) #menu-mobile-menu .nav-link {
  color: #000;
  padding-top: 20px;
  padding-bottom: 20px;
}
body.nav-black #navbar:not(.scrolled) #menu-main-menu .nav-link span:before,
body.nav-black #navbar:not(.scrolled) #menu-mobile-menu .nav-link span:before {
  background-color: #000;
}
body.nav-black #navbar:not(.scrolled) .my_btn, body.nav-black #navbar:not(.scrolled) .get-quote-form .gform_footer .gform_button, .get-quote-form .gform_footer body.nav-black #navbar:not(.scrolled) .gform_button,
body.nav-black #navbar:not(.scrolled) .get-quote-form .gform_footer button,
.get-quote-form .gform_footer body.nav-black #navbar:not(.scrolled) button,
body.nav-black #navbar:not(.scrolled) .get-quote-form .gform_footer input[type=submit],
.get-quote-form .gform_footer body.nav-black #navbar:not(.scrolled) input[type=submit] {
  color: #000 !important;
}
body.nav-black #navbar:not(.scrolled) .my_btn::before, body.nav-black #navbar:not(.scrolled) .get-quote-form .gform_footer .gform_button::before, .get-quote-form .gform_footer body.nav-black #navbar:not(.scrolled) .gform_button::before,
body.nav-black #navbar:not(.scrolled) .get-quote-form .gform_footer button::before,
.get-quote-form .gform_footer body.nav-black #navbar:not(.scrolled) button::before,
body.nav-black #navbar:not(.scrolled) .get-quote-form .gform_footer input[type=submit]::before,
.get-quote-form .gform_footer body.nav-black #navbar:not(.scrolled) input[type=submit]::before {
  filter: brightness(0) saturate(100%);
}
body.nav-black #navbar:not(.scrolled) .header-logo {
  filter: brightness(0) saturate(100%);
}
body.nav-black #navbar:not(.scrolled) .hamburger-inner,
body.nav-black #navbar:not(.scrolled) .hamburger-inner::before,
body.nav-black #navbar:not(.scrolled) .hamburger-inner::after,
body.nav-black #navbar:not(.scrolled) .hamburger.navbar-toggler[aria-expanded=true] .hamburger-inner,
body.nav-black #navbar:not(.scrolled) .hamburger.navbar-toggler[aria-expanded=true] .hamburger-inner:before,
body.nav-black #navbar:not(.scrolled) .hamburger.navbar-toggler[aria-expanded=true] .hamburger-inner:after {
  background-color: #000;
}

@media (min-width: 991px) {
  #navbar .dropdown-toggle::after {
    display: none;
  }
  #navbar .dropdown-menu {
    width: 100vw;
    left: 0;
    position: fixed;
    top: 105px;
    display: flex;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 0px;
    background-color: rgb(0, 0, 0);
    opacity: 0;
    border: none;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  #navbar .dropdown-menu li {
    width: 100%;
    aspect-ratio: 16/9;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: all 0.4s;
  }
  #navbar .dropdown-menu li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  #navbar .dropdown-menu li span {
    color: #fff;
  }
  #navbar .dropdown-menu li .menu-title {
    font-size: 18px;
    font-weight: 500;
  }
  #navbar .dropdown-menu li:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.5);
  }
  #navbar .dropdown-menu li:hover:after {
    background: rgba(0, 0, 0, 0);
  }
  #navbar .dropdown-menu li:hover a {
    color: #fff;
    opacity: 0;
  }
  #navbar .dropdown-menu li:hover a span {
    color: #fff;
  }
  #navbar .dropdown-menu li#menu-item-4449 {
    background: url("/wp-content/uploads/2026/01/full.avif") center;
    background-size: cover;
  }
  #navbar .dropdown-menu li#menu-item-4448 {
    background: url("/wp-content/uploads/2026/01/lotus-design-n-print-I58Xjx0zzBQ-unsplash-scaled.avif") center;
    background-size: cover;
  }
  #navbar .dropdown-menu li#menu-item-4450 {
    background: url("/wp-content/uploads/2026/01/shutterstock_2713391081-scaled.avif") center;
    background-size: cover;
  }
  #navbar .dropdown-menu li#menu-item-4451 {
    background: url("/wp-content/uploads/2026/01/Living_room-scaled.avif") center;
    background-size: cover;
  }
  #navbar #menu-item-48 .dropdown-menu li {
    aspect-ratio: 21/9;
  }
  #navbar #menu-main-menu li:hover .nav-link span:before,
  #navbar #menu-mobile-menu li:hover .nav-link span:before {
    width: 100%;
  }
  #navbar #menu-item-11216 .sub-menu li {
    aspect-ratio: 15/9;
  }
  #navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #navbar.scrolled .dropdown-menu {
    top: 74px;
  }
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  background-color: #fff;
}

.navbar .hamburger.navbar-toggler[aria-expanded=true] .hamburger-inner,
.navbar .hamburger.navbar-toggler[aria-expanded=true] .hamburger-inner:before,
.navbar .hamburger.navbar-toggler[aria-expanded=true] .hamburger-inner:after {
  background-color: #fff;
}

.navbar .navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-expand-lg .navbar-toggler {
  display: block;
}

.hamburger {
  padding-bottom: 10px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  width: 36px;
  height: 1px;
}

/* HEADER END */
/* REUSEABLE STUFF */
.my_btn, .get-quote-form .gform_footer .gform_button,
.get-quote-form .gform_footer button,
.get-quote-form .gform_footer input[type=submit] {
  --btn-circle-size: 2em;
  --btn-shift: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 1.2;
  color: inherit;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  padding-right: calc(var(--btn-circle-size) + 15px);
  cursor: pointer;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  appearance: none;
  -webkit-appearance: none;
}
.my_btn::after, .get-quote-form .gform_footer .gform_button::after,
.get-quote-form .gform_footer button::after,
.get-quote-form .gform_footer input[type=submit]::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: var(--btn-circle-size);
  height: var(--btn-circle-size);
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
  transform: translate(var(--btn-shift), -50%);
  transition: transform 0.25s ease;
}
.my_btn::before, .get-quote-form .gform_footer .gform_button::before,
.get-quote-form .gform_footer button::before,
.get-quote-form .gform_footer input[type=submit]::before {
  content: "";
  position: absolute;
  left: calc(100% - var(--btn-circle-size) / 2);
  top: 50%;
  width: 1.1em;
  height: 0.7em;
  background: url("/wp-content/themes/dnb/assets/images/btn_arrow.svg") center/contain no-repeat;
  transform: translate(calc(-50% + var(--btn-shift)), -50%);
  transition: transform 0.25s ease;
}
.my_btn.is-dark::before, .get-quote-form .gform_footer .is-dark.gform_button::before,
.get-quote-form .gform_footer button.is-dark::before,
.get-quote-form .gform_footer input.is-dark[type=submit]::before, .is-dark .my_btn::before, .is-dark .get-quote-form .gform_footer .gform_button::before, .get-quote-form .gform_footer .is-dark .gform_button::before,
.is-dark .get-quote-form .gform_footer button::before,
.get-quote-form .gform_footer .is-dark button::before,
.is-dark .get-quote-form .gform_footer input[type=submit]::before,
.get-quote-form .gform_footer .is-dark input[type=submit]::before {
  filter: brightness(0) saturate(100%);
}
.my_btn:hover, .get-quote-form .gform_footer .gform_button:hover,
.get-quote-form .gform_footer button:hover,
.get-quote-form .gform_footer input[type=submit]:hover {
  --btn-shift: 6px;
}
.my_btn.is-large, .get-quote-form .gform_footer .is-large.gform_button,
.get-quote-form .gform_footer button.is-large,
.get-quote-form .gform_footer input.is-large[type=submit] {
  font-family: "Quattrocento", serif;
  font-weight: 400;
  font-size: 1.65rem;
  text-transform: uppercase;
  --btn-circle-size: 1.8rem;
}
.my_btn.is-large::before, .get-quote-form .gform_footer .is-large.gform_button::before,
.get-quote-form .gform_footer button.is-large::before,
.get-quote-form .gform_footer input.is-large[type=submit]::before {
  width: 1rem;
  height: 0.62rem;
}
.my_btn.is-mid, .get-quote-form .gform_footer .is-mid.gform_button,
.get-quote-form .gform_footer button.is-mid,
.get-quote-form .gform_footer input.is-mid[type=submit] {
  font-family: "Quattrocento", serif;
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: none;
  --btn-circle-size: 1.8rem;
}
.my_btn.is-mid::before, .get-quote-form .gform_footer .is-mid.gform_button::before,
.get-quote-form .gform_footer button.is-mid::before,
.get-quote-form .gform_footer input.is-mid[type=submit]::before {
  width: 1rem;
  height: 0.62rem;
  transform: translate(calc(-50% + var(--btn-shift)), -50%);
  transform-origin: center;
}
.my_btn.is-mid:not(.rotate)::before, .get-quote-form .gform_footer .is-mid.gform_button:not(.rotate)::before,
.get-quote-form .gform_footer button.is-mid:not(.rotate)::before,
.get-quote-form .gform_footer input.is-mid[type=submit]:not(.rotate)::before {
  transform: translate(calc(-50% + var(--btn-shift)), -50%) rotate(90deg);
}

.green-bg {
  background: #EAEDE6;
}

.white-bg {
  background: #fff !important;
}

.service_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_list li {
  width: calc(50% - 10px);
}

.projects-filter {
  margin-top: 10vh;
  margin-bottom: 8vh;
}
.projects-filter .items {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.projects-filter .item {
  background: none;
  border: 0;
  padding: 0 0 4px;
  font-family: "Quattrocento", serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: inherit;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.2s ease;
}
.projects-filter .item.is-active,
.projects-filter .item:hover {
  border-bottom-color: currentColor;
}
.projects-filter .item:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}
.hero .ti-widget {
  font-family: "Inter", sans-serif !important;
  text-align: left !important;
  margin-bottom: 30px;
}
.hero .ti-widget[data-layout-id="27"][data-set-id=dark-minimal] .ti-widget-container,
.hero .ti-widget[data-layout-id="27"][data-set-id=dark-minimal] .ti-widget-container * {
  font-family: "Inter", sans-serif !important;
}
.hero .container {
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero .hero_content {
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 65%;
}
.hero .hero_content h1 {
  color: #fff;
  margin: 0;
  margin-bottom: 30px;
}
.hero .hero_actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.img_side_scroll {
  overflow-x: scroll;
  padding-top: 20px;
  padding-bottom: 20px;
}
.img_side_scroll .container {
  display: flex;
  gap: 10px;
  min-width: 500px;
}

.text_block {
  padding-top: 80px;
  padding-bottom: 90px;
  text-align: center;
}
.text_block p {
  margin-bottom: 50px;
}

.text_intro {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section_padding {
  padding-top: 60px;
  padding-bottom: 80px;
}

.featured_project {
  position: relative;
  height: 70vh;
  height: 70svh;
  height: 70dvh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  max-height: 70vw;
}
.featured_project::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 80%);
  z-index: 1;
}
.featured_project .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.featured_project .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comparison .comparison-slider {
  margin-bottom: 50px;
}
.comparison .comparison-slider .slick-slide {
  padding: 0 10px;
}
.comparison .comparison-slider .slick-list {
  margin: 0 -10px;
}
.comparison .comparison-pair {
  display: flex;
  gap: 10px;
}
.comparison .item {
  position: relative;
  flex: 1;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.comparison .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}
.comparison .label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
  transition: opacity 0.45s ease;
  line-height: 1.3;
}
.comparison .label-default {
  opacity: 1;
  font-size: 1.4rem;
}
.comparison .label-hover {
  opacity: 0;
  pointer-events: none;
}
.comparison .comparison-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.comparison .comparison-label {
  display: inline-block;
  background: none;
  border: none;
  padding: 0 6px 6px;
  border-bottom: 2px solid currentColor;
  color: inherit;
  font: inherit;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.comparison .comparison-label:hover,
.comparison .comparison-label.is-active {
  opacity: 1;
}

.our_renos .our-renos-head {
  text-align: center;
}
.our_renos .our-renos-text {
  max-width: 1000px;
  margin: 10px auto 80px;
  text-align: center;
}
.our_renos .our-renos-text h3 {
  margin-bottom: 20px;
}
.our_renos .our-renos-text .slick-slide {
  padding: 0 10px;
}
.our_renos .our-renos-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.our_renos .comparison-label {
  display: inline-block;
  background: none;
  border: none;
  padding: 0 6px 6px;
  border-bottom: 2px solid currentColor;
  color: inherit;
  font: inherit;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.25s ease;
}
.our_renos .comparison-label:hover,
.our_renos .comparison-label.is-active {
  opacity: 1;
}
.our_renos .our-renos-media {
  margin-top: 25px;
  width: 100%;
  overflow: hidden;
}
.our_renos .our-renos-media .slick-list {
  margin: 0;
}
.our_renos .our-renos-media .slick-slide {
  margin: 0;
}
.our_renos .our-renos-image {
  width: 100%;
  height: clamp(320px, 55vw, 640px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.team {
  position: relative;
}
.team .team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  row-gap: 8vh;
}
.team .team-card {
  cursor: pointer;
}
.team .team-card h4 {
  margin-bottom: 20px;
}
.team .team-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 30px;
}
.team .team-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team .team-card-overlay {
  position: absolute;
  inset: 0;
  background: #EAEDE6;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.team .team-card:hover .team-card-overlay {
  opacity: 1;
}
.team .team-popup {
  position: absolute;
  inset: 0;
  background: #EAEDE6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 5;
}
.team .team-popup .team-popup-desc {
  font-size: 0.9rem;
}
.team .team-popup .container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.team.is-popup-active .team-popup {
  opacity: 1;
  pointer-events: auto;
}
.team.is-popup-active .team-grid,
.team.is-popup-active .team-head {
  opacity: 0.15;
  pointer-events: none;
}
.team .team-popup-close {
  background: none;
  border: none;
  font-size: 50px;
  line-height: 1;
  cursor: pointer;
}
.team .team-popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  z-index: 10;
}
.team .team-popup-arrow span {
  font-size: 18px;
}
.team .team-popup-arrow:hover {
  background: #000;
  color: #fff;
}
.team .team-popup-arrow.is-prev {
  left: 10px;
}
.team .team-popup-arrow.is-next {
  right: 10px;
}
.team .team-popup-slider {
  width: 100%;
  max-width: 1100px;
}
.team .team-popup-slider .slick-list {
  overflow: visible;
  perspective: 1200px;
}
.team .team-popup-slider .slick-track {
  display: flex;
  align-items: center;
  transform-style: preserve-3d;
}
.team .team-popup-slider .slick-slide {
  opacity: 0.35;
  transform: scale(0.78);
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform 0.6s ease, opacity 0.45s ease;
}
.team .team-popup-slider .slick-slide.is-prev {
  transform: scale(0.78);
}
.team .team-popup-slider .slick-slide.is-next {
  transform: scale(0.78);
}
.team .team-popup-slider .slick-slide.slick-center {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}
.team .team-popup-slide {
  padding: 15px 10px;
  display: flex;
  justify-content: center;
}
.team .team-popup-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1/1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.team .team-popup-photo {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.team .team-popup-copy {
  width: 100%;
  max-width: 900px;
}
.team .team-popup-title {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  opacity: 0.7;
}

.how_it_works h2 {
  margin-bottom: 10px;
}
.how_it_works p {
  margin-bottom: 30px;
}
.how_it_works .items {
  display: flex;
  gap: 10px;
  row-gap: 20px;
}
.how_it_works .how_item {
  flex: 1;
  position: relative;
  overflow: hidden;
  --info-height: 140px;
}
.how_it_works .image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 20%;
  aspect-ratio: 6/7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.how_it_works .image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}
.how_it_works .number {
  font-family: "Quattrocento", serif;
  font-size: 4.5rem;
  color: #fff;
  opacity: 0.9;
}
.how_it_works .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--info-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  background: #fff;
  color: #000;
  overflow: hidden;
  transition: height 0.5s ease;
  background: #EAEDE6;
}
.how_it_works .info p {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}

.how_it_works_static .items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}
.how_it_works_static .how_item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #EAEDE6;
  height: 100%;
}
.how_it_works_static .how_item h3 {
  margin-bottom: 30px;
}
.how_it_works_static .how_item h4 {
  margin-bottom: 25px;
}
.how_it_works_static .image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 8/5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.how_it_works_static .number {
  font-family: "Quattrocento", serif;
  font-size: 4.5rem;
  color: #fff;
  opacity: 0.9;
}
.how_it_works_static .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px;
  color: #000;
  flex: 1;
}
.how_it_works_static.is-slider .items {
  display: block;
  margin-right: -80px;
  padding-right: 80px;
}
.how_it_works_static.is-slider .how_item {
  background: #fff;
}
.how_it_works_static.is-slider .slick-slide {
  margin: 0 5px;
  height: auto;
  display: flex;
}
.how_it_works_static.is-slider .slick-slide > div {
  display: flex;
  height: 100%;
  width: 100%;
}
.how_it_works_static.is-slider .slick-list {
  margin: 0 -5px;
  clip-path: inset(-100vw -100vw -100vw 0);
  overflow: visible;
}
.how_it_works_static.is-slider .slick-track {
  display: flex;
  align-items: stretch;
}
.how_it_works_static.is-slider .how_item {
  width: 100%;
}
.how_it_works_static.is-slider .how-it-works-next {
  width: 46px;
  height: 46px;
  border: 1px solid #000;
  border-radius: 50%;
  background: transparent;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.how_it_works_static.is-slider .how-it-works-next svg {
  width: 20px;
  height: 20px;
}
.how_it_works_static.is-slider .how-it-works-next:hover {
  background: #000;
  color: #fff;
}
.how_it_works_static.is-slider .how-it-works-desc {
  max-width: 720px;
}
@media (max-width: 1199px) {
  .how_it_works_static.is-slider .items {
    margin-right: -60px;
    padding-right: 60px;
  }
}
.how_it_works_static.grid_4 .how_item .info {
  padding: 30px 20px;
}
.how_it_works_static.grid_4 .how_item p {
  font-size: 0.9rem;
}
.how_it_works_static.grid_4 .items {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.how_it_works_static.green-bg .how_item {
  background: #fff;
}

.service-reverse-blocks .reverse-block {
  align-items: center;
}
.service-reverse-blocks .reverse-block + .reverse-block {
  margin-top: 40px;
}
.service-reverse-blocks .reverse-block-image {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-reverse-blocks .reverse-block-copy {
  margin-top: 20px;
}
.service-reverse-blocks .reverse-block-copy h3 {
  margin-bottom: 10px;
}
.service-reverse-blocks .reverse-block-copy p {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .service-reverse-blocks .reverse-block-copy {
    margin-top: 0;
  }
}

.google_reviews {
  max-width: 100vw;
  overflow: hidden;
  color: #000;
}
.google_reviews .ti-widget,
.google_reviews [class*=ti-] {
  color: #000 !important;
  background-color: transparent !important;
}
.google_reviews [class*=ti-] * {
  color: #000 !important;
}
.google_reviews [class*=ti-] svg {
  fill: #000 !important;
  stroke: #000 !important;
}
.google_reviews [class*=ti-] button,
.google_reviews [class*=ti-] a {
  color: #000 !important;
}
.google_reviews .ti-widget[data-layout-id="14"] .ti-review-item {
  border: 1px solid #000;
  border-radius: 10px;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-col-8 .ti-review-item {
  max-width: 11.6%;
  margin: 0 0.4%;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-col-7 .ti-review-item {
  max-width: 13.286%;
  margin: 0 0.5%;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-col-6 .ti-review-item {
  max-width: 15.666%;
  margin: 0 0.5%;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-col-5 .ti-review-item {
  max-width: 19%;
  margin: 0 0.5%;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-col-4 .ti-review-item {
  max-width: 24%;
  margin: 0 0.5%;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-col-3 .ti-review-item {
  max-width: 32.333%;
  margin: 0 0.5%;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-col-2 .ti-review-item {
  max-width: 48%;
  margin: 0 0.5%;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-review-item > .ti-inner, .google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-load-more-reviews-container .ti-load-more-reviews-button {
  background: #fff !important;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-widget-header .ti-header-content .ti-header-rating-text .ti-header-rating + .ti-header-rating-reviews:before, .google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-widget-header .ti-header-content .ti-header-rating-text .ti-rating-text + .ti-header-rating-reviews:before {
  border-left: solid 1px #000;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-widget-container .ti-widget-header {
  border: none !important;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-widget-header .ti-header-content.ti-active {
  justify-content: center;
}
.google_reviews .ti-widget[data-layout-id="14"] .ti-header-write-btn-container {
  display: none !important;
}
.google_reviews .ti-rating svg,
.google_reviews .ti-rating .ti-star,
.google_reviews .ti-rating [class*=star] {
  filter: grayscale(1) brightness(0);
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-controls .ti-next,
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-controls .ti-prev {
  background-color: #ccc !important;
  border: none !important;
  outline: none;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-controls .ti-next {
  right: 10px;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-controls .ti-prev {
  left: 10px;
}
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-controls .ti-next,
.google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-controls .ti-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.awards {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: nowrap;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.awards .award-item {
  display: flex;
  justify-content: center;
}
.awards img {
  height: 100px;
  max-width: 100%;
  display: block;
  object-fit: fill;
}

/* Our services */
.services-cta {
  background: #EAEDE6;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.services-cta .container {
  width: 100%;
}
.services-cta p {
  margin-bottom: 40px;
}
@media (max-aspect-ratio: 4/5) {
  .services-cta {
    min-height: 45vh;
  }
}

.project-cta {
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 120px;
}
.project-cta .container {
  width: 100%;
}
.project-cta p {
  margin-bottom: 40px;
}

.service-list {
  background: #EAEDE6;
  color: #000;
}
.service-list .service-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px;
}
.service-list .service-list-item {
  display: flex;
  flex-direction: column;
}
.service-list .service-list-icon {
  width: 100px;
  height: 50px;
  margin-bottom: 20px;
}
.service-list .service-list-icon img {
  height: 100%;
  display: block;
}
.service-list h4 {
  margin-bottom: 10px;
}
.service-list p {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .service-list .service-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .service-list .service-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .service-list .service-list-grid {
    grid-template-columns: 1fr;
  }
}

.services-featured_img {
  aspect-ratio: 24/9;
  width: 100%;
}

/* Our Services END */
.site-footer {
  background: #EAEDE6;
  color: #000;
  margin-top: 0;
  padding-bottom: 30px;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer .footer-top {
  row-gap: 30px;
  margin-bottom: 40px;
}
.site-footer .footer-logo .logo img {
  max-width: 80%;
}
.site-footer .footer-contact {
  row-gap: 40px;
}
.site-footer .footer-contact .value {
  margin-bottom: 5px;
  line-height: 1.2;
}
.site-footer .footer-sitemap {
  margin-top: 40px;
}
.site-footer .footer-sitemap .links {
  font-size: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer .footer-sitemap .links li {
  margin: 0;
}
.site-footer .footer-sitemap .links a {
  border-bottom: 1px solid transparent;
  display: inline-block;
  padding-bottom: 3px;
}
.site-footer .footer-sitemap .links a:hover {
  border-bottom: 1px solid #000;
}
.site-footer .footer-awards {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.site-footer .footer-awards img {
  height: 50px;
  width: auto;
  display: block;
}
.site-footer .footer-bottom {
  padding-top: 30px;
  row-gap: 15px;
}
.site-footer hr {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0;
}
.site-footer .footer-social {
  display: flex;
  gap: 30px;
  align-items: center;
}
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.site-footer .footer-social a:hover {
  opacity: 0.6;
}
.site-footer .footer-social i,
.site-footer .footer-social svg,
.site-footer .footer-social img {
  font-size: 26px;
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}
.site-footer .footer-social svg {
  fill: currentColor;
}
.site-footer .footer-legal .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
}

@media (min-width: 1200px) {
  .site-footer .contact-item p {
    font-size: 0.9rem;
  }
  .site-footer .contact-item .link {
    font-size: 0.9rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .comparison .item .label-default .my_btn, .comparison .item .label-default .get-quote-form .gform_footer .gform_button, .get-quote-form .gform_footer .comparison .item .label-default .gform_button,
  .comparison .item .label-default .get-quote-form .gform_footer button,
  .get-quote-form .gform_footer .comparison .item .label-default button,
  .comparison .item .label-default .get-quote-form .gform_footer input[type=submit],
  .get-quote-form .gform_footer .comparison .item .label-default input[type=submit] {
    display: none;
  }
  .comparison .item:hover .label-default {
    opacity: 0;
    transition-delay: 0.15s;
  }
  .comparison .item:hover .label-hover {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.2s;
  }
}
/* REUSEABLE STUFF END */
#gallery_page .filter-top {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#gallery_page .grid-sizer,
#gallery_page .grid-item {
  width: 33.33%;
}
#gallery_page .grid-item {
  float: left;
  overflow: hidden;
  padding: 5px;
}
#gallery_page .grid-item .for-zoom {
  overflow: hidden;
}
#gallery_page .grid-item:hover {
  cursor: pointer;
}
#gallery_page .grid-item:hover img {
  transform: scale(1.1);
}
#gallery_page .grid-item img {
  display: block;
  max-width: 100%;
  border: 0;
  transition: 0.5s;
}
#gallery_page .flex-for-gallery {
  margin-bottom: 80px;
}
#gallery_page .filter-mobile {
  display: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lightbox .prev, .lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
}

.lightbox .prev {
  left: 20px;
}

.lightbox .next {
  right: 20px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 50px;
  color: white;
  cursor: pointer;
}

.gform_wrapper ol {
  display: none !important;
}
.gform_wrapper .gform_heading {
  display: none;
}
.gform_wrapper .gfield_label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.gform_wrapper .gfield_required_asterisk {
  color: red;
}
.gform_wrapper .gform_required_legend {
  margin-bottom: 20px;
}
.gform_wrapper .hidden_label legend {
  display: none;
}
.gform_wrapper form .gform-field-label {
  display: none !important;
}
.gform_wrapper form .gfield .ginput_container_consent .gform-field-label {
  display: block !important;
  padding-top: 0;
}
.gform_wrapper form .gfield_description:not(.validation_message) {
  display: none !important;
}
.gform_wrapper form .ginput_container {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}
.gform_wrapper form .ginput_container input:not([type=file]),
.gform_wrapper form .ginput_container textarea,
.gform_wrapper form .ginput_container select,
.gform_wrapper form .ginput_container input:-webkit-autofill,
.gform_wrapper form .ginput_container input:-webkit-autofill:hover,
.gform_wrapper form .ginput_container input:-webkit-autofill:focus,
.gform_wrapper form .ginput_container textarea:-webkit-autofill,
.gform_wrapper form .ginput_container textarea:-webkit-autofill:hover,
.gform_wrapper form .ginput_container textarea:-webkit-autofill:focus,
.gform_wrapper form .ginput_container select:-webkit-autofill,
.gform_wrapper form .ginput_container select:-webkit-autofill:hover,
.gform_wrapper form .ginput_container select:-webkit-autofill:focus {
  width: 100%;
  color: #000;
  line-height: 50px;
  background: transparent;
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 0 #000 inset;
  transition: background-color 5000s ease-in-out 0s;
  border-radius: 0;
}
.gform_wrapper form .ginput_container input:not([type=file])::placeholder,
.gform_wrapper form .ginput_container textarea::placeholder,
.gform_wrapper form .ginput_container select::placeholder,
.gform_wrapper form .ginput_container input:-webkit-autofill::placeholder,
.gform_wrapper form .ginput_container input:-webkit-autofill:hover::placeholder,
.gform_wrapper form .ginput_container input:-webkit-autofill:focus::placeholder,
.gform_wrapper form .ginput_container textarea:-webkit-autofill::placeholder,
.gform_wrapper form .ginput_container textarea:-webkit-autofill:hover::placeholder,
.gform_wrapper form .ginput_container textarea:-webkit-autofill:focus::placeholder,
.gform_wrapper form .ginput_container select:-webkit-autofill::placeholder,
.gform_wrapper form .ginput_container select:-webkit-autofill:hover::placeholder,
.gform_wrapper form .ginput_container select:-webkit-autofill:focus::placeholder {
  color: #000;
  opacity: 1; /* Firefox */
}
.gform_wrapper form .ginput_container input:not([type=file])::-ms-input-placeholder,
.gform_wrapper form .ginput_container textarea::-ms-input-placeholder,
.gform_wrapper form .ginput_container select::-ms-input-placeholder,
.gform_wrapper form .ginput_container input:-webkit-autofill::-ms-input-placeholder,
.gform_wrapper form .ginput_container input:-webkit-autofill:hover::-ms-input-placeholder,
.gform_wrapper form .ginput_container input:-webkit-autofill:focus::-ms-input-placeholder,
.gform_wrapper form .ginput_container textarea:-webkit-autofill::-ms-input-placeholder,
.gform_wrapper form .ginput_container textarea:-webkit-autofill:hover::-ms-input-placeholder,
.gform_wrapper form .ginput_container textarea:-webkit-autofill:focus::-ms-input-placeholder,
.gform_wrapper form .ginput_container select:-webkit-autofill::-ms-input-placeholder,
.gform_wrapper form .ginput_container select:-webkit-autofill:hover::-ms-input-placeholder,
.gform_wrapper form .ginput_container select:-webkit-autofill:focus::-ms-input-placeholder { /* Edge 12 -18 */
  color: #000;
}
.gform_wrapper form .ginput_container select {
  background: url("/wp-content/themes/dnb/assets/images/select_arrow.png") no-repeat;
  background-size: 30px;
  background-position: right center;
  cursor: pointer;
}
.gform_wrapper form .ginput_container textarea {
  width: 100%;
  height: 110px;
  line-height: 1.1;
  padding-top: 20px;
  text-align: left;
  line-height: 1.1;
}
.gform_wrapper form .ginput_container:not(.checkbox)::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../img/small_arrow.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.gform_wrapper form .ginput_container .gform_fileupload_rules {
  display: block;
  padding-top: 10px;
  font-size: 14px;
  color: #999;
}
.gform_wrapper form .ginput_container.missing input,
.gform_wrapper form .ginput_container.missing textarea {
  border-bottom: 1px solid red;
}
.gform_wrapper form .gfield--type-checkbox,
.gform_wrapper form .gfield--type-choice {
  display: inline-block;
  position: relative;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 0;
  text-align: left;
  margin-right: 0px;
  margin-bottom: 0;
}
.gform_wrapper form .gfield--type-checkbox input,
.gform_wrapper form .gfield--type-choice input {
  position: absolute;
  opacity: 0;
  width: 10px;
  height: 10px;
  left: 30px;
}
.gform_wrapper form .gfield--type-checkbox label,
.gform_wrapper form .gfield--type-choice label {
  padding-top: 6px;
  padding-left: 40px;
  position: relative;
  cursor: pointer;
  line-height: 1.6;
  text-transform: none;
  font-size: 12px;
}
.gform_wrapper form .gfield--type-checkbox label:before,
.gform_wrapper form .gfield--type-choice label:before {
  content: "";
  position: absolute;
  top: 5px;
  display: block;
  left: -5px;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: #454343;
  border-image: initial;
  background: transparent;
  text-align: center;
  line-height: 23px;
  font-size: 16px;
}
.gform_wrapper form .gfield--type-checkbox input[type=radio]:checked + label:before,
.gform_wrapper form .gfield--type-checkbox input[type=checkbox]:checked + label:before,
.gform_wrapper form .gfield--type-choice input[type=radio]:checked + label:before,
.gform_wrapper form .gfield--type-choice input[type=checkbox]:checked + label:before {
  content: "✓";
  color: #000;
}
.gform_wrapper form .gfield--type-checkbox label:after,
.gform_wrapper form .gfield--type-choice label:after {
  display: none;
}
.gform_wrapper form .gfield--type-checkbox.missing label:before,
.gform_wrapper form .gfield--type-choice.missing label:before {
  border-color: red;
}
.gform_wrapper form .thank_you_message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  display: none;
}
.gform_wrapper form .thank_you_message h3 {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translate(0, -50%);
  padding: 0 20px;
}
.gform_wrapper form .thank_you_message .close_icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
  cursor: pointer;
}
.gform_wrapper form.form-done .thank_you_message {
  display: block;
}
.gform_wrapper .gform-footer {
  margin-top: 30px;
  text-align: right;
}
.gform_wrapper .ginput_address_line_2,
.gform_wrapper .ginput_address_city,
.gform_wrapper .ginput_address_state,
.gform_wrapper .ginput_address_zip,
.gform_wrapper .ginput_address_country {
  display: none !important;
}
.gform_wrapper .gform_submission_error {
  font-size: 1rem;
  color: red;
}

.get-quote-form {
  color: #000;
  background: #fff;
}
.get-quote-form.is-green {
  background: green;
}
.get-quote-form .gform_wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.get-quote-form .gfield--type-hidden,
.get-quote-form .gfield.gfield--visibility-hidden,
.get-quote-form .gfield--type-honeypot {
  display: none;
  margin: 0;
  padding: 0;
  height: 0;
}
.get-quote-form .gfield:not(.gfield--type-consent):not(.gfield_consent) > .gfield_label {
  display: none;
}
.get-quote-form .gfield_required,
.get-quote-form .gfield_required_asterisk {
  color: #d00;
}
.get-quote-form .ginput_container {
  position: relative;
}
.get-quote-form .ginput_container::after {
  content: none;
}
.get-quote-form .ginput_container input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=file]),
.get-quote-form .ginput_container textarea,
.get-quote-form .ginput_container select {
  width: 100%;
  font-size: 1rem;
  line-height: 1.6;
  padding: 6px 0;
  color: #000;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-text-fill-color: #000;
}
.get-quote-form .ginput_container textarea {
  min-height: 120px;
}
.get-quote-form .ginput_container input::placeholder,
.get-quote-form .ginput_container textarea::placeholder {
  color: #000;
  opacity: 1;
}
.get-quote-form .ginput_container .has-fake-placeholder::placeholder {
  color: transparent;
}
.get-quote-form .ginput_container .fake-placeholder {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  pointer-events: none;
}
.get-quote-form .ginput_container textarea + .fake-placeholder {
  top: 10px;
  transform: none;
}
.get-quote-form .ginput_container .fake-placeholder .asterisk {
  color: #d00;
}
.get-quote-form .ginput_container .fake-placeholder.is-hidden {
  opacity: 0;
}
.get-quote-form .ginput_container select {
  background-repeat: no-repeat;
  padding-right: 24px;
}
.get-quote-form .gform_footer .my_btn::before, .get-quote-form .gform_footer .gform_button::before,
.get-quote-form .gform_footer button::before,
.get-quote-form .gform_footer input[type=submit]::before {
  filter: brightness(0) saturate(100%);
}
.get-quote-form .gfield_validation_message,
.get-quote-form .validation_message {
  font-size: 12px;
  color: #d00;
}

@media (min-width: 992px) {
  .get-quote-form .gform_fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .get-quote-form .gform_fields > .gfield {
    flex: 1 1 100%;
    margin: 0;
  }
  .get-quote-form .gform_fields > .gfield.gfield--width-half {
    flex: 1 1 calc(50% - 10px);
  }
}
@media (min-width: 1500px) {
  #our_project .coming-soon-card h3 {
    font-size: 1.4rem;
  }
}
/* Project Details */
#project_details .story {
  width: 100%;
}
#project_details .story .item {
  display: flex;
  min-height: 80vh;
}
#project_details .story .media {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
}
#project_details .story .content {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  padding: 100px;
  background: #EAEDE6;
  color: #000;
}
#project_details .story .inner {
  max-width: 500px;
  margin: 0 auto;
}
#project_details .story .item:nth-child(even) {
  flex-direction: row-reverse;
}
#project_details .story .item:nth-child(even) .content {
  background: #fff;
}
@media (max-width: 1200px) {
  #project_details .story .content {
    padding: 70px;
  }
}
@media (max-width: 991px) {
  #project_details .story .item {
    min-height: 40vh;
  }
  #project_details .story .content {
    padding: 60px 40px;
  }
}
@media (max-width: 800px) {
  #project_details .story .item {
    flex-direction: column;
    min-height: auto;
  }
  #project_details .story .item:nth-child(even) {
    flex-direction: column;
  }
  #project_details .story .media,
  #project_details .story .content {
    flex: 0 0 auto;
    width: 100%;
  }
  #project_details .story .content {
    order: 1;
    padding: 60px 0;
  }
  #project_details .story .media {
    order: 2;
  }
  #project_details .story .content {
    padding: 60px 0;
  }
  #project_details .story .inner {
    margin: 0;
  }
}
@media (max-width: 800px) {
  #project_details .story {
    flex-direction: column;
  }
  #project_details .story .item {
    flex: 0 0 auto;
    width: 100%;
  }
  #project_details .story .media {
    aspect-ratio: 4/3;
  }
  #project_details .story .inner {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  #project_details .story {
    flex-direction: column;
  }
  #project_details .story .media {
    aspect-ratio: 1/1;
  }
}
#project_details .image-pair {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 20px;
}
#project_details .image-pair .item {
  flex: 0 0 50%;
  overflow: hidden;
}
#project_details .image-pair img {
  display: block;
  width: 100%;
  height: auto;
}
#project_details .image-pair.is-locked .item {
  height: 100%;
}
#project_details .image-pair.is-locked img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 800px) {
  #project_details .image-pair {
    flex-wrap: wrap;
  }
  #project_details .image-pair .item {
    flex: 0 0 100%;
  }
}

.stats {
  padding-top: 80px;
  padding-bottom: 80px;
}
.stats .items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 7.5%;
  row-gap: 60px;
}
.stats .item {
  flex: 0 0 46%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  position: relative;
  padding-bottom: 20px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.stats .item::before,
.stats .item::after {
  content: "";
  position: absolute;
  top: calc(100% - 3px);
  width: 0;
  rotate: -90deg;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid currentColor;
}
.stats .item::before {
  left: -4px;
}
.stats .item::after {
  rotate: 90deg;
  right: -4px;
}
.stats .desc {
  font-family: "Quattrocento", serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.1;
}
.stats .num {
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .stats .items {
    column-gap: 0;
  }
  .stats .item {
    flex: 0 0 100%;
  }
}

.journey {
  padding-top: 80px;
  padding-bottom: 80px;
}
.journey .my_btn, .journey .get-quote-form .gform_footer .gform_button, .get-quote-form .gform_footer .journey .gform_button,
.journey .get-quote-form .gform_footer button,
.get-quote-form .gform_footer .journey button,
.journey .get-quote-form .gform_footer input[type=submit],
.get-quote-form .gform_footer .journey input[type=submit] {
  margin-bottom: 25px;
}

#basic_page #basic-hero {
  position: relative;
  min-height: calc(200px + 35vh);
}
#basic_page #basic-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
#basic_page #basic-hero .hero-inner {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  z-index: 2;
  text-align: center;
}
#basic_page #basic-hero .hero-inner h1 {
  color: #fff;
}
#basic_page #main_content {
  padding-top: 80px;
  padding-bottom: 80px;
}
#basic_page #main_content h4 {
  margin-bottom: 20px;
}
#basic_page #main_content p {
  margin-bottom: 50px;
}

#interior_design .project_showcase h4 {
  margin-bottom: 15px;
}

#faq .full-h2.has_subhead {
  margin-bottom: 40px;
}
#faq h3.large {
  font-weight: 500 !important;
  margin-bottom: 30px;
}
#faq .expand_item {
  padding: 35px 0;
  border-top: 1px solid #ccc;
}
#faq .expand_item p {
  font-size: 16px;
  margin-bottom: 0 !important;
}
#faq .expand_item .title {
  padding-right: 60px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
#faq .expand_item .title h3, #faq .expand_item .title h4 {
  margin-bottom: 0 !important;
}
#faq .expand_item .title .expand_btn {
  position: absolute;
  right: 0;
  top: -5px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
#faq .expand_item .title .expand_btn:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 2px;
  background: #333;
}
#faq .expand_item .title .expand_btn:after {
  position: absolute;
  content: "";
  top: 50%;
  right: calc(50% - 2px);
  transform: translate(0, -50%);
  width: 2px;
  height: 30px;
  background: #333;
  transition: 0.3s all;
}
#faq .expand_item .title.active .expand_btn:after {
  opacity: 0;
}
#faq .expand_item .inner {
  display: none;
  padding-top: 30px;
}
#faq .expand_item:last-of-type {
  border-bottom: none;
}

#contact_us .small_header {
  aspect-ratio: 24/9;
  background: url("/wp-content/themes/dnb/assets/images/our_services/hero.jpg") center top no-repeat;
  background-size: cover;
}
#contact_us #get_quote .form_description {
  display: none;
}
#contact_us .how_it_works_static .how_item {
  background: #fff;
}
#contact_us .how_it_works_static .how_item p {
  margin-bottom: 5px;
}
#contact_us .how_it_works_static .how_item p a {
  text-decoration: underline;
}
#contact_us .how_it_works_static .how_item p:last-of-type {
  margin-bottom: 0;
}
#contact_us .how_it_works_static .image {
  aspect-ratio: 4/3;
}

#blog_posts .img_bg {
  margin-bottom: 20px;
}
#blog_posts .posts-grid .post-card,
#blog_posts .posts-grid [data-categories] {
  transition: opacity 0.9s ease, transform 0.9s ease;
}
#blog_posts .posts-grid .post-card.is-filtered,
#blog_posts .posts-grid [data-categories].is-filtered {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
}
#blog_posts h3 {
  margin-bottom: 25px;
}
#blog_posts time {
  font-size: 0.8rem;
}
#blog_posts .my_btn, #blog_posts .get-quote-form .gform_footer .gform_button, .get-quote-form .gform_footer #blog_posts .gform_button,
#blog_posts .get-quote-form .gform_footer button,
.get-quote-form .gform_footer #blog_posts button,
#blog_posts .get-quote-form .gform_footer input[type=submit],
.get-quote-form .gform_footer #blog_posts input[type=submit] {
  font-weight: 300;
}
#blog_posts .category {
  margin-bottom: 20px;
}
#blog_posts .category a,
#blog_posts .category button {
  font-size: 0.8rem;
  color: #767676;
  padding: 0;
  padding-bottom: 3px;
  border-bottom: 1px solid #767676;
  background: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
#blog_posts .date {
  margin-bottom: 35px;
}
#blog_posts .post-container {
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
}

.single .site-content {
  max-width: 100%;
}

#blog_posts #primary {
  padding-top: 10vw;
  padding-bottom: 5vw;
}
#blog_posts #primary #main_content h1 {
  font-size: 2.8rem;
}
#blog_posts #primary #main_content h2 {
  font-size: 2.2rem;
  padding-top: 25px;
}
#blog_posts #primary #main_content h3 {
  font-size: 1.7rem;
  padding-top: 15px;
}
#blog_posts #primary #main_content h4 {
  font-size: 1.5rem;
  padding-top: 15px;
  margin-bottom: 25px;
}
#blog_posts #primary #main_content h5 {
  font-size: 1.3rem;
  padding-top: 15px;
  margin-bottom: 25px;
}
#blog_posts #primary #main_content h2, #blog_posts #primary #main_content h3 {
  margin-bottom: 30px;
}
#blog_posts #primary #main_content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
#blog_posts #primary #main_content time {
  display: block;
  margin: 0 auto 15px;
}
#blog_posts #primary #main_content .inner {
  max-width: 1000px;
  margin: 0 auto;
}
#blog_posts #primary #main_content img {
  margin-bottom: 30px;
}
#blog_posts .post-nav {
  display: flex;
  padding-top: 30px;
  margin-top: 80px;
  border-top: 1px solid #333;
  justify-content: space-between;
  align-items: center;
}
#blog_posts .post-nav .prev,
#blog_posts .post-nav .next {
  width: 48%;
}
#blog_posts .post-nav .prev a,
#blog_posts .post-nav .next a {
  display: block;
  position: relative;
  width: 100%;
  line-height: 1.2;
}
#blog_posts .post-nav .prev a:before,
#blog_posts .post-nav .next a:before {
  position: absolute;
  content: "←";
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 20px;
  transition: all 0.3s;
}
#blog_posts .post-nav .prev a {
  padding-left: 35px;
}
#blog_posts .post-nav .prev a:hover:before {
  left: -5px;
}
#blog_posts .post-nav .next a {
  padding-right: 35px;
}
#blog_posts .post-nav .next a:hover:before {
  right: -5px;
}
#blog_posts .post-nav .next a:before {
  content: "→";
  left: auto;
  right: 0;
}

#thank_you {
  position: relative;
}
#thank_you h1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 25%);
  font-size: 16vw;
  width: 100%;
  text-align: center;
  z-index: 2;
}
#thank_you .hero {
  min-height: calc(100vh - 300px);
  background: url("/wp-content/uploads/2026/01/Home-Renovation-Cost-in-NYC-What-Homeowners-Should-Realistically-Expect.avif") center;
  background-size: cover;
}
#thank_you .read_blogs .wrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-content: space-between;
  gap: 0;
}
#thank_you .read_blogs .wrapper > div {
  width: 100%;
}

.gallery_template .projects-filter {
  margin-bottom: 5vh;
}
.gallery_template .projects-filter .item {
  font-size: 1.6rem;
}
.gallery_template .projects-filter .items {
  gap: 50px;
}

@media (min-width: 1360px) and (max-width: 1500px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 1300px;
  }
}
@media (max-width: 1700px) {
  h1 {
    font-size: 3.2rem;
  }
  .how_it_works_static.grid_4 h4 {
    font-size: 1.2rem;
  }
}
@media (max-width: 1500px) {
  html {
    font-size: 18px;
  }
  .awards img {
    height: 70px;
  }
  /* Our services */
  .text_intro {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .project-cta {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 1360px) {
  html {
    font-size: 17px;
  }
  p.smaller {
    font-size: 0.8rem;
  }
  .hero .hero_content {
    max-width: 70%;
  }
  .how_it_works_static.grid_4 h4 {
    font-size: 1.4rem;
  }
  .how_it_works_static.grid_4 .items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 16px;
  }
  h1 {
    font-size: 3.3rem;
  }
  h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
  }
  h4 {
    font-size: 1.2rem;
  }
  .section_padding {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .project-cta {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .my_btn, .get-quote-form .gform_footer .gform_button,
  .get-quote-form .gform_footer button,
  .get-quote-form .gform_footer input[type=submit] {
    --btn-circle-size: 1.7em;
    --btn-shift: -3px;
    cursor: pointer;
  }
  .my_btn:hover, .get-quote-form .gform_footer .gform_button:hover,
  .get-quote-form .gform_footer button:hover,
  .get-quote-form .gform_footer input[type=submit]:hover {
    --btn-shift: 4px;
  }
  .gform_wrapper form .ginput_container {
    margin-bottom: 8px;
  }
  .gform_wrapper form .ginput_container select {
    padding-top: 0;
  }
  .gform_wrapper form .gfield--type-checkbox label,
  .gform_wrapper form .gfield--type-choice label {
    font-size: 10px;
  }
  #navbar .container {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
  .text_block {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .text_block p {
    margin-bottom: 45px;
  }
  .how_it_works .how_item {
    --info-height: 95px;
  }
  .how_it_works .info p {
    padding: 0;
    line-height: 1.4;
    font-size: 0.9rem;
  }
  .how_it_works_static .info {
    padding: 40px 20px;
  }
  .how_it_works_static .info p {
    font-size: 0.9rem;
  }
  .team .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .site-footer .footer-awards {
    margin-top: 40px;
  }
  .awards {
    gap: 30px;
  }
  .awards img {
    height: 60px;
  }
  .stats .item {
    padding-bottom: 15px;
  }
  .stats .num {
    font-size: 2.8rem;
  }
  #faq .expand_item p {
    font-size: 14px;
  }
  #faq .expand_item .title .expand_btn:before {
    width: 18px;
  }
  #faq .expand_item .title .expand_btn:after {
    height: 18px;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .how_it_works .how_item:hover {
    --info-height: 200px;
  }
  .how_it_works .how_item:hover .info p {
    max-height: 120px;
    opacity: 1;
  }
}
@media (min-width: 992px) {
  #navbar .menu-item {
    padding-right: 25px;
  }
  #navbar .menu-item:last-of-type {
    padding-right: 0;
  }
  #navbar .nav-link {
    padding-left: 0px;
    padding-right: 0px;
  }
  #navbar #header-nav #menu-item-167 {
    display: none !important;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row !important;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 3.2rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  .running-line {
    font-size: 0.75rem;
  }
  .running-line .running-item {
    padding: 0 1rem;
  }
  .section_padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #navbar .my_btn, #navbar .get-quote-form .gform_footer .gform_button, .get-quote-form .gform_footer #navbar .gform_button,
  #navbar .get-quote-form .gform_footer button,
  .get-quote-form .gform_footer #navbar button,
  #navbar .get-quote-form .gform_footer input[type=submit],
  .get-quote-form .gform_footer #navbar input[type=submit] {
    font-size: 1rem;
    margin-right: 10px;
  }
  #navbar .container {
    max-width: 100%;
  }
  #navbar .hamburger {
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 20px;
  }
  #navbar .dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: 0.1em;
    border-top: 0.6em solid;
    border-right: 0.4em solid transparent;
    border-left: 0.4em solid transparent;
  }
  #navbar .container {
    max-width: 100%;
  }
  #navbar #menu-main-menu li .nav-link,
  #navbar #menu-mobile-menu li .nav-link {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #navbar #header-nav {
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh !important;
    transform: translate(-100%, 0);
    position: absolute;
    min-width: 300px;
    max-width: 100%;
    padding-top: 150px;
    z-index: -1;
    background: rgb(34, 34, 34);
    transition: all 0.3s;
  }
  #navbar #header-nav.show {
    transform: translate(0, 0);
  }
  #navbar #header-nav {
    justify-content: start;
    align-items: flex-start;
  }
  #navbar #header-nav li {
    margin-bottom: 15px;
  }
  #navbar #header-nav #menu-main-menu,
  #navbar #header-nav #menu-mobile-menu {
    flex-direction: column;
  }
  #navbar #header-nav #menu-item-167 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 1.5px;
    padding: 12px 25px 11px 25px;
    border-radius: 3px;
    background-color: #474F56;
    color: #fff;
    width: fit-content;
    display: block;
    transition: 0.4s all;
    cursor: pointer;
    white-space: nowrap;
    margin-top: 15px;
  }
  #navbar #header-nav #menu-item-167 i {
    margin-left: 5px;
  }
  #navbar #header-nav #menu-item-167:hover {
    background: #EEEFF0;
    color: #000;
  }
  #navbar #header-nav #menu-item-167 a {
    padding: 5px;
  }
  #navbar .dropdown-menu {
    position: relative;
    border: none;
    background: transparent;
    padding-top: 15px;
  }
  #navbar .dropdown-menu li a {
    color: #fff;
    font-size: 16px;
  }
  #navbar .dropdown-menu li:last-of-type {
    margin-bottom: 0px;
  }
  .container,
  .container-md {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container-md {
    max-width: 100%;
  }
  .hero .container {
    max-width: 100%;
  }
  .img_side_scroll .container {
    max-width: 100%;
  }
  .comparison .label-default {
    width: 100%;
  }
  .how_it_works .items {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }
  .how_it_works .how_item {
    position: static;
    display: flex;
    flex-direction: column;
  }
  .how_it_works .image {
    height: 220px;
    aspect-ratio: auto;
    padding-bottom: 0;
  }
  .how_it_works .info {
    position: static;
    height: auto;
    padding: 25px 20px;
  }
  .how_it_works .info p {
    max-height: none;
    opacity: 1;
  }
  .awards {
    gap: 25px;
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .awards img {
    height: 40px;
  }
  /* Our services */
  .text_intro {
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 100%;
  }
  .get-quote-form .gform_fields {
    display: block;
  }
  .site-footer .footer-logo .logo img {
    width: 100%;
  }
  .site-footer .footer-awards img {
    height: 40px;
  }
  /* Our Projects */
  .projects-filter .item {
    font-size: 1.8rem;
  }
  #gallery_page .projects-filter {
    margin-bottom: 50px;
  }
  #gallery_page .projects-filter .item {
    font-size: 1.2rem;
  }
  .journey {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .how_it_works_static .items {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 30px;
  }
  .how_it_works_static .image {
    aspect-ratio: 4/3;
  }
  .our_renos .our-renos-text {
    margin: 0 auto 40px;
  }
  .team .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 60px;
  }
  .team .team-card .team-card-media {
    margin-bottom: 25px;
  }
  .team .team-card h4 {
    margin-bottom: 10px;
  }
  .team .team-card p {
    margin-bottom: 20px;
  }
  .team .team-popup-slider .slick-list {
    overflow: hidden;
  }
  .team .team-popup-slider .slick-slide {
    opacity: 1;
    transform: none;
  }
  .team .team-popup-slider .slick-slide.is-prev,
  .team .team-popup-slider .slick-slide.is-next {
    transform: none;
  }
  #blog_posts #primary {
    padding-top: 15vw;
  }
  #blog_posts #primary #main_content {
    padding-bottom: 50px;
  }
  #blog_posts #primary #main_content h1 {
    font-size: 2.2rem;
  }
  #blog_posts #primary #main_content h4 {
    margin-bottom: 20px;
  }
  #blog_posts #primary #main_content h5 {
    margin-bottom: 20px;
  }
  #blog_posts #primary #main_content h2, #blog_posts #primary #main_content h3 {
    margin-bottom: 25px;
  }
  #blog_posts .post-nav {
    padding-top: 20px;
    margin-top: 60px;
  }
  #contact_us .small_header {
    aspect-ratio: 3/4;
    margin-top: 30px;
  }
  #thank_you h1 {
    font-size: 18vw;
  }
}
@media (max-width: 576px) {
  html,
  body {
    width: 100vw;
    overflow-x: hidden;
  }
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 2.6rem;
  }
  h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  h4 {
    font-size: 1.4rem;
  }
  h6 {
    margin-bottom: 10px;
  }
  .team .team-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .team .team-popup {
    padding: 60px 20px 40px;
  }
  .team .team-popup-arrow {
    bottom: 20px;
    transform: none;
  }
  .team .team-popup-arrow.is-prev {
    left: 20px;
  }
  .team .team-popup-arrow.is-next {
    right: 20px;
  }
  .my_btn, .get-quote-form .gform_footer .gform_button,
  .get-quote-form .gform_footer button,
  .get-quote-form .gform_footer input[type=submit] {
    font-size: 1.2rem;
  }
  .service_list li {
    width: 100%;
  }
  /* navbar */
  #navbar {
    padding-top: 15px;
  }
  #navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  #navbar .header-logo {
    max-width: 110px;
  }
  #navbar #header-nav {
    width: 100%;
    max-height: 100dvh;
    overflow-y: scroll;
    padding-top: 130px;
  }
  #navbar #header-nav #menu-main-menu li .nav-link,
  #navbar #header-nav #menu-mobile-menu li .nav-link {
    font-size: 1.4rem;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  #navbar #header-nav #menu-main-menu li .nav-link#menu-item-167,
  #navbar #header-nav #menu-mobile-menu li .nav-link#menu-item-167 {
    font-size: 12px;
    padding: 5px;
  }
  #navbar #header-nav li {
    margin-bottom: 22px;
  }
  #navbar .hamburger-box {
    width: 30px;
  }
  #navbar .hamburger-box .hamburger-inner,
  #navbar .hamburger-box .hamburger-inner:after,
  #navbar .hamburger-box .hamburger-inner:before {
    width: 30px;
  }
  #navbar.scrolled .header-logo {
    max-height: 45px;
  }
  .container {
    max-width: 100%;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.6) 100%);
  }
  .hero .hero_content {
    max-width: 100%;
    padding-bottom: 20px;
    gap: 10px;
  }
  .img_side_scroll .container {
    min-width: 250vw;
  }
  .section_padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .text_block {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .comparison {
    padding-top: 20px;
  }
  .comparison .item {
    aspect-ratio: 16/10;
  }
  .comparison .label-default {
    line-height: 1.8;
    padding-right: 20px;
  }
  .comparison .label-default .my_btn, .comparison .label-default .get-quote-form .gform_footer .gform_button, .get-quote-form .gform_footer .comparison .label-default .gform_button,
  .comparison .label-default .get-quote-form .gform_footer button,
  .get-quote-form .gform_footer .comparison .label-default button,
  .comparison .label-default .get-quote-form .gform_footer input[type=submit],
  .get-quote-form .gform_footer .comparison .label-default input[type=submit] {
    padding-left: 20px;
  }
  .comparison .comparison-slider {
    margin-bottom: 30px;
  }
  .comparison .comparison-pair {
    flex-direction: column;
    gap: 10px;
  }
  .comparison .comparison-label {
    flex: 0 0 calc(50% - 2.5px);
    border-width: 1px;
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .how_it_works .image {
    height: auto;
    aspect-ratio: 4/3;
  }
  .how_it_works .info p {
    font-size: 1rem;
  }
  .how_it_works_static.is-slider .container-md,
  .how_it_works_static.is-slider .container {
    padding-right: 0 !important;
  }
  .how_it_works_static.is-slider .items {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-right: 0;
    margin-right: 0;
  }
  .how_it_works_static.is-slider .how_item {
    flex: 0 0 85%;
  }
  .how_it_works_static.is-slider .how-it-works-next {
    display: none;
  }
  .how_it_works_static.is-slider .slick-list {
    margin: 0;
  }
  .how_it_works_static.grid_4 .image {
    aspect-ratio: 16/9;
  }
  .how_it_works_static.grid_4 .items {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .google_reviews h2 {
    padding: 0 20px;
  }
  .google_reviews .ti-header-content {
    justify-content: center;
    text-align: center;
  }
  .google_reviews .ti-widget[data-layout-id="14"][data-set-id=dark-background] .ti-col-1 .ti-review-item {
    max-width: 90%;
    margin-left: 6%;
    margin-right: 4%;
  }
  .awards {
    flex-wrap: wrap;
  }
  .awards img {
    height: 45px;
  }
  .awards .award-item {
    flex: 1 1 calc(50% - 5px);
  }
  .awards .award-1 {
    order: 1;
  }
  .awards .award-3 {
    order: 2;
  }
  .awards .award-2 {
    order: 3;
    flex-basis: 100%;
  }
  .gform_wrapper form .ginput_container {
    margin-bottom: 20px;
  }
  .gform_wrapper form .gfield--type-checkbox label,
  .gform_wrapper form .gfield--type-choice label {
    font-size: 8px;
  }
  /* Our services */
  .text_intro {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .services-featured_img {
    aspect-ratio: 4/3;
  }
  .site-footer .footer-contact {
    row-gap: 30px;
  }
  /* Our Projects */
  .projects-filter {
    margin-top: 4vh;
    margin-bottom: 6vh;
  }
  .projects-filter .items {
    gap: 20px;
  }
  .projects-filter .item {
    font-size: 1.4rem;
  }
  #our_project .my_btn, #our_project .get-quote-form .gform_footer .gform_button, .get-quote-form .gform_footer #our_project .gform_button,
  #our_project .get-quote-form .gform_footer button,
  .get-quote-form .gform_footer #our_project button,
  #our_project .get-quote-form .gform_footer input[type=submit],
  .get-quote-form .gform_footer #our_project input[type=submit] {
    width: 100%;
  }
  #project_details .story .content {
    padding: 70px 0;
    text-align: center;
  }
  #gallery_page .projects-filter {
    margin-bottom: 25px;
  }
  #gallery_page .projects-filter .items {
    gap: 30px;
  }
  #gallery_page .projects-filter .container-md {
    padding: 0;
  }
  #gallery_page #mobileFilter {
    color: #000;
    border: 1px solid #000;
  }
  #gallery_page #mobileFilter {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
  }
  #blog_posts .img_bg {
    margin-bottom: 15px;
  }
  #blog_posts h3 {
    margin-bottom: 20px;
  }
  #blog_posts .category {
    margin-bottom: 15px;
  }
  #blog_posts .date {
    margin-bottom: 30px;
  }
  #gallery_page .grid-sizer,
  #gallery_page .grid-item {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .comparison .comparison-label {
    flex: 0 0 100%;
  }
  .awards {
    flex-direction: column;
  }
  .awards .award-item {
    flex: 1 1 100%;
  }
}
@media (max-width: 375px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2rem;
  }
  #navbar .header-logo {
    max-height: 45px;
  }
  #navbar .my_btn, #navbar .get-quote-form .gform_footer .gform_button, .get-quote-form .gform_footer #navbar .gform_button,
  #navbar .get-quote-form .gform_footer button,
  .get-quote-form .gform_footer #navbar button,
  #navbar .get-quote-form .gform_footer input[type=submit],
  .get-quote-form .gform_footer #navbar input[type=submit] {
    font-size: 1rem;
    margin-right: 5px;
  }
}