:root {
  --primary-green: #0cca4a;
  --lato: Lato, sans-serif;
  --primary-copy: #425053;
  --hover-green: #11f55c;
  --white: white;
  --grey: #1c2b33;
  --system-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --button-copy: #343234;
  --blue-background: #f8fafd;
  --yellow-background: #fcfcf8;
  --accent-blue: #69a4fe;
  --dark-green: #00373a;
  --yellow: yellow;
  --purple: #9747ff;
  --sage: #42ae9c;
  --orange: #ff6827;
  --urbanist: Urbanist, sans-serif;
  --hover-yellow: #f5ffd8;
  --grey-hover: #2b3b44;
  --leelawadee: "Leelawadee Ui";
}

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

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

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

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

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-link {
  font-family: Lato, sans-serif;
}

.nav-link-2 {
  border: 2px solid var(--primary-green);
  font-family: var(--lato);
  color: var(--primary-copy);
  border-radius: 50px;
  padding: 13px 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  transition: all .35s;
}

.nav-link-2:hover {
  border-style: solid;
  border-color: var(--hover-green);
  background-color: var(--hover-green);
}

.nav-link-2.dark {
  color: var(--white);
}

.nav-link-2.dark:hover {
  color: var(--grey);
}

.nav-link-2.dark.light {
  font-family: var(--system-ui);
  color: var(--button-copy);
}

