@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fefcf8;
  --_typography---generalsans: Generalsans, Arial, sans-serif;
  --grey: #3a4140;
  --_typography---text: 16px;
  --_typography---height-body: 1.3;
  --_typography---regular: 400;
  --black: #081010;
  --_typography---heading-1: 64px;
  --_typography---height-heading: 1.1;
  --_typography---heading-2: 56px;
  --_typography---heading-3: 48px;
  --_typography---heading-4: 40px;
  --_typography---heading-5: 32px;
  --_typography---heading-6: 24px;
  --light-grey: #bbb9b5;
  --_spacing---4-rem: 4rem;
  --_spacing---2-rem: 2rem;
  --_spacing---1-5-rem: 1.5rem;
  --_spacing---1-rem: 1rem;
  --waves-library--black: #131313;
  --_spacing---6-rem: 6rem;
  --_spacing---8-rem: 8rem;
  --subtle-grey: #f5f3f0;
  --_typography---medium: 500;
  --_spacing---0-5-rem: .5rem;
  --waves-library--dark-elevation: #ede0d8;
  --_color---black: #111317;
  --_spacing---12-rem: 12rem;
  --_spacing---10-rem: 10rem;
  --_color---light-grey: #bbb9b5;
  --_color---accent: #1f453f;
  --_typography---subtitle: 18px;
  --_color---white: #fefcf8;
  --_color---subtle-accent: #c6f0dc;
  --_spacing---0-75-rem: .75rem;
  --_color---grey: #2a2d31;
  --_color---subtle-grey: #f5f3f0;
  --_color---light-accent: #39736a;
  --_spacing---0-25-rem: .25rem;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--white);
  font-family: var(--_typography---generalsans);
  color: var(--grey);
  font-size: var(--_typography---text);
  line-height: var(--_typography---height-body);
  font-weight: var(--_typography---regular);
}

h1 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-1);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-2);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
  margin-top: 0;
  margin-bottom: 0;
}

h3 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-3);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
  margin-top: 0;
  margin-bottom: 0;
}

h4 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-4);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
  margin-top: 0;
  margin-bottom: 0;
}

h5 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-5);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
  margin-top: 0;
  margin-bottom: 0;
}

h6 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-6);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
  margin-top: 0;
  margin-bottom: 0;
}

p {
  font-family: var(--_typography---generalsans);
  color: var(--grey);
  font-size: var(--_typography---text);
  line-height: var(--_typography---height-body);
  font-weight: var(--_typography---regular);
  margin-bottom: 0;
}

a {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---text);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
  text-decoration: underline;
  transition: all .3s;
}

a:hover {
  color: var(--light-grey);
}

img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

.container {
  padding-right: var(--_spacing---4-rem);
  padding-left: var(--_spacing---4-rem);
  width: 100%;
  max-width: 1800px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container.navbar-container {
  padding-left: 0;
  padding-right: 0;
}

.container.cta-section {
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-wrapper {
  z-index: 1000;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  place-items: center;
  padding-left: 4rem;
  padding-right: 4rem;
  display: grid;
  position: relative;
}

.button-text:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  font-size: 16px;
}

.nav-link {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---text);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
  padding: 0;
  text-decoration: none;
  transition: all .3s;
}

.nav-link:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  color: var(--white);
}

.nav-link:hover {
  color: var(--light-grey);
}

.nav-link.w--current {
  color: #a6e00a;
}

.nav-link.w--current:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  color: #fff;
}

.nav-link.contact:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  display: none;
}

.navbar-brand-image {
  filter: brightness(0%);
  width: 100%;
}

.navbar-brand-image:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  filter: none;
}

.navbar-brand {
  justify-content: flex-start;
  align-items: center;
  width: 128px;
  padding: 1rem 1rem 1rem 0;
}

.navbar-brand:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  width: 100px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.navbar-cta {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: flex-end;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
}

.button {
  color: var(--white);
  font-size: 18px;
  line-height: var(--_typography---height-body);
  text-align: center;
  background-color: #fe9f07;
  border: 1px solid #fff;
  justify-content: flex-start;
  align-items: flex-end;
  padding: .75rem 2rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
}

.button:where(.w-variant-9e8fd3dd-f1d6-43fe-0ae3-371c321e6319) {
  color: var(--black);
  background-color: #0000;
  border: 1px solid #000;
}

.button:where(.w-variant-977e61c4-1cd3-f1c2-83f2-8e248766dab1) {
  color: var(--white);
  background-color: #fe9f07;
  border: 1px solid #fff;
}

.button:where(.w-variant-93a9c9e2-182a-7d8d-edb1-7806911ed5a2) {
  border: 1px solid var(--white);
  color: #fefcf8;
  background-color: #6bcdff;
}

.button:hover {
  background-color: var(--grey);
}

.button:hover:where(.w-variant-9e8fd3dd-f1d6-43fe-0ae3-371c321e6319) {
  background-color: var(--black);
  color: var(--white);
}

.button:hover:where(.w-variant-977e61c4-1cd3-f1c2-83f2-8e248766dab1) {
  background-color: var(--grey);
  color: var(--white);
}

.button:hover:where(.w-variant-93a9c9e2-182a-7d8d-edb1-7806911ed5a2) {
  background-color: var(--white);
  color: var(--black);
}

.button.secondary {
  border: 1px solid var(--black);
  color: var(--black);
  background-color: #0000;
}

.button.secondary:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  color: #fff;
  background-color: #fe9f07;
  font-weight: 400;
}

.button.secondary:hover {
  background-color: var(--black);
  color: var(--white);
}

.button.secondary.hero {
  color: var(--white);
  background-color: #fe9f07;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}

.navbar {
  background-color: var(--white);
  border-bottom: 1px solid #bbb9b5;
}

.navbar:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  background-color: #0000;
  position: absolute;
  inset: 0% 0% auto;
}

.nav-menu {
  background-color: #0000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.button-text-wrapper {
  flex-flow: column;
  height: 1.5rem;
  overflow: hidden;
}

.nav-menu-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  display: flex;
}

.section {
  padding-top: var(--_spacing---6-rem);
  padding-bottom: var(--_spacing---6-rem);
  overflow: clip;
}

.section.page-header {
  border-bottom: 1px solid var(--light-grey);
}

.section.page-header.tc {
  padding-top: 100px;
}

.section.style-guide {
  border-bottom: 1px solid var(--light-grey);
  border-bottom: 1px solid #bbb9b5;
}

