@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/bebas-neue.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Material Icons';
  src: url('../fonts/material-icons.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Icofont;
  src: url('../../fonts/icofont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0c0c0c;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

:root {
  --primary: #1a94ff;
  --secondary: #5170fa;
  --heading: #0c0c0c;
  --paragraph: #707070;
  --black: #06234e;
  --white: #ffffff;
  --tertiary: #f7f7fa;
  --border: #e0e0e0;
  --shadow: rgba(0,0,0,.1);
  --secondary-heading: #ffffff;
  --secondary-paragraph: #f0f0f0;
  --transparent: rgba(255,255,255,0);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-icon: 'Material Icons', sans-serif;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 20px;
  --radius-xl: 40px;
  --radius-pill: 1000px;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--heading);
}
h1 { font-size: 72px; }
h2 { font-size: 54px; }
h3 { font-size: 36px; }
h4 { font-size: 30px; }
h5 { font-size: 24px; }
h6 { font-size: 20px; }
p { color: var(--paragraph); line-height: 1.7; }

.hidden { display: none !important; }

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.container._1240px { max-width: 1240px; }
.container.padding-10px { padding-left: 10px; padding-right: 10px; }

.page-wrapper { overflow: clip; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  position: relative;
  overflow: hidden;
  transition: color .35s, background-color .5s cubic-bezier(.25,.46,.45,.94);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--secondary); }

.btn-white {
  background: var(--white);
  color: var(--heading);
  box-shadow: 0 10px 25px 0 var(--shadow);
}
.btn-white:hover { background: var(--primary); color: var(--white); }

.btn-outline {
  border: 1px solid var(--secondary);
  background: transparent;
  color: var(--secondary);
}
.btn-outline:hover { background: var(--secondary); color: var(--white); }