.nav-link-3 {
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.nav-link-3.dark {
  color: var(--white);
}

.nav-link-4 {
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 18px;
  line-height: 22px;
}

.nav-link-4.dark {
  color: var(--white);
}

.nav-link-5 {
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 18px;
  line-height: 22px;
}

.nav-link-5:hover {
  font-weight: 400;
  text-decoration: underline;
}

.nav-link-5.dark {
  color: var(--white);
}

.nav-link-5.dark:hover {
  font-weight: 400;
  text-decoration: underline;
}

.nav-link-5.dark.light {
  font-family: var(--system-ui);
  color: var(--primary-copy);
}

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

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

.navbar.dark.light {
  background-color: var(--white);
}

.navbar.dark.white {
  background-color: var(--white);
  position: static;
}

.div-block {
  background-color: var(--white);
  display: flex;
}

.div-block-2 {
  background-color: var(--primary-green);
}

.div-block-3 {
  background-color: var(--primary-copy);
}

.div-block-4 {
  background-color: var(--blue-background);
}

.div-block-5 {
  background-color: var(--yellow-background);
}

.div-block-6 {
  background-color: var(--accent-blue);
}

.div-block-7 {
  background-color: var(--dark-green);
}

.div-block-8 {
  background-color: var(--grey);
}

.div-block-9 {
  background-color: var(--yellow);
}

.div-block-10 {
  background-color: var(--purple);
}

.div-block-11 {
  background-color: var(--sage);
}

.div-block-12 {
  background-color: var(--orange);
}

.hero-section {
  background-color: var(--yellow-background);
  background-image: url('../images/hero-background.svg');
  background-position: 50%;
  background-size: cover;
  position: static;
  overflow: visible;
}

.container-2 {
  z-index: 9;
  background-color: var(--sage);
  max-width: 1200px;
  height: 500px;
  position: absolute;
  inset: 13% 0% auto;
}

.circle-bg-1 {
  z-index: 1;
  background-color: var(--white);
  filter: blur(60px);
  border-radius: 50%;
  width: 70vh;
  height: 70vh;
  position: absolute;
  inset: 0% auto auto 0%;
}

.circle-bg-2 {
  z-index: 2;
  background-color: var(--dark-green);
  opacity: .15;
  filter: blur(60px);
  border-radius: 50%;
  width: 70vh;
  height: 70vh;
  position: absolute;
  inset: 0% 0% auto auto;
}

.circle-bg-3 {
  z-index: 3;
  background-color: var(--yellow);
  opacity: .12;
  filter: blur(60px);
  border-radius: 50%;
  width: 70vh;
  height: 70vh;
  position: absolute;
  inset: 0% auto auto 30%;
}

.circle-bg-4 {
  z-index: 4;
  background-color: var(--primary-green);
  opacity: .17;
  filter: blur(60px);
  border-radius: 50%;
  width: 70vh;
  height: 30vh;
  position: absolute;
  inset: auto auto 0% 0%;
}

.circle-bg-5 {
  z-index: 5;
  background-color: var(--accent-blue);
  opacity: .22;
  filter: blur(90px);
  border-radius: 20%;
  width: 80vh;
  height: 40vh;
  position: absolute;
  inset: auto auto 0% 25%;
}

.circle-bg-6 {
  z-index: 6;
  background-color: var(--orange);
  opacity: .12;
  filter: blur(80px);
  border-radius: 17%;
  width: 65vh;
  height: 80vh;
  position: absolute;
  inset: auto 0% 0% auto;
}

.container-1 {
  z-index: 7;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: static;
  inset: 0%;
}

.copy-and-form-hero {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.badges-strip-hero {
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 52px;
  display: flex;
  overflow: hidden;
}

.tools-strip-hero {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.copy-hero-wrapper {
  width: 50%;
}

.heading {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 100px;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}

.text-block {
  font-family: var(--lato);
  padding-top: 24px;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
}

.text-span {
  color: var(--primary-green);
  font-weight: 700;
}

.cta-form-wrapper {
  background-color: var(--primary-green);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 500px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.form-body-wrapper {
  background-color: var(--dark-green);
  border-radius: 20px;
  max-width: 500px;
}

.form-body-wrapper.homepage {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.text-block-2 {
  font-family: var(--system-ui);
  color: var(--button-copy);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.form-step-1, .form-step2 {
  padding: 30px;
}

.form-step-3 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding: 30px;
  font-size: 16px;
  font-weight: 400;
}

.field-label {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
}

.field-label-2 {
  font-family: var(--system-ui);
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.text-block-3 {
  font-family: var(--urbanist);
  color: var(--white);
  text-align: center;
  padding-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  display: block;
}

.text-block-3.dq {
  padding-top: 24px;
  padding-bottom: 16px;
}

.radio-button-field {
  background-color: var(--white);
  font-family: var(--lato);
  color: var(--primary-copy);
  text-align: center;
  border-radius: 50px;
  margin-bottom: 16px;
  padding-top: 15.5px;
  padding-bottom: 15.5px;
  padding-left: 0;
  font-size: 16px;
  font-weight: 400;
  transition: all .35s;
}

.radio-button-field:hover {
  background-color: var(--hover-yellow);
}

.radio-button-field:active {
  background-color: var(--yellow);
}

.radio-button-field.no {
  margin-bottom: 0;
}

.radio-button {
  display: none;
}

.input-wrapper {
  width: 210px;
  max-width: 210px;
}

.two-inputs-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.text-field {
  height: 50px;
  font-family: var(--system-ui);
  color: var(--primary-copy);
  border-radius: 50px;
  margin-bottom: 0;
  padding: 15px 15px 15px 20px;
  font-size: 16px;
}

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

.text-field-2 {
  height: 50px;
  font-family: var(--system-ui);
  color: var(--primary-copy);
  border-radius: 50px;
  margin-bottom: 0;
  padding: 15px 15px 15px 20px;
  font-size: 16px;
  font-weight: 400;
}

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

.textarea {
  height: 105px;
  min-height: 105px;
  font-family: var(--system-ui);
  border-radius: 12px;
  margin-bottom: 24px;
  padding-left: 20px;
}

.textarea:focus {
  border: 2px solid var(--primary-green);
}

.submit-button {
  background-color: var(--primary-green);
  width: 100%;
  font-family: var(--system-ui);
  color: var(--button-copy);
  border-radius: 50px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-size: 20px;
  font-weight: 700;
  transition: all .35s;
  display: block;
}

.submit-button:hover {
  background-color: var(--hover-green);
}

.submit-button.vs {
  margin-top: 24px;
  font-weight: 600;
}

.radio-button-label, .radio-button-label-2, .radio-button-label-3, .radio-button-label-4 {
  font-family: var(--system-ui);
  font-weight: 700;
}

.dq-msg {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px;
  display: flex;
}

.text-block-4 {
  font-family: var(--urbanist);
  color: var(--white);
  text-align: center;
  padding-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.button {
  background-color: var(--primary-green);
  font-family: var(--system-ui);
  color: var(--button-copy);
  text-align: center;
  border-radius: 50px;
  margin-top: 0;
  padding: 13px 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  transition: all .35s;
}

.button:hover {
  background-color: var(--hover-green);
}

.button.li, .button.form {
  width: 100%;
}

.button._55 {
  margin-top: 40px;
}

.success-message {
  background-color: var(--dark-green);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 30px;
}

.text-block-5 {
  width: 80%;
  font-family: var(--urbanist);
  color: var(--white);
  padding-top: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

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

.text-block-6 {
  width: 90%;
  font-family: var(--urbanist);
  color: var(--white);
  padding-top: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

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

.container-3 {
  background-color: var(--blue-background);
  border-radius: 20px;
  max-width: 1200px;
}

.quick-stack {
  width: 100%;
  height: 780px;
  padding: 72px 0 0 60px;
}

.heading-2 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.list-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-7 {
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.text-block-8 {
  font-family: var(--lato);
  font-size: 16px;
}

.list {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-block-9 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 24px;
}

.text-span-2 {
  color: var(--accent-blue);
  font-weight: 700;
}

.cell {
  justify-content: flex-start;
  align-items: flex-end;
}

.services-section {
  background-color: var(--yellow-background);
  padding-top: 72px;
  padding-bottom: 72px;
}

.container-4 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: block;
}

.heading-3 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-10 {
  font-family: var(--lato);
  color: var(--primary-copy);
  text-align: center;
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.quick-stack-2 {
  width: 100%;
  height: 615px;
  padding: 40px 0;
}

.service-card {
  background-color: var(--dark-green);
  background-image: url('../images/grid-decoration.png');
  background-position: 0 0;
  background-size: auto;
  border-radius: 12px;
  width: 100%;
  height: 535px;
  position: relative;
  overflow: hidden;
}

.image-card {
  z-index: 2;
  position: static;
  inset: 35% 15% 0;
}

.image-card.meta {
  width: 194px;
  height: 130px;
}

.image-card.google {
  width: 143px;
  height: 130px;
}

.image-card.tiktok {
  width: 113px;
  height: 130px;
}

.image-card.funnel {
  width: 130px;
  height: 130px;
}

.service-card-copy {
  z-index: 3;
  height: auto;
  padding-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  position: absolute;
  inset: auto 0% 24px;
  overflow: hidden;
}

.service-card-heading {
  font-family: var(--lato);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  position: static;
}

.link-block-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.link-block-card:hover {
  color: var(--yellow);
  border: 1px #000;
}

.link-block-card:visited {
  color: var(--white);
}

.text-block-11 {
  font-family: var(--lato);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.service-card-subheading {
  font-family: var(--system-ui);
  color: var(--white);
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

.card-circle {
  z-index: 1;
  filter: blur(100px);
  background-color: #548066;
  border-radius: 200px;
  width: 100%;
  height: 60%;
  position: absolute;
  inset: 20% auto auto;
}

.image-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 33% 0% auto;
}

.image-wrapper.testimonials {
  position: static;
}

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

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

.container-5 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.heading-4 {
  width: 80%;
  font-family: var(--urbanist);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
}

.text-block-12 {
  font-family: var(--lato);
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.quick-stack-3 {
  width: 100%;
  height: 400px;
  padding: 40px 0;
}

.vs-card-wrapper {
  background-image: radial-gradient(circle at 100% 100%, #548066, #00373a 54%);
  border-radius: 12px;
  width: 590px;
  padding: 40px 60px;
}

.vs-card-wrapper.right {
  background-image: radial-gradient(circle at 0 100%, #548066, #00373a 54%);
}

.heading-5 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 24px;
  font-size: 32px;
  line-height: 38px;
}

.list-item-2 {
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 16px;
  display: flex;
}

.list-item-2.last {
  padding-bottom: 0;
}

.text-block-13 {
  font-family: var(--lato);
  color: var(--white);
  padding-left: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.button-2 {
  background-color: var(--primary-green);
  font-family: var(--system-ui);
  color: var(--button-copy);
  border-radius: 50px;
  padding: 13px 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  transition: all .35s;
}

.button-2:hover {
  background-color: var(--hover-green);
}

.button-2.reviews {
  margin-top: 60px;
}

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

.container-6 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.cta-section {
  background-image: url('../images/main-cta-bg-image.webp');
  background-position: 0 0;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 90px;
  padding-bottom: 90px;
}

.cta-section.services {
  background-image: url('../images/services-cta.webp');
  margin-bottom: 90px;
}

.cta-section._90-day {
  margin-bottom: 0;
}

.container-7 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.heading-6 {
  font-family: var(--urbanist);
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.heading-6.services {
  width: 60%;
  padding-bottom: 0;
}

.heading-6.ty {
  width: 80%;
  padding-bottom: 40px;
}

.text-block-14 {
  font-family: var(--lato);
  color: var(--white);
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 24px;
  line-height: 29px;
}

.as-seen-on-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.container-8 {
  max-width: 100%;
}

.heading-7 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  text-align: center;
  font-size: 24px;
  line-height: 29px;
}

.logo-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff0;
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  overflow: visible;
}

.logo-container.hero {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding-left: 0;
  padding-right: 0;
}

.logo-image {
  height: 40px;
}

.logo-image.tiktok {
  width: 116px;
  height: 30px;
}

.logo-image.meta {
  width: 273px;
  height: 17px;
}

.logo-image.google {
  width: 155px;
  height: 24px;
}

.logo-image.callrail {
  width: 110px;
  height: 26px;
}

.logo-image.webflow {
  width: 150px;
  height: 26px;
}

.logo-image.posthog {
  width: 158px;
  height: 32px;
}

.logo-image.zapier {
  width: 105px;
  height: 28px;
}

.logos-containers-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

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

.container-9 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.heading-8 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-15 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 24px;
}

.faq-wrapper {
  min-width: 100%;
}

.faq1_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  border: 1px #000;
  border-bottom: 1px solid #d3d3d3;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.faq1_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.margin-bottom, .margin-bottom.margin-xsmall, .margin-bottom.margin-xxlarge, .margin-bottom.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

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

.text-size-medium.text-weight-bold {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
}

.faq1_list {
  border-bottom: var(--\<unknown\|relume-variable-divider-width\>) none var(--\<unknown\|relume-variable-color-scheme-1-border\>);
}

.button-3 {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-3.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.button-3.is-small {
  padding: .5rem 1.25rem;
}

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

.max-width-large.align-center {
  max-width: 100%;
}

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

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

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

.button-group.is-center {
  justify-content: center;
}

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

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.faq1_answer {
  overflow: hidden;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.section_faq1 {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

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

.faq1_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

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

.paragraph {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  padding-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.newsletter-section {
  background-image: url('../images/Newsletter-section.webp');
  background-position: 50% 0;
  background-size: cover;
  padding-top: 72px;
  padding-bottom: 72px;
}

.container-10 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  padding-left: 0;
  display: flex;
}

.heading-9 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.text-field-3 {
  width: 350px;
  height: 50px;
  font-family: var(--lato);
  border-radius: 50px;
  margin-bottom: 0;
  padding: 13px 20px;
  font-size: 16px;
}

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

.text-block-16 {
  width: 600px;
  font-family: var(--lato);
  color: var(--white);
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

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

.cell-2 {
  justify-content: center;
  align-items: flex-end;
}

.quick-stack-4 {
  padding-left: 0;
  padding-right: 0;
}

.footer-section {
  padding-top: 90px;
}

.container-11 {
  background-color: var(--yellow-background);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  max-width: 1200px;
  padding: 72px 72px 40px;
}

.social-media-links-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-10 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 24px;
  padding-right: 40px;
  line-height: 38px;
}

.text-span-3 {
  color: var(--primary-green);
}

.text-block-17 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 40px;
  padding-bottom: 90px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.text-block-18 {
  font-family: var(--lato);
  padding-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
}

.facebook-icon {
  width: 24px;
  height: 29px;
  color: var(--primary-copy);
}

.facebook-icon:hover {
  color: var(--primary-green);
}

.quick-stack-5 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.link-tem {
  font-family: var(--system-ui);
  padding-bottom: 0;
}

.link-tem:hover {
  text-decoration: underline;
}

.link-tem.last {
  padding-bottom: 0;
}

.link-tem.first {
  font-family: var(--urbanist);
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.link-tem.first.footer {
  font-size: 20px;
}

.link-tem.footer {
  font-family: var(--system-ui);
  padding-bottom: 10px;
}

.link-block {
  width: 200px;
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 16px;
  text-decoration: none;
}

.link-block:hover {
  text-decoration: underline;
}

.list-item-3 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.terms-and-sitemap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cell-3 {
  justify-content: space-between;
  align-items: flex-start;
}

.name-and-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: block;
}

.slide-wrapper {
  background-color: var(--blue-background);
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 20px 40px;
  display: flex;
}

.slide-wrapper.ty {
  width: 550px;
}

.stars-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.slide {
  max-width: 50%;
  height: 100%;
  max-height: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.slide.ty {
  width: 550px;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.mask {
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.slider {
  background-color: var(--white);
  max-width: 100%;
  max-height: 30vh;
}

.slider.ty {
  width: 550px;
  overflow: hidden;
}

.text-block-19 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.text-block-20 {
  font-family: var(--urbanist);
  padding-right: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  display: block;
}

.text-block-21 {
  font-family: var(--urbanist);
  padding-top: 8px;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  display: block;
}

.icon {
  color: var(--primary-copy);
}

.right-arrow {
  color: var(--primary-copy);
  margin-right: -4%;
}

.left-arrow {
  margin-left: -4%;
}

.text-block-22 {
  font-family: var(--lato);
  color: var(--primary-copy);
  text-align: center;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.heading-11 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.slide-nav {
  margin-bottom: -5%;
}

.icon-2 {
  color: var(--primary-copy);
}

.title-section {
  background-image: url('../images/services-bg-image.webp');
  background-position: 0 0;
  background-size: auto;
  padding-top: 170px;
  padding-bottom: 90px;
}

.title-section._90day {
  background-image: url('../images/90-day-plan-background-image.png');
}

.title-section.meta {
  background-image: url('../images/meta-ads-management-title-cover.png');
  background-size: cover;
}

.title-section.meta.google {
  background-image: url('../images/google-ads-management-title-cover.png');
  background-size: cover;
}

.title-section.meta.tiktok {
  background-image: url('../images/tiktok-ads-management-title-cover.png');
}

.title-section.marketing {
  background-image: url('../images/marketing-funnel-creation-title-cover.png');
  background-size: cover;
}

.container-12 {
  max-width: 1200px;
}

.copy-block {
  width: 60%;
}

.heading-12 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-23 {
  font-family: var(--lato);
  color: var(--white);
  padding-top: 16px;
  font-size: 24px;
  line-height: 29px;
}

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

.container-13 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.heading-13 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
}

.text-block-24 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 24px;
}

.tabs {
  width: 100%;
}

.tab-pane-tab-1 {
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--primary-green);
  background-color: var(--yellow-background);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 50px;
}

.text-block-25 {
  font-family: var(--lato);
  padding-bottom: 16px;
  font-size: 16px;
}

.list-item-4 {
  font-family: var(--lato);
  color: var(--primary-copy);
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 16px;
  font-size: 16px;
  display: flex;
}

.list-item-4.last {
  padding-bottom: 0;
}

.text-block-26 {
  font-family: var(--lato);
  padding-left: 16px;
  font-size: 16px;
}

.tabs-menu {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.tab-link-tab-1 {
  border: 1px solid var(--primary-green);
  background-color: var(--yellow-background);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 25%;
  padding: 24px 10px;
}

.tab-link-tab-1.w--current {
  background-color: var(--primary-green);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 25%;
  padding: 24px 10px;
}

.tab-link-tab-2 {
  border: 1px solid var(--primary-green);
  background-color: var(--yellow-background);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 25%;
  padding: 24px 10px;
}

.tab-link-tab-2.w--current {
  background-color: var(--primary-green);
}

.tab-link-tab-3 {
  border: 1px solid var(--primary-green);
  background-color: var(--yellow-background);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 25%;
  padding: 24px 10px;
}

.tab-link-tab-3.w--current {
  background-color: var(--primary-green);
}

.tab-link-tab-4 {
  border: 1px solid var(--primary-green);
  background-color: var(--yellow-background);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 25%;
  padding: 24px 10px;
}

.tab-link-tab-4.w--current {
  background-color: var(--primary-green);
}

.text-block-27, .text-block-28, .text-block-29, .text-block-30 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
}

.list-2 {
  margin-bottom: 0;
  padding-bottom: 40px;
}

.tab-pane-tab-2, .tab-pane-tab-3, .tab-pane-tab-4 {
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--primary-green);
  background-color: var(--yellow-background);
  padding: 50px;
}

.container-14 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.heading-14 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.list-item-5 {
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 16px;
  display: flex;
}

.list-item-5.last {
  padding-bottom: 0;
}

.text-block-31 {
  font-family: var(--lato);
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  line-height: 20px;
}

.image-2 {
  margin-right: 0;
  position: static;
  inset: 0% 0% 0% auto;
}

.ppc-ads-section {
  padding-bottom: 90px;
  position: static;
}

.cell-4 {
  justify-content: center;
  align-items: flex-start;
}

.quick-stack-6 {
  padding-left: 0;
  padding-right: 0;
}

.cell-5 {
  justify-content: center;
  align-items: flex-end;
}

.container-15 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
}

.heading-15 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-32 {
  width: 75%;
  font-family: var(--lato);
  color: var(--primary-copy);
  text-align: center;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 24px;
}

.quick-stack-7 {
  padding-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}

.cell-6, .cell-7, .cell-8 {
  justify-content: flex-start;
  align-items: center;
}

.text-block-33 {
  font-family: var(--lato);
  padding-top: 16px;
  font-size: 16px;
  font-weight: 600;
}

.text-block-33._2 {
  width: 310px;
  color: var(--white);
  text-align: center;
  font-weight: 400;
}

.text-block-34 {
  font-family: var(--lato);
  padding-top: 16px;
  font-size: 16px;
  font-weight: 600;
}

.text-block-34._2 {
  width: 310px;
  color: var(--white);
  text-align: center;
  font-weight: 400;
}

.text-block-35 {
  font-family: var(--lato);
  padding-top: 16px;
  font-size: 16px;
  font-weight: 600;
}

.text-block-35._2 {
  width: 310px;
  color: var(--white);
  text-align: center;
  font-weight: 400;
}

.section {
  background-color: var(--white);
  padding-top: 90px;
  padding-bottom: 90px;
}

.container-16 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
  position: static;
}

.progresssion-line-wrapper {
  height: 2000px;
}

.heading-16 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-36 {
  font-family: var(--lato);
  color: var(--primary-copy);
  text-align: center;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 24px;
}

.steps-wrapper {
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.step-wrapper {
  width: 450px;
}

.list-item-6 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-37 {
  font-family: var(--lato);
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
}

.text-block-38 {
  font-family: var(--lato);
  color: var(--primary-green);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.cell-9, .cell-10 {
  justify-content: center;
  align-items: flex-end;
}

.cell-11 {
  justify-content: center;
  align-items: flex-start;
}

.cell-12 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}

.cell-13 {
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 60px;
}

.quick-stack-8 {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 0;
  position: static;
  inset: 0% 0% auto;
}

.cell-14 {
  background-image: url('../images/green-grid-background.png');
  background-position: 0 0;
  background-size: cover;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.heading-17 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 24px;
  font-size: 32px;
  line-height: 38px;
}

.text-block-39 {
  font-family: var(--lato);
  color: var(--white);
  font-size: 20px;
  line-height: 24px;
}

.heading-18 {
  font-family: var(--urbanist);
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 24px;
  font-size: 24px;
  line-height: 29px;
}

.text-span-4, .text-span-5, .text-span-6 {
  color: var(--yellow);
  font-weight: 700;
}

.path-wrapper {
  z-index: 1;
  position: absolute;
  inset: 0% auto 0% 50%;
}

.section-2 {
  height: 100vh;
}

.div-block-14 {
  background-color: #c7ffda;
  width: 3px;
  height: 1700px;
}

.div-block-15 {
  background-color: var(--primary-green);
  width: 3px;
  height: 100%;
  transition: all .35s;
}

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

.container-17 {
  max-width: 1200px;
}

.quick-stack-9 {
  padding: 0;
}

.heading-19 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-40 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 16px;
  font-size: 16px;
}

.cell-15 {
  justify-content: center;
  align-items: flex-start;
  padding-right: 40px;
}

.cell-16 {
  justify-content: center;
  align-items: flex-end;
}

.benefits-section-2 {
  background-color: var(--yellow-background);
  padding-top: 72px;
  padding-bottom: 72px;
}

.container-18 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.heading-20 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-41 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.quick-stack-10 {
  padding: 40px 0;
}

.cell-17, .cell-18, .cell-19 {
  justify-content: flex-start;
  align-items: center;
}

.text-block-42, .text-block-43, .text-block-44 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 16px;
  padding-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.text-block-45 {
  font-family: var(--lato);
  font-size: 16px;
}

.text-block-46, .text-block-47 {
  width: 80%;
  font-family: var(--lato);
  text-align: center;
  font-size: 16px;
}

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

.container-19 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--blue-background);
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.quick-stack-11 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 0;
}

.heading-21 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-48 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 16px;
  padding-bottom: 24px;
  font-size: 16px;
  font-weight: 400;
}

.blue-circle {
  background-color: var(--accent-blue);
  border-radius: 100px;
  width: 20px;
  height: 20px;
}

.list-item-7 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 24px;
  display: flex;
}

.list-item-7.last {
  padding-bottom: 0;
}

.text-block-49 {
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.text-block-50 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 8px;
  font-size: 16px;
  font-weight: 400;
}

.cell-20 {
  padding: 72px;
}

.cell-21 {
  display: block;
}

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

.container-20 {
  background-image: radial-gradient(circle at 100% 100%, #548066, #00373a);
  border-radius: 20px;
  flex-flow: column;
  align-items: center;
  max-width: 1200px;
  padding-top: 72px;
  padding-bottom: 72px;
  padding-left: 0;
  display: flex;
}

.heading-22 {
  font-family: var(--urbanist);
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-51 {
  font-family: var(--lato);
  color: var(--white);
  padding-top: 16px;
  padding-bottom: 24px;
  font-size: 24px;
  line-height: 29px;
}

.rocket-cta-copy-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-menu {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav-menu-2 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.no-bg-title-section {
  background-color: var(--grey);
  padding-top: 90px;
  padding-bottom: 90px;
}

.container-21 {
  max-width: 1200px;
}

.heading-23 {
  width: 80%;
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-52 {
  font-family: var(--system-ui);
  color: var(--white);
  padding-top: 16px;
  font-size: 24px;
  line-height: 29px;
}

.text-block-52.contact {
  width: 80%;
  padding-top: 16px;
}

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

.container-22 {
  max-width: 1200px;
}

.quick-stack-12 {
  padding: 0;
}

.cell-22 {
  background-color: #00373a00;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.heading-24 {
  font-family: var(--urbanist);
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 40px;
  font-size: 36px;
  line-height: 43px;
}

.cell-23 {
  justify-content: center;
  align-items: flex-end;
  padding-left: 60px;
}

.form-block-2 {
  width: 100%;
}

.label {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 8px;
  font-size: 16px;
}

.text-span-7, .text-span-8, .text-span-9 {
  color: var(--orange);
}

.text-field-4 {
  height: 50px;
  font-family: var(--system-ui);
  border-radius: 50px;
  padding-left: 20px;
}

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

.text-field-4._2 {
  margin-bottom: 20px;
}

.text-field-5 {
  height: 50px;
  font-family: var(--system-ui);
  border-radius: 50px;
  padding-left: 20px;
}

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

.textarea-2 {
  min-height: 105px;
  font-family: var(--system-ui);
  border-radius: 12px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.textarea-2:focus {
  border: 2px solid var(--primary-green);
}

.text-span-10, .text-span-11 {
  color: var(--orange);
}

.submit-button-2 {
  width: 100%;
}

.text-block-53 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.tools-section-2 {
  padding-top: 0;
  padding-bottom: 0;
}

.container-23, .container-24 {
  max-width: 1200px;
}

.quick-stack-13 {
  padding: 0;
}

.list-item-8 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  font-family: var(--system-ui);
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 8px;
  display: flex;
}

.heading-25 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-54 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.text-block-55, .text-block-56, .text-block-57 {
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 16px;
}

.cell-24 {
  justify-content: center;
  align-items: flex-start;
  padding-right: 20px;
}

.cell-25 {
  justify-content: center;
  align-items: flex-start;
}

.yellow-cta {
  background-color: var(--yellow-background);
  padding-top: 72px;
  padding-bottom: 72px;
}

.heading-26 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

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

.quick-stack-14 {
  padding: 40px 0;
}

.text-block-58 {
  font-family: var(--lato);
  color: var(--primary-copy);
  text-align: center;
  padding-top: 16px;
  font-size: 16px;
}

.number-wrapper {
  background-color: var(--primary-green);
  width: 40px;
  height: 40px;
  font-family: var(--urbanist);
  color: var(--button-copy);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
}

.cell-26 {
  justify-content: flex-start;
  align-items: center;
}

.text-block-59 {
  font-family: var(--lato);
  color: var(--primary-copy);
  text-align: center;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 500;
}

.cell-27, .cell-28 {
  justify-content: flex-start;
  align-items: center;
}

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

.container-26 {
  max-width: 1200px;
}

.stats-section {
  background-color: var(--dark-green);
  padding-top: 72px;
  padding-bottom: 72px;
  display: block;
}

.container-27 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.heading-27 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.text-block-60 {
  width: 70%;
  font-family: var(--lato);
  color: var(--white);
  text-align: center;
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.quick-stack-15 {
  padding: 40px 0;
}

.cell-29 {
  justify-content: flex-start;
  align-items: center;
}

.text-block-61 {
  font-family: var(--urbanist);
  color: var(--yellow);
  font-size: 64px;
  font-weight: 700;
  line-height: 77px;
}

.text-block-62 {
  font-family: var(--lato);
  color: var(--yellow);
  padding-bottom: 16px;
  font-size: 20px;
  line-height: 24px;
}

.text-block-63 {
  font-family: var(--lato);
  color: var(--white);
  text-align: center;
  font-size: 16px;
}

.cell-30, .cell-31 {
  justify-content: flex-start;
  align-items: center;
}

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

.container-28 {
  border: 1px none var(--accent-blue);
  background-color: var(--blue-background);
  border-radius: 20px;
  max-width: 1200px;
}

.quick-stack-16 {
  padding: 0;
}

.heading-28 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.cell-32 {
  justify-content: center;
  align-items: flex-start;
  padding: 72px 60px 72px 72px;
}

.text-block-64 {
  font-family: var(--lato);
  color: var(--primary-copy);
  padding-top: 16px;
  padding-bottom: 24px;
  font-size: 16px;
}

.cell-33 {
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 0;
  padding-right: 60px;
}

.image-4 {
  height: 90%;
}

.blog-archive-body-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.container-29 {
  max-width: 1200px;
}

.blog-card {
  background-color: var(--yellow-background);
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: block;
}

.heading-29 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 30px;
}

.text-block-65 {
  font-family: var(--lato);
  padding-top: 8px;
  padding-bottom: 24px;
  font-size: 16px;
  overflow: hidden;
}

.text-block-66 {
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

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

.link-block-2:hover {
  color: var(--primary-green);
}

.link-block-2:visited {
  color: var(--primary-copy);
}

.info-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 296px;
  padding: 16px 16px 24px;
  display: flex;
}

.collection-item {
  justify-content: flex-start;
  padding-bottom: 32px;
  display: block;
}

.image-5 {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.link-block-3 {
  text-decoration: none;
}

.link-block-3:visited {
  color: var(--primary-copy);
}

.pagination {
  justify-content: flex-end;
  align-items: center;
}

.pagination.ty {
  display: none;
}

.collection-list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: flex;
}

.fa-icon {
  font-family: "Fa Solid 900";
}

.code-embed {
  font-family: var(--system-ui);
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  transition: all .35s;
  display: flex;
}

.title-blog-post-section {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 389px;
  padding-top: 170px;
  padding-bottom: 90px;
}

.container-30 {
  max-width: 1200px;
}

.heading-30 {
  width: 60%;
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.container-31 {
  max-width: 1200px;
  padding-top: 40px;
  padding-bottom: 90px;
}

.quick-stack-17 {
  padding: 0;
}

.date-author-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--yellow-background);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  padding: 16px;
  display: flex;
}

.date-wrapper, .author-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-67, .text-block-68 {
  font-family: var(--system-ui);
  font-size: 16px;
}

.heading-31 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 34px;
}

.heading-32 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 34px;
}

.heading-33 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 36px;
}

.heading-34 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 30px;
}

.heading-35 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 24px;
}

.heading-36 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
}

.paragraph-2 {
  font-family: var(--lato);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 24px;
  font-size: 16px;
}

.block-quote {
  font-family: var(--lato);
  color: var(--primary-copy);
}

.paragraph-3, .list-3, .paragraph-4, .list-4 {
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 16px;
}

.paragraph-5 {
  font-family: var(--lato);
  color: var(--primary-green);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

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

.paragraph-6 {
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 16px;
  font-weight: 700;
}

.paragraph-7 {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
}

.paragraph-8, .paragraph-9 {
  font-family: var(--lato);
  color: var(--primary-copy);
}

.rich-text-block {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
  line-height: 24px;
}

.link-block-4, .link-block-5, .link-block-6, .link-block-7 {
  width: 100%;
}

.link-2 {
  color: var(--primary-copy);
  font-weight: 700;
  text-decoration: none;
}

.success-message-2 {
  font-family: var(--urbanist);
  color: var(--white);
  background-color: #ddd0;
  font-size: 24px;
}

.contact-form-wrapper {
  background-color: var(--dark-green);
  border-radius: 20px;
  padding: 60px 50px;
}

.blog-cta-wrapper {
  background-color: var(--yellow-background);
  border-radius: 12px;
  padding: 40px 30px;
  position: sticky;
  top: 40px;
}

.heading-37 {
  font-family: var(--urbanist);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 24px;
  font-size: 24px;
  line-height: 30px;
}

.text-block-69 {
  padding-top: 16px;
  padding-bottom: 24px;
}

.columns {
  display: flex;
}

.divider {
  background-color: var(--sage);
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.paragraph-10 {
  font-family: var(--lato);
}

.link-3 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.link-3:hover, .link-3:active {
  color: var(--primary-green);
  font-weight: 700;
}

.link-3:visited {
  color: var(--primary-copy);
}

.link-3:lang(en) {
  font-weight: 700;
}

.list-item-9 {
  padding-bottom: 8px;
  font-weight: 400;
}

.list-item-9:hover {
  color: var(--hover-green);
}

.list-item-9.last {
  padding-bottom: 0;
}

.quick-stack-18 {
  padding: 0;
}

.cell-34 {
  padding-left: 10px;
  padding-right: 10px;
}

.quick-stack-19 {
  padding: 0;
}

.cell-35 {
  justify-content: center;
  align-items: flex-start;
}

.cell-36 {
  justify-content: center;
  align-items: flex-end;
}

.list-6 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: block;
}

.paragraph-11 {
  font-family: var(--system-ui);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-12 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.paragraph-13 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
}

.paragraph-14 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-15 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-16 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.paragraph-17 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-18 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.paragraph-19 {
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 24px;
  line-height: 40px;
}

.paragraph-20 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-21 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-22 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 24px;
  font-size: 24px;
  line-height: 30px;
}

.heading-38 {
  font-family: var(--urbanist);
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 24px;
  padding-bottom: 16px;
  font-size: 24px;
  line-height: 30px;
}

.heading-38.last {
  padding-top: 0;
  padding-bottom: 24px;
}

.paragraph-23 {
  font-family: var(--urbanist);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.paragraph-24 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 24px;
  line-height: 30px;
}

.paragraph-25 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-26 {
  font-family: var(--urbanist);
  color: var(--button-copy);
  text-align: center;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
}

.paragraph-27 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
}

.paragraph-28 {
  font-family: var(--system-ui);
  margin-bottom: 0;
  padding-left: 16px;
}

.paragraph-29 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.paragraph-30 {
  width: 95%;
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 40px;
  padding-right: 0;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-31 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 600;
}

.paragraph-32 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 24px;
  line-height: 30px;
}

.paragraph-33 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.paragraph-34 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-35 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
}

.paragraph-36 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 600;
}

.paragraph-37 {
  width: 85%;
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
  display: block;
}

.paragraph-38 {
  font-family: var(--system-ui);
  color: var(--yellow);
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 16px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-39 {
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  font-size: 16px;
}

.paragraph-40 {
  font-family: var(--lato);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 24px;
  font-size: 16px;
}

.text-span-12 {
  color: var(--accent-blue);
}

.paragraph-41 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 24px;
  line-height: 30px;
}

.paragraph-42 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.paragraph-43 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-44 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
}

.paragraph-45 {
  width: 100%;
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 600;
}

.paragraph-46 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.paragraph-47 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-48 {
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-49 {
  font-family: var(--system-ui);
  color: var(--yellow);
  margin-bottom: 0;
  padding-bottom: 16px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-50 {
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  font-size: 16px;
}

.paragraph-51 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 24px;
  line-height: 30px;
}

.paragraph-52 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.paragraph-53 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-54 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
}

.paragraph-55 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 600;
}

