:root {
  --dark-pine: #1e3a34;
  --cool-gray: #5f6b73;
  --accent-borders: #4f7f2f;
  --muted-gold-accent: #e0a423;
  --white: #fff;
  --deep-natural-green: #4f7f2f;
  --paragraphs: #1e3a34cc;
  --light-gray: #e9ecef;
  --soft-white: #e8ebe4;
}

.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;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--dark-pine);
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 170%;
}

h1 {
  margin-top: 0;
  margin-bottom: 25px;
  font-family: Titillium Web, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
}

h2 {
  margin-top: 0;
  margin-bottom: 25px;
  font-family: Titillium Web, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}

h3 {
  margin-top: 0;
  margin-bottom: 23px;
  font-family: Titillium Web, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 105%;
}

h4 {
  margin-top: 0;
  margin-bottom: 21px;
  font-family: Titillium Web, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 110%;
}

h5 {
  margin-top: 0;
  margin-bottom: 19px;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
}

h6 {
  margin-top: 0;
  margin-bottom: 17px;
  font-size: 12px;
  font-weight: 700;
  line-height: 130%;
}

p {
  color: var(--cool-gray);
  margin-bottom: 25px;
}

a {
  color: var(--accent-borders);
  font-weight: 600;
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 40px;
}

img {
  border-radius: 20px;
  max-width: 100%;
  display: inline-block;
}

label {
  text-align: left;
  margin-bottom: 5px;
  font-weight: 700;
  display: block;
}

blockquote {
  border-left: 5px solid var(--muted-gold-accent);
  color: var(--muted-gold-accent);
  margin-bottom: 28px;
  padding: 10px 20px;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 22px;
}

figure {
  margin-top: 40px;
  margin-bottom: 40px;
}

.navbar {
  background-color: #1e3a34;
  border-radius: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  box-shadow: 5px 7px 14px 3px #10221633;
}

