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

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

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

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

:root {
  --body: #080a0f;
  --black: #080a0f;
  --accent: #ffcf9c;
  --accent-light: #ffcf9c1a;
  --white: white;
}

.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-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

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

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

body {
  color: var(--body);
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  color: #030711;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.05;
}

h2 {
  color: var(--black);
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

.main-container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.wrap-v-x-small {
  flex-direction: column;
  display: flex;
}

.section {
  padding: 120px 24px;
  position: relative;
}

.section.light-background {
  background-color: #f9f9f9;
}

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

.tab-content-button {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: #4b5563;
  background-color: #ddd0;
  align-items: flex-start;
  padding: 24px 32px;
  display: flex;
}

.tab-content-button.w--current {
  background-color: #fff;
  border-radius: 8px;
}

.text-area {
  color: #000;
  letter-spacing: -.02em;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  min-height: 268px;
  margin-bottom: 0;
  padding: 24px;
  font-size: 16px;
  line-height: 1.5;
}

.text-area:focus {
  border-color: #000;
}

.text-area::placeholder {
  color: #a3a3a3;
}

.navigation-link-2 {
  grid-column-gap: 12px;
  color: #000;
  letter-spacing: -.02em;
  flex: none;
  align-items: center;
  padding: 8px;
  font-size: 18px;
  line-height: 1.4;
  text-decoration: none;
  display: flex;
  position: relative;
}

.dropdown-link {
  grid-column-gap: 40px;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 18px;
  line-height: 24px;
  display: flex;
}

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

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

.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 3px 3px auto;
}

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

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

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

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

.max-width-small {
  width: 100%;
  max-width: 400px;
}

.max-width-small._500px {
  max-width: 500px;
}

.text-span-strong {
  color: #000;
  font-weight: 500;
}

.footnote {
  color: #030711;
  font-size: 12px;
  line-height: 1.9;
  text-decoration: none;
}

.footnote.text-color-gray-600 {
  color: var(--body);
  font-size: 14px;
  font-weight: 500;
}