.paragraph-56 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.paragraph-57, .paragraph-58 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.bold-text {
  font-family: var(--lato);
  font-size: 16px;
}

.paragraph-59 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-60 {
  font-family: var(--lato);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-61 {
  font-family: var(--lato);
  color: var(--yellow);
  margin-bottom: 0;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.paragraph-62 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 24px;
  line-height: 30px;
}

.paragraph-63 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.paragraph-64 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-65 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 400;
}

.paragraph-66 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 600;
}

.paragraph-67 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.paragraph-68 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-69 {
  width: 70%;
  font-family: var(--lato);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-70 {
  font-family: var(--lato);
  color: var(--yellow);
  margin-bottom: 0;
  padding-bottom: 16px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-71 {
  font-family: var(--lato);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-72 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 24px;
  line-height: 30px;
}

.paragraph-73 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-74 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.heading-39 {
  font-family: var(--lato);
  color: var(--primary-green);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-75 {
  font-family: var(--system-ui);
  margin-bottom: 0;
  padding-left: 16px;
  font-weight: 400;
}

.paragraph-76 {
  width: 310px;
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
}

.paragraph-77 {
  font-family: var(--lato);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 24px;
  line-height: 30px;
}

.paragraph-78 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 24px;
  line-height: 30px;
}

.paragraph-79 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
}

.paragraph-80 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.paragraph-81 {
  font-family: var(--system-ui);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.paragraph-82 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.paragraph-83 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 24px;
  font-size: 16px;
}

.paragraph-84 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.paragraph-85 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
}

