@font-face {
  font-family: Claritycity;
  src: url('../fonts/ClarityCity-Thin.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Claritycity;
  src: url('../fonts/ClarityCity-SemiBold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Claritycity;
  src: url('../fonts/ClarityCity-ExtraBold.otf') format("opentype"), url('../fonts/ClarityCity-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Claritycity;
  src: url('../fonts/ClarityCity-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #141414;
  --primary: #00225a;
  --body-paragraphs: #5c5c5c;
  --white: white;
  --dark-grey: #292929;
}

.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: #262626;
  font-family: Claritycity, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.05;
}

h2 {
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}

p {
  color: var(--body-paragraphs);
  margin-bottom: 10px;
}

strong {
  font-weight: bold;
}

.navigation-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  height: auto;
  min-height: 4.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation-button-wrapper {
  margin-left: 1rem;
}

.navigation-menu-button {
  padding: 0;
}

.navigation-link {
  color: var(--black);
  padding: 1rem 1.25rem;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: font-size .25s cubic-bezier(.165, .84, .44, 1);
}

.navigation-link:hover {
  color: var(--primary);
}

.button {
  border: .125rem solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  padding: .75rem 2rem;
  font-weight: 500;
  transition: background-color .25s cubic-bezier(.165, .84, .44, 1), border-color .25s cubic-bezier(.165, .84, .44, 1);
}

.button:hover {
  color: var(--primary);
  background-color: #ebecf2;
  border-color: #ebecf2;
}

.button.w--current {
  transition: opacity .2s, background-color .25s cubic-bezier(.165, .84, .44, 1);
}

.button.is-secondary {
  color: var(--primary);
  background-color: #f4f4f4;
  border-color: #ecf4f4;
}

.button.is-secondary:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #ecf4f4;
  text-align: left;
}

.button.is-secondary.cta-large-button {
  font-size: 1.1rem;
}

.navigation-component {
  background-color: #fff;
  align-items: center;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation-menu {
  align-items: center;
  display: flex;
}

.navigation-logo {
  width: 135px;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-small {
  margin-top: 20px;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

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

.margin-bottom.margin-small {
  margin-bottom: 1rem;
}

.margin-bottom.margin-xsmall {
  margin-bottom: .5rem;
}

.margin-bottom.margin-medium {
  margin-bottom: 2rem;
}

.footer-logo-link {
  display: block;
}

.footer-link {
  color: var(--body-paragraphs);
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-weight: 400;
  text-decoration: none;
  transition: color .15s;
}

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

.footer-content {
  max-width: 22.5rem;
}

.footer-component {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.text-size-small {
  font-size: .875rem;
}

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

.margin-top.margin-medium {
  margin-top: 2rem;
}

.margin-top.margin-small {
  margin-top: 1rem;
}

.footer-logo {
  border-radius: 0;
  width: 200px;
  margin-bottom: 32px;
  display: block;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.heading-small {
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}

.arrow-button {
  grid-column-gap: .2rem;
  grid-row-gap: .5rem;
  color: var(--primary);
  grid-template-rows: auto;
  grid-template-columns: max-content max-content;
  grid-auto-columns: 1fr;
  justify-content: start;
  place-items: center start;
  font-weight: 600;
  text-decoration: none;
  transition-property: color;
  display: grid;
}

.arrow-button.black {
  color: var(--black);
}

.footer {
  width: 100%;
}

.footer-list {
  flex-direction: column;
  align-items: flex-start;
  font-weight: 600;
  display: flex;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.icon-1x1-small {
  color: var(--primary);
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
}

.icon-1x1-small.black {
  color: var(--black);
}

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

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.home-header-component {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
  position: relative;
}

.why-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  align-items: center;
  display: flex;
}

.goals-component {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.goals-background {
  z-index: -1;
  background-color: #f7f7f7;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  width: 30%;
  height: 80%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.why-item-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 32px;
}

.section-cta {
  margin-bottom: 40px;
  position: relative;
}

.service-home-item {
  background-color: #f7f7f7;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

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

.padding-section-large.hero {
  margin-top: 113px;
  padding-top: 13rem;
  padding-bottom: 13rem;
  position: relative;
}

.icon-1x1-large {
  color: var(--primary);
  width: 54px;
  height: 54px;
}

.image {
  border-radius: 1rem;
  width: 100%;
}

.image.tall {
  object-fit: cover;
  object-position: 50% 50%;
  height: 620px;
}

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.home-services-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
}

.section-home-goals {
  position: relative;
}

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

.text-size-medium li {
  margin-bottom: 10px;
}

.cta-component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: var(--primary);
  color: #fff;
  border-radius: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  align-items: start;
  padding: 6rem 5rem;
  display: grid;
}

.section-home-header {
  overflow: hidden;
}

.why-component {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.why-component.invert-ratio {
  grid-template-columns: .75fr 1fr;
}

.heading-style-h5 {
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-image-wrapper {
  position: relative;
}

.contact-contact-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
}

.form-input {
  background-color: #f4f4f4;
  border: 1px #000;
  border-radius: 1rem;
  min-height: 3rem;
  margin-bottom: 0;
  padding: .5rem 1rem;
}

.form-input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
}

.contact-item {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.error-text {
  color: #e23939;
}

.error-message {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.contact-form-component {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.contact-background {
  z-index: -1;
  background-color: #f7f7f7;
  border-radius: 1rem;
  width: 60%;
  height: 80%;
  position: absolute;
  inset: auto auto 5% -7%;
}

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

.success-message {
  background-color: #ebf1f2;
  border-radius: 1rem;
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 300;
}

.contact-header-component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start end;
  display: grid;
}

.form-label {
  font-weight: 400;
}

.contact-form-wrapper {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.slider-arrow---brix {
  background-color: var(--primary);
  border-radius: 50%;
  width: 64px;
  min-width: 64px;
  min-height: 64px;
  max-height: 64px;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 22px;
  transition: box-shadow .35s, background-color .35s, color .35s, transform .35s;
  box-shadow: 0 4px 4px #0c046633;
}

.slider-arrow---brix:hover {
  color: #170f49;
  background-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 20px -8px #0c04661a;
}

.slider-arrow---brix:active {
  transform: scale(.94);
}

.service-header {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 85vh;
  max-height: 85%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-icon {
  width: 32px;
  margin-left: auto;
  margin-right: auto;
}

.utility-h1 {
  font-size: 2rem;
}

.space._18 {
  height: 18px;
}

.cta {
  color: #fff;
  font-size: 3rem;
}

.submit-button-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: .5rem;
  display: flex;
}

.contact-link {
  color: var(--primary);
  font-weight: 500;
}

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: auto 30px 30px auto;
}

.profile-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.chat-block {
  background-color: #fff;
  border-radius: 8px;
  width: 80%;
  padding: 15px;
}

.live-chat-text {
  color: #fff;
  text-decoration: none;
}

.profile-image-wrapper-2 {
  position: relative;
}

.live-icon-chat {
  object-fit: contain;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  margin-right: 0;
}

.top-section {
  justify-content: space-between;
  align-items: center;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.live-icon {
  background-color: #00b94a;
  border-radius: 100%;
  width: 13px;
  height: 13px;
  position: absolute;
  inset: 2px auto auto 2px;
}

.live-icon.profile-live-icon {
  border: 1.5px solid #fff;
  width: 10px;
  height: 10px;
  inset: auto 2px 2px auto;
}

.chat-section {
  background-color: #e6ddd4;
  height: 50%;
  padding: 16px 20px;
}

.close-livechat-icon {
  width: auto;
  height: auto;
}

.whatsapp-icon {
  width: 26px;
  height: auto;
}

.whatsapp-chat {
  background-color: #fff;
  border: 1px solid #00000012;
  border-radius: 20px;
  flex-direction: column;
  width: 300px;
  height: 315px;
  margin-bottom: 16px;
  display: flex;
  overflow: hidden;
}

.live-chat-bottom-text {
  font-size: 10px;
}

.live-chat-bottom-text.block {
  margin-bottom: 5px;
  font-size: 12px;
}

.live-chat-top-text {
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 500;
  position: static;
}

.live-chat-top-text.block {
  color: #b0b0b0;
  margin-bottom: 10px;
  font-size: 12px;
}

.livechat-button {
  background-color: #00b94a;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  display: flex;
}

.whatsapp-container {
  z-index: 30;
  cursor: pointer;
  background-color: #000;
  border: 1px solid #fff3;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.whatsapp-container:hover {
  background-color: #383838;
  transform: scale(1.05);
}

.live-chat-link {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 25%;
  text-decoration: none;
  display: flex;
}

.close-live-chat-container {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 10%;
  height: 100%;
  display: flex;
}

.small-whatsapp-icon {
  object-fit: contain;
  width: auto;
  height: auto;
  margin-right: 10px;
}

.profile-image {
  border-radius: 50%;
  width: 120px;
  height: 120px;
}

.social-link-2 {
  filter: invert();
  background-color: #0000;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .3s, border-color .3s;
  display: flex;
}

.social-link-2:hover {
  background-color: #ffffff1a;
}

.social-link-2:focus {
  background-color: #ffffff0a;
  border-color: #fff3;
}

.footer-social-icon {
  width: 17px;
}

.no-margin-top {
  margin-top: 0;
}

.attachment-link-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--black);
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
  display: flex;
}

.attachment-icon {
  width: 20px;
  height: 20px;
}

.hero-background-image {
  z-index: -2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-overlay {
  z-index: -1;
  background-image: linear-gradient(#0003, #0003);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.gallery {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 4rem;
  display: grid;
}

.lightbox-link {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.image-2 {
  object-fit: cover;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.div-block {
  width: 100%;
  max-width: 650px;
}

.team-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2rem;
  display: grid;
}

.ima {
  object-fit: cover;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
}

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

.h2-center {
  text-align: center;
  margin-bottom: 4rem;
}

.height-1-7 {
  line-height: 1.7;
}

.primary-link {
  color: var(--primary);
  text-decoration: none;
}

.primary-link:hover {
  opacity: .7;
}

.code-embed {
  width: 28px;
  height: 28px;
  margin-top: 16px;
}

.primary-bold {
  color: var(--primary);
  text-transform: uppercase;
}

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

@media screen and (min-width: 1920px) {
  .padding-section-large.hero {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .whatsapp-chat {
    display: none;
  }

  .livechat-button {
    transition: all .2s;
  }

  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }
}

@media screen and (max-width: 991px) {
  .navigation-button-wrapper {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0;
  }

  .navigation-menu-button {
    padding: 0;
  }

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

  .navigation-link {
    text-align: left;
    width: 100%;
    padding: 1.5rem 0;
    font-size: 1.125rem;
    display: block;
  }

  .button.is-mobile-full {
    width: 100%;
  }

  .navigation-component {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .menu-icon-line-bottom {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navigation-menu {
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    flex-direction: row;
    justify-content: flex-start;
    padding-bottom: 1.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: flex;
    position: absolute;
    overflow: auto;
  }

  .menu-icon-line-top {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon-line-middle {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navigation-menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon-line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

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

  .footer-content {
    margin-right: 0;
  }

  .footer-component {
    grid-template-columns: auto auto auto;
  }

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

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

  .home-header-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-top: 4rem;
  }

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

  .goals-background {
    width: 90%;
    height: 50%;
    inset: auto auto 0% 0%;
  }

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

  .service-home-item {
    padding: 2rem;
  }

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

  .image {
    width: 100%;
  }

  .image.tall {
    height: 500px;
  }

  .home-services-component {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    width: 100%;
  }

  .cta-component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    padding-left: 4rem;
    padding-right: 4rem;
  }

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

  .why-component.invert-ratio {
    grid-template-columns: 1fr 1fr;
  }

  .contact-image-wrapper {
    min-height: 24rem;
  }

  .contact-contact-wrapper {
    justify-content: space-between;
    width: 100%;
  }

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

  .contact-header-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    place-items: start;
  }

  .whatsapp-block {
    bottom: 20px;
    right: 20px;
  }
}

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

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 1.5rem;
  }

  .navigation-container {
    min-height: 4rem;
  }

  .navigation-logo-link {
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

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

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

  .footer-bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading-small {
    font-size: 1rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .home-header-component {
    grid-row-gap: 3rem;
  }

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

  .service-home-item {
    padding: 1.5rem;
  }

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

  .image.tall {
    height: 400px;
  }

  .heading-style-h4 {
    font-size: 1.25rem;
  }

  .home-services-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    grid-auto-columns: max-content;
    justify-content: space-between;
  }

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

  .cta-component {
    padding: 4rem 2rem;
  }

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

  .why-component.invert-ratio {
    grid-template-columns: 1fr;
  }

  .heading-style-h5 {
    font-size: .875rem;
  }

  .contact-form-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .contact-header-component {
    grid-template-columns: 1fr;
  }

  .slider-arrow---brix {
    width: 50px;
    min-width: 50px;
    min-height: 50px;
    max-height: 50px;
  }

  .service-header {
    font-size: 1.5rem;
  }

  .submit-button-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .whatsapp-block {
    bottom: 15px;
    right: 15px;
  }

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

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 1.25rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

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

  .footer-component {
    grid-template-columns: auto;
  }

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

  .footer-logo {
    width: 260px;
  }

  .home-header-component, .goals-component {
    grid-template-columns: 1fr;
  }

  .goals-background {
    height: 32%;
    bottom: 2%;
  }

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

  .padding-section-large.hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cta-button-wrapper {
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .image.tall {
    height: 300px;
  }

  .home-services-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

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

  .cta-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding: 2rem 1.5rem;
  }

  .why-component {
    grid-template-columns: 1fr;
  }

  .contact-contact-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .form-input {
    border-radius: .75rem;
  }

  .contact-form-component, .contact-header-component {
    grid-template-columns: 1fr;
  }

  .service-header {
    font-size: 1.25rem;
  }

  .cta {
    text-align: center;
    font-size: 2rem;
    line-height: 1.2;
  }

  .submit-button-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-block {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    bottom: 0;
    right: 0;
  }

  .whatsapp-icon {
    width: 26px;
  }

  .whatsapp-chat {
    width: 100%;
    height: 40vh;
    position: relative;
  }

  .whatsapp-container {
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 0;
  }

  .gallery {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

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

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

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

#w-node-_0b30d98d-4877-94f7-465b-6924b7f4244f-3f0c8674 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4113c2b1-84ff-802c-9c4b-3c9f45321aab-3f0c8674 {
  justify-self: start;
}

#w-node-_0a5ad97e-5a16-f6c9-44de-92011ba5e5fe-1ba5e5f6 {
  place-self: center end;
}

@media screen and (max-width: 991px) {
  #w-node-_4113c2b1-84ff-802c-9c4b-3c9f45321a92-3f0c8674 {
    order: -9999;
  }

  #w-node-_57760064-f1be-189f-2d30-e491926d9e4f-926d9e4a {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_0a5ad97e-5a16-f6c9-44de-92011ba5e5fe-1ba5e5f6 {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_57760064-f1be-189f-2d30-e491926d9e4f-926d9e4a {
    grid-column: span 1 / span 1;
  }

  #w-node-_0a5ad97e-5a16-f6c9-44de-92011ba5e5fe-1ba5e5f6 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Claritycity';
  src: url('../fonts/ClarityCity-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Claritycity';
  src: url('../fonts/ClarityCity-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Claritycity';
  src: url('../fonts/ClarityCity-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Claritycity';
  src: url('../fonts/ClarityCity-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Claritycity';
  src: url('../fonts/ClarityCity-ExtraBold.otf') format('opentype'), url('../fonts/ClarityCity-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Claritycity';
  src: url('../fonts/ClarityCity-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}