.wrap-v-large {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.hero-button-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.logo-link {
  width: 200px;
  margin-top: -5px;
}

.navigation-wrapper {
  grid-column-gap: 16px;
  align-items: center;
  display: flex;
}

.paragraph-regular {
  max-width: 460px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

.paragraph-regular.larger {
  font-size: 18px;
}

.navigation-menu {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
  position: relative;
}

.header-grid {
  grid-column-gap: 72px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}

.navigation-button {
  grid-column-gap: 8px;
  background-color: var(--accent);
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.navigation-button:hover {
  background-color: #c74e38;
}

.navigation-link {
  color: var(--black);
  letter-spacing: -.01em;
  white-space: nowrap;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 6px;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all .35s;
}

.navigation-link:hover {
  color: #080808;
  border: 1px solid #e6e6e6;
}

.navigation-link.w--current {
  color: var(--black);
}

.section-header-large {
  background-color: #f9f9f9;
  align-items: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 140px 24px;
  display: flex;
  position: relative;
}

.menu-button {
  border-radius: 4px;
  padding: 8px;
  transition: color .3s;
}

.menu-button:hover {
  color: #1457ff;
}

.hero-heading {
  color: var(--black);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
}

.navigation-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.header-tall-image {
  width: 50%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.header-image {
  z-index: 1;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.navigation {
  background-color: #fff;
  align-items: center;
  width: 100%;
  min-height: 96px;
  padding: 24px;
  display: flex;
}

.logo {
  width: 100%;
}

.space {
  height: 24px;
}

.space._32 {
  height: 32px;
}

.space._10 {
  height: 10px;
}

.features-grid {
  grid-template-columns: 1fr;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 32px;
}

.check-icon-large {
  margin-right: 14px;
}

.paragraph-large {
  color: var(--body);
  letter-spacing: -.02em;
  max-width: 600px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

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

.image-cover.tall {
  height: 600px;
  overflow: scroll;
}

.feature-wrapper {
  color: var(--black);
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

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

.button {
  border: 2px solid var(--accent);
  background-color: var(--accent);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: all .3s;
  display: flex;
}

.button:hover {
  color: var(--accent);
  background-color: #fff;
}

.footer-link-wrap {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
  justify-content: flex-end;
  align-items: center;
  max-width: 1080px;
  display: flex;
}

.container-large-4 {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.legal-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-logo {
  width: 220px;
}

.footer-link-2 {
  color: var(--black);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
}

.footer-divider {
  background-color: #889eca1f;
  width: 100%;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 32px;
}

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

.footer {
  background-color: #f7f7f7;
  padding: 80px 3% 64px;
  position: relative;
}

.code-embed {
  width: 24px;
  height: 24px;
}

.code-embed.check-icon-large {
  color: var(--accent);
}

.grid-content-copy {
  grid-column-gap: 92px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  align-items: center;
}

.feature-image-wrap {
  background-color: #f5f5f5;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin-bottom: 72px;
  overflow: hidden;
}

.paragraph-regular-5 {
  color: var(--body);
  margin-bottom: 0;
}

.feature-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  padding: 0;
  display: flex;
}

.wrap-v-xsmall {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.sub-heading-regular {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.feature-card {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #fff;
  flex-direction: column;
  padding: 64px 42px;
  display: flex;
}

.title-wrap-small {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 584px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.grid-three-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

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

.service-image.cover-left {
  object-position: 0% 50%;
}

.f-title-wrapper-center {
  z-index: 5;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.f-title-wrapper-center.margin-bottom-48 {
  margin-bottom: 48px;
}

.form-details {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  width: 100%;
  max-width: 528px;
  display: flex;
}

.success-message {
  color: var(--black);
  background-color: #c4eecb;
  border-radius: 12px;
  padding: 14px 18px;
}

.input-field {
  color: var(--black);
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  min-height: 56px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 32px;
  transition: border-color .3s;
}

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

.input-field.text-area {
  color: var(--black);
  min-height: 194px;
}

.input-field.dropdown-field {
  color: #9a9a9a;
  background-color: #f3f3f380;
}

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

.form-map {
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.action-s {
  color: #030711;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.form-content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.icon-tiny {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.icon-tiny.email {
  padding: 2px;
}

.form-icon-wrapper {
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 100%;
  padding: 8px;
}

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

.paragraph-regular-6 {
  color: #030711;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 32px;
}

.form-field-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
}

.error-message {
  color: var(--black);
  background-color: #fde7e7;
  border-radius: 12px;
  padding: 12px 16px;
}

.form-phone-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

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

.form-button-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.map-image {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.div-block-2 {
  grid-column-gap: 53px;
  grid-row-gap: 53px;
  align-items: center;
  display: flex;
}

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

.footer-social-link {
  background-color: #0000;
  border: 1px solid #0000001a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .3s, border-color .3s;
  display: flex;
}

.footer-social-link:hover {
  background-color: #0000000d;
}

.footer-social-link:focus {
  border-color: #fff3;
}

.footer-images-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  align-items: center;
  display: flex;
}

.whatsapp-icon-footer {
  filter: invert();
  width: 20px;
}

.call-us-now-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
}

.call-us-now-icon {
  border: 1px solid var(--accent);
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  display: flex;
}

.call-us-now-icon.whatsapp {
  border-color: #24d366;
}

.call-us-text {
  color: var(--black);
  font-size: 10px;
  line-height: 20px;
}

.hero-contact-link-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 54px;
  display: flex;
}

.call-us-flex {
  font-weight: 500;
}

.f-section-small {
  padding: 100px 5% 40px;
  position: relative;
}

.f-container-regular {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.logos-title {
  color: var(--black);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.f-logo-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.f-logo-plain {
  justify-content: center;
  align-items: center;
  width: 180px;
  padding: 24px;
  display: flex;
}

.f-logo-plain.assi-group {
  width: 110px;
}

.title-wrapper {
  width: 100%;
  max-width: 500px;
  margin-bottom: 42px;
}

.lightbox {
  color: var(--black);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
  text-decoration: none;
  position: relative;
}

.gallery-icon {
  z-index: 2;
  background-image: url('../images/plus-icon-white.svg');
  background-position: 0 0;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.image {
  width: 200px;
}

.image-caption {
  z-index: 1;
  text-align: center;
  background-color: #fff;
  padding-top: 12px;
  font-weight: 500;
  position: relative;
}

.slider {
  background-color: #0000;
  height: 700px;
}

.text-block-2 {
  font-weight: 700;
}

.grid-3-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.blog-card-wrapper {
  color: #6e7191;
  max-width: 1010px;
  margin-left: auto;
  text-decoration: none;
}

.blog-card-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  transform: translate(0);
}

.blog-card-image-wrapper.mg-bottom-32px {
  position: relative;
}

.blog-card-title {
  color: var(--black);
}

.h1-blog {
  font-size: 42px;
  font-weight: 700;
}

.blog-image {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 600px;
  margin-top: 40px;
}

.blog-rich-text-block {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-rich-text-block h2 {
  font-size: 32px;
}

.span-underline {
  font-weight: 500;
  text-decoration: underline;
}

.div-block-3 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.link {
  color: var(--body);
  font-size: 14px;
  text-decoration: none;
}

.link:hover {
  opacity: .6;
}

@media screen and (min-width: 1920px) {
  .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) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 42px;
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .dropdown-link {
    padding-top: 4px;
    padding-bottom: 4px;
  }

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

  .logo-link {
    margin-right: 0;
  }

  .navigation-wrapper {
    align-items: center;
    width: auto;
    display: flex;
  }

  .navigation-menu {
    color: #393b6a;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
  }

  .navigation-menu.w--open {
    background-color: #282556;
    border-color: #fff;
  }

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

  .navigation-link {
    width: 100%;
  }

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

  .menu-icon:hover {
    color: var(--accent);
  }

  .menu-button.w--open {
    color: var(--accent);
    background-color: #f9f9f9;
    justify-content: center;
    align-items: center;
  }

  .header-tall-image {
    width: 100%;
    height: 300px;
    inset: auto 0% 0%;
  }

  .navigation {
    position: relative;
  }

  .image-cover.tall {
    height: 400px;
  }

  .footer-link-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .legal-container {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .footer-link-2 {
    flex: none;
    width: auto;
  }

  .footer-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: center;
  }

  .grid-content-copy {
    grid-row-gap: 72px;
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding-bottom: 64px;
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .form-details {
    max-width: none;
  }

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

  .lightbox {
    height: 500px;
  }

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

  .image-cover {
    height: 100%;
  }

  .slider {
    height: 600px;
  }

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

  .blog-card-image {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  h2 {
    font-size: 36px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
    overflow: hidden;
  }

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

  .image-cover.tall {
    height: auto;
  }

  .legal-container {
    flex-direction: column;
  }

  .footer {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .grid-three-column, .form-field-grid {
    grid-template-columns: 1fr;
  }

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

  .image-cover {
    height: 100%;
  }

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

  .h1-blog {
    font-size: 36px;
  }

  .blog-image {
    height: 400px;
  }

  .blog-rich-text-block h2 {
    font-size: 24px;
  }

  .blog-rich-text-block h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .wrap-v-x-small {
    text-align: center;
    align-items: center;
  }

  .wrap-v-x-small.gap-20px {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .section.blog {
    padding-top: 42px;
  }

  .tab-content-button {
    flex-direction: column;
    padding: 16px;
  }

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

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

  .whatsapp-icon {
    width: 26px;
  }

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

  .hero-button-wrapper {
    justify-content: center;
    align-items: center;
  }

  .logo-link {
    width: 145px;
  }

  .header-block {
    text-align: center;
  }

  .paragraph-regular {
    font-size: 18px;
    line-height: 30px;
  }

  .navigation-button {
    display: none;
  }

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

  .header-tall-image {
    height: 320px;
  }

  .paragraph-large {
    font-size: 18px;
    line-height: 30px;
  }

  .button {
    text-align: center;
  }

  .footer-link-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .feature-image-wrap {
    width: 120px;
    height: 120px;
  }

  .feature-card {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .form-map {
    min-height: 600px;
  }

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

  .div-block-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .h2-contact {
    margin-bottom: 32px;
    font-size: 42px;
  }

  .lightbox {
    height: 300px;
  }

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

  .slider {
    height: 400px;
  }

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

  .h1-blog {
    font-size: 32px;
  }

  .blog-image {
    height: 300px;
  }
}

#w-node-_2b213646-538a-8838-f424-3bd327e76396-27e7621d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_2b213646-538a-8838-f424-3bd327e7639b-27e7621d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_2b213646-538a-8838-f424-3bd327e76251-27e7621d {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2b213646-538a-8838-f424-3bd327e7639b-27e7621d {
    grid-area: 1 / 1 / 2 / 2;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}