.paragraph-86 {
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 24px;
  font-size: 24px;
  line-height: 30px;
}

.paragraph-87 {
  width: 80%;
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 24px;
  line-height: 30px;
}

.paragraph-88 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 8px;
  padding-bottom: 24px;
  font-size: 16px;
  overflow: visible;
}

.paragraph-89 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 24px;
  line-height: 30px;
}

.quick-stack-20, .quick-stack-21 {
  padding: 0;
}

.paragraph-90 {
  font-family: var(--system-ui);
  margin-bottom: 0;
  padding-right: 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.cell-38 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
}

.paragraph-91 {
  font-family: var(--lato);
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  display: none;
}

.paragraph-92 {
  font-family: var(--system-ui);
  text-align: center;
  margin-bottom: 0;
  padding-top: 40px;
}

.div-block-18 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.cell-39 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

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

.heading-40 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.container-32 {
  max-width: 1200px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.quick-stack-22 {
  padding: 0 0 40px;
}

.paragraph-93 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-right: 20px;
  font-size: 16px;
}

.paragraph-94 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.list-7 {
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.paragraph-95 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-96 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
}

.paragraph-97 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.div-block-19 {
  background-color: var(--blue-background);
  border-radius: 12px;
  margin-top: 40px;
  padding: 40px;
}

.block-quote-2 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 20px;
  line-height: 24px;
}

.paragraph-98 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  text-align: right;
  margin-bottom: 0;
  padding-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.linkedin-icon {
  width: 24px;
  height: 29px;
  color: var(--primary-copy);
}

.linkedin-icon:hover {
  color: var(--primary-green);
}

.instagram-icon {
  width: 24px;
  height: 29px;
  color: var(--primary-copy);
}

.instagram-icon:hover {
  color: var(--primary-green);
}

.success-message-3 {
  background-color: #ddd0;
  padding-left: 0;
  padding-right: 0;
}

.text-block-70 {
  font-family: var(--lato);
  color: var(--white);
  text-align: center;
  padding-top: 40px;
  font-size: 20px;
  line-height: 24px;
}

.container-33 {
  max-width: 1200px;
}

.dropdown-toggle {
  color: var(--white);
}

.dropdown-toggle:hover {
  text-decoration: underline;
}

.dropdown-toggle.white {
  color: var(--primary-copy);
}

.dropdown-list {
  border: 1px none var(--white);
  background-color: #0000;
  width: 250px;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  overflow: visible;
}

.dropdown-list.white {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  display: none;
}

.dropdown {
  transition: all .5s ease-in-out;
}

.dropdown:hover {
  line-height: 22px;
}

.dropdown.white {
  transition-property: none;
  display: block;
}

.dropdown-link {
  background-color: var(--grey-hover);
  font-family: var(--lato);
  color: var(--white);
  font-size: 16px;
  transition: opacity .2s;
}

.dropdown-link:hover {
  background-color: var(--primary-copy);
  text-decoration: none;
}

.dropdown-link:visited {
  color: var(--white);
  text-decoration: none;
}

.dropdown-link:lang(en) {
  color: var(--white);
}

.dropdown-link.w--current {
  display: block;
}

.dropdown-link.last {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.dropdown-link.light {
  background-color: var(--white);
  color: var(--primary-copy);
}

.dropdown-link.light:hover {
  color: var(--primary-green);
}

.dropdown-link.white {
  background-color: var(--yellow-background);
  font-family: var(--system-ui);
  color: var(--primary-copy);
}

.dropdown-link.white:hover {
  color: var(--primary-green);
}

.dropdown-link-2, .dropdown-link-3 {
  background-color: var(--grey);
}

.text-block-71 {
  font-family: var(--lato);
  color: var(--white);
  font-size: 18px;
  line-height: 22px;
}

.text-block-71.light {
  color: var(--primary-copy);
}

.text-block-71.white {
  font-family: var(--system-ui);
  color: var(--primary-copy);
}

.text-span-13 {
  font-size: 24px;
}

.icon-4, .icon-5 {
  color: var(--primary-copy);
}

.navbar1_menu-button {
  padding: 0;
}

.navbar1_menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.navbar1_dropdown-link {
  background-color: #b91818;
  padding: .5rem 1rem;
}

.navbar1_dropdown-link.w--current {
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.navbar1_component {
  border-bottom: 0px solid var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.navbar1_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar1_dropdown-toggle {
  grid-column-gap: .5rem;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
}

.navbar1_link {
  padding: .5rem 1rem;
}

.navbar1_link.w--current {
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.navbar1_logo-link {
  padding-left: 0;
}

.navbar1_dropdown-list {
  display: block;
}

.navbar1_dropdown-list.w--open {
  border: var(--\<unknown\|relume-variable-border-width\>) solid var(--\<unknown\|relume-variable-color-scheme-1-border\>);
  border-radius: var(--\<unknown\|relume-variable-radius-small\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  padding: .5rem;
}

.navbar1_menu {
  align-items: center;
  display: flex;
  position: static;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

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

.nav-menu-3 {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link-6 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-6:hover {
  color: #1a1b1fbf;
}

.nav-link-6:focus-visible, .nav-link-6[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

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

.dropdown-toggle-2 {
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 18px;
  line-height: 22px;
}

.dropdown-toggle-2:hover {
  font-weight: 400;
  text-decoration: underline;
}

.dropdown-list-2 {
  width: 200%;
  display: block;
}

.dropdown-link-4 {
  background-color: var(--white);
  width: 100%;
  display: none;
}

.dropdown-link-4:hover {
  background-color: var(--blue-background);
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 16px;
  font-weight: 700;
}

.dropdown-link-4:visited {
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 16px;
  text-decoration: none;
}

.dropdown-link-4:lang(en) {
  font-family: var(--lato);
  color: var(--primary-copy);
  font-size: 16px;
}

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

.sitemap-container {
  max-width: 1200px;
}

.links-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 8px;
  display: flex;
}

.list-8 {
  padding-left: 40px;
}

.s-link {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.s-link:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

.s-link.title {
  font-family: var(--system-ui);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.s-link.title.w--current {
  font-family: var(--system-ui);
}

.list-item-10 {
  padding-bottom: 8px;
}

.image-6 {
  width: 190px;
  height: 60px;
}

.values-copy {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 72px;
  padding-right: 72px;
  display: flex;
}

.about-us-button {
  text-decoration: none;
}

.about-us-button:hover {
  color: var(--primary-copy);
  text-decoration: underline;
}

.about-us-button:visited, .services-button {
  color: var(--primary-copy);
  text-decoration: none;
}

.services-button:hover {
  color: var(--primary-copy);
  text-decoration: underline;
}

.services-button:visited {
  color: var(--primary-copy);
  text-decoration: none;
}

.image-7 {
  width: 484px;
  height: 708px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 30px;
}

.section-3 {
  height: 100vh;
}

.image-8, .image-9 {
  width: 80px;
  height: 80px;
}

.image-10 {
  width: 229px;
  height: 54px;
}

.image-11 {
  width: 116px;
  height: 30px;
}

.image-12 {
  width: 306px;
  height: 50px;
}

.image-13 {
  width: 155px;
  height: 24px;
}

.image-14 {
  width: 110px;
  height: 26px;
}

.image-15, .image-16, .image-17, .image-18 {
  width: 24px;
  height: 25px;
}

.image-19, .image-20, .image-21, .image-22 {
  width: 24px;
  height: 19px;
}

.image-23 {
  width: 46px;
  height: 49px;
}

.image-24 {
  width: 48px;
  height: 49px;
}

.image-25 {
  width: 50px;
  height: 40px;
}

.image-26 {
  width: 50px;
  height: 51px;
}

.bold-text-2 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
}

.code-embed-2 {
  font-family: var(--system-ui);
  font-size: 16px;
}

.link-4 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline;
}

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

.link-4:visited {
  color: var(--primary-copy);
}

.link-5 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
  text-decoration: none;
}

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

.link-5:visited {
  color: var(--primary-copy);
}

.paragraph-99 {
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 40px;
  font-size: 24px;
  line-height: 30px;
}

.image-27 {
  width: 150px;
  height: 26px;
}

.image-28 {
  width: 158px;
  height: 32px;
}

.container-34 {
  max-width: 1200px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.quick-stack-23 {
  width: 100%;
  padding: 0;
}

.heading-41 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.code-embed-3 {
  display: block;
}

.list-item-11 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 8px;
  display: flex;
}

.list-item-11.last {
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 0;
}

.paragraph-100 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-101 {
  font-family: var(--system-ui);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.cell-43 {
  justify-content: center;
  align-items: flex-start;
}

.cell-44 {
  justify-content: center;
  align-items: flex-end;
}

.container-35 {
  max-width: 1200px;
  padding-bottom: 90px;
}

.heading-42 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.paragraph-102 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 16px;
}

.testimonials-wrapper {
  width: 600px;
  height: 100%;
}

.slide-2 {
  background-color: var(--blue-background);
  border-radius: 20px;
  width: 100%;
}

.slider-2 {
  background-color: #ddd0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.left-arrow-2 {
  color: var(--primary-copy);
  margin-left: -4%;
}

.right-arrow-2 {
  color: var(--primary-copy);
  margin-right: -4%;
}

.mask-2 {
  width: 100%;
}

.slide-nav-2 {
  margin-bottom: -6%;
}

.checklist-container {
  max-width: 1200px;
  padding-top: 72px;
  padding-bottom: 0;
}

.quick-stack-24 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding: 0;
}

.heading-43 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0;
  font-size: 36px;
  line-height: 43px;
}

.paragraph-103 {
  font-family: var(--system-ui);
}

.paragraph-104 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 24px;
}

.cell-45 {
  padding-right: 40px;
}

.heading-44 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 16px;
  font-size: 36px;
  line-height: 43px;
}

.list-item-12 {
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 8px;
  display: flex;
}

.list-item-12.last {
  padding-bottom: 0;
}

.paragraph-105 {
  font-family: var(--system-ui);
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 16px;
}

.checklist-list {
  margin-bottom: 0;
  padding-bottom: 24px;
}

.heading-45 {
  font-family: var(--urbanist);
  font-size: 36px;
}

.heading-46 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 43px;
}

.paragraph-106 {
  font-family: var(--system-ui);
  font-size: 16px;
}

.list-9 {
  margin-bottom: 0;
  padding-top: 16px;
  padding-left: 20px;
}

.cell-46 {
  background-color: var(--yellow-background);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 40px 30px;
}

.heading-47 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 24px;
}

.paragraph-107 {
  font-family: var(--system-ui);
  margin-bottom: 0;
  padding-top: 16px;
  font-style: italic;
}

.form-block-3 {
  width: 100%;
  padding-top: 24px;
}

.submit-button-3 {
  width: 100%;
}

.field-label-3 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
  font-weight: 600;
}

