@font-face {
  font-family: Merriweathersans;
  src: url('../fonts/MerriweatherSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Merriweathersans;
  src: url('../fonts/MerriweatherSans-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ebgaramond;
  src: url('../fonts/EBGaramond-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Merriweathersans;
  src: url('../fonts/MerriweatherSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --fonts--heading-1: 80px;
  --fonts--heading-2: 64px;
  --fonts--p-1: 24px;
  --fonts--p-2: 20px;
  --fonts--heading-3: 40px;
  --gap-medium: 0px;
}

.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-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  color: #333;
  font-family: Ebgaramond, Georgia, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

h1 {
  font-family: Ebgaramond, Georgia, sans-serif;
  font-size: var(--fonts--heading-1);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 120%;
}

h2 {
  font-family: Ebgaramond, Georgia, sans-serif;
  font-size: var(--fonts--heading-2);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 72px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Ebgaramond, Georgia, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 56px;
}

h4 {
  color: #4e6569;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Ebgaramond, Georgia, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 110%;
}

p {
  margin-bottom: 10px;
  font-family: Ebgaramond, Georgia, sans-serif;
  font-weight: 400;
}

a {
  color: #17171a;
  font-family: Merriweathersans, Arial, sans-serif;
  font-weight: 400;
  text-decoration: underline;
}

.paragraph-1 {
  font-size: var(--fonts--p-1);
  line-height: 32px;
}

.paragraph-1.hero {
  text-align: center;
  margin-top: 20px;
}

.color {
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  display: flex;
}

.color.gold {
  background-color: #b79b4c;
}

.color.green {
  background-color: #60753b;
}

.color.black {
  background-color: #000;
}

.style {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.text-link {
  transition: color .2s;
}

.text-link:hover {
  color: #60753b;
}

.div-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.paragraph-2 {
  color: #4e6569;
  font-size: var(--fonts--p-2);
  line-height: 28px;
}

a {
  text-decoration: none;
}


.paragraph-2 > a {
  font-family: Ebgaramond, Georgia, sans-serif;
  color: #d79068;
  font-size: var(--fonts--p-2);
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-bottom-color 0.3s;
}

.paragraph-2 > a:hover {
  color: #c27a51;
  border-bottom-color: #e6bba2;
  font-size: var(--fonts--p-2);
}

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

.paragraph-2.margin-top-24.text-color-003 {
  color: #d79068;
}

.paragraph-2.text-white {
  color: #f4f1ec;
}

.section {
  z-index: 20;
  justify-content: center;
  align-items: flex-start;
  padding-top: 112px;
  display: flex;
}

.section.hero {
  background-image: none;
  background-size: auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  position: relative;
}

.h1-hero {
  color: #17171a;
  text-align: center;
  width: 100%;
}

.h1-hero.align-left {
  text-align: left;
}

.cta {
  color: #fff;
  background-color: #8589ba;
  padding: 24px;
  font-family: Merriweathersans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.cta.margin-top-56 {
  color: #fff;
}

.hero-wrapper {
  z-index: 20;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 992px;
  max-width: 1440px;
  margin-top: -112px;
  display: flex;
  position: relative;
}

.navbar {
  z-index: 100;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #f5f5f5cc;
  width: 100%;
  height: 10vh;
  position: sticky;
  top: 0;
}

.logo {
  z-index: 10;
  position: absolute;
  inset: 0 auto auto;
}

.navbar-wrapper {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.navbar-link {
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
}

.navbar-block {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: row;
  justify-content: center;
  width: 355px;
  display: flex;
}

.navbar-block.left, .navbar-block.right {
  justify-content: center;
  width: 355px;
}

.navbar-block-middle {
  z-index: 40;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: row;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-profile-image {
  z-index: 110;
  border-radius: 24px;
}

.h2-center {
  z-index: 20;
  text-align: center;
  line-height: 110%;
  position: relative;
}

.h2-center.margin-bottom-360 {
  z-index: 40;
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
}

.wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 992px;
  max-width: 1440px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: relative;
}

.wrapper.margin-top-400 {
  min-width: 992px;
  position: relative;
}

.desktop-services-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.h3 {
  text-align: center;
  line-height: 40px;
}

.h3.margin-bottom-24.text-align-left {
  font-size: var(--fonts--heading-3);
}

.section-quote {
  z-index: 20;
  justify-content: center;
  align-items: center;
  padding-top: 300px;
  display: flex;
}

.section-quote.hero {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  position: relative;
}

.section-quote._26vh {
  padding-top: 26svh;
}

.div-block-4 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #e9e8e7;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
}

.div-block-5 {
  border-radius: 20px;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1.2fr;
}

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

.div-block-6 {
  background-color: #eee;
  height: 45%;
}

.grid-block-vertical {
  padding-left: 88px;
  padding-right: 88px;
}

.grid-block-vertical.height-55 {
  height: 55%;
}

.grid-block-vertical.height-45 {
  height: 45%;
}

.grid-block-vertical.color-grey.padding-bottom-48.padding-top-48 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

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

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

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

.color-grey {
  background-color: #eee;
}

.hero-image {
  position: absolute;
  inset: 0%;
}

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

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

.text-field {
  height: 70px;
  margin-bottom: 24px;
  padding-left: 24px;
  font-size: 16px;
}

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

.ebook-form {
  width: 100%;
  max-width: 460px;
}

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

.cta-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  margin-top: 56px;
  display: flex;
}

.cta-ebook {
  background-color: #0000;
  border: 1px solid #00000073;
  padding: 24px;
  font-family: Merriweathersans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.submit-form {
  color: #fff;
  background-color: #8589ba;
  margin-top: 16px;
  padding: 24px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.padding-bottom-48 {
  padding-bottom: 48px;
}

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

.hidden {
  display: none;
}

.navbar-logo {
  z-index: 20;
  width: 170px;
  position: absolute;
  inset: auto;
}

.navbar-logo.relative {
  z-index: 20;
  width: 170px;
  position: relative;
  inset: auto;
}

.quote-blocks {
  flex-flow: row;
  max-width: 1196px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0%;
}

.quote-image._3 {
  z-index: 13;
  position: relative;
}

.quote-image._2 {
  z-index: 12;
  position: relative;
  bottom: 333px;
  right: -64px;
}

.quote-image._1 {
  position: relative;
  top: 95px;
}

.span-underline {
  background-image: url('../images/span_underline.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: scroll;
}

.services-image-wrapper {
  border-radius: 20px;
  min-width: 50%;
  max-width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.section-90 {
  z-index: 20;
  justify-content: center;
  align-items: center;
  padding-top: 400px;
  padding-bottom: 400px;
  display: flex;
}

.section-90.hero {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  position: relative;
}

.section-90._26vh {
  padding-top: 26vh;
}

.breakpoint {
  z-index: 200;
  background-color: red;
  width: 50px;
  height: 50px;
  position: fixed;
}

.section-top {
  z-index: 20;
  justify-content: center;
  height: 90vh;
  padding-top: 10vh;
  display: flex;
}

.section-thankyou {
  z-index: 20;
  padding-top: 112px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-top._26vh {
  padding-top: 26vh;
}

._3-column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  margin-top: 92px;
  display: flex;
}

.testimonial-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #f4f5f2;
  border-radius: 20px;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

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

.paragraph-3 {
  color: #4e6569;
  font-family: Ebgaramond, Georgia, sans-serif;
  font-size: 20px;
  line-height: 110%;
}

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

.testimonial-column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.separator {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 112px;
  padding-top: 24px;
  display: flex;
}

.separator-line {
  background-color: #a7b2b4;
  width: 100%;
  height: 1px;
}

.caption {
  color: #a7b2b4;
  text-transform: uppercase;
  flex: none;
  margin-left: 16px;
  margin-right: 16px;
  font-family: Merriweathersans, Arial, sans-serif;
  font-weight: 400;
}

._2-column-grid.margin-top-112.max-w {
  grid-column-gap: var(--gap-medium);
  grid-row-gap: var(--gap-medium);
}

.max-w {
  max-width: 992px;
}

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

.text-primary {
  color: #4e6569;
}

.pricing-wrapper {
  border: 1px solid #8589ba;
  border-radius: 24px;
  flex-flow: column;
  padding: 48px;
  display: flex;
}

.p-secondary {
  font-family: Merriweathersans, Arial, sans-serif;
  font-size: var(--fonts--p-2);
  font-weight: 700;
  line-height: 180%;
}

.flex-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-block-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  align-items: stretch;
}

.items-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: stretch;
}

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

.gap-72 {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
}

.flex-block-3 {
  min-width: 55%;
}

.form-block {
  width: 100%;
}

.text-field-2 {
  color: #4e6569;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #a8b8bb;
  font-family: Merriweathersans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.text-field-2:focus {
  border-bottom-color: #d79068;
}

.text-field-2::placeholder {
  color: #92aeb2;
}

.text-field-2.margin-top-56:focus {
  border-bottom-color: #d79068;
}

.text-field-2.margin-top-56::placeholder {
  color: #92aeb2;
}

textarea.text-field-2 {
  min-height: 120px;
  resize: vertical;
}

.flex-block-4, .flex-block-5 {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
}

.footer {
  z-index: 20;
  background-color: #d79068;
  justify-content: center;
  align-items: flex-start;
  margin-top: 112px;
  padding-top: 80px;
  padding-bottom: 112px;
  display: flex;
}

.footer.hero {
  background-image: url('../images/hero-image.webp');
  background-position: 30% 0;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  position: relative;
}

.v-flex {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.service-image-03 {
  width: 100%;
  display: inline-block;
  position: absolute;
  inset: 0%;
}

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

.text-block-2 {
  color: #e0e2f5;
  font-family: Merriweathersans, Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
}

.service-title {
  justify-content: flex-start;
  align-items: center;
}

.gap-24 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.services-separator {
  background-color: #d9d9d9;
  width: 100%;
  height: 1px;
}

.service {
  z-index: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.service.middle {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding-top: 32px;
  padding-bottom: 32px;
}

.service.first {
  padding-bottom: 32px;
}

.service.last {
  padding-top: 32px;
}

.service-content {
  background-color: #0000;
  display: block;
  position: static;
}

.service-content.w--open {
  background-color: #0000;
  overflow: hidden;
}

.service-toggle {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: static;
}

.service-toggle.w--open {
  padding-left: 0;
  padding-right: 0;
}

.padding-right-32 {
  padding-right: 32px;
}

.img-02 {
  z-index: 20;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.service-image-01 {
  width: 100%;
  position: relative;
}

.service-image-02 {
  width: 100%;
  display: inline-block;
  position: absolute;
  inset: 0%;
}

.tabs-menu {
  flex-flow: column;
  display: flex;
}

.tabs {
  display: flex;
}

.tab-link-tab-1, .tab-link-tab-1.w--current, .tab-link-tab-2, .tab-link-tab-2.w--current, .tab-link-tab-3 {
  background-color: #0000;
}

.tabs-content {
  min-width: 0%;
  max-width: 100%;
}

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

.flex-block-6 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.div-block-8 {
  display: flex;
}

.p-footer {
  font-family: Merriweathersans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 180%;
}

.p-footer > a {
  color: #f4f1ec;
  font-weight: 300;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s;
}

.p-footer > a:hover {
  border-bottom-color: #f4f1ec;
}


.text-light {
  color: #f4f1ec;
}

.mobile-services-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: none;
}

.m-service {
  z-index: 0;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
  overflow: hidden;
}

.m-service.middle {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding-top: 32px;
  padding-bottom: 32px;
}

.m-service.first {
  padding-bottom: 32px;
}

.m-service.last {
  padding-top: 32px;
}

.mobile-service-image {
  width: 100%;
  position: relative;
}

.no-shrink {
  flex: none;
}

.slide-nav {
  display: none;
}

.slide {
  background-color: #5a2222;
}

.m-hero-profile-image {
  display: none;
}

.image-background {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.span-italic {
  font-style: italic;
}

.gap-medium {
  grid-column-gap: var(--gap-medium);
  grid-row-gap: var(--gap-medium);
}

.slide-2 {
  width: 100%;
}

.mask {
  margin-left: auto;
  margin-right: auto;
}

.slider {
  background-color: #0000;
}

.dropdown {
  margin-left: 0;
  margin-right: 0;
}

.dropdown-list {
  z-index: 1;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  margin-top: 8px;
  padding: 16px;
  position: absolute;
  left: -16px;
}

.dropdown-list.w--open {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  margin-top: -36px;
  margin-left: 0;
  padding-top: 56px;
  display: flex;
}

.dropdown-toggle {
  padding: 0;
}

.dropdown-toggle.w--open {
  flex-flow: row;
}

.dropdown-toggle-2.w--open {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-transform: uppercase;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Merriweathersans, Arial, sans-serif;
  font-size: 16px;
  display: flex;
}

.dropdown-arrow {
  margin-right: 0;
  position: static;
}

.dropdown-link {
  text-transform: uppercase;
  width: 100px;
  margin-right: 24px;
  font-size: 16px;
  text-decoration: none;
}

.dropdown-toggle-3 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-transform: uppercase;
  padding: 0;
  font-family: Merriweathersans, Arial, sans-serif;
  font-size: 16px;
  display: flex;
}

.dropdown-toggle-3.w--open {
  z-index: 10;
}

.navbar-mobile, .sidemenu-slider, .sidemenu-bg {
  display: none;
}

.logo-mobile {
  z-index: 10;
  position: absolute;
  inset: 40px auto auto;
}

.navbar-tablet {
  z-index: 100;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #f5f5f5cc;
  width: 100%;
  height: 10vh;
  display: none;
  position: sticky;
  top: 0;
}

.navbar-2 {
  display: none;
}

@media screen and (max-width: 991px) {
  .section.hero {
    background-position: 12% 0;
    height: auto;
  }

  .hero-wrapper {
    min-width: 768px;
    max-width: 991px;
    margin-top: 0;
    margin-bottom: 192px;
  }

  .navbar {
    display: none;
  }

  .logo {
    height: auto;
    display: none;
  }

  .wrapper {
    min-width: 768px;
    max-width: 991px;
  }

  .desktop-services-wrapper {
    grid-template-columns: 1fr;
    display: none;
  }

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

  .div-block-5 {
    min-width: 260px;
  }

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

  .grid-block-vertical.color-grey.padding-bottom-48.padding-top-48 {
    height: auto;
  }

  .grid-block-vertical.padding-top-48.padding-bottom-48 {
    height: auto;
    padding-left: 48px;
    padding-right: 48px;
  }

  .navbar-logo {
    position: relative;
  }

  .services-image-wrapper {
    display: none;
  }

  .section-90 {
    padding-top: 300px;
    padding-bottom: 300px;
  }

  .breakpoint {
    background-color: #00ff2a;
  }

  ._3-column {
    flex-flow: column;
    max-width: 70%;
  }

  ._2-column-grid, ._2-column-grid.margin-top-112.max-w {
    grid-template-columns: 1fr;
  }

  .flex-block-4 {
    flex-flow: column;
  }

  .flex-block-5 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .mobile-services-wrapper {
    grid-template-columns: 1fr;
    display: flex;
  }

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

  .m-hero-profile-image {
    z-index: 50;
    border-radius: 24px;
    margin-top: -96px;
    margin-bottom: 96px;
    display: block;
    position: relative;
  }

  .navbar-tablet {
    height: 100px;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .paragraph-2.margin-top-112 {
    margin-top: 64px;
  }

  .section.hero {
    height: auto;
  }

  .section-thankyou {
    padding-top: 146px;
  }

  .hero-wrapper {
    min-width: 480px;
    max-width: 767px;
    margin-top: 56px;
    margin-bottom: 112px;
  }

  .navbar {
    display: none;
  }

  .logo {
    opacity: 0;
    width: 170px;
    position: static;
  }

  .navbar-block-middle {
    display: none;
  }

  .wrapper {
    min-width: 480px;
    max-width: 767px;
  }

  .section-quote._26vh {
    padding-top: 0;
  }

  .div-block-4 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .div-block-5 {
    min-width: auto;
    max-height: 260px;
  }

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

  .ebook-form {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-block {
    margin-bottom: 56px;
  }

  .quote-blocks {
    display: none;
  }

  .quote-image._3 {
    top: -124px;
  }

  .quote-image._2 {
    bottom: 276px;
    right: 133px;
  }

  .quote-image._1 {
    width: 200px;
    display: none;
    top: -186px;
  }

  .section-90 {
    margin-bottom: -112px;
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .breakpoint {
    background-color: #0037ff;
  }

  ._3-column {
    max-width: 80%;
  }

  .separator {
    margin-bottom: 64px;
  }

  .flex-block-4 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .m-service {
    grid-template-columns: 1fr .75fr;
  }

  .image-4 {
    height: 100%;
  }

  .form {
    flex-flow: column;
    display: flex;
  }

  .m-hero-profile-image {
    border-radius: 20px;
    max-width: 50%;
    margin-top: -96px;
    margin-bottom: 64px;
    display: block;
  }

  .navbar-mobile {
    z-index: 200;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100px;
    margin-top: -146px;
    display: flex;
    position: sticky;
    top: 0;
  }

  .sidemenu-trigger {
    z-index: 200;
    cursor: pointer;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 20%;
    display: flex;
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .sidemenu-button {
    text-transform: uppercase;
    font-family: Merriweathersans, Arial, sans-serif;
    font-size: 16px;
  }

  .sidemenu-slider {
    z-index: 199;
    background-color: #fff;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0% 0% auto;
  }

  .sidemenu-items {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 45px 48px 24px;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .sidemenu-link {
    text-transform: uppercase;
    font-family: Merriweathersans, Arial, sans-serif;
    font-size: 20px;
    line-height: 120%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }

  .sidemenu-bg {
    z-index: 198;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #fff6;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .logo-mobile {
    width: 170px;
    margin-left: 16px;
    position: static;
  }

  .sidemenu-scroll {
    background-color: #fff;
    position: absolute;
    inset: 0%;
  }

  .navbar-tablet {
    display: none;
  }

  .navbar-2 {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .container {
    flex-flow: row;
    justify-content: space-between;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  .paragraph-1.padding-right-32 {
    padding-right: 0;
  }

  .section {
    padding-top: 64px;
  }

  .section.hero {
    background-position: 6% 0;
  }

  .cta {
    text-align: center;
  }

  .hero-wrapper {
    min-width: 320px;
    max-width: 479px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo {
    width: 130px;
  }

  .wrapper {
    min-width: 320px;
    max-width: 479px;
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .h3.margin-bottom-24.text-align-left {
    margin-top: 8px;
  }

  .grid {
    margin-top: 64px;
  }

  .grid-block-vertical.padding-top-48.padding-bottom-48 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cta-block {
    flex-flow: column;
  }

  .cta-ebook {
    text-align: center;
  }

  .quote-image._3 {
    top: -30px;
  }

  .quote-image._2 {
    bottom: 172px;
    right: 36px;
  }

  .services-image-wrapper {
    display: none;
  }

  .section-90 {
    margin-bottom: -64px;
  }

  .breakpoint {
    background-color: #f0d;
  }

  ._3-column {
    max-width: 100%;
  }

  .testimonial-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .div-block-7 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

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

  ._2-column-grid.max-w.margin-top-112 {
    margin-top: 64px;
  }

  .pricing-wrapper {
    border-style: none;
    padding: 0 8px;
  }

  .p-secondary {
    flex: none;
  }

  .text-block-2 {
    line-height: 100%;
    display: block;
  }

  .service-title.gap-24 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 24px;
  }

  .service {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .service-content {
    text-align: center;
  }

  .service-toggle {
    padding-right: 0;
  }

  .p-footer {
    flex: none;
  }

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

  .m-service {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    display: grid;
  }

  .m-service.first {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .mobile-service-image {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .heading, .heading-2 {
    font-size: var(--fonts--heading-3);
  }

  .m-hero-profile-image {
    max-width: 80%;
  }

  .navbar-mobile {
    justify-content: center;
    align-items: center;
    height: 90px;
    margin-top: -90px;
  }

  .sidemenu-slider {
    border-bottom: 1px solid #cacaca;
    border-left: 1px solid #cacaca;
    border-right: 1px solid #cacaca;
    border-radius: 0 0 20px 20px;
    height: auto;
    display: block;
  }

  .sidemenu-items {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    height: auto;
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .sidemenu-bg {
    display: none;
  }

  .logo-mobile {
    width: 130px;
  }

  .sidemenu-scroll {
    background-color: #fff;
    position: absolute;
    inset: 0%;
  }
}

#w-node-_6173b8aa-61ba-4f88-2779-d4134e4f93c7-33fdf474 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-fb3e5d89-2495-79f6-b35a-bb8a7e20e06f-33fdf474, #w-node-_5269695e-c71f-2183-a161-d9c01622dca1-33fdf474, #w-node-c1a1a38d-a645-c335-7e42-38277daefce2-33fdf474 {
    align-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-fb3e5d89-2495-79f6-b35a-bb8a7e20e06f-33fdf474, #w-node-_5269695e-c71f-2183-a161-d9c01622dca1-33fdf474, #w-node-c1a1a38d-a645-c335-7e42-38277daefce2-33fdf474 {
    align-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-fb3e5d89-2495-79f6-b35a-bb8a7e20e06f-33fdf474, #w-node-_5269695e-c71f-2183-a161-d9c01622dca1-33fdf474, #w-node-c1a1a38d-a645-c335-7e42-38277daefce2-33fdf474 {
    grid-area: 1 / 1 / 2 / 2;
  }
}


@font-face {
  font-family: 'Merriweathersans';
  src: url('../fonts/MerriweatherSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweathersans';
  src: url('../fonts/MerriweatherSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ebgaramond';
  src: url('../fonts/EBGaramond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweathersans';
  src: url('../fonts/MerriweatherSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}