.btn .btn-text-wrap {
  display: flex;
  flex-direction: column;
  height: 28px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.btn .btn-text-wrap .btn-default,
.btn .btn-text-wrap .btn-hover {
  display: block;
  line-height: 28px;
  white-space: nowrap;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.btn .btn-text-wrap .btn-hover { color: var(--heading); }
.btn-primary .btn-text-wrap .btn-hover { color: var(--white); }
.btn:hover .btn-text-wrap .btn-default { transform: translateY(-100%); }
.btn:hover .btn-text-wrap .btn-hover { transform: translateY(-100%); }

.text-link {
  color: var(--heading);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .35s;
  position: relative;
  overflow: hidden;
}
.text-link:hover { color: var(--primary); }
.text-link .link-mask {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
}
.text-link .link-border {
  background: var(--heading);
  height: 2px;
  width: 100%;
  border-radius: 2px;
}
.text-link .link-border-secondary {
  background: var(--primary);
  height: 2px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  inset: 0;
}

.progress-bar {
  z-index: 100;
  height: 3px;
  position: fixed;
  top: 0; left: 0; right: 0;
  overflow: hidden;
  pointer-events: none;
}
.progress-bar-line {
  background: var(--primary);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 0%;
  height: 100%;
  transition: width .1s linear;
}

.header-section { height: 100px; }

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
  margin-bottom: -30px;
}

.site-logo-wrapper { display: block; }
.site-logo {
  width: 200px;
  margin-top: -80px;
}

.header-info-block {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 60px;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-contact-item img { max-width: 45px; }

._14px-primary-700 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}
._14px-text {
  font-size: 14px;
  line-height: 24px;
  color: var(--paragraph);
}
._14px-text a { color: var(--paragraph); }
._14px-text.break { word-break: break-all; }

.header-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.navbar-rounded {
  z-index: 101;
  width: 99%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 20px;
}

.navbar-main {
  width: 100%;
  background: var(--white);
  border-radius: 100px;
  box-shadow: 0 0 45px 0 var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 50px;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  transition: transform .3s;
}
.hamburger-menu:hover { transform: scale(.96); }
.hamburger-upper-line,
.hamburger-middle-line,
.hamburger-bottom-line {
  background: #020202;
  width: 25px;
  height: 3px;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 760px;
}

.hamburger-logo { display: none; }

.nav-left {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  max-height: 28px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  transition: color .3s;
}
.nav-link:hover { color: var(--secondary); }
.nav-link.active { color: var(--secondary); }
.nav-link .default-text,
.nav-link .hover-text { display: block; }

.nav-link-underline {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  overflow: hidden;
}
.nav-border {
  background: var(--secondary);
  height: 2px;
  width: 100%;
  border-radius: 2px;
  transform: translateX(-100%);
  transition: transform .3s;
}
.nav-item:hover .nav-border,
.nav-item.active .nav-border { transform: translateX(0); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color .3s;
}
.nav-dropdown-toggle:hover { color: var(--secondary); }
.nav-dropdown-toggle a { color: inherit; }
.nav-dropdown-icon {
  font-family: var(--font-icon);
  font-size: 20px;
  line-height: 1;
  transition: transform .3s;
}
.nav-dropdown.open .nav-dropdown-icon { transform: rotate(180deg); }

.nav-dropdown-contents {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  display: none;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-contents { display: block; }

.nav-dropdown-body {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  min-width: 280px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  overflow: hidden;
}

.nav-dropdown-links-block { padding: 40px; }

.dropdown-links-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.submenu-block {
  display: flex;
  flex-direction: column;
  color: var(--heading);
  padding: 8px 0;
  overflow: hidden;
}
.submenu-block:hover { color: var(--secondary); }

.submenu-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  transform: translateX(-20px);
  transition: transform .3s cubic-bezier(.25,.46,.45,.94), color .35s;
  white-space: nowrap;
}
.submenu-block:hover .submenu-link { transform: translateX(0); }

.hover-divider {
  background: var(--secondary);
  width: 20px;
  height: 1px;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 40px;
}

.header-info-block-tab {
  display: none;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.header-info-tab-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
._35px-icon-wrapper {
  background: var(--primary);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.image-18px { max-width: 18px; }

.close-navbar-icon {
  display: none;
  position: absolute;
  top: 20px; right: 20px;
  cursor: pointer;
}
.close-icon-rotate {
  font-family: var(--font-icon);
  font-size: 25px;
  line-height: 25px;
  color: #e41e1e;
  border-radius: 50%;
  padding: 6px;
  transition: color .42s, background-color .4s, transform .5s;
}
.close-icon-rotate:hover {
  color: #fff;
  background: #da000b;
  transform: rotate(180deg);
}

.hero-section {
  background-image: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url('../../images/DSC01593-1.jpg');
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -35px;
  padding-top: 140px;
  display: block;
  position: relative;
  overflow: clip;
  min-height: 100vh;
}

.container.home {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

._2-column-block-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 57vw;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 60%;
  margin-bottom: 165px;
}

.hero-title {
  color: var(--white);
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 0;
}
.hero-title .text-span { color: var(--primary); }

.hero-paragraph {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.video-wrap {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}
.video-wrap .video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.27%;
}
.video-wrap .video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.absolute-hover-white {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  pointer-events: none;
}

.why-choose-us-section { margin-bottom: 60px; }

._3-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
  place-items: center;
}

.features-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 45px 0 var(--shadow);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  height: 350px;
  width: 100%;
}
.features-card.featured {
  background: var(--primary);
  transform: translateY(-20px);
}
.features-card.featured * { color: var(--white) !important; }

._60px-icon-wrapper {
  background: var(--primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
._60px-icon-wrapper.white { background: var(--white); }
._60px-icon-wrapper img { max-width: 35px; }
._60px-icon-wrapper img.invert { filter: invert(); }

.mt-10px { margin-top: 10px; }
.mb-10px { margin-bottom: 10px; }
.mb-20px { margin-bottom: 20px; }
.mb-30px { margin-bottom: 30px; }
.margin-bottom-40px { margin-bottom: 40px; }

._24px-700-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin: 0;
}
._24px-700-text.white-text { color: var(--white); }

.secondary-paragraph { color: var(--secondary-paragraph); }

.section-with-padding {
  padding-top: 130px;
  padding-bottom: 130px;
  position: relative;
}
.section-with-padding.black-bg {
  background: var(--black);
  margin-top: 120px;
  margin-bottom: 120px;
}

._2-column-block {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
}

.image-wrapper {
  width: 50%;
  flex-shrink: 0;
}
.contents { width: 100%; }

.square-image-1-3 {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
._10px-rounded-mask { border-radius: var(--radius); }

.title {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.title.vertical { flex-direction: column; gap: 5px; }

.title-divider {
  background: var(--border);
  width: 50px;
  height: 2px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.primary-title-divider-loop {
  background: var(--secondary);
  width: 40%;
  height: 100%;
  border-radius: var(--radius-lg);
  animation: divider-slide 1.5s infinite alternate ease-in-out;
}
@keyframes divider-slide {
  from { transform: translateX(0); }
  to { transform: translateX(150%); }
}

.title-divider.black { background: rgba(255,255,255,.2); }
.primary-title-divider-loop.white { background: var(--white); }

.heading {
  max-width: 800px;
  margin: 0;
}

.instructor-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
}
.image-50px { max-width: 50px; object-fit: contain; }

._16px-text-600-uppercase {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 28px;
  margin: 0;
}
._14px-text-2 { color: #4e4e4e; font-size: 14px; font-weight: 500; line-height: 20px; }

.background-style {
  z-index: -2;
  background: var(--secondary);
  border-top-right-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
  width: 40%;
  position: absolute;
  inset: 0 auto 0 0;
}

.section-with-margin {
  margin-top: 100px;
  margin-bottom: 100px;
}
.section-with-margin.dark-section {
  background: var(--black);
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 0;
  margin-bottom: 0;
}

._2-column-grid-100px-gap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  width: 100%;
}

.contents-full {
  width: 100%;
}

.padding-left-45px-vertical { padding-left: 45px; }

.white-heading {
  max-width: 800px;
  color: var(--white);
  margin: 0;
}
.secondary-pargraph { color: var(--secondary-paragraph); }

.mt-60px-mb-120px {
  margin-top: 60px;
  margin-bottom: 120px;
}

.mask {
  position: relative;
  overflow: hidden;
}

.landscape-image {
  width: 100%;
  object-fit: cover;
}

.image-wrapper-between {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 45%;
  flex-shrink: 0;
}
.width-portrait {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.portrait-image-2-full {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
}

.mt-100px { width: 100%; margin-top: 100px; }

._4-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.counter-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 42px;
  position: relative;
}

.animated-counter {
  color: rgba(255,255,255,.1);
  font-size: 150px;
  font-weight: 800;
  line-height: 150px;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.counter-number-wrapper {
  height: 150px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 1.5s cubic-bezier(.25,.46,.45,.94);
}
.counter-number-wrapper-reverse {
  height: 150px;
  display: flex;
  flex-direction: column;
  transform: translateY(-1000%);
  overflow: hidden;
  transition: transform 1.5s cubic-bezier(.25,.46,.45,.94);
}
.counter-number-text { line-height: 150px; margin: 0; }
.counter-title {
  color: var(--white);
  font-size: 24px;
  line-height: 30px;
  margin: 0;
  position: relative;
  z-index: 2;
}

section { padding-top: 80px; padding-bottom: 80px; }
section:first-of-type { padding-top: 0; }

.title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  margin-bottom: 55px;
  margin-left: auto;
  margin-right: auto;
}

.title-merge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.title-merge.white-color { justify-content: space-between; }

.title-text { margin: 0; font-size: 48px; }
.title-text.white { color: var(--white); }

.creative-text-block {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.animated-title-wrapper {
  max-height: 60px;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.highlight-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
}
.highlight-title-2 {
  color: var(--primary);
  margin: 0;
  font-size: 48px;
  line-height: 60px;
}

.title-animation {
  max-height: 60px;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.title-animation.white { color: var(--white); }

.flex-block {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  z-index: 2;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
  position: relative;
}

.service-thumbnail-wrapper {
  border-radius: var(--radius);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-image-300px {
  aspect-ratio: 3/2;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.black-overlay-circle {
  backdrop-filter: blur(2px);
  background: rgba(0,0,0,.3);
  border-radius: 50%;
  width: 600px;
  height: 600px;
  position: absolute;
  opacity: 0;
  transition: opacity .4s;
}
.service-thumbnail-wrapper:hover .black-overlay-circle { opacity: 1; }

.service-card-body-negative {
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px 0 var(--shadow);
  width: 94%;
  height: 300px;
  margin-top: -70px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}

._24px-title-link {
  z-index: 2;
  color: var(--heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
  transition: color .3s;
}
._24px-title-link:hover { color: var(--primary); }

.service-snippet {
  max-height: 56px;
  overflow: hidden;
}
.service-paragraph { margin: 0; font-size: 15px; }

.section-with-padding.black-bg + section,
#gallery {
  position: relative;
}

.space-between-block-vertical-from-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.vertical-left-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.white-color { color: var(--white); }
.white-heading-450px-width {
  max-width: 450px;
  color: var(--white);
  letter-spacing: 1px;
  margin: 0;
}
.text-span-2 { color: var(--primary); }
.text-span-3 { color: #5170fa; }

.slider-wrapper {
  width: 100%;
  margin-top: 60px;
  position: relative;
}
.slider-track-container {
  overflow: hidden;
  width: 100%;
}
.slider-track {
  display: flex;
  gap: 30px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.projects-slide {
  flex: 0 0 calc(40% - 15px);
  min-width: 0;
}
.projects-slide-card {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lightbox-link-bg {
  border-radius: var(--radius);
  background-color: var(--tertiary);
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  cursor: zoom-in;
  padding: 0;
  border: none;
  position: relative;
}
.lightbox-link-bg::after {
  content: 'zoom_in';
  font-family: var(--font-icon);
  font-size: 32px;
  color: var(--white);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,35,78,0.45);
  opacity: 0;
  transition: opacity .25s;
}
.lightbox-link-bg:hover::after { opacity: 1; }
.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.lightbox-link-bg:hover .lightbox-image { transform: scale(1.04); }
.projects-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.projects-slide .slide-img-full { width: 100%; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-full-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-icon);
  font-size: 32px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-icon);
  font-size: 36px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 2;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.navigation-arrow {
  background: var(--white);
  width: 45px;
  height: 45px;
  font-family: var(--font-icon);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  position: absolute;
  top: -70px;
  transition: color .3s, background-color .4s;
  cursor: pointer;
  right: 0;
  user-select: none;
}
.navigation-arrow:hover { background: var(--primary); color: var(--white); }
.navigation-arrow.left-arrow { right: 50px; }

.flex-block-3 {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.plumber-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  margin-top: 80px;
  position: relative;
}

.plumber-image-wrapper {
  z-index: 1;
  width: 100%;
  padding: 0 20px;
  position: absolute;
  top: -60px;
}
.plumber-image-border {
  border-radius: var(--radius-lg);
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.aboutimage.recruit {
  width: 100%;
  object-fit: cover;
  position: relative;
}

.socials-links-wrapper {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 50%;
  transition: background-color .3s, border-color .4s;
  overflow: hidden;
}
.social-links:hover { background: var(--secondary); border-color: transparent; }
.social-image-filter-white { filter: brightness(0%) invert(); max-width: 20px; }

.plumber-image-hover-color {
  background: rgba(0,0,0,.5);
  border-radius: 50%;
  width: 700px;
  height: 700px;
  display: block;
  position: absolute;
  inset: -17% 0 0 -54%;
  opacity: 0;
  transition: opacity .4s;
}
.plumber-card:hover .plumber-image-hover-color { opacity: 1; }

.plumber-card-body {
  background: #f2f1ed;
  border-radius: var(--radius-lg);
  min-height: 510px;
  padding: 0 20px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.plumber-hover-color {
  background: var(--paragraph);
  border-radius: 50%;
  width: 800px;
  height: 800px;
  position: absolute;
  inset: -25% 0 0 -50%;
  opacity: 0;
  transition: opacity .5s;
}
.plumber-card:hover .plumber-hover-color { opacity: 1; }

.flex-block-4 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
  position: relative;
}

.testimonial-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
  max-height: 860px;
  margin-top: 60px;
  position: relative;
  overflow: clip;
}

.testimonials-vertical-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  animation: scroll-up 20s linear infinite;
}
.testimonials-vertical-wrapper:nth-child(2) {
  animation-delay: -6.67s;
}
.testimonials-vertical-wrapper:nth-child(3) {
  animation-delay: -13.33s;
}

@keyframes scroll-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.testimonials-vertical-wrapper.hide-in-tablet { }
.testimonials-vertical-wrapper.hide-in-portrait { }

.testimonial-white-30px-padding {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 45px 0 var(--shadow);
  padding: 20px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  overflow: hidden;
}

.testimonial-contents-5px-gap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.space-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.image-40px { max-width: 40px; }

.testimonial-star-wrapper {
  display: flex;
  align-items: center;
}
._16px-star-icon {
  font-family: var(--font-icon);
  color: var(--primary);
  font-size: 16px;
  line-height: 1;
}

.mt-155px-mb-25px { margin-top: 15px; margin-bottom: 25px; }

.horizontal-left-center-15px-gap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-image-wrapper {
  background: #f5f5f5;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-client-image { height: 100%; width: 100%; object-fit: cover; }

._20px-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
._14px-text { font-size: 14px; color: var(--paragraph); }

.clip-overlay-top {
  background: linear-gradient(180deg, var(--black), rgba(2,2,2,0));
  width: 100%;
  height: 40%;
  position: absolute;
  inset: 0 0 auto;
  pointer-events: none;
  z-index: 2;
}
.clip-overlay-bottom {
  background: linear-gradient(0deg, var(--black), rgba(0,0,0,0));
  width: 100%;
  height: 40%;
  position: absolute;
  inset: auto 0 0;
  pointer-events: none;
  z-index: 2;
}

.footer { margin-top: 60px; position: relative; }

.main-footer { background: var(--tertiary); }

.footer-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 120px;
  max-width: 400px;
}
.footer-block.first-block {
  gap: 30px;
  max-width: 250px;
  width: 100%;
}

.footer-title {
  color: var(--heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.footer-paragraph { color: var(--paragraph); }

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--paragraph);
  font-weight: 500;
  margin-left: -12px;
  transition: margin-left .3s cubic-bezier(.215,.61,.355,1), color .3s;
  overflow: hidden;
}
.footer-links:hover { color: var(--secondary); margin-left: 0; }

.title-divider-20px {
  background: var(--secondary);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-copyright {
  color: var(--paragraph);
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  flex: 1;
}

.white-heading { color: var(--white); max-width: 800px; margin: 0; }
.white-heading .text-span-2 { color: var(--primary); }
.white-heading .text-span-3 { color: var(--secondary); }

.hide-in-mobile { }

._20px-title a { color: inherit; }

@media screen and (max-width: 991px) {
  h1 { font-size: 54px; }
  h2 { font-size: 44px; }

  .container._1240px { margin-top: 70px; }
  .container.home { flex-direction: column; }

  .section-with-padding { padding-top: 80px; padding-bottom: 80px; }
  .section-with-padding.black-bg { margin-top: 80px; margin-bottom: 80px; }

  .header-info-block { display: none; }
  .header { justify-content: center; }

  .hamburger-menu { display: flex; }
  .nav-buttons .btn.hide-in-mobile { display: none; }

  .nav-menu {
    position: fixed;
    top: 0; left: 0;
    z-index: 1001;
    background: #f7f7f7;
    max-width: 480px;
    max-height: 100vh;
    padding: 40px 20px;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(-100%);
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  }
  .nav-menu.open { transform: translateX(0); }

  .hamburger-logo { display: block; margin-bottom: 40px; }
  .hamburger-logo img { width: 80px; }

  .nav-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav-item { width: 100%; text-align: left; }
  .nav-link { align-items: flex-start; max-height: none; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-contents { position: static; display: block; padding-top: 10px; }
  .nav-dropdown-body { box-shadow: none; border: none; border-radius: 0; }
  .nav-dropdown-links-block { padding: 10px 0; }
  .nav-dropdown-icon { display: none; }

  .header-info-block-tab { display: flex; }
  .close-navbar-icon { display: block; }

  .hero-section { min-height: 115vh; }
  ._2-column-block-bottom { flex-direction: column; width: 100%; }
  .banner-content { width: 100%; margin-bottom: 0; }
  .hero-title { font-size: 60px; text-align: left; }

  ._3-column-grid { grid-template-columns: 1fr 1fr; }
  ._4-column-grid { grid-template-columns: 1fr 1fr; }
  ._2-column-block { flex-direction: column; }
  .image-wrapper, .contents { width: 100%; }
  .site-logo { margin-top: -70px; }
  .background-style { width: 60%; max-height: 45%; }

  ._2-column-grid-100px-gap {
    grid-template-columns: 1fr;
    gap: 60px;
    flex-direction: column-reverse;
    display: flex;
  }
  .padding-left-45px-vertical { padding-left: 0; }

  .projects-slide { flex: 0 0 calc(60% - 15px); }
  .projects-slide-card { height: 400px; }

  .flex-block { flex-direction: column; align-items: center; }
  .service-card { width: 100%; max-width: 440px; }
  .plumber-card { max-width: 100%; }

  .features-card { height: auto; }
  .features-card.featured { transform: none; }

  .footer-wrapper { flex-wrap: wrap; padding-top: 40px; padding-bottom: 40px; }
  .footer-block { padding-top: 40px; padding-bottom: 40px; max-width: 150px; }
  .footer-block.first-block { border-bottom: 1px solid var(--border); max-width: 100%; width: 100%; }

  .testimonials-vertical-wrapper.hide-in-tablet { display: none; }

  .why-choose-us-section { margin-bottom: 60px; }

  .navbar-main { padding-left: 25px; }
  .nav-buttons { margin-left: 0; }

  .image-wrapper-between { width: 100%; }
}

@media screen and (max-width: 767px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 30px; }
  h4 { font-size: 26px; }
  h5 { font-size: 22px; }

  .section-with-padding { padding-top: 80px; padding-bottom: 80px; }
  .section-with-margin { margin-top: 60px; margin-bottom: 60px; }

  .hero-title { font-size: 49px; line-height: 1.3; }

  ._3-column-grid { grid-template-columns: 1fr; }
  ._4-column-grid._2-col-in-mobile { grid-template-columns: 1fr; }

  .title-text, .highlight-title { font-size: 36px; line-height: 50px; }
  .title-animation { max-height: 50px; }
  .animated-title-wrapper { font-size: 36px; }
  .highlight-title-2 { font-size: 36px; line-height: 50px; }

  .space-between-block-vertical-from-mobile {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 100px;
  }

  .counter-title { font-size: 16px; line-height: 22px; }
  .animated-counter { font-size: 100px; line-height: 100px; }
  .counter-number-wrapper, .counter-number-wrapper-reverse { height: 100px; }
  .counter-number-text { line-height: 100px; }

  .projects-slide { flex: 0 0 100%; }

  .footer-wrapper { flex-direction: column; padding-top: 0; padding-bottom: 0; }
  .footer-copyright { font-size: 14px; }
  .footer-block { flex-direction: column; }
  .footer-block.full-block { border-top: 1px solid var(--border); max-width: none; }
  .footer-container { flex-direction: column; align-items: center; gap: 10px; }

  .testimonials-vertical-wrapper.hide-in-portrait { display: none; }

  .background-style { max-height: 50%; }

  ._2-column-grid-100px-gap {
    gap: 30px;
    place-items: center;
  }

  .image-wrapper-between { gap: 30px; }

  .navbar-main { padding: 10px 15px; border-radius: 60px; }
  .nav-menu { max-width: 100%; }

  .btn { padding: 12px 24px; font-size: 16px; }
}

@media screen and (max-width: 479px) {
  .header-section { height: 80px; }
  .site-logo { width: 140px; margin-top: -55px; }
  .navbar-rounded { top: 10px; }

  ._2-column-block-bottom { gap: 20px; }
  .banner-content { margin-bottom: 0; }

  .footer-block { max-width: 100%; width: 100%; }

  .projects-slide-card { height: 260px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 26px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

.banner {
  background: var(--black);
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,148,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.breadcrumb-container { position: relative; }
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
._6px-circle {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.breadcrumb-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb-link:hover { color: var(--primary); }
.breadcrumb-icon {
  font-family: var(--font-icon);
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  line-height: 1;
  vertical-align: middle;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
.breadcrumb-current {
  font-size: 14px;
  color: var(--white);
}
.banner-title-block { margin-top: 10px; }
.page-title {
  font-family: var(--font-heading);
  font-size: 70px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 1px;
}

.section-60px { padding: 60px 0; }
.section-with-margin { padding: 60px 0; }
.section-with-margin.recruiting { background: var(--tertiary); }
.max-width-1200px { max-width: 1200px; }
.margin-top-20px { margin-top: 20px; }
.mt-10px { margin-top: 10px; }
.mt-10px-mb-20px { margin-top: 10px; margin-bottom: 20px; }
.mb-20px { margin-bottom: 20px; }
.mb-30px { margin-bottom: 30px; }

.rich-text-block {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--paragraph);
}
.rich-text-block h2,
.rich-text-block h3,
.rich-text-block h4 {
  font-family: var(--font-heading);
  color: var(--heading);
  margin: 28px 0 10px;
  letter-spacing: .5px;
}
.rich-text-block h2 { font-size: 42px; }
.rich-text-block h3 { font-size: 32px; }
.rich-text-block h4 { font-size: 22px; }
.rich-text-block p { margin: 0 0 16px; }
.rich-text-block a { color: var(--primary); text-decoration: underline; }
.rich-text-block ul,
.rich-text-block ol { padding-left: 20px; margin: 0 0 16px; }
.rich-text-block li { margin-bottom: 6px; }
.rich-text-block strong { font-weight: 700; color: var(--heading); }

.profile-block {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  background: var(--black);
  border-radius: var(--radius);
  padding: 50px;
  margin-bottom: 40px;
}
.bottom-image-wrapper {
  flex: 0 0 340px;
  max-width: 340px;
}
.profile-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.profile-block .contents { flex: 1; }
._36px-title-white {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 1px;
}
.profile-block ._18px-bold-text { margin-top: 8px; }
.profile-block .secondary-paragraph { color: rgba(255,255,255,0.7); }

._2-column-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.image-460px-landscape {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.contact-image-background {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80%;
  height: 80%;
  background: var(--primary);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.15;
}
.image-wrapper { position: relative; }
.contact-cards-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card-short {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 30px;
  box-shadow: 0 4px 20px 0 var(--shadow);
}
.contact-card-short.featured {
  background: var(--primary);
}
.contact-card-short.last {
  border-bottom: 3px solid var(--primary);
}
.contact-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-circle.featured { background: rgba(255,255,255,0.2); }
.image-25px { width: 25px; height: 25px; object-fit: contain; }
.vertical-left-top-5px { display: flex; flex-direction: column; gap: 4px; }
._20px-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--heading);
  letter-spacing: .5px;
}
._18px-paragraph { font-size: 16px; color: var(--paragraph); line-height: 1.5; }
._18px-paragraph a { color: var(--primary); text-decoration: none; }
._18px-paragraph a:hover { text-decoration: underline; }
._20px-700-text-white {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
  letter-spacing: .5px;
}
._18px-secondary-paragraph { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.5; }
._18px-secondary-paragraph a { color: var(--white); text-decoration: underline; }

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: 0 10px 45px 0 var(--shadow);
  margin-top: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.input-field {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--heading);
  background: var(--tertiary);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,148,255,0.12);
}
.input-field::placeholder { color: #aaa; }
.input-field.name    { grid-column: 1; }
.input-field.email   { grid-column: 2; }
.input-field.address { grid-column: 1; }
.input-field.phone   { grid-column: 2; }
.input-field.service { grid-column: 1 / -1; }
.input-field.message { grid-column: 1 / -1; min-height: 160px; resize: vertical; }
.input-field.full-width { grid-column: 1 / -1; min-height: 160px; resize: vertical; }
.form-submit { margin-top: 10px; }
.success-message,
.error-message-dark {
  margin-top: 20px;
  padding: 16px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
}
.success-message { background: #e8f7ee; color: #1a7a3a; border: 1px solid #b2dfc0; }
.error-message-dark { background: #fdecea; color: #c62828; border: 1px solid #f5b4b4; }
.hidden { display: none; }

.project-main-image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.project-details-block {}
.client-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.project-hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
._20px-rounded-mask { border-radius: 20px; overflow: hidden; }
.service-video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.project-container {}
.service-image-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-image-stack img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.two-image-row {
  display: flex;
  gap: 16px;
}
.two-image-row img {
  flex: 1;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media screen and (max-width: 991px) {
  .page-title { font-size: 52px; }
  .banner { padding: 60px 0 40px; }

  ._2-column-block { grid-template-columns: 1fr; gap: 30px; }
  .image-460px-landscape { height: 300px; }

  .profile-block { flex-direction: column; gap: 30px; padding: 30px; }
  .bottom-image-wrapper { flex: none; max-width: 100%; }
  .profile-image { height: 300px; }

  .project-main-image-wrapper { grid-template-columns: 1fr; gap: 30px; }
  .service-detail-row { grid-template-columns: 1fr; gap: 30px; }
  .project-hero-image { height: 320px; }
  .service-video { height: 320px; }

  .two-image-row img { height: 260px; }

  .form-grid { grid-template-columns: 1fr; }
  .input-field.name,
  .input-field.email,
  .input-field.address,
  .input-field.phone { grid-column: 1; }

  .quote-form { padding: 30px; }
}

@media screen and (max-width: 767px) {
  .page-title { font-size: 40px; }
  .banner { padding: 50px 0 30px; }

  .profile-block { padding: 24px; }
  ._36px-title-white { font-size: 36px; }

  .project-hero-image, .service-video { height: 240px; }
  .two-image-row { flex-direction: column; }
  .two-image-row img { height: 220px; }

  .service-image-stack img { height: 200px; }
}

@media screen and (max-width: 479px) {
  .page-title { font-size: 32px; }
  .quote-form { padding: 20px; }
  .contact-card-short { padding: 16px 18px; }
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