.text-span-14 {
  color: var(--orange);
}

.field-label-4 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
  font-weight: 600;
}

.text-span-15 {
  color: var(--orange);
}

.text-field-6 {
  height: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.image-29 {
  width: 233px;
  height: auto;
}

.text-block-72, .text-block-73, .text-block-74 {
  color: var(--button-copy);
}

.quick-stack-25 {
  padding-left: 0;
  padding-right: 0;
}

.block-quote-3 {
  background-color: var(--blue-background);
  font-family: var(--system-ui);
  color: var(--primary-copy);
  border-left-width: 5px;
  border-left-color: #e2e2e2;
  padding-right: 40px;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
}

.nav-container-form {
  max-width: 1200px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.body-2 {
  background-color: var(--yellow-background);
  background-image: url('../images/form-page-bg.png');
  background-position: 100%;
  background-size: cover;
  height: 100vh;
}

.form-container-form {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
}

.heading-48 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 40px;
  font-size: 36px;
  line-height: 43px;
}

.paragraph-108 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 22px;
}

.ceo-copy-div {
  margin-top: 24px;
  padding: 0 20px 0 40px;
}

.heading-49 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 44px;
}

.paragraph-109 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 24px;
  font-size: 16px;
}

.container-36 {
  border: 2px solid var(--primary-green);
  background-color: var(--yellow-background);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  margin-top: 90px;
  padding: 20px;
  display: flex;
}

.image-30 {
  max-width: 30%;
  max-height: 30%;
}

.image-31 {
  width: auto;
  height: 240px;
}

.immigration-hero-section {
  background-image: url('../images/immigration-bg.webp');
  background-position: 50%;
  background-size: cover;
  padding-top: 110px;
  padding-bottom: 90px;
}

.immigration-hero-container {
  max-width: 1200px;
}

.heading-50 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 56px;
}

.paragraph-110 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 40px;
  font-size: 24px;
  line-height: 30px;
}

.logo-strip-container {
  max-width: 1200px;
}

.immigration-why-section {
  padding-top: 70px;
  padding-bottom: 90px;
}

.immigration-why-container {
  max-width: 1200px;
}

.quick-stack-26 {
  padding: 0;
}

.heading-51 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 44px;
}

.paragraph-111 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.paragraph-111._1 {
  color: var(--white);
  padding-bottom: 0;
}

.paragraph-112 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-bottom: 16px;
  font-size: 16px;
}

.paragraph-113 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
}

.paragraph-114 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
  font-weight: 700;
}

.cell-49 {
  background-color: var(--dark-green);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
}

.immigration-what-we-do-section {
  background-image: radial-gradient(circle at 100% 150%, #548066, #00373a);
}

.immigration-what-we-do-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.heading-52 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 44px;
}

.quick-stack-27 {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0;
}

.list-item-13 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-115 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  font-size: 16px;
}

.list-10 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.paragraph-116 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 700;
}

.cell-50 {
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

.quick-stack-28 {
  width: 100%;
  margin-top: 30px;
  padding: 0;
}

.paragraph-117 {
  font-size: 101px;
  line-height: 101px;
}

.paragraph-118 {
  font-family: var(--urbanist);
  color: #fff3;
  font-size: 101px;
  font-weight: 700;
  line-height: 101px;
}

.cell-51 {
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
}

.step-above {
  background-color: var(--primary-green);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.step-bottom {
  background-color: var(--dark-green);
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.paragraph-119 {
  font-family: var(--system-ui);
  color: var(--dark-green);
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}

.paragraph-120 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.paragraph-120._1 {
  padding-top: 20px;
  padding-left: 0;
  font-size: 14px;
}

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

.container-37 {
  border: 2px solid var(--primary-green);
  background-color: var(--yellow-background);
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  padding: 70px 100px;
  display: flex;
}

.heading-53 {
  font-family: var(--urbanist);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 44px;
}

.cell-52 {
  justify-content: center;
  align-items: center;
}

.paragraph-121 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 0;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
}

.paragraph-122 {
  width: 230px;
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
}

.quick-stack-29 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0;
}

.paragraph-123 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
  font-weight: 700;
}

.immigration-cta-1-section {
  padding-bottom: 0;
}

.immigration-cta-1-container {
  background-image: url('../images/cta1-immigration.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  padding: 70px 60px;
  display: flex;
}

.heading-54 {
  font-family: var(--urbanist);
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 40px;
  font-size: 36px;
  line-height: 44px;
}

.immigration-cta-2-section {
  background-color: #1c2b33;
  height: 337px;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

.immigration-cta-2-container {
  z-index: 5;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
  position: absolute;
  inset: 25% 0% auto;
}

.heading-55 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 44px;
}

.paragraph-124 {
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 16px;
}

.image-32 {
  z-index: 2;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-33 {
  z-index: 3;
  position: absolute;
  inset: 10% 0% 0% auto;
}

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

.immigration-bonus-container {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  border: 2px solid var(--primary-green);
  background-color: var(--yellow-background);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 1200px;
  padding: 70px 0;
  display: flex;
  position: static;
}

.copy-block-immigration {
  width: 48%;
}

.heading-56 {
  font-family: var(--urbanist);
  color: var(--primary-green);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 44px;
}

.paragraph-125 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.list-item-14 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-126 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.list-11 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.image-34 {
  width: 45%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.immigration-notification-section {
  margin-bottom: 90px;
  display: none;
}

.immigration-notification-container {
  max-width: 1200px;
}

.quick-stack-30 {
  width: 100%;
  padding: 0;
}

.immigration-who-for-section {
  background-color: var(--yellow-background);
  padding-top: 90px;
  padding-bottom: 90px;
}

.cell-53 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 2px solid var(--accent-blue);
  background-color: var(--blue-background);
  border-radius: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 30px;
}

.cell-54 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--dark-green);
  border-radius: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 30px;
}

.paragraph-127 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-128 {
  font-family: var(--system-ui);
  color: var(--white);
  font-size: 16px;
}

.immigration-mail-section {
  background-image: url('../images/bg.png');
  background-position: 50%;
  background-size: auto;
  padding-top: 90px;
  padding-bottom: 90px;
  display: none;
}

.container-38 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.image-35 {
  width: 80%;
}

.image-36 {
  width: 85%;
}

.who-for-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.quick-stack-31 {
  margin-bottom: 40px;
  padding: 0;
}

.heading-57 {
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-129 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.paragraph-130 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.list-12 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 16px;
  display: flex;
}

.paragraph-131 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  font-size: 16px;
  font-weight: 600;
}

.cell-55 {
  justify-content: center;
  align-items: flex-end;
}

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

.immigration-faq-container {
  max-width: 1200px;
}

.heading-58 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 44px;
}

.paragraph-132 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
}

.immigration-table-section {
  padding-bottom: 90px;
}

.immigration-table-container {
  max-width: 1200px;
}

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

.upper-row-bg {
  background-color: var(--dark-green);
}

.quick-stack-33 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  padding: 0;
}

.cell-56 {
  background-color: var(--dark-green);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cell-57 {
  background-color: var(--dark-green);
  justify-content: center;
  align-items: center;
}

.cell-58 {
  background-color: var(--dark-green);
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  justify-content: center;
  align-items: center;
}

.cell-59 {
  background-color: var(--yellow-background);
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

.cell-60 {
  background-color: var(--yellow-background);
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

.paragraph-133 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.paragraph-134 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  text-align: center;
  margin-bottom: 0;
  padding-top: 10px;
  font-size: 16px;
}

.immigration-cta-3-section {
  background-image: url('../images/ccta3.webp');
  background-position: 0 0;
  background-size: auto;
  padding-top: 90px;
  padding-bottom: 90px;
}

.immigration-cta-3-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.heading-59 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 44px;
}

.paragraph-135 {
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 16px;
}

.immigration-congrats-section {
  padding-top: 70px;
  padding-bottom: 90px;
}

.immigration-congrats-container {
  border: 2px solid var(--primary-green);
  background-color: var(--yellow-background);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  padding-right: 40px;
  display: flex;
}

.paragraph-136 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-left: 50px;
  font-size: 24px;
  line-height: 30px;
}

.immigration-next-steps-section {
  padding-bottom: 90px;
}

.immigration-next-steps-container {
  max-width: 1200px;
}

.heading-60 {
  font-family: var(--urbanist);
  color: var(--primary-copy);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 44px;
}

.quick-stack-34 {
  padding: 0;
}

.paragraph-137 {
  font-family: var(--system-ui);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.list-item-15 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-138 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.list-item-16, .list-item-17 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-139, .paragraph-140 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.list-13 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.list-14 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
  display: flex;
}

.list-item-18 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-141 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  font-size: 16px;
}

.cell-61 {
  justify-content: center;
  align-items: flex-end;
}

.immigration-make-most-section {
  background-color: var(--yellow-background);
  padding-top: 70px;
  padding-bottom: 70px;
}

.immigration-make-most-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  display: flex;
}

.heading-61 {
  margin-top: 0;
  margin-bottom: 0;
}

.quick-stack-35 {
  width: 100%;
  margin-top: 0;
  padding: 0;
}

