:root {
  --black: black;
  --accent-primary-1: #151010;
  --neutral-100: #fff;
  --neutral-800: #1b1311;
  --white: white;
  --neutral-300: #ededed;
  --secondary-color-1: #1f1914;
  --neutral-600: #7f7f80;
  --neutral-700: #505051;
  --neutral-400: #cfcfd0;
  --neutral-500: #a6a7a8;
  --neutral-200: #f4f4f4;
  --font-primary: Manrope, sans-serif;
  --font-accent: "Great Vibes", cursive;
  --light-grey: #f4f4f4;
}

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

body {
  color: var(--black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

a {
  border-color: var(--black);
  color: var(--black);
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-xxsmall {
  padding: .5rem;
}

.button {
  border-color: var(--accent-primary-1);
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--black);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--black);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--black);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--black);
  background-color: var(--accent-primary-1);
  color: var(--neutral-100);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  border-radius: 96px;
  padding: 26px 38px;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
}

.button.is-secondary {
  border-color: var(--neutral-800);
  color: var(--neutral-800);
  background-color: #0000;
}

.button.is-secondary.is-secondary-white {
  border-color: var(--neutral-100);
  color: var(--neutral-100);
}

.button.is-white {
  border-color: var(--neutral-100);
  background-color: var(--neutral-100);
  color: var(--neutral-800);
}