.nav-block {
  grid-column-gap: 61px;
  grid-row-gap: 61px;
  border-radius: 0;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav {
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo {
  background-color: var(--dark-pine);
  max-width: 100%;
  height: 60px;
  overflow: visible;
}

.nav-link {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 27px 20px;
  font-family: Raleway, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 130%;
  transition: color .2s;
  display: flex;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--muted-gold-accent);
}

.brand {
  justify-content: center;
  align-items: center;
  margin-left: 18px;
  margin-right: 18px;
  padding: 10px 0;
  display: flex;
}

.brand.w--current {
  margin-left: 18px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.nav-menu {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-button {
  border: 3px solid var(--muted-gold-accent);
  background-color: var(--muted-gold-accent);
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 13px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: center;
  margin-left: 18px;
  margin-right: 18px;
  padding: 12px 27px;
  font-size: 13px;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  transition: border-color .2s, background-color .2s, color .2s;
  display: flex;
}

.nav-button:hover {
  border: 3px solid var(--white);
  background-color: var(--white);
  color: var(--dark-pine);
}

.nav-button.w--current {
  background-color: var(--dark-pine);
  color: var(--muted-gold-accent);
}

.nav-button.call-button {
  margin-left: auto;
  margin-right: auto;
}

.section-hero {
  background-color: #000;
  background-image: url('../images/Keystone_Commercial_Landscaping_Pasadena_Property.1_1Keystone_Commercial_Landscaping_Pasadena_Property.1.avif');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.block-hero {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 220px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.block-hero.left {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero {
  width: 100%;
  max-width: 1200px;
  margin-top: 0;
  padding-top: 40px;
}

.heading-hero {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  max-width: 730px;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 65px;
  line-height: 100%;
}

.text-subtitle {
  max-width: 730px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
}

.text-subtitle.green {
  color: var(--accent-borders);
  font-style: normal;
  text-decoration: none;
}

.text-subtitle.green.centered {
  text-align: center;
  max-width: none;
}

.text-subtitle.green.call {
  margin-bottom: 0;
}

._2-button-block {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  justify-content: center;
  align-items: stretch;
  max-width: 450px;
  display: flex;
}

.primary-button {
  z-index: 1;
  border: 3px solid var(--muted-gold-accent);
  background-color: var(--muted-gold-accent);
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 200px;
  padding: 15px 30px;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
  position: relative;
}

.primary-button:hover {
  background-color: var(--muted-gold-accent);
  color: var(--white);
}

.primary-button.full-width {
  width: 100%;
}

.tertiary-button {
  border: 3px solid var(--muted-gold-accent);
  background-color: var(--muted-gold-accent);
  width: 200px;
  color: var(--white);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 13px;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  font-weight: 800;
  line-height: 100%;
  transition: border-color .2s, color .2s, background-color .2s;
  display: flex;
}

.tertiary-button:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--dark-pine);
}

.hero-bottom-feature {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.hero-column-grid {
  grid-template-rows: auto;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}

.featured-block {
  width: 100%;
  height: 150px;
  display: flex;
}

.featured-project-name {
  color: var(--white);
  letter-spacing: 2px;
  font-family: Titillium Web, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
}

.featured-project-info {
  color: var(--white);
  padding-top: 7px;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.scroll-indicator {
  background-color: #fff3;
  width: 2px;
  height: 80%;
  overflow: hidden;
}

.indicator-fill {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.featured-project-column {
  background-color: var(--deep-natural-green);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.featured-project-video {
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/Keystone_Commercial_Landscaping_Pasadena_Property.1_1Keystone_Commercial_Landscaping_Pasadena_Property.1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 60%;
  display: flex;
  position: relative;
}

.featured-project-content {
  background-color: var(--dark-pine);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.rotated-text {
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Titillium Web, sans-serif;
  font-weight: 400;
  transform: rotate(-90deg);
}

.video-icon-wrapper {
  background-color: #ffffff52;
  border: 1px solid #fff6;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  transition: transform .2s, background-color .2s, border-color .2s;
  display: flex;
}

.video-icon-wrapper:hover {
  border-width: 2px;
  border-color: var(--muted-gold-accent);
  background-color: #fdc23e33;
  transform: scale(.9);
}

.video-icon-wrapper.process {
  display: flex;
  position: relative;
}

.video-icon {
  align-self: center;
}

.section {
  background-color: #f8f9f6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 50px 50px;
  display: flex;
  position: relative;
}

.section.cta {
  padding-top: 50px;
  padding-bottom: 100px;
}

.section.no-padding-top {
  padding-top: 0;
}

.section.bg-color {
  background-color: var(--dark-pine);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.section.contact {
  padding-top: 200px;
  padding-bottom: 0;
}

.content {
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.content.blog {
  max-width: 750px;
}

.service-card {
  color: var(--dark-pine);
  background-color: #fff;
  border: 1px solid #1e3a342e;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  padding: 15% 10%;
  text-decoration: none;
  display: flex;
  box-shadow: 4px 4px 10px 3px #24403014;
}

.services {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 50px;
}

.heading-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  padding-top: 10px;
  display: grid;
}

.heading-block-text {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: block;
}

.service-icon {
  opacity: .3;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.service-icon.large {
  width: 200px;
  height: 200px;
  margin-right: 40px;
}

.block-image {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.block-image.project, .block-image.block {
  z-index: 0;
  min-height: 0;
  position: absolute;
  inset: 0%;
}

.text-accent {
  color: var(--muted-gold-accent);
}

.image {
  z-index: 5;
  box-sizing: border-box;
  text-align: left;
  overflow-wrap: normal;
  -webkit-text-fill-color: inherit;
  object-fit: contain;
  background-clip: border-box;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
  overflow: clip;
}

.image.logo {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  height: 50%;
}

.image.large-logo {
  object-fit: scale-down;
  background-color: #fff;
  width: 100%;
  height: 50%;
}

.image.large-logo.inverted {
  background-color: #000;
}

.achievement-block {
  background-color: var(--dark-pine);
  border-radius: 20px;
  flex-direction: row;
  width: 100%;
  display: flex;
}

.achievement-text {
  background-color: #2a5045;
  border-radius: 20px 0 0 20px;
  padding: 50px 15%;
}

.achievement {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.achievement-number {
  color: #e0a423;
  text-align: center;
  font-family: Titillium Web, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
}

.achievement-title {
  color: var(--white);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 20px;
  font-family: Titillium Web, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.projects-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.projects-sticky-card {
  z-index: 30;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--accent-borders);
  background-color: var(--white);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-left: 5%;
  padding: 50px;
  display: grid;
  position: sticky;
  top: 140px;
}

.project-cards {
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  grid-template-rows: 154px 154px 191px;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 219px;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

.project-content {
  z-index: 2;
  flex-direction: column;
  display: flex;
  position: relative;
}

.grid-wrapper {
  grid-template-rows: auto;
  padding: 10% 14%;
}

.process-block {
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/Keystone_Commercial_Landscaping_Pasadena_Property.1_1Keystone_Commercial_Landscaping_Pasadena_Property.1.avif');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  border-radius: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: block;
}

.process-content {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.project-image {
  border-radius: 20px;
  min-height: 370px;
  position: relative;
  overflow: hidden;
}

.project-image.top {
  top: -20px;
}

.video-button {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  position: relative;
  overflow: visible;
}

.video-loop-stroke {
  border: 2px dashed #fdc23e4d;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  display: flex;
  position: absolute;
}

.testimonial-slider {
  background-color: #0000;
  height: auto;
  margin-bottom: 100px;
}

.testimonial-slider-grid {
  border: 1px solid var(--accent-borders);
  background-color: var(--white);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  padding: 30px;
}

.slider-content-block {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8%;
  display: flex;
}

.testimonial-image {
  object-position: 50% 50%;
  justify-content: flex-end;
  height: 300px;
  display: flex;
}

.centered-heading {
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial-quote {
  border-left-style: none;
  border-left-color: var(--accent-borders);
  color: var(--paragraphs);
  padding-left: 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 140%;
}

.author-name {
  color: var(--dark-pine);
}

.author-job-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
}

.image-cover {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.left-arrow {
  border: 1px solid #2440304d;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  transition: transform .2s, background-color .2s;
  display: flex;
  inset: auto 70px -90px 0%;
}

.left-arrow:hover {
  background-color: var(--muted-gold-accent);
  transform: scale(.9);
}

.right-arrow {
  border: 1px solid #2440304d;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  transition: transform .2s, background-color .2s;
  display: flex;
  inset: auto -70px -90px 0%;
}

.right-arrow:hover {
  background-color: var(--muted-gold-accent);
  transform: scale(.9);
}

.arrow.right {
  transform: rotate(180deg);
}

.slide-nav {
  display: none;
}

.slide-detail-wrapper {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.slide-number {
  color: var(--dark-pine);
  letter-spacing: 4px;
  font-size: 23px;
  font-weight: 700;
}

.number-accent {
  color: #e0a423;
}

.footer-section {
  background-color: var(--white);
  border-top: 1px solid #91b67a40;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.cta-block {
  background-color: var(--dark-pine);
  border-radius: 20px;
  justify-content: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.cta-text {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10%;
  display: flex;
}

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

.footer-grid {
  grid-column-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 18px;
  padding-bottom: 11px;
  font-weight: 800;
}

.footer-link {
  color: #244030b3;
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--muted-gold-accent);
}

.detail-footer-grid {
  border-top: 1px solid #2440304d;
  grid-template-rows: auto;
}

.detail-footer {
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-detail-footer {
  color: #244030b3;
  font-size: 12px;
}

.link-detail-footer {
  font-weight: 700;
}

.image-animation-trigger {
  z-index: 15;
  background-color: var(--dark-pine);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 180%;
  display: none;
  position: absolute;
  left: 0%;
  right: 0%;
  overflow: visible;
}

.detail-link {
  color: var(--dark-pine);
  font-weight: 700;
  text-decoration: none;
}

.page-links {
  color: #244030b3;
  text-decoration: none;
}

.shape {
  z-index: 0;
  opacity: .15;
  width: 40vw;
  height: auto;
  position: absolute;
  inset: 0% auto auto 0%;
}

.shape._01 {
  width: 35vw;
  inset: 0% auto auto 0%;
}

.shape._02 {
  width: 35vw;
  inset: auto 0% -50% auto;
}

.shape._03 {
  width: 35vw;
  inset: auto 0% 0% auto;
}

.shape._04 {
  inset: 0% auto auto 0%;
}

.shape._05 {
  width: 30vw;
}

.shape._06 {
  width: 40vw;
  inset: auto 0% 0% auto;
}

.shape._07 {
  width: 30vw;
  inset: 0% 0% auto auto;
}

.page-content {
  width: 100%;
  min-height: 100vh;
}

.sg-content {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-left: 240px;
  display: flex;
}

._4-column-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: stretch;
  width: 100%;
}

.form-success {
  border: 1px solid var(--accent-borders);
  color: #444;
  background-color: #729b5833;
  border-radius: 10px;
  padding: 32px;
  font-size: 16px;
  line-height: 1.4em;
}

.text-box {
  border-radius: 10px;
  max-width: 100%;
}

.text-box._400px {
  max-width: 400px;
  min-height: 64px;
}

.text-box._400px.visible {
  background-color: #91b67a33;
}

.text-box._500px {
  max-width: 500px;
  min-height: 64px;
}

.text-box._500px.visible {
  background-color: #91b67a33;
}

.text-box._600px {
  max-width: 600px;
  min-height: 64px;
}

.text-box._600px.visible {
  background-color: #91b67a33;
}

.text-box._700px {
  max-width: 700px;
  min-height: 64px;
}

.text-box._700px.visible {
  background-color: #91b67a33;
}

.text-box._800px {
  max-width: 800px;
  min-height: 64px;
}

.text-box._800px.visible {
  background-color: #91b67a33;
}

.text-box.changelog {
  border: 1px solid var(--accent-borders);
  background-color: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: none;
  margin-bottom: 50px;
  padding: 30px;
}

.text-box.center {
  text-align: left;
}

.radio-button {
  border-color: var(--accent-borders);
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.radio-button.w--redirected-checked {
  border-width: 6px;
  border-color: var(--muted-gold-accent);
}

.sg-menu-link {
  color: #ffffffa6;
  border-left: 4px solid #0000;
  width: 100%;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 27px;
  transition: background-color .2s, color .2s;
}

.sg-menu-link:hover {
  color: #fff;
}

.sg-menu-link.w--current {
  color: #111314;
  background-color: #fff;
  padding-right: 0;
  font-weight: 600;
}

.sg-menu-link.w--current:hover {
  background-color: #fff;
}

.check-box {
  border-color: var(--accent-borders);
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.check-box.w--redirected-checked {
  border-color: var(--muted-gold-accent);
  background-color: var(--muted-gold-accent);
  background-position: 50%;
  background-size: 16px;
}

.form-checkbox {
  margin-bottom: 16px;
  padding-left: 24px;
}

.form-error {
  color: #444;
  background-color: #ecd4d4;
  border-radius: 6px;
  padding: 16px;
}

.sg-section {
  z-index: 0;
  background-color: var(--white);
  text-align: left;
  padding: 60px 80px 60px 60px;
  position: relative;
}

.sg-section.header {
  border-bottom: 1px solid var(--accent-borders);
  background-color: var(--white);
}

.icon {
  color: #fff;
  width: 55px;
  height: 55px;
  font-size: 24px;
}

.icon.phone {
  mix-blend-mode: soft-light;
}

._2-1-column-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.sg-menu-brand {
  margin-top: 40px;
  margin-bottom: 50px;
  margin-left: 30px;
  padding-left: 0;
}

._3-column-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.ds-colour-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 24px;
  display: grid;
}

.ds-icon {
  margin-bottom: 4px;
  margin-right: 24px;
  display: inline-block;
}

.color-block {
  border: 1px solid var(--accent-borders);
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  display: flex;
}

.color-block.additional-accent {
  background-color: var(--muted-gold-accent);
}

.color-block.paragraphs {
  background-color: #244030cc;
}

.color-block.background-headers {
  background-color: var(--dark-pine);
}

.color-block.background {
  background-color: var(--deep-natural-green);
}

.color-block.accent-borders {
  background-color: var(--accent-borders);
}

.sg-description {
  max-width: 400px;
  color: var(--paragraphs);
}

.ds-module {
  background-color: #91b67a33;
  flex-direction: column;
  min-width: 100px;
  min-height: 100px;
  display: flex;
  position: relative;
}

.sg-nav {
  border-right: 1px solid #ced5db;
  width: 240px;
  height: 0;
  position: fixed;
  inset: 0% auto 0 0;
}

.form-radio-button {
  margin-bottom: 16px;
  padding-left: 24px;
}

.text-color {
  color: var(--dark-pine);
}

.text-color.white {
  color: #fff;
}

.visible-spacer {
  background-color: #91b67a33;
  border-radius: 10px;
  display: inline-block;
}

.form-dropdown {
  border: 1px solid var(--accent-borders);
  color: #2440304d;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  height: 48px;
  margin-bottom: 16px;
  padding: 8px 16px;
  font-size: 15px;
  transition: color .2s;
  position: relative;
}

.form-dropdown:hover {
  color: var(--paragraphs);
}

.form-dropdown:focus {
  border-color: var(--muted-gold-accent);
  color: var(--paragraphs);
}

.form-dropdown::placeholder {
  color: #999;
  font-size: 15px;
}

.form-dropdown._w-select {
  border: 1px solid var(--accent-borders);
  color: #2440304d;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  height: 48px;
  margin-bottom: 16px;
  padding: 8px 16px;
  font-size: 15px;
  transition: color .2s;
  position: relative;
}

.form-dropdown._w-select:hover {
  color: var(--paragraphs);
}

.form-dropdown._w-select:focus {
  border-color: var(--muted-gold-accent);
  color: var(--paragraphs);
}

.form-dropdown._w-select::placeholder {
  color: #999;
  font-size: 15px;
}

.field-block {
  z-index: 1;
  border: 1px solid #0000;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  min-width: 50px;
  min-height: 20px;
  margin-bottom: 8px;
  display: flex;
}

._1-2-column-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.rich-text {
  text-align: left;
  margin-bottom: 30px;
}

.spacer {
  height: 48px;
}

.spacer._80 {
  background-color: #0000;
  width: 80px;
  height: 80px;
}

.spacer._16 {
  background-color: #0000;
  width: 16px;
  height: 16px;
}

.spacer._48 {
  background-color: #0000;
  width: 48px;
}

.spacer._64 {
  background-color: #0000;
  width: 64px;
  height: 64px;
}

.spacer._96 {
  background-color: #0000;
  width: 96px;
  height: 96px;
}

.spacer._32 {
  background-color: #0000;
  border-radius: 6px;
  width: 32px;
  height: 32px;
}

.spacer._24 {
  text-transform: uppercase;
  background-color: #0000;
  width: 24px;
  height: 24px;
}

.spacer._128 {
  background-color: #0000;
  width: 128px;
  height: 128px;
}

.ds-icon-grid {
  margin-top: 24px;
}

.text-input {
  border: 1px solid var(--accent-borders);
  color: var(--paragraphs);
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 16px;
  font-size: 15px;
  line-height: 1.4px;
  box-shadow: 0 0 10px #00000003;
}

.text-input:focus {
  border-color: var(--muted-gold-accent);
}

.text-input::placeholder {
  color: #2440304d;
}

.text-input.form {
  min-height: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
  line-height: 1.4em;
}

._2-column-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: start stretch;
  width: 100%;
  position: relative;
}

._2-column-grid.reversed {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  grid-template-columns: 1fr .75fr;
}

._2-column-grid._2-rows {
  grid-row-gap: 48px;
  grid-template-rows: auto auto;
}

.sg-nav-container {
  background-color: var(--dark-pine);
  border-right: 1px solid #fff;
  width: 240px;
  height: 100vh;
}

.sg-title {
  color: var(--dark-pine);
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.4em;
}

.sg-body {
  background-color: #fff;
}

.sg-block {
  margin-bottom: 32px;
}

.ds-section-header {
  margin-bottom: 50px;
}

.paragraph {
  max-width: 100%;
  margin-bottom: 36px;
  font-weight: 400;
}

.paragraph.small {
  opacity: .75;
  font-size: 13px;
  line-height: 170%;
}

.paragraph.large {
  max-width: 500px;
  font-size: 17px;
}

.paragraph.large.centered {
  text-align: center;
}

.paragraph.no-margin {
  text-align: left;
  margin-bottom: 0;
}

.paragraph.no-max-width {
  max-width: none;
  font-style: normal;
}

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

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

.sg-label {
  color: var(--dark-pine);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2em;
}

.heading.h5 {
  font-size: 24px;
}

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

.heading.h6 {
  text-transform: none;
  font-size: 20px;
  font-weight: 700;
}

.heading.h2 {
  font-family: Titillium Web, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 100%;
}

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

.heading.h2.centered {
  text-align: center;
}

.heading.h2.cta {
  color: #fff;
  text-align: center;
  text-align: center;
}

.heading.h3 {
  font-size: 36px;
}

.heading.h3.titilium-web {
  text-transform: none;
  margin-bottom: 0;
  font-weight: 400;
}

.heading.h3.raleway {
  text-transform: none;
  margin-bottom: 0;
  font-family: Raleway, sans-serif;
  font-weight: 400;
}

.heading.h4 {
  font-size: 30px;
}

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

.heading.h1 {
  color: #244030;
  font-size: 58px;
}

.heading.h1.centered {
  text-align: center;
}

.sg-menu {
  width: 100%;
}

.form-block {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.color-button-block {
  background-color: var(--dark-pine);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 5%;
  display: flex;
}

.color-button-block.white {
  background-color: var(--white);
}

.secondary-button {
  border: 3px solid var(--deep-natural-green);
  background-color: var(--white);
  width: 200px;
  color: var(--deep-natural-green);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.secondary-button:hover {
  background-color: var(--deep-natural-green);
  color: var(--white);
}

.secondary-button.full-width {
  width: 100%;
}

.sg-button-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.success-text {
  color: var(--paragraphs);
}

.button-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.service-arrow {
  width: 15px;
  height: 15px;
}

.read-text-block {
  align-items: center;
  display: flex;
}

.read-text {
  padding-right: 5px;
}

.hero-images {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 50px;
}

.hero-image {
  border-radius: 20px;
}

.hero-image.bottom {
  position: relative;
  top: 40px;
}

.stats {
  color: #e0a423;
  font-family: Titillium Web, sans-serif;
  font-size: 40px;
  font-weight: 700;
}

.values {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 50px;
  display: grid;
}

.value-card {
  color: var(--dark-pine);
  background-color: #fff;
  border: 1px solid #1e3a342e;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  padding: 10%;
  text-decoration: none;
  display: flex;
  box-shadow: 4px 4px 10px 3px #24403014;
}

.block-check {
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.check {
  background-color: var(--muted-gold-accent);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  display: flex;
}

.icon-check {
  width: 25px;
  height: 25px;
  padding: 3px;
}

.text-check {
  margin-bottom: 0;
  font-weight: 700;
}

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

.service {
  border: 1px solid var(--accent-borders);
  border-radius: 20px;
}

.service-block-image {
  object-fit: cover;
  overflow: hidden;
}

.service-image {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 20px 20px 0 0;
  min-height: 400px;
}

.service-box {
  padding: 5% 10%;
}

.service-heading-block {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.service-featured-image {
  border-radius: 20px;
}

.empty-state {
  border: 1px solid var(--accent-borders);
  text-align: center;
  background-color: #729b5833;
  border-radius: 10px;
  width: 50%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.side-bar-box {
  border: 1px solid var(--accent-borders);
  background-color: var(--white);
  border-radius: 20px;
  margin-bottom: 30px;
}

.side-bar-header {
  background-color: #729b5833;
  border-radius: 20px 20px 0 0;
}

.free-quote-block {
  background-color: var(--deep-natural-green);
  border-radius: 20px;
  padding: 40px 30px;
}

.side-bar-title {
  padding: 20px 30px;
  font-family: Titillium Web, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.service-categorie-link {
  width: 100%;
  padding: 20px 15px 20px 30px;
  text-decoration: none;
  transition: background-color .2s;
}

.service-categorie-link:hover {
  background-color: #729b584d;
}

.service-link {
  color: var(--dark-pine);
  font-size: 15px;
  font-weight: 600;
}

.checks-box {
  padding: 20px 30px;
}

.project-box {
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 5% 7%;
  position: relative;
}

.gradient-overlay {
  z-index: 1;
  background-image: linear-gradient(-260deg, #000c, #0000);
  border-radius: 20px;
  position: absolute;
  inset: 0%;
}

.block-home-hero {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 70px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.project-details {
  z-index: 1;
  background-color: var(--deep-natural-green);
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 88%;
  max-width: 970px;
  margin-bottom: -80px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: absolute;
  inset: auto 0 0%;
  overflow: hidden;
  box-shadow: 0 12px 36px #0000004d;
}

.project-image-wrapper {
  z-index: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.project-details-block {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  margin-right: -1px;
  padding: 15px 4%;
  display: flex;
  box-shadow: 1px 0 #ffffff1f;
}

.project-detail-heading {
  color: var(--accent-borders);
  text-transform: uppercase;
  padding-bottom: 5px;
  font-family: Titillium Web, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.project-detail-text {
  color: var(--white);
  font-size: 16px;
}

.project-featured-image {
  object-fit: cover;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 20px;
  width: 100%;
  height: 160%;
}

.section-full {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 70vh;
  min-height: 500px;
  display: flex;
  position: relative;
}

.content-full {
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  position: relative;
}

.project-image-overlay {
  background-image: linear-gradient(#00000080, #00000080);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  position: absolute;
  inset: 0%;
}

.project-heading-block {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.contact-info-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 50px;
  display: grid;
}

.contact-info {
  border: 1px solid var(--accent-borders);
  background-color: var(--deep-natural-green);
  color: var(--dark-pine);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 10%;
  text-decoration: none;
  display: flex;
  box-shadow: 4px 4px 10px 3px #24403014;
}

.contact-detail {
  max-width: 730px;
  color: var(--accent-borders);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.contact-detail:hover {
  color: var(--muted-gold-accent);
}

.contact-detail.footer-contact {
  margin-bottom: 0;
}

.faq-box {
  border: 1px solid var(--accent-borders);
  background-color: var(--white);
  border-radius: 20px;
  align-items: flex-start;
  padding: 40px 10%;
  display: flex;
  box-shadow: 4px 4px 10px 3px #24403014;
}

.faq-content {
  flex-direction: column;
  margin-left: 20px;
  display: block;
}

.question-text {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.notification-box {
  background-color: #729b5833;
  border-radius: 20px;
  justify-content: flex-start;
  width: 405px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: flex;
}

.utility-page-wrap {
  background-image: url('../images/hero_01.jpg');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  border: 1px solid var(--accent-borders);
  background-color: var(--white);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  width: 350px;
  padding: 50px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.service-collection-cards {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-licensing {
  border: 1px solid var(--accent-borders);
  object-fit: cover;
  width: 100%;
  height: 250px;
}

.icon-licensing-box {
  border: 1px solid var(--accent-borders);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

._3x2-column-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.icon-licensing {
  width: 55px;
  height: 55px;
}

.fonts-block {
  border: 1px solid var(--accent-borders);
  border-radius: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 30px;
  display: flex;
}

.empty-state-text {
  font-size: 16px;
}

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

.service-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.stats-text {
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.text-span, .text-span-2, .text-span-3 {
  color: var(--muted-gold-accent);
}

.background-video {
  min-width: auto;
  min-height: auto;
}

.text-span-4, .text-span-5, .text-span-6, .text-span-7, .text-span-8 {
  color: var(--muted-gold-accent);
}

.heading-2 {
  margin-bottom: 0;
}

.detail-link-2 {
  color: #244030;
  font-weight: 700;
  text-decoration: none;
}

.logo-2 {
  background-color: #1e3a34;
  height: 60px;
}

.footer-link-2 {
  color: #244030b3;
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  text-decoration: none;
  transition: color .2s;
}

.footer-link-2:hover {
  color: #e0a423;
}

.footer-section-2 {
  background-color: #fff;
  border-top: 1px solid #91b67a40;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.logo-3 {
  background-color: #1e3a34;
  height: 60px;
}

.navbar-2 {
  background-color: #1e3a34;
  border-radius: 15px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  top: 28px;
  left: 28px;
  right: 28px;
  box-shadow: 5px 7px 14px 3px #10221633;
}

.nav-link-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 27px 20px;
  font-family: Raleway, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 130%;
  transition: color .2s;
  display: flex;
}

.nav-link-2:hover, .nav-link-2.w--current {
  color: #e0a423;
}

.nav-button-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #e0a423;
  border: 3px solid #e0a423;
  border-radius: 13px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: center;
  margin-left: 18px;
  margin-right: 18px;
  padding: 12px 27px;
  font-size: 13px;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  transition: border-color .2s, background-color .2s, color .2s;
  display: flex;
}

.nav-button-2:hover {
  color: #244030;
  background-color: #fff;
  border: 3px solid #fff;
}

.nav-button-2.w--current {
  color: #e0a423;
  background-color: #244030;
}

.text-subtitle-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  max-width: 730px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
}

.text-subtitle-2.green {
  color: #4f7f2f;
}

.text-subtitle-2.green.centered {
  text-align: center;
  max-width: none;
}

.primary-button-2 {
  z-index: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #0000;
  border: 3px solid #a68a4c;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 200px;
  padding: 15px 30px;
  font-weight: 800;
  line-height: 100%;
  transition: background-color .2s, color .2s;
  display: flex;
  position: relative;
}

.primary-button-2:hover {
  color: #fff;
  background-color: #e0a423;
}

.cta-block-2 {
  background-color: #1e3a34;
  border-radius: 20px;
  justify-content: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.empty-state-2 {
  text-align: center;
  background-color: #729b5833;
  border: 1px solid #729b58;
  border-radius: 10px;
  width: 50%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.collection-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto 252px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-block {
  padding-left: 0;
  padding-right: 0;
}

.blog-list-collection {
  width: 100%;
}

.blog-list {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  display: grid;
}

.blog-item {
  flex-direction: column;
  display: flex;
}

.blog-box {
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blog-content {
  z-index: 2;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  display: flex;
  position: relative;
}

.div-block {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.call-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.default-container {
  max-width: 1268px;
}

.interaction-wrapper {
  width: 100%;
  height: 100%;
}

.stats-2 {
  color: #e0a423;
  font-family: Titillium Web, sans-serif;
  font-size: 40px;
  font-weight: 700;
}

.image-animation-trigger-2 {
  z-index: 15;
  background-color: #1e3527;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 180%;
  display: none;
  position: absolute;
  left: 0%;
  right: 0%;
  overflow: visible;
}

.inner-banner-image {
  width: 52px;
}

.inner-title-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.blog-post-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.blog-meta-bar {
  border-bottom: 1px solid #ffffff1f;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  display: flex;
}

.blog-meta-left {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.blog-author-block {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-direction: column;
  display: flex;
}

.blog-author-name {
  color: inherit;
  font-size: 15px;
  font-weight: 600;
}

.blog-author-title {
  opacity: .6;
  font-size: 13px;
}

.blog-category-badge {
  opacity: .7;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-style: solid;
  border-width: 1px;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}

.blog-featured-image-wrap {
  aspect-ratio: 16 / 9;
  background-color: #ffffff0f;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  overflow: hidden;
}

.blog-featured-image-placeholder {
  opacity: .3;
  font-size: 14px;
}

.blog-content-body {
  margin-bottom: 48px;
}

.blog-rich-text {
  font-size: 17px;
  line-height: 1.8;
}

.blog-post-footer {
  border-top: 1px solid #ffffff1f;
  padding-top: 32px;
}

.blog-featured-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  height: 400px;
  margin-bottom: 40px;
  display: block;
}

.blog-post-content {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-bottom: 80px;
}

.blog-meta-bar {
  border-bottom: 1px solid #ffffff1f;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-top: 0;
  padding-bottom: 20px;
  display: flex;
}

.blog-post-footer {
  border-top: 1px solid #ffffff1f;
  margin-top: 40px;
  padding-top: 40px;
}

.team-section-heading-block {
  text-align: center;
  max-width: 600px;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: auto;
  gap: 24px;
  width: 100%;
  display: grid;
}

.team-card {
  background-color: #ffffff0a;
  border: 1px solid #ffffff14;
  border-radius: 12px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.team-card-photo {
  object-fit: cover;
  background-color: #ffffff0f;
  width: 100%;
  height: 64%;
  display: block;
}

.team-card-body {
  flex-direction: column;
  gap: 4px;
  padding: 20px 20px 24px;
  display: flex;
}

.quote-callout-block {
  background-color: #e0a4230f;
  border-left: 4px solid #e0a423;
  border-radius: 0 12px 12px 0;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 32px;
}

.team-card-name {
  font-size: 17px;
  font-weight: 600;
}

.team-card-title {
  opacity: .6;
  font-size: 14px;
}

.how-we-work-steps {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
  display: grid;
}

.how-we-work-step {
  background-color: #ffffff0a;
  border: 1px solid #ffffff12;
  border-radius: 10px;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  display: flex;
}

.how-we-work-number {
  color: #e0a423;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
}

.how-we-work-label {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
}

.city-fact-card {
  background-color: #e0a42312;
  border-left: 4px solid #e0a423;
  border-radius: 0 12px 12px 0;
  margin-bottom: 0;
  padding: 28px 32px;
}

.city-fact-label {
  color: #e0a423;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
}

.city-facts-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 48px;
  display: grid;
}

.city-stat-card {
  background-color: #ffffff0a;
  border: 1px solid #e0a42333;
  border-radius: 12px;
  padding: 28px 24px;
}

.city-stat-number {
  color: #e0a423;
  margin-bottom: 8px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.city-stat-label {
  opacity: .7;
  font-size: 13px;
  font-weight: 500;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
  display: grid;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
  display: grid;
}

.form-field {
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  display: flex;
}

.form-field-label {
  color: #1e3a34;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 700;
}

.form-sub-label {
  color: #1e3a3473;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 500;
}

.form-radio-group {
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  display: flex;
}

.form-radio-label {
  color: #1e3a34;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.form-section-divider {
  background-color: #1e3a341a;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.form-section-title {
  color: #1e3a3473;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 700;
}

._wf-form-block {
  width: 100%;
}

.form-section-divider-1 {
  background-color: #1e3a341a;
  width: 100%;
  height: 1px;
  margin: 8px 0 24px;
}

.form-row-1, .form-row-3-1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  display: grid;
}

.form-field-1 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  margin-bottom: 20px;
  display: flex;
}

.form-field-label-1 {
  color: #1e3a34;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 700;
}

.form-sub-label-1 {
  color: #1e3a3466;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 3px 0 0;
  font-size: 10px;
  font-weight: 500;
}

.text-input-1, .text-input-1._w-input, .text-input-1._w-input {
  box-sizing: border-box;
  color: #1e3a34;
  background-color: #fff;
  border: 1px solid #1e3a3440;
  border-radius: 8px;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  transition: border-color .2s;
}

.form-textarea {
  resize: vertical;
  height: 130px;
  padding: 14px;
}

.form-radio-group-1 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 6px;
  display: flex;
}

.form-radio-label-1 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  color: #1e3a34;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.primary-button-submit, .primary-button-submit._w-button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #e0a423;
  border: 3px solid #e0a423;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin-top: 8px;
  padding: 0 32px;
  font-family: Raleway, sans-serif;
  font-size: 13px;
  font-weight: 800;
  transition: background .2s, color .2s;
  display: inline-flex;
}

.form-success-block {
  background-color: #1e3a340f;
  border-left: 4px solid #e0a423;
  border-radius: 10px;
  padding: 24px;
  display: none;
}

.form-error-block {
  background-color: #c832320f;
  border-radius: 8px;
  padding: 16px;
  display: none;
}

.inline-span-0, .inline-span-1, .inline-span-2, .inline-span-3, .inline-span-4, .inline-span-5, .inline-span-6 {
  color: #e0a423;
}

.contact-form-full {
  grid-column-gap: 0px;
  grid-template-columns: 1fr;
  grid-template-areas: ".";
  grid-auto-columns: .25fr;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

._w-input-parent._w-input {
  box-sizing: border-box;
  color: #1e3a34;
  background-color: #fff;
  border: 1px solid #1e3a3440;
  border-radius: 8px;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  transition: border-color .2s;
}

.kg-form {
  width: 100%;
  margin-top: 32px;
}

.kg-form-section-title {
  color: #1e3a3473;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 700;
}

.kg-form-divider {
  background-color: #1e3a341a;
  width: 100%;
  height: 1px;
  margin: 4px 0 24px;
}

.kg-form-row, .kg-form-row-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  display: grid;
}

.kg-form-field {
  flex-direction: column;
  margin-bottom: 20px;
  display: flex;
}

.kg-label {
  color: #1e3a34;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.kg-sublabel {
  color: #1e3a3466;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 4px 0 0;
  font-size: 10px;
  font-weight: 500;
}

.kg-input, .kg-input._w-input, .kg-input._w-input-1, .kg-input._w-select {
  box-sizing: border-box;
  color: #1e3a34;
  background-color: #fff;
  border: 1px solid #1e3a3438;
  border-radius: 8px;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  transition: border-color .2s;
}

.kg-textarea {
  resize: vertical;
  height: 130px;
  padding: 14px;
}

.kg-radio-group {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  padding-top: 6px;
  display: flex;
}

.kg-radio-label {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #1e3a34;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.kg-submit, .kg-submit._w-button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #e0a423;
  border: 3px solid #e0a423;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 52px;
  margin-top: 12px;
  padding: 0 40px;
  font-family: Raleway, sans-serif;
  font-size: 13px;
  font-weight: 800;
  transition: background .2s, color .2s;
  display: inline-flex;
}

.kg-form-1 {
  width: 100%;
  margin-top: 28px;
}

.kg-section-title {
  color: #1e3a3466;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
}

.kg-divider {
  background-color: #1e3a341a;
  width: 100%;
  height: 1px;
  margin: 4px 0 18px;
}

.kg-row, .kg-row-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  display: grid;
}

.kg-field {
  flex-direction: column;
  margin-bottom: 10px;
  display: flex;
}

.kg-label-1 {
  color: #1e3a34;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.kg-sub {
  color: #1e3a3461;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 3px 0 0;
  font-size: 10px;
  font-weight: 500;
}

.kg-input-1, .kg-input-1._w-input, .kg-input-1._w-select, .kg-input-1._w-input {
  box-sizing: border-box;
  color: #1e3a34;
  background-color: #fff;
  border: 1px solid #1e3a3438;
  border-radius: 6px;
  width: 100%;
  height: 44px;
  padding: 0 12px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  transition: border-color .2s;
}

.kg-textarea-1 {
  resize: vertical;
  height: 110px;
  padding: 10px 12px;
}

.kg-radios {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: left;
  flex-wrap: wrap;
  align-content: stretch;
  padding-top: 0;
  text-decoration: none;
  display: flex;
}

.kg-radio {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #1e3a34;
  text-align: left;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.kg-btn, .kg-btn._w-button, .kg-btn._w-button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #e0a423;
  border: 3px solid #e0a423;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin-top: 10px;
  padding: 0 36px;
  font-family: Raleway, sans-serif;
  font-size: 13px;
  font-weight: 800;
  transition: background .2s, color .2s;
  display: inline-flex;
}

.kg-ok {
  color: #1e3a34;
  background-color: #e0a42312;
  border-left: 4px solid #e0a423;
  border-radius: 8px;
  margin-top: 14px;
  padding: 20px 24px;
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  display: none;
}

.kg-err {
  color: #b33;
  background-color: #c8323212;
  border-radius: 6px;
  margin-top: 12px;
  padding: 14px;
  font-family: Raleway, sans-serif;
  font-size: 13px;
  display: none;
}

._w-input {
  box-sizing: border-box;
  color: #1e3a34;
  background-color: #fff;
  border: 1px solid #1e3a3438;
  border-radius: 6px;
  width: 100%;
  height: 44px;
  padding: 0 12px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  transition: border-color .2s;
}

.kg-success {
  color: #1e3a34;
  background-color: #e0a42312;
  border-left: 4px solid #e0a423;
  border-radius: 10px;
  margin-top: 16px;
  padding: 24px;
  font-family: Raleway, sans-serif;
  font-size: 15px;
  display: none;
}

.kg-error-msg {
  color: #b33;
  background-color: #c8323212;
  border-radius: 8px;
  margin-top: 16px;
  padding: 16px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  display: none;
}

.kg-topbar {
  background-color: #122420;
  border-bottom: 1px solid #ffffff1a;
  width: 100%;
}

.kg-topbar-inner {
  box-sizing: border-box;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
}

.kg-topbar-left {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  gap: 6px;
  display: flex;
}

.kg-topbar-right {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  display: flex;
}

.kg-topbar-item {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #ffffffd9;
  letter-spacing: .06em;
  white-space: nowrap;
  align-items: center;
  font-family: Raleway, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s;
  display: flex;
}

.kg-topbar-divider {
  background-color: #ffffff26;
  width: 1px;
  height: 14px;
}

.kg-topbar-socials {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.kg-topbar-social {
  color: #ffffffa6;
  align-items: center;
  transition: color .15s;
  display: flex;
}

.kg-topbar-phone {
  display: none;
}

.kg-topbar-wrap {
  z-index: 9999;
  background-color: #122420;
  border-bottom: 1px solid #ffffff1a;
  width: 100vw;
  height: 36px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: visible;
}

.kg-tb-item {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #ffffffd9;
  letter-spacing: .05em;
  white-space: nowrap;
  align-items: center;
  gap: 5px;
  font-family: Raleway, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s;
  display: flex;
}

.kg-tb-item.kg-tb-location {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.kg-tb-div {
  background-color: #ffffff26;
  flex-shrink: 0;
  width: 1px;
  height: 14px;
}

.kg-tb-socials {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  align-items: center;
  gap: 14px;
  display: flex;
}

.kg-tb-social {
  color: #ffffffa6;
  align-items: center;
  transition: color .15s;
  display: flex;
}

.kg-tb-email, .kg-tb-location {
  color: #ffffffd9;
  letter-spacing: .05em;
  white-space: nowrap;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.kg-form-1-2 {
  width: 100%;
  margin-top: 28px;
}

.kg-st {
  color: #1e3a3466;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
}

.kg-div {
  background-color: #1e3a341a;
  width: 100%;
  height: 1px;
  margin: 4px 0 18px;
}

.kg-row-1, .kg-row-3-1 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  display: grid;
}

.kg-field-1 {
  flex-direction: column;
  margin-bottom: 10px;
  display: flex;
}

.kg-lbl {
  color: #1e3a34;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.kg-sub-1 {
  color: #1e3a3461;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 3px 0 0;
  font-size: 10px;
  font-weight: 500;
}

.kg-in, .kg-in._w-input, .kg-in._w-input-1, .kg-in._w-select {
  box-sizing: border-box;
  color: #1e3a34;
  background-color: #fff;
  border: 1px solid #1e3a3438;
  border-radius: 6px;
  width: 100%;
  height: 44px;
  padding: 0 12px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  transition: border-color .2s;
}

.kg-ta {
  resize: vertical;
  height: 110px;
  padding: 10px 12px;
}

.kg-radios-1 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px;
  display: flex;
}

.kg-radio-1 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  color: #1e3a34;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.kg-checks {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  padding-top: 4px;
  display: flex;
}

.kg-check {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #1e3a34;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.kg-ok-1 {
  color: #1e3a34;
  background-color: #e0a42312;
  border-left: 4px solid #e0a423;
  border-radius: 8px;
  margin-top: 14px;
  padding: 20px 24px;
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  display: none;
}

.kg-err-1 {
  color: #b33;
  background-color: #c8323212;
  border-radius: 6px;
  margin-top: 12px;
  padding: 14px;
  font-family: Raleway, sans-serif;
  font-size: 13px;
  display: none;
}

.inline-span-7 {
  color: #1e3a3466;
  font-weight: 500;
}

.inline-span-7-1, .inline-span-7-1-2 {
  color: #1e3a3466;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.div-block-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.div-block-5, .div-block-6 {
  padding-left: 20px;
}

.form_contact_field {
  font-weight: 400;
}

.div-block-9 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 0;
  display: grid;
}

.field-label-3 {
  font-weight: 400;
}

.div-block-10 {
  padding-left: 20px;
}

.div-block-11 {
  padding-left: 0;
}

.div-block-12 {
  padding-left: 20px;
}

.inline-div-0 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px;
  display: flex;
}

.inline-div-1 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
  display: flex;
}

.inline-div-0-1 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
  display: flex;
}

.inline-div-0-1-2 {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 6px;
  display: flex;
}

.div-block-13 {
  padding-left: 20px;
}

.field-label-4 {
  display: flex;
}

.div-block-14 {
  padding-left: 20px;
}

.form-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.div-block-15 {
  padding-bottom: 20px;
}

.bold-text {
  background-color: #0000;
  display: inline;
}

@media screen and (min-width: 1280px) {
  .sg-content {
    margin-left: 280px;
  }

  .sg-nav, .sg-nav-container {
    width: 280px;
  }
}

@media screen and (max-width: 991px) {
  .navbar {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
    align-items: center;
  }

  .nav {
    align-items: stretch;
    overflow: hidden;
  }

  .nav-link {
    background-color: #1b3325;
    transition: background-color .2s;
  }

  .nav-link:hover {
    background-color: #172a1f;
  }

  .nav-link.top {
    border-radius: 0;
  }

  .nav-menu {
    background-color: #c8c8c800;
    border-radius: 0;
    box-shadow: 6px 7px 13px 2px #24403033;
  }

  .nav-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 27px;
    padding-bottom: 27px;
  }

  .nav-button:hover {
    background-color: var(--white);
    color: var(--dark-pine);
  }

  .nav-button.call-button {
    border-radius: 0;
  }

  .nav-button.call-button.w--current {
    border-style: none;
  }

  .block-hero {
    padding-top: 90px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-hero {
    font-size: 60px;
  }

  .text-subtitle {
    text-align: left;
    font-size: 14px;
  }

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

  .text-subtitle.center.process {
    text-align: left;
  }

  .primary-button {
    text-align: center;
    text-decoration: none;
  }

  .tertiary-button {
    text-align: center;
  }

  .menu-button {
    background-color: var(--white);
    border-radius: 0;
    flex: 0 auto;
    justify-content: center;
    align-self: stretch;
    align-items: center;
    padding: 6px 6px 4px;
    transition: background-color .2s;
    display: flex;
  }

  .menu-button:hover {
    background-color: var(--muted-gold-accent);
  }

  .menu-button.w--open {
    background-color: #fff;
  }

  .menu-icon {
    height: 100%;
    color: var(--dark-pine);
    border-radius: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 39px;
    line-height: 100%;
    display: flex;
  }

  .hero-bottom-feature {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-column-grid {
    grid-template-columns: .25fr 1fr;
  }

  .featured-project-video {
    width: 80%;
  }

  .video-icon-wrapper {
    top: 22%;
    left: 27%;
  }

  .video-icon-wrapper.process {
    top: 0%;
    left: 0%;
  }

  .section {
    padding: 70px 30px 0;
  }

  .section.cta {
    padding-left: 30px;
    padding-right: 30px;
  }

  .section.contact {
    padding-top: 150px;
  }

  .content {
    overflow: hidden;
  }

  .services {
    grid-template-columns: 1fr 1fr;
    padding-top: 30px;
  }

  .block-image {
    min-height: 370px;
  }

  .achievement-text {
    border-radius: 20px 20px 0 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .achievement-number {
    font-size: 32px;
  }

  .achievement-title {
    font-size: 14px;
  }

  .projects-grid {
    grid-template-columns: 1.5fr;
  }

  .projects-sticky-card {
    width: 100%;
    margin-left: 0%;
    position: static;
  }

  .project-image.top {
    background-image: none;
  }

  .footer-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .cta-block {
    top: 100px;
  }

  .footer-grid {
    grid-column-gap: 47px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .shape._01, .shape._02, .shape._04, .shape._05, .shape._06 {
    width: 50vw;
  }

  .sg-content {
    border-left-style: none;
    width: 100%;
    margin-left: 0;
    position: static;
  }

  ._4-column-grid {
    grid-template-columns: 1fr 1fr;
  }

  .text-box.changelog {
    margin-bottom: 30px;
  }

  .sg-section.header {
    background-color: var(--dark-pine);
    color: var(--white);
  }

  ._2-1-column-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .sg-menu-brand {
    margin-top: 4px;
    margin-bottom: 0;
    margin-left: 60px;
  }

  .sg-nav {
    z-index: 10;
    background-color: var(--dark-pine);
    border-right-style: none;
    width: 100%;
    height: 80px;
    padding-top: 20px;
    position: static;
    bottom: auto;
    left: 0;
    right: 0;
    overflow: visible;
  }

  ._1-2-column-grid {
    margin-left: 0;
  }

  ._2-column-grid {
    align-items: center;
  }

  .sg-nav-container {
    background-color: #ffdf8d;
    width: auto;
    height: auto;
  }

  .sg-body {
    background-color: #0000;
  }

  .sg-block {
    margin-bottom: 40px;
  }

  .paragraph.large {
    font-size: 16px;
  }

  .heading.h5 {
    font-size: 22px;
  }

  .heading.h6 {
    font-size: 19px;
  }

  .heading.h2 {
    font-size: 39px;
  }

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

  .heading.h3 {
    font-size: 33px;
  }

  .heading.h4 {
    font-size: 27px;
  }

  .heading.h1 {
    font-size: 54px;
  }

  .sg-menu {
    z-index: 500;
    background-color: #f0f2f3;
    border-bottom: 1px solid #e1e5e7;
    padding-top: 20px;
    padding-bottom: 20px;
    display: none;
    position: absolute;
    inset: 80px auto auto 0%;
    box-shadow: 0 3px 5px #0000000d;
  }

  .secondary-button {
    text-align: center;
    text-decoration: none;
  }

  .hero-images {
    padding-bottom: 50px;
  }

  .values {
    grid-template-columns: 1fr 1fr;
    padding-top: 30px;
  }

  .service-image {
    min-height: 250px;
  }

  .service-box {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .multi-image-item {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .empty-state {
    width: 100%;
    margin-bottom: 30px;
  }

  .block-home-hero {
    padding-left: 30px;
    padding-right: 30px;
  }

  .project-details {
    margin-bottom: -10px;
    bottom: -18%;
  }

  .project-image-wrapper {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    inset: 0%;
  }

  .section-full {
    justify-content: flex-start;
    height: 65vh;
  }

  .content-full {
    padding-left: 30px;
    padding-right: 30px;
  }

  .project-heading-block {
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .contact-info-block {
    grid-template-columns: 1fr 1fr;
    padding-top: 30px;
  }

  .contact-detail {
    text-align: left;
    font-size: 14px;
  }

  .notification-box {
    margin-bottom: 100px;
  }

  .service-collection-cards {
    grid-template-columns: 1fr 1fr;
  }

  .image-licensing {
    height: 200px;
  }

  .icon-licensing {
    width: 50px;
    height: 50px;
  }

  .stats-text {
    font-size: 18px;
  }

  .error-message {
    border-radius: 10px;
  }

  .footer-section-2 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .navbar-2 {
    margin-left: 2px;
    margin-right: 2px;
  }

  .nav-link-2 {
    background-color: #1b3325;
    transition: background-color .2s;
  }

  .nav-link-2:hover {
    background-color: #172a1f;
  }

  .nav-link-2.top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .nav-button-2 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 27px;
    padding-bottom: 27px;
  }

  .nav-button-2:hover {
    color: #244030;
    background-color: #fff;
  }

  .menu-button-2 {
    background-color: #fff;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    flex: 0 auto;
    justify-content: center;
    align-self: stretch;
    align-items: center;
    padding: 6px 6px 4px;
    transition: background-color .2s;
    display: flex;
  }

  .menu-button-2:hover {
    background-color: #e0a423;
  }

  .menu-button-2.w--open {
    background-color: #fff;
  }

  .menu-icon-2 {
    color: #244030;
    border-radius: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 39px;
    line-height: 100%;
    display: flex;
  }

  .text-subtitle-2 {
    text-align: left;
    font-size: 14px;
  }

  .primary-button-2 {
    text-align: center;
  }

  .cta-block-2 {
    top: 100px;
  }

  .empty-state-2 {
    width: 100%;
    margin-bottom: 30px;
  }

  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .interaction-wrapper {
    position: relative;
  }

  .inner-title-wrap {
    position: static;
  }

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

  .city-facts-grid, .form-row-3 {
    grid-template-columns: 1fr 1fr;
  }

  .kg-row {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: auto;
  }

  .kg-field {
    justify-content: space-between;
    align-items: flex-start;
  }

  .kg-radios {
    grid-column-gap: 33px;
    grid-row-gap: 33px;
    padding-left: 20px;
  }

  .div-block-5, .div-block-6 {
    padding-left: 20px;
  }

  .form_contact_field {
    font-weight: 400;
  }

  .field-label-2 {
    display: flex;
  }

  .div-block-7 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block-8 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    display: grid;
  }

  .div-block-9 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: 20px;
    display: grid;
  }

  .field-label-3 {
    font-weight: 400;
  }

  .div-block-10 {
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  figure {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .block-hero.left {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-hero {
    font-size: 42px;
  }

  .text-subtitle {
    font-size: 14px;
  }

  .text-subtitle.center.process {
    text-align: center;
  }

  .hero-column-grid {
    grid-column-gap: 0px;
    grid-template-columns: .25fr 1fr;
  }

  .featured-project-video {
    display: flex;
  }

  .featured-project-content {
    padding-left: 20px;
    padding-right: 30px;
  }

  .video-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .video-icon-wrapper.process {
    width: 80px;
    height: 80px;
  }

  .video-icon {
    width: 30px;
    height: 30px;
  }

  .video-icon.banner {
    width: 40px;
    height: 40px;
  }

  .section {
    padding-top: 50px;
  }

  .section.cta {
    padding-bottom: 50px;
  }

  .service-card:hover {
    transform: none;
  }

  .heading-block {
    grid-template-columns: 1fr;
  }

  .service-icon.large {
    width: 100px;
    height: 100px;
  }

  .projects-sticky-card {
    padding: 30px;
  }

  .project-cards {
    margin-top: 40px;
  }

  .grid-wrapper {
    grid-template-columns: 1fr;
  }

  .project-image {
    min-height: 300px;
  }

  .video-button {
    margin-top: 10px;
  }

  .testimonial-slider-grid {
    grid-template-columns: 1.5fr;
    margin-top: 50px;
  }

  .testimonial-image {
    height: 380px;
  }

  .testimonial-quote {
    font-size: 23px;
  }

  .cta-block {
    top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-footer {
    padding-bottom: 30px;
  }

  .shape._02 {
    width: 60vw;
    bottom: 20%;
  }

  .shape._04 {
    width: 70vw;
  }

  .shape._06 {
    width: 60vw;
    inset: auto 0% 0% auto;
  }

  .sg-content {
    margin-left: 0;
  }

  .sg-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  ._2-1-column-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .sg-menu-brand {
    margin-left: 30px;
  }

  .sg-menu-brand.w--current {
    margin-top: 14px;
  }

  .ds-colour-grid {
    grid-template-columns: 1fr 1fr;
  }

  .field-block {
    min-height: auto;
  }

  ._1-2-column-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .spacer {
    height: 32px;
  }

  .spacer._64 {
    height: 48px;
  }

  ._2-column-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  ._2-column-grid.reversed {
    flex-direction: column-reverse;
    display: flex;
  }

  .heading.h2 {
    font-size: 36px;
  }

  .heading.h3 {
    font-size: 30px;
  }

  .heading.h4 {
    font-size: 25px;
  }

  .heading.h1 {
    font-size: 48px;
  }

  .sg-menu {
    background-color: #fff;
  }

  .sg-button-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-images {
    padding-bottom: 50px;
  }

  .stats {
    font-size: 37px;
  }

  .value-card:hover {
    transform: none;
  }

  .check {
    width: 25px;
    height: 25px;
  }

  .multi-image {
    margin-bottom: 20px;
  }

  .project-box {
    padding-top: 7%;
    padding-bottom: 7%;
  }

  .project-detail-heading {
    font-size: 16px;
  }

  .project-detail-text {
    font-size: 14px;
  }

  .content-full {
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-info-block {
    grid-template-columns: 1fr;
  }

  .contact-info:hover {
    transform: none;
  }

  .contact-detail {
    font-size: 12px;
  }

  .notification-box {
    margin-bottom: 60px;
  }

  .utility-page-content {
    padding: 40px;
  }

  .icon-licensing-box {
    padding: 20px;
  }

  .icon-licensing {
    width: 50px;
    height: 50px;
  }

  .service-collection-list {
    grid-template-columns: 1fr;
  }

  .stats-text {
    font-size: 18px;
  }

  .text-subtitle-2 {
    font-size: 14px;
  }

  .cta-block-2 {
    top: 60px;
  }

  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-box {
    padding-top: 7%;
    padding-bottom: 7%;
  }

  .stats-2 {
    font-size: 37px;
  }

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

  .city-facts-grid, .form-row, .form-row-3 {
    grid-template-columns: 1fr;
  }

  .kg-tb-location {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    height: 40px;
  }

  .nav-link.top {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .nav-menu, .nav-button.call-button {
    border-radius: 0;
  }

  .block-hero {
    padding-left: 0;
    padding-right: 0;
  }

  ._2-button-block {
    flex-direction: column;
  }

  .primary-button {
    width: auto;
  }

  .tertiary-button {
    width: auto;
    margin-top: 30px;
    margin-left: 0;
  }

  .menu-icon {
    padding-left: 5px;
    padding-right: 5px;
  }

  .hero-bottom-feature {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-column-grid {
    grid-template-columns: 1fr;
  }

  .featured-block {
    height: 130px;
  }

  .scroll-indicator-block {
    display: none;
  }

  .featured-project-column {
    width: 15%;
  }

  .featured-project-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-bottom: 0;
  }

  .section.cta {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section.contact {
    padding-top: 150px;
  }

  .service-card {
    box-shadow: none;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .services {
    grid-template-columns: 1fr;
    padding-left: 1px;
    padding-right: 1px;
  }

  .heading-block {
    grid-row-gap: 0px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .block-image {
    min-height: 250px;
  }

  .achievement {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .achievement-number {
    font-size: 25px;
  }

  .projects-sticky-card {
    padding: 10%;
  }

  .project-cards {
    grid-template-columns: 1fr;
  }

  .grid-wrapper {
    padding: 15% 5%;
  }

  .project-image.top {
    top: 0;
  }

  .video-button {
    margin-top: 10px;
  }

  .testimonial-slider-grid {
    margin-top: 30px;
    padding: 15px;
  }

  .slider-content-block {
    padding-bottom: 8%;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-image {
    height: 250px;
  }

  .testimonial-quote {
    padding-right: 0;
    font-size: 18px;
  }

  .testimonial-author-wrap {
    padding-bottom: 20px;
  }

  .slide-detail-wrapper {
    flex-direction: column;
  }

  .slide-number {
    padding-bottom: 0;
  }

  .cta-text {
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .detail-footer-grid {
    grid-template-columns: 1fr;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .detail-footer {
    padding-top: 0;
    padding-bottom: 0;
  }

  .shape._01 {
    width: 80vw;
  }

  .shape._02 {
    width: 70vw;
  }

  .shape._05 {
    width: 100vw;
  }

  .shape._06 {
    display: none;
  }

  ._4-column-grid {
    grid-template-columns: 1fr;
  }

  .sg-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sg-menu-brand {
    margin-left: 16px;
  }

  ._3-column-grid, .ds-colour-grid {
    grid-template-columns: 1fr;
  }

  .color-block {
    margin-bottom: 20px;
  }

  .text-input {
    width: 100%;
  }

  .heading.h5 {
    font-size: 20px;
  }

  .heading.h6 {
    font-size: 18px;
  }

  .heading.h2 {
    font-size: 34px;
  }

  .heading.h3 {
    font-size: 28px;
  }

  .heading.h4 {
    font-size: 24px;
  }

  .heading.h1 {
    font-size: 40px;
  }

  .secondary-button {
    width: auto;
  }

  .sg-button-grid {
    grid-template-columns: 1fr;
  }

  .hero-images {
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-image.bottom {
    position: static;
  }

  .stats {
    font-size: 32px;
  }

  .values {
    grid-template-columns: 1fr;
    padding-left: 1px;
    padding-right: 1px;
  }

  .value-card {
    box-shadow: none;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .service-image {
    min-height: 200px;
  }

  .service-heading-block {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .multi-image-item {
    padding-left: 0;
    padding-right: 0;
  }

  .project-box {
    padding: 10%;
  }

  .gradient-overlay {
    background-image: linear-gradient(#0009, #0009);
  }

  .project-details {
    flex-direction: column;
    margin-bottom: -150px;
    padding: 0 16px;
  }

  .project-details-block {
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    box-shadow: 0 1px #ffffff1f;
  }

  .section-full {
    height: 90vh;
    min-height: 0;
  }

  .content-full {
    height: 58vh;
  }

  .project-heading-block {
    padding-top: 15%;
    padding-bottom: 50px;
  }

  .contact-info-block {
    grid-template-columns: 1fr;
    padding-left: 1px;
    padding-right: 1px;
  }

  .contact-info {
    box-shadow: none;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .faq-box {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .faq-content {
    margin-top: 20px;
    margin-left: 0;
  }

  .notification-box {
    flex-direction: column;
    width: 100%;
  }

  .utility-page-content {
    width: 270px;
    padding: 30px;
  }

  .service-collection-cards {
    grid-template-columns: 1fr;
  }

  .image-licensing {
    height: 150px;
  }

  .icon-licensing {
    width: 40px;
    height: 40px;
  }

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

  .logo-2, .logo-3 {
    height: 40px;
  }

  .menu-icon-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .primary-button-2 {
    width: auto;
  }

  .blog-box {
    padding: 10%;
  }

  .stats-2 {
    font-size: 32px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .kg-radios {
    grid-column-gap: 33px;
    grid-row-gap: 33px;
    place-content: stretch flex-start;
    align-items: stretch;
    padding-left: 20px;
  }
}

#w-node-fd134dbb-b61d-9b2b-a371-d2e716599da4-c5dab651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-da534b1d-7dc0-2fef-48db-08782f21b15f-c5dab651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-cd097c1b-ab1d-f7fa-c5c1-7a9fbcd407a3-c5dab651, #w-node-ddc14961-1aa1-5df7-024c-35927917d58b-c5dab651, #w-node-d0258dc1-26dd-d8df-afb2-c7b73c3cf182-c5dab651, #w-node-_4a5a54b6-4b84-2837-12ed-e6249a189bb3-c5dab651, #w-node-ca7d0e28-c1cc-4718-e962-2924109c35c6-c5dab651, #w-node-fbb45ec6-025e-9923-0b4c-644c9ca1f367-c5dab651, #w-node-_6f86e1fd-3d41-af20-bc6e-f674dfe5997a-c5dab651, #w-node-_95513bed-b68a-4524-3707-f4373adc8c93-c5dab651, #w-node-_56578162-5cd8-a4bd-e557-303b14a44e08-c5dab651, #w-node-ea8fbdec-d6e9-1cdf-7b83-52af524bedfd-c5dab651, #w-node-e48a0f60-01b6-966d-9dfe-e4a423728415-c5dab651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f739f86c-f041-1f4e-3deb-6e1cc58db9af-c5dab651, #w-node-_75d5911a-c32b-b72b-d2b8-ec70ed554623-c5dab651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start;
}

#w-node-bebf4ff0-4eac-721c-5c2a-5ce2f243cd30-c5dab651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_15a64feb-4dbd-fb97-703a-f13c8f692081-c5dab651 {
  place-self: center;
}

#w-node-_456ed695-f17a-480d-0b20-b7aabfef5134-bfef5131, #w-node-_456ed695-f17a-480d-0b20-b7aabfef5138-bfef5131, #w-node-_456ed695-f17a-480d-0b20-b7aabfef514e-bfef5131, #w-node-_456ed695-f17a-480d-0b20-b7aabfef5141-bfef5131, #w-node-_456ed695-f17a-480d-0b20-b7aabfef5159-bfef5131 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_456ed695-f17a-480d-0b20-b7aabfef515a-bfef5131 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_456ed695-f17a-480d-0b20-b7aabfef5164-bfef5131 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-b75efb3c-c32a-07f9-daed-751be25f8934-e25f892f, #w-node-_01b69402-3032-de2a-5e50-e1288546d197-8546d194, #w-node-_01b69402-3032-de2a-5e50-e1288546d1a3-8546d194 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_01b69402-3032-de2a-5e50-e1288546d1b1-8546d194 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_01b69402-3032-de2a-5e50-e1288546d1b5-8546d194, #w-node-_01b69402-3032-de2a-5e50-e1288546d1c3-8546d194, #w-node-_01b69402-3032-de2a-5e50-e1288546d1c7-8546d194, #w-node-_01b69402-3032-de2a-5e50-e1288546d1d5-8546d194, #w-node-_7b6ac59b-2b06-7fe9-5be6-4796b5e6025c-c5dab652 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dea63304-e51d-c2f1-7d59-5d7f15417f00-c5dab652 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_0255d9af-a450-2cb9-b5bd-7468924d4160-c5dab652 {
  align-self: center;
}

#w-node-_0ddd2118-bd11-09f2-f6db-2e63f7d22e63-c5dab652, #w-node-d1d90659-c8c8-9f7a-9c98-bd71b21bf7dc-c5dab652, #w-node-_2fa3f7b5-20a1-43b0-7172-97810bf98da3-c5dab652, #w-node-_63220fba-a740-68a2-7e9f-607a83ca606a-c5dab652, #w-node-cf437c14-1fb1-9bc6-d10f-f0761ddf40f3-c5dab652, #w-node-_0e51c288-bd25-dac6-ed5a-e0d06e4fb3d2-c5dab652, #w-node-_60af05c6-d034-e89c-5ec9-e9e46aa8b7ad-c5dab652, #w-node-_162fcd8a-597d-f880-2dc4-3b824bf43a3a-c5dab654, #w-node-_0f00f4fe-a201-18ca-2ea1-207aa8abe773-c5dab654, #w-node-_7cc75d01-1fe4-ad36-86ba-d57f69d9bd1a-c5dab655, #w-node-_7cc75d01-1fe4-ad36-86ba-d57f69d9bd27-c5dab655, #w-node-_7cc75d01-1fe4-ad36-86ba-d57f69d9bd2e-c5dab655, #w-node-_7cc75d01-1fe4-ad36-86ba-d57f69d9bd35-c5dab655, #w-node-_7cc75d01-1fe4-ad36-86ba-d57f69d9bd3c-c5dab655 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c8e7b69d-4e62-5a4c-7d52-fd7dc3332098-c5dab656 {
  place-self: center end;
}

#w-node-_7a89dcda-8ea9-29f4-5237-f552eb6a31c7-c5dab657, #w-node-f0094c17-a352-1e18-1413-995fdeabd8fd-c5dab657, #w-node-_0accc89e-bfdb-6c69-4475-198cb737b11b-c5dab657, #w-node-f541ee4a-a2d6-9a83-7638-f063debc8dbd-c5dab657, #w-node-_3cfc84ec-9a33-0170-96f6-6fa17c8860de-c5dab657, #w-node-e74bbb8c-1938-fc3c-ac9b-062f4f797696-c5dab657, #w-node-_8e3b6219-2ac4-c646-b040-86b566b8153a-c5dab657, #w-node-_2f473d3c-d8bc-a499-ea3d-ce0583d1d10b-c5dab657, #w-node-fc65ec6d-ab58-74d7-bf31-f9770af64658-c5dab657, #w-node-_5b1ea391-61bb-8665-5795-36592df529e5-c5dab657, #w-node-_12b01bfb-cda8-5d8f-e2b6-28eff4923483-c5dab657, #w-node-_72eee847-a705-2517-5698-4022aa0ff7cf-c5dab65b, #w-node-_2664a217-5423-eae1-1e5a-d54e861020ad-c5dab65d, #w-node-f0094c17-a352-1e18-1413-995fdeabd8fd-c5dab65d, #w-node-_0accc89e-bfdb-6c69-4475-198cb737b11b-c5dab65d, #w-node-f541ee4a-a2d6-9a83-7638-f063debc8dbd-c5dab65d, #w-node-_3cfc84ec-9a33-0170-96f6-6fa17c8860de-c5dab65d, #w-node-e74bbb8c-1938-fc3c-ac9b-062f4f797696-c5dab65d, #w-node-_8e3b6219-2ac4-c646-b040-86b566b8153a-c5dab65d, #w-node-_2f473d3c-d8bc-a499-ea3d-ce0583d1d10b-c5dab65d, #w-node-fc65ec6d-ab58-74d7-bf31-f9770af64658-c5dab65d, #w-node-_5b1ea391-61bb-8665-5795-36592df529e5-c5dab65d, #w-node-_12b01bfb-cda8-5d8f-e2b6-28eff4923483-c5dab65d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_4a5a54b6-4b84-2837-12ed-e6249a189bb3-c5dab651 {
    grid-column: span 3 / span 3;
  }

  #w-node-ed9eb735-d4e4-fbba-913a-77ed385fbb7a-c5dab651, #w-node-_0af71c94-e05a-490b-e1af-1e308f8edeb3-c5dab651, #w-node-bb218a94-3d6e-9ccc-0a82-090b2a990694-c5dab651, #w-node-dac1ba8d-184e-bd60-6416-a1ed41945438-c5dab651, #w-node-ea8fbdec-d6e9-1cdf-7b83-52af524bedfd-c5dab651, #w-node-e48a0f60-01b6-966d-9dfe-e4a423728415-c5dab651, #w-node-_569c25e6-34fd-9e9b-9c50-f48f73a78591-c5dab651, #w-node-_5a1b6409-db9f-45f3-dbad-8f1ba8e7689f-c5dab651 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f739f86c-f041-1f4e-3deb-6e1cc58db9af-c5dab651 {
    order: -9999;
  }

  #w-node-_7a89dcda-8ea9-29f4-5237-f552eb6a320b-c5dab657, #w-node-_7a89dcda-8ea9-29f4-5237-f552eb6a322c-c5dab657 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f541ee4a-a2d6-9a83-7638-f063debc8dbd-c5dab657, #w-node-f541ee4a-a2d6-9a83-7638-f063debc8dbd-c5dab65d {
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ca7d0e28-c1cc-4718-e962-2924109c35c6-c5dab651, #w-node-fbb45ec6-025e-9923-0b4c-644c9ca1f367-c5dab651, #w-node-_6f86e1fd-3d41-af20-bc6e-f674dfe5997a-c5dab651, #w-node-_95513bed-b68a-4524-3707-f4373adc8c93-c5dab651 {
    grid-column: span 3 / span 3;
  }

  #w-node-_01b69402-3032-de2a-5e50-e1288546d1a3-8546d194, #w-node-_01b69402-3032-de2a-5e50-e1288546d1b5-8546d194, #w-node-_01b69402-3032-de2a-5e50-e1288546d1c7-8546d194 {
    order: 9999;
  }

  #w-node-c8e7b69d-4e62-5a4c-7d52-fd7dc3332098-c5dab656 {
    justify-self: start;
  }

  #w-node-f541ee4a-a2d6-9a83-7638-f063debc8dbd-c5dab657, #w-node-f541ee4a-a2d6-9a83-7638-f063debc8dbd-c5dab65d {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_456ed695-f17a-480d-0b20-b7aabfef5164-bfef5131 {
    justify-self: start;
  }

  #w-node-c8e7b69d-4e62-5a4c-7d52-fd7dc3332098-c5dab656 {
    justify-self: stretch;
  }
}