.section.footer {
  background-color: #08100d;
  background-image: linear-gradient(#0810104d, #08100d 55%);
  padding-top: 8rem;
  padding-bottom: 0;
}

.section.footer:where(.w-variant-ac8d9122-fcbc-e39b-1f93-95b9bf3392e3) {
  background-image: linear-gradient(#0810104d, #08100d 55%);
  background-position: 0 0;
  background-size: auto;
}

.section.hero {
  padding-top: var(--_spacing---8-rem);
  background-image: url('../images/Untitled-design---2026-03-04T100517.816.png');
  background-position: 50% 100%;
  background-size: cover;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 100vh;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.section.hero.subpage {
  background-image: linear-gradient(#00000094, #fff0);
  min-height: 60vh;
  padding-top: 10rem;
}

.section.hero.subpage.welcome {
  background-color: #0000;
  background-image: linear-gradient(#000, #fefcf9);
  min-height: 20vh;
}

.section.accent {
  background-color: var(--subtle-grey);
}

.section.accent.bg-img {
  background-image: url('../images/WhatsApp-Image-2026-02-18-at-12.31.50.jpeg');
  background-position: 0 0;
  background-size: auto;
}

.section.accent.img {
  background-image: url('../images/Untitled-design---2026-03-06T111949.416.png');
}

.section.cta {
  background-color: var(--black);
  background-image: linear-gradient(#0f1b2299, #0f1b2299), url('../images/WhatsApp-Image-2026-02-18-at-12.31.14-1.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 100vh;
}

.section.img {
  background-image: url('../images/WhatsApp-Image-2026-02-18-at-12.31.50.jpeg');
  background-position: 50% 0;
  background-size: cover;
}

.page-header-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-header-wrapper.licenses {
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
}

.style-guide-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.style-guide-content.button-style {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
}

.style-guide-content.color-style {
  grid-column-gap: var(--_spacing---1-rem);
  grid-row-gap: var(--_spacing---1-rem);
  flex-flow: row;
  width: 100%;
}

.style-guide-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 160px 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.style-guide-title {
  position: sticky;
  top: 4rem;
}

.subtitle {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---text);
  line-height: var(--_typography---height-body);
  font-weight: var(--_typography---regular);
  text-transform: uppercase;
}

.subtitle.white {
  color: var(--white);
}

.text {
  font-family: var(--_typography---generalsans);
  color: var(--grey);
  font-size: var(--_typography---text);
  line-height: var(--_typography---height-body);
  font-weight: var(--_typography---regular);
}

.text.white {
  color: var(--white);
}

.text.hero-text {
  color: var(--white);
  font-weight: var(--_typography---medium);
  max-width: 450px;
}

.text.properties-text {
  max-width: 600px;
}

.text.properties-text.disclaimer {
  font-size: 14px;
  font-weight: var(--_typography---medium);
}

.text.process-subheading {
  font-size: 18px;
  font-weight: 500;
}

.heading-1 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-1);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
}

.heading-1.hero-heading {
  font-weight: var(--_typography---medium);
  max-width: 510px;
}

.heading-1.cta-heading {
  color: var(--white);
  max-width: 44rem;
}

.heading-2 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-2);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
}

.heading-2.service-heading {
  max-width: 54rem;
}

.heading-2.hero-heading {
  font-weight: var(--_typography---medium);
  max-width: 420px;
}

.heading-2.hero-heading.subpage {
  color: var(--white);
  font-size: 42px;
}

.heading-3 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-3);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
}

.heading-3.white {
  color: var(--white);
  text-shadow: 1px 1px 1px #000;
}

.heading-4 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-4);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
}

.heading-4.about-heading {
  max-width: 58rem;
}

.heading-5 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-5);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
}

.heading-5.white {
  color: var(--white);
}

.heading-6 {
  font-family: var(--_typography---generalsans);
  color: var(--black);
  font-size: var(--_typography---heading-6);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
}

.heading-6.white {
  color: var(--white);
}

.heading-6.areas {
  font-size: 20px;
  font-weight: 400;
}

.color-block {
  aspect-ratio: 16 / 9;
  border-radius: .25rem;
  width: 100%;
}

.color-block.grey {
  background-color: #3a413e;
  background-color: var(--grey);
}

.color-block.subtle-grey {
  background-color: #f5f2ef;
}

.color-block.white {
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  background-color: #fffdfa;
  border: .5px solid #bbb9b5;
}

.color-block.black {
  background-color: #08100d;
}

.color-block.light-grey {
  background-color: #bbb9b5;
}

.link {
  font-family: var(--_typography---generalsans);
  color: #fff;
  font-size: var(--_typography---text);
  line-height: var(--_typography---height-heading);
  font-weight: var(--_typography---regular);
  text-decoration: underline;
}

.link:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.link.whitte {
  color: var(--white);
}

.link.whitte:hover {
  color: var(--light-grey);
}

.footer-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 2rem;
  display: flex;
}

.footer-inner-three {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 30rem;
  display: flex;
}

.footer-inner-three:where(.w-variant-ac8d9122-fcbc-e39b-1f93-95b9bf3392e3) {
  display: none;
}

.footer-link {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.cta-footer-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: wrap;
  display: flex;
}

