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

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

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

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

:root {
  --blue: #42624a;
  --transparent: #fff0;
  --white: white;
  --black: #1f2220;
  --color: #618a6f;
  --brown: #d7b369;
  --white-2: white;
  --black-2: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  line-height: 1.25rem;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

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

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

label {
  color: var(--blue);
  text-transform: capitalize;
  margin-bottom: 5px;
  font-weight: 700;
  display: block;
}

.section-nav {
  z-index: 150;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar {
  z-index: 1;
  background-color: var(--transparent);
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 85rem;
  height: 6.25rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  display: flex;
}

.navlink {
  color: var(--white);
  letter-spacing: .0625rem;
  text-transform: uppercase;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  padding: 0;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.navlink.cta {
  border: .125rem solid var(--white);
  border-radius: 22.5rem;
  margin-left: 1.25rem;
  margin-right: 0;
  padding: .625rem 1.875rem;
  transition: all .2s;
}

.navlink.cta:hover {
  background-color: var(--white);
  color: var(--blue);
}

.navlink.cta.w--current {
  color: var(--white);
}

.img-logo {
  width: 15.625rem;
}

.img-logo.footer {
  width: 90%;
  max-width: 12.5rem;
  margin-bottom: 1.25rem;
}

.hero-section {
  background-color: var(--black);
  color: var(--white);
  background-image: radial-gradient(circle at 100%, #0003, #000000e8), linear-gradient(#00000061, #00000061), url('../images/img-hero-1_1.avif');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  padding-left: .625rem;
  padding-right: .625rem;
}

.hero-wrapper {
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  min-height: 46.875rem;
  max-height: 67.5rem;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  display: flex;
}

.hero-container {
  justify-content: space-between;
  align-items: flex-end;
  width: 90%;
  max-width: 85rem;
  display: flex;
}

.hero-content {
  width: 60%;
  padding: 1.875rem;
}

.hero-content.rel {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 40%;
  padding-left: 0;
  display: flex;
  position: relative;
}

.hero-h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Fettethannhaeuser, sans-serif;
  font-size: 6.6rem;
  font-weight: 400;
  line-height: 90%;
}

.hero-h1.green {
  color: var(--blue);
}

.hero-h1.botm {
  margin-bottom: 1.5rem;
}

.hero-p {
  max-width: 39.4rem;
  margin-top: 1.875rem;
  margin-bottom: 3.75rem;
  font-size: 1.1875rem;
  line-height: 150%;
}

.btn-wrapper {
  align-items: center;
  display: flex;
}

.btn-wrapper.topm {
  margin-top: 1.875rem;
}

.btn {
  border: .125rem solid var(--blue);
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  border-radius: 22.5rem;
  padding: 1.125rem 2.1875rem;
  font-weight: 500;
  transition: all .2s;
}

.btn:hover {
  border-color: var(--color);
  background-color: var(--color);
  transform: translate(0, -.1875rem);
}

.btn.ghost {
  border-color: var(--white);
  background-color: var(--transparent);
}

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

.btn.ghost.dark {
  border-color: var(--blue);
  color: var(--blue);
}

.btn.ghost.dark:hover {
  background-color: var(--blue);
  color: var(--white);
}

.btn.leftm {
  margin-left: 1.25rem;
}

.btn.topm {
  margin-top: 20px;
}

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

.menu-separator {
  border-right: .0625rem dashed var(--brown);
  background-color: var(--transparent);
  width: 0;
  height: 1rem;
}

.wrapper-scroll {
  z-index: 1;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.scroll-wrapper {
  border: .125rem solid var(--white);
  border-radius: 22.5rem;
  justify-content: center;
  align-items: center;
  width: 3.75rem;
  height: 3.75rem;
  padding: 1.0625rem;
  transition: all .2s;
  display: flex;
}

.scroll-wrapper:hover {
  border-color: var(--color);
  background-color: var(--color);
}

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

.reviews-wrapper {
  color: #ffffffbf;
  border-top-right-radius: .3125rem;
  border-bottom-right-radius: .3125rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 1.875rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.star {
  height: .75rem;
  margin-right: .0625rem;
}

.star-wrapper {
  justify-content: center;
  align-items: center;
  margin-left: .625rem;
  margin-right: .625rem;
  display: flex;
}

.wrapper-st {
  align-items: center;
  display: flex;
}

.reviews-small {
  margin-top: .3125rem;
  font-size: .75rem;
  font-weight: 400;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section.alt {
  color: #000;
  background-color: #d7b36933;
}

.section.dark {
  background-color: var(--blue);
  color: var(--white);
}

.section.footer {
  border-top: .0625rem dashed var(--brown);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section.h-o {
  position: relative;
  overflow: hidden;
}

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

.container {
  width: 90%;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
}

.wrapper {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.wrapper.c {
  align-items: center;
}

.wrapper.bot {
  align-items: flex-end;
}

.content {
  padding: 1.875rem;
}

.content._50 {
  width: 50%;
}

.content._50.nopadding-t-b {
  padding-top: 0;
  padding-bottom: 0;
}

.content._45 {
  width: 45%;
}

.content._40 {
  width: 40%;
}

.content._40.pads {
  padding-top: 3.275rem;
  padding-bottom: 3.275rem;
}

.content._60 {
  width: 60%;
}

.content._60.nopadding-t-b {
  padding-top: 0;
  padding-bottom: 0;
}

.content._55 {
  width: 55%;
}

.content._70 {
  width: 70%;
}

.content._30 {
  width: 30%;
}

.content.center {
  text-align: center;
  width: 100%;
  max-width: 46.875rem;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: var(--blue);
  margin-top: 0;
  margin-bottom: 1.875rem;
  font-family: Fettethannhaeuser, sans-serif;
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 100%;
}

.section-title.w {
  color: var(--white);
}

.p17 {
  margin-bottom: .75rem;
  font-size: 1.0625rem;
  line-height: 1.5625rem;
}

.p17.nm {
  margin-bottom: 0;
}

.wrapper-text-link {
  color: var(--brown);
  letter-spacing: .0625rem;
  text-transform: uppercase;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.wrapper-tl {
  margin-top: 1.25rem;
  display: flex;
}

.arrow-tl {
  height: .875rem;
  margin-left: .625rem;
}

.grid-lb-images {
  border: .0625rem dashed var(--brown);
  border-radius: 2.8rem;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr .75fr .5fr;
  padding: .9375rem;
}

.grid-lb-images.low-rad {
  border-radius: 1.4rem;
}

.grid-lb-images._2x {
  grid-template-columns: 1.25fr .75fr;
  height: 100%;
}

.grid-lb-images._2x.m {
  height: 31.25rem;
}

.img-lb {
  object-fit: cover;
  border-radius: 1.875rem;
  width: 100%;
  height: 21.875rem;
}

.img-lb.small {
  border-radius: 2.4rem;
  height: 10rem;
}

.img-lb.large {
  height: 100%;
}

.img-lb.large.o {
  overflow: hidden;
}

.im-s {
  width: 5.3125rem;
  margin-right: 1.875rem;
}

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

.slider {
  background-color: var(--transparent);
  min-height: 28.125rem;
}

.icon-slider {
  border: .625rem solid var(--blue);
  background-color: var(--brown);
  color: var(--blue);
  border-radius: 22.5rem;
  justify-content: center;
  align-items: center;
  width: 4.6875rem;
  min-width: 4.6875rem;
  height: 4.6875rem;
  min-height: 4.6875rem;
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1;
  transition: all .2s;
  display: flex;
}

.icon-slider:hover {
  background-color: var(--white);
}

.icon-slider.rev {
  border-color: var(--white);
  background-color: var(--blue);
  color: var(--white);
}

.icon-slider.rev:hover {
  background-color: var(--brown);
}

.hide {
  display: none;
}

.mask {
  border: .0625rem dashed var(--brown);
  border-radius: 2.8125rem;
}

.img-full-slider {
  object-fit: cover;
  border-radius: 1.875rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.slide {
  padding: .9375rem;
}

.right-arrow-m {
  right: -2.375rem;
}

.wrapper-img-slider-full {
  width: 100%;
  height: 100%;
  position: relative;
}

.wrapper-image-hld {
  border: .0625rem dashed var(--brown);
  border-radius: 2.8125rem;
  width: 100%;
  height: 100%;
  padding: .9375rem;
}

.img-full {
  object-fit: cover;
  border-radius: 1.875rem;
  width: 100%;
  height: 100%;
  min-height: 28.125rem;
  max-height: 34.375rem;
}

.grid-subcontent {
  grid-template-rows: auto;
  margin-top: 3.75rem;
}

.grid-subcontent.large-gap {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  margin-top: 3rem;
}

.subcontent-wrapper {
  align-items: flex-start;
  display: flex;
}

.h3-title {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 115%;
}

.p15 {
  font-size: .9375rem;
  line-height: 1.4375rem;
}

.wrapper-c-subc {
  padding-top: .4375rem;
}

.grid-3x {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrapper-testimonial {
  border: .0625rem dashed var(--brown);
  border-radius: 1.875rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.875rem;
  display: flex;
}

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

.star-img {
  width: 1.875rem;
  margin-right: .1875rem;
}

.testimonial-user {
  align-items: center;
  margin-top: 1.25rem;
  font-weight: 700;
  display: flex;
}

.img-avatar {
  border-radius: 22.5rem;
  width: 2.1875rem;
  min-width: 2.1875rem;
  height: 2.1875rem;
  min-height: 2.1875rem;
  margin-right: 1rem;
}

.google-img {
  object-fit: contain;
  object-position: 0% 50%;
  height: 1.875rem;
  display: block;
}

.wrapper-testimonials-top {
  justify-content: space-between;
  margin-bottom: 1.875rem;
  display: flex;
}

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

.cta-wrapper {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 1.875rem;
  padding: 3.75rem 1.875rem;
}

.cta-border {
  border: .0625rem dashed var(--brown);
  border-radius: 2.8125rem;
  padding: .9375rem;
}

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

.footer-label {
  color: var(--blue);
  margin-top: 0;
  margin-bottom: 1.875rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 115%;
}

.link-footer {
  opacity: .7;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: .9375rem;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.1875rem;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.link-footer:hover {
  opacity: 1;
  color: var(--blue);
}

.link-footer.l {
  margin-bottom: 0;
  margin-left: .9375rem;
}

.separator-footer {
  border-bottom: .0625rem dashed var(--brown);
  width: 100%;
  height: 0;
}

.wrapper-footer-bot {
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
  font-weight: 700;
  display: flex;
}

.footer-s {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.logo-small-adv {
  width: 5rem;
}

.wrapper-sm {
  align-items: center;
  margin-top: 1.25rem;
  display: flex;
}

.sm-item {
  background-color: var(--blue);
  border-radius: 22.5rem;
  justify-content: center;
  align-items: center;
  width: 2.1875rem;
  min-width: 2.1875rem;
  height: 2.1875rem;
  min-height: 2.1875rem;
  margin-right: .9375rem;
  padding: .625rem;
  transition: all .2s;
  display: flex;
}

.sm-item:hover {
  background-color: var(--color);
}

.img-wrapper-rel {
  height: 100%;
  position: relative;
}

.img-wrapper-rel.min {
  min-height: 600px;
}

.img-abs-full {
  object-fit: cover;
  border-radius: 1.875rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.phone-btn {
  color: var(--white);
  border-radius: 22.5rem;
  align-items: center;
  margin-left: 1.875rem;
  padding: .6125rem .8125rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.phone-btn:hover {
  background-color: var(--color);
  color: var(--white);
}

.phone-btn.nv {
  margin-left: .275rem;
}

.phone-icon {
  height: 1.875rem;
  margin-right: .625rem;
}

.wrapper-underline-nav {
  background-color: var(--brown);
  width: 0%;
  height: .0625rem;
  position: absolute;
  inset: auto 0% 0%;
}

.nav-overlay {
  border-bottom: .0625rem solid var(--brown);
  background-color: var(--blue);
  opacity: 0;
  position: absolute;
  inset: 0%;
  box-shadow: 0 2px .3125rem #0003;
}

.status-nav {
  background-color: var(--brown);
  width: 0%;
  height: .0625rem;
  margin-bottom: .0625rem;
  position: absolute;
  inset: auto 0% 0%;
}

.footer-t-r {
  margin-right: 2.65rem;
}

.powered-by {
  align-items: center;
  display: none;
}

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

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

.nav-filler {
  background-color: var(--blue);
  height: 6.25rem;
}

.icon-pre-content {
  border: 1px dashed var(--brown);
  object-fit: contain;
  border-radius: 360px;
  justify-content: center;
  align-items: center;
  width: 4.0625rem;
  min-width: 4.0625rem;
  height: 4.0625rem;
  min-height: 4.0625rem;
  margin-bottom: 1.5rem;
  padding: .75rem;
  display: flex;
}

.wrapper-box-feature {
  border: 1px dashed var(--brown);
  border-radius: 1.875rem;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1.875rem;
}

.grid-4x {
  grid-column-gap: 16px;
  grid-row-gap: 1.875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.page-wrapper {
  position: relative;
}

.wrapper-spr {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.wrapper-i {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.spacer {
  height: 4.6875rem;
}

.icon-gm {
  width: 100%;
}

.req {
  color: #ffc200;
}

.success-message {
  text-align: left;
  background-color: #fff0;
}

.title-h3 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: .75rem;
  font-weight: 400;
  line-height: 115%;
}

.form-block {
  border: .0625rem dashed var(--brown);
  border-radius: .9375rem;
  margin-bottom: 0;
  padding: 2.25rem;
}

.input {
  color: #fff;
  background-color: #313131;
  border: .0625rem solid #ffffff1a;
  border-radius: .375rem;
  min-height: 2.5rem;
  transition: all .15s;
}

.input:hover {
  border-color: #a07a01;
}

.input:focus {
  border-color: #ffc200;
}

.input.alt {
  background-color: var(--white);
  color: var(--black);
  border-color: #0003;
}

.input.alt:hover {
  border-color: var(--brown);
}

.input.alt:focus {
  border-color: #a07a01;
}

.input.area {
  min-height: 7.5rem;
}

.wrapper-split {
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.grid-input-spr {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
}

@media screen and (max-width: 991px) {
  .nav-container {
    width: 90%;
  }

  .navlink {
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: .625rem;
    padding-bottom: .625rem;
  }

  .navlink.cta {
    margin-top: 1.25rem;
    margin-left: 0;
  }

  .hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-wrapper {
    height: auto;
    min-height: auto;
    max-height: none;
    padding-bottom: 1.875rem;
  }

  .hero-container {
    flex-direction: column;
    width: 90%;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content.rel {
    width: 100%;
    padding-left: 1.875rem;
  }

  .hero-h1 {
    font-size: 4.9375rem;
    line-height: 100%;
  }

  .btn-wrapper {
    flex-wrap: wrap;
  }

  .nav-menu {
    background-color: var(--blue);
    border-radius: .3125rem;
    padding: 1.875rem 4.6875rem;
  }

  .menu-separator {
    border-bottom: .0625rem dashed var(--brown);
    border-right-style: none;
    width: 100%;
    height: .0625rem;
    margin-top: .3125rem;
    margin-bottom: .3125rem;
  }

  .wrapper-scroll {
    justify-content: flex-start;
  }

  .reviews-wrapper {
    padding: .9375rem;
    display: block;
  }

  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    width: 90%;
  }

  .wrapper.rev {
    flex-direction: column-reverse;
  }

  .content._50, .content._45, .content._40 {
    width: 100%;
  }

  .content._40.pads.slide0 {
    padding: 1.875rem;
  }

  .content._60, .content._55, .content._70, .content._30 {
    width: 100%;
  }

  .grid-lb-images._2x.m {
    height: auto;
  }

  .img-lb {
    height: 12.5rem;
  }

  .slider {
    min-height: 21.875rem;
  }

  .img-full {
    min-height: 21.875rem;
    max-height: 21.875rem;
  }

  .grid-3x {
    flex-direction: column;
    display: flex;
  }

  .wrapper-btn-right {
    text-align: left;
  }

  .cta-wrapper {
    padding: 2.5rem 1.25rem 1.25rem;
  }

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

  .link-footer.l {
    margin-left: 0;
    margin-right: .9375rem;
  }

  .wrapper-footer-bot {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-s {
    margin-bottom: .9375rem;
  }

  .img-wrapper-rel {
    min-height: 15.625rem;
  }

  .img-wrapper-rel.min {
    min-height: 350px;
  }

  .phone-btn {
    margin-left: .625rem;
  }

  .phone-btn.nv {
    justify-content: center;
    margin-top: 1.25rem;
    margin-left: 0;
  }

  .mb.w--open {
    background-color: var(--transparent);
  }

  .mb-lottie {
    width: 1.875rem;
  }

  .grid-4x {
    flex-direction: column;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .hero-h1 {
    font-size: 4.1875rem;
  }

  .hero-p {
    margin-bottom: 1.875rem;
  }

  .section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .img-lb {
    height: 7.8125rem;
  }

  .img-full {
    min-height: 17.1875rem;
    max-height: 17.1875rem;
  }

  .star-img {
    width: 1.5625rem;
  }

  .cta-wrapper {
    padding-top: 1.875rem;
    padding-left: 0;
    padding-right: 0;
  }

  .img-wrapper-rel.min {
    min-height: 250px;
  }

  .wrapper-i {
    flex-flow: column;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  .nav-container {
    padding-left: .9375rem;
    padding-right: .9375rem;
  }

  .logo-wrapper {
    padding-left: 0;
  }

  .img-logo {
    width: 11.25rem;
  }

  .hero-wrapper {
    padding-top: 6.25rem;
  }

  .hero-content {
    padding: .9375rem;
  }

  .hero-content.rel {
    padding-left: .9375rem;
  }

  .hero-h1 {
    font-size: 3rem;
    line-height: 100%;
  }

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

  .btn-wrapper.topm {
    text-align: center;
  }

  .btn {
    padding-left: 1.4375rem;
    padding-right: 1.4375rem;
  }

  .btn.ghost.leftm.full-w-mob {
    margin-top: 1.25rem;
    margin-left: 0;
  }

  .btn.full-w-mob {
    text-align: center;
    width: 100%;
  }

  .nav-menu {
    padding-left: 2.8125rem;
    padding-right: 2.8125rem;
  }

  .reviews-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    text-align: center;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    padding: .625rem 0 0;
    display: flex;
  }

  .star-wrapper {
    margin-right: 0;
  }

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

  .reviews-small {
    margin-top: 0;
  }

  .section {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
  }

  .section.dark.h-o {
    position: relative;
    overflow: hidden;
  }

  .content {
    padding: .9375rem;
  }

  .content._40.pads.slide0 {
    padding: .975rem;
  }

  .content.np-mob {
    padding: 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .grid-lb-images {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    border-radius: .9375rem;
    padding: .3375rem;
  }

  .img-lb {
    border-radius: .9375rem;
    height: 5.9rem;
  }

  .img-lb.small {
    border-radius: .9375rem;
    height: 5.4rem;
  }

  .im-s {
    width: 3.1rem;
    margin-bottom: 1.25rem;
    margin-right: .475rem;
  }

  .slider {
    min-height: 12.5rem;
  }

  .icon-slider {
    border-width: .375rem;
    width: 3.4375rem;
    min-width: 3.4375rem;
    height: 3.4375rem;
    min-height: 3.4375rem;
    font-size: 1.125rem;
    right: .4375rem;
  }

  .wrapper-image-hld {
    border-radius: 2.8rem;
    padding: .75rem;
  }

  .img-full {
    min-height: 12.5rem;
    max-height: 12.5rem;
  }

  .grid-subcontent {
    flex-direction: column;
    display: flex;
  }

  .wrapper-testimonial {
    padding: .9375rem;
  }

  .star-img {
    width: 1.25rem;
  }

  .google-img {
    height: 1.5625rem;
  }

  .cta-wrapper {
    border-radius: 2.8rem;
    padding-left: .7375rem;
    padding-right: .7375rem;
  }

  .grid-footer {
    flex-direction: column;
    display: flex;
  }

  .footer-content {
    margin-bottom: 1.25rem;
  }

  .link-footer.l {
    margin-bottom: .9375rem;
    margin-right: 0;
  }

  .wrapper-footer-bot {
    flex-direction: column-reverse;
  }

  .footer-s {
    flex-direction: column;
    align-items: flex-start;
  }

  .img-wrapper-rel {
    min-height: 10.9375rem;
  }

  .img-wrapper-rel.min {
    min-height: 180px;
  }

  .phone-btn.m-t {
    margin-top: 1.25rem;
    margin-left: 0;
  }

  .mb-lottie {
    width: 1.5625rem;
  }

  .powered-by {
    margin-top: 1.2rem;
  }

  .wrapper-box-feature {
    padding: .9375rem;
  }

  .form-block {
    padding: 1.5rem;
  }

  .grid-input-spr {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    display: flex;
  }
}

#w-node-ee7ed3a4-4427-1c2d-8b45-76943ec7b026-9cb80f5d, #w-node-ff041387-2e9d-01e2-4e72-b98c8f2e2a1b-9cb80f5d, #w-node-_9f7e79b5-7e2c-4e61-d858-13737e99786b-9cb80f5d, #w-node-a9c135c0-27cc-194e-3644-d4db0aa9c9e4-9cb80f5d, #w-node-_5be3fb1e-f24c-0744-35c2-50d7d58ee43c-9cb80f5d, #w-node-e22a6736-c14a-f53e-b85b-0f0f81f457eb-9cb80f5d, #w-node-a4f25e34-e427-351d-c8fe-38078cee3394-9cb80f5d, #w-node-e86f7e66-5630-8102-c635-d1e632f3228d-9cb80f5d, #w-node-c85cb332-f85d-cb02-b0ba-99271c398cc1-1c398cbd, #w-node-c85cb332-f85d-cb02-b0ba-99271c398ccc-1c398cbd, #w-node-c85cb332-f85d-cb02-b0ba-99271c398cd5-1c398cbd, #w-node-c85cb332-f85d-cb02-b0ba-99271c398ce7-1c398cbd, #w-node-_8965173b-f523-11c6-dd9f-433fc5aad436-ac17e51b, #w-node-_8965173b-f523-11c6-dd9f-433fc5aad437-ac17e51b, #w-node-_8965173b-f523-11c6-dd9f-433fc5aad438-ac17e51b, #w-node-e22a6736-c14a-f53e-b85b-0f0f81f457eb-ac17e51b, #w-node-_5a0104af-caaf-aadb-8e5f-4b68c2e72546-ac17e51b, #w-node-_3ae4832f-95c9-efd3-71f5-ecc037c34121-ac17e51b, #w-node-_1a528935-b447-6d59-9520-1ca66dab7493-ac17e51b, #w-node-c72a1aee-c525-6235-853a-9c36540400e3-ac17e51b, #w-node-c72a1aee-c525-6235-853a-9c36540400e4-ac17e51b, #w-node-c72a1aee-c525-6235-853a-9c36540400e3-cd0a3114, #w-node-b100a6d5-e09b-b2e4-cc74-b3b7b882cf96-cd0a3114, #w-node-f36b4583-5799-9c55-8130-21e79c59cf89-cd0a3114, #w-node-f36b4583-5799-9c55-8130-21e79c59cf90-cd0a3114, #w-node-_2294e29c-5165-83ff-5f40-4637a543624b-cd0a3114, #w-node-_2294e29c-5165-83ff-5f40-4637a543624c-cd0a3114, #w-node-_2294e29c-5165-83ff-5f40-4637a543624d-cd0a3114, #w-node-_4dbeeb94-000c-1117-bdce-d24250d0d40a-596a3c4d, #w-node-_4dbeeb94-000c-1117-bdce-d24250d0d40b-596a3c4d, #w-node-_4dbeeb94-000c-1117-bdce-d24250d0d40c-596a3c4d, #w-node-_235013d5-b7a3-8ed6-bef9-fa6f3b180b9e-596a3c4d, #w-node-_451f2e2b-8dc2-4cc8-848e-14d5aa37bb5a-596a3c4d, #w-node-_4770356d-7594-7452-db1a-bf10d6317ced-596a3c4d, #w-node-ad561c6a-1224-6664-956b-306f978f9cdb-596a3c4d, #w-node-ba6b2287-19b5-31ea-aa15-ea877a3e4506-596a3c4d, #w-node-_6c8df3d6-990b-ac72-11f9-b406fb43d77a-596a3c4d, #w-node-_045e6239-1f6c-a84a-ad9b-99b3416e6bac-596a3c4d, #w-node-_5815766c-9a2b-43b2-594a-bd1fea8f8f83-596a3c4d, #w-node-_333e1169-5db4-1190-0d54-24680c6d68c7-596a3c4d, #w-node-_89f9d31e-09d0-381f-fdea-e6faecc7c6d7-596a3c4d, #w-node-_9c9dad7b-03d0-893c-86d0-4eb06ee76d00-596a3c4d, #w-node-d40b1f14-1584-9303-63c0-be6703a982c7-596a3c4d, #w-node-_436142b3-c3a9-d9c2-52c6-48022742b96b-596a3c4d, #w-node-b6fc9a6f-54a0-feeb-f511-a132640eb6f5-596a3c4d, #w-node-_54f47419-3859-da49-f00a-0e9c37a53b0e-596a3c4d, #w-node-ea40327b-fd8f-3463-2b58-2a1bf9936378-596a3c4d, #w-node-_7ece9a83-8f63-f54b-6e29-722f913aa799-596a3c4d, #w-node-_985d179e-d836-350e-97fa-02c0999b6fb8-596a3c4d, #w-node-_21f62481-a04b-60d3-1d42-754bcfd9846c-596a3c4d, #w-node-_1ec11c0f-ad23-3969-cc77-1e92880e233f-596a3c4d, #w-node-_91daaf99-0b65-c674-cfdb-4d583acd22c5-596a3c4d, #w-node-_77e76693-0652-cb29-f2d3-495ed9de8b27-596a3c4d, #w-node-_0e5c8167-3854-eb8d-0a90-0c9b7358748a-596a3c4d, #w-node-d13e3621-699a-4f7c-2804-39e4cfc108af-596a3c4d, #w-node-d8b7f0bb-f777-51d3-d0a6-24f0dae4c455-596a3c4d, #w-node-b2086f28-4e7b-dfcf-3f7e-cd8c0ba40a88-596a3c4d, #w-node-c72a1aee-c525-6235-853a-9c36540400e3-1f15f4e0, #w-node-c72a1aee-c525-6235-853a-9c36540400e4-1f15f4e0, #w-node-_7c0f1da4-2fb0-8760-a78f-562967212300-1f15f4e0, #w-node-_7c0f1da4-2fb0-8760-a78f-562967212301-1f15f4e0, #w-node-b05bc168-6851-d010-5ed1-41a552e0000d-28d94f3f, #w-node-b05bc168-6851-d010-5ed1-41a552e0000e-28d94f3f, #w-node-b05bc168-6851-d010-5ed1-41a552e0000d-534b67be, #w-node-b05bc168-6851-d010-5ed1-41a552e0000e-534b67be, #w-node-b05bc168-6851-d010-5ed1-41a552e0000d-91116a41, #w-node-b05bc168-6851-d010-5ed1-41a552e0000e-91116a41 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Fettethannhaeuser';
  src: url('../fonts/FetteThannhaeuser.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}