:root {
  --blue-05: #0f212f;
  --gold-accent: #c59762;
  --neutral-01: #f8f8f8;
  --blue-03: #164352;
  --neutral-02: #d2d7db;
  --neutral-03: #6f777c;
  --blue-light: #c6d3dd;
}

.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: #333;
  font-family: Work Sans, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Libre Baskerville, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
}

h2 {
  color: var(--blue-05);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Libre Baskerville, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.4;
}

h3 {
  color: var(--blue-05);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Libre Baskerville, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.4;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Libre Baskerville, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

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

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

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

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

ol {
  margin-top: 0;
  margin-bottom: .625rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .625rem;
}

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

label {
  margin-bottom: 8px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.2;
}

em {
  font-style: italic;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 1rem 1rem 1rem 2rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

figcaption {
  text-align: center;
  margin-top: .75rem;
  font-size: .8rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

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

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.button {
  background-color: var(--gold-accent);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
}

.button:hover {
  background-color: var(--neutral-01);
  color: var(--blue-05);
}

.button.is-secondary {
  color: #103446;
  background-color: #0000;
  border: 1px solid #103446;
}

.button.is-secondary:hover {
  color: #fff;
  background-color: #103446;
}

.button.is-secondary.is-gold {
  border-width: 2px;
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.button.is-secondary.is-gold:hover {
  background-color: var(--gold-accent);
  color: #fff !important;
}

.button.is-blue {
  background-color: #103446;
}

.button.is-blue:hover {
  background-color: var(--gold-accent);
  color: var(--neutral-01);
}

.hide {
  display: none;
}

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

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

.utility-page_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-page_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

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

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

.overflow-visible {
  overflow: visible;
}

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

.text-size-huge {
  font-size: 1.25rem;
  line-height: 1.4;
}

.heading-style-h5 {
  font-family: Libre Baskerville, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.max-width-small {
  width: 100%;
  max-width: 26rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16.125rem;
}

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

.max-width-large {
  width: 100%;
  max-width: 45rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 8.2rem;
}

.spacing-block-xxsmall {
  width: 100%;
  height: .25rem;
}

.spacing-block-xsmall {
  width: 100%;
  height: .5rem;
}

.spacing-block-small {
  width: 100%;
  height: 1rem;
}

.spacing-block-medium {
  width: 100%;
  height: 2rem;
}

.spacing-block-large {
  width: 100%;
  height: 3rem;
}

.spacing-block-xlarge {
  width: 100%;
  height: 4rem;
}

.spacing-block-xhuge {
  width: 100%;
  height: 8rem;
}

.spacing-section-small {
  width: 100%;
  height: 7rem;
}

.spacing-section-medium {
  width: 100%;
  height: 7.5rem;
}

.spacing-section-xlarge {
  width: 100%;
  height: 11.6rem;
}

.spacing-block-custom2 {
  width: 100%;
  height: 1.25rem;
}

.spacing-block-custom5 {
  width: 100%;
  height: 2.5rem;
}

.form_input {
  color: #6f777c;
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: 0;
  padding: .5rem 1rem;
}

.form_input.is_textarea {
  resize: none;
  min-width: 100%;
  max-width: 100%;
  height: 7.5rem;
  min-height: 7.5rem;
  max-height: 7.5rem;
}

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

.navbar_background {
  border-bottom: 1px solid var(--neutral-02);
  opacity: 0;
  background-color: #fff;
  transition: opacity .2s;
  position: absolute;
  inset: 0%;
}

.navbar_component {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar_logo-wrapper {
  transition: opacity .2s;
}

.navbar_logo-wrapper:hover {
  opacity: .8;
}

.navbar {
  z-index: 99;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: fixed;
  top: 0;
  left: 0%;
  right: 0%;
}

.navbar_links-scrolling {
  grid-column-gap: 2.75rem;
  color: var(--blue-05);
  justify-content: flex-end;
  align-items: stretch;
  display: none;
}

.section_home-header {
  background-image: url('../images/bg-1_1.webp');
  background-position: 50%;
  background-size: auto;
}

.navbar-link {
  border: 0 solid #000;
  border-bottom: 2px solid #c5976200;
  font-size: 1rem;
  font-weight: 600;
  transition: color .2s;
}

.navbar-link:hover {
  color: var(--gold-accent) !important;
}

.navbar-link.w--current {
  border-bottom: 2px solid var(--gold-accent);
}

.home-header_component {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

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

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

.logo-butrus-karam {
  color: var(--blue-05);
  width: 19.75rem;
  height: 2.25rem;
}

.section_home-financial-advising {
  background-color: var(--neutral-01);
}

.home-about-us_component {
  flex-flow: column;
  display: flex;
}

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

.home-financial-advising_main-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.divisor {
  height: 1px;
}

.divisor.background-color-neutral-02 {
  background-color: var(--neutral-02);
}

.divisor.background-color-blue-03 {
  background-color: var(--blue-03);
}

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

.icon-circle {
  background-color: #eff0f3;
  border-radius: 50%;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  display: flex;
}

.div-block-4 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
  width: 21rem;
  display: flex;
}

.code-embed {
  color: #4b5b6c;
  width: 1.5rem;
  height: 1.5rem;
}

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

.home-services_component {
  flex-flow: column;
  display: flex;
}

.home-services_header-full {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.div-block-8 {
  background-color: var(--neutral-01);
  min-height: 23.25rem;
  padding: 2.5rem 2rem;
}

.section_home-testimonials {
  background-color: var(--neutral-01);
}

.section_home-cta {
  background-color: #103446;
}

.div-block-9 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.section_footer {
  background-color: #1d2124;
  padding-top: 3.5rem;
  padding-bottom: 1rem;
}

.div-block-8-copy {
  background-color: var(--blue-05);
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-height: 23.25rem;
  padding: 2.5rem 2rem;
  transition: background-color .2s;
  display: flex;
}

.div-block-8-copy:hover {
  background-color: var(--gold-accent);
}

.home-testimonials_slide {
  width: 48%;
  margin-right: 3rem;
}

.home-testimonials_slide-block {
  background-color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 24.4rem;
  padding: 2.5rem 2rem;
  display: flex;
}

.home_testimonial_slide-author {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  align-items: center;
  font-family: Libre Baskerville, sans-serif;
  font-size: 1rem;
  display: flex;
}

.home-testimonials_slider-button {
  background-color: var(--blue-05);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.75rem;
  height: 3.75rem;
  margin-top: 0;
  margin-bottom: 0;
  transition: background-color .2s;
  display: none;
  inset: -6.75rem 4.75rem auto auto;
}

.home-testimonials_slider-button:hover {
  background-color: var(--gold-accent);
}

.home-testimonials_slider-button.is-right {
  bottom: auto;
  left: auto;
  right: 0%;
}

.home-testimonials_slider {
  background-color: #0000;
  width: 100%;
  height: auto;
}

.footer_main, .footer_legal {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer_logo-wrapper {
  transition: opacity .2s;
}

.footer_logo-wrapper:hover {
  opacity: .7;
}

.footer_social-link-wrapper {
  background-color: #47525a;
  border-radius: 50%;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  transition: opacity .2s;
  display: flex;
}

.footer_social-link-wrapper:hover {
  opacity: .7;
}

.footer_social-icon {
  color: #d9d9d9;
  width: 1.5rem;
  height: 1.5rem;
}

.footer_address {
  grid-column-gap: .375rem;
  grid-row-gap: .375rem;
  color: #d9d9d9;
  align-items: flex-start;
  font-size: 1rem;
  display: flex;
}

.footer_address-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
  display: flex;
}

.footer_copywright {
  color: #d9d9d9;
  font-size: .875rem;
}

.logo-butrus-karam-full-dark {
  height: 5.5rem;
}

.logo-butrus-karam-full-dark.hide {
  opacity: 0;
}

.logo-butrus-karam-full-light {
  opacity: 0;
  height: 4.2rem;
  position: absolute;
  left: 0;
}

.home-financial-advising_component {
  flex-flow: column;
  display: flex;
}

.div-block-11 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: grid;
}

.text-block-2 {
  color: var(--gold-accent);
  font-family: Libre Baskerville, sans-serif;
  font-size: 3rem;
}

.home-about-us_number {
  max-width: 15.25rem;
}

.heading-3 {
  max-width: 25.75rem;
}

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

.div-block-4-copy {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  width: 26.875rem;
  display: flex;
}

.image-4 {
  width: 3.5rem;
  height: 100%;
}

.home-about-us_team-member {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  align-items: flex-start;
  display: flex;
}

.about-us_social-link-wrapper {
  transition: opacity .2s;
}

.about-us_social-link-wrapper:hover {
  opacity: .7;
}

.home-about-us_team-member-info {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 17.875rem;
  display: flex;
}

.home-services_header {
  max-width: 28rem;
}

.home-about-us_associated-wrapper, .home-financial-advising_subsection-info {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.home-financial-advising_subsection-img {
  object-fit: cover;
  background-image: url('../images/quebracabeça2_1.avif');
  background-position: 50%;
  background-size: cover;
  width: auto;
  height: 32rem;
}

.home_testimonial-job-title {
  color: var(--neutral-03);
}

.text-style-italic {
  font-style: italic;
  font-weight: 400;
}

.footer_social-links {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: flex-start;
  display: flex;
}

.div-block-14 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.navbar_links {
  grid-column-gap: 2.75rem;
  color: #fff;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.div-block-15, .home-testimonials_header-fulll {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.right-text-description {
  text-align: right;
  width: 100%;
  max-width: 26rem;
}

.home-testimonials_head {
  width: 100%;
  max-width: 35.875rem;
}

.contact-us-form_component {
  z-index: 5;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: #fff;
  border-radius: 2px;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 76rem;
  max-height: 90vh;
  padding: 4.625rem;
  display: flex;
  position: relative;
  overflow: auto;
}

.spacing-block-huge {
  width: 100%;
  height: 5rem;
}

.heading-style-h4 {
  font-family: Libre Baskerville, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

.text-link {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  font-size: .875rem;
  font-weight: 600;
  transition: color .2s;
}

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

.contact-us-form_left-content {
  min-width: 26rem;
}

.form_component {
  width: 100%;
  max-width: 42rem;
}

.form_field-wrapper {
  width: 100%;
}

.form_line {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.form_spacing {
  width: 100%;
  height: 1.75rem;
}

.link-block {
  border-bottom: 2px solid var(--gold-accent);
  color: var(--gold-accent);
}

.link-block-2 {
  border-bottom: 2px solid var(--gold-accent);
  color: var(--neutral-01);
}

.link-block-3 {
  border-bottom: 2px solid var(--gold-accent);
  color: var(--blue-03);
}

.link-block-4 {
  border-bottom: 2px solid var(--gold-accent);
  color: var(--neutral-03);
}

.link-block-5 {
  border-bottom: 2px solid var(--gold-accent);
  color: var(--blue-light);
}

.link-block-6, .link-block-7 {
  border-bottom: 2px solid var(--gold-accent);
  color: var(--blue-05);
}

.whatsapp-box {
  background-color: var(--neutral-01);
  max-width: 20.125rem;
  padding: 2rem;
}

.lightbox_bg {
  background-color: #252525cc;
  width: 100%;
  height: 100%;
  position: absolute;
}

.lightbox {
  z-index: 101;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
}

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.lightbox_image {
  object-fit: cover;
  width: 45%;
  max-width: 22.5rem;
}

.lightbox_content {
  z-index: 5;
  background-color: #fff;
  border-radius: 3.625rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 50rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-color-dark-65 {
  color: #252525a6;
}

.lightbox_close-icon {
  cursor: pointer;
  width: 1.25rem;
  position: absolute;
  inset: 2rem 2rem auto auto;
}

.lightbox_content-main {
  width: 55%;
  max-width: 27.5rem;
  padding: 4.625rem 4.25rem;
}

.button-2 {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 6rem;
  justify-content: center;
  align-items: center;
  padding: 1.75rem 3.125rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.1;
  transition: background-color .2s;
}

.button-2:hover {
  background-color: #252525d9;
}

.button-2.is-light {
  color: #252525;
  background-color: #fff;
}

.button-2.is-light:hover {
  background-color: #ffffffb3;
}

.max-width-contact-us-text {
  width: 100%;
  max-width: 26rem;
}

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

.section_success-main {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.logo-butrus-karam-success {
  height: 6rem;
  position: absolute;
  inset: 4.2rem auto auto;
}

.success-main_component {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.min-width-medium {
  flex-flow: column;
  min-width: 16.3rem;
  display: flex;
}

.button-success {
  color: #fff;
  text-align: center;
  background-color: #103446;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
}

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

.button-success.is-secondary {
  color: #103446;
  background-color: #0000;
  border: 1px solid #103446;
}

.button-success.is-secondary:hover {
  border-color: var(--gold-accent);
  background-color: var(--gold-accent);
  color: #fff;
}

.button-success.is-secondary.is-gold {
  border-width: 2px;
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

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

.button-success.is-blue {
  background-color: #103446;
}

.button-success.is-blue:hover {
  background-color: var(--gold-accent);
  color: var(--neutral-01);
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.625rem;
  }

  blockquote {
    font-size: 1.125rem;
  }

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

  .button.is-secondary:hover {
    color: var(--blue-03);
    background-color: #0000;
  }

  .button.is-secondary.is-gold {
    display: none;
  }

  .text-size-huge {
    font-size: 1.15rem;
  }

  .max-width-small.is-smaller {
    max-width: none;
  }

  .max-width-xsmall {
    max-width: 18.7rem;
  }

  .max-width-xsmall.is-larger {
    max-width: 22.8rem;
  }

  .spacing-block-medium {
    height: 1.5rem;
  }

  .spacing-block-large {
    height: 2.5rem;
  }

  .spacing-block-xlarge {
    height: 3rem;
  }

  .spacing-block-xhuge {
    height: 6rem;
  }

  .spacing-section-small {
    height: 5.125rem;
  }

  .spacing-section-medium {
    height: 6.25rem;
  }

  .spacing-section-xlarge {
    height: 10rem;
  }

  .spacing-block-custom5 {
    height: 2rem;
  }

  .navbar_logo-wrapper.w--current:hover {
    opacity: 1;
  }

  .navbar {
    position: absolute;
  }

  .navbar_links-scrolling {
    grid-column-gap: 1.75rem;
  }

  .navbar_links-scrolling.hide-mobile {
    display: none;
  }

  .home-financial-advising_main-content {
    grid-template-columns: 1fr;
  }

  .home-services_header-full {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .div-block-7 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-8-copy:hover {
    background-color: var(--blue-05);
  }

  .home-testimonials_slide {
    width: 100%;
  }

  .home-testimonials_slide-block {
    min-height: 21rem;
  }

  .home-testimonials_slider-button {
    inset: auto auto -5.5rem 0%;
  }

  .home-testimonials_slider-button:hover {
    background-color: var(--blue-05);
  }

  .home-testimonials_slider-button.is-right {
    inset: auto 0% -5.5rem auto;
  }

  .home-testimonials_slider {
    margin-bottom: 5.5rem;
  }

  .footer_legal {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    align-items: center;
  }

  .footer_logo-wrapper:hover, .footer_social-link-wrapper:hover {
    opacity: 1;
  }

  .div-block-11 {
    grid-template-rows: auto auto auto;
  }

  .div-block-13 {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .div-block-4-copy {
    display: none;
  }

  .home-about-us_team-member {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .about-us_social-link-wrapper:hover {
    opacity: 1;
  }

  .home-about-us_team-member-info {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .home-services_header {
    max-width: none;
  }

  .home-about-us_associated-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .home-financial-advising_subsection-info {
    align-items: center;
  }

  .home-financial-advising_subsection-img {
    height: 28.7rem;
  }

  .navbar_links {
    grid-column-gap: 1.75rem;
  }

  .navbar_links.hide-mobile {
    display: none;
  }

  .home-testimonials_header-fulll {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .right-text-description {
    text-align: left;
    max-width: none;
  }

  .home-testimonials_head {
    max-width: none;
  }

  .contact-us-form_component {
    flex-flow: column;
    justify-content: flex-start;
    padding: 1.825rem;
  }

  .spacing-block-huge {
    height: 3rem;
  }

  .contact-us-form_left-content {
    min-width: 0;
  }

  .max-width-contact-us-text, .max-width-contact-us-text.is-smaller {
    max-width: none;
  }

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

  .button-success.is-secondary:hover {
    color: var(--blue-03);
    background-color: #0000;
  }

  .button-success.is-secondary.is-gold {
    display: none;
  }
}

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

  h2 {
    font-size: 1.625rem;
  }

  h3, h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1.125rem;
  }

  blockquote {
    font-size: 1rem;
  }

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

  .hide-mobile {
    display: none;
  }

  .text-size-huge, .heading-style-h5 {
    font-size: 1.125rem;
  }

  .spacing-block-medium {
    height: 1.25rem;
  }

  .spacing-block-large {
    height: 1.5rem;
  }

  .spacing-block-xlarge {
    height: 2rem;
  }

  .spacing-block-xhuge {
    height: 4rem;
  }

  .spacing-section-small {
    height: 2.5rem;
  }

  .spacing-section-medium {
    height: 3.75rem;
  }

  .spacing-block-custom5 {
    height: 1.5rem;
  }

  .navbar_logo-wrapper {
    z-index: 102;
    position: relative;
  }

  .navbar_links-scrolling {
    grid-row-gap: 2.375rem;
    flex-direction: column;
  }

  .div-block-5 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    align-items: stretch;
  }

  .div-block-7 {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .div-block-8 {
    min-height: 19rem;
  }

  .div-block-9 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .home-testimonials_slide-block {
    min-height: 22.7rem;
  }

  .footer_main {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
  }

  .footer_other {
    flex-flow: column;
    order: 1;
    align-items: center;
    display: flex;
  }

  .footer_copywright {
    text-align: center;
  }

  .div-block-11 {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .home-financial-advising_subsection-img {
    height: 30.4rem;
  }

  .body {
    font-size: 1rem;
  }

  .navbar_links {
    grid-row-gap: 2.375rem;
    flex-direction: column;
    display: none;
  }

  .contact-us-form_component {
    width: 95%;
    max-height: 95vh;
  }

  .spacing-block-huge {
    height: 2rem;
  }

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

  .form_line {
    flex-flow: column;
  }

  .form_spacing {
    height: 1rem;
  }

  .whatsapp-box {
    max-width: none;
  }

  .heading-style-h3 {
    font-size: 1.375rem;
  }

  .lightbox_image {
    width: 100%;
    max-width: none;
    height: 17.75rem;
  }

  .lightbox_content {
    border-radius: 2.25rem;
    flex-direction: column;
    max-height: 80vh;
    overflow: auto;
  }

  .lightbox_close-icon {
    top: 1rem;
    right: 1rem;
  }

  .lightbox_content-main {
    width: 100%;
    max-width: none;
    padding: 2rem 1.25rem;
  }

  .button-2 {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 479px) {
  blockquote {
    padding-left: 1.5rem;
  }

  .button {
    display: inline-flex;
  }

  .spacing-block-medium.is-larger {
    height: 2.4rem;
  }

  .spacing-section-small {
    height: 3rem;
  }

  .spacing-section-xlarge {
    height: 8.8rem;
  }

  .navbar_component {
    justify-content: center;
  }

  .home-header_component {
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-5 {
    text-align: left;
  }

  .home-services_header-full {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .div-block-8 {
    text-align: left;
  }

  .div-block-9 {
    justify-content: space-between;
    align-items: stretch;
  }

  .home-testimonials_slide-block {
    min-height: 30rem;
  }

  .home_testimonial_slide-author {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer_address-wrapper {
    justify-content: space-between;
  }

  .footer_copywright {
    font-size: 1rem;
  }

  .div-block-11 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .div-block-13 {
    justify-content: flex-start;
    align-items: center;
  }

  .home-financial-advising_subsection-img {
    height: 18.4rem;
  }

  .body {
    text-align: center;
  }

  .dash {
    margin-bottom: 1rem;
    display: none;
  }

  .home_testimonial-job-title {
    min-height: 2.8rem;
  }

  .pipe {
    display: none;
  }

  .list {
    text-align: left;
  }

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

  .div-block-14 {
    justify-content: center;
    align-items: center;
  }

  .home-testimonials_header-fulll {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .contact-us-form_component {
    width: 100%;
    max-height: 100vh;
    padding: 2.5rem 1.025rem 1.025rem;
  }

  .whatsapp-box {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .lightbox_close-icon {
    position: fixed;
  }

  .button-success {
    display: inline-flex;
  }
}

#w-node-ccd966ea-4307-10f5-6b81-fd03adcc6c59-9e28391e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-b2a8a198-22ea-0e9f-e0cb-29ecd360ac8a-9e28391e {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-ccd966ea-4307-10f5-6b81-fd03adcc6c59-9e28391e {
    grid-column: span 3 / span 3;
  }

  #w-node-bdd90571-f761-93a6-bb59-4949e07fc47d-9e28391e {
    justify-self: auto;
  }

  #w-node-fe11dabb-aca3-151a-56be-d965d2bdf858-9e28391e {
    order: 9999;
  }

  #w-node-c15f0a23-1a9c-b824-8684-b93ce751418e-9e28391e {
    place-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b2a8a198-22ea-0e9f-e0cb-29ecd360ac8a-9e28391e, #w-node-ccd966ea-4307-10f5-6b81-fd03adcc6c59-9e28391e {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b2a8a198-22ea-0e9f-e0cb-29ecd360ac8a-9e28391e, #w-node-_6d6557f1-9ab5-773c-0352-d5132c79ccb5-9e28391e, #w-node-_87ef411c-68dc-ab44-bfbd-b842a7c4caa0-9e28391e, #w-node-_5367b9c8-5f6b-4543-3b97-33364fa7bd6f-9e28391e {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/WorkSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/WorkSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/WorkSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/LibreBaskerville-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/LibreBaskerville-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}