.footer-inner-one {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.footer-link-list {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.footer-brand-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.footer-link-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: space-between;
  display: flex;
}

.footer-text {
  text-align: right;
}

.footer-link-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.footer-inner-two {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-top: 1px solid var(--light-grey);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 2rem;
  display: grid;
}

.footer-brand {
  width: 10rem;
}

.vertical-headline {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.vertical-headline.center {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.vertical-headline.testimonial-headline {
  max-width: 30rem;
}

.vertical-headline.faq {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.vertical-headline.contact-headline {
  max-width: 24rem;
}

.vertical-headline.subpage {
  text-align: left;
  align-items: flex-start;
}

.button-wrapper {
  grid-column-gap: var(--_spacing---1-rem);
  grid-row-gap: var(--_spacing---1-rem);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-wrapper._2 {
  margin-top: 10px;
}

.hero-background {
  z-index: -1;
  object-fit: cover;
  position: absolute;
  inset: 0%;
}

.vertical-wrapper {
  grid-column-gap: var(--_spacing---6-rem);
  grid-row-gap: var(--_spacing---6-rem);
  flex-flow: column;
  display: flex;
}

.about-headline {
  grid-column-gap: var(--_spacing---6-rem);
  grid-row-gap: var(--_spacing---6-rem);
  grid-template-rows: auto;
  grid-template-columns: .3fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.about-image {
  aspect-ratio: 21 / 9;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: clip;
  box-shadow: 2px 2px 2px #0000006e;
}

.parallax-image {
  filter: saturate(120%) brightness(131%);
  object-fit: cover;
  height: 120%;
}

.properties-wrapper {
  grid-column-gap: var(--_spacing---1-rem);
  grid-row-gap: var(--_spacing---1-rem);
  flex-flow: column;
  display: flex;
}

.properties-list {
  grid-column-gap: var(--_spacing---1-rem);
  grid-row-gap: var(--_spacing---1-rem);
  grid-template-rows: auto;
  grid-template-columns: 1fr .8fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.properties-list.two {
  grid-template-columns: .8fr 1fr;
}

.property-wrapper {
  padding: var(--_spacing---1-rem);
  background-color: var(--black);
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 32rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: clip;
  box-shadow: 2px 2px 2px #00000080;
}

.property-label {
  z-index: 1;
  padding: var(--_spacing---1-rem);
  grid-column-gap: var(--_spacing---0-5-rem);
  grid-row-gap: var(--_spacing---0-5-rem);
  border-radius: var(--_spacing---0-5-rem);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #00000029;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: clip;
}

.absolute-image {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

.absolute-image.parallax {
  filter: brightness(131%);
  object-fit: cover;
  height: 120%;
  inset: auto 0% 0%;
}

.service-headline {
  grid-column-gap: var(--_spacing---6-rem);
  grid-row-gap: var(--_spacing---6-rem);
  grid-template-rows: auto;
  grid-template-columns: .3fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.service-wrapper {
  grid-column-gap: var(--_spacing---1-rem);
  grid-row-gap: var(--_spacing---1-rem);
  flex-flow: column;
  display: flex;
}

.service-link {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-bottom: 1px solid var(--light-grey);
  background-image: url('../images/WhatsApp-Image-2026-02-18-at-12.31.50.jpeg');
  background-position: 50% 10%;
  background-size: cover;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 2px 5px #00000047;
}

.service-link:hover {
  border-bottom-color: var(--subtle-grey);
  background-color: var(--subtle-grey);
  color: #08100d;
  padding-left: 1rem;
  padding-right: 1rem;
}

.service-info {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.service-image {
  border-radius: .5rem;
  width: 0;
}

.service-title {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.service-title.service-b {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.arrow-icon {
  width: 2rem;
  height: 2rem;
}

.testimonial-section-wrapper {
  grid-column-gap: var(--_spacing---6-rem);
  grid-row-gap: var(--_spacing---6-rem);
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.testimonial-wrapper {
  grid-column-gap: var(--_spacing---1-rem);
  grid-row-gap: var(--_spacing---1-rem);
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
  overflow: clip;
}

.testimonial-inner {
  padding-bottom: var(--_spacing---1-rem);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr .8fr;
  grid-auto-columns: 1fr;
  min-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.testimonial-inner.absolute {
  position: absolute;
  top: 100%;
}

.testimonial-item {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  background-color: var(--white);
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.testimonial-profile {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.testimonial-name {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.testimonial-list {
  flex-flow: column;
  max-height: 100%;
  display: flex;
  position: relative;
}

.faq-wrapper {
  grid-column-gap: var(--_spacing---1-rem);
  grid-row-gap: var(--_spacing---1-rem);
  flex-flow: column;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-dropdown {
  background-color: var(--subtle-grey);
  width: 100%;
  transition: all .3s;
  overflow: clip;
}

.faq-dropdown:active {
  background-color: #faf1e1;
}

.question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
  display: flex;
}

.faq-icon {
  width: 40px;
}

.answer {
  background-color: #0000;
  display: block;
  position: relative;
  overflow: hidden;
}

.answer-wrapper {
  padding: 1.5rem 2rem;
}

.contact-wrapper {
  grid-column-gap: var(--_spacing---6-rem);
  grid-row-gap: var(--_spacing---6-rem);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-inner {
  grid-column-gap: var(--_spacing---6-rem);
  grid-row-gap: var(--_spacing---6-rem);
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.contact-info {
  padding: var(--_spacing---2-rem);
  grid-column-gap: var(--_spacing---2-rem);
  grid-row-gap: var(--_spacing---2-rem);
  border: 1px solid var(--light-grey);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-info.two {
  z-index: 1;
  background-color: var(--white);
  border-style: none;
  display: block;
  position: relative;
}

.form {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.form.align-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.text-field {
  border: 1px solid var(--light-grey);
  background-color: var(--subtle-grey);
  color: var(--grey);
  height: 100%;
  margin-bottom: 0;
  padding: 1.5rem 2rem;
  transition: all .3s;
}

.text-field:hover {
  background-color: var(--white);
}

.text-field:active, .text-field:focus {
  color: var(--grey);
}

.text-field::placeholder {
  color: var(--light-grey);
}

.text-field.text-area {
  min-height: 15rem;
}

.contact-form-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--white);
  flex-flow: column;
  padding: 2rem;
  font-weight: 400;
  display: flex;
  box-shadow: 2px 2px 5px #00000047;
}

.form-block {
  margin-bottom: 0;
}

.form-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.location-wrapper {
  padding: var(--_spacing---2-rem);
  aspect-ratio: 3;
  object-fit: fill;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: clip;
}

.licenses-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.licenses-category {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--subtle-grey);
  flex-flow: column;
  padding: 2rem;
  display: flex;
}

.license-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.utility-page-wrap {
  background-image: url('../images/footer-1_1footer (1).avif');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  padding: var(--_spacing---4-rem);
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 32rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.utility-page-content._404 {
  grid-column-gap: var(--_spacing---2-rem);
  grid-row-gap: var(--_spacing---2-rem);
  justify-content: flex-start;
  align-items: center;
  max-width: 36rem;
}

.utility-page-form {
  grid-column-gap: var(--_spacing---2-rem);
  grid-row-gap: var(--_spacing---2-rem);
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.password-form {
  grid-column-gap: var(--_spacing---0-5-rem);
  grid-row-gap: var(--_spacing---0-5-rem);
  flex-flow: column;
  display: flex;
}

.awerness-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.single-awerness {
  max-width: 278px;
}

.awerness-title {
  margin-top: 30px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.awerness-description {
  margin-top: 15px;
}

.awerness-devider {
  background-color: #d1d5db;
  width: 1px;
}

.container-2 {
  width: 100%;
  max-width: 1250px;
  padding-left: 4rem;
  padding-right: 4rem;
}

.section-padding-large {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.section-padding-large.awerness-area {
  background-color: #f5f3f100;
}

.image {
  width: auto;
  height: 50px;
}

.image._2 {
  height: 75px;
}

.white-line {
  background-color: #fff;
  width: 2px;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.container-3 {
  z-index: 2;
  width: 90%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.container-3.small {
  max-width: 920px;
}

.container-3.small.flex {
  justify-content: flex-start;
  align-items: flex-start;
}

.process-image {
  background-image: linear-gradient(117deg, #000, #000 0%, #fff0 73%), url('../images/ChatGPT-Image-Feb-19-2026-02_09_22-PM.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
}

.step-4-info-wrapper {
  border: 2px solid #fff;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  padding: 24px;
  display: flex;
}

.paragraph-m {
  letter-spacing: -.4px;
  font-size: 20px;
}

.timeline-wrapper {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.step-1-number, .step-4-number {
  z-index: 2;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  width: 80%;
  position: relative;
  overflow: hidden;
}

.grey-line {
  background-color: #ffffff26;
  width: 2px;
  height: 82%;
  position: relative;
}

.step {
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.step-heading {
  color: #fff;
}

.step-5-info-wrapper, .step-3-info-wrapper {
  border: 2px solid #fff;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  padding: 24px;
  display: flex;
}

.center-div {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.process-wrapper {
  position: relative;
}

.step-1-info-wrapper {
  border: 2px solid #fff;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  padding: 24px;
  display: flex;
}

.step-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.step-wrapper.margin-l {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.step-2-info-wrapper {
  border: 2px solid #fff;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  padding: 24px;
  display: flex;
}

.heading-2-small {
  font-size: 56px;
  line-height: 64px;
}

.text-light-grey {
  color: #ffffffa6;
}

.step-info {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  margin-left: 24px;
  display: flex;
  position: static;
}

.step-3-number, .step-2-number {
  z-index: 2;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  width: 80%;
  position: relative;
  overflow: hidden;
}

.black-line {
  background-color: #0a0a0a;
  width: 2px;
  height: 72px;
  position: absolute;
  left: 19px;
  right: 20px;
}

.step-5-number {
  z-index: 2;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  width: 80%;
  position: relative;
  overflow: hidden;
}

.section-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section-2.black {
  background-color: #0a0a0a;
}

.hero-subscribe-left {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-4 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.hero-form {
  margin-bottom: 12px;
}

.hero-form-container {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.hero-form-input {
  color: #1a1b1f;
  border: 1px solid #d1d6db;
  width: 240px;
  height: auto;
  margin-bottom: 0;
  margin-right: 9px;
  padding: 5px 16px;
  font-size: 14px;
  line-height: 20px;
  transition: all .2s;
}

.hero-form-input:hover, .hero-form-input:focus {
  border-color: #76879d;
}

.hero-form-input::placeholder {
  color: #1a1b1fcc;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.hero-subscribe-right {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.hero-split-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.features-list {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-5 {
  width: 100%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 40%;
  display: flex;
  position: sticky;
}

.features-paragraph {
  margin-bottom: 24px;
}

.text-link-arrow-2 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-2 {
  margin-left: 2px;
  display: flex;
}

.features-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 55%;
  margin-bottom: -16px;
  display: flex;
}

.features-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.features-image {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-right: 16px;
}

.sticky-services-intro {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: flex;
  position: sticky;
  top: 118px;
}

.outline-button {
  color: #000;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid #889ea833;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 16px 32px;
  font-size: 9px;
  line-height: 1.35em;
  text-decoration: none;
  transition: background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  overflow: hidden;
}

.outline-button.green {
  color: #fff;
  background-color: #1a4e50;
  border-color: #eef0f6;
}

.medium-stacked-intro {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 450px;
  display: grid;
}

.left-line {
  background-color: #d7dfeb;
  width: 60px;
  height: 2px;
  display: flex;
}

.body-display {
  color: #626d86;
  font-size: 17px;
  line-height: 1.6em;
}

.line-fill {
  background-color: #a3acc2;
  width: 40%;
  height: 100%;
}

.full-stacked-intro {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.stacked-heading {
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.stacked-heading.about {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.services-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #ffffff7a;
  flex-flow: column;
  padding: 10px 20px;
  display: flex;
  box-shadow: 0 2px 5px #00000070;
}

.lynx-nav-info {
  background-color: #e4b9a3;
  border-bottom: 1px #dfdad2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px 20px;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.lynx-nav-info:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  background-color: #fff;
}

.lynx-nav-block {
  text-transform: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 94%;
  display: flex;
}

.lynx-nav-block:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  justify-content: flex-end;
  align-items: center;
}

.nav {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.nav:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
  color: #000;
  font-size: 14px;
}

.icon-row {
  justify-content: center;
  align-items: center;
  margin-top: 56px;
  display: flex;
}

.icon-row-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  align-items: center;
  margin-left: 28px;
  margin-right: 28px;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 5px #00000057;
}

.icon-row-image {
  flex: none;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.medium-text {
  color: #282f48;
  font-size: 18px;
  line-height: 28px;
}

.process-image-2 {
  background-image: url('../images/Process_step_background.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  display: flex;
}

.step-info-2 {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  margin-left: 24px;
  display: flex;
  position: static;
}

.text-block-6 {
  color: #6f0000;
  font-weight: 400;
}

.text-block-6.contact {
  color: #1b2a41;
  font-weight: 400;
}

.application-section {
  margin-top: -100px;
  padding-bottom: 100px;
}

.slider-description {
  max-width: 400px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-container {
  z-index: 99999;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  flex-flow: column;
  align-items: center;
  width: 50%;
  max-width: none;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 1px 14px 4px #0003;
}

.svg-2 {
  color: #1b2a41;
}

.combine-icon_large-5 {
  color: #000;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.form-holding-div {
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  padding-bottom: 10px;
  display: flex;
}

.contact-icon-div-3 {
  justify-content: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.icon-col-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-button-3 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #000;
  border: 1px solid #0000;
  border-radius: .5rem;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-flex;
}

.text-button-3:hover {
  grid-column-gap: .7em;
  grid-row-gap: .7em;
  color: #0e3a28;
}

.text-button-3.contact {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  font-weight: 400;
}

.slider-text-span {
  color: #1b2a41;
  font-weight: 700;
  display: block;
}

.contact-icon-columns-3 {
  width: 85%;
  padding-top: 0;
  padding-bottom: 0;
}

.button-icon {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  display: inline-flex;
}

.button-group-4 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: 0;
  font-weight: 400;
  display: flex;
}

.slider-text-title {
  font-weight: 400;
  line-height: 1.3;
}

.in-page-logo-2 {
  width: 100px;
  margin-bottom: 0;
}

.enquire-form {
  color: #00945d;
  flex-flow: column;
  padding: 10px;
  display: flex;
}

.html-embed {
  color: #000;
  text-align: left;
  border-radius: 12px;
  width: 100%;
  min-width: auto;
  max-width: none;
  margin: 0 auto;
  font-family: Generalsans, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.8;
}

.hero-mob {
  display: none;
}

.features-content {
  text-align: left;
  flex-direction: column;
  flex: 1;
  align-items: center;
  margin-left: 5px;
  margin-right: 5px;
  padding: 20px 10px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.features-content.blue {
  background-image: linear-gradient(45deg, #ccdcff, #78a0ff);
  border: 1px solid #1d007a;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.features-content.blue.second {
  background-color: #fff;
  background-image: none;
  border-color: #bdbdbd;
}

.features-icon {
  width: 32px;
  margin-bottom: 10px;
  margin-right: 0;
}

.features-icon.icon {
  width: 75px;
  height: auto;
  margin-bottom: 10px;
}

.features-title {
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 20px;
}

.paragraph-4 {
  text-align: center;
}

.paragraph-4._2 {
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.6;
}

.div-block {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.button-2 {
  color: #fff;
  letter-spacing: 1px;
  text-transform: none;
  background-color: #293772;
  border-radius: 5px;
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 400;
  transition: all .4s;
  box-shadow: 0 2px 5px #0000007d;
}

.button-2:hover {
  background-color: #027db6;
}

.button-2._2 {
  color: #293772;
  background-color: #fff;
  box-shadow: 0 2px 5px #0000007d;
}

.features-wrapper {
  width: 90%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.features-wrapper.secondary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.features-wrapper.secondary.x {
  margin-bottom: 100px;
}

.waves---section-medium {
  margin-top: 60px;
  padding-top: 0;
  padding-bottom: 0;
}

.waves-wrap-gallery-2 {
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.waves-grid-gallery-2 {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .7fr 1fr .7fr;
  width: 130vw;
  margin-bottom: 24px;
}

.waves-grid-gallery-2.top-grid {
  grid-template-columns: .7fr 1fr .7fr 1fr;
}

.waves-grid-gallery-2.bottom-grid {
  grid-template-columns: .7fr 1fr .7fr 1fr;
  margin-bottom: 0;
}

.waves-image-wrap-gallery-2 {
  border-radius: 8px;
  max-height: 400px;
  padding-top: 64%;
  position: relative;
  overflow: hidden;
}

.waves-image-gallery-2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.waves---mg-top-16 {
  margin-top: 16px;
}

.waves---cta-dark {
  background-color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark:hover {
  background-color: #131313e6;
}

.waves---main-container {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-2 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.waves---heading-2-no-margins {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves---heading-3-no-margins {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.waves---heading-3-no-margins._2 {
  font-size: 18px;
}

.waves-icon-32 {
  width: 50px;
  height: 50px;
}

.waves---mg-bottom-16 {
  margin-bottom: 0;
}

.waves---grid-halves-sticky {
  grid-column-gap: 40px;
  grid-template-rows: auto;
}

.waves---sticky-halves-left {
  position: relative;
}

.waves---master-tiles-features-2 {
  grid-row-gap: 24px;
  flex-direction: column;
  width: 100%;
  max-width: 545px;
  display: flex;
}

.waves---sticky-halves {
  position: sticky;
  top: 88px;
}

.waves-tile-features-2 {
  grid-row-gap: 16px;
  background-color: #fff;
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 40px;
  display: flex;
  box-shadow: 2px 2px 5px #00000054;
}

.waves-tile-features-2.mtt {
  filter: none;
  background-image: linear-gradient(45deg, #dd7631, #df8345 38%, #f0a26f 70%, #ffc096);
  border-radius: 0;
  padding: 1px;
}

.waves---content-sticky-features-2 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 420px;
  display: flex;
}

.waves---paragraph-big {
  font-size: 20px;
  line-height: 130%;
}

.features-title-2 {
  color: #17394c;
  text-align: center;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
}

.features-icon-2 {
  width: 60px;
  margin-bottom: 10px;
  margin-right: 0;
}

.features-icon-2._2 {
  width: 75px;
  height: 75px;
  margin-bottom: 5px;
}

.features-wrapper-2 {
  width: 90%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.features-wrapper-2._2.x {
  width: 100%;
  margin-top: 0;
}

.features-wrapper-2._2.x.px {
  margin-top: 40px;
  margin-bottom: 30px;
}

.features-content-2 {
  text-align: left;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.mtt {
  filter: brightness(105%);
  border-radius: 0;
}

.html-embed-2 {
  text-align: left;
  border-radius: 12px;
  width: 80%;
  min-width: auto;
  max-width: none;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
}

.tclink {
  color: #2400b6;
}

@media screen and (min-width: 1440px) {
  .container {
    padding-left: 6rem;
  }

  .section.hero {
    background-position: 50%;
  }

  .section.accent.img {
    background-image: url('../images/Untitled-design---2026-03-06T111949.416.png');
    background-position: 50%;
    background-size: cover;
  }

  .text.hero-text {
    max-width: 450px;
  }

  .link:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    color: var(--black);
  }

  .container-2 {
    max-width: 1600px;
  }

  .container-3.small.flex {
    max-width: 1000px;
  }

  .step-wrapper.margin-l {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: flex-start;
  }

  .container-4 {
    max-width: 1200px;
  }

  .features-right {
    max-width: 50%;
  }

  .medium-stacked-intro {
    max-width: 600px;
  }

  .lynx-nav-info {
    background-color: #e4b9a3;
    padding-left: 40px;
    padding-right: 40px;
    font-weight: 500;
  }

  .lynx-nav-info:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    color: var(--grey);
    background-color: #fff;
  }

  .lynx-nav-block {
    justify-content: space-between;
  }

  .lynx-nav-block:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    justify-content: flex-end;
  }

  .nav {
    font-size: 13px;
  }

  .nav:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    font-size: 16px;
  }

  .nav.no-mob {
    font-size: 14px;
  }

  .contact-container {
    width: 40%;
  }

  .slider-text-span {
    margin-bottom: 10px;
  }

  .html-embed {
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .features-content.blue {
    padding-bottom: 30px;
  }

  .features-icon.icon {
    width: 100px;
  }

  .features-title {
    font-size: 18px;
  }

  .paragraph-4 {
    font-size: 16px;
    line-height: 1.4;
  }

  .paragraph-4._2 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .button-2 {
    font-weight: 700;
  }

  .button-2._2 {
    font-size: 14px;
    font-weight: 700;
  }

  .waves-tile-features-2.mtt {
    background-color: #fff;
    background-image: none;
  }

  .features-title-2 {
    font-size: 16px;
  }

  .features-icon-2 {
    width: 75px;
  }

  .features-icon-2._2 {
    width: 100px;
    height: 100px;
  }

  .features-wrapper-2._2 {
    width: 100%;
  }

  .features-wrapper-2._2.x {
    width: 90%;
  }

  .features-content-2._2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .html-embed-2 {
    width: 90%;
    min-width: auto;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1920px) {
  .container-2 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 991px) {
  body {
    --_typography---generalsans: Generalsans, Arial, sans-serif;
    --_typography---text: 16px;
    --_typography---height-body: 1.3;
    --_typography---regular: 400;
    --_typography---heading-1: 56px;
    --_typography---height-heading: 1.1;
    --_typography---heading-2: 48px;
    --_typography---heading-3: 40px;
    --_typography---heading-4: 32px;
    --_typography---heading-5: 28px;
    --_typography---heading-6: 24px;
    --_typography---medium: 500;
    --_typography---subtitle: 18px;
  }

  .container {
    padding-right: var(--_spacing---2-rem);
    padding-left: var(--_spacing---2-rem);
    max-width: none;
  }

  .navbar-wrapper {
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
  }

  .nav-link:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    color: var(--waves-library--black);
  }

  .nav-link.w--current:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    color: #000;
  }

  .nav-link.contact:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    display: block;
  }

  .menu-button {
    background-color: var(--black);
    color: var(--white);
    padding: .5rem;
    transition: all .3s;
  }

  .menu-button:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    background-color: #ffa607;
  }

  .menu-button:hover, .menu-button:focus, .menu-button:focus-visible, .menu-button[data-wf-focus-visible] {
    color: #fffdfa;
    background-color: #3a413e;
  }

  .menu-button.w--open:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    background-color: #0c3d1f;
  }

  .navbar-cta {
    display: none;
  }

  .nav-menu {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    border-radius: .25rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: .25rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav-menu-list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    background-color: #fffdfa;
    border: 1px solid #bbb9b5;
    border-radius: .5rem;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 4rem 2rem;
    display: grid;
  }

  .nav-menu-list:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    flex-flow: column;
    display: flex;
  }

  .section {
    padding-top: var(--_spacing---8-rem);
    padding-bottom: var(--_spacing---8-rem);
  }

  .section.hero {
    background-image: url('../images/ChatGPT-Image-Mar-3-2026-11_51_59-AM.png');
    background-position: 50%;
    background-size: cover;
  }

  .style-guide-content.color-style {
    grid-column-gap: var(--_spacing---1-rem);
    grid-row-gap: var(--_spacing---1-rem);
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .style-guide-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .subtitle {
    text-align: center;
  }

  .text.hero-text {
    max-width: 450px;
  }

  .link:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    font-size: 12px;
  }

  .footer-inner-one {
    flex-flow: column;
    display: flex;
  }

  .vertical-headline.testimonial-headline, .vertical-headline.contact-headline {
    max-width: none;
  }

  .hero-background {
    object-position: 0% 50%;
  }

  .about-headline {
    grid-template-columns: auto 1fr;
  }

  .properties-list {
    flex-flow: column;
    display: flex;
  }

  .property-wrapper {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .service-headline {
    grid-template-columns: auto 1fr;
  }

  .service-image {
    display: none;
  }

  .testimonial-section-wrapper {
    flex-flow: column;
  }

  .testimonial-inner {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-item {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .question {
    z-index: 1;
  }

  .contact-wrapper {
    grid-column-gap: var(--_spacing---4-rem);
    grid-row-gap: var(--_spacing---4-rem);
    flex-flow: column;
    display: flex;
  }

  .contact-inner {
    grid-column-gap: var(--_spacing---4-rem);
    grid-row-gap: var(--_spacing---4-rem);
  }

  .location-wrapper {
    aspect-ratio: 16 / 9;
  }

  .utility-page-wrap {
    padding-right: var(--_spacing---2-rem);
    padding-left: var(--_spacing---2-rem);
  }

  .awerness-wrapper {
    flex-wrap: wrap;
  }

  .single-awerness {
    width: 43%;
    max-width: 100%;
  }

  .awerness-devider.awerness-divider-tab {
    display: none;
  }

  .section-padding-large {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .container-3 {
    width: 95%;
  }

  .container-3.small.flex {
    width: 100%;
    max-width: none;
  }

  .process-image {
    width: 200px;
    height: 200px;
  }

  .step-4-info-wrapper {
    align-items: flex-start;
  }

  .paragraph-m {
    font-size: 18px;
  }

  .timeline-wrapper {
    display: none;
  }

  .step-1-number, .step-4-number {
    width: 100%;
  }

  .step {
    min-width: 50px;
    padding-top: 0;
    padding-bottom: 0;
    position: static;
    inset: auto;
  }

  .step-5-info-wrapper, .step-3-info-wrapper {
    align-items: flex-start;
  }

  .step-1-info-wrapper {
    align-items: center;
    padding-left: 20px;
    padding-right: 0;
  }

  .step-wrapper.margin-l {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .step-2-info-wrapper {
    align-items: flex-start;
  }

  .heading-2-small {
    font-size: 56px;
    line-height: 64px;
  }

  .step-3-number, .step-2-number {
    width: 100%;
  }

  .black-line {
    display: none;
  }

  .step-5-number {
    width: 100%;
  }

  .section-2 {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .container-4 {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-wrapper.centre-mob {
    align-items: center;
  }

  .hero-split {
    text-align: center;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-split.centre-mob {
    align-items: center;
  }

  .hero-split-2 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .container-5 {
    max-width: 728px;
  }

  .features-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .features-left {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .features-paragraph {
    text-align: center;
  }

  .features-right {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .sticky-services-intro {
    position: relative;
    top: auto;
  }

  .medium-stacked-intro {
    max-width: none;
  }

  .stacked-heading.about {
    background-image: none;
    justify-items: center;
    padding-right: 20px;
  }

  .services-container {
    background-color: #ffffffa3;
  }

  .lynx-nav-info {
    display: flex;
  }

  .nav {
    font-size: 10px;
    line-height: 1;
  }

  .icon-row-item {
    margin-left: 14px;
    margin-right: 14px;
  }

  .slider-description {
    font-size: 14px;
  }

  .combine-icon_large-5 {
    margin-bottom: 10px;
  }

  .icon-col-2 {
    margin-bottom: 20px;
  }

  .contact-icon-columns-3 {
    flex-flow: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .html-embed {
    width: 90%;
    min-width: 90%;
    max-width: 90%;
  }

  .hero-mob {
    display: none;
  }

  .features-content {
    padding-right: 0;
  }

  .features-wrapper {
    flex-flow: column;
    margin-top: 0;
  }

  .features-wrapper.secondary {
    margin-top: 40px;
  }

  .waves---section-medium {
    padding-top: 0;
  }

  .waves-grid-gallery-2.top-grid {
    grid-column-gap: 10px;
    margin-bottom: 10px;
  }

  .waves-grid-gallery-2.bottom-grid {
    grid-column-gap: 10px;
  }

  .waves---grid-halves-sticky {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .waves---sticky-halves-left {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .waves---master-tiles-features-2 {
    margin-left: auto;
    margin-right: auto;
  }

  .waves---sticky-halves {
    flex-direction: column;
    align-items: center;
  }

  .waves---content-sticky-features-2 {
    text-align: center;
    align-items: center;
  }

  .features-wrapper-2._2.x.px {
    width: 90%;
  }

  .features-content-2 {
    padding-right: 0;
  }

  .heading-7 {
    text-align: center;
  }

  .html-embed-2 {
    width: 90%;
    min-width: 90%;
    max-width: 90%;
  }
}

@media screen and (max-width: 767px) {
  body {
    --_typography---generalsans: Generalsans, Arial, sans-serif;
    --_typography---text: 16px;
    --_typography---height-body: 1.3;
    --_typography---regular: 400;
    --_typography---heading-1: 48px;
    --_typography---height-heading: 1.1;
    --_typography---heading-2: 40px;
    --_typography---heading-3: 32px;
    --_typography---heading-4: 28px;
    --_typography---heading-5: 24px;
    --_typography---heading-6: 22px;
    --_typography---medium: 500;
    --_typography---subtitle: 16px;
  }

  .container {
    padding-right: var(--_spacing---1-5-rem);
    padding-left: var(--_spacing---1-5-rem);
  }

  .navbar-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .menu-button {
    padding: .5rem;
  }

  .navbar-brand {
    width: 96px;
  }

  .nav-menu, .nav-menu-list {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .nav-menu-list:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    flex-flow: column;
    display: flex;
  }

  .section {
    padding-top: var(--_spacing---6-rem);
    padding-bottom: var(--_spacing---6-rem);
  }

  .section.hero {
    background-position: 50%;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .style-guide-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .style-guide-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

  .style-guide-title {
    position: static;
  }

  .text.properties-text {
    text-align: center;
  }

  .footer-wrapper {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .cta-footer-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .footer-inner-one {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    padding-bottom: 4rem;
  }

  .footer-link-wrapper {
    flex-flow: wrap;
    justify-content: flex-start;
  }

  .footer-text {
    text-align: left;
  }

  .footer-inner-two {
    flex-flow: column;
    align-items: flex-start;
    display: flex;
  }

  .footer-brand {
    width: 8rem;
  }

  .hero-background {
    object-position: 30% 50%;
  }

  .vertical-wrapper {
    grid-column-gap: var(--_spacing---4-rem);
    grid-row-gap: var(--_spacing---4-rem);
  }

  .about-headline, .service-headline {
    grid-column-gap: var(--_spacing---2-rem);
    grid-row-gap: var(--_spacing---2-rem);
    flex-flow: column;
    display: flex;
  }

  .service-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .service-link:hover {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .arrow-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .testimonial-section-wrapper {
    grid-column-gap: var(--_spacing---4-rem);
    grid-row-gap: var(--_spacing---4-rem);
  }

  .testimonial-wrapper {
    flex-flow: column;
  }

  .testimonial-inner {
    flex-flow: column;
    padding-bottom: 0;
    display: flex;
  }

  .testimonial-inner.absolute {
    display: none;
  }

  .question {
    white-space: normal;
    padding: 1rem 1.5rem;
  }

  .answer-wrapper {
    padding: 1rem 1.5rem;
  }

  .contact-inner {
    grid-column-gap: var(--_spacing---4-rem);
    grid-row-gap: var(--_spacing---4-rem);
  }

  .contact-form-wrapper, .licenses-category {
    padding: 1.5rem;
  }

  .utility-page-wrap, .utility-page-content {
    padding-right: var(--_spacing---1-5-rem);
    padding-left: var(--_spacing---1-5-rem);
  }

  .awerness-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
  }

  .single-awerness {
    width: 44%;
  }

  .awerness-title {
    margin-top: 20px;
  }

  .awerness-description {
    margin-top: 12px;
  }

  .section-padding-large {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .process-image {
    background-image: url('../images/Process-Image-Background-Mobile.png');
    background-size: cover;
    width: auto;
    margin-bottom: 24px;
  }

  .step-4-info-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 16px;
  }

  .paragraph-m.text-white.margin-m {
    margin-bottom: 16px;
  }

  .step {
    display: none;
    left: 16px;
  }

  .step-heading.margin-xs {
    margin-bottom: 8px;
  }

  .step-5-info-wrapper, .step-3-info-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 16px;
  }

  .step-1-info-wrapper {
    flex-direction: column;
    padding: 16px;
  }

  .step-wrapper.margin-l {
    flex-flow: column;
    align-items: center;
    padding-top: 40px;
  }

  .step-2-info-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 16px;
  }

  .heading-2-small {
    font-size: 40px;
    line-height: 48px;
  }

  .step-info {
    align-items: center;
    margin-left: 0;
  }

  .section-2 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-subscribe-left, .hero-subscribe-right, .features-list {
    padding: 60px 15px;
  }

  .stacked-heading.about {
    justify-items: center;
    padding-right: 20px;
  }

  .icon-row {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    margin-top: 28px;
    display: flex;
  }

  .icon-row-item {
    margin-left: 0;
    margin-right: 0;
  }

  .icon-row-image {
    max-width: 100px;
  }

  .process-image-2 {
    background-image: url('../images/Process-Image-Background-Mobile.png');
    background-size: cover;
    width: 100%;
    margin-bottom: 24px;
  }

  .step-info-2 {
    margin-left: 0;
  }

  .application-section {
    padding-bottom: 90px;
  }

  .slider-description {
    text-align: center;
  }

  .contact-container {
    width: 80%;
  }

  .slider-text-title {
    text-align: center;
    max-width: none;
    font-size: 28px;
  }

  .html-embed {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .hero-mob {
    display: none;
  }

  .features-content {
    padding-bottom: 30px;
    padding-left: 0;
  }

  .features-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    margin-top: 20px;
  }

  .features-wrapper.secondary {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .waves---section-medium {
    padding-top: 0;
    padding-bottom: 0;
  }

  .waves---main-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---section-medium-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .waves---heading-2-no-margins {
    font-size: 44px;
    line-height: 125%;
  }

  .features-wrapper-2 {
    flex-direction: column;
    margin-top: 20px;
  }

  .features-wrapper-2._2.x.px {
    margin-top: 40px;
  }

  .features-content-2 {
    padding-bottom: 30px;
    padding-left: 0;
  }

  .html-embed-2 {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 479px) {
  body {
    --_typography---generalsans: Generalsans, Arial, sans-serif;
    --_typography---text: 16px;
    --_typography---height-body: 1.3;
    --_typography---regular: 400;
    --_typography---heading-1: 40px;
    --_typography---height-heading: 1.1;
    --_typography---heading-2: 36px;
    --_typography---heading-3: 32px;
    --_typography---heading-4: 28px;
    --_typography---heading-5: 24px;
    --_typography---heading-6: 22px;
    --_typography---medium: 500;
    --_typography---subtitle: 16px;
  }

  .container {
    padding-right: var(--_spacing---1-rem);
    padding-left: var(--_spacing---1-rem);
  }

  .navbar-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-cta {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .nav-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-menu-list {
    flex-flow: column;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
  }

  .nav-menu-list:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section {
    padding-top: var(--_spacing---6-rem);
  }

  .section.hero {
    background-image: url('../images/ChatGPT-Image-Mar-3-2026-11_51_59-AM.png');
    background-position: 50%;
    background-size: cover;
    align-items: flex-end;
    min-height: 100vh;
    padding-top: 10.8rem;
    padding-bottom: 2rem;
  }

  .section.hero.subpage {
    text-align: left;
    background-image: linear-gradient(#0006, #fff0), linear-gradient(#0000, #0000);
    min-height: 40vh;
  }

  .section.hero.subpage.welcome {
    padding-top: 2rem;
  }

  .section.cta {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .text.hero-text {
    text-align: center;
    font-size: 14px;
  }

  .text.properties-text._2 {
    text-align: center;
  }

  .text.process-subheading {
    text-align: center;
    font-size: 16px;
  }

  .heading-2.hero-heading {
    text-align: center;
    text-shadow: 1px 1px 1px #fff;
  }

  .heading-5._2 {
    text-align: center;
  }

  .heading-6.areas {
    font-size: 14px;
  }

  .link:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    font-size: 11px;
    text-decoration: none;
  }

  .footer-link {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
  }

  .footer-inner-two {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .vertical-headline {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    align-items: center;
  }

  .vertical-headline.faq {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-image {
    aspect-ratio: 16 / 9;
  }

  .property-wrapper {
    min-height: 24rem;
  }

  .service-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .service-title.service-b {
    padding-top: 0;
    padding-bottom: 0;
  }

  .testimonial-item {
    padding: 1rem;
  }

  .contact-inner {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .contact-info {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

  .form-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    display: flex;
  }

  .location-wrapper {
    aspect-ratio: 2 / 3;
    box-shadow: 0 2px 5px #0003;
  }

  .licenses-wrapper {
    flex-flow: column;
    display: flex;
  }

  .utility-page-wrap {
    padding-right: var(--_spacing---1-rem);
    padding-left: var(--_spacing---1-rem);
  }

  .awerness-wrapper {
    grid-row-gap: 35px;
  }

  .single-awerness {
    width: 100%;
  }

  .awerness-devider {
    display: none;
  }

  .container-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section-padding-large {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }

  .image {
    height: 40px;
  }

  .process-image {
    width: 200px;
  }

  .step-4-info-wrapper, .step-5-info-wrapper {
    background-color: #eee;
    box-shadow: 0 2px 5px #0003;
  }

  .step-3-info-wrapper {
    box-shadow: 0 2px 5px #0003;
  }

  .step-1-info-wrapper, .step-2-info-wrapper {
    background-color: #eee;
    box-shadow: 0 2px 5px #0003;
  }

  .heading-2-small {
    font-size: 36px;
    line-height: 44px;
  }

  .container-4 {
    width: 90%;
    max-width: none;
  }

  .hero-form {
    align-self: stretch;
    margin-bottom: 15px;
  }

  .hero-form-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-form-input {
    width: 100%;
    height: 48px;
    margin-bottom: 10px;
  }

  .container-5 {
    max-width: none;
  }

  .features-right {
    max-width: 90%;
    margin: 40px auto -30px;
  }

  .features-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .features-image {
    margin-bottom: 10px;
  }

  .medium-stacked-intro {
    grid-row-gap: 24px;
  }

  .stacked-heading.about {
    justify-items: center;
    padding-right: 20px;
  }

  .lynx-nav-info {
    padding-left: 5px;
    padding-right: 5px;
  }

  .lynx-nav-info:where(.w-variant-1ce4d590-53f1-67d0-c5ca-9f0fee4d62d8) {
    font-size: 16px;
    font-weight: 400;
  }

  .lynx-nav-block {
    justify-content: center;
  }

  .nav {
    text-align: center;
  }

  .nav.no-mob {
    display: none;
  }

  .icon-row {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    place-items: flex-start center;
  }

  .icon-row-item {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .icon-row-image {
    width: 50px;
    max-width: 50px;
  }

  .medium-text {
    font-size: 16px;
  }

  .application-section {
    margin-top: -140px;
    padding-bottom: 0;
  }

  .contact-container {
    z-index: 2;
    background-color: #ffffffdb;
    width: 90%;
    padding: 20px;
  }

  .form-holding-div {
    padding-bottom: 60px;
  }

  .text-button-3 {
    justify-content: center;
  }

  .contact-icon-columns-3 {
    flex-flow: row;
  }

  .button-group-4 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .slider-text-title {
    text-align: center;
  }

  .in-page-logo-2 {
    width: 75px;
  }

  .html-embed {
    min-width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-mob {
    width: 100px;
    display: block;
  }

  .features-content {
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .features-content.blue.second {
    padding: 10px 10px 20px;
  }

  .features-icon.icon {
    width: 100px;
  }

  .features-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
    margin-top: 20px;
  }

  .features-wrapper.secondary {
    width: 90%;
  }

  .waves---section-medium {
    padding-top: 0;
    padding-bottom: 0;
  }

  .waves-grid-gallery-2.top-grid {
    grid-column-gap: 5px;
    width: 180vw;
    margin-bottom: 5px;
  }

  .waves-grid-gallery-2.bottom-grid {
    grid-column-gap: 5px;
    width: 180vw;
  }

  .waves---section-medium-2 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .waves---heading-2-no-margins {
    font-size: 34px;
  }

  .waves---heading-3-no-margins {
    font-size: 22px;
  }

  .features-title-2 {
    margin-bottom: 5px;
  }

  .features-icon-2 {
    max-width: 30px;
    margin-bottom: 0;
  }

  .features-icon-2._2 {
    width: 75px;
    max-width: none;
  }

  .features-wrapper-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    width: 75%;
    margin-top: 20px;
  }

  .features-wrapper-2._2 {
    width: 90%;
  }

  .features-wrapper-2._2.x {
    margin-bottom: 20px;
  }

  .features-wrapper-2._2.x.px {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .features-content-2 {
    border-radius: 10px;
    padding: 0;
  }

  .features-content-2._2 {
    padding: 10px;
    box-shadow: 0 2px 5px #0003;
  }

  .html-embed-2 {
    min-width: 95%;
    max-width: 95%;
    margin-top: 0;
    margin-bottom: 0;
  }
}

#w-node-ffbd91c2-8340-c67e-e11c-91e7d3c47a62-70689b03, #w-node-ffbd91c2-8340-c67e-e11c-91e7d3c47a64-70689b03, #w-node-ffbd91c2-8340-c67e-e11c-91e7d3c47a66-70689b03, #w-node-ffbd91c2-8340-c67e-e11c-91e7d3c47a68-70689b03 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end stretch;
}

#w-node-ffbd91c2-8340-c67e-e11c-91e7d3c47a6b-70689b03 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start stretch;
}

#w-node-ffbd91c2-8340-c67e-e11c-91e7d3c47a6d-70689b03 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end stretch;
}

#w-node-ffbd91c2-8340-c67e-e11c-91e7d3c47a6f-70689b03 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start stretch;
}

#w-node-ffbd91c2-8340-c67e-e11c-91e7d3c47a71-70689b03 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end stretch;
}

#w-node-b16f3c21-3812-04d1-9639-0ab31b711855-1b711844 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4d3d57b8-9199-dcee-d148-f5f8afda3bd4-afda3bd1 {
  justify-self: start;
}

#w-node-_4d3d57b8-9199-dcee-d148-f5f8afda3be2-afda3bd1 {
  justify-self: end;
}

#w-node-_13a24fb3-e087-754d-34a6-062a3ba74534-70689b04 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd6e2427-6e4c-856a-c869-c8f4d2044104-70689b0a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-bd6e2427-6e4c-856a-c869-c8f4d204410e-70689b0a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_26f9699f-bd0a-75d8-b5e6-8b181b4736fd-70689b0c, #w-node-_26f9699f-bd0a-75d8-b5e6-8b181b473700-70689b0c, #w-node-_26f9699f-bd0a-75d8-b5e6-8b181b473701-70689b0c {
  align-self: start;
}

#w-node-f471734c-5313-a3aa-94cb-0737cb49fcfe-11d765c4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-f471734c-5313-a3aa-94cb-0737cb49fd0d-11d765c4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-f471734c-5313-a3aa-94cb-0737cb49fcfe-f69862d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-f471734c-5313-a3aa-94cb-0737cb49fd0d-f69862d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}


@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}