.form-input {
  border: 1px solid var(--black);
  background-color: var(--white);
  height: auto;
  min-height: 2.75rem;
  color: var(--black);
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::placeholder {
  color: #0009;
}

.cookie-modal_title {
  margin-bottom: .1875em;
  font-size: 1.25rem;
  font-weight: 700;
}

.cookie-modal_title.is-small {
  font-size: 1.1875rem;
}

.cookie-modal_link {
  transition: color .15s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_closebutton_line {
  background-color: #515750;
  width: 1rem;
  height: 2px;
  position: absolute;
}

.cookie-modal_closebutton_line.is-right {
  transform: rotate(-45deg);
}

.cookie-modal_closebutton_line.is-left {
  transform: rotate(45deg);
}

.screenreader-only {
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}

.cookie-modal_button {
  color: #fff;
  text-align: center;
  background-color: #515750;
  border-radius: .25rem;
  padding: .875em 1.5em 1rem;
  font-size: .9375rem;
  text-decoration: none;
  transition: color .2s cubic-bezier(.25, .46, .45, .94), background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_button:hover {
  background-color: #262926;
}

.cookie-modal_button.is-secondary {
  color: #515750;
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
  font-size: .875rem;
  font-weight: 700;
}

.cookie-modal_button.is-secondary:hover {
  color: #262926;
  text-decoration: underline;
}

.cookie-modal_component {
  background-color: #fff;
  border-radius: .25rem;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .9375rem;
  line-height: 1.4;
  display: flex;
  position: relative;
  box-shadow: 0 4px 1rem #2629260d;
}

.ck-cookie-w {
  z-index: 9500;
  max-width: 25rem;
  position: fixed;
  inset: auto 1.25rem 1.25rem auto;
}

.cookie-modal_button-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #f3f7f2;
  border-radius: 0 0 .25rem .25rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.cookie-modal_button-wrap.is-small {
  justify-content: flex-start;
  padding: 1.5rem;
}

.cookie-modal_button-wrap.in-pref-manger {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin: 2rem -2rem -2.25rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.cookie-modal_closebutton {
  z-index: 5;
  cursor: pointer;
  background-color: #f3f7f2;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem 1.25rem -2.5rem auto;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.cookie-modal_closebutton.is-sticky {
  position: sticky;
  top: -1rem;
}

.cookie-modal_styles {
  display: none;
}

.cookie-modal_content-wrap {
  padding: 1.75rem 2rem;
}

.cookie-modal_content-wrap.is-small {
  padding: 1.5rem;
}

.cookie-modal_radio_description {
  cursor: pointer;
  font-size: .875rem;
  font-weight: 400;
}

.cookie-modal_radio_button {
  float: left;
  border: 1.75px solid #999c98;
  border-radius: .375rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  margin-left: -1.75rem;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_radio_button.w--redirected-checked {
  background-color: #515750;
  background-image: url('../images/radio__checkmark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: .625rem;
  border: 1px solid #515750;
}

.cookie-modal_radio_button.w--redirected-focus {
  box-shadow: none;
}

.cookie-modal_radio_button.is-always-active {
  cursor: not-allowed;
  background-color: #515750;
  background-image: url('../images/radio__checkmark.svg');
  background-position: 45%;
  background-repeat: no-repeat;
  background-size: .625rem;
  border-color: #515750;
}

.cookie-preference_wrapper {
  width: 100%;
  max-height: 100%;
  padding: 2rem;
  position: relative;
  overflow: auto;
}

.cookie-modal_form-wrap {
  margin-bottom: 0;
}

.cookie-modal_radio_label {
  cursor: pointer;
  margin-bottom: .25rem;
  font-size: .9375rem;
  font-weight: 600;
}

.cookie-modal_form {
  padding-top: 1.25rem;
  padding-bottom: .5rem;
}

.cookie-preference_component {
  z-index: 9525;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.cookie-modal_radio {
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 0;
  padding-left: 1.75rem;
  transition: color .15s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_radio.is--not-allowed {
  cursor: not-allowed;
}

.cookie-preference_background {
  opacity: 1;
  -webkit-backdrop-filter: blur(.5rem);
  backdrop-filter: blur(.5rem);
  cursor: pointer;
  background-color: #d7e7d580;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cookie-preference-button {
  z-index: 9475;
  color: #262926;
  text-decoration: none;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 1.25rem;
}

.cookie-preference-button:hover {
  text-decoration: underline;
}

.cookie-preference-button_flex {
  color: #262926;
  background-color: #fff;
  border-radius: .5rem .5rem 0 0;
  align-items: center;
  margin-bottom: -.125rem;
  padding: .75em 1em .875em;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: margin-bottom .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.cookie-preference-button_flex:hover {
  margin-bottom: 0;
  text-decoration: underline;
}

.cookie-preference-button_icon {
  flex: none;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: .375rem;
}

.page-wrapper {
  position: relative;
  overflow-x: hidden;
}

.padding-global {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

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

.text-size-regular {
  font-size: 16px;
  line-height: 1.125em;
}

.text-size-large {
  font-size: 20px;
  line-height: 1.1em;
}

.text-weight-medium {
  font-weight: 500;
}

.text-style-uppercase {
  letter-spacing: .06em;
  text-transform: uppercase;
}

.text-style-eyebrow {
  color: var(--neutral-800);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.125em;
}

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

.heading-style-h2 {
  color: var(--neutral-800);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.316em;
}

.heading-style-h2.text-color-white {
  font-size: 3.75rem;
}

.heading-style-h3 {
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.417em;
}

.heading-style-display-1 {
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 90px;
  font-weight: 600;
  line-height: 1.156em;
}

.heading-style-display-2 {
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.233em;
}

.text-color-white {
  color: var(--neutral-100);
  font-size: 85px;
}

.text-color-neutral-300 {
  color: var(--neutral-300);
}

.text-color-neutral-800 {
  color: var(--neutral-800);
}

.divider {
  background-color: var(--neutral-300);
  width: 100%;
  height: 1px;
}

.eyebrow-line {
  background-color: var(--white);
  flex-shrink: 0;
  width: 32px;
  height: 1px;
}

.eyebrow-line.dark {
  background-color: var(--neutral-800);
}

.navbar_component {
  z-index: 10;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}

.navbar_content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.navbar_left {
  align-items: center;
  gap: 64px;
  display: flex;
}

.navbar_logo-link {
  display: flex;
}

.navbar_logo {
  width: 174px;
}

.navbar_menu-list {
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}

.navbar_link {
  color: var(--neutral-100);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.navbar_right {
  align-items: center;
  gap: 24px;
  display: flex;
}

.background-color-secondary-1 {
  background-color: var(--secondary-color-1);
}

.navbar_menu-button {
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  display: none;
}

.navbar_menu-bar {
  background-color: var(--neutral-100);
  width: 100%;
  height: 1.5px;
}

.buttons-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  display: flex;
}

.hero_grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  padding-bottom: 6rem;
  display: grid;
}

.hero_grid.top-padding {
  padding-top: 6rem;
}

.hero_content {
  flex-direction: column;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
}

.hero_paragraph {
  max-width: 420px;
  margin-bottom: 40px;
}

.hero_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: auto;
}

.hero_component {
  width: 100%;
  position: relative;
}

.hero_component._100-h {
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: auto;
  display: flex;
}

.padding-section-small-top {
  padding-top: 6rem;
  padding-bottom: 0;
}

.stats_grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  width: 100%;
  display: grid;
}

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

.margin-top-64px {
  margin-top: 64px;
}

.padding-section-large {
  padding-top: 240px;
  padding-bottom: 240px;
}

.eyebrow_row {
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
}

.about_grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px 64px;
  width: 100%;
  display: grid;
}

.about_image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  min-height: auto;
}

.paragraph_body {
  max-width: 520px;
  margin-bottom: 40px;
}

.services_heading-grid {
  grid-template-columns: 1fr 1fr;
  align-items: end;
  column-gap: 40px;
  width: 100%;
  margin-bottom: 64px;
  display: grid;
}

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

.service_card {
  flex-direction: column;
  text-decoration: none;
  display: flex;
}

.service_card-image {
  object-fit: cover;
  width: 100%;
  height: 320px;
}

.service_card-content {
  text-align: left;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  display: flex;
}

.service_card-title {
  color: var(--neutral-100);
  text-align: left;
  margin-bottom: 0;
}

.padding-section-services {
  padding-top: 260px;
  padding-bottom: 120px;
}

.flex-justify-center {
  justify-content: center;
}

.gallery_grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  width: 100%;
  display: grid;
}

.gallery_column {
  flex-direction: column;
  gap: 40px;
  display: flex;
}

.gallery_image {
  object-fit: cover;
  width: 100%;
  transform: rotate(0);
}

.gallery_image.rotate {
  aspect-ratio: 1;
  transform: rotate(90deg);
}

.gallery_social-row {
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  display: grid;
}

.social-icons-row {
  align-items: center;
  gap: 16px;
  display: flex;
}

.social-icon {
  background-color: var(--neutral-800);
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

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

.cta_grid {
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 40px;
  width: 100%;
  display: grid;
}

.footer_component {
  padding-top: 120px;
  padding-bottom: 40px;
}

.footer_top {
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  width: 100%;
  padding-bottom: 64px;
  display: grid;
}

.footer_logo {
  width: 160px;
}

.footer_tagline {
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer_contact-links {
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  display: flex;
}

.footer_contact-link {
  align-items: center;
  gap: 16px;
  text-decoration: none;
  display: flex;
}

.footer_contact-icon {
  width: 24px;
  height: 24px;
}

.footer_contact-label {
  color: var(--neutral-600);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: 14px;
}

.footer_contact-value {
  color: var(--neutral-800);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.footer_title {
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
}

.footer_columns {
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  display: grid;
}

.footer_list {
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}

.footer_link {
  color: var(--neutral-600);
  font-size: 16px;
  text-decoration: none;
}

.footer_bottom {
  border-top: 1px solid var(--neutral-300);
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  display: flex;
}

.div-block {
  margin-top: 33px;
}

.heading-h1 {
  color: var(--neutral-100);
  text-transform: capitalize;
  font-size: 5.3rem;
}

.button-2 {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.form_checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.margin-bottom, .margin-bottom.margin-small, .margin-bottom.margin-medium, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.text-size-medium {
  font-size: 1.125rem;
}

.contact9_image-wrapper {
  border-radius: var(--\<unknown\|relume-variable-radius-large\>);
  overflow: hidden;
}

.form_checkbox-label {
  margin-bottom: 0;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.form_field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.form_message-success {
  color: #027a48;
  background-color: #ecfdf3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.container-large-2 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-large-2 {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.contact9_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.form_message-success-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.text-style-link {
  text-decoration: underline;
}

.contact9_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form_checkbox-icon {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form_checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form_checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.error-text {
  color: #e23939;
}

.form_input {
  border: 1px solid var(--neutral-800);
  border-radius: 20rem;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.form_input::placeholder {
  color: var(--\<unknown\|relume-variable-neutral-shade-7-60\>);
}

.form_input.is-text-area {
  border-radius: 1.6rem;
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.contact9_image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.success-text {
  font-weight: 600;
}

.padding-global-2 {
  padding-left: 5%;
  padding-right: 5%;
}

.form_field-wrapper {
  position: relative;
}

.contact9_form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.heading-style-h2-2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.form_message-error {
  color: #b42318;
  background-color: #fef3f2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.success-hero {
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  display: flex;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .button {
    padding: 20px 28px;
    font-size: 15px;
  }

  .heading-style-display-1 {
    font-size: 3.75rem;
  }

  .heading-style-display-2 {
    font-size: 44px;
  }

  .navbar_left {
    gap: 32px;
  }

  .navbar_menu-list {
    gap: 20px;
    display: none;
  }

  .navbar_link {
    font-size: 14px;
  }

  .navbar_menu-button {
    display: flex;
  }

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

  .hero_content {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .padding-section-small-top {
    padding-top: 60px;
  }

  .stats_grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }

  .padding-section-large {
    padding-top: 120px;
    padding-bottom: 120px;
  }

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

  .services_heading-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

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

  .padding-section-services {
    padding-top: 160px;
    padding-bottom: 80px;
  }

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

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

  .cta_grid {
    grid-template-columns: 1fr;
    justify-items: start;
    row-gap: 24px;
  }

  .footer_component {
    padding-top: 80px;
  }

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

  .hide-on-tablet {
    display: none;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

  .contact9_content {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .heading-style-h2-2 {
    font-size: 2.75rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .cookie-modal_button-wrap {
    padding: 1.5rem;
  }

  .cookie-modal_button-wrap.in-pref-manger {
    margin: 1.5rem -1.5rem -2rem;
    padding-top: 1.25rem;
    position: sticky;
    bottom: -2rem;
  }

  .cookie-modal_closebutton {
    margin-right: 1.25rem;
  }

  .cookie-modal_closebutton.is-sticky {
    top: -1rem;
  }

  .cookie-modal_content-wrap {
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cookie-preference_wrapper {
    padding-top: 2rem;
  }

  .cookie-modal_form {
    padding-top: .75rem;
  }

  .cookie-preference-button_icon {
    margin-right: 0;
  }

  .cookie-preference-button_text {
    display: none;
  }

  .heading-style-h2, .heading-style-h2.text-color-white {
    font-size: 2.5rem;
  }

  .heading-style-display-1 {
    font-size: 2.75rem;
  }

  .heading-style-display-2 {
    font-size: 36px;
  }

  .hero_image {
    min-height: 320px;
  }

  .padding-section-small-top {
    padding-top: 48px;
  }

  .padding-section-large {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about_image {
    min-height: 280px;
  }

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

  .padding-section-services {
    padding-top: 100px;
    padding-bottom: 60px;
  }

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

  .cta_grid {
    row-gap: 20px;
  }

  .footer_component {
    padding-top: 60px;
  }

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

  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

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

  .contact9_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h2-2 {
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  .button {
    text-align: center;
    width: 100%;
  }

  .cookie-modal_button {
    flex: auto;
    padding-left: 1.25em;
    padding-right: 1.25em;
  }

  .cookie-modal_component {
    max-width: 100%;
  }

  .ck-cookie-w {
    max-width: 100%;
    inset: auto 0% 0%;
  }

  .cookie-modal_button-wrap.is-small {
    justify-content: space-between;
    padding: 1.25rem;
  }

  .cookie-modal_button-wrap.in-pref-manger {
    bottom: 0;
  }

  .cookie-modal_closebutton {
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .cookie-modal_content-wrap.is-small {
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cookie-preference_wrapper {
    max-width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .cookie-preference_component {
    align-items: flex-end;
  }

  .cookie-preference-button {
    left: 1rem;
  }

  .heading-style-h2, .heading-style-h2.text-color-white {
    font-size: 2.25rem;
  }

  .heading-style-display-1 {
    font-size: 2.5rem;
  }

  .heading-style-display-2 {
    font-size: 32px;
  }

  .navbar_logo {
    width: 130px;
  }

  .navbar_right {
    gap: 12px;
  }

  .buttons-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .stats_grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .padding-section-large {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .padding-section-services {
    padding-top: 80px;
    padding-bottom: 48px;
  }

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

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

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

#w-node-_453a5f14-4e13-593b-3699-c2b8b495d66b-28717695 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_453a5f14-4e13-593b-3699-c2b8b495d676-28717695 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

@media screen and (max-width: 479px) {
  #w-node-_453a5f14-4e13-593b-3699-c2b8b495d663-28717695, #w-node-_453a5f14-4e13-593b-3699-c2b8b495d667-28717695, #w-node-_9d2d4976-89ed-0ab0-a5ab-ef52fdaa52d4-28717695, #w-node-c4ce8bea-78bb-6588-110a-a974d5043e51-28717695 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


