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

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

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

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

:root {
  --white: white;
  --lime-green: #38d552;
  --black: #1c1c1c;
  --black-2: #313233;
  --dim-grey: #4a4f54;
  --grey: #8d8d8d;
}

.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: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  color: #848991;
  margin-bottom: 0;
  font-family: Hind, sans-serif;
  font-size: 17px;
  line-height: 30px;
}

a {
  color: #000;
  text-decoration: none;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 0;
}

.main-container {
  width: 100%;
  max-width: 1160px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.nav-container {
  flex-direction: row;
  width: 100%;
  height: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.navbar {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  min-height: 85px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

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

.left-nav-links-container {
  display: flex;
}

.nav-link {
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Metropolis, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: color .3s;
  display: flex;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--lime-green);
}

.nav-link.middle-nav-link {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 15px;
}

.nav-link.middle-nav-link-right {
  margin-left: 10px;
  margin-right: 0;
  font-size: 15px;
}

.brand {
  z-index: 5;
  width: 100%;
  max-width: 115px;
  height: 30px;
}

.brand.w--current {
  max-width: 110px;
}

.exponent-logo {
  width: 100%;
  height: 30px;
}

.drop-down-link {
  color: var(--white);
  margin-right: 6px;
  padding: 0 0 0 10px;
  font-family: Metropolis, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: color .3s;
}

.drop-down-link:hover, .drop-down-link.w--current {
  color: var(--lime-green);
}

.drop-down-link.black {
  color: var(--black);
}

.dropdown-toggle {
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  display: flex;
}

.drop-down-icon-white {
  color: var(--white);
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 12px;
  position: static;
}

.right-nav-links-container {
  align-items: center;
  display: flex;
}

.nav-button-container {
  width: 140px;
  height: 35px;
  margin-left: 30px;
}

.green-btn {
  background-color: var(--lime-green);
  text-align: center;
  letter-spacing: 1px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 11px;
  font-family: Metropolis, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  transition: all .4s ease-in-out;
  display: flex;
}

.green-btn:hover {
  background-color: #313233;
}

.dropdown-link {
  color: #1c1c1c;
  text-align: left;
  padding: 5px 15px;
  font-family: Metropolis, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  transition: color .3s;
}

.dropdown-link:hover, .dropdown-link.w--current {
  color: var(--lime-green);
}

.nav-drop-down-list.w--open {
  background-color: var(--white);
  border-radius: 4px;
  width: 200px;
  padding: 15px;
  inset: 60px 0% auto;
  box-shadow: 0 0 24px 1px #13181d1f;
}

.drop-down-pointer {
  background-color: var(--white);
  width: 20px;
  height: 20px;
  position: absolute;
  inset: -5px auto auto 10px;
  transform: rotate(45deg);
}

.home-hero-section {
  height: 100vh;
}

.hero-slider {
  background-color: #0000;
  width: 100%;
  height: 100vh;
}

.hero-slider-mask {
  height: auto;
}

.hero-slide {
  background-image: linear-gradient(#00000073, #00000073), url('../images/consulting-min_1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  width: 100%;
  min-height: 100vh;
}

.hero-slide._1 {
  background-image: linear-gradient(#00000073, #00000073), url('../images/2-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.hero-slide._2 {
  background-image: linear-gradient(#00000073, #00000073), url('../images/mutual-fund-bg-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.hero-slider-icon {
  background-color: #0009;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  max-height: 40px;
  margin: 0;
  display: flex;
  position: absolute;
  inset: 50% 0% auto auto;
}

.hero-slider-icon.left {
  background-image: none;
  inset: 50% auto auto 0%;
  transform: rotate(180deg);
}

.hero-slide-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-top: 200px;
  display: flex;
}

.hero-slide-heading-container {
  max-width: 660px;
  overflow: hidden;
}

.hero-slide-heading-container._1st-slide {
  max-width: 530px;
}

.hero-slide-heading-container._2nd-slide {
  max-width: 490px;
}

.hero-slide-heading-container._3rd-slide {
  max-width: 550px;
}

.hero-slide-sub-heading-container {
  max-width: 510px;
  margin-top: 15px;
  margin-bottom: 30px;
  overflow: hidden;
}

.hero-slide-button-container {
  width: 100%;
  max-width: 155px;
  height: 45px;
  overflow: hidden;
}

.h1 {
  color: var(--black-2);
  letter-spacing: -1px;
  font-family: Metropolis, sans-serif;
  font-size: 51px;
  font-weight: 300;
  line-height: 67px;
}

.h1._300-light-white-fonts {
  color: var(--white);
  font-weight: 300;
}

.h1.light-grey {
  color: #0000004d;
}

.h1._300-align-center-white {
  color: var(--white);
  text-align: center;
  font-weight: 300;
}

.home-hero-left-arrow, .home-hero-right-arrow {
  width: 40px;
}

.btn {
  border: 1px solid var(--lime-green);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #43d75c;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding-top: 10px;
  font-family: Metropolis, sans-serif;
  font-size: 12px;
  font-weight: 600;
  transition: color .4s, background-color .4s ease-in-out;
  display: flex;
}

.btn:hover {
  border: 1px solid var(--lime-green);
  background-color: var(--white);
  color: var(--lime-green);
}

.btn.with-border {
  border: 2px solid var(--lime-green);
  height: 100%;
  padding-top: 10px;
  font-size: 11.5px;
}

.btn.big-fonts {
  font-size: 17px;
}

.service-block-arrow-container {
  width: 30px;
  margin-bottom: -40px;
}

.other-services-container {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.other-services-block-container {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 50px;
  display: flex;
}

.service-block-paragraph-container {
  margin-bottom: 30px;
}

.services-blocks-column {
  margin-top: 0;
}

.services-blocks-column._2nd-column {
  margin-top: 0;
  margin-left: 30px;
}

.other-services-paragraph-container {
  margin-top: 15px;
  margin-bottom: 30px;
}

.para-17 {
  color: #848991;
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  font-family: Hind, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  display: flex;
}

.para-17.contact {
  line-height: 25px;
}

.para-17.white-font {
  color: var(--white);
}

.para-17.inline {
  display: inline-block;
}

.other-services-heading-container {
  margin-top: 5px;
  margin-bottom: 0;
}

.other-services-text-container {
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  margin-right: 0;
  display: flex;
}

.service-block-icon-container {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.other-service-block {
  color: var(--black);
  background-color: #fff;
  border-radius: 4px;
  align-items: flex-end;
  width: 320px;
  height: 300px;
  margin-bottom: 30px;
  padding: 40px 25px;
  display: flex;
  box-shadow: 0 1px 6px #0000001a;
}

.service-block-heading-container {
  margin-bottom: 10px;
}

.service-block-overflow-hidden {
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding-top: 0;
  display: flex;
  overflow: hidden;
}

.h3 {
  color: var(--black-2);
  letter-spacing: -.3px;
  font-family: Metropolis, sans-serif;
  font-size: 33px;
  font-weight: 400;
  line-height: 49px;
}

.h3._300-light {
  color: var(--black-2);
  font-weight: 300;
}

.h3._300-light-align-center {
  color: var(--black-2);
  text-align: center;
  font-weight: 300;
}

.h3.black {
  color: #343638;
}

.h3._300-light-align-center {
  color: var(--black-2);
  font-weight: 300;
}

.h3.bold-black {
  color: #343638;
  font-weight: 500;
}

.h5 {
  color: var(--black-2);
  font-family: Metropolis, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
}

.h5._600-bold {
  color: var(--dim-grey);
  font-size: 21px;
  font-weight: 600;
}

.h5.grey-font-with-hover {
  color: #4f545b;
  transition: color .6s;
}

.h5.grey-font-with-hover:hover {
  color: var(--lime-green);
}

.h5.grey-font-align-center-with-hover {
  color: #4f545b;
  text-align: center;
  transition: color .6s;
}

.h5.grey-font-align-center-with-hover:hover {
  color: var(--lime-green);
}

.other-services-button-container {
  border-radius: 3px;
  width: 100%;
  max-width: 140px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.money-work-for-you-section {
  padding-top: 50px;
  padding-bottom: 90px;
}

.money-work-for-you-container {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.money-work-for-you-right-flex {
  max-width: 470px;
  margin-left: 70px;
}

.money-work-for-you-blocks-container {
  justify-content: space-between;
  width: 550px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.money-work-for-you-block {
  width: 45%;
  transition: all .4s;
  box-shadow: 0 5px 30px #d6d7d891;
}

.money-work-for-you-block:hover {
  transform: translate(0, -10px);
  box-shadow: 0 5px 45px #afb1b191;
}

.money-work-for-you-block-image-container {
  width: 100%;
  margin-bottom: 0;
}

.money-work-for-you-block-image {
  object-fit: fill;
  object-position: 50% 50%;
  width: 100%;
  max-width: 250px;
  height: 235px;
}

.money-work-for-you-block-text-container {
  padding: 20px 25px;
}

.money-work-for-you-block-heading-container {
  margin-bottom: 20px;
}

.h5-span {
  color: var(--lime-green);
}

.money-work-for-you-block-link-container {
  align-items: center;
  display: flex;
}

.animated-text-link {
  color: var(--grey);
  text-transform: capitalize;
  font-family: Metropolis, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 16px;
}

.animated-text-link._13px {
  margin-top: 2px;
  font-family: Hind, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.arrow-expand-container {
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  display: flex;
}

.arrow-line {
  background-color: var(--grey);
  opacity: .8;
  transform-origin: 0%;
  width: 25px;
  height: 2px;
  margin-top: 0;
  margin-right: -13px;
}

.arrow-line.small {
  height: 1px;
  margin-top: 0;
}

.arrow-side-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.arrow-line-45 {
  background-color: var(--grey);
  opacity: .8;
  transform-origin: 100%;
  width: 7px;
  height: 2px;
  margin-bottom: -1px;
  transform: rotate(45deg);
}

.arrow-line-45.fliped {
  background-color: var(--grey);
  transform-origin: 100%;
  justify-content: center;
  align-items: center;
  width: 7px;
  height: 2px;
  margin-top: -1px;
  margin-bottom: 0;
  display: block;
  transform: rotate(-45deg);
}

.arrow-line-45.service-page {
  width: 6px;
  height: 1px;
}

.arrow-line-45.service-fliped {
  background-color: var(--grey);
  transform-origin: 100%;
  justify-content: center;
  align-items: center;
  width: 6px;
  height: 1px;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  transform: rotate(-45deg);
}

.money-work-for-you-paragraph-container {
  max-width: 430px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.money-work-for-you-button-container {
  width: 100%;
  max-width: 145px;
  min-height: 45px;
}

.ghost-green-btn {
  border: 2px solid var(--lime-green);
  background-color: var(--white);
  color: var(--lime-green);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 12px;
  font-family: Metropolis, sans-serif;
  font-size: 11px;
  font-weight: 600;
  transition: all .4s ease-in-out;
  display: flex;
}

.ghost-green-btn:hover {
  background-color: var(--lime-green);
  color: var(--white);
}

.ghost-green-btn._1px-border {
  border-width: 1px;
  border-radius: 0;
}

.ai-horizontal-divider-right {
  background-color: #d8d8d8;
  width: 210px;
  height: 2px;
  margin-right: 10px;
  position: absolute;
  inset: 25px -34% 0% auto;
}

.ai-work-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 325px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.how-it-works-section {
  height: auto;
  padding-top: 90px;
  padding-bottom: 50px;
  position: relative;
}

.ai-block-heading {
  margin-top: 25px;
  margin-bottom: 10px;
}

.ai-horizontal-divider-left {
  background-color: #d8d8d8;
  width: 210px;
  height: 2px;
  margin-right: 10px;
  position: absolute;
  inset: 25px -34% 0% auto;
}

.how-it-works-container {
  margin-top: 0;
}

.ai-icon-container {
  margin-bottom: 0;
}

.author-company {
  margin-top: 5px;
}

.author-name {
  margin-bottom: 0;
}

.hero-quote-image {
  width: 100%;
  max-width: 555px;
  height: 100%;
}

.home-quote-section {
  background-color: #fafafa;
}

.home-quote-container {
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding-left: 60px;
  padding-right: 0;
  display: flex;
}

.home-quote-text-container {
  max-width: 465px;
  margin-right: 100px;
  padding-left: 0;
}

.home-quote-icon-container {
  opacity: .65;
  width: 58px;
}

.home-quote {
  margin-top: 15px;
  margin-bottom: 15px;
}

.home-quote-image-container {
  flex: 0 auto;
  width: 100%;
  max-width: 555px;
  margin-bottom: 0;
}

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

.how-it-works-header-container {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 0;
  display: flex;
}

.how-it-works-heading-container {
  justify-content: center;
  align-items: center;
  max-width: 380px;
  margin: 15px auto 10px;
  display: flex;
}

.workflow-container {
  justify-content: center;
  margin-top: 75px;
  display: flex;
  position: relative;
}

.workflow-image {
  width: 100%;
  max-width: 50px;
}

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

.method-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.method-right-flex {
  max-width: 380px;
  margin-left: 80px;
}

.method-image-container {
  width: 100%;
  max-width: 725px;
  margin-bottom: 0;
}

.method-image {
  width: 100%;
  max-width: 725px;
}

.method-paragraph-container {
  max-width: 350px;
  margin-top: 15px;
  margin-bottom: 50px;
}

.method-row {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.method-icon-container {
  background-color: var(--lime-green);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  margin-right: 20px;
  display: flex;
}

.method-icon {
  width: 21px;
  height: 21px;
}

.services-testimonial-author-name {
  margin-bottom: 0;
}

.services-testimonial-paragraph-container {
  max-width: 334px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.services-testimonial-icon-container {
  width: 28px;
  height: 28px;
  margin-bottom: 0;
}

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

.services-testimonial-company {
  margin-top: 5px;
}

.services-testimonial-image-container {
  align-items: center;
  width: 100%;
  height: 655px;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.services-testimonial-container {
  width: 100%;
}

.services-testimonial-text-container {
  background-color: #fff;
  max-width: 435px;
  min-height: 360px;
  margin-left: -25px;
  padding: 50px;
  box-shadow: -5px 0 30px #d6d7d891;
}

.news-blog-container {
  margin-top: 50px;
}

.news-section {
  background-color: #f8f8f8;
  padding-top: 90px;
  padding-bottom: 90px;
}

.new-blog-collection {
  flex-flow: row;
  display: flex;
}

.news-sub-text-container {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.news-blocks-collection {
  padding-left: 0;
  padding-right: 0;
}

.news-heading-container {
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.news-collection {
  display: inline-block;
}

.news-blog-block {
  min-height: 330px;
  margin-right: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.time-icon-container {
  color: #31323399;
  align-items: center;
  width: 14px;
  height: 14px;
  margin-top: 0;
  margin-right: 6px;
  display: flex;
}

.news-blog-block-image-link {
  width: 100%;
  height: 100%;
}

.news-blog-block-image-container {
  width: 100%;
  max-width: 360px;
  height: 260px;
  margin-bottom: 30px;
}

.news-blog-block-date {
  justify-content: center;
  align-items: center;
  display: flex;
}

.news-blog-block-heading {
  margin-top: 10px;
  margin-bottom: 20px;
}

.news-blog-block-tags {
  margin-right: 10px;
  display: inline-block;
}

.our-states-section {
  border-top: 1px solid #efefef;
  padding-top: 90px;
  padding-bottom: 50px;
}

.our-state-row {
  justify-content: space-between;
  display: flex;
}

.our-state-row.bottom-margin {
  margin-bottom: 65px;
}

.our-state-heading-container {
  max-width: 370px;
}

.our-states-paragraph-container {
  display: flex;
}

.our-state-para-1 {
  max-width: 240px;
}

.our-state-para-2 {
  max-width: 240px;
  margin-left: 50px;
}

.our-state-block {
  border-radius: 7px;
  width: 23%;
  padding: 20px 20px 40px;
  box-shadow: 0 5px 45px #afb1b191;
}

.our-state-block.green-bg {
  background-color: #38d552;
}

.our-state-block-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.our-state-data-container {
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 5px;
  display: flex;
}

.our-block-paragraph-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.our-state-block-icon {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.new-button-container {
  width: 100%;
  max-width: 200px;
  height: 45px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.home-contact-section {
  padding-bottom: 90px;
}

.map {
  height: 500px;
}

.home-contact-container {
  z-index: 0;
  background-color: var(--white);
  width: 100%;
  max-width: 930px;
  margin-top: -175px;
  margin-left: auto;
  margin-right: auto;
  padding: 70px;
  position: relative;
  box-shadow: 0 5px 30px #d6d7d891;
}

.home-contact-heading-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-contact-sub-heading-container {
  justify-content: center;
  align-items: center;
  max-width: 580px;
  margin: 20px auto 40px;
  display: flex;
}

.text-field {
  color: #222;
  border: 1px #000;
  border-radius: 2px;
  height: 55px;
  margin-bottom: 0;
  padding: 15px 20px;
  font-family: Hind, sans-serif;
  font-size: 15px;
  line-height: 1.7em;
  transition: border-color .3s;
  box-shadow: inset 0 0 4px #00000026;
}

.text-field:focus {
  border-bottom: 2px solid var(--lime-green);
}

.text-field::placeholder {
  color: #222;
  font-family: Hind, sans-serif;
  font-size: 15px;
  line-height: 1.7em;
}

.text-field._50 {
  border: 1px #000;
  width: 380px;
  padding-left: 20px;
  padding-right: 20px;
  transition: border-color .3s ease-in-out;
  box-shadow: inset 0 0 4px #00000026;
}

.text-field._50:focus {
  border-bottom: 2px solid var(--lime-green);
}

.text-field.contact-form, .text-field.contact-form-2 {
  width: 47.5%;
}

.form-row {
  justify-content: space-between;
  margin-bottom: 30px;
  display: flex;
}

.message-box {
  color: #222;
  border: 1px #000;
  border-radius: 2px;
  min-height: 200px;
  margin-bottom: 0;
  padding: 15px 20px;
  font-family: Hind, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7em;
  transition: border-color .3s;
  box-shadow: inset 0 0 4px #00000026;
}

.message-box:focus {
  border-bottom: 2px solid var(--lime-green);
}

.message-box::placeholder {
  color: #222;
  font-family: Hind, sans-serif;
  font-size: 15px;
  line-height: 1.7em;
}

.submit-button {
  background-color: var(--lime-green);
  box-shadow: none;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  font-family: Metropolis, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 12px;
  transition: box-shadow .3s;
}

.submit-button:hover {
  box-shadow: 0 11px 18px -5px #0000005e;
}

.submit-button-container {
  width: 120px;
  height: 45px;
}

.footer-section {
  border-top: 1px solid #ddd;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-column-container {
  display: flex;
}

._1st-footer-column {
  border-right: 1px solid #ddd;
  flex: none;
  width: 310px;
  height: 280px;
  margin-right: 50px;
}

.footer-logo {
  height: 25px;
}

.copyright-info-container {
  margin-top: 15px;
  margin-bottom: 30px;
}

.footer-social-media-icon-container {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-social-icon {
  opacity: .8;
  width: 15px;
  height: 100%;
  margin-right: 20px;
}

.footer-social-icon:hover {
  opacity: 1;
}

.footer-social-icon.resize {
  width: 19px;
  margin-right: 17px;
}

.footer-nav-column-container {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.footer-nav-column {
  margin-bottom: 25px;
  margin-right: 80px;
}

.footer-nav-heading-container {
  margin-bottom: 20px;
}

.powered-by-webflow {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.para-16 {
  color: #888;
  font-family: Hind, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
}

.webflow {
  color: #42a7f7;
  transition: letter-spacing .4s;
}

.webflow:hover {
  letter-spacing: 1px;
}

.webflow-span {
  color: var(--lime-green);
  margin-left: 5px;
}

.footer-nav-links-container, .footer-links-list {
  font-style: normal;
}

.footer-list-item {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.footer-list-item._20px-margin {
  margin-top: 20px;
}

.footer-list-item-2 {
  margin-bottom: 10px;
  display: flex;
}

.footer-icon-container {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  display: flex;
}

.navbar-white {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  height: 85px;
  display: flex;
  position: fixed;
  inset: -120px 0% auto;
  box-shadow: 0 4px 20px #a7acb74d;
}

.nav-link-black {
  color: var(--black);
  padding-left: 10px;
  padding-right: 10px;
  font-family: Metropolis, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: color .3s;
}

.nav-link-black:hover, .nav-link-black.w--current {
  color: var(--lime-green);
}

.nav-link-black.middle-nav-link, .nav-link-black.middle-nav-link-right {
  margin-left: 10px;
  margin-right: 0;
  font-size: 15px;
}

.nav-drop-down {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.all-heading-container {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  min-height: 550px;
  margin-bottom: 30px;
  display: flex;
}

.h2 {
  color: var(--black-2);
  font-family: Metropolis, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 56px;
}

.h2._300-light {
  font-weight: 300;
}

.h2._300-light-white {
  color: var(--white);
  font-weight: 300;
}

.h2._300-align-center-white {
  color: var(--white);
  text-align: center;
  font-weight: 300;
}

.h4 {
  color: var(--black-2);
  font-family: Metropolis, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 38px;
}

.h4._500-medium {
  font-weight: 500;
}

.h4._500-medium-white {
  color: var(--white);
  font-weight: 500;
}

.h6 {
  color: var(--black-2);
  font-family: Metropolis, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.h6.align-center-white-font {
  color: var(--white);
  text-align: center;
  font-size: 19px;
  font-weight: 500;
}

.h7 {
  color: var(--black-2);
  font-family: Metropolis, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}

.h7._600-bold, .h7._600-bold-black {
  color: var(--black-2);
  font-size: 17px;
  font-weight: 600;
}

.h7._600-bold-white {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
}

.h7._600-bold-dark-grey {
  color: var(--dim-grey);
  font-size: 17px;
  font-weight: 600;
}

.h7._600-bold-dark-grey-hover {
  color: var(--dim-grey);
  font-size: 17px;
  font-weight: 600;
  transition: color .3s;
}

.h7._600-bold-dark-grey-hover:hover {
  color: var(--lime-green);
}

.h7._600-bold-align-center {
  color: var(--dim-grey);
  text-align: center;
  font-size: 17px;
  font-weight: 600;
}

.h8 {
  color: var(--black-2);
  font-family: Metropolis, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.h8._600-bold {
  color: #4a4f54;
  font-size: 15px;
  font-weight: 600;
}

.h8._600-bold-white {
  color: var(--white);
  font-weight: 600;
}

.h9 {
  color: var(--black-2);
  font-family: Metropolis, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.h9._600-bold {
  color: var(--dim-grey);
  font-weight: 600;
}

.h10 {
  color: var(--black-2);
  font-family: Metropolis, sans-serif;
  font-size: 14px;
  line-height: 18px;
}

.h10._600-bold-white {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.h10._600-bold {
  color: var(--black-2);
  font-size: 14px;
  font-weight: 600;
}

.h11 {
  color: var(--black-2);
  font-family: Metropolis, sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.h11.grey-font {
  color: #31323391;
  font-weight: 500;
}

.h11.grey-font-caps {
  color: #31323391;
  text-transform: uppercase;
  font-weight: 500;
}

.h11.grey-font-block {
  color: #31323391;
  font-weight: 500;
  display: inline;
}

.h12 {
  color: var(--black-2);
  font-family: Metropolis, sans-serif;
  font-size: 11px;
  line-height: 14px;
}

.h12._500-medium-grey {
  color: #31323380;
  text-transform: uppercase;
  font-weight: 500;
}

.h12._600-medium-grey {
  color: #848991;
  text-transform: uppercase;
  font-weight: 600;
}

.h12.medium-dim-grey {
  font-weight: 500;
  transition: color .8s;
}

.h12.medium-dim-grey:hover {
  color: var(--lime-green);
}

.h13 {
  color: var(--black-2);
  font-family: Metropolis, sans-serif;
  font-size: 10px;
  line-height: 12px;
}

.h13._600-bold-grey {
  color: #848991;
  letter-spacing: 1px;
  font-weight: 600;
}

.all-paragraph-container {
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  display: flex;
}

.para-20 {
  font-family: Hind, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.para-20.white-font {
  color: var(--white);
}

.para-18 {
  font-family: Hind, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.para-18.align-center-white-fonts {
  color: var(--white);
  text-align: center;
}

.para-16 {
  font-family: Hind, sans-serif;
  font-weight: 400;
}

.para-15 {
  color: #848991;
  margin-top: 0;
  font-family: Hind, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  display: block;
}

.para-15._5px-padding {
  margin-top: 5px;
}

.para-14 {
  font-family: Hind, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.para-14.grey {
  color: #848991;
}

.para-13 {
  font-family: Hind, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
}

.para-13.white-font {
  color: var(--white);
}

.quote-icon {
  width: 21px;
  height: 21px;
}

.about-hero-section {
  background-image: linear-gradient(#0006, #0006), url('../images/Service-5-min.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 515px;
  padding-bottom: 120px;
}

.about-hero-container {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.about-hero-sub-heading-container {
  max-width: 440px;
  margin-top: 15px;
}

.about-hero-button-container {
  min-width: 150px;
  min-height: 40px;
  margin-top: 30px;
}

.rounded-btn {
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #38d552;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding-top: 9px;
  font-family: Metropolis, sans-serif;
  font-size: 11px;
  font-weight: 600;
  transition: color .4s, background-color .4s ease-in-out;
  display: flex;
}

.rounded-btn:hover {
  background-color: var(--white);
  color: var(--lime-green);
}

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

.our-story-container {
  width: 100%;
  max-width: 1000px;
}

.our-story-image-container {
  justify-content: flex-end;
  align-items: center;
  min-height: 715px;
  margin-bottom: 90px;
  display: flex;
  position: relative;
}

.our-story-text-container {
  background-color: var(--white);
  max-width: 555px;
  margin-right: -60px;
  padding: 60px;
  box-shadow: 0 5px 30px #d6d7d891;
}

.our-story-heaading-container, .our-story-paragraph-container {
  margin-bottom: 30px;
}

.our-story-link-container {
  align-items: center;
  display: flex;
}

.our-story-block-container {
  justify-content: space-between;
  display: flex;
}

.our-story-block {
  flex-direction: column;
  justify-content: space-between;
  width: 355px;
  height: auto;
  min-height: 250px;
  display: flex;
}

.our-story-block.green-background {
  background-color: #38d552;
  padding: 50px 35px;
}

.our-story-block.middle-block {
  margin-left: 50px;
  margin-right: 50px;
}

.our-story-data-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.span-90 {
  font-family: Metropolis, sans-serif;
  font-size: 80px;
  line-height: 90px;
}

.span-90.white-font {
  color: var(--white);
  line-height: 80px;
}

.span-25 {
  font-size: 25px;
}

.our-story-block-heading {
  margin-top: 5px;
  margin-bottom: 5px;
}

.why-choose-us-blocks-container {
  margin-top: 50px;
}

.why-choose-us-block {
  align-items: flex-start;
  max-width: 360px;
  display: flex;
}

.why-choose-us-block-paragraph-container {
  margin-top: 10px;
}

.why-choose-us-block-row {
  justify-content: space-between;
  margin-bottom: 50px;
  display: flex;
}

.why-choose-us-text-container {
  margin-top: 0;
}

.why-choose-us-heading-container {
  max-width: 495px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-us-icon-container {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  margin-top: 0;
  margin-right: 20px;
  display: flex;
}

.why-choose-us-section {
  border-top: 1px solid #efefef;
  padding-top: 90px;
  padding-bottom: 40px;
}

.why-us-block-image {
  width: 27px;
  height: 27px;
}

.member-social-link {
  height: 14px;
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
}

.team-member-image {
  background-image: url('../images/Team-1_1Team-1.jpg');
  background-position: 50%;
  background-size: 100% 100%;
  align-items: flex-end;
  width: 100%;
  height: 250px;
  display: flex;
}

.team-member-image._8 {
  background-image: url('../images/Untitled-3.jpg');
  background-position: 50% 0;
  background-size: cover;
  overflow: hidden;
}

.team-member-image._4 {
  background-image: url('../images/Untitled-4.jpg');
  background-position: 50% 0;
  background-size: cover;
  overflow: hidden;
}

.team-member-image._7 {
  background-image: url('../images/Untitled-1.jpg');
  background-position: 50% 0;
  background-size: cover;
  overflow: hidden;
}

.team-member-image._3 {
  background-image: url('../images/Untitled-7.jpg');
  background-position: 50% 0;
  background-size: cover;
  overflow: hidden;
}

.team-member-image._1 {
  background-image: url('../images/Team-Justin-Hammer-min.jpg');
  background-position: 50% 0;
  background-size: cover;
  overflow: hidden;
}

.team-member-image._5 {
  background-image: url('../images/Untitled-8.jpg');
  background-position: 50% 0;
  background-size: cover;
  overflow: hidden;
}

.team-member-image._2 {
  background-image: url('../images/615427643ee5097c752897d4_Untitled-6.jpg');
  background-position: 50% 0;
  background-size: cover;
  overflow: hidden;
}

.team-member-image._6 {
  background-image: url('../images/Untitled-2.jpg');
  background-position: 50% 0;
  background-size: cover;
  overflow: hidden;
}

.team-member-block {
  width: 250px;
}

.member-social-media-icon-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.our-people-heading-container {
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.our-people-row {
  justify-content: space-between;
  margin-top: 50px;
  display: flex;
}

.team-member-social-icon {
  background-color: var(--lime-green);
  flex: 1;
  justify-content: space-between;
  align-items: center;
  height: 55px;
  display: flex;
  position: relative;
}

.team-member-name {
  margin-top: 15px;
  margin-bottom: 5px;
}

.our-people-sub-text-container {
  max-width: 465px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

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

.about-quote-section {
  background-color: #fafafa;
}

.about-quote-container {
  justify-content: flex-start;
  align-items: center;
  min-height: 0;
  padding-left: 60px;
  padding-right: 0;
  display: flex;
}

.about-quote-text-container {
  max-width: 480px;
  margin-right: 100px;
  padding-left: 0;
}

.about-quote-icon-container {
  opacity: .65;
  width: 58px;
}

.about-quote {
  margin-top: 15px;
  margin-bottom: 25px;
}

.about-quote-image-container {
  flex: 0 auto;
  max-width: 555px;
  margin-bottom: 0;
}

.about-quote-image {
  object-fit: cover;
  width: 100%;
  max-width: 555px;
  height: 100%;
}

.our-team-button-container {
  width: 165px;
  height: 42px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.our-client-section {
  background-color: #2e2e2e;
  height: 220px;
}

.our-client-container {
  width: 100%;
  height: 100%;
}

.our-client-slider {
  background-color: #0000;
  height: auto;
}

.our-client-mask {
  height: auto;
}

.client-slide {
  cursor: grab;
  width: 20%;
  height: 220px;
}

.client-slide-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 101%;
  display: flex;
}

.client-arrow {
  display: none;
}

.get-in-touch-section {
  background-image: linear-gradient(#0006, #0006), url('../images/About-CTA-IMG-min.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 150px;
  padding-bottom: 150px;
}

.get-in-touch-header-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.get-in-touch-heading-container {
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 30px;
  display: flex;
}

.get-in-touch-button-container {
  max-width: 150px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero-section {
  background-image: linear-gradient(#00000080, #00000080), url('../images/title-bg-min-1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 445px;
  padding-bottom: 120px;
}

.contact-hero-container {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.contact-hero-sub-heading-container {
  max-width: 440px;
  margin-top: 15px;
}

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

.contact-form-paragraph-container {
  margin-top: 15px;
  margin-bottom: 50px;
}

.from-row {
  justify-content: space-between;
  margin-bottom: 30px;
  display: flex;
}

.paragraph-email {
  color: #42a7f7;
  font-weight: 400;
  transition: all .5s;
}

.paragraph-email:hover {
  border: 1px #42a7f7;
  border-bottom-style: solid;
}

.contact-form-section {
  padding-top: 90px;
  padding-bottom: 0;
}

.contact-form-container {
  flex: none;
  max-width: 755px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 60px;
  box-shadow: 0 5px 30px #d6d7d891;
}

.contact-address-icon {
  color: #fff;
  flex: none;
  font-size: 27px;
  line-height: 27px;
  display: flex;
}

.contact-address-block {
  align-items: flex-start;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 0;
  display: flex;
}

.contact-address-container {
  flex-flow: column wrap;
  flex: 0 auto;
  align-items: flex-start;
  max-width: 300px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  font-style: normal;
  display: flex;
}

.contact-flex-container {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 90px;
  display: flex;
}

.contact-address-paragraph-container {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
}

.contact-address-icon-container {
  border-radius: 50px;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  display: flex;
}

.contact-address-heading-container {
  margin-bottom: 5px;
}

.contat-span {
  color: var(--lime-green);
  font-weight: 400;
  display: inline-block;
}

.contact-address-text-container {
  margin-top: 0;
}

.contact-submit-button-container {
  width: 100%;
  height: 45px;
  margin-top: 30px;
}

.contact-icons {
  width: 32px;
  height: 32px;
}

.c-faq-q {
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
}

.c-faq-a {
  perspective-origin: 50% 0;
  transform-origin: 50% 0;
  overflow: hidden;
  box-shadow: 0 4px 6px #0000001a;
}

.c-faq-a.box-shadow-off {
  box-shadow: none;
}

.c-faq {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.c-faq-a-text {
  padding: 0 25px 15px;
}

.faq-stripe-2 {
  background-color: #313233;
  width: 60%;
  height: 2px;
  position: absolute;
}

.faq-stripe-1 {
  background-color: #313233;
  width: 2px;
  height: 60%;
}

.c-faq-item {
  cursor: pointer;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 0;
  font-size: 1.2em;
  line-height: 1.6em;
}

.c-faq-item.with-border {
  border: 1px solid #cacaca;
  border-radius: 3px;
  margin-bottom: 15px;
}

.faq-heading-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.faq-container {
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

.faq-accordion-container {
  min-height: 50vh;
  margin-left: 0;
  padding-left: 0;
}

.align-center-2 {
  text-align: center;
  font-weight: 400;
}

.c-faq-icon {
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}

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

._w-faq-icon {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: relative;
}

.faq-sub-text-container {
  max-width: 465px;
  margin: 10px auto 50px;
}

.c-faq-q-text {
  flex: 1;
  padding: 20px;
}

.c-faq-q-text.different-padding {
  padding-top: 15px;
  padding-bottom: 15px;
}

.faq-divider {
  border-top: 1px dashed #ffffff40;
  height: 0;
}

.c-faq-divider {
  padding-left: 20px;
  padding-right: 20px;
}

.contact-map {
  height: 500px;
}

.services-hero-section {
  background-image: linear-gradient(#0006, #0006), url('../images/Title-banner-bg-min.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  min-height: 405px;
  padding-top: 175px;
}

.services-hero-container {
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
}

.services-hero-heading {
  justify-content: center;
  align-items: center;
  display: flex;
}

.services-hero-sub-heading {
  max-width: 465px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}

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

.services-category-container {
  width: 100%;
  height: 100%;
}

.services-catrgory-row {
  justify-content: center;
  align-items: center;
  display: flex;
}

.services-catrgory-row._2nd-row {
  margin-top: 40px;
}

.services-category-block {
  width: 100%;
  max-width: 360px;
  transition: all .3s;
  box-shadow: 0 5px 30px #d6d7d891;
}

.services-category-block:hover {
  transform: translate(0, -10px);
  box-shadow: 0 5px 45px #afb1b191;
}

.services-category-block.middle-block {
  margin-left: 40px;
  margin-right: 40px;
}

.service-block-image {
  object-fit: cover;
  width: 100%;
  max-width: 360px;
  min-height: 260px;
}

.service-block-heading {
  margin-bottom: 0;
}

.service-block-image-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.service-block-text-container {
  padding: 20px;
}

.service-block-link-container {
  align-items: center;
  display: flex;
}

.cta-container {
  background-color: #f8f8f8;
  border-radius: 7px;
  justify-content: flex-start;
  align-items: center;
  padding: 50px;
  display: flex;
}

.cta-heading-container {
  max-width: 570px;
  margin-left: 70px;
}

.cta-button-container {
  width: 100%;
  max-width: 175px;
  height: 45px;
  margin-left: 120px;
}

.help-you-grow-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.help-you-grow-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.help-you-grow-para-container {
  margin-top: 20px;
  margin-bottom: 30px;
}

.help-you-grow-data-container {
  display: flex;
}

.help-you-grow-data {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.help-you-grow-data.with-margin {
  margin-left: 175px;
}

.help-you-grow-number-container {
  margin-bottom: 10px;
}

.help-you-grow-text-container {
  flex-direction: column;
  justify-content: center;
  max-width: 470px;
  margin-left: 85px;
  display: flex;
}

.span-45 {
  color: #141414;
  font-family: Hind, sans-serif;
  font-size: 45px;
  font-weight: 400;
}

.help-you-grow-image-container {
  flex: none;
  width: 100%;
  margin-left: 0;
}

.help-you-grow-image {
  object-fit: cover;
  width: 100%;
  max-width: 555px;
  height: 100%;
}

.help-you-grow-block-text-container {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.span-17 {
  color: var(--black);
  font-size: 17px;
  line-height: 20px;
}

.grid {
  grid-column-gap: 50px;
  grid-row-gap: 80px;
}

.choose-us-image-container {
  flex: none;
  width: 100%;
  margin-left: 0;
}

.choose-us-image {
  object-fit: cover;
  width: 100%;
  max-width: 555px;
  height: 100%;
}

.choose-us-text-container {
  flex-direction: column;
  justify-content: center;
  max-width: 490px;
  margin-left: 0;
  display: flex;
}

.choose-us-bar-container {
  flex-direction: column;
  display: flex;
}

.choose-us-bar {
  width: 100%;
}

.choose-us-bar.middle-bar {
  margin-top: 20px;
  margin-bottom: 20px;
}

.choose-us-bar-title {
  margin-bottom: 5px;
}

.progress-bar-container {
  width: 100%;
}

.inactive-bar {
  background-color: #f2f5f8;
  border-radius: 100px;
  width: 100%;
  height: 12px;
  position: relative;
}

.active-bar-container {
  height: 12px;
  position: absolute;
}

.active-bar-container.roi {
  border-radius: 100px;
  width: 85%;
}

.active-bar-container.risk {
  width: 30%;
}

.active-bar-container.satisfaction {
  width: 100%;
}

.active-bar {
  background-color: var(--lime-green);
  transform-origin: 0%;
  border-radius: 100px;
  width: 100%;
  height: 12px;
  position: absolute;
}

.service-quote-section {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/quote-bg-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 90px;
  padding-bottom: 90px;
}

.service-quote-icon-container {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 15px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.service-quote-icon {
  width: 100%;
  height: 100%;
}

.service-quote-text-container {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.h4.white-font-align-center {
  color: var(--white);
  text-align: center;
}

.service-quote-author {
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 10px;
  display: flex;
}

.service-category-hero-section {
  background-image: linear-gradient(#0009, #0009), url('../images/quote-bg-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 445px;
  padding-bottom: 120px;
}

.service-category-hero-section.stock-market {
  background-image: linear-gradient(#0009, #0009), url('../images/Service-1-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.service-category-hero-section.mutual-funds {
  background-image: linear-gradient(#0009, #0009), url('../images/mutual-fund-bg-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.service-category-hero-section.insurance {
  background-image: linear-gradient(#0009, #0009), url('../images/insurance-min_1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.service-category-hero-section.business-loans {
  background-image: linear-gradient(#0009, #0009), url('../images/business-loan-min_1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.service-category-hero-section.money-market {
  background-image: linear-gradient(#0009, #0009), url('../images/money-market-min_1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.service-category-hero-container {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.service-category-sub-heading-container {
  max-width: 450px;
  margin-top: 10px;
}

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

.service-info-flex-container {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.service-info-left {
  max-width: 755px;
}

.service-info-right {
  border-radius: 5px;
  margin-left: 50px;
  padding: 30px;
  box-shadow: 0 5px 30px #d6d7d891;
}

.service-info-heading-container {
  margin-bottom: 15px;
}

.service-info-paragraph-container {
  margin-bottom: 30px;
}

.service-category-data-container {
  display: flex;
}

.service-data {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.service-data.with-margin {
  margin-left: 50px;
}

.service-info-text-container {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.service-info-number-container {
  margin-bottom: 10px;
}

.service-info-row {
  flex-direction: row;
  margin-bottom: 30px;
  display: flex;
}

.service-info-icon-container {
  width: 32px;
  height: 32px;
}

.service-row-text-container {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 15px;
  display: flex;
}

.service-row-heading {
  margin-bottom: 0;
}

.service-row-text {
  margin-top: 5px;
}

.service-info-icon {
  object-fit: contain;
  width: 28px;
  height: 28px;
}

.service-info-button-container {
  width: 295px;
  height: 60px;
}

.navbar-white-static {
  background-color: var(--white);
  border-bottom: 1px solid #00000014;
  justify-content: center;
  align-items: center;
  min-height: 85px;
  display: flex;
  position: static;
  inset: -120px 0% auto;
  box-shadow: 0 4px 20px #a7acb74d;
}

.blog-hero-section {
  background-color: #f8f8f8;
  height: 245px;
}

.blog-hero-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.blog-hero-heading-container {
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.blog-index-container {
  color: #848991;
  justify-content: center;
  align-items: center;
  font-family: Hind, sans-serif;
  font-size: 15px;
  line-height: 23px;
  display: flex;
}

.home-link {
  color: #848991;
  margin-right: 2px;
  transition: opacity .3s;
}

.home-link:hover {
  color: var(--lime-green);
}

.blog-post-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.blog-search-container {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.full-horizontal-divider {
  background-color: #e7e7e7;
  width: 100%;
  max-width: 800px;
  height: 1px;
  margin: 40px auto;
}

.blog-search-icon {
  width: 14px;
}

.blog-search-input {
  color: #313233;
  background-color: #0000;
  border: 1px #000;
  height: 100%;
  margin-bottom: 0;
  font-family: Hind, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.blog-search-input::placeholder {
  color: var(--black);
  font-weight: 400;
}

.blog-search {
  background-color: #f8f8f8;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  min-width: 280px;
  height: 55px;
  margin-bottom: 0;
  display: flex;
  position: relative;
  box-shadow: inset 0 0 4px #00000029;
}

.blog-search:focus {
  color: #848991;
}

.blog-search-icon-container {
  z-index: 0;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 50px;
  padding-right: 0;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.important-recommendation-collection-container {
  margin-top: 20px;
}

.all-blog-post {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

.blog-search-button {
  z-index: 1;
  color: #84899199;
  background-color: #0000;
  width: 50px;
  position: relative;
}

.blog-search-button:focus {
  color: #848991;
}

.blog-about-button-container {
  border-radius: 3px;
  max-width: 140px;
  height: 35px;
  transition: all .4s;
  overflow: hidden;
}

.blog-about-button-container:hover {
  transform: translate(0, -10px);
  box-shadow: 0 5px 45px #afb1b191;
}

.blog-about-paragraph-container {
  margin-top: 20px;
  margin-bottom: 25px;
}

.blog-about-sticky-container {
  width: 100%;
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  position: sticky;
  top: 100px;
  overflow: visible;
}

.blog-right-flex {
  max-width: 280px;
  margin-left: 0;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
  position: sticky;
  top: 0;
}

.blog-post-container {
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.blog-post-rich-text blockquote {
  border-left-style: solid;
  border-left-color: var(--lime-green);
  color: var(--black-2);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 5px 0 5px 25px;
  font-family: Metropolis, sans-serif;
  font-size: 33px;
  font-weight: 300;
  line-height: 49px;
}

.blog-post-rich-text p {
  color: #848991;
}

.blog-post-rich-text a {
  color: var(--lime-green);
  font-family: Metropolis, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
}

.blog-post-rich-text h2 {
  color: var(--black-2);
  padding-bottom: 10px;
  font-family: Metropolis, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 38px;
}

.blog-post-rich-text h3 {
  color: var(--dim-grey);
  padding-bottom: 5px;
  font-family: Metropolis, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.blog-post-rich-text h4 {
  color: var(--dim-grey);
  padding-bottom: 5px;
  font-family: Metropolis, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
}

.blog-post-rich-text strong {
  color: var(--black-2);
}

.blog-post-rich-text li {
  color: #848991;
  font-family: Hind, sans-serif;
  font-size: 17px;
  line-height: 30px;
}

.blog-post-block {
  flex-direction: column;
  justify-content: flex-start;
  max-width: 350px;
  height: 100%;
  margin-bottom: 40px;
  display: inline-block;
  box-shadow: 0 20px 40px #6265681a;
}

.blog-post-block-image-container {
  height: 280px;
}

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

.blog-post-category {
  margin-right: 7px;
}

.blog-post-catgory-list {
  display: flex;
}

.blog-post-block-title {
  color: #4f545b;
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: Metropolis, sans-serif;
  font-size: 22px;
  line-height: 34px;
}

.blog-post-block-date-container {
  align-items: center;
  height: 13px;
  display: flex;
}

.clock-icon-container {
  align-items: center;
  display: flex;
}

.clock-icon {
  width: 13px;
  height: 13px;
}

.blog-post-date {
  margin-left: 5px;
}

.blog-post-description {
  margin-top: 20px;
  margin-bottom: 25px;
  display: block;
}

.blog-post-block-text-container {
  flex-direction: column;
  justify-content: space-between;
  padding: 45px 35px;
}

.blog-link-container {
  align-items: center;
  display: flex;
}

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

.read-more-link {
  text-transform: uppercase;
  padding-bottom: 3px;
  transition: box-shadow .8s;
  box-shadow: inset 0 -2px #848991;
}

.read-more-link:hover {
  box-shadow: inset 0 -2px 0 0 var(--lime-green);
}

.blog-post-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.blog-post-list {
  column-count: 2;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.important-recommendation-post-date {
  justify-content: flex-start;
  align-items: flex-start;
  height: 14px;
  display: flex;
}

.important-recommendation-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  flex: none;
  width: 75px;
  height: 75px;
  margin-bottom: 0;
  margin-right: 20px;
}

.important-recommendation-block {
  align-items: flex-start;
  min-height: 75px;
  margin-bottom: 20px;
  display: flex;
}

.important-recommendation-flex-text-container {
  flex-direction: column;
  justify-content: space-around;
  min-height: 75px;
  display: flex;
}

.time-icon {
  width: 14px;
  height: 14px;
}

.related-link {
  align-items: flex-start;
  margin-bottom: 10px;
  display: flex;
}

.related-arrow-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.long-arrow-line-45 {
  background-color: var(--grey);
  opacity: .8;
  transform-origin: 100%;
  width: 6.5px;
  height: 2px;
  margin-bottom: -1px;
  transform: rotate(45deg);
}

.long-arrow-line-45.fliped {
  background-color: var(--grey);
  transform-origin: 100%;
  justify-content: center;
  align-items: center;
  width: 6.5px;
  height: 2px;
  margin-top: -1px;
  margin-bottom: 0;
  display: block;
  transform: rotate(-45deg);
}

.related-heading-container {
  margin-bottom: 20px;
}

.blog-post-page {
  padding-top: 90px;
  padding-bottom: 90px;
}

.blog-post-page-container {
  width: 100%;
  height: 100%;
}

.blog-heading {
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 20px auto;
  display: flex;
}

.blog-collection-list {
  justify-content: center;
  align-items: center;
  display: flex;
}

.blog-page-category {
  margin-right: 7px;
}

.blog-author-details-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.author-of-blog {
  align-items: center;
  margin-right: 20px;
  display: flex;
}

.author-image-container {
  border-radius: 100px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  overflow: hidden;
}

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

.author-name-container {
  margin-left: 3px;
  display: inline-block;
}

.blog-post-date-container {
  justify-content: flex-start;
  align-items: flex-start;
  height: 14px;
  display: flex;
}

.blog-main-image-container {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 70px;
}

.blog-main-image {
  width: 100%;
  height: 100%;
}

.blog-post-rich-text-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-social-icon-container {
  max-width: 800px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-social-icon {
  max-width: 90px;
  height: 38px;
  margin-right: 17px;
}

.square-button {
  color: #fff;
  text-align: center;
  background-color: #2293d7;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Metropolis, sans-serif;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.square-button.facebook {
  background-color: #3b5998;
  background-image: url('../images/facebook.svg');
  background-position: 15px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  padding-top: 12px;
  padding-left: 35px;
  font-family: Hind, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.square-button.twitter {
  background-color: #00aced;
  background-image: url('../images/twitter.svg');
  background-position: 15px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  padding-top: 12px;
  padding-left: 35px;
  font-family: Hind, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.square-button.pin {
  background-color: #cb2027;
  background-image: url('../images/pin-white.svg');
  background-position: 15px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  padding-top: 12px;
  padding-left: 35px;
  font-family: Hind, sans-serif;
  font-weight: 400;
}

.square-button.in {
  background-color: #4875b4;
  background-image: url('../images/linked-in.svg');
  background-position: 15px;
  background-repeat: no-repeat;
  background-size: 15px 13px;
  padding-top: 12px;
  padding-left: 35px;
  font-family: Hind, sans-serif;
  font-weight: 400;
}

.author-details-container {
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 75px;
  display: flex;
  box-shadow: 0 22px 25px -10px #4f547014;
}

.footer-author-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 250px;
  flex: none;
  width: 88px;
  height: 88px;
  margin-right: 30px;
}

.blog-bottom-author-name {
  margin-bottom: 5px;
}

.news-blog-categoty {
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand-for-mob {
  width: 100%;
  max-width: 130px;
  height: 30px;
  display: none;
}

.brand-for-mob.w--current {
  display: none;
}

.all-nav-links-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.exponent-dark-logo {
  width: 100%;
  max-width: 130px;
  height: 30px;
  display: none;
}

.exponent-white-logo {
  width: 100%;
  max-width: 130px;
  height: 30px;
}

.nav-links-list {
  display: none;
}

.nav-list-item {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.nav-link-icon-container {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  display: flex;
}

.services-testimonial-image {
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.drop-down-icon-black-2 {
  color: var(--black);
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 12px;
  position: static;
}

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

.search-section {
  background-color: #f5f6fa;
  padding-top: 80px;
  padding-bottom: 80px;
}

.search-heading-container {
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.search-home-page-link-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-link-2 {
  cursor: pointer;
}

.h7-hind {
  color: #fff;
  font-family: Hind, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  display: flex;
}

.h7-hind.black-font {
  color: #313233;
}

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

._404-search-input {
  color: #848991;
  background-color: #0000;
  border: 1px solid #0000;
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 15px;
  padding-right: 20px;
  display: block;
}

._404-heading-container {
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

._404-search-field {
  background-color: #f8f8f8;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 60%;
  height: 60px;
  margin-top: 60px;
  margin-bottom: 0;
  display: flex;
  position: relative;
  box-shadow: 0 0 20px #84899199;
}

._404-search-button {
  color: #222246;
  background-color: #fff;
}

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

.search-result-block {
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  box-shadow: 0 20px 40px #6265681a;
}

.search-result-item {
  justify-content: flex-start;
  align-items: center;
  width: 48%;
  display: flex;
}

.search-result-list {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.search-container {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.search-result-wrapper {
  margin-left: 60px;
}

.category-hero-section, .author-hero-section {
  background-color: #f8f8f8;
  height: 245px;
}

.author-hero-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.author-hero-heading-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.category-hero-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.category-hero-heading-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.scroll-to-top-button {
  z-index: 10;
  background-color: var(--lime-green);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: fixed;
  inset: auto 20px 20px auto;
}

.scroll-to-top-link {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-slide-arrow {
  background-color: var(--white);
  width: 10px;
  height: 2px;
  display: flex;
  transform: rotate(45deg);
}

.hero-slide-arrow.fliped {
  margin-top: 4px;
  transform: rotate(-45deg);
}

.percentage-icon {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-bottom: 0;
  display: flex;
}

.dollar-icon, .our-state-clock-icon, .user-icon {
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  margin-bottom: 0;
  display: flex;
}

.hero-slide-nav {
  bottom: 20px;
}

.nav-link-drop-down {
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Metropolis, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: color .3s;
  display: flex;
}

.nav-link-drop-down:hover, .nav-link-drop-down.w--current {
  color: var(--lime-green);
}

.search-right-flex {
  max-width: 280px;
  margin-left: 0;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
  position: sticky;
  top: 0;
}

.search-post-block-image-container {
  height: 280px;
}

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

.search-post-block-text-container {
  flex-direction: column;
  justify-content: space-between;
  padding: 45px 35px;
}

.search-post-block-title {
  color: #4f545b;
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: Metropolis, sans-serif;
  font-size: 22px;
  line-height: 34px;
}

.search-post-description {
  margin-top: 20px;
  margin-bottom: 25px;
  display: block;
}

.search-about-sticky-container {
  width: 100%;
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  position: sticky;
  top: 80px;
  overflow: visible;
}

.search-about-paragraph-container {
  margin-top: 20px;
  margin-bottom: 25px;
}

.search-about-button-container {
  border-radius: 3px;
  max-width: 140px;
  height: 35px;
  transition: all .4s;
  overflow: hidden;
}

.search-about-button-container:hover {
  transform: translate(0, -10px);
  box-shadow: 0 5px 45px #afb1b191;
}

.search-field-container {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.search-field {
  background-color: #f8f8f8;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  min-width: 280px;
  height: 55px;
  margin-bottom: 0;
  display: flex;
  position: relative;
  box-shadow: inset 0 0 4px #00000029;
}

.search-field:focus {
  color: #848991;
}

.search-field-input {
  color: #313233;
  background-color: #0000;
  border: 1px #000;
  height: 100%;
  margin-bottom: 0;
  font-family: Hind, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.search-field-input::placeholder {
  color: var(--black);
  font-weight: 400;
}

.search-icon-container {
  z-index: 0;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 50px;
  padding-right: 0;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.search-icon {
  width: 14px;
}

.search-button {
  z-index: 1;
  color: #84899199;
  background-color: #0000;
  width: 50px;
  position: relative;
}

.search-button:focus {
  color: #848991;
}

.license-section {
  border-top: 1px solid #efefef;
  padding-top: 90px;
  padding-bottom: 50px;
}

.license-heading-container {
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.license-paragraph {
  text-align: center;
  max-width: 630px;
  margin-bottom: 45px;
  margin-left: auto;
  margin-right: auto;
}

.license-blocks-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.license-block {
  border-radius: 7px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin-bottom: 40px;
  padding: 20px;
  display: flex;
  box-shadow: 0 5px 45px #afb1b14d;
}

.license-title {
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.license-details {
  text-align: center;
  max-width: 280px;
  margin-left: 35px;
}

.copy-right-text-container {
  color: #888;
  font-family: Hind, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
}

.copy-right-text {
  font-size: 14px;
  display: inline-block;
}

.change-log-link {
  color: #888;
  margin-left: 10px;
  margin-right: 10px;
  font-family: Hind, sans-serif;
  font-size: 14px;
  text-decoration: underline;
  transition: opacity .3s;
}

.change-log-link:hover {
  color: var(--lime-green);
}

.change-log-link.w--current:hover {
  color: #2293d7;
}

.licensing-link {
  color: #888;
  font-family: Hind, sans-serif;
  font-size: 14px;
  text-decoration: underline;
  transition: color .3s;
}

.licensing-link:hover {
  color: var(--lime-green);
}

.changelog-section {
  border-top: 1px solid #efefef;
  padding-top: 90px;
  padding-bottom: 90px;
}

.chagelog-heading-container {
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.changelog-paragraph {
  text-align: center;
  max-width: 630px;
  margin-bottom: 45px;
  margin-left: auto;
  margin-right: auto;
}

.changelog-blocks-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.chagelog-block {
  border-radius: 7px;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 50%;
  min-height: 120px;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 5px 45px #afb1b14d;
}

.changelog-title {
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.changelog-details {
  text-align: center;
  max-width: 280px;
  margin-left: 35px;
}

.style-guide-section {
  border-top: 1px solid #efefef;
  padding-top: 90px;
  padding-bottom: 30px;
}

.style-guide-heading-container {
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.style-guide-paragraph {
  text-align: center;
  max-width: 630px;
  margin-bottom: 45px;
  margin-left: auto;
  margin-right: auto;
}

.style-guide-blocks-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.style-guide-block {
  border-radius: 7px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 95%;
  margin-bottom: 60px;
  padding: 20px;
  display: flex;
  position: relative;
  box-shadow: 0 5px 45px #afb1b14d;
}

.style-guide-title {
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  margin-bottom: 5px;
  display: flex;
  position: sticky;
  top: 20px;
}

.style-guide-para-wrapper {
  margin-bottom: 20px;
}

.color-palette-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 50%;
  display: grid;
}

.color-palette {
  background-color: var(--lime-green);
  height: 120px;
  box-shadow: 0 5px 45px #afb1b14d;
}

.color-palette.white {
  background-color: var(--white);
}

.color-palette.black {
  background-color: var(--black);
}

.color-palette.grey {
  background-color: var(--grey);
}

.color-palette.black-2 {
  background-color: var(--black-2);
}

.color-palette.dim-grey {
  background-color: var(--dim-grey);
}

.button-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 50%;
  display: grid;
}

.style-rich-text-container {
  width: 50%;
}

@media screen and (min-width: 1280px) {
  .main-container {
    padding-left: 0;
    padding-right: 0;
  }

  .green-btn {
    transition-duration: .3s;
    transition-timing-function: ease;
  }

  .hero-slide-container {
    align-items: flex-start;
  }

  .btn {
    border: 1px solid var(--lime-green);
    transition-duration: .3s, .4s;
  }

  .other-services-container {
    flex-flow: row;
  }

  .other-services-block-container {
    flex-wrap: nowrap;
    margin-top: 0;
  }

  .services-blocks-column {
    margin-top: 30px;
  }

  .other-services-text-container {
    max-width: 545px;
    margin-right: 70px;
  }

  .other-services-button-container {
    margin-left: 0;
    margin-right: 0;
  }

  .news-blocks-collection {
    margin-left: 20px;
    margin-right: 20px;
  }

  .news-blog-block {
    padding-left: 0;
    padding-right: 0;
  }

  .news-blog-block-image-container {
    width: 100%;
    max-width: none;
  }

  .h8 {
    font-size: 15px;
  }

  .our-story-text-container {
    margin-right: -160px;
  }

  .our-story-block-heading {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .contact-form-container {
    max-width: 755px;
    margin-right: 50px;
  }

  .contact-address-container {
    margin-left: 0;
    margin-right: 0;
  }

  .help-you-grow-image, .choose-us-image {
    max-width: 555px;
  }

  .choose-us-bar {
    width: 100%;
  }

  .active-bar {
    transform-origin: 0%;
  }

  .all-blog-post {
    margin-left: 20px;
  }

  .blog-right-flex {
    margin-right: 0;
  }

  .blog-post-block {
    max-width: 400px;
  }

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

  .blog-post-item {
    justify-content: center;
    align-items: flex-end;
    max-width: 400px;
    margin-left: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .blog-post-collection-container {
    padding-left: 0;
  }

  .search-result-block {
    max-width: 390px;
    min-height: 710px;
  }

  .search-right-flex {
    margin-right: 0;
  }
}

@media screen and (max-width: 991px) {
  .main-container {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-container {
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    position: relative;
  }

  .nav-links-container {
    z-index: 5;
    background-color: #0000004d;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    display: flex;
    position: fixed;
    inset: 0% 0% 0% auto;
  }

  .left-nav-links-container {
    flex-direction: column;
    order: 1;
    align-items: flex-start;
    width: 100%;
    margin-top: 55px;
    display: flex;
  }

  .nav-link {
    color: #000;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 5px;
    line-height: 28px;
    display: flex;
  }

  .nav-link.middle-nav-link, .nav-link.middle-nav-link-right {
    color: var(--black);
    margin-left: 0;
    margin-right: 0;
  }

  .nav-link.drop-down-container {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .brand {
    order: -1;
  }

  .brand.w--current {
    order: -1;
    margin-bottom: 0;
  }

  .drop-down-link {
    color: #000;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .drop-down-link.black {
    padding-left: 0;
  }

  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .dropdown-toggle.w--open {
    padding-bottom: 0;
  }

  .drop-down-icon-white {
    color: #000;
    margin: 0;
  }

  .right-nav-links-container {
    flex-direction: column;
    order: 2;
    align-items: flex-start;
    width: 100%;
  }

  .nav-button-container {
    margin-top: 25px;
  }

  .dropdown-link {
    padding-left: 0;
    padding-right: 0;
    font-family: Hind, sans-serif;
    font-size: 16px;
    font-weight: 400;
  }

  .nav-drop-down-list.w--open {
    box-shadow: none;
    width: auto;
    padding-bottom: 0;
    position: static;
  }

  .drop-down-pointer {
    display: none;
  }

  .home-hero-section, .hero-slider {
    height: auto;
  }

  .hero-slide {
    height: auto;
    min-height: 550px;
  }

  .hero-slide._2 {
    height: auto;
  }

  .hero-slide-container {
    align-items: flex-start;
    padding-top: 150px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .hero-slide-heading-container {
    max-width: 490px;
  }

  .hero-slide-heading-container._1st-slide {
    max-width: 440px;
  }

  .hero-slide-heading-container._2nd-slide {
    max-width: 510px;
  }

  .hero-slide-heading-container._3rd-slide {
    max-width: 490px;
  }

  .h1, .h1._300-light-white-fonts {
    font-size: 40px;
    line-height: 50px;
  }

  .h1._300-align-center-white {
    text-align: center;
    font-size: 40px;
    line-height: 50px;
  }

  .home-hero-left-arrow, .home-hero-right-arrow {
    display: none;
  }

  .other-services-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
  }

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

  .other-services-block-container {
    justify-content: space-between;
    width: auto;
  }

  .services-blocks-column {
    flex: 0 auto;
    width: 50%;
    margin-top: 30px;
  }

  .services-blocks-column._2nd-column {
    flex-direction: column;
    align-items: flex-end;
    margin-left: 0;
    display: flex;
  }

  .para-17.inline {
    display: inline-block;
  }

  .other-services-text-container {
    align-items: flex-start;
    max-width: none;
    margin-right: 0;
  }

  .other-service-block {
    width: 95%;
    max-width: none;
  }

  .h3, .h3._300-light {
    font-size: 29px;
    line-height: 42px;
  }

  .other-services-button-container {
    margin-left: 0;
    margin-right: 0;
  }

  .money-work-for-you-container {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
    padding-right: 50px;
  }

  .money-work-for-you-left-flex {
    display: flex;
  }

  .money-work-for-you-right-flex {
    max-width: none;
    margin-top: 50px;
    margin-left: 0;
  }

  .money-work-for-you-blocks-container {
    width: 100%;
  }

  .money-work-for-you-block {
    width: 47%;
  }

  .money-work-for-you-block-image {
    max-width: none;
    height: auto;
  }

  .money-work-for-you-text-container {
    flex-direction: column;
    justify-content: center;
    display: flex;
  }

  .money-work-for-you-paragraph-container {
    max-width: none;
  }

  .ai-horizontal-divider-right {
    width: 60%;
    margin-right: 0;
    right: -32%;
    transform: none;
  }

  .ai-work-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ai-work-block.with-margin-up---down {
    margin-top: 0;
    margin-bottom: 0;
  }

  .how-it-works-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .ai-horizontal-divider-left {
    width: 60%;
    right: -28%;
    transform: none;
  }

  .how-it-works-container {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .ai-icon-container {
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-left: -10px;
    display: flex;
  }

  .home-quote-section {
    padding-top: 90px;
  }

  .home-quote-container {
    flex-direction: row;
    padding-left: 50px;
    padding-right: 0;
  }

  .home-quote-text-container {
    max-width: 50%;
    margin-bottom: 41px;
    margin-right: 0;
  }

  .home-quote-image-container {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex: none;
    width: 50%;
    margin-left: 50px;
  }

  .workflow-container {
    align-items: flex-start;
  }

  .methods-section {
    padding-bottom: 70px;
  }

  .method-container {
    flex-direction: row;
    align-items: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }

  .method-right-flex {
    max-width: none;
    margin-left: 0;
  }

  .method-image {
    max-width: none;
  }

  .method-text-container {
    margin-left: 50px;
  }

  .method-paragraph-container {
    max-width: none;
  }

  .services-testimonial-text-container {
    max-width: 340px;
    margin-left: 40px;
  }

  .news-section {
    padding-bottom: 90px;
  }

  .new-blog-collection {
    flex-flow: column wrap;
    display: flex;
  }

  .news-blocks-collection {
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .news-blog-block {
    width: 100%;
    margin-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .news-blog-block-image-link {
    margin-bottom: 15px;
  }

  .news-blog-block-image-container {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }

  .news-blog-block-heading {
    margin-top: 5px;
    margin-bottom: 15px;
  }

  .our-states-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .our-state-row {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .our-state-row.bottom-margin {
    flex-wrap: nowrap;
  }

  .our-states-paragraph-container {
    margin-left: 50px;
  }

  .our-state-para-2 {
    margin-left: 40px;
  }

  .our-state-block {
    width: 46%;
    height: 200px;
    margin-bottom: 50px;
  }

  .new-button-container {
    margin-top: 0;
  }

  .home-contact-container {
    max-width: 620px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-field._50 {
    width: 255px;
  }

  .text-field.contact-form {
    width: 100%;
  }

  .text-field.contact-form-2 {
    width: 100%;
    margin-top: 30px;
  }

  .footer-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .footer-column-container {
    flex-wrap: wrap;
  }

  ._1st-footer-column {
    border-right-style: none;
    height: auto;
    margin-bottom: 60px;
  }

  .footer-nav-column-container {
    justify-content: flex-start;
  }

  .para-16.fixed-overflow-hidden {
    height: auto;
    overflow: visible;
  }

  .navbar-white {
    height: 75px;
    display: block;
  }

  .nav-link-black {
    margin-bottom: 5px;
    margin-left: 0;
    margin-right: 0;
    padding: 5px;
  }

  .nav-link-black.middle-nav-link, .nav-link-black.middle-nav-link-right {
    margin-left: 0;
    margin-right: 0;
  }

  .nav-drop-down {
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .all-heading-container {
    width: 65%;
  }

  .h2 {
    font-size: 32px;
    line-height: 44px;
  }

  .h2._300-align-center-white {
    color: var(--white);
    font-weight: 300;
  }

  .h4 {
    font-size: 24px;
    line-height: 36px;
  }

  .h7._600-bold-align-center {
    text-align: center;
  }

  .all-paragraph-container {
    width: 65%;
  }

  .about-hero-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .our-story-container {
    max-width: none;
    padding-left: 50px;
    padding-right: 50px;
  }

  .our-story-image-container {
    flex-direction: column;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .our-story-text-container {
    max-width: none;
    height: auto;
    margin-bottom: 0;
    margin-right: 0;
  }

  .our-story-block-container {
    align-items: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }

  .our-story-block {
    justify-content: flex-start;
    width: 30%;
    height: 100%;
    min-height: 270px;
  }

  .our-story-block.green-background {
    width: 30%;
    height: auto;
    padding-bottom: 0;
  }

  .our-story-block.middle-block {
    height: 100%;
    min-height: 0;
    margin: 0;
  }

  .why-choose-us-block {
    width: 31%;
  }

  .why-choose-us-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .team-member-image {
    height: 345px;
  }

  .team-member-image._8, .team-member-image._4, .team-member-image._7, .team-member-image._3 {
    background-position: 50%;
  }

  .team-member-image._1 {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .team-member-image._5, .team-member-image._2, .team-member-image._6 {
    background-position: 50%;
  }

  .team-member-block {
    width: 48%;
    margin-bottom: 40px;
  }

  .member-social-media-icon-container {
    display: flex;
  }

  .our-people-row {
    flex-flow: wrap;
    place-content: center space-between;
    align-items: center;
    margin-top: 0;
  }

  .our-people-sub-text-container {
    margin-bottom: 50px;
  }

  .our-people-section {
    padding-bottom: 90px;
  }

  .our-people-container {
    padding-left: 50px;
    padding-right: 50px;
  }

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

  .about-quote-container {
    flex-direction: row;
    padding-left: 50px;
    padding-right: 0;
  }

  .about-quote-text-container {
    width: 50%;
    margin-bottom: 0;
    margin-right: 0;
  }

  .about-quote-image-container {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    max-width: none;
    margin-left: 50px;
  }

  .about-quote-image {
    max-width: none;
  }

  .our-team-button-container {
    margin-top: 10px;
  }

  .our-client-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .client-slide {
    cursor: grab;
    width: 20%;
  }

  .get-in-touch-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .get-in-touch-heading-container {
    max-width: 350px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .from-row {
    flex-direction: column;
  }

  .contact-form-section {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .contact-form-container {
    width: 60%;
    max-width: none;
    margin-right: 0;
    padding-left: 25px;
    padding-right: 25px;
  }

  .contact-address-container {
    width: 35%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-flex-container {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .contact-address-paragraph-container {
    align-items: flex-start;
  }

  .contat-span {
    display: inline-block;
  }

  .faq-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .faq-accordion-container {
    margin-left: 0;
    padding-left: 0;
  }

  .services-hero-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .services-category-container {
    justify-content: center;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
  }

  .services-catrgory-row {
    flex-direction: column;
    padding-right: 20px;
  }

  .services-catrgory-row._2nd-row {
    margin-top: 0;
    padding-left: 20px;
    padding-right: 0;
  }

  .services-category-block {
    width: 100%;
    max-width: none;
  }

  .services-category-block.middle-block {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .service-block-image {
    max-width: none;
  }

  .help-you-grow-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .help-you-grow-data.with-margin {
    margin-left: 120px;
  }

  .help-you-grow-text-container {
    margin-left: 0;
  }

  .help-you-grow-image-container {
    width: auto;
  }

  .help-you-grow-image {
    object-fit: cover;
    object-position: 50% 50%;
  }

  .grid {
    grid-column-gap: 50px;
    grid-row-gap: 80px;
  }

  .service-quote-container, .service-category-hero-container, .service-info-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .service-info-flex-container {
    flex-direction: column;
    align-items: center;
  }

  .service-info-right {
    margin-top: 90px;
    margin-left: 0;
  }

  .navbar-white-static {
    min-height: 70px;
  }

  .blog-post-section {
    padding-bottom: 70px;
  }

  .blog-search {
    min-width: auto;
  }

  .blog-search-icon-container {
    display: flex;
  }

  .all-blog-post {
    flex: 0 500px;
    padding-right: 0;
  }

  .blog-about-sticky-container {
    padding-left: 0;
    padding-right: 0;
    top: 60px;
  }

  .blog-right-flex {
    max-width: 250px;
    margin-left: 0;
  }

  .blog-post-container {
    justify-content: space-around;
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-post-block {
    width: 100%;
    max-width: none;
    display: block;
  }

  .blog-post-block-text-container {
    min-height: 0;
  }

  .blog-post-item {
    width: 93%;
    padding-left: 0;
    padding-right: 0;
  }

  .blog-post-list {
    column-count: 0;
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }

  .blog-post-page-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .blog-social-icon-container {
    justify-content: space-around;
  }

  .blog-social-icon {
    margin-right: 0;
  }

  .author-details-container {
    flex-direction: column;
  }

  .footer-author-image {
    margin-right: 0;
  }

  .blog-bottom-author-name {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .menu-icon-container {
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    display: flex;
  }

  .brand-for-mob {
    max-width: 115px;
    display: block;
  }

  .brand-for-mob.w--current {
    max-width: 115px;
    margin-left: 0;
    margin-right: 0;
    display: block;
    position: static;
    inset: 20px 0% auto;
  }

  .menu-button {
    z-index: 10;
    background-color: #0000;
    padding: 0;
  }

  .menu-button.w--open {
    z-index: 10;
    background-color: #0000;
  }

  .all-nav-links-container {
    z-index: 5;
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 40%;
    height: 100vh;
    padding: 30px 40px;
    display: flex;
    position: absolute;
    inset: 0% 0% 0% auto;
    overflow: auto;
  }

  .menu-icon {
    display: block;
    position: absolute;
    inset: auto;
  }

  .exponent-dark-logo {
    display: block;
  }

  .exponent-white-logo {
    display: none;
  }

  .nav-links-list {
    order: 3;
    margin-top: 55px;
    margin-bottom: 0;
    margin-left: 0;
    display: block;
  }

  .nav-list-item {
    margin-bottom: 15px;
  }

  .services-testimonial-image {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    inset: 0%;
  }

  .drop-down-icon-black-2 {
    color: #000;
    margin: 0;
  }

  .our-story-image {
    position: static;
  }

  .link-block {
    display: flex;
  }

  ._404-search-button {
    display: block;
  }

  .search-result-block {
    width: 100%;
    max-width: none;
  }

  .search-container {
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
  }

  .search-result-wrapper {
    margin-left: 0;
  }

  .nav-link-drop-down {
    color: #000;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 5px;
    line-height: 28px;
    display: flex;
  }

  .nav-link-drop-down.drop-down-container {
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .close-icon {
    width: 30px;
    height: 30px;
    display: none;
    position: absolute;
    inset: auto;
  }

  .search-right-flex {
    order: 1;
    width: 80%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .search-post-block-text-container {
    min-height: 0;
  }

  .search-about-sticky-container {
    padding-left: 0;
    padding-right: 0;
    top: 60px;
  }

  .search-field {
    min-width: auto;
  }

  .search-icon-container {
    display: flex;
  }

  .license-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .license-heading-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .license-blocks-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .license-block {
    width: 80%;
    margin-bottom: 40px;
  }

  .changelog-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .chagelog-heading-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .changelog-blocks-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .chagelog-block {
    width: 80%;
    margin-bottom: 50px;
  }

  .style-guide-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .style-guide-heading-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .style-guide-blocks-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .style-guide-block {
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
  }

  .style-guide-title {
    width: 30%;
  }

  .color-palette-container, .button-container, .style-rich-text-container {
    width: 65%;
  }
}

@media screen and (max-width: 767px) {
  .brand.w--current {
    padding-left: 0;
  }

  .hero-slide-heading-container._1st-slide {
    max-width: 360px;
  }

  .h1, .h1._300-light-white-fonts, .h1._300-align-center-white {
    font-size: 35px;
    line-height: 48px;
  }

  .other-services-block-container {
    flex-direction: column;
  }

  .service-block-paragraph-container {
    display: flex;
  }

  .services-blocks-column, .other-service-block {
    width: 100%;
  }

  .h3._300-light {
    font-size: 29px;
    line-height: 42px;
  }

  .money-work-for-you-container {
    align-items: center;
  }

  .money-work-for-you-right-flex {
    margin-top: 0;
  }

  .money-work-for-you-blocks-container {
    flex-direction: column;
  }

  .money-work-for-you-block {
    flex: none;
    width: 100%;
    margin-bottom: 50px;
  }

  .ai-horizontal-divider-right {
    width: 35%;
    height: 2px;
    inset: auto auto -65px;
    transform: rotate(90deg);
  }

  .ai-work-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ai-work-block.with-margin-up---down {
    margin-top: 135px;
    margin-bottom: 135px;
  }

  .ai-horizontal-divider-left {
    width: 35%;
    height: 2px;
    position: absolute;
    inset: auto auto -65px;
    transform: rotate(90deg);
  }

  .how-it-works-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .home-quote-section {
    padding-top: 90px;
  }

  .home-quote-container {
    flex-direction: column;
    padding-left: 35px;
    padding-right: 35px;
  }

  .home-quote-text-container {
    max-width: none;
    margin-bottom: 50px;
    margin-right: 0;
  }

  .home-quote-image-container {
    width: auto;
    margin-left: 0;
  }

  .workflow-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
    display: flex;
  }

  .methods-section {
    padding-bottom: 70px;
  }

  .method-container {
    flex-direction: column;
    padding-left: 35px;
    padding-right: 35px;
  }

  .method-image-container {
    margin-bottom: 50px;
  }

  .method-text-container {
    margin-left: 0;
  }

  .services-testimonial-paragraph-container {
    max-width: none;
  }

  .services-testimonial-section {
    padding-top: 0;
  }

  .services-testimonial-image-container {
    background-image: none;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .services-testimonial-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .services-testimonial-text-container {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin-top: 0;
    margin-left: 0;
  }

  .news-container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .news-blocks-collection {
    width: 100%;
  }

  .our-state-row.bottom-margin {
    flex-direction: column;
  }

  .our-state-heading-container {
    max-width: none;
  }

  .our-states-paragraph-container {
    justify-content: space-between;
    margin-top: 50px;
    margin-left: 0;
  }

  .our-state-para-1, .our-state-para-2 {
    max-width: none;
  }

  .our-state-block {
    width: 100%;
    height: auto;
    min-height: 185px;
    padding-bottom: 20px;
  }

  .our-state-block.green-bg {
    height: 185px;
  }

  .text-field._50 {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row.fixed-height {
    height: 150px;
  }

  .footer-social-media-icon-container {
    order: -1;
    margin: 0 auto 15px;
    padding-top: 0;
  }

  .footer-nav-column-container {
    flex-wrap: wrap;
  }

  .all-heading-container, .all-paragraph-container {
    width: 100%;
  }

  .about-hero-container, .our-story-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .our-story-block-container {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
  }

  .our-story-block, .our-story-block.green-background {
    width: 100%;
  }

  .our-story-block.middle-block {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .why-choose-us-block {
    width: auto;
    margin-bottom: 30px;
  }

  .why-choose-us-block-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  .why-choose-us-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .team-member-image {
    height: auto;
    min-height: 300px;
  }

  .team-member-block {
    width: 100%;
    margin-bottom: 40px;
  }

  .our-people-row {
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
  }

  .our-people-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-quote-section {
    padding-top: 90px;
  }

  .about-quote-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-quote-text-container {
    width: auto;
    margin-bottom: 50px;
    margin-right: 0;
  }

  .about-quote-image-container {
    margin-left: 0;
  }

  .our-team-button-container {
    margin-top: 10px;
  }

  .client-slide {
    width: 50%;
  }

  .get-in-touch-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .from-row {
    flex-direction: column;
  }

  .contact-form-container {
    width: auto;
    max-width: none;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-address-container {
    width: auto;
    margin-left: 0;
  }

  .contact-flex-container {
    flex-flow: column wrap;
    margin-bottom: 70px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .services-category-container {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

  .services-catrgory-row {
    padding-right: 0;
  }

  .services-catrgory-row._2nd-row {
    margin-top: 40px;
    padding-left: 0;
  }

  .cta-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-heading-container {
    margin-left: 0;
  }

  .cta-button-container {
    margin-top: 50px;
    margin-left: 0;
  }

  .help-you-grow-text-container {
    order: 0;
    width: 420px;
    max-width: none;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .help-you-grow-image-container {
    order: -1;
    justify-content: center;
    align-items: center;
    height: 280px;
    display: flex;
  }

  .help-you-grow-image {
    object-fit: contain;
    width: auto;
    max-width: none;
  }

  .grid {
    grid-column-gap: 20px;
    grid-row-gap: 50px;
    flex-direction: column;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }

  .choose-us-image-container {
    order: 0;
    max-width: 420px;
  }

  .choose-us-image {
    object-fit: contain;
    max-width: none;
  }

  .choose-us-text-container {
    order: 1;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-category-hero-container, .service-info-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-about-sticky-container {
    margin-top: 80px;
    position: static;
  }

  .blog-right-flex {
    order: 1;
    width: auto;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .blog-post-container {
    flex-direction: column;
    padding-left: 50px;
    padding-right: 50px;
  }

  .blog-post-rich-text blockquote {
    font-size: 25px;
    line-height: 36px;
  }

  .blog-post-item {
    width: 100%;
  }

  .blog-post-page-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-social-icon-container {
    justify-content: space-between;
  }

  .author-details-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-icon-container {
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    display: flex;
  }

  .all-nav-links-container {
    width: 60%;
  }

  .services-testimonial-image {
    width: 100%;
    height: auto;
    position: static;
  }

  .search-right-flex {
    order: 1;
    width: auto;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .search-about-sticky-container {
    margin-top: 0;
    position: static;
  }

  .license-block {
    width: 100%;
    padding-bottom: 20px;
  }

  .chagelog-block {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }

  .style-guide-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
  }

  .style-guide-title {
    width: 100%;
    margin-bottom: 20px;
    position: static;
  }

  .color-palette-container, .button-container, .style-rich-text-container {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .nav-container {
    padding: 0 30px;
  }

  .brand.w--current {
    max-width: 110px;
  }

  .hero-slide {
    background-image: linear-gradient(#00000073, #00000073), url('../images/Home-Hero-IMG-min.jpg');
    background-position: 0 0, 100%;
    min-height: 100vh;
  }

  .hero-slide-container {
    padding-top: 140px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .h1._300-align-center-white {
    text-align: center;
  }

  .other-services-container {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .other-services-block-container {
    flex-direction: column;
  }

  .services-blocks-column {
    width: 100%;
    margin-top: 0;
  }

  .other-service-block {
    width: auto;
    height: auto;
  }

  .h3._300-light-align-center {
    font-size: 29px;
    line-height: 42px;
  }

  .money-work-for-you-container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .ai-horizontal-divider-right {
    width: 30%;
  }

  .ai-work-block.with-margin-up---down {
    margin-top: 130px;
  }

  .how-it-works-section {
    padding-top: 90px;
  }

  .ai-horizontal-divider-left {
    width: 30%;
  }

  .how-it-works-container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .hero-quote-image {
    object-fit: fill;
  }

  .home-quote-container {
    flex-direction: column;
    padding-left: 35px;
    padding-right: 35px;
  }

  .home-quote-text-container {
    padding-left: 0;
    padding-right: 0;
  }

  .home-quote-image-container {
    width: auto;
    height: auto;
  }

  .how-it-works-heading-container {
    text-align: center;
  }

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

  .method-icon-container {
    flex: none;
  }

  .services-testimonial-section {
    padding-top: 0;
    padding-bottom: 90px;
  }

  .services-testimonial-image-container {
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 100%;
    background-attachment: scroll;
  }

  .services-testimonial-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-testimonial-text-container {
    margin-top: 0;
    padding: 30px;
  }

  .news-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .news-sub-text-container {
    margin-top: 10px;
  }

  .news-blocks-collection {
    padding-left: 0;
    padding-right: 0;
  }

  .news-blog-block {
    margin-bottom: 50px;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .our-states-container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .our-states-paragraph-container {
    flex-direction: column;
  }

  .our-state-para-2 {
    margin-top: 50px;
    margin-left: 0;
  }

  .home-contact-container {
    max-width: none;
    margin-top: -70px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  ._1st-footer-column {
    width: auto;
  }

  .powered-by-webflow {
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
  }

  .navbar-white {
    top: -120px;
  }

  .our-story-text-container {
    padding: 40px 20px;
  }

  .why-choose-us-container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .team-member-image {
    height: auto;
    min-height: 300px;
  }

  .team-member-block {
    width: 100%;
  }

  .our-people-sub-text-container {
    margin-bottom: 50px;
  }

  .about-quote-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-quote-text-container {
    padding-left: 0;
    padding-right: 0;
  }

  .about-quote-image-container {
    width: auto;
    height: auto;
  }

  .our-team-button-container {
    margin-top: 10px;
  }

  .contact-hero-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-form-section {
    padding-top: 90px;
  }

  .contact-form-container {
    margin-bottom: 60px;
  }

  .contact-address-block {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .contact-flex-container {
    margin-bottom: 70px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-address-text-container {
    flex-direction: column;
    flex: 1;
    display: flex;
  }

  .c-faq-a-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .c-faq-q-text {
    padding-left: 20px;
    padding-right: 0;
  }

  .services-hero-section {
    padding-top: 110px;
  }

  .services-hero-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .services-hero-sub-heading {
    max-width: 290px;
  }

  .cta-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .help-you-grow-container {
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
  }

  .help-you-grow-data-container {
    justify-content: flex-start;
  }

  .help-you-grow-data.with-margin {
    margin-left: 35%;
  }

  .help-you-grow-text-container {
    width: auto;
  }

  .help-you-grow-image-container {
    max-width: 420px;
    height: auto;
  }

  .help-you-grow-image {
    object-fit: fill;
    width: 100%;
  }

  .grid {
    grid-auto-columns: 1fr;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .service-quote-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .service-info-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .service-info-icon-container {
    flex: none;
  }

  .service-row-text-container {
    justify-content: center;
    align-items: flex-start;
    margin-left: 20px;
    padding-left: 0;
  }

  .service-info-button-container {
    width: auto;
  }

  .navbar-white-static {
    min-height: 85px;
  }

  .blog-hero-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-about-sticky-container {
    padding-left: 0;
    padding-right: 0;
    position: static;
  }

  .blog-post-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-post-rich-text h2 {
    font-size: 23px;
    line-height: 36px;
  }

  .blog-post-block-image-container {
    height: 215px;
  }

  .blog-post-description {
    min-height: auto;
  }

  .blog-main-image-container {
    height: 245px;
  }

  .blog-main-image {
    object-fit: cover;
  }

  .blog-social-icon-container {
    flex-wrap: wrap;
    place-content: stretch space-around;
  }

  .blog-social-icon {
    flex: 1 0 140px;
    max-width: none;
    margin-bottom: 10px;
    margin-right: 0;
    padding-left: 5px;
    padding-right: 5px;
  }

  .author-details-container {
    padding: 20px;
  }

  .blog-bottom-author-name {
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .menu-icon-container {
    width: 25px;
    height: 20px;
  }

  .brand-for-mob, .brand-for-mob.w--current {
    padding-left: 0;
  }

  .all-nav-links-container {
    width: 80%;
    padding: 30px;
  }

  .nav-link-icon-container {
    margin-right: 10px;
  }

  .home-contact {
    padding-left: 30px;
    padding-right: 30px;
  }

  ._404-search-field {
    width: 100%;
  }

  .utility-page-wrap {
    padding-left: 35px;
    padding-right: 35px;
  }

  .search-result-block {
    min-height: auto;
  }

  .search-result-item {
    width: 100%;
  }

  .author-hero-container, .category-hero-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .search-post-block-image-container {
    height: 215px;
  }

  .search-post-description {
    min-height: auto;
  }

  .search-about-sticky-container {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    position: static;
  }

  .license-container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .license-details {
    margin-left: 0;
  }

  .copy-right-text-container {
    text-align: center;
    margin-top: 5px;
  }

  .copy-right-text {
    display: block;
  }

  .changelog-container, .style-guide-container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .style-guide-title {
    text-align: center;
  }

  .color-palette-container {
    grid-template-columns: 1fr;
  }

  .button-container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }
}

#w-node-_643102fa-e218-ffac-ccaa-2222fd26e81e-a8a182dd {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_4f36a476-425f-37c2-162c-c62e2a7e1797-a8a182dd {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_8aa9b453-df9c-6b3b-48d1-4e13aa1745e7-a8a182dd {
  grid-area: 2 / 1 / 3 / 2;
}

@media screen and (min-width: 1280px) {
  #w-node-_643102fa-e218-ffac-ccaa-2222fd26e81e-a8a182dd {
    grid-area: 2 / 2 / 3 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_643102fa-e218-ffac-ccaa-2222fd26e81e-a8a182dd {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_4f36a476-425f-37c2-162c-c62e2a7e1797-a8a182dd {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_8aa9b453-df9c-6b3b-48d1-4e13aa1745e7-a8a182dd {
    grid-area: 3 / 1 / 4 / 2;
  }
}


@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Danke (confirmation) page */
.danke-intro-section {
  padding-top: 120px;
  padding-bottom: 80px;
}
.danke-content-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}
.danke-success-icon {
  display: inline-block;
  line-height: 0;
}
.danke-intro-section .para-17.block-center {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.danke-intro-section .para-17.block-center:last-of-type {
  margin-bottom: 0;
}
.danke-intro-section .h1.align-center {
  margin-bottom: 24px;
}
.danke-card-section {
  padding-top: 0;
  padding-bottom: 100px;
}
.danke-card-wrap {
  margin-left: auto;
  margin-right: auto;
}
.danke-card {
  margin-right: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.danke-cta-wrap {
  margin-top: 48px;
}
.danke-icon-wrap {
  margin-bottom: 32px;
}
.danke-card .our-story-heaading-container {
  margin-bottom: 20px;
}

/* Theme header logo – 1.5x size */
.navbar .brand,
.navbar-white .brand {
  max-width: 172px;
}
.navbar .brand.w--current,
.navbar-white .brand.w--current {
  max-width: 165px;
}
.navbar .brand-for-mob,
.navbar-white .brand-for-mob {
  max-width: 195px;
  height: 45px;
}
.navbar .brand-for-mob.w--current,
.navbar-white .brand-for-mob.w--current {
  max-width: 195px;
}
.navbar .exponent-logo,
.navbar .exponent-white-logo,
.navbar .exponent-dark-logo,
.navbar-white .exponent-logo,
.navbar-white .exponent-white-logo,
.navbar-white .exponent-dark-logo {
  height: 45px;
  max-width: 195px;
}