.paragraph-142 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.paragraph-142._1 {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.paragraph-143 {
  font-family: var(--system-ui);
  color: var(--primary-copy);
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 500;
}

.cell-62, .cell-63 {
  justify-content: center;
  align-items: flex-start;
}

.immigration-case-study-section {
  padding-top: 90px;
  padding-bottom: 90px;
  display: none;
}

.immigration-case-study {
  background-image: url('../images/cta-4-bg.webp');
  background-position: 50%;
  background-size: auto;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.heading-62 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 44px;
}

.paragraph-144 {
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.paragraph-145 {
  font-family: var(--system-ui);
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.modal-section {
  z-index: 999;
  background-color: #00000080;
  width: 100vw;
  height: 100vh;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
  position: fixed;
}

.modal-container {
  background-image: url('../images/Pop-up-on-exit-1.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  height: 100%;
  padding: 70px 60px;
  display: flex;
  position: relative;
  overflow: scroll;
  box-shadow: 0 2px 20px #0003;
}

.heading-63 {
  width: 780px;
  font-family: var(--urbanist);
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 44px;
}

.full-width {
  width: 100%;
  margin-top: 24px;
}

.modal-copy-block {
  width: 640px;
}

.paragraph-146 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-147 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}

.list-item-19 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.list-15 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.paragraph-148 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph-149 {
  font-family: var(--system-ui);
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.image-37 {
  position: absolute;
  inset: auto 7% -18% auto;
}

.image-38 {
  position: absolute;
  inset: auto 3% -2% auto;
}

.paragraph-150 {
  font-family: var(--urbanist);
  color: var(--white);
  font-size: 64px;
  line-height: 64px;
  position: absolute;
  inset: 1rem 2rem auto auto;
  transform: rotate(45deg);
}

.close-exit-modal {
  text-decoration: none;
}

.close-exit-modal:visited {
  color: var(--white);
  text-decoration: none;
}

.image-39 {
  display: none;
}

.field-label-5, .field-label-6 {
  font-family: var(--system-ui);
  color: var(--white);
}

.form-3 {
  width: 70%;
}

.link-6, .link-6:visited {
  color: var(--primary-green);
}

.recaptcha, .recaptcha-2, .recaptcha-3 {
  margin-bottom: 20px;
}

.cell-64 {
  justify-content: center;
  align-items: flex-start;
}

.image-40 {
  border-radius: 20px;
  box-shadow: 0 2px 5px #0003;
}

.text-span-16 {
  color: var(--primary-green);
}

.image-42 {
  display: none;
}

.col-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 48%;
  display: flex;
}

.heading-64 {
  font-family: var(--urbanist);
  color: var(--white);
  margin-bottom: 0;
}

.list-16 {
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 0;
}

@media screen and (min-width: 1440px) {
  .hero-section {
    overflow: hidden;
  }

  .container-1 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
  }

  .badges-strip-hero {
    padding-top: 20px;
  }

  .tools-strip-hero {
    width: 100%;
  }

  .submit-button.vs {
    font-weight: 600;
  }

  .logo-container.hero {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: flex-start;
    align-items: center;
  }

  .logos-containers-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .facebook-icon {
    color: var(--primary-copy);
  }

  .facebook-icon:hover {
    color: var(--primary-green);
  }

  .linkedin-icon {
    color: var(--primary-copy);
  }

  .linkedin-icon:hover {
    color: var(--primary-green);
  }

  .instagram-icon {
    color: var(--primary-copy);
  }

  .instagram-icon:hover {
    color: var(--primary-green);
  }

  .success-message-3 {
    font-family: var(--lato);
    color: var(--white);
    text-align: center;
    background-color: #ddd0;
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    line-height: 24px;
  }

  .text-block-70 {
    padding-top: 40px;
  }

  .heading-43 {
    font-weight: 400;
  }

  .paragraph-107 {
    font-family: var(--system-ui);
    font-style: italic;
    font-weight: 400;
  }

  .upper-row-bg {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  .quick-stack-32 {
    padding: 0;
  }
}

@media screen and (min-width: 1920px) {
  .hero-section {
    overflow: hidden;
  }

  .container-1 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
    display: flex;
  }

  .badges-strip-hero {
    justify-content: flex-start;
    align-items: center;
  }

  .image-7 {
    padding-right: 20px;
  }

  .paragraph-120 {
    align-self: auto;
    padding-top: 0;
  }
}

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

  .container.dark {
    overflow: hidden;
  }

  .nav-link-3 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-link-3:hover {
    font-weight: 700;
  }

  .nav-link-4 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-link-4:hover {
    font-weight: 700;
  }

  .nav-link-5 {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .nav-link-5:hover {
    font-weight: 700;
  }

  .nav-link-5.dark {
    background-color: var(--white);
    color: var(--primary-copy);
    justify-content: flex-start;
    align-items: center;
  }

  .navbar.dark.white {
    z-index: 0;
    position: relative;
  }

  .hero-section {
    overflow: visible;
  }

  .container-1 {
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
  }

  .copy-and-form-hero {
    flex-flow: wrap;
  }

  .badges-strip-hero {
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
  }

  .tools-strip-hero {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .heading {
    text-align: center;
    padding-right: 0;
  }

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

  .benefits-section {
    padding: 60px 20px;
  }

  .benefits-section.meta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .quick-stack {
    height: 1416px;
    padding: 60px 0;
  }

  .cell {
    justify-content: flex-start;
    align-items: flex-end;
  }

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

  .container-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quick-stack-2 {
    height: 1170px;
  }

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

  .container-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-4 {
    width: 90%;
    color: var(--primary-copy);
  }

  .text-block-12 {
    color: var(--primary-copy);
    text-align: center;
  }

  .quick-stack-3 {
    height: 740px;
  }

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

  .container-6 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .cta-section.services {
    margin-bottom: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .cta-section._90-day {
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container-7 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-6.services {
    width: 90%;
    padding-bottom: 20px;
  }

  .as-seen-on-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .logo-container {
    min-width: 150%;
  }

  .logo-container.hero {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: space-between;
    align-items: center;
    min-width: 170%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo-image {
    height: 30px;
  }

  .logos-containers-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    overflow: visible;
  }

  .logos-containers-wrapper.hero {
    display: flex;
  }

  .faq-section {
    padding-bottom: 60px;
  }

  .container-9 {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-8 {
    width: 80%;
  }

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

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

  .heading-style-h2 {
    font-size: 2.75rem;
  }

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

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

  .newsletter-section {
    padding: 60px 20px;
  }

  .container-10 {
    justify-content: center;
    align-items: center;
  }

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

  .text-field-3 {
    width: 100%;
  }

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

  .cell-2 {
    justify-content: center;
    align-items: stretch;
  }

  .container-11 {
    padding-top: 60px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .quick-stack-5 {
    padding-top: 0;
  }

  .cell-3 {
    justify-content: space-between;
    align-items: flex-start;
  }

  .slide {
    max-width: 100%;
  }

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

  .title-section {
    padding: 100px 20px 60px;
  }

  .copy-block {
    width: 90%;
  }

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

  .container-13 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ppc-ads-section {
    padding-bottom: 60px;
  }

  .quick-stack-6 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-15 {
    padding: 60px 20px;
  }

  .quick-stack-7._2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .text-block-33._2, .text-block-34._2, .text-block-35._2 {
    width: 80%;
  }

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

  .container-16 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .steps-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .step-wrapper {
    width: auto;
  }

  .cell-9, .cell-10 {
    justify-content: center;
    align-items: flex-start;
    padding-left: 60px;
  }

  .cell-11 {
    padding-left: 60px;
  }

  .cell-12 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 60px;
    display: flex;
  }

  .cell-13 {
    padding-left: 60px;
  }

  .quick-stack-8 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    max-width: 100%;
  }

  .cell-14 {
    padding: 60px 40px;
  }

  .heading-17 {
    text-align: center;
    width: 80%;
  }

  .path-wrapper {
    left: 3%;
  }

  .out-story-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container-17 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .cell-15 {
    justify-content: center;
    align-items: center;
    padding-right: 0;
  }

  .cell-16 {
    justify-content: center;
    align-items: center;
  }

  .benefits-section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container-18 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-20, .text-block-43, .text-block-44, .text-block-45 {
    text-align: center;
  }

  .values-section {
    padding: 60px 20px;
  }

  .container-19 {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .quick-stack-11 {
    width: 100%;
    padding: 60px 20px;
  }

  .text-block-48 {
    width: 100%;
  }

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

  .cell-21 {
    display: block;
  }

  .image-3 {
    display: none;
  }

  .blog-cta-custom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-20 {
    background-image: radial-gradient(circle at 100% 100%, #548066, #00373a 100%, #000);
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 0;
    display: flex;
  }

  .heading-22, .text-block-51 {
    text-align: center;
  }

  .rocket-cta-copy-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .nav-menu {
    justify-content: center;
    align-items: center;
  }

  .nav-menu.dark {
    background-color: var(--white);
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20px;
    display: flex;
  }

  .nav-menu-2 {
    background-color: var(--white);
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 20px 20px;
  }

  .no-bg-title-section {
    margin-top: 0;
    padding: 60px 20px;
  }

  .no-bg-title-section.blog, .no-bg-title-section.contact {
    padding: 60px 20px;
  }

  .heading-23 {
    width: 90%;
  }

  .contact-us-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container-22 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quick-stack-12 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .cell-23 {
    justify-content: center;
    align-items: center;
    padding-left: 0;
  }

  .container-24 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-25, .text-block-54 {
    text-align: center;
  }

  .cell-24, .cell-25 {
    justify-content: center;
    align-items: center;
  }

  .yellow-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .why-choose-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container-26 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .container-27 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .text-block-60 {
    width: 100%;
  }

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

  .blue-cta-section {
    padding: 60px 20px;
  }

  .cell-32 {
    padding: 60px 40px;
  }

  .cell-33 {
    justify-content: flex-end;
    align-items: center;
    display: none;
  }

  .image-4 {
    height: 90%;
  }

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

  .container-29 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-card {
    width: 100%;
  }

  .info-wrapper {
    height: auto;
  }

  .collection-item {
    width: 50%;
  }

  .collection-list {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .title-blog-post-section {
    height: auto;
    padding: 100px 20px 60px;
  }

  .heading-30 {
    width: 90%;
  }

  .container-31 {
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .list-5 {
    width: 100%;
  }

  .icon-3 {
    background-color: var(--white);
    color: var(--primary-copy);
  }

  .icon-3.light {
    color: var(--primary-copy);
  }

  .blog-cta-wrapper {
    width: 100%;
  }

  .columns {
    display: flex;
  }

  .cell-34 {
    padding-left: 0;
    padding-right: 0;
  }

  .quick-stack-19 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .cell-35, .cell-36 {
    justify-content: center;
    align-items: center;
  }

  .cell-37 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-button {
    color: var(--grey);
    justify-content: flex-start;
    align-items: center;
    font-size: 30px;
    display: flex;
  }

  .menu-button:hover {
    background-color: var(--white);
    color: var(--grey);
    font-size: 30px;
  }

  .menu-button:active, .menu-button:focus, .menu-button:focus-visible, .menu-button[data-wf-focus-visible], .menu-button:lang(en) {
    background-color: var(--white);
    color: var(--grey);
  }

  .menu-button.dark {
    background-color: var(--orange);
    color: var(--primary-copy);
  }

  .menu-button.dark:hover, .menu-button.dark:active, .menu-button.dark:focus, .menu-button.dark:focus-visible, .menu-button.dark[data-wf-focus-visible], .menu-button.dark:lang(en) {
    background-color: var(--grey);
    color: var(--white);
  }

  .menu-button.dark.light {
    background-color: var(--white);
  }

  .div-block-16 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .div-block-17 {
    background-color: var(--white);
    justify-content: flex-end;
    align-items: center;
    padding-left: 20px;
    display: flex;
  }

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

  .paragraph-22 {
    text-align: center;
    width: 90%;
  }

  .paragraph-30 {
    width: 100%;
  }

  .paragraph-76 {
    width: auto;
  }

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

  .quick-stack-21 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .social-media-div {
    padding-top: 16px;
  }

  .container-32 {
    padding: 60px 20px;
  }

  .cell-40 {
    justify-content: center;
    align-items: center;
  }

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

  .dropdown.white {
    background-color: var(--white);
    color: var(--primary-copy);
  }

  .dropdown-link.last {
    border-radius: 0;
  }

  .dropdown-link.last.white, .dropdown-link.white {
    font-size: 18px;
    line-height: 22px;
  }

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

  .navbar1_menu-button.w--open {
    background-color: var(--\<unknown\|relume-variable-transparent\>);
  }

  .navbar1_menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
  }

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

  .navbar1_dropdown-link {
    width: auto;
    padding: .75rem 0 .75rem 5%;
  }

  .navbar1_menu-dropdown {
    width: 100%;
    font-size: 1.125rem;
  }

  .menu-icon1_line-top {
    background-color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar1_dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    display: flex;
  }

  .navbar1_link {
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .menu-icon1_line-bottom {
    background-color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar1_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar1_dropdown-list.w--open {
    border-style: none;
    padding: 0;
  }

  .menu-icon1_line-middle {
    background-color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar1_menu {
    border-bottom: 1px solid var(--\<unknown\|relume-variable-color-scheme-1-border\>);
    background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbar1_menu.is-page-height-tablet {
    height: 100dvh;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

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

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-3 {
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link-6 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

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

  .sitemap-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .values-copy {
    padding: 60px;
  }

  .cell-41, .cell-42 {
    justify-content: center;
    align-items: center;
  }

  .container-34 {
    padding: 60px 20px;
  }

  .cell-44 {
    justify-content: center;
    align-items: center;
  }

  .container-35 {
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonials-wrapper {
    width: 700px;
  }

  .checklist-container {
    padding: 60px 20px 0;
  }

  .cell-47 {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .nav-section-form, .form-section-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-container-form {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .container-36 {
    margin-top: 60px;
  }

  .immigration-hero-section, .immigration-why-section {
    padding: 60px 20px;
  }

  .paragraph-111._1 {
    text-align: center;
  }

  .cell-49 {
    justify-content: flex-end;
    align-items: center;
  }

  .immigration-what-we-do-container {
    padding: 60px 20px;
  }

  .cell-50, .cell-51 {
    justify-content: flex-end;
    align-items: center;
  }

  .immigration-campaign-section {
    padding: 60px 20px;
  }

  .container-37 {
    padding: 60px 40px;
  }

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

  .paragraph-122 {
    width: auto;
  }

  .immigration-cta-1-section {
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .immigration-cta-2-section {
    height: 350px;
    padding: 60px 20px;
  }

  .immigration-cta-2-container {
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    top: 17%;
  }

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

  .image-32 {
    display: none;
  }

  .image-33 {
    top: 10%;
  }

  .immigration-bonus-section {
    padding: 60px 20px;
    overflow: hidden;
  }

  .immigration-bonus-container {
    flex-flow: column;
    padding: 60px 40px;
    overflow: hidden;
  }

  .copy-block-immigration {
    width: 100%;
  }

  .image-34 {
    width: 60%;
    max-width: 60%;
    top: 19%;
    right: -11%;
  }

  .immigration-notification-section {
    margin-bottom: 60px;
  }

  .immigration-notification-container {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .immigration-who-for-section {
    padding: 60px 20px;
  }

  .immigration-mail-section {
    background-size: auto 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .who-for-container {
    justify-content: center;
    align-items: center;
  }

  .immigration-faq-section {
    padding: 60px 20px;
  }

  .immigration-table-section {
    padding-bottom: 60px;
  }

  .immigration-table-container {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .quick-stack-33 {
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    width: 100%;
  }

  .cell-56, .cell-57, .cell-58, .cell-59, .cell-60 {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .immigration-cta-3-section {
    background-position: 50%;
    background-size: cover;
    padding: 60px 20px;
  }

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

  .immigration-congrats-section {
    padding: 60px 20px;
  }

  .immigration-next-steps-section {
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cell-61 {
    justify-content: flex-end;
    align-items: center;
  }

  .immigration-make-most-section {
    padding: 60px 20px;
  }

  .cell-62 {
    justify-content: flex-end;
    align-items: center;
  }

  .immigration-case-study-section {
    padding: 60px 20px;
  }

  .immigration-case-study {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-size: cover;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 60px 40px;
    display: flex;
  }

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

  .modal-section {
    padding: 20px;
    display: none;
  }

  .modal-container {
    overflow: scroll;
  }

  .heading-63, .modal-copy-block {
    width: auto;
  }

  .image-38 {
    display: none;
  }

  .col-2 {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    overflow: hidden;
  }

  .tools-strip-hero {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .quick-stack {
    height: 1483px;
  }

  .cell {
    justify-content: center;
    align-items: flex-end;
  }

  .quick-stack-2 {
    height: 1170px;
  }

  .quick-stack-3 {
    height: 800px;
  }

  .vs-card-wrapper {
    width: 100%;
  }

  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .logo-container {
    min-width: 150%;
  }

  .logo-container.hero {
    min-width: 240%;
  }

  .heading-8 {
    width: 100%;
  }

  .faq1_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

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

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

  .heading-style-h2 {
    font-size: 2.25rem;
  }

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

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

  .faq1_icon-wrapper {
    width: 1.75rem;
  }

  .container-10 {
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-16 {
    width: auto;
  }

  .container-11 {
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .slide-wrapper.ty, .slide.ty, .slider.ty {
    width: 500px;
  }

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

  .copy-block {
    width: 100%;
  }

  .tabs-menu {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .tab-link-tab-1 {
    width: 100%;
  }

  .tab-link-tab-1.w--current {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .tab-link-tab-2, .tab-link-tab-3, .tab-link-tab-4 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
  }

  .tab-link-tab-4.w--current, .text-block-32 {
    width: 100%;
  }

  .div-block-14 {
    height: 75%;
  }

  .container-20 {
    background-image: radial-gradient(circle at 100% 100%, #548066, #00373a);
    padding: 60px 20px;
  }

  .heading-22, .text-block-51 {
    text-align: center;
  }

  .rocket-cta-copy-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .heading-23 {
    width: 100%;
  }

  .cell-22 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-25 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-29, .collection-item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .collection-list {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .title-blog-post-section {
    height: auto;
  }

  .heading-30 {
    width: 100%;
  }

  .contact-form-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .navbar1_component {
    height: auto;
    min-height: 4rem;
  }

  .navbar1_logo-link {
    padding-left: 0;
  }

  .navbar1_menu.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-3 {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link-6 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .values-copy {
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-7 {
    width: 484px;
  }

  .testimonials-wrapper {
    width: 500px;
  }

  .cell-45 {
    padding-right: 0;
  }

  .ceo-copy-div {
    padding-left: 0;
  }

  .container-36 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .quick-stack-27 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .step-above, .step-bottom {
    width: 180px;
  }

  .paragraph-120, .paragraph-123 {
    text-align: center;
  }

  .immigration-cta-1-section {
    padding-bottom: 0;
  }

  .immigration-cta-1-container {
    padding: 60px 20px;
  }

  .immigration-cta-2-section {
    height: 400px;
  }

  .immigration-cta-2-container {
    top: 15%;
  }

  .image-33 {
    top: 17%;
  }

  .immigration-bonus-container {
    justify-content: center;
    align-items: flex-start;
  }

  .copy-block-immigration {
    width: auto;
  }

  .image-34 {
    width: 80%;
    max-width: 80%;
    top: 63%;
    right: 10%;
  }

  .immigration-mail-section {
    background-position: 50%;
    background-size: auto 100%;
  }

  .quick-stack-33 {
    width: 100%;
  }

  .paragraph-133 {
    font-size: 16px;
  }

  .immigration-congrats-container {
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-136 {
    text-align: center;
    padding-left: 0;
  }

  .modal-section {
    display: none;
  }

  .modal-container {
    padding: 60px 20px;
  }

  .image-38 {
    bottom: -32%;
    right: -26%;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 10px;
  }

  .container.dark {
    justify-content: space-between;
    align-items: center;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .nav-link-2 {
    background-color: var(--white);
    width: 100%;
  }

  .nav-link-2.dark {
    background-color: var(--grey);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-link-2.dark:hover {
    border-color: var(--hover-green);
    background-color: var(--hover-green);
    color: var(--grey);
  }

  .nav-link-2.dark.light {
    background-color: var(--white);
    color: var(--primary-copy);
  }

  .nav-link-3 {
    background-color: var(--white);
  }

  .nav-link-3.dark {
    background-color: var(--grey);
  }

  .nav-link-4 {
    background-color: var(--white);
  }

  .nav-link-4.dark {
    background-color: var(--grey);
  }

  .nav-link-5 {
    background-color: var(--white);
  }

  .nav-link-5.dark {
    background-color: var(--grey);
  }

  .nav-link-5.dark.light {
    background-color: var(--white);
  }

  .navbar.dark.white {
    position: relative;
  }

  .hero-section {
    height: auto;
    position: static;
    overflow: visible;
  }

  .circle-bg-1, .circle-bg-2, .circle-bg-3, .circle-bg-4, .circle-bg-5, .circle-bg-6 {
    display: none;
  }

  .container-1 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    position: static;
  }

  .badges-strip-hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .tools-strip-hero {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .heading {
    font-size: 36px;
    line-height: 43px;
  }

  .text-block {
    font-size: 20px;
    line-height: 24px;
  }

  .cta-form-wrapper {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-step-1, .form-step2, .form-step-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .input-wrapper {
    width: 100%;
    max-width: none;
  }

  .two-inputs-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .text-field, .text-field-2 {
    height: 45px;
  }

  .dq-msg {
    padding-left: 10px;
    padding-right: 10px;
  }

  .button {
    width: auto;
  }

  .benefits-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .benefits-section.meta {
    padding-left: 0;
    padding-right: 0;
  }

  .quick-stack {
    height: auto;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .cell {
    align-items: center;
    padding-left: 0;
  }

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

  .container-4 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-4.scroll {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quick-stack-2 {
    height: 1940px;
    padding-left: 0;
    padding-right: 0;
  }

  .service-card {
    height: 450px;
  }

  .comparison-section {
    padding-bottom: 0;
  }

  .container-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-4 {
    width: 100%;
  }

  .quick-stack-3 {
    height: auto;
    padding-bottom: 0;
  }

  .vs-card-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-13 {
    font-size: 20px;
    line-height: 24px;
  }

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

  .button-2.reviews {
    margin-top: 80px;
  }

  .testimonials-section.contactus {
    padding-bottom: 90px;
  }

  .container-6, .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-section.services {
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container-7 {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-6.services {
    width: 100%;
  }

  .as-seen-on-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .logo-container {
    min-width: 300%;
  }

  .logo-container.hero {
    min-width: 285%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .logo-image {
    height: 25px;
  }

  .logos-containers-wrapper, .logos-containers-wrapper.hero {
    width: 100%;
    overflow: hidden;
  }

  .container-9 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .text-size-medium.text-weight-bold {
    font-size: 20px;
    line-height: 24px;
  }

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

  .paragraph {
    padding-top: 20px;
    padding-bottom: 10px;
    line-height: 22px;
  }

  .newsletter-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .form {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
  }

  .cell-2 {
    justify-content: center;
    align-items: stretch;
  }

  .footer-section {
    padding-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-11 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-10 {
    padding-right: 0;
  }

  .quick-stack-5 {
    width: 100%;
  }

  .link-tem, .link-tem.first.footer {
    padding-bottom: 10px;
  }

  .link-tem.first.footer._40 {
    padding-bottom: 40px;
  }

  .link-block {
    width: 280px;
  }

  .cell-3 {
    flex-flow: column;
  }

  .slide-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slide-wrapper.ty {
    width: 320px;
  }

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

  .slide.ty, .slider.ty {
    width: 320px;
  }

  .right-arrow {
    margin-right: 0%;
    display: none;
  }

  .left-arrow {
    margin-left: 0%;
    display: none;
  }

  .slide-nav {
    margin-bottom: -12%;
  }

  .title-section {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-12 {
    font-size: 36px;
  }

  .container-13 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-pane-tab-1 {
    padding: 20px;
  }

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

  .tab-link-tab-1, .tab-link-tab-1.w--current {
    width: 100%;
  }

  .tab-link-tab-2, .tab-link-tab-3, .tab-link-tab-4 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
  }

  .tab-pane-tab-2, .tab-pane-tab-3, .tab-pane-tab-4 {
    padding: 20px;
  }

  .container-14 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ppc-ads-section {
    padding-bottom: 0;
  }

  .quick-stack-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-15 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-32 {
    width: 100%;
    padding-bottom: 20px;
  }

  .quick-stack-7 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .text-block-33._2 {
    width: 100%;
  }

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

  .text-block-34._2 {
    width: 100%;
  }

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

  .text-block-35._2 {
    width: 100%;
  }

  .container-16 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cell-9, .cell-10, .cell-11, .cell-12 {
    padding-left: 20px;
  }

  .cell-13 {
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .cell-14 {
    padding: 40px 20px;
  }

  .heading-17 {
    width: 100%;
  }

  .path-wrapper {
    left: 0%;
  }

  .div-block-14 {
    height: 80%;
  }

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

  .quick-stack-10 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .values-section, .blog-cta-custom {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-20 {
    padding: 60px 10px;
  }

  .heading-22, .text-block-51 {
    text-align: center;
  }

  .rocket-cta-copy-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .nav-menu.dark {
    background-color: var(--white);
    color: var(--primary-copy);
    padding-bottom: 40px;
  }

  .nav-menu-2 {
    padding: 20px;
  }

  .no-bg-title-section {
    padding: 60px 20px;
  }

  .no-bg-title-section.blog {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-23 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .container-22 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cell-22 {
    padding: 0;
  }

  .heading-24 {
    padding-bottom: 20px;
    font-size: 36px;
  }

  .text-field-4 {
    height: 45px;
  }

  .text-field-4._2 {
    margin-bottom: 40px;
  }

  .text-field-5 {
    height: 45px;
  }

  .textarea-2 {
    margin-bottom: 20px;
  }

  .container-24 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .cell-24 {
    padding-right: 0;
  }

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

  .container-25 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quick-stack-14 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .why-choose-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container-26 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .container-27 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blue-cta-section {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .cell-32 {
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
  }

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

  .container-29 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-card {
    border: 1px solid var(--hover-yellow);
  }

  .collection-item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .title-blog-post-section {
    height: auto;
  }

  .heading-30 {
    width: 100%;
  }

  .container-31 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .icon-3 {
    font-size: 40px;
  }

  .contact-form-wrapper {
    padding: 40px 20px;
  }

  .blog-cta-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-button {
    background-color: var(--white);
    justify-content: center;
    align-items: center;
    margin-right: 0;
    padding: 10px;
  }

  .menu-button:hover {
    background-color: var(--white);
  }

  .div-block-16 {
    border: 1px solid var(--orange);
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-17 {
    color: var(--primary-copy);
    justify-content: center;
    align-items: center;
    padding-right: 20px;
  }

  .paragraph-15 {
    text-align: center;
    margin-bottom: 0;
  }

  .paragraph-16, .paragraph-19 {
    font-size: 20px;
    line-height: 24px;
  }

  .paragraph-22 {
    width: 100%;
  }

  .paragraph-23 {
    font-weight: 400;
  }

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

  .paragraph-86 {
    font-size: 20px;
    line-height: 24px;
  }

  .quick-stack-20 {
    width: 100%;
  }

  .paragraph-90 {
    padding-right: 0;
  }

  .cell-39 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .social-media-div {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 16px;
  }

  .container-32 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quick-stack-22 {
    padding-bottom: 20px;
  }

  .paragraph-93 {
    padding-right: 0;
  }

  .div-block-19 {
    margin-top: 20px;
    padding: 20px;
  }

  .text-block-70 {
    padding-top: 20px;
  }

  .nav-menu-3 {
    flex-direction: column;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .sitemap-section {
    padding-bottom: 0;
  }

  .sitemap-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-6 {
    width: 100%;
    height: 60px;
  }

  .values-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-7 {
    width: 280px;
    height: 409.578px;
    padding-right: 20px;
  }

  .brand {
    margin-left: 0%;
    padding-left: 0;
  }

  .brand.w--current {
    margin-left: 0;
  }

  .form-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .testimonials-wrapper {
    width: 90vw;
  }

  .cell-46 {
    padding: 30px 20px;
  }

  .quick-stack-25 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    padding: 0 20px;
  }

  .cell-47 {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .cell-48 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .block-quote-3 {
    padding-right: 20px;
  }

  .nav-container-form {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .body-2 {
    background-image: none;
  }

  .heading-48, .paragraph-108 {
    text-align: center;
  }

  .immigration-why-section {
    padding-top: 20px;
  }

  .paragraph-111._1 {
    padding-bottom: 20px;
  }

  .cell-49 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cell-50 {
    padding-left: 0;
  }

  .paragraph-118 {
    justify-content: flex-end;
    align-items: center;
    width: 58.4844px;
    margin-bottom: 0;
    display: flex;
  }

  .cell-51 {
    justify-content: center;
    align-items: center;
  }

  .item-step-wrapper {
    flex-flow: column;
    width: 280px;
    display: flex;
  }

  .step-above, .step-bottom {
    width: 100%;
  }

  .paragraph-120 {
    padding-top: 0;
    display: inline-block;
  }

  .paragraph-120._1 {
    text-align: left;
    padding-left: 0;
  }

  .container-37 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-121 {
    padding-top: 0;
  }

  .immigration-cta-1-section {
    padding-bottom: 0;
  }

  .heading-54 {
    font-size: 32px;
  }

  .immigration-cta-2-section {
    height: auto;
    position: static;
  }

  .immigration-cta-2-container {
    padding-left: 0;
    padding-right: 0;
    position: static;
    top: 8%;
  }

  .image-33 {
    display: none;
  }

  .immigration-bonus-section {
    padding-bottom: 40px;
  }

  .immigration-bonus-container {
    flex-flow: column;
    height: auto;
    padding: 40px 20px;
    position: static;
    overflow: hidden;
  }

  .image-34 {
    width: 100%;
    max-width: 100%;
    padding-top: 40px;
    display: block;
    position: static;
    inset: auto 0% -19% -10%;
    overflow: visible;
  }

  .immigration-who-for-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cell-53 {
    flex-flow: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cell-54 {
    flex-flow: column;
  }

  .paragraph-127, .paragraph-128 {
    text-align: center;
  }

  .immigration-mail-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-36 {
    display: none;
  }

  .cell-55 {
    justify-content: center;
    align-items: center;
  }

  .immigration-table-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .quick-stack-33 {
    overflow: visible;
  }

  .cell-56, .cell-57, .cell-58 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cell-59, .cell-60 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .paragraph-133 {
    line-height: 20px;
  }

  .immigration-congrats-container {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .immigration-case-study {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .modal-section {
    height: 100%;
    padding: 20px 10px;
    display: none;
  }

  .modal-container {
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
    padding-right: 20px;
    overflow: scroll;
  }

  .heading-63 {
    font-size: 32px;
  }

  .full-width {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .modal-copy-block {
    z-index: 4;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
  }

  .paragraph-149 {
    padding-top: 40px;
  }

  .image-38 {
    z-index: 3;
    bottom: -21%;
    right: -18%;
  }

  .paragraph-150 {
    font-size: 48px;
    line-height: 48px;
  }

  .image-39 {
    width: 100%;
    display: block;
  }

  .div-block-20 {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .form-3 {
    width: 100%;
    padding-bottom: 60px;
  }

  .cell-65 {
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-21 {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .image-41 {
    display: none;
  }

  .image-42 {
    width: 100%;
    display: block;
  }

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

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

#w-node-_4ddbf30c-18e9-3386-f313-3271928bdeb8-5cb6dbec, #w-node-_9afadd61-e33e-e14c-44f6-91578b87ffa0-5cb6dbec {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-acc92ca7-3bc0-8362-6531-9964a2be2508-5cb6dbec {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-d9f96c99-3da6-78bd-ae7d-48e91b01a473-5cb6dbec, #w-node-ffd72788-9200-2c05-079a-c456e1963d79-e1963d77 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-ffd72788-9200-2c05-079a-c456e1963d8d-e1963d77 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-f4638af6-fea2-0f3e-de2b-00cc086350ba-086350b8, #w-node-d1470b2f-185b-d91b-b027-74d4414b3e79-f9b25fc8, #w-node-c85f84bd-2ee2-d116-dc77-6c2f83b879bf-637bab00 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0c271749-7fb9-fc98-b070-705d9c987124-637bab00 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_91dd8095-fdba-01ca-bb84-e0d31e557f30-ff45f177 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_2353d6f8-3b99-c554-e1ac-c1ab160bc4e1-ff45f177 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_6e805024-bb78-fc2d-af5c-968507858f51-145cb6cc {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_1e0e7c9e-f8dc-9335-b90e-fe446743d0f9-145cb6cc {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_44d2b576-dacb-b26a-aaee-946a3a036528-21a29f72, #w-node-f69e0da0-cae8-912e-1104-c05ebc4f8c4d-e06bdfd6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_6a5d111f-ab6e-5f20-f23f-08bcd24a1440-e06bdfd6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_0e035fdd-c903-9b05-f139-a3f060132c7f-e06bdfd6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_1be16164-dca7-666c-0261-e6452244dc8e-e06bdfd6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-f69e0da0-cae8-912e-1104-c05ebc4f8c4d-d32e0e4c {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_6a5d111f-ab6e-5f20-f23f-08bcd24a1440-d32e0e4c {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_0e035fdd-c903-9b05-f139-a3f060132c7f-d32e0e4c {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_1be16164-dca7-666c-0261-e6452244dc8e-d32e0e4c {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-f69e0da0-cae8-912e-1104-c05ebc4f8c4d-0c6223b6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_6a5d111f-ab6e-5f20-f23f-08bcd24a1440-0c6223b6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_0e035fdd-c903-9b05-f139-a3f060132c7f-0c6223b6, #w-node-f69e0da0-cae8-912e-1104-c05ebc4f8c4d-257a0364 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_6a5d111f-ab6e-5f20-f23f-08bcd24a1440-257a0364 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_0e035fdd-c903-9b05-f139-a3f060132c7f-257a0364 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9a2bedfd-4d7b-0798-e81d-2ddd065a4ad0-ee74319f {
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

#w-node-_6c445786-5aee-5cad-851c-a86b2add73ce-a707655b, #w-node-f4ef2608-8d92-8b94-7b82-723454377f87-92e4e78b, #w-node-_49ad3f28-b66c-9fa9-872a-6deed87104c4-3cfb72e0 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_4d7a1f67-b870-2a08-2a71-4a9fcc80d730-1fa495a4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

#w-node-_04ce412f-86dd-a59b-7a9b-f6368726a69f-06909496, #w-node-_0af7b970-77f7-5d67-2199-d5bc6eb31d72-06909496 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_315f0dff-03e4-c87f-46ca-23fc58ef4948-06909496 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_7d884a89-bb5c-5418-198e-0c4016a4f329-06909496 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-b04da677-483a-41e9-7ce4-366ae1c01f39-06909496, #w-node-b801f50b-3a37-5b45-f76e-2293f51eff74-06909496 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-e1dd3559-86ac-56df-63a0-f572380ac9b1-06909496, #w-node-_9e4c8d04-5c01-bfab-3af2-349a872ab072-06909496 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_63888bf7-2e75-5a80-df5a-53c9ee87dea1-434e67cf, #w-node-c99c6a1e-606b-d704-629c-5d6be3d2b328-434e67cf, #w-node-f1b69a88-2122-6158-6445-e0d55984500d-5b206a31 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 991px) {
  #w-node-_4ddbf30c-18e9-3386-f313-3271928bdeb8-5cb6dbec, #w-node-_9afadd61-e33e-e14c-44f6-91578b87ffa0-5cb6dbec {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-acc92ca7-3bc0-8362-6531-9964a2be2508-5cb6dbec {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-d9f96c99-3da6-78bd-ae7d-48e91b01a473-5cb6dbec, #w-node-ffd72788-9200-2c05-079a-c456e1963d79-e1963d77 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-ffd72788-9200-2c05-079a-c456e1963d7a-e1963d77 {
    order: -9999;
  }

  #w-node-f4638af6-fea2-0f3e-de2b-00cc086350ba-086350b8, #w-node-c85f84bd-2ee2-d116-dc77-6c2f83b879bf-637bab00, #w-node-_2353d6f8-3b99-c554-e1ac-c1ab160bc4e1-ff45f177, #w-node-_6e805024-bb78-fc2d-af5c-968507858f51-145cb6cc, #w-node-_44d2b576-dacb-b26a-aaee-946a3a036528-21a29f72, #w-node-f69e0da0-cae8-912e-1104-c05ebc4f8c4d-e06bdfd6, #w-node-_0e035fdd-c903-9b05-f139-a3f060132c7f-e06bdfd6 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0e035fdd-c903-9b05-f139-a3f060132c80-e06bdfd6 {
    order: 9999;
  }

  #w-node-f69e0da0-cae8-912e-1104-c05ebc4f8c4d-d32e0e4c, #w-node-_0e035fdd-c903-9b05-f139-a3f060132c7f-d32e0e4c {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0e035fdd-c903-9b05-f139-a3f060132c80-d32e0e4c {
    order: 9999;
  }

  #w-node-f69e0da0-cae8-912e-1104-c05ebc4f8c4d-0c6223b6, #w-node-_0e035fdd-c903-9b05-f139-a3f060132c7f-0c6223b6 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0e035fdd-c903-9b05-f139-a3f060132c80-0c6223b6 {
    order: 9999;
  }

  #w-node-f69e0da0-cae8-912e-1104-c05ebc4f8c4d-257a0364, #w-node-_0e035fdd-c903-9b05-f139-a3f060132c7f-257a0364 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0e035fdd-c903-9b05-f139-a3f060132c80-257a0364 {
    order: 9999;
  }

  #w-node-_9a2bedfd-4d7b-0798-e81d-2ddd065a4ad0-ee74319f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_9a2bedfd-4d7b-0798-e81d-2ddd065a4ad2-ee74319f {
    order: -9999;
  }

  #w-node-_6c445786-5aee-5cad-851c-a86b2add73ce-a707655b, #w-node-f4ef2608-8d92-8b94-7b82-723454377f87-92e4e78b, #w-node-_49ad3f28-b66c-9fa9-872a-6deed87104c4-3cfb72e0, #w-node-_4d7a1f67-b870-2a08-2a71-4a9fcc80d730-1fa495a4, #w-node-_04ce412f-86dd-a59b-7a9b-f6368726a69f-06909496, #w-node-_0af7b970-77f7-5d67-2199-d5bc6eb31d72-06909496, #w-node-_7d884a89-bb5c-5418-198e-0c4016a4f329-06909496, #w-node-b04da677-483a-41e9-7ce4-366ae1c01f39-06909496, #w-node-b801f50b-3a37-5b45-f76e-2293f51eff74-06909496 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_9e4c8d04-5c01-bfab-3af2-349a872ab072-06909496 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  #w-node-_63888bf7-2e75-5a80-df5a-53c9ee87dea1-434e67cf, #w-node-c99c6a1e-606b-d704-629c-5d6be3d2b328-434e67cf {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-c99c6a1e-606b-d704-629c-5d6be3d2b32a-434e67cf {
    order: -9999;
  }

  #w-node-f1b69a88-2122-6158-6445-e0d55984500d-5b206a31 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_9afadd61-e33e-e14c-44f6-91578b87ffa0-5cb6dbec {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-acc92ca7-3bc0-8362-6531-9964a2be2508-5cb6dbec {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-ffd72788-9200-2c05-079a-c456e1963d8d-e1963d77 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-d1470b2f-185b-d91b-b027-74d4414b3e79-f9b25fc8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_0c271749-7fb9-fc98-b070-705d9c987124-637bab00, #w-node-_1e0e7c9e-f8dc-9335-b90e-fe446743d0f9-145cb6cc, #w-node-_6a5d111f-ab6e-5f20-f23f-08bcd24a1440-e06bdfd6, #w-node-_1be16164-dca7-666c-0261-e6452244dc8e-e06bdfd6, #w-node-_6a5d111f-ab6e-5f20-f23f-08bcd24a1440-d32e0e4c, #w-node-_1be16164-dca7-666c-0261-e6452244dc8e-d32e0e4c, #w-node-_6a5d111f-ab6e-5f20-f23f-08bcd24a1440-0c6223b6, #w-node-_6a5d111f-ab6e-5f20-f23f-08bcd24a1440-257a0364 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_315f0dff-03e4-c87f-46ca-23fc58ef4948-06909496 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_9e4c8d04-5c01-bfab-3af2-349a872ab072-06909496 {
    grid-template-rows: auto auto;
    grid-template-columns: .25fr 1fr 1fr 1fr;
  }
}


