:root {
  --white: white;
  --black: #171717;
  --all-links: var(--button);
  --button: #2cb5e3;
  --white-smoke: #f8f8f8;
  --black-charcoal: #222;
  --dim-grey: #727272;
  --waves-library--white: white;
  --waves-library--black: #131313;
  --waves-library--background: #faebe3;
  --btn-dark: #171717;
  --walsh--black: #2c2c2c;
  --walsh--walsh-mid-green: #2866c9;
  --walsh--walsh-dark-green: #293042;
  --walsh--azure: #e7f1f1;
  --walsh--walsh-light-green: #c2ecd5;
  --walsh--light-goldenrod-yellow: #d3f6c1;
  --walsh--walsh-dark-green-2: #2c5c5d;
  --untitled-ui--gray700: #344054;
  --untitled-ui--primary600: #7f56d9;
  --untitled-ui--white: white;
  --untitled-ui--primary700: #6941c6;
  --untitled-ui--primary100: #f4ebff;
  --untitled-ui--gray600: #475467;
  --untitled-ui--gray50: #f9fafb;
  --untitled-ui--gray300: #d0d5dd;
  --untitled-ui--gray800: #1d2939;
  --untitled-ui--gray100: #f2f4f7;
  --untitled-ui--gray900: #101828;
  --untitled-ui--success50: #ecfdf3;
  --untitled-ui--success700: #027a48;
  --untitled-ui--gray500: #667085;
  --untitled-ui--primary300: #d6bbfb;
  --spark-library--foreground-interactive: #5532fa;
  --spark-library--white: white;
  --spark-library--foreground-interactive-hover: #1e116e;
  --spark-library--border-default: #00000029;
  --spark-library--foreground-tertiary: #0000008f;
  --spark-library--black: black;
  --spark-library--background--interactive: #f0ecfd;
  --waves-library--dark-elevation: #ede0d8;
}

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

.w-layout-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;
}

body {
  background-color: var(--white);
  color: var(--black);
  cursor: default;
  flex-direction: column;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  display: flex;
}

h1 {
  color: var(--white);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.75em;
  font-weight: 600;
  line-height: 1.2;
}

h4 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1.333rem;
  font-weight: 600;
  line-height: 1.3;
}

h5 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
}

h6 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--all-links);
  text-decoration: underline;
  transition: all .2s;
}

ul {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 2;
}

ol {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 2;
}

li {
  margin-top: 4px;
  margin-bottom: 4px;
}

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

label {
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: .75rem;
  line-height: 1;
  display: block;
}

blockquote {
  border-left: 5px solid var(--button);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 11px 20px;
  font-size: 1.5em;
  line-height: 1.3;
}

figure {
  margin: 20px auto;
}

figcaption {
  color: #828282;
  text-align: center;
  margin-top: 12px;
  font-size: 1em;
}

.navbar {
  z-index: 1000;
  background-color: var(--white);
  width: 100%;
  position: sticky;
  inset: 0% 0% auto;
}

.container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.container.in-navbar {
  display: block;
}

.brand {
  padding-left: 0;
}

.brand.in-footer {
  margin-bottom: 20px;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.nav-link {
  color: var(--black);
  flex: none;
  padding: 12px 20px;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: all .2s;
}

.nav-link:hover {
  color: var(--button);
  text-decoration: underline;
}

.nav-link.w--current {
  color: var(--all-links);
  text-decoration: none;
}

.nav-menu {
  align-items: center;
  display: block;
}

.button {
  filter: brightness();
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  background-color: #349e54;
  border-radius: 3px;
  padding: 16px 28px;
  font-weight: 600;
  line-height: 1;
  transition: all .3s;
}

.button:hover {
  transform: translate(0, -3px);
}

.button.in-navbar {
  background-color: #349e54;
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: .9rem;
}

.button.in-navbar-copy {
  background-color: #349e54;
  margin-left: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1rem;
}

.section {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.footer {
  background-color: var(--black);
  color: var(--white);
  margin-top: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section._404 {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

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

.price-wrap {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
  display: flex;
}

.price {
  margin-right: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.strikethrough {
  color: #828282;
  margin-bottom: 5px;
  text-decoration: none;
}

.image-wrap {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  inset: 0% 0% auto auto;
}

.logos-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  place-content: center;
  place-items: stretch center;
  display: grid;
}

._3-columns-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

._3-columns-grid.bottom-margin-80px {
  margin-bottom: 80px;
}

._3-columns-grid.bottom-margin {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: start;
  align-self: flex-start;
  justify-items: stretch;
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
  overflow: auto;
}

.review-card {
  color: #c4c4c4;
  border: 1px solid #444;
  border-radius: 10px;
  width: 100%;
  padding: 30px;
  display: flex;
}

.review-card-name {
  color: var(--white);
  margin-bottom: 0;
  margin-right: 12px;
  font-weight: 400;
}

.review-card-name-wrap, .revie-card-content {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.star-icon {
  filter: grayscale();
  flex: none;
  width: 30px;
  height: 30px;
}

.rating-wrap {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-items: center;
  font-size: .875rem;
  line-height: 1;
  display: flex;
}

.rating-wrap.in-hero {
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-smaller {
  font-size: .8em;
}

.paragraph-smaller.font-color-grey {
  color: #828282;
  margin-bottom: 10px;
  font-size: 1.3em;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
}

.paragraph-smaller.font-color-light-grey {
  color: #c4c4c4;
}

.paragraph-smaller.font-color-grey-copy {
  color: #000;
  margin-bottom: 10px;
  font-size: 1.4em;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
}

.flex {
  display: flex;
}

.flex.vertical {
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

.absolute-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.no-top-margin {
  color: var(--all-links);
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  text-decoration: none;
}

.no-top-margin.bottom-margin-8px {
  margin-bottom: 8px;
}

._2-column-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  width: 100%;
  margin-bottom: 40px;
  display: grid;
}

.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  padding: 20px;
  display: block;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-icon {
  flex: none;
  width: 32px;
  margin-bottom: 20px;
}

.footer-wrap {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.footer-links-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: stretch;
  align-items: start;
  display: grid;
}

.footer-link {
  color: #828282;
  font-size: .8rem;
  text-decoration: none;
}

.footer-link.underline {
  text-decoration: underline;
}

.footer-link.smaller {
  font-size: .8em;
}

.subheading {
  max-width: 40ch;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
}

.style-guide-wrap {
  width: 100%;
  margin-top: 60px;
}

.style-guide-block {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.label {
  margin-bottom: 12px;
}

.form-block {
  width: 100%;
}

.text-field {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  width: 100%;
  min-height: 44px;
  margin-bottom: 24px;
  padding: 12px 20px;
  transition: all .2s;
}

.text-field:hover {
  border-color: #c4c4c4;
}

.text-field:focus {
  border-color: var(--black);
}

.text-field::placeholder {
  color: #c4c4c4;
}

.text-field.text-area {
  min-height: 88px;
}

.checkbox-field {
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
  line-height: 1.5;
  display: flex;
}

.checkbox {
  border-color: #828282;
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 12px;
  transition: all .2s;
}

.checkbox:hover {
  border-color: var(--black);
}

.checkbox.w--redirected-checked {
  border-color: var(--button);
  background-color: var(--button);
}

.checkbox.w--redirected-focus {
  border-color: var(--button);
  box-shadow: 0 0 3px 1px var(--button);
}

.checkbox-label {
  margin-bottom: 0;
}

.radio-button-field {
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
  line-height: 1.5;
  display: flex;
}

.radio-button {
  border-color: #828282;
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 12px;
  transition: all .2s;
}

.radio-button:hover {
  border-color: var(--black);
}

.radio-button.w--redirected-checked {
  border-color: var(--button);
}

.radio-button.w--redirected-focus {
  border-color: var(--button);
  box-shadow: 0 0 3px 1px var(--button);
}

.radio-button-label {
  margin-bottom: 0;
}

.select-field {
  border: 1px solid var(--black-charcoal);
  background-color: var(--white);
  color: var(--black);
  width: 100%;
  min-height: 44px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all .2s;
}

.select-field:hover {
  border: 1px solid #c4c4c4;
}

.select-field:focus {
  border: 1px solid var(--black);
}

.success-message {
  background-color: var(--black-charcoal);
  color: var(--white);
  padding: 20px;
}

.error-message {
  color: var(--white);
  background-color: #ff0051;
  margin-top: 20px;
  padding: 12px 20px;
}

.image-box {
  z-index: 1;
  border-radius: 20px;
  flex: none;
  width: 100%;
  padding-top: 66.66%;
  position: relative;
  overflow: hidden;
  box-shadow: -7px 7px 30px #00000040;
}

.image-box.top-padding-100 {
  padding-top: 100%;
}

.circle-image {
  max-width: 75%;
  position: absolute;
  inset: -10% 10% auto auto;
}

.dots-image {
  position: absolute;
}

.dots-image.bottom-left {
  filter: hue-rotate(138deg);
  inset: auto auto -5% -5%;
}

.dots-image.top-right {
  filter: hue-rotate(138deg);
  inset: -5% -5% auto auto;
}

.dots-image.top-right-2 {
  inset: 20% -10% auto auto;
}

.dots-image.bottom-left-2 {
  inset: auto auto 10% -10%;
}

.student-card {
  z-index: 2;
  background-color: var(--white);
  box-shadow: 0 0 30px 0 #0000001a, inset 0 4px 0 0 var(--button);
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
  padding: 20px;
  position: absolute;
  bottom: -10%;
  left: 10%;
}

.featured-in-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-top: 50px;
  display: grid;
}

.logo-image {
  width: auto;
  max-width: none;
  max-height: 100px;
}

.centered-heading {
  text-align: center;
  width: 100%;
  max-width: 35ch;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
}

.text-column-wrap {
  flex: 1;
}

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

.slider {
  background-color: #0000;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.mask {
  background-color: var(--black-charcoal);
  border-radius: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.right-arrow {
  background-color: var(--black-charcoal);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 20px;
  transition: all .3s;
  display: flex;
  right: -80px;
}

.right-arrow:hover {
  background-color: #555;
}

.left-arrow {
  background-color: var(--black-charcoal);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 20px;
  transition: all .3s;
  display: flex;
  left: -80px;
}

.left-arrow:hover {
  background-color: #555;
}

.slide-nav {
  position: absolute;
  bottom: -80px;
}

.review-avatar {
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  align-self: stretch;
  width: 80px;
  height: 80px;
}

.review-slide-contents {
  align-self: stretch;
  padding: 40px;
}

.review-author-wrap {
  border-top: 1px solid #444;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
}

.slider-wrap {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  margin-bottom: 160px;
  position: relative;
}

.font-color-grey {
  color: #c4c4c4;
}

.slide {
  width: 100%;
  height: auto;
}

.faq-wrap {
  align-self: flex-start;
  width: 100%;
}

.faq-dropdown {
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px #0000001a;
}

.dropdown-toggle {
  white-space: normal;
  width: 100%;
  padding: 30px 40px 30px 30px;
}

.dropdown-list {
  background-color: #0000;
  display: block;
  position: relative;
  overflow: hidden;
}

.no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.dropdown-list-wrap {
  width: 100%;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: .875rem;
}

.logo-wrap-in-footer {
  color: #c4c4c4;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  margin-right: 80px;
  font-size: .75em;
  display: flex;
}

.top-margin-auto {
  margin-top: auto;
}

.footer-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.social-links-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-content: center start;
  place-items: center start;
  margin-left: auto;
  display: grid;
}

.social-link {
  background-color: #fff;
  border-radius: 50%;
  flex: none;
  padding: 8px;
  line-height: 1;
  text-decoration: none;
}

.social-link:hover {
  text-decoration: none;
  transform: scale(1.1);
}

.social-icon {
  flex: none;
  width: 20px;
  height: 20px;
}

.max-15ch {
  color: #036a42;
  max-width: 20ch;
  font-size: 2.7rem;
  font-weight: 900;
}

.max-18ch {
  max-width: 19ch;
  font-weight: 700;
}

.rating-count {
  color: #ffd301;
  margin-right: 4px;
  font-size: 1.1rem;
  font-weight: 600;
}

.description {
  color: var(--dim-grey);
  max-width: 40ch;
  font-size: .875rem;
}

.review-author-div-in-slider {
  margin-left: 20px;
  margin-right: auto;
}

.rating {
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  display: flex;
}

.instructor-stats {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.stats-wrap {
  align-items: center;
  font-size: .8rem;
  display: flex;
}

.stat-icon {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

.heading {
  font-size: 2rem;
  font-weight: 700;
}

.div-block {
  margin-top: 20px;
}

.centered-heading-copy {
  text-align: center;
  width: 100%;
  max-width: 50ch;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 2rem;
}

.quick-stack {
  align-self: stretch;
}

.waves-success-mesaage {
  background-color: var(--waves-library--white);
  border-radius: 6px;
}

.waves---cta-dark {
  background-color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark:hover {
  background-color: #131313e6;
}

.waves---cta-dark.wide-cta {
  background-color: var(--button);
  width: 100%;
}

.waves-submit-wrap-contact-1 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves---checkbox-label {
  font-size: 16px;
}

.waves---checkbox {
  border-color: var(--waves-library--black);
  width: 16px;
  height: 16px;
  margin-top: 0;
  margin-right: 6px;
}

.waves---checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.waves-select-background {
  border: 1px solid var(--waves-library--black);
  background-color: var(--waves-library--background);
  color: var(--waves-library--black);
  border-radius: 8px;
  height: 52px;
  margin: 0;
  font-size: 16px;
}

.waves-select-background:focus {
  border-color: var(--waves-library--black);
}

.waves---field-label {
  font-weight: 600;
}

.waves---input-wrap {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.waves-text-field-background {
  background-color: var(--waves-library--white);
  color: var(--waves-library--black);
  border: 2px solid #d8d8d8;
  border-radius: 8px;
  height: 52px;
  margin: 0;
  font-size: 16px;
}

.waves-text-field-background:focus {
  border-color: var(--waves-library--black);
  color: var(--waves-library--black);
}

.waves---2-inputs {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.waves---form-contact-1 {
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.waves-form-block-contact-1 {
  width: 100%;
  margin-top: 0;
}

.waves---paragraph-big {
  font-size: 20px;
  line-height: 130%;
}

.waves---heading-2-no-margins {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 130%;
}

.waves---center-heading {
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves-master-contact-1 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves---main-container {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium {
  padding-top: 100px;
  padding-bottom: 100px;
}

.image {
  width: 100%;
}

.image-2 {
  object-fit: cover;
  object-position: 50% 70%;
  border-radius: 8px;
  max-width: 100%;
  height: 250px;
  margin-bottom: 20px;
  display: block;
  overflow: auto;
}

.quick-stack-2 {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
}

.waves---paragraph-regular {
  font-size: 18px;
  line-height: 130%;
}

.waves---heading-3-no-margins {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.waves-icon-64 {
  width: 64px;
  height: 64px;
}

.waves---mg-bottom-16 {
  margin-bottom: 0;
}

.waves-tile-contact-3 {
  grid-row-gap: 16px;
  background-color: var(--white-smoke);
  border: 1px solid #000;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 24px;
  display: flex;
}

.waves-grid-contact-3 {
  grid-column-gap: 32px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 64px;
  display: flex;
}

.waves---paragraph-big-2 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 130%;
}

.waves---heading-2-no-margins-2 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 130%;
}

.waves---center-heading-2 {
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves---main-container-2 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-2 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.waves-success-mesaage-2 {
  background-color: var(--waves-library--white);
  border-radius: 6px;
}

.waves---cta-dark-2 {
  background-color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark-2:hover {
  background-color: #131313e6;
}

.waves---cta-dark-2.wide-cta {
  min-width: 200px;
}

.waves-submit-wrap-contact-2 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves---checkbox-label-2 {
  font-size: 16px;
}

.waves---checkbox-2 {
  border-color: var(--waves-library--black);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  margin-right: 6px;
}

.waves---checkbox-field-2 {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.waves-select-background-2 {
  border: 1px solid var(--waves-library--black);
  background-color: var(--waves-library--background);
  color: var(--waves-library--black);
  border-radius: 8px;
  height: 52px;
  margin: 0;
  font-size: 16px;
}

.waves-select-background-2:focus {
  border-color: var(--waves-library--black);
}

.waves---input-wrap-2 {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.waves-text-field-background-2 {
  border: 1px solid var(--waves-library--black);
  background-color: var(--waves-library--background);
  color: var(--waves-library--black);
  border-radius: 8px;
  height: 52px;
  margin: 0;
  font-size: 16px;
}

.waves-text-field-background-2:focus {
  border-color: var(--waves-library--black);
  color: var(--waves-library--black);
}

.waves---2-inputs-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.waves---form-contact-2 {
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.waves-form-block-contact-2 {
  width: 100%;
  max-width: 540px;
  margin-top: 40px;
}

.waves-master-contact-2 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.select-field-2 {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  height: 52px;
}

.waves-grid-contact-4 {
  grid-column-gap: 32px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 64px;
}

.waves-icon-32 {
  width: 45px;
  height: 45px;
}

.waves-tile-features-2 {
  grid-row-gap: 16px;
  background-color: var(--white-smoke);
  border: 2px solid #d8d8d8;
  border-radius: 12px;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding: 20px 40px;
  display: flex;
}

.waves---master-tiles-features-2 {
  grid-row-gap: 24px;
  flex-direction: column;
  width: 100%;
  max-width: 545px;
  display: flex;
}

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

.waves---content-sticky-features-2 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  display: flex;
}

.waves---sticky-halves {
  position: sticky;
  top: 88px;
}

.waves---sticky-halves-left {
  position: relative;
}

.waves---grid-halves-sticky {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: row-reverse;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  display: grid;
}

.container-2 {
  max-width: 1280px;
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.textarea {
  border: 2px solid #d8d8d8;
  border-radius: 8px;
}

.link {
  color: var(--btn-dark);
  margin-right: 5px;
  font-size: 1rem;
  font-weight: 600;
}

.button-copy {
  background-color: var(--black);
  filter: brightness();
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  border-radius: 3px;
  margin-right: 10px;
  padding: 16px 28px;
  font-weight: 600;
  line-height: 1;
  transition: all .3s;
}

.button-copy:hover {
  transform: translate(0, -3px);
}

.button-copy.in-navbar {
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: .9rem;
}

.student-card-copy {
  z-index: 2;
  background-color: #fff0;
  border: 1px #000;
  border-top-width: 0;
  border-radius: 10px;
  width: auto;
  max-width: 320px;
  padding: 0;
  position: absolute;
  inset: -20% auto auto 0%;
}

._3-columns-grid-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  place-items: stretch stretch;
  width: 100%;
  margin-bottom: 0;
  display: grid;
}

.review-card-copy {
  outline-offset: 0px;
  color: #c4c4c4;
  border: 1px solid #444;
  border-radius: 10px;
  outline: 3px #c4c4c4;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 10px;
  display: flex;
}

.review-card-name-copy {
  color: var(--black-charcoal);
  text-align: center;
  margin-bottom: 0;
  margin-right: 0;
  font-weight: 400;
}

.flex-copy {
  display: flex;
}

.flex-copy.vertical {
  background-image: url('../images/GTA.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
  flex-direction: column;
  align-items: center;
  display: flex;
}

._2-column-grid-copy {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  display: grid;
}

.text-block {
  margin-bottom: 10px;
}

.heading-2 {
  color: var(--black-charcoal);
  margin-bottom: 0;
  font-size: 2rem;
}

.text-block-2 {
  margin-bottom: 4px;
  font-size: 14px;
}

.student-card-copy-copy {
  z-index: 2;
  background-color: #fff0;
  border: 1px #000;
  border-top-width: 0;
  border-radius: 10px;
  width: auto;
  max-width: 320px;
  padding: 0;
  position: absolute;
  inset: 264px 2% 0% auto;
}

.image-3, .image-4, .image-5, .image-6 {
  width: 30px;
}

.container-3 {
  max-width: 1280px;
  margin-top: 50px;
  padding: 40px;
}

.review-card-copy {
  color: #c4c4c4;
  border: 1px solid #444;
  border-radius: 10px;
  width: 100%;
  padding: 30px;
  display: flex;
}

._3-columns-grid-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

._3-columns-grid-copy.bottom-margin-80px {
  margin-bottom: 80px;
}

._3-columns-grid-copy.bottom-margin {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 40px;
}

.button-copy-copy {
  background-color: var(--button);
  filter: brightness();
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  border-radius: 3px;
  width: 100%;
  margin-right: 10px;
  padding: 16px 28px;
  font-weight: 600;
  line-height: 1;
  transition: all .3s;
}

.button-copy-copy:hover {
  transform: translate(0, -3px);
}

.button-copy-copy.in-navbar {
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: .9rem;
}

.link-2 {
  text-decoration: none;
}

.link-3 {
  font-size: 2rem;
  text-decoration: none;
}

.link-4, .link-5, .link-6, .link-7 {
  text-decoration: none;
}

.div-block-2 {
  align-self: stretch;
  display: block;
}

.div-block-3 {
  width: 100%;
}

.div-block-4 {
  width: 100%;
  margin-bottom: 20px;
}

._2-column-grid-copy {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  width: 100%;
  margin-bottom: 40px;
  display: grid;
}

._2-column-grid-copy-copy {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  display: grid;
}

.container-2-copy {
  width: 100%;
  max-width: 1280px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.div-block-5 {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.reviewbtn {
  background-color: var(--white);
  filter: brightness();
  color: var(--black);
  text-align: center;
  text-transform: capitalize;
  border-radius: 3px;
  margin-right: 10px;
  padding: 16px 28px;
  font-weight: 600;
  line-height: 1;
  transition: all .3s;
}

.reviewbtn:hover {
  transform: translate(0, -3px);
}

.reviewbtn.in-navbar {
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: .9rem;
}

._2-column-grid-copy-copy-copy {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  display: grid;
}

.quick-stack-3 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  align-self: auto;
  max-width: 1150px;
}

.cell, .cell-2, .cell-3, .cell-4, .cell-5 {
  justify-content: center;
}

.image-7 {
  align-self: center;
}

.cell-6 {
  justify-content: center;
}

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

.image-8 {
  height: 75px;
}

.cell-8, .cell-9, .cell-10, .cell-11, .cell-12, .cell-13 {
  justify-content: center;
  align-items: center;
}

.cell-14 {
  justify-content: center;
}

.cell-15, .cell-16, .cell-17, .cell-18, .cell-19, .cell-20 {
  justify-content: center;
  align-items: center;
}

.image-9, .image-10 {
  max-width: 250px;
}

.bold-text-11 {
  color: #349e54;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  display: inline-block;
}

.image-11, .image-12, .image-13, .image-14 {
  width: 250px;
}

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

.heading-3 {
  color: var(--white);
  text-align: center;
  background-color: #000;
  border-radius: 5px;
  align-self: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 5px;
  font-size: .9rem;
}

.div-block-7 {
  padding-top: 5px;
  padding-bottom: 10px;
}

.waves---expand-line {
  background-color: var(--dim-grey);
  width: 16px;
  height: 2px;
}

.waves---expand-line.vertical {
  background-color: var(--dim-grey);
  width: 2px;
  height: 16px;
  position: absolute;
}

.waves---expand-icon-wrap {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  display: flex;
}

.waves-expanded-text {
  margin-bottom: 0;
  font-size: 16px;
}

.waves---expand-space {
  height: 24px;
}

.waves---expandable-open {
  transform-origin: 50% 0;
}

.waves---paragraph-regular-2 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 130%;
}

.waves---expandable-content {
  width: 100%;
  height: auto;
  margin-right: 24px;
}

.waves---expandable-item {
  border-top: 1px none var(--dim-grey);
  color: var(--dim-grey);
  cursor: pointer;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  padding-top: 0;
  padding-bottom: 20px;
  display: flex;
}

.waves---expandable-wrap {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.waves-expandable-master-faq-2 {
  width: 100%;
  max-width: 545px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
}

.waves---paragraph-big-3 {
  font-size: 20px;
  line-height: 130%;
}

.waves---heading-2-no-margins-3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves---center-heading-3 {
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves---main-container-3 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-3 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-block-3 {
  color: var(--dim-grey);
  font-weight: 600;
}

.paragraph {
  margin-top: 20px;
  font-weight: 500;
}

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

.walsh-button-hover-fill {
  background-color: #000;
  border-radius: 100%;
  width: 5em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -100% auto auto -46%;
}

.walsh-icon-arrow-flip {
  height: 12px;
}

.walsh-arrow-wrapper {
  grid-row-gap: 0px;
  flex-direction: column;
  flex: none;
  align-items: center;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.walsh-label-button {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
}

.walsh-button-label-wrapper {
  z-index: 4;
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-orange {
  color: #fff;
  text-align: center;
  background-color: #ff715b;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange:hover {
  background-color: #ffbba6;
}

.walsh-flex-nav-buttons {
  grid-column-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.walsh-nav-link-black {
  color: var(--walsh--black);
  border-radius: 8px;
  padding: 15px 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.walsh-nav-link-black:hover {
  background-color: #dbdbdb59;
}

.walsh-nav-link-black.w--current {
  color: #6d6d6d;
  background-color: #dbdbdb59;
}

.walsh-dropdown-link {
  color: #6b6b6b;
  border-radius: 2px;
  font-weight: 600;
}

.walsh-dropdown-link:hover {
  color: #ff8d86;
  background-color: #eee;
  border-radius: 3px;
}

.walsh-dropdown-list.w--open {
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding: 6px;
  box-shadow: 0 0 14px 5px #0000000d;
}

.walsh-icon-dropdown {
  margin-right: 12px;
}

.walsh-toggle-black {
  color: var(--walsh--black);
  border-radius: 8px;
  padding: 15px 32px 15px 18px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
}

.walsh-toggle-black:hover {
  background-color: #dbdbdb59;
}

.walsh-dropdown {
  color: #fff;
}

.walsh-nav-menu-white {
  grid-column-gap: 8px;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.walsh-nav-logo {
  height: 32px;
}

.walsh-brand-block {
  z-index: 2;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.walsh-inner-nav {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.walsh-inner-container-nav-float {
  max-width: 1480px;
}

.walsh-main-nav {
  background-color: #0000;
}

.walsh-float-menu {
  background-color: #fff;
  border-radius: 6px;
  padding: 5px 20px;
}

.walsh-nav-wrapper-green-padding {
  z-index: 10;
  background-color: #204f58;
  padding: 20px 30px;
  position: sticky;
  top: 0;
}

.walsh-link-block-gray {
  color: #000;
  background-color: #eee;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-gray:hover {
  color: #000;
  background-color: #dbffe0;
}

.walsh-cta-v-wrapper {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.walsh-paragraph-small {
  color: #161616ad;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 1.08em;
  line-height: 1.6;
}

.walsh-heading-medium {
  color: var(--walsh--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.1;
}

.walsh-label-tag {
  color: #0009;
  text-align: left;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.walsh-tag {
  text-align: left;
  background-color: #51aa761a;
  border-radius: 200px;
  align-items: center;
  padding: 7px 20px;
  display: flex;
  overflow: hidden;
}

.walsh-content-wrapper-gap {
  grid-row-gap: 1.25em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.walsh-main-grid {
  grid-column-gap: 2.2em;
  grid-row-gap: 2.2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  position: relative;
}

.walsh-cta-block-white {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 5.5em 40px;
  position: relative;
  overflow: hidden;
}

.walsh-container {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.tabs {
  display: flex;
}

.tabs-menu {
  flex-direction: column;
  max-width: 250px;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.tab-link-tab-1 {
  border-radius: 8px;
  margin-bottom: 20px;
}

.tab-link-tab-1.w--current {
  background-color: var(--button);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  width: 200px;
  margin-bottom: 10px;
}

.text-block-4 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.tab-link-tab-2 {
  border-radius: 8px;
  margin-bottom: 10px;
}

.tab-link-tab-3 {
  border: 1px solid var(--dim-grey);
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
}

.div-block-8 {
  align-items: center;
  display: flex;
}

.image-15, .image-16 {
  margin-right: 10px;
}

.bold-text-12, .bold-text-13, .bold-text-14 {
  font-weight: 500;
}

.paragraph-2, .paragraph-3, .paragraph-4 {
  font-size: 14px;
}

.heading-4 {
  margin-bottom: 10px;
}

.heading-5 {
  color: var(--button);
  margin-bottom: 10px;
}

.paragraph-5 {
  color: var(--dim-grey);
  font-size: 16px;
  font-weight: 500;
}

.heading-6 {
  color: var(--white);
  background-color: #2f9952;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
}

.bold-text-11-copy {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
}

.text-span-2 {
  color: #2f9953;
}

.bold-text-11-copy {
  color: #036a43;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.heading-7 {
  margin-bottom: 10px;
  line-height: .7;
}

.heading-8 {
  max-width: 500px;
  margin-bottom: 0;
  line-height: 1;
}

.heading-9 {
  line-height: 1;
}

.image-17 {
  float: right;
  text-align: left;
  object-fit: contain;
  font-size: 18px;
  position: static;
  top: -17px;
}

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

.waves-gradient-hero-1 {
  z-index: 9;
  background-image: linear-gradient(#faebe3, #faebe300);
  height: 220px;
  position: absolute;
  inset: -1px 0% auto;
}

.waves-gradient-hero-1.bottom {
  background-image: linear-gradient(to top, #faebe3, #faebe300);
  inset: auto 0% -1px;
}

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

.waves-image-wrap-hero-1 {
  border-radius: 12px;
  width: 100%;
  height: 410px;
  overflow: hidden;
}

.waves-item-gallery-hero-1 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.waves-inside-hero-1 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.waves-inside-hero-1.reverse {
  justify-content: flex-end;
}

.waves-column-hero-1 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: flex-start;
  width: 48%;
  display: flex;
}

.waves-gallery-hero-1 {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 550px;
  height: 740px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.waves---cta-dark-3 {
  background-color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark-3:hover {
  background-color: #131313e6;
}

.waves---cta-dark-3.wide-cta {
  min-width: 200px;
}

.waves---mg-top-17 {
  margin-top: 16px;
}

.waves---subtitle {
  font-size: 24px;
  line-height: 40px;
}

.waves---limit-480 {
  width: 100%;
  max-width: 480px;
}

.waves---mega-heading-1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 100px;
  line-height: 115%;
}

.waves-content-hero-1 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.waves-grid-hero-1 {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.1fr 1fr;
}

.waves---main-container-4 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-hero-primary {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-span-4 {
  color: var(--all-links);
}

.text-span-5, .text-span-6 {
  color: var(--button);
}

.text-area {
  min-height: 10rem;
  font-size: 1rem;
}

.submit-button.button-2 {
  color: #fafaf4;
  background-color: #ff4646;
  width: 100%;
  margin-right: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.heading-2-white {
  color: #fff;
  align-self: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 1rem;
  font-family: Merriweather, serif;
  font-size: 2rem;
  line-height: 2.8rem;
}

.link-8 {
  color: #fafaf4;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
}

.link-8.text-size-regular {
  letter-spacing: .1rem;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 0;
  font-size: .7rem;
  display: inline;
}

.link-8.text-size-tiny {
  opacity: .8;
  margin-right: .6rem;
  font-size: .7rem;
  transition: opacity .2s;
}

.link-8.text-size-tiny:hover {
  opacity: 1;
}

.form-question-content {
  z-index: 1;
  align-self: auto;
  width: 80%;
  position: static;
  top: 5rem;
}

.footer {
  background-color: #222121;
  position: static;
  inset: auto auto 0%;
  overflow: hidden;
}

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

.footer-smaller-items-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: flex;
}

.social-media-icon-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: flex;
}

.text-regular-align-center {
  color: gray;
  text-align: center;
  font-size: 1rem;
  text-decoration: none;
}

.text-color-grey {
  color: gray;
}

.insert-success-text {
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.2rem;
  line-height: 1.7rem;
  display: flex;
}

.form-item {
  width: 100%;
  margin-bottom: 0;
}

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

.form-end-image-block {
  background-image: url('../images/lead-image.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 90vh;
  padding: 2rem;
  display: flex;
  position: relative;
}

.link-holder {
  width: auto;
  margin-bottom: .8rem;
  text-decoration: none;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.text-size-tiny {
  color: #222121;
  text-transform: none;
  font-size: .75rem;
  text-decoration: none;
}

.welcome-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.form-navigation-buttons {
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
  display: flex;
  position: static;
}

.icon {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.icon-red {
  color: #ff4646;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.heading-2-2-center {
  text-align: center;
  text-transform: capitalize;
  flex-direction: row;
  order: -1;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  font-family: Inter, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 4rem;
  display: flex;
}

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

.back-button.button-2 {
  color: #fafaf4;
  background-color: #222121;
  justify-content: center;
  align-items: center;
  min-height: auto;
  margin-right: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  transition: all .2s;
  display: flex;
  position: static;
  inset: 0% auto 0% 0%;
}

.back-button.button-2:hover {
  background-color: #a4a5a7;
}

.form-options-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: block;
}

.radio-button-2 {
  color: #0000;
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 7px;
  order: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  transition: all .2s;
  display: block;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.radio-button-2:hover {
  background-color: #00000008;
  border-style: solid;
  border-width: 1px;
}

.radio-button-2:active {
  background-color: #fafaf4d6;
}

.radio-button-2.w--redirected-checked {
  background-color: #00000008;
  border-width: 2px;
  border-color: #222121;
  border-radius: 7px;
}

.grid-5 {
  grid-column-gap: 30px;
  grid-row-gap: 71px;
}

.text-field-2 {
  color: #fafaf4;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #fafaf4;
  width: 100%;
}

.quiz-intro-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form {
  position: relative;
}

.heading-3-white {
  color: #fff;
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
}

.logo-holder {
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
}

.text-size-regular {
  font-size: 1rem;
  text-decoration: none;
}

.text-size-regular.text-weight-light {
  align-self: auto;
}

.text-size-regular.text-weight-light.text-align-center, .text-size-regular.text-weight-semibold {
  margin-bottom: 0;
}

.log-in-icon {
  color: #222121;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.margin-bottom {
  flex-direction: row;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.margin-bottom.margin-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.margin-bottom.margin-xsmall {
  margin-bottom: .5rem;
}

.margin-bottom.margin-medium {
  flex-direction: row;
}

.margin-bottom.flex-vertical {
  flex-direction: column;
  align-items: flex-start;
}

.email-collector-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

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

.margin-top.margin-medium {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.margin-top.margin-medium.inline {
  display: block;
}

.margin-top.margin-small {
  justify-content: center;
  display: flex;
}

.margin-top.margin-small.left-aligned {
  justify-content: flex-start;
}

.image-holder {
  clear: none;
  object-fit: fill;
  flex-direction: column;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  inset: 0%;
}

.resource-link {
  cursor: pointer;
  background-color: #fafaf4;
  padding: 1rem 1.5rem;
  transition: all .2s;
}

.resource-link:hover {
  background-color: #d8d8cc;
}

.resource-link-wrapper {
  color: #333232;
  text-decoration: none;
}

.form-step-item {
  height: 90vh;
  margin-bottom: 2rem;
}

.social-icon-2 {
  color: #fafaf4;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.form_input {
  cursor: pointer;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #a4a5a7;
  min-height: 3rem;
  margin-bottom: 0;
  padding: .5rem 1rem;
}

.form_input:active, .form_input:focus {
  border-bottom-color: #ff4646;
}

.bold {
  font-weight: 700;
}

.quiz-form-section {
  background-color: #fafaf4;
  height: auto;
}

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

.quiz-intro-content {
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  display: flex;
}

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

.padding-vertical.padding-large {
  float: none;
  clear: none;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: block;
  position: static;
  inset: auto auto 0%;
}

.answer-text-25ch {
  text-align: left;
  order: -1;
  max-width: 25ch;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5rem;
}

.heading-2-2 {
  text-transform: capitalize;
  flex-direction: row;
  order: -1;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  font-family: Merriweather, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.8rem;
  display: flex;
}

.form-answer-option-item {
  border: 1px #a4a5a7;
  border-radius: 7px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  transition: all .2s;
  display: flex;
  position: relative;
}

.form-answer-option-item:hover {
  border: 2px #222121;
  border-radius: 7px;
}

.form-answer-option-item:focus {
  border-width: 2px;
  border-color: #222121;
}

.text-weight-light {
  text-align: left;
  order: -1;
  font-weight: 300;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: block;
  position: static;
}

.form-submit-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.form-item-question-block {
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: relative;
}

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

.icon-holder {
  object-fit: contain;
  order: -1;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: flex;
}

.icon-holder.small {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  min-height: 2rem;
  margin-right: .5rem;
}

.icon-holder.for-quiz {
  order: 1;
  width: 4rem;
  height: 4rem;
}

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

.helpful-resources-block {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 2rem;
  display: flex;
}

.next-button.button-2 {
  color: #fafaf4;
  background-color: #222121;
  justify-content: center;
  align-items: center;
  min-height: auto;
  margin-right: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  transition: all .2s;
  display: flex;
  position: static;
  inset: 0% 0% 0% auto;
}

.next-button.button-2:hover {
  background-color: #ff4646;
}

.button-block {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.form-label {
  color: #fafaf4;
}

.form-message-response-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.form-2 {
  display: block;
}

.footer-smaller-items {
  flex-flow: wrap;
  justify-content: flex-start;
  display: flex;
}

.finsweet-link {
  padding-left: .4rem;
}

.bold-text-15 {
  font-weight: 700;
}

.success-message-2 {
  background-color: #fff;
  height: auto;
  padding: 5rem 0;
}

.image-18 {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.image-18.contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.button-2 {
  color: #fff;
  text-align: center;
  background-color: #000;
  padding: .75rem 1.5rem;
  font-size: .75rem;
  font-weight: 600;
}

.button-2.position-absolute {
  background-color: #0000;
  position: absolute;
  inset: auto 0% 0% auto;
}

.button-2.position-absolute:hover {
  opacity: .7;
}

.button-2.position-absolute:active {
  opacity: .71;
}

.button-red {
  color: #fff;
  text-align: center;
  background-color: #349e56;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding: .75rem 5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.button-red:hover {
  background-color: #222121;
}

.collection-list-wrapper {
  flex-direction: column;
  display: flex;
}

.collection-list-wrapper-2 {
  align-self: stretch;
}

.heading-10 {
  color: var(--button);
}

.collection-list-wrapper-3 {
  align-self: stretch;
}

.heading-11 {
  margin-bottom: 0;
}

.text-block-5 {
  font-weight: 600;
  display: inline-block;
}

.text-block-6 {
  margin-right: 5px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}

.div-block-9 {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.image-19 {
  height: 250px;
}

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

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

.collection-item {
  width: 100%;
}

.collection-list-wrapper-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  display: grid;
}

.collection-list-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-wrapper-5 {
  align-self: stretch;
}

.collection-item-3 {
  margin-bottom: 20px;
}

.image-20 {
  margin-right: 5px;
}

.text-block-6-copy {
  margin-right: 5px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.collection-list-wrapper-6 {
  align-self: stretch;
}

.div-block-11 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  object-fit: none;
  flex-direction: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 65px;
  max-height: 65px;
  margin-bottom: 0;
  padding: 10px 0;
  display: flex;
  overflow: auto;
}

.button-3 {
  background-color: #2f9952;
  border: 2px solid #2f9952;
  border-radius: 4px;
  margin-right: 5px;
  font-weight: 500;
}

.button-3.w--current {
  flex: none;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 35px;
  margin-right: 0;
  font-size: 15px;
  display: flex;
}

.button-4 {
  color: var(--button);
  text-align: center;
  background-color: #fff0;
  border: 2px solid #2f9952;
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-items: center;
  height: 35px;
  margin-right: 0;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.collection-list-wrapper-7 {
  align-self: stretch;
}

.heading-12 {
  margin-bottom: 0;
}

.link-9 {
  margin-top: 10px;
  display: block;
}

.collection-list-wrapper-8 {
  align-self: stretch;
}

.heading-13 {
  margin-bottom: 0;
}

.button-5 {
  text-align: center;
  background-color: #000;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-top: 10px;
  font-weight: 500;
  display: flex;
}

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

.image-2-copy {
  object-fit: contain;
  object-position: 50% 70%;
  object-fit: contain;
  object-position: 50% 70%;
  border-radius: 8px;
  max-width: 100%;
  height: 200px;
  margin-bottom: 20px;
  display: block;
}

.image-19-copy {
  height: 250px;
}

.text-block-7 {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.collection-list-wrapper-9 {
  align-self: stretch;
}

.image-21 {
  max-width: 100%;
  height: auto;
}

.heading-14 {
  margin-bottom: 0;
}

.heading-15, .collection-list-wrapper-10 {
  align-self: stretch;
}

.image-22 {
  height: auto;
}

.heading-16 {
  margin-bottom: 0;
}

.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;
}

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

.search {
  flex-direction: row;
  align-self: stretch;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.search-input {
  color: var(--black);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  width: 90%;
  height: 50px;
  margin-bottom: 0;
  padding-top: 9px;
  padding-bottom: 9px;
  display: inline-block;
}

.search-button {
  background-color: #2f9952;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 10%;
  height: 50px;
  font-weight: 500;
}

.div-block-12 {
  align-self: stretch;
}

.image-23 {
  width: 250px;
}

.heading-17 {
  color: var(--button);
}

.walsh-icon-arrow {
  height: 12px;
  margin-top: 2px;
  margin-left: 10px;
}

.walsh-link-wrapper {
  color: #000000d9;
  white-space: nowrap;
  border-bottom: 1px dashed #c5c5c5;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.walsh-link-wrapper:hover {
  color: #575555d9;
  padding-right: 0;
}

.walsh-button-hover-fill-2 {
  background-color: #000;
  border-radius: 100%;
  width: 5em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -100% auto auto -46%;
}

.walsh-icon-arrow-flip-2 {
  height: 12px;
}

.walsh-arrow-wrapper-2 {
  grid-row-gap: 0px;
  flex-direction: column;
  flex: none;
  align-items: center;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.walsh-label-button-2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
}

.walsh-button-label-wrapper-2 {
  z-index: 4;
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-orange-2 {
  color: #fff;
  text-align: center;
  background-color: #ff715b;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-2:hover {
  background-color: #ffbba6;
}

.walsh-hero-div-block {
  grid-column-gap: 1.25em;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.walsh-main-paragraph {
  color: #0009;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 1.45em;
  line-height: 1.5;
}

.walsh-hero-p-wrapper {
  width: 100%;
  max-width: 36em;
}

.walsh-heading-large {
  color: var(--walsh--black);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1;
}

.walsh-title-tag {
  color: var(--walsh--black);
  font-size: 1.2em;
  font-weight: 500;
}

.walsh-bullet-tag {
  background-color: var(--walsh--black);
  border-radius: 100px;
  width: 12px;
  height: 12px;
}

.walsh-flex-tag {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.walsh-content-wrap-50 {
  grid-row-gap: 2em;
  text-align: left;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 8em 4em;
  display: flex;
}

.walsh-cover-image {
  object-fit: contain;
  flex: 1;
  width: 100%;
  height: 100%;
}

.walsh-col-image-wrapper {
  flex: 0 auto;
  width: 50%;
  max-width: none;
}

.walsh-flex-horizontal {
  grid-column-gap: 4em;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.walsh-rounded-block {
  background-color: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.walsh-container-2 {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.text-block-8 {
  font-size: .9rem;
  font-weight: 700;
}

.dropdown-toggle-2 {
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: block;
}

.dropdown-list-2 {
  inset: 0% 0% auto;
}

.dropdown-list-2.w--open {
  position: relative;
  inset: 0% auto auto 0%;
}

.collection-list-wrapper-11 {
  align-self: stretch;
}

.image-24 {
  object-fit: contain;
  max-width: 100%;
  height: 200px;
  display: block;
}

.heading-18 {
  margin-bottom: 0;
}

.collection-list-wrapper-12 {
  align-self: stretch;
}

.image-25 {
  object-fit: contain;
  height: 200px;
}

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

.heading-19 {
  margin-bottom: 0;
}

.image-26 {
  height: 200px;
}

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

.heading-20 {
  margin-bottom: 0;
}

.collection-list-wrapper-13 {
  align-self: stretch;
}

.image-27 {
  height: 200px;
}

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

.heading-21 {
  margin-bottom: 0;
}

.collection-list-wrapper-14 {
  align-self: stretch;
}

.image-28 {
  object-fit: fill;
  height: 200px;
}

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

.heading-22 {
  margin-bottom: 0;
}

.dropdown-list-3 {
  align-items: flex-start;
  height: 100px;
  display: block;
  inset: 0%;
}

.dropdown-list-3.w--open {
  flex-direction: row;
  min-width: 500px;
  display: flex;
  inset: auto auto 0% 0%;
}

.dropdown-toggle-3 {
  display: inline-block;
}

.button-6 {
  text-align: center;
  background-color: #000;
  border-radius: 4px;
  width: 100%;
  margin-top: 10px;
}

.button-copy-copy-copy {
  background-color: var(--black);
  filter: brightness();
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  border-radius: 3px;
  width: 100%;
  margin-top: 10px;
  margin-right: 10px;
  padding: 16px 28px;
  font-weight: 600;
  line-height: 1;
  transition: all .3s;
}

.button-copy-copy-copy:hover {
  transform: translate(0, -3px);
}

.button-copy-copy-copy.in-navbar {
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: .9rem;
}

.collection-list-wrapper-15 {
  align-self: stretch;
}

.image-29 {
  height: 200px;
}

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

.heading-23 {
  margin-bottom: 0;
}

.heading-24 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
}

.feature-card-copy {
  background-color: var(--white);
  border: 2px solid #d8d8d8;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  padding: 20px;
  display: block;
  box-shadow: 0 1px 3px #0000001a;
}

.text-block-9 {
  color: var(--dim-grey);
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.3em;
  font-weight: 500;
}

._3-columns-grid-copy-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  place-items: stretch stretch;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0;
  display: grid;
}

._3-columns-grid-copy-copy.bottom-margin-80px {
  margin-bottom: 80px;
}

._3-columns-grid-copy-copy.bottom-margin {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 40px;
}

.text-block-10, .text-block-11, .text-block-12 {
  margin-left: 5px;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
}

.quick-stack-6 {
  align-self: auto;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.cell-21, .cell-22, .cell-23, .cell-24 {
  justify-content: center;
  align-items: center;
}

.bold-text-16 {
  display: inline-block;
}

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

.cell-25 {
  flex-direction: column;
  display: flex;
}

.heading-26 {
  display: none;
}

.text-span-7 {
  margin-left: auto;
  display: inline-block;
}

.nav-link-copy {
  color: var(--black);
  flex: none;
  padding: 12px 20px;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: all .2s;
}

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

.nav-link-copy.w--current {
  color: var(--all-links);
  text-decoration: none;
}

.nav-menu-copy {
  align-items: center;
  display: flex;
}

.navbar-copy {
  z-index: 1000;
  background-color: var(--white);
  width: 100%;
  display: none;
  position: sticky;
  inset: 0% 0% auto;
}

.waves---nav-cta {
  background-color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.waves---nav-buttons-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.waves---nav-link {
  object-fit: fill;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
}

.waves---dropdown-link {
  text-align: center;
}

.waves-dropdown-list.w--open {
  clear: none;
  aspect-ratio: auto;
  background-color: var(--waves-library--white);
  text-align: left;
  object-fit: fill;
  border: 1px solid #1313131a;
  border-radius: 4px;
  flex-flow: row;
  place-content: flex-start;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: fixed;
  inset: 10% 0% auto;
}

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

.waves-dropdown-toggle {
  grid-column-gap: 6px;
  justify-content: center;
  align-items: center;
  padding: 12px 8px 12px 16px;
  display: flex;
}

.waves---nav-menu {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: scroll;
}

.waves-right-nav-1 {
  grid-column-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.waves---brand {
  max-width: none;
  height: 100%;
}

.waves---nav-brand-link {
  height: auto;
}

.waves-master-nav-1 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  display: flex;
}

.waves---nav-container {
  max-width: 1440px;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.waves-navbar-1 {
  z-index: 105;
  background-color: var(--waves-library--white);
  border: 1px #000;
  padding-top: 15px;
  padding-bottom: 15px;
}

.walsh-button-hover-fill-3 {
  background-color: #000;
  border-radius: 100%;
  width: 5em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -100% auto auto -46%;
}

.walsh-icon-arrow-flip-3 {
  height: 12px;
}

.walsh-arrow-wrapper-3 {
  grid-row-gap: 0px;
  flex-direction: column;
  flex: none;
  align-items: center;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.walsh-label-button-3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
}

.walsh-button-label-wrapper-3 {
  z-index: 4;
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-orange-3 {
  color: #fff;
  text-align: center;
  background-color: #ff715b;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-3:hover {
  background-color: #ffbba6;
}

.walsh-flex-nav-buttons-2 {
  grid-column-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.walsh-nav-link-black-2 {
  color: var(--walsh--black);
  border-radius: 8px;
  padding: 15px 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.walsh-nav-link-black-2:hover {
  background-color: #dbdbdb59;
}

.walsh-nav-link-black-2.w--current {
  color: #6d6d6d;
  background-color: #dbdbdb59;
}

.walsh-dropdown-link-2 {
  color: #6b6b6b;
  border-radius: 2px;
  font-weight: 600;
}

.walsh-dropdown-link-2:hover {
  color: #ff8d86;
  background-color: #eee;
  border-radius: 3px;
}

.walsh-dropdown-list-2.w--open {
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding: 6px;
  box-shadow: 0 0 14px 5px #0000000d;
}

.walsh-icon-dropdown-2 {
  margin-right: 12px;
}

.walsh-toggle-black-2 {
  color: var(--walsh--black);
  border-radius: 8px;
  padding: 15px 32px 15px 18px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
}

.walsh-toggle-black-2:hover {
  background-color: #dbdbdb59;
}

.walsh-dropdown-2 {
  color: #fff;
}

.walsh-nav-menu-white-2 {
  grid-column-gap: 8px;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.walsh-nav-logo-2 {
  height: 32px;
}

.walsh-brand-block-2 {
  z-index: 2;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.walsh-inner-nav-2 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.walsh-inner-container-nav-float-2 {
  max-width: 1480px;
}

.walsh-main-nav-2 {
  background-color: #0000;
}

.walsh-float-menu-2 {
  background-color: #fff;
  border-radius: 6px;
  padding: 5px 20px;
}

.walsh-nav-wrapper-green-padding-2 {
  z-index: 10;
  background-color: #204f58;
  padding: 20px 30px;
  position: sticky;
  top: 0;
}

.div-block-11-copy {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  object-fit: none;
  flex-direction: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 65px;
  max-height: 65px;
  margin-bottom: 0;
  padding: 10px 0;
  display: flex;
  overflow: auto;
}

.btn_heating {
  color: var(--black);
  text-align: center;
  background-color: #fff;
  background-image: url('../images/menu-heating_1menu-heating.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto 30px;
  justify-content: center;
  align-items: center;
  padding: 35px 20px 0;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
}

.btn_cooling {
  color: var(--black);
  background-color: #fff;
  background-image: url('../images/menu-cooling_1menu-cooling.webp');
  background-position: 10%;
  background-repeat: no-repeat;
  background-size: 28px;
  align-items: center;
  height: 40px;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.btn_water {
  color: var(--black);
  background-color: #fff;
  background-image: url('../images/menu-wheating_1menu-wheating.webp');
  background-position: 10%;
  background-repeat: no-repeat;
  background-size: 20px;
  align-items: center;
  height: 40px;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.btn_c {
  color: var(--black);
  text-align: center;
  background-color: #fff;
  background-image: url('../images/menu-cooling_1menu-cooling.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto 30px;
  justify-content: center;
  align-items: center;
  padding: 35px 20px 0;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
}

.btn_w {
  color: var(--black);
  text-align: center;
  background-color: #fff;
  background-image: url('../images/menu-wheating_1menu-wheating.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto 30px;
  justify-content: center;
  align-items: center;
  padding: 35px 20px 0;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
}

.btn_wt {
  color: var(--black);
  text-align: center;
  background-color: #fff;
  background-image: url('../images/shopping-cart.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto 30px;
  border-left: 3px solid #e5e5e5;
  justify-content: center;
  align-items: center;
  padding: 35px 20px 0;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
}

.feature-card-copy {
  background-color: var(--white);
  background-image: linear-gradient(to top, #000, #fff0), url('../images/furnace-repair-service-replacement-installation.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.image-30 {
  margin-bottom: 10px;
  margin-right: 10px;
  display: inline-block;
  position: relative;
}

.heading-27 {
  font-family: Inter, sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
}

.link-3-copy {
  color: var(--black);
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.feature-card-copy-copy {
  background-color: var(--white);
  background-image: linear-gradient(to top, #000, #fff0), url('../images/Air-Conditioning-System-Ice-Forming-Issues-Image.jpg');
  background-position: 0 0, 30%;
  background-size: auto, cover;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-card-copy-copy-copy {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(to top, #000, #fff0), url('../images/Rinnai-RSC-tankless.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 500px;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-card-copy-copy-copy-copy {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(to top, #000, #fff0), url('../images/Heat-Pump-AC_iStock-1409343543-scaled.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 500px;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-card-copy-copy-copy-copy-copy {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(to top, #000, #fff0), url('../images/best-water-softeners-4158685-jay-wilde-b-7d26430a23dd4ec1a082315143bce41f.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 500px;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-card-copy-copy-copy-copy-copy-copy {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(to top, #000, #fff0), url('../images/bf-heat-humidity-blog-3.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 500px;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-card-copy-copy-copy-copy-copy-copy-copy {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(to top, #000, #fff0), url('../images/AC-Duct-Repair.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 500px;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-card-copy-copy-copy-copy-copy-copy-copy-copy {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(to top, #000, #fff0), url('../images/Ruby-3.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 500px;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(to top, #000, #fff0), url('../images/Raypak-Lifestyle.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 500px;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(to top, #000, #fff0), url('../images/hero_USA.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 500px;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(to top, #000, #fff0), url('../images/at_home-projects_2021-04_green-home-reno_shutterstock_1561073777.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 500px;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.button-copy-copy-copy-copy {
  background-color: var(--button);
  filter: brightness();
  color: var(--white);
  text-align: center;
  text-transform: none;
  border-radius: 3px;
  width: 100%;
  margin-top: 10px;
  margin-right: 10px;
  padding: 16px 28px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all .3s;
}

.button-copy-copy-copy-copy:hover {
  transform: translate(0, -3px);
}

.button-copy-copy-copy-copy.in-navbar {
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: .9rem;
}

.feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(to top, #000, #fff0), url('../images/generac-home-standby-generator.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 500px;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.card_gen {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 400px;
  min-width: 400px;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.div-block-18 {
  text-align: left;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  align-self: stretch;
  width: auto;
  padding: 20px;
}

.div_generator {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/generac-home-standby-generator.png');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.card_solar {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  margin-bottom: 0;
  padding: 0;
  display: block;
  box-shadow: 0 1px 3px #0000001a;
}

.div_solar {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/at_home-projects_2021-04_green-home-reno_shutterstock_1561073777.jpeg');
  background-position: 0 0, 100%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.card_smart {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  margin-bottom: 0;
  padding: 0;
  display: block;
  box-shadow: 0 1px 3px #0000001a;
}

.div_smart {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/hero_USA.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.div_pool {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/Raypak-Lifestyle.png');
  background-position: 0 0, 50% 90%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.div_fire {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/Ruby-3.jpg');
  background-position: 0 0, 50% 90%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.div_duct {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/AC-Duct-Repair.jpeg');
  background-position: 0 0, 50% 90%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.div_air {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/bf-heat-humidity-blog-3.jpg');
  background-position: 0 0, 50% 90%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.div_wf {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/best-water-softeners-4158685-jay-wilde-b-7d26430a23dd4ec1a082315143bce41f.jpg');
  background-position: 0 0, 50% 90%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.div_hp {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/197869073_4246717332056380_6616769112381473276_n.jpg');
  background-position: 0 0, 50% 10%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.div-block-19 {
  text-align: left;
  flex-direction: column;
  align-items: center;
  display: block;
}

.div_hw {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/Heat-Pump-AC_iStock-1409343543-scaled.jpg');
  background-position: 0 0, 50% 90%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.div_c {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/Air-Conditioning-System-Ice-Forming-Issues-Image.jpg');
  background-position: 0 0, 50% 10%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.div_h {
  background-image: linear-gradient(to top, #000, #fff0 33%), url('../images/furnace-repair-service-replacement-installation.png');
  background-position: 0 0, 50% 10%;
  background-size: auto, cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px;
}

.waves---heading-3-no-margins-copy {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.section-copy.grey {
  background-color: var(--white-smoke);
  display: none;
}

.section-copy {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-copy.footer {
  background-color: var(--black);
  color: var(--white);
  margin-top: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-copy._404 {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.section-copy.grey {
  background-color: var(--white-smoke);
}

.waves-gradient-hero-2 {
  z-index: 9;
  background-image: linear-gradient(#f8f8f8, #faebe300);
  height: 220px;
  position: absolute;
  inset: -1px 0% auto;
}

.waves-gradient-hero-2.bottom {
  background-image: linear-gradient(to top, #faebe3, #faebe300);
  inset: auto 0% -1px;
}

.waves-image-hero-2 {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 400px;
  display: inline-block;
}

.waves-image-wrap-hero-2 {
  border-radius: 12px;
  width: 100%;
  height: 410px;
  overflow: hidden;
}

.waves-item-gallery-hero-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.waves-inside-hero-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.waves-inside-hero-2.reverse {
  justify-content: flex-end;
}

.waves-column-hero-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: flex-start;
  width: 48%;
  display: flex;
}

.waves-gallery-hero-2 {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 550px;
  height: 750px;
  display: flex;
  position: static;
  overflow: hidden;
}

.waves---cta-dark-4 {
  background-color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark-4:hover {
  background-color: #131313e6;
}

.waves---cta-dark-4.wide-cta {
  justify-content: center;
  width: 100%;
  min-width: 200px;
}

.waves---mg-top-18 {
  margin-top: 16px;
}

.waves---subtitle-2 {
  font-size: 24px;
  line-height: 40px;
}

.waves---limit-481 {
  width: 100%;
}

.waves---mega-heading-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 100px;
  line-height: 115%;
}

.waves-content-hero-2 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.waves-grid-hero-2 {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.1fr 1fr;
}

.waves---main-container-5 {
  max-width: 1440px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-hero-primary-2 {
  padding-top: 0;
  padding-bottom: 0;
}

.waves---mega-heading-2-copy {
  color: var(--black);
  text-align: center;
  align-self: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  font-weight: 600;
  line-height: 115%;
}

.heading-28 {
  color: var(--black);
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.waves---nav-cta-2 {
  background-color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.waves---nav-buttons-right-2 {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.waves---nav-link-2 {
  padding: 12px 16px;
}

.waves---dropdown-link-2 {
  text-align: center;
}

.waves-dropdown-list-2.w--open {
  background-color: var(--waves-library--white);
  border: 1px solid #1313131a;
  border-radius: 4px;
}

.waves-icon-drodpdown-2 {
  width: 24px;
  height: 24px;
}

.waves-dropdown-toggle-2 {
  grid-column-gap: 6px;
  justify-content: center;
  align-items: center;
  padding: 12px 8px 12px 16px;
  display: flex;
}

.waves---nav-menu-2, .waves-right-nav-2 {
  grid-column-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.waves---brand-2 {
  max-width: none;
  height: 100%;
}

.waves-master-nav-2 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.waves---nav-container-2 {
  max-width: 1440px;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.waves-navbar-2 {
  z-index: 105;
  background-color: var(--waves-library--white);
  border-bottom: 1px solid #13131333;
  height: 80px;
}

.image-31 {
  width: 250px;
}

.waves-success-mesaage-3 {
  background-color: var(--waves-library--white);
  border-radius: 6px;
}

.waves-submit-wrap-contact-3 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves---checkbox-label-3 {
  font-size: 16px;
}

.waves---checkbox-3 {
  border-color: var(--waves-library--black);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  margin-right: 6px;
}

.waves---checkbox-field-3 {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.waves-select-background-3 {
  border: 1px solid var(--waves-library--black);
  background-color: var(--white);
  color: var(--waves-library--black);
  border-radius: 8px;
  height: 52px;
  margin: 0;
  font-size: 16px;
}

.waves-select-background-3:focus {
  border-color: var(--waves-library--black);
}

.waves---input-wrap-3 {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.waves-text-field-background-3 {
  border: 1px solid var(--waves-library--black);
  background-color: var(--white);
  color: var(--waves-library--black);
  border-radius: 8px;
  height: 52px;
  margin: 0;
  font-size: 16px;
}

.waves-text-field-background-3:focus {
  border-color: var(--waves-library--black);
  color: var(--waves-library--black);
}

.waves---2-inputs-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.waves---form-contact-3 {
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.waves-form-block-contact-3 {
  width: 100%;
  max-width: 540px;
  margin-top: 40px;
}

.waves---paragraph-big-4 {
  font-size: 20px;
  line-height: 130%;
}

.waves---heading-2-no-margins-4 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves---center-heading-4 {
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  display: flex;
}

.waves-master-contact-3 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves---section-medium-4 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.waves---paragraph-small {
  font-size: 16px;
  line-height: 130%;
}

.waves---check-icon {
  filter: invert();
  width: 24px;
  height: 24px;
}

.waves---single-check-item {
  grid-column-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.waves---master-checks-horizontal {
  grid-column-gap: 24px;
  align-items: center;
  display: flex;
}

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

.waves---cta-white {
  background-color: var(--waves-library--white);
  color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.waves---cta-white.wide-cta {
  min-width: 200px;
}

.waves---mg-top-33 {
  margin-top: 16px;
}

.waves---heading-2-no-margins-5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves-content-cta-2 {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves-master-cta-2 {
  background-color: var(--waves-library--black);
  color: var(--waves-library--white);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 40px;
  display: flex;
}

.waves-master-logos-2 {
  grid-column-gap: 80px;
  grid-row-gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 950px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.waves-image-gallery-3 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.waves-small-image-wrap-gallery-3 {
  border-radius: 8px;
  height: 70%;
  position: relative;
  overflow: hidden;
}

.waves-big-image-wrap-gallery-3 {
  border-radius: 8px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.waves-medium-image-wrap-gallery-3 {
  border-radius: 8px;
  height: 80%;
  position: relative;
  overflow: hidden;
}

.waves-bottom-gird-gallery-3 {
  grid-template-rows: auto;
  grid-template-columns: .9fr .8fr 1.2fr .7fr;
  width: 120vw;
  height: 39vh;
  margin-bottom: 0;
}

.waves-top-grid-gallery-3 {
  grid-template-rows: auto;
  grid-template-columns: .7fr 1.2fr .8fr .9fr;
  width: 120vw;
  height: 39vh;
  margin-bottom: 16px;
}

.waves-master-gallery-3 {
  height: auto;
  position: sticky;
  top: 10vh;
  overflow: hidden;
}

.waves---section-medium-5 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.div-block-20 {
  align-items: center;
  margin-bottom: 100px;
  display: flex;
}

.container-4 {
  max-width: 1000px;
}

.waves-image-cta-4 {
  filter: contrast(200%);
  border-radius: 24px;
  width: 70%;
  max-width: none;
  padding-right: 0;
}

.waves---cta-outline-white {
  border: 1px solid var(--waves-library--white);
  color: var(--waves-library--white);
  background-color: #13131300;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.waves---cta-outline-white.medium-wide-cta {
  min-width: 150px;
}

.waves---cta-white-2 {
  background-color: var(--waves-library--white);
  color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.waves---cta-white-2.medium-wide-cta {
  min-width: 150px;
}

.waves---2-cta-flex {
  grid-column-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.waves---mg-top-34 {
  margin-top: 16px;
}

.waves---paragraph-big-5 {
  font-size: 20px;
  line-height: 130%;
}

.waves---heading-2-no-margins-6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves---content-image-halves {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 520px;
  display: flex;
}

.waves---grid-cta-3 {
  grid-column-gap: 80px;
  grid-template-rows: auto;
}

.waves-master-cta-4 {
  background-color: var(--waves-library--black);
  color: var(--waves-library--white);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 120px;
  display: flex;
}

.waves---main-container-6 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---cta-dark-5 {
  background-color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark-5:hover {
  background-color: #131313e6;
}

.waves---cta-dark-5.wide-cta {
  min-width: 200px;
}

.waves---mg-top-35 {
  margin-top: 16px;
}

.waves---paragraph-big-6 {
  font-size: 18px;
  line-height: 130%;
}

.waves---heading-2-no-margins-7 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 48px;
  line-height: 130%;
}

.waves---content-image-halves-2 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 520px;
  display: flex;
}

.waves-image-features-3 {
  border-radius: 24px;
  width: 100%;
}

.waves---grid-image-halves {
  grid-column-gap: 40px;
  grid-template-rows: auto;
}

.waves---main-container-7 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-6 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.waves-image-hero-3 {
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 100%;
}

.waves-master-image-hero-3 {
  text-align: center;
  height: 100%;
  padding-left: 16px;
  padding-right: 16px;
  text-decoration: none;
}

.waves---subtitle-3 {
  margin-bottom: 19px;
  font-size: 24px;
  line-height: 40px;
}

.waves---heading-1-no-margins {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 72px;
  line-height: 120%;
  display: flex;
}

.waves-content-hero-3 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 544px;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 56px;
  display: flex;
}

.waves-hero-3-grid {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  align-items: start;
}

.waves---section-hero-primary-3 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.waves---paragraph-small-2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.waves---check-icon-2 {
  width: 24px;
  height: 24px;
}

.waves---single-check-item-2 {
  grid-column-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.waves---master-checks-horizontal-2 {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.waves---mg-top-36 {
  margin-top: 32px;
}

.waves---cta-white-3 {
  background-color: var(--waves-library--white);
  color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.waves---cta-white-3.wide-cta {
  min-width: 200px;
}

.waves---mg-top-37 {
  margin-top: 16px;
}

.waves-content-cta-3 {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves-master-cta-5 {
  background-color: var(--waves-library--black);
  color: var(--waves-library--white);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 40px;
  display: flex;
}

.waves---heading-3-no-margins-2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
}

.waves-name-wrap-testimonial-3 {
  grid-row-gap: 8px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.waves-tile-testimonial-3 {
  grid-row-gap: 32px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  display: flex;
}

.waves-grid-testimonials-3 {
  grid-column-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 64px;
}

.waves---center-heading-5 {
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.quick-stack-9 {
  align-self: auto;
  min-width: 1000px;
  margin-top: 50px;
}

.div-block-21 {
  text-align: center;
  align-self: center;
}

.heading-30 {
  text-align: center;
  margin-bottom: 0;
}

.cell-27 {
  border: 4px #c8c8c8;
  border-radius: 20px;
  justify-content: center;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}

.cell-28, .cell-29, .cell-30, .cell-31, .cell-32, .cell-33, .cell-34 {
  align-items: stretch;
}

.star-icon-copy {
  flex: none;
  width: 30px;
  height: 30px;
}

.waves-icon-65 {
  width: 45px;
  height: 45px;
}

.waves---mg-bottom-17 {
  margin-bottom: 16px;
}

.waves-tile-feature-1 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 0;
  display: flex;
}

.waves-grid-features-1 {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.waves---heading-2-no-margins-8 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves---sides-heading-button {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.waves---mg-bottom-100 {
  margin-bottom: 100px;
}

.p_link {
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.div-block-22 {
  align-self: stretch;
}

.text-block-13 {
  margin-bottom: 20px;
}

.div-block-23 {
  background-color: #000;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  padding: 10px;
  display: flex;
}

.image-32 {
  filter: invert();
  max-width: 85%;
}

.waves-hero-3-grid-copy {
  grid-column-gap: 40px;
  grid-column-gap: 40px;
  grid-template-rows: auto;
  align-items: center;
  max-height: 500px;
  padding-top: 0;
}

.waves---paragraph-big-7 {
  font-size: 20px;
  line-height: 130%;
}

.waves---heading-3-no-margins-3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.waves-name-wrap-testimonial-1 {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.waves-image-testimonial-1 {
  object-fit: cover;
  border-radius: 50%;
  width: 72px;
  height: 72px;
}

.wrap-person-testimonial-1 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves---testimonial-text-big {
  font-size: 32px;
  line-height: 130%;
}

.waves-logo-testimonial-1 {
  height: 34px;
}

.waves-master-testimonial-1 {
  grid-row-gap: 40px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.waves---main-container-8 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-7 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.div-block-24 {
  align-self: stretch;
}

.walsh-button-hover-fill-4 {
  background-color: #000;
  border-radius: 100%;
  width: 5em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -100% auto auto -46%;
}

.walsh-icon-arrow-flip-4 {
  height: 12px;
}

.walsh-arrow-wrapper-4 {
  grid-row-gap: 0px;
  flex-direction: column;
  flex: none;
  align-items: center;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.walsh-label-button-4 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
}

.walsh-button-label-wrapper-4 {
  z-index: 4;
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-orange-4 {
  color: #fff;
  text-align: center;
  background-color: #02b77b;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-4:hover {
  background-color: #ffbba6;
}

.walsh-flex-nav-buttons-3 {
  grid-column-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.walsh-nav-link-black-3 {
  color: var(--walsh--black);
  border-radius: 8px;
  padding: 15px 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.walsh-nav-link-black-3:hover {
  background-color: #dbdbdb59;
}

.walsh-nav-link-black-3.w--current {
  color: #6d6d6d;
  background-color: #dbdbdb59;
}

.walsh-dropdown-link-3 {
  color: #6b6b6b;
  border-radius: 2px;
  font-weight: 600;
}

.walsh-dropdown-link-3:hover {
  color: #ff8d86;
  background-color: #eee;
  border-radius: 3px;
}

.walsh-dropdown-list-3.w--open {
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding: 6px;
  box-shadow: 0 0 14px 5px #0000000d;
}

.walsh-icon-dropdown-3 {
  margin-right: 12px;
}

.walsh-toggle-black-3 {
  color: var(--walsh--black);
  border-radius: 8px;
  padding: 15px 32px 15px 18px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
}

.walsh-toggle-black-3:hover {
  background-color: #dbdbdb59;
}

.walsh-dropdown-3 {
  color: #fff;
}

.walsh-nav-menu-white-3 {
  grid-column-gap: 8px;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.walsh-nav-logo-3 {
  flex: none;
  max-width: none;
  height: auto;
}

.walsh-brand-block-3 {
  z-index: 2;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.walsh-inner-nav-3 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.walsh-inner-container-nav-float-3 {
  max-width: 1480px;
}

.walsh-main-nav-3 {
  background-color: #0000;
}

.walsh-float-menu-3 {
  background-color: #fff;
  border-radius: 6px;
  padding: 5px 0;
}

.walsh-nav-wrapper-green-padding-3 {
  z-index: 10;
  background-color: #fff;
  flex: 0 auto;
  padding: 0 30px;
  position: sticky;
  top: 0;
}

.walsh-cover-image-2 {
  object-fit: cover;
  flex: 1;
  width: 100%;
  height: 100%;
}

.walsh-hero-frame-square {
  border-radius: 10px;
  flex: none;
  width: 100%;
  max-width: 22em;
  display: flex;
  overflow: hidden;
}

.walsh-inner-rail-bottom {
  grid-column-gap: 1em;
  flex: none;
  display: flex;
}

.walsh-hero-rail {
  grid-column-gap: 1em;
  width: 100%;
  height: 20em;
  display: flex;
}

.walsh-inner-rail-top {
  grid-column-gap: 1em;
  flex: none;
  display: flex;
}

.walsh-hero-sub-bg {
  grid-row-gap: 1em;
  background-color: var(--walsh--walsh-mid-green);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 75vh;
  min-height: 75vh;
  display: flex;
  overflow: hidden;
}

.walsh-button-label-white-w {
  z-index: 4;
  grid-column-gap: 8px;
  color: #fff;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-white {
  color: #000;
  padding-top: 5px;
  padding-bottom: 5px;
  text-decoration: none;
  transition: box-shadow .2s cubic-bezier(.645, .045, .355, 1);
  box-shadow: inset 0 -3px #ffffff1a;
}

.walsh-link-block-white:hover {
  color: #444;
  box-shadow: inset 0 -3px #b0eab9;
}

.walsh-hero-div-block-2 {
  grid-column-gap: 1.25em;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.walsh-paragraph-serif-left-hero {
  color: #fffc;
  max-width: 22em;
  margin-bottom: .75em;
  font-family: Inter, sans-serif;
  font-size: 1.4em;
  line-height: 1.6;
}

.walsh-text-burst {
  color: #b0ebb9;
  background-image: url('../images/scribble-burst.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto 38%;
  padding-bottom: .2em;
  padding-right: .1em;
  display: inline-block;
}

.walsh-text-lightgreen {
  color: #b0ebb9;
}

.walsh-heading-xlarge-white {
  color: #fff;
  letter-spacing: -.02em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 6.65em;
  font-weight: 700;
  line-height: 1;
}

.walsh-left-hero-content {
  grid-row-gap: 1.25em;
  color: #fff;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-top: 2em;
  padding-bottom: 2em;
  padding-right: 3em;
  display: flex;
}

.walsh-container-hero {
  z-index: 5;
  width: 100%;
  max-width: 1480px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.walsh-main-grid-no-gap {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  position: relative;
}

.walsh-background-darkgreen {
  background-color: var(--walsh--walsh-dark-green);
  flex: 0 auto;
  position: relative;
}

.walsh-icon-arrow-2 {
  height: 12px;
  margin-top: 2px;
  margin-left: 10px;
}

.walsh-link-wrapper-2 {
  color: #000000d9;
  white-space: nowrap;
  border-bottom: 1px dashed #c5c5c5;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.walsh-link-wrapper-2:hover {
  color: #575555d9;
  padding-right: 0;
}

.walsh-main-paragraph-2 {
  color: #0009;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 1.45em;
  line-height: 1.5;
}

.walsh-heading-medium-2 {
  color: var(--walsh--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.1;
}

.walsh-label-tag-2 {
  color: #0009;
  text-align: left;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.walsh-inner-card-bottom {
  grid-row-gap: 1.2em;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 5em;
  padding-left: 0;
  padding-right: 3em;
  display: flex;
}

.walsh-contain-image {
  object-fit: contain;
  height: 100%;
}

.walsh-rounded-float-image {
  background-color: var(--walsh--azure);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  margin-bottom: 2rem;
  padding: 4em 35px;
  display: flex;
  overflow: hidden;
}

.walsh-card-image-float {
  justify-content: center;
  align-self: center;
  align-items: flex-end;
  width: 100%;
  height: auto;
  padding-top: 3em;
  padding-left: 3em;
  padding-right: 3em;
  display: flex;
  overflow: hidden;
}

.walsh-rounded-card {
  grid-row-gap: 3em;
  background-color: #fff;
  border-radius: 15px;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  overflow: hidden;
}

.walsh-main-grid-2 {
  grid-column-gap: 2.2em;
  grid-row-gap: 2.2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  display: flex;
  position: relative;
}

.walsh-container-3 {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.walsh-icon-arrow-flip-5 {
  height: 12px;
}

.walsh-arrow-wrapper-5 {
  grid-row-gap: 0px;
  flex-direction: column;
  flex: none;
  align-items: center;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.walsh-label-button-5 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
}

.walsh-button-label-wrapper-5 {
  z-index: 4;
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-outline {
  color: #000;
  border: .15em solid #00000026;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-outline:hover {
  color: #000;
  background-color: #dbffe0;
}

.walsh-button-hover-fill-5 {
  background-color: #000;
  border-radius: 100%;
  width: 5em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -100% auto auto -46%;
}

.walsh-link-block-orange-5 {
  color: #fff;
  text-align: center;
  background-color: #ff715b;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-5:hover {
  background-color: #ffbba6;
}

.walsh-cta-v-wrapper-2 {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.walsh-paragraph {
  color: #161616ad;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 1.6em;
  line-height: 1.4;
}

.walsh-heading-medium-3 {
  color: var(--walsh--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.1;
}

.walsh-content-wrapper-gap-2 {
  grid-row-gap: 1.25em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.walsh-main-grid-3 {
  grid-column-gap: 2.2em;
  grid-row-gap: 2.2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  position: relative;
}

.walsh-cta-block-light-green {
  background-color: #d3f6c1;
  border-radius: 8px;
  width: 100%;
  padding: 5.5em;
  position: relative;
  overflow: hidden;
}

.walsh-container-4 {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
}

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

.walsh-inner-rounded-banner-image {
  grid-row-gap: 1.5em;
  text-align: left;
  flex-direction: column;
  flex: none;
  align-items: flex-start;
  max-width: 50%;
  min-height: 45em;
  display: flex;
}

.walsh-icon-arrow-3 {
  height: 12px;
  margin-top: 2px;
  margin-left: 10px;
}

.walsh-link-wrapper-3 {
  color: #000000d9;
  white-space: nowrap;
  border-bottom: 1px dashed #c5c5c5;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.walsh-link-wrapper-3:hover {
  color: #575555d9;
  padding-right: 0;
}

.walsh-link-block-green {
  background-color: var(--walsh--walsh-light-green);
  color: #000;
  text-align: center;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-green:hover {
  color: #000;
  background-color: #ffbba6;
}

.walsh-hero-div-block-3 {
  grid-column-gap: 1.25em;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.walsh-main-paragraph-3 {
  color: #0009;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 1.45em;
  font-weight: 400;
  line-height: 1.5;
}

.walsh-inner-rounded-banner {
  grid-row-gap: 1.5em;
  text-align: left;
  flex-direction: column;
  flex: 1;
  align-self: center;
  align-items: flex-start;
  height: 100%;
  padding: 6em;
  display: flex;
}

.walsh-rounded-box-banner {
  grid-row-gap: 1em;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.text-span-8, .text-span-9 {
  color: #214f58;
}

.walsh-ui-image-medium {
  object-fit: contain;
  width: 100%;
  max-width: 40em;
  max-height: 45em;
}

.walsh-card-wrapper-image-medium {
  justify-content: center;
  align-self: center;
  align-items: flex-end;
  width: 100%;
  height: 35em;
  display: flex;
  overflow: hidden;
}

.walsh-heading-large-2 {
  color: var(--walsh--black);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 4em;
  font-weight: 700;
  line-height: 1;
}

.walsh-icon-small {
  height: 32px;
}

.walsh-icon-wrapper-circle {
  background-color: var(--walsh--light-goldenrod-yellow);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.walsh-inner-card {
  grid-row-gap: 2em;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 4em;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
}

.walsh-rounded-card-2 {
  grid-row-gap: 3em;
  background-color: #fff;
  border-radius: 15px;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  overflow: hidden;
}

.walsh-button-orange {
  z-index: 5;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #ff715b;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 1.2em 35px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
}

.walsh-button-orange:hover {
  color: #fff;
  background-color: #ffa286;
}

.walsh-center-h-wrapper {
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.walsh-icon-check {
  height: 9px;
}

.walsh-circle-check {
  background-color: #93ff4133;
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: flex;
}

.walsh-list-flex {
  color: #000000a6;
  text-align: left;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  display: flex;
}

.walsh-list-wrapper {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.walsh-text-small {
  color: #00000080;
  margin-bottom: 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.walsh-price-small {
  color: #00000073;
  padding-left: 2px;
  padding-right: 2px;
  font-size: 32px;
  font-weight: 400;
}

.walsh-price {
  color: var(--walsh--black);
  margin-bottom: 0;
  padding-top: .18em;
  padding-bottom: .18em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 5em;
  font-weight: 700;
  line-height: .8;
}

.walsh-heading-small-alt {
  color: #0009;
  border: 1px solid #00000026;
  border-radius: 100px;
  padding: 10px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.25;
}

.walsh-price-wrapper {
  grid-row-gap: .6em;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.walsh-pricing-card-block {
  grid-row-gap: 2.5em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3em;
  display: flex;
  box-shadow: inset 1px 1px #d3d3d3, 1px 1px #d3d3d3;
}

.walsh-circle-check-off {
  opacity: .35;
  background-color: #b0b2b247;
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: flex;
}

.walsh-list-flex-off {
  color: #9191918a;
  text-align: left;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  text-decoration: line-through;
  display: flex;
}

.walsh-text-block {
  color: #fff;
  background-color: #92cc92;
  border-radius: 20px;
  padding: 7px 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.walsh-pricing-div-top {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: -18px auto auto 0%;
}

.walsh-main-grid-no-gap-2 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  position: relative;
}

.walsh-main-paragraph-4 {
  color: #0009;
  text-align: left;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 1.45em;
  line-height: 1.5;
}

.walsh-heading-regular {
  color: var(--walsh--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2;
}

.walsh-inner-card-bottom-2 {
  grid-row-gap: 1.2em;
  flex-direction: column;
  align-items: flex-start;
  padding: 1em;
  display: flex;
}

.walsh-card-wrapper-image {
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: 100%;
  height: 25em;
  display: flex;
  overflow: hidden;
}

.walsh-cover-image-4 {
  object-fit: cover;
  flex: 1;
  width: 100%;
  height: 100%;
}

.walsh-hero-frame-square-2 {
  border-radius: 10px;
  flex: none;
  width: 100%;
  max-width: 22em;
  display: flex;
  overflow: hidden;
}

.walsh-inner-rail-bottom-2 {
  grid-column-gap: 1em;
  flex: none;
  display: flex;
}

.walsh-hero-rail-2 {
  grid-column-gap: 1em;
  width: 100%;
  height: 20em;
  display: flex;
}

.walsh-inner-rail-top-2 {
  grid-column-gap: 1em;
  flex: none;
  display: flex;
}

.walsh-hero-sub-bg-2 {
  grid-row-gap: 1em;
  background-color: var(--walsh--walsh-mid-green);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 75vh;
  display: flex;
  overflow: hidden;
}

.walsh-icon-arrow-flip-6 {
  height: 12px;
}

.walsh-arrow-wrapper-6 {
  grid-row-gap: 0px;
  flex-direction: column;
  flex: none;
  align-items: center;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.walsh-label-button-6 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
}

.walsh-button-label-white-w-2 {
  z-index: 4;
  grid-column-gap: 8px;
  color: #fff;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-white-2 {
  color: #000;
  padding-top: 5px;
  padding-bottom: 5px;
  text-decoration: none;
  transition: box-shadow .2s cubic-bezier(.645, .045, .355, 1);
  box-shadow: inset 0 -3px #ffffff1a;
}

.walsh-link-block-white-2:hover {
  color: #444;
  box-shadow: inset 0 -3px #b0eab9;
}

.walsh-button-hover-fill-6 {
  background-color: #000;
  border-radius: 100%;
  width: 5em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -100% auto auto -46%;
}

.walsh-button-label-wrapper-6 {
  z-index: 4;
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-orange-6 {
  color: #fff;
  text-align: center;
  background-color: #02b77b;
  border-radius: 50px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-6:hover {
  background-color: #ffbba6;
}

.walsh-hero-div-block-4 {
  grid-column-gap: 1.25em;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.walsh-paragraph-serif-left-hero-2 {
  color: #fffc;
  max-width: 22em;
  margin-bottom: .75em;
  font-family: Inter, sans-serif;
  font-size: 1.4em;
  line-height: 1.6;
}

.walsh-text-burst-2 {
  color: #02b77b;
  -webkit-text-stroke-color: #02b77b;
  background-image: url('../images/scribble-burst.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto 38%;
  padding-bottom: .2em;
  padding-right: .1em;
  display: inline-block;
}

.walsh-text-lightgreen-2 {
  color: #b0ebb9;
}

.walsh-heading-xlarge-white-2 {
  color: #fff;
  letter-spacing: -.02em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 5em;
  font-weight: 700;
  line-height: 1;
}

.walsh-left-hero-content-2 {
  grid-row-gap: 1.25em;
  color: #fff;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 3em;
  display: flex;
}

.walsh-container-hero-2 {
  z-index: 5;
  width: 100%;
  max-width: 1480px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.walsh-main-grid-no-gap-3 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.walsh-background-darkgreen-2 {
  background-color: var(--walsh--walsh-dark-green);
  position: relative;
}

.walsh-container-4-copy {
  z-index: 2;
  background-color: #f4f4f4;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 20px;
  position: relative;
}

.walsh-button {
  z-index: 5;
  background-color: var(--walsh--walsh-light-green);
  color: var(--walsh--black);
  text-align: center;
  white-space: nowrap;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 1.2em 35px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
}

.walsh-button:hover {
  color: #fff;
  background-color: #79a315;
}

.walsh-center-h-wrapper-2 {
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.walsh-icon-check-2 {
  height: 9px;
}

.walsh-circle-check-2 {
  background-color: #93ff4133;
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: flex;
}

.walsh-list-flex-2 {
  color: #000000a6;
  text-align: left;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  display: flex;
}

.walsh-list-wrapper-2 {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.walsh-text-small-2 {
  color: #00000080;
  margin-bottom: 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.walsh-price-small-2 {
  color: #00000073;
  padding-left: 2px;
  padding-right: 2px;
  font-size: 32px;
  font-weight: 400;
}

.walsh-price-2 {
  color: var(--walsh--black);
  margin-bottom: 0;
  padding-top: .18em;
  padding-bottom: .18em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 5em;
  font-weight: 700;
  line-height: .8;
}

.walsh-heading-small-alt-2 {
  color: #0009;
  border: 1px solid #00000026;
  border-radius: 100px;
  padding: 10px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.25;
}

.walsh-price-wrapper-2 {
  grid-row-gap: .6em;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.walsh-pricing-inner-card {
  grid-row-gap: 2.5em;
  background-color: #fff;
  border-radius: 15px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 3em;
  display: flex;
  position: relative;
}

.walsh-circle-check-off-2 {
  opacity: .35;
  background-color: #b0b2b247;
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: flex;
}

.walsh-list-flex-off-2 {
  color: #9191918a;
  text-align: left;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  text-decoration: line-through;
  display: flex;
}

.walsh-text-block-purple {
  color: #fff;
  background-color: #a271ff;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
}

.walsh-pricing-div-top-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: -18px auto auto 0%;
}

.walsh-pricing-inner-card-featured {
  grid-row-gap: 2.5em;
  background-color: #fff;
  border: 2px solid #89ce65;
  border-radius: 15px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3em;
  display: flex;
  position: relative;
}

.walsh-main-grid-4 {
  grid-column-gap: 2.2em;
  grid-row-gap: 2.2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  position: relative;
}

.walsh-inner-tab-content {
  padding-top: 34px;
  padding-bottom: 34px;
}

.walsh-tabs-content-wrapper {
  width: 100%;
}

.walsh-tab-rounded {
  color: #a3a3a3;
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.walsh-tab-rounded:hover {
  color: #6d6d6d;
}

.walsh-tab-rounded.w--current {
  color: #2c5c5d;
  background-color: #d2f7d5;
  border-radius: 100px;
}

.walsh-tab-menu {
  background-color: #fff;
  border-radius: 200px;
  justify-content: center;
  padding: 10px;
  display: flex;
  overflow: hidden;
}

.walsh-tabs-content {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.features {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.walsh-ui-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  max-height: none;
}

.walsh-hero-inner-float-image {
  background-color: var(--walsh--azure);
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 44em;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 20px;
  display: flex;
}

.walsh-icon-arrow-4 {
  height: 12px;
  margin-top: 2px;
  margin-left: 10px;
}

.walsh-link-wrapper-4 {
  color: #000000d9;
  white-space: nowrap;
  border-bottom: 1px dashed #c5c5c5;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.walsh-link-wrapper-4:hover {
  color: #575555d9;
  padding-right: 0;
}

.walsh-link-block-orange-7 {
  color: #fff;
  text-align: center;
  background-color: #02b77b;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-7:hover {
  background-color: #ffbba6;
}

.walsh-main-paragraph-5 {
  color: #0009;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 1.45em;
  line-height: 1.5;
}

.walsh-hero-p-wrapper-2 {
  width: 100%;
  max-width: 36em;
}

.walsh-heading-large-3 {
  color: var(--walsh--walsh-dark-green);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1;
}

.walsh-content-wrap {
  grid-row-gap: 2em;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 42em;
  padding-top: 6em;
  padding-bottom: 6em;
  display: flex;
}

.walsh-flex-horizontal-2 {
  grid-column-gap: 4em;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  display: flex;
}

.walsh-rounded-container {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.walsh-rounded-block-2 {
  background-color: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.walsh-rounded-wrapper {
  grid-column-gap: 20px;
  justify-content: center;
  display: flex;
}

.walsh-link-block-orange-8 {
  color: #fff;
  text-align: center;
  background-color: #ff715b;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-8:hover {
  background-color: #ffbba6;
}

.walsh-main-paragraph-6 {
  color: #0009;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 1.45em;
  line-height: 1.5;
}

.walsh-heading-large-4 {
  color: var(--walsh--black);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 4.8em;
  font-weight: 700;
  line-height: 1;
}

.walsh-main-paragraph-7 {
  color: #0009;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 1.45em;
  line-height: 1.5;
}

.walsh-heading-regular-2 {
  color: var(--walsh--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2;
}

.walsh-inner-card-bottom-3 {
  grid-row-gap: 1.2em;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 5em;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
}

.walsh-card-wrapper-image-2 {
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: 100%;
  height: 25em;
  display: flex;
  overflow: hidden;
}

.walsh-rounded-card-3 {
  grid-row-gap: 3em;
  background-color: #fff;
  border-radius: 15px;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  overflow: hidden;
}

.star-icon-yellow {
  filter: grayscale();
  flex: none;
  width: 30px;
  height: 30px;
}

.image-33 {
  width: 30px;
  height: 30px;
}

.walsh-inner-float-image {
  background-color: #cfc2c2;
  border-top-left-radius: 45px;
  width: 100%;
  height: 100%;
}

.walsh-padding-image-hero {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.walsh-icon-arrow-flip-7 {
  height: 12px;
}

.walsh-arrow-wrapper-7 {
  grid-row-gap: 0px;
  flex-direction: column;
  flex: none;
  align-items: center;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.walsh-label-button-7 {
  flex: none;
  font-family: Inter, sans-serif;
  font-size: 1.2em;
}

.walsh-button-label-white-w-3 {
  z-index: 4;
  grid-column-gap: 8px;
  color: #fff;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-white-3 {
  color: #000;
  padding-top: 5px;
  padding-bottom: 5px;
  text-decoration: none;
  transition: box-shadow .2s cubic-bezier(.645, .045, .355, 1);
  box-shadow: inset 0 -3px #ffffff1a;
}

.walsh-link-block-white-3:hover {
  color: #444;
  box-shadow: inset 0 -3px #b0eab9;
}

.walsh-button-hover-fill-7 {
  background-color: #000;
  border-radius: 100%;
  width: 5em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -100% auto auto -46%;
}

.walsh-button-label-wrapper-7 {
  z-index: 4;
  grid-column-gap: 8px;
  text-align: right;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-orange-9 {
  background-color: var(--button);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  height: 70px;
  padding: 20px 32px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-9:hover {
  background-color: var(--walsh--walsh-mid-green);
}

.walsh-hero-div-block-5 {
  grid-column-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.walsh-paragraph-serif-left-hero-3 {
  color: #fffc;
  max-width: 22em;
  margin-bottom: .75em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.45em;
  line-height: 1.6;
}

.walsh-hero-p-wrapper-3 {
  width: 100%;
  max-width: 36em;
}

.walsh-text-marker {
  color: #fff;
  background-image: url('../images/span-marker.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  padding: .05em .1em;
  display: inline-block;
}

.walsh-heading-xlarge-white-3 {
  color: #fff;
  letter-spacing: -.02em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 6.5em;
  font-weight: 700;
  line-height: 1;
}

.walsh-left-hero {
  grid-row-gap: 2em;
  color: #fff;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
}

.walsh-main-grid-no-gap-4 {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
}

.walsh-container-6 {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.walsh-background-darkgreen-3 {
  background-color: var(--walsh--walsh-dark-green);
  background-image: url('../images/bg-green.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
}

.walsh-form-error {
  color: #8a0a0a;
  background-color: #f76969;
  border-radius: 4px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.walsh-form-success {
  color: #313d17;
  background-color: #c4f85c;
}

.walsh-button-circle-small {
  background-color: #ff715b;
  background-image: url('../images/icon-arrow-right-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 12px;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
}

.walsh-button-circle-small:hover {
  background-color: #ffdd79;
}

.walsh-button-circle-wrapper-white {
  background-color: #fff;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.walsh-text-field-single {
  border: 1px solid #fff;
  border-radius: 100px 0 0 100px;
  width: 100%;
  min-width: auto;
  height: auto;
  min-height: 65px;
  margin-bottom: 0;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  box-shadow: inset 1px 1px #fff;
}

.walsh-form-single {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.walsh-full-form {
  width: 100%;
  margin-bottom: 0;
}

.walsh-form-wrapper {
  width: 100%;
}

.walsh-paragraph-small-2 {
  color: #161616ad;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 1.08em;
  line-height: 1.6;
}

.walsh-content-wrapper-gap-3 {
  grid-row-gap: 1.25em;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
  display: flex;
  position: relative;
}

.walsh-icon-check-3 {
  height: 20px;
}

.walsh-circle-check-3 {
  background-color: #93ff4133;
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: flex;
}

.walsh-list-flex-3 {
  color: #000000a6;
  text-align: left;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  display: flex;
}

.walsh-list-wrapper-3 {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.walsh-grid-col-2 {
  grid-column-gap: 3em;
  grid-template-rows: auto;
  width: 100%;
}

.walsh-paragraph-2 {
  color: #161616ad;
  text-align: left;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.4;
}

.walsh-heading-medium-4 {
  color: var(--walsh--walsh-dark-green);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.1;
}

.walsh-label-tag-3 {
  color: #0009;
  text-align: left;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.walsh-tag-2 {
  text-align: left;
  background-color: #51aa761a;
  border-radius: 200px;
  align-items: center;
  padding: 7px 20px;
  display: flex;
  overflow: hidden;
}

.walsh-main-grid-5 {
  grid-column-gap: 2.2em;
  grid-row-gap: 2.2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  position: relative;
}

.walsh-cta-block-light-green-2 {
  background-color: #f5f5f5;
  border-radius: 8px;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 2em;
  position: relative;
  overflow: hidden;
}

.walsh-container-7 {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.quick-stack-10 {
  margin-bottom: 20px;
  padding: 0;
}

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

.image-34 {
  object-fit: cover;
  border-radius: 16px;
  flex: 1;
}

.walsh-menu-button {
  color: #fff;
}

.walsh-button-hover-fill-8 {
  background-color: #000;
  border-radius: 100%;
  width: 5em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -100% auto auto -46%;
}

.walsh-icon-arrow-flip-8 {
  height: 12px;
}

.walsh-arrow-wrapper-8 {
  grid-row-gap: 0px;
  flex-direction: column;
  flex: none;
  align-items: center;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.walsh-label-button-8 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
  font-weight: 600;
}

.walsh-button-label-wrapper-8 {
  z-index: 4;
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-orange-10 {
  background-color: var(--button);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-self: auto;
  align-items: center;
  padding: 20px 32px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-10:hover {
  background-color: #ffbba6;
}

.walsh-link-block-transparent-1 {
  border: 2px solid var(--button);
  box-shadow: inset 1px -1px 0 0 var(--walsh--walsh-mid-green), inset -1px 1px 0 0 var(--walsh--walsh-mid-green), inset -1px -1px 0 0 var(--walsh--walsh-mid-green), inset 1px 1px 0 0 var(--walsh--walsh-mid-green);
  color: var(--button);
  text-align: center;
  background-color: #0000;
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-self: auto;
  align-items: center;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-transparent-1:hover {
  box-shadow: none;
  color: var(--walsh--walsh-dark-green-2);
  background-color: #fff;
}

.walsh-flex-nav-buttons-4 {
  grid-column-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.walsh-nav-link-white {
  color: #333;
  border-radius: 8px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.walsh-nav-link-white:hover {
  background-color: #00000059;
}

.walsh-nav-grid-center {
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1.75fr;
  width: 100%;
}

.walsh-nav-menu-green-left {
  grid-column-gap: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  display: flex;
}

.walsh-nav-logo-4 {
  height: 32px;
}

.walsh-brand-block-4 {
  z-index: 2;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.walsh-nav-grid-2 {
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr .5fr;
  width: 100%;
}

.walsh-inner-nav-4 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.walsh-container-nav {
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
}

.walsh-main-nav-4 {
  background-color: #0000;
}

.walsh-nav-wrapper-green {
  z-index: 10;
  background-color: #fff;
  position: sticky;
  top: 0;
}

.walsh-cover-image-5 {
  object-fit: cover;
  flex: 1;
  width: 100%;
  height: 100%;
}

.walsh-inner-rounded-banner-image-2 {
  grid-row-gap: 1.5em;
  text-align: left;
  flex-direction: column;
  flex: none;
  align-items: flex-start;
  max-width: 50%;
  min-height: 45em;
  display: flex;
}

.walsh-icon-arrow-5 {
  height: 12px;
  margin-top: 2px;
  margin-left: 10px;
}

.walsh-link-wrapper-5 {
  color: #000000d9;
  white-space: nowrap;
  border-bottom: 1px dashed #c5c5c5;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.walsh-link-wrapper-5:hover {
  color: #575555d9;
  padding-right: 0;
}

.walsh-link-block-green-2 {
  background-color: var(--walsh--walsh-light-green);
  color: #000;
  text-align: center;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-green-2:hover {
  color: #000;
  background-color: #ffbba6;
}

.walsh-hero-div-block-6 {
  grid-column-gap: 1.25em;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.walsh-main-paragraph-8 {
  color: #0009;
  letter-spacing: 0;
  font-family: Merriweather, serif;
  font-size: 1.45em;
  line-height: 1.5;
}

.walsh-inner-rounded-banner-2 {
  grid-row-gap: 1.5em;
  text-align: left;
  flex-direction: column;
  flex: 1;
  align-self: center;
  align-items: flex-start;
  height: 100%;
  padding: 6em;
  display: flex;
}

.walsh-rounded-box-banner-2 {
  grid-row-gap: 1em;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.walsh-button-hover-fill-9 {
  background-color: #000;
  border-radius: 100%;
  width: 5em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -100% auto auto -46%;
}

.walsh-icon-arrow-flip-9 {
  height: 12px;
}

.walsh-arrow-wrapper-9 {
  grid-row-gap: 0px;
  flex-direction: column;
  flex: none;
  align-items: center;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.walsh-label-button-9 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
  font-weight: 600;
}

.walsh-button-label-wrapper-9 {
  z-index: 4;
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-orange-11 {
  background-color: var(--button);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-11:hover {
  background-color: var(--walsh--walsh-dark-green-2);
}

.walsh-flex-nav-buttons-5 {
  grid-column-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.walsh-nav-link-black-4 {
  color: var(--walsh--black);
  background-image: linear-gradient(#dbdbdb59, #dbdbdb59), url('../images/phone.png');
  background-position: 0 0, 6%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 26px;
  border-radius: 50px;
  flex-flow: column;
  padding: 15px 18px 15px 45px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.walsh-nav-link-black-4:hover {
  background-color: #dbdbdb59;
}

.walsh-nav-link-black-4.w--current {
  color: #6d6d6d;
  background-color: #dbdbdb59;
}

.walsh-dropdown-link-4 {
  color: #6b6b6b;
  border-radius: 2px;
  font-weight: 600;
}

.walsh-dropdown-link-4:hover {
  color: #ff8d86;
  background-color: #eee;
  border-radius: 3px;
}

.walsh-dropdown-list-4.w--open {
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding: 6px;
  box-shadow: 0 0 14px 5px #0000000d;
}

.walsh-icon-dropdown-4 {
  margin-right: 12px;
}

.walsh-toggle-black-4 {
  color: var(--walsh--black);
  border-radius: 8px;
  padding: 15px 32px 15px 18px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
}

.walsh-toggle-black-4:hover {
  background-color: #dbdbdb59;
}

.walsh-dropdown-4 {
  color: #fff;
}

.walsh-nav-menu-white-4 {
  grid-column-gap: 8px;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.walsh-nav-logo-5 {
  height: 32px;
}

.walsh-brand-block-5 {
  z-index: 2;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.walsh-inner-nav-5 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.walsh-inner-container-nav-float-4 {
  max-width: 1480px;
}

.walsh-main-nav-5 {
  background-color: #0000;
}

.walsh-float-menu-4 {
  background-color: #fff;
  border-radius: 6px;
  padding: 5px 20px;
}

.walsh-nav-wrapper-green-padding-4 {
  z-index: 10;
  background-color: #204f58;
  padding: 20px 30px;
  position: sticky;
  top: 0;
}

.text-block-15 {
  font-weight: 600;
}

.walsh-icon-arrow-6 {
  height: 12px;
  margin-top: 2px;
  margin-left: 10px;
}

.walsh-link-wrapper-6 {
  color: #000000d9;
  white-space: nowrap;
  border-bottom: 1px dashed #c5c5c5;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.walsh-link-wrapper-6:hover {
  color: #575555d9;
  padding-right: 0;
}

.walsh-heading-medium-5 {
  color: var(--walsh--walsh-dark-green);
  text-align: left;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.1;
}

.walsh-inner-wrap {
  grid-row-gap: 0em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.walsh-icon-small-2 {
  height: 32px;
}

.walsh-icon-wrapper-circle-large {
  background-color: var(--walsh--light-goldenrod-yellow);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  display: flex;
}

.walsh-rounded-box-center-large {
  grid-row-gap: 2em;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  flex-direction: column;
  flex: 1;
  align-self: stretch;
  align-items: center;
  padding: 2em 20px;
  display: block;
}

.walsh-main-grid-6 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  position: relative;
}

.walsh-container-8 {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.div-block-25 {
  margin-top: 10px;
  margin-bottom: 0;
}

.walsh-label-button-7-copy {
  color: #333;
  font-family: Inter, sans-serif;
  font-size: 1.2em;
  font-weight: 600;
}

.walsh-form-error-2 {
  color: #8a0a0a;
  background-color: #f76969;
  border-radius: 4px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.walsh-form-success-rounded {
  color: #313d17;
  background-color: #c4f85c;
  border-radius: 35px;
}

.walsh-text-small-white {
  color: #fffc;
  margin-bottom: 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.walsh-button-light-green {
  z-index: 5;
  background-color: var(--button);
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  padding: 1.2em 35px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
}

.walsh-button-light-green:hover {
  background-color: var(--walsh--walsh-mid-green);
  color: #fff;
}

.walsh-text-field-auto {
  color: #333;
  border: 1px solid #fff;
  border-radius: 6px;
  width: 100%;
  min-width: auto;
  height: auto;
  min-height: 65px;
  margin-bottom: 20px;
  margin-right: 15px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 20px;
  font-size: 18px;
  box-shadow: inset 1px 1px #fff;
}

.walsh-form-single-row {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 25px;
  display: block;
}

.walsh-form-block {
  color: #fff;
  flex: 1;
  width: 100%;
  margin-bottom: 0;
}

.walsh-paragraph-serif-left-hero-4 {
  color: #fffc;
  margin-bottom: .75em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.4em;
  line-height: 1.6;
}

.walsh-light-text-burst {
  color: var(--button);
  padding-bottom: .15em;
  padding-right: .2em;
  display: inline-block;
}

.walsh-heading-xlarge-white-4 {
  color: #fff;
  letter-spacing: -.02em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 5em;
  font-weight: 700;
  line-height: 1;
}

.walsh-center-wrapper-gap {
  grid-row-gap: 1.5em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.walsh-cta-center-wrapper {
  grid-row-gap: 3em;
  color: #2c5c5d;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.walsh-container-padding-large {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding: 4em 4.5em;
  position: relative;
}

.walsh-cta-green-wrapper {
  background-color: var(--walsh--walsh-dark-green);
}

.quick-stack-12 {
  align-self: stretch;
  padding: 0;
}

.walsh-icon-social {
  max-height: 18px;
}

.walsh-footer-link-social {
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
}

.walsh-footer-grid-social {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  place-items: center start;
}

.walsh-footer-inner {
  grid-column-gap: 20px;
  display: flex;
}

.walsh-footer-legal-text {
  color: #6e6e6e;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 13px;
}

.walsh-footer-line-divider {
  background-color: #cacaca;
  width: 100%;
  height: 1px;
}

.walsh-footer-link {
  color: #0000008a;
  margin-top: 3px;
  margin-bottom: 3px;
  padding-bottom: 4px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
}

.walsh-footer-link:hover {
  color: #000;
  box-shadow: inset 0 -2px #c7dbdb;
}

.walsh-footer-list {
  grid-row-gap: .8em;
  flex-direction: column;
  display: flex;
}

.walsh-heading-small {
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.25;
}

.walsh-footer-wrapper {
  grid-row-gap: 1em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.walsh-main-grid-no-gap-5 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  position: relative;
}

.walsh-form-success-2 {
  color: #313d17;
  background-color: #c4f85c;
}

.walsh-button-circle-small-2 {
  background-color: #ff715b;
  background-image: url('../images/icon-arrow-right-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 12px;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
}

.walsh-button-circle-small-2:hover {
  background-color: #ffdd79;
}

.walsh-button-circle-wrapper-grey {
  background-color: #eee;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.walsh-text-field-single-grey {
  background-color: #eee;
  border: 1px solid #eee;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  width: 100%;
  min-width: auto;
  height: auto;
  min-height: 65px;
  margin-bottom: 0;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 25px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
}

.walsh-form-single-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.walsh-full-form-2 {
  width: 100%;
  margin-bottom: 0;
}

.walsh-form-wrapper-2 {
  width: 100%;
}

.walsh-main-paragraph-9 {
  color: #0009;
  letter-spacing: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.45em;
  line-height: 1.5;
}

.walsh-logo-footer {
  max-height: 32px;
  margin-bottom: 0;
}

.walsh-content-wrapper-gap-4 {
  grid-row-gap: 1.25em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.walsh-content-wrapper-white {
  background-color: #fff;
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
}

.image-36 {
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 15px;
  align-self: stretch;
  height: 300px;
  margin-bottom: 10px;
  position: static;
}

.image-36-copy {
  aspect-ratio: auto;
  object-fit: cover;
  aspect-ratio: auto;
  object-fit: cover;
  aspect-ratio: auto;
  object-fit: cover;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 15px;
  align-self: stretch;
  height: 200px;
  margin-bottom: 10px;
  position: static;
}

.image-37 {
  border-radius: 16px;
  display: block;
}

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

.text-block-16 {
  font-size: 18px;
  font-weight: 600;
}

.quick-stack-14 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-self: stretch;
}

.cell-36 {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
}

.quick-stack-15 {
  align-self: stretch;
  padding: 0;
}

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

.heading-31 {
  color: var(--black-charcoal);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 2em;
  font-weight: 700;
}

.background-video {
  border: 6px none var(--button);
  object-fit: cover;
  border-radius: 16px;
  height: 650px;
  padding-left: 20px;
}

.div-block-26 {
  background-image: url('../images/toronto-city-map-graphic-art-print-poster-in-tones.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 16px;
  flex: 1;
  height: 400px;
}

.text-block-17, .text-block-18, .text-block-19 {
  text-align: left;
}

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

.image-38 {
  flex: none;
  align-self: auto;
  max-width: none;
  height: auto;
  margin-bottom: 0;
  display: block;
}

.heading-32 {
  color: #feb91c;
}

.image-39 {
  object-fit: cover;
  border-radius: 16px;
  align-self: stretch;
  height: 250px;
}

.bold-text-18 {
  text-align: center;
  font-size: 15px;
  display: block;
}

.walsh-container-4-copy {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
}

.walsh-container01 {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 20px 2rem;
  position: relative;
}

.walsh-link-block-orange-9-copy {
  background-color: var(--button);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-hero-div-block-5-copy {
  grid-column-gap: 1.5em;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.walsh-ui-image-medium-2 {
  object-fit: contain;
  width: 100%;
  max-width: 40em;
  max-height: 45em;
}

.walsh-card-wrapper-image-medium-2 {
  justify-content: center;
  align-self: center;
  align-items: flex-end;
  width: 100%;
  height: 35em;
  display: flex;
  overflow: hidden;
}

.walsh-icon-arrow-7 {
  height: 12px;
  margin-top: 2px;
  margin-left: 10px;
}

.walsh-link-wrapper-7 {
  color: #000000d9;
  white-space: nowrap;
  border-bottom: 1px dashed #c5c5c5;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.walsh-link-wrapper-7:hover {
  color: #575555d9;
  padding-right: 0;
}

.walsh-main-paragraph-10 {
  color: #0009;
  letter-spacing: 0;
  font-family: Merriweather, serif;
  font-size: 1.45em;
  line-height: 1.5;
}

.walsh-heading-large-5 {
  color: var(--walsh--black);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 4.8em;
  font-weight: 700;
  line-height: 1;
}

.walsh-icon-small-3 {
  height: 32px;
}

.walsh-icon-wrapper-circle-2 {
  background-color: var(--walsh--light-goldenrod-yellow);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.walsh-inner-card-2 {
  grid-row-gap: 2em;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 4em;
  padding-left: 2em;
  padding-right: 4em;
  display: flex;
}

.walsh-rounded-card-4 {
  grid-row-gap: 3em;
  background-color: #fff;
  border-radius: 15px;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  overflow: hidden;
}

.walsh-main-grid-7 {
  grid-column-gap: 2.2em;
  grid-row-gap: 2.2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  position: relative;
}

.walsh-container-9 {
  z-index: 2;
  flex: none;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.walsh-cta-block-light-green-2-copy {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  margin-top: 4em;
  margin-bottom: 4em;
  padding: 2em;
  position: relative;
  overflow: hidden;
}

.heading-32-copy {
  color: #d20707;
  -webkit-text-stroke-color: #fe1c1c;
  font-size: 2rem;
}

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

.div-block-28 {
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  height: 75px;
  max-height: 75px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.waves---nav-cta-3 {
  background-color: var(--button);
  border-radius: 50px;
  flex: none;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.waves---nav-buttons-right-3 {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.waves---nav-link-3 {
  flex: none;
  padding: 12px 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 600;
}

.waves---dropdown-link-3 {
  text-align: center;
}

.waves-dropdown-list-3.w--open {
  background-color: var(--waves-library--white);
  border: 1px solid #1313131a;
  border-radius: 4px;
}

.waves-icon-drodpdown-3 {
  width: 24px;
  height: 24px;
}

.waves-dropdown-toggle-3 {
  grid-column-gap: 6px;
  justify-content: center;
  align-items: center;
  padding: 12px 8px 12px 16px;
  display: flex;
}

.waves---nav-menu-3, .waves-right-nav-4 {
  grid-column-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.waves---brand-3 {
  max-width: none;
  height: 100%;
}

.waves-master-nav-4 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.waves---nav-container-3 {
  max-width: 1440px;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.waves-navbar-4 {
  background-color: var(--waves-library--white);
  border-bottom: 1px solid #13131333;
  height: 80px;
}

.waves-divider-nav-4 {
  background-color: #1313130d;
  border-radius: 5px;
  width: 100%;
  height: 1px;
}

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

.waves-right-top-nav-4 {
  grid-column-gap: 24px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.waves---paragraph-small-3 {
  font-size: 16px;
  line-height: 130%;
}

.waves---icon-text-vertical {
  grid-column-gap: 8px;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.waves-left-top-nav-4 {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.waves-inside-top-nav-4 {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.waves-master-top-navbar-4 {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

.waves-wrapper-navbar-4 {
  z-index: 102;
  background-color: var(--waves-library--white);
  flex-direction: column;
  display: block;
  position: relative;
}

.rebates {
  background-color: #f5f5f5;
  border-radius: 8px;
  width: 100%;
  margin-top: 0;
  margin-bottom: 1em;
  padding: 2em;
  position: relative;
  overflow: hidden;
}

.insulation, .hvac, .windows {
  background-color: #f5f5f5;
  border-radius: 8px;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 2em;
  position: relative;
  overflow: hidden;
}

.text-block-20 {
  flex: none;
}

.cell-37, .cell-38 {
  justify-content: center;
  align-items: flex-start;
}

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

.select-field-3 {
  color: #999;
  border-radius: 6px;
  min-height: 65px;
  padding-right: 18px;
  font-size: 18px;
}

.image-40 {
  width: 60px;
  margin-bottom: 2rem;
}

.services {
  background-color: #f5f5f5;
  border-radius: 8px;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 2em;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-green-outline {
  border: 4px solid var(--button);
  color: var(--button);
  text-align: center;
  background-color: #fff0;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  height: 70px;
  padding: 20px 32px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-green-outline:hover {
  border-color: var(--walsh--walsh-mid-green);
  background-color: var(--walsh--walsh-mid-green);
  color: var(--white);
}

.walsh-link-block-green-outline-head {
  border: 4px solid var(--button);
  color: var(--white);
  text-align: center;
  background-color: #fff0;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  height: 70px;
  padding: 20px 32px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-green-outline-head:hover {
  border-color: var(--walsh--walsh-mid-green);
  background-color: var(--walsh--walsh-mid-green);
  color: var(--white);
}

.walsh-menu-button-2 {
  color: #fff;
}

.walsh-button-hover-fill-10 {
  background-color: #000;
  border-radius: 100%;
  width: 5em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -100% auto auto -46%;
}

.walsh-icon-arrow-flip-10 {
  height: 12px;
}

.walsh-arrow-wrapper-10 {
  grid-row-gap: 0px;
  flex-direction: column;
  flex: none;
  align-items: center;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.walsh-label-button-10 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
}

.walsh-button-label-wrapper-10 {
  z-index: 4;
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-link-block-orange-12 {
  color: #fff;
  text-align: center;
  background-color: #ff715b;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-12:hover {
  background-color: #ffbba6;
}

.walsh-link-block-transparent-1-2 {
  box-shadow: inset 1px -1px 0 0 var(--walsh--walsh-mid-green), inset -1px 1px 0 0 var(--walsh--walsh-mid-green), inset -1px -1px 0 0 var(--walsh--walsh-mid-green), inset 1px 1px 0 0 var(--walsh--walsh-mid-green);
  color: #fff;
  text-align: center;
  background-color: #0000;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-transparent-1-2:hover {
  box-shadow: none;
  color: var(--walsh--walsh-dark-green-2);
  background-color: #fff;
}

.walsh-flex-nav-buttons-6 {
  grid-column-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.walsh-dropdown-link-5 {
  color: #6b6b6b;
  border-radius: 2px;
  font-weight: 600;
}

.walsh-dropdown-link-5:hover {
  color: #ff8d86;
  background-color: #eee;
  border-radius: 3px;
}

.walsh-dropdown-list-5.w--open {
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding: 6px;
  display: block;
  box-shadow: 0 0 14px 5px #0000000d;
}

.walsh-icon-dropdown-5 {
  margin-right: 12px;
}

.walsh-toggle {
  color: #fff;
  border-radius: 8px;
  padding-left: 18px;
  padding-right: 32px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
}

.walsh-toggle:hover {
  background-color: #00000059;
}

.walsh-dropdown-5 {
  color: #fff;
}

.walsh-nav-link-white-2 {
  color: #fff;
  border-radius: 8px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.walsh-nav-link-white-2:hover {
  background-color: #00000059;
}

.walsh-nav-menu-green-left-2 {
  grid-column-gap: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  display: flex;
}

.walsh-nav-logo-6 {
  height: 32px;
}

.walsh-brand-block-6 {
  z-index: 2;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.walsh-inner-nav-6 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.walsh-container-nav-2 {
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
}

.walsh-main-nav-6 {
  background-color: #0000;
}

.walsh-nav-wrapper-green-2 {
  z-index: 10;
  background-color: #204f58;
  position: sticky;
  top: 0;
}

.image-41 {
  border-radius: 20px;
}

.uui-navbar04_menu-button {
  padding: 0;
}

.uui-button {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui--primary600);
  background-color: var(--untitled-ui--primary600);
  color: var(--untitled-ui--white);
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button:hover {
  border-color: var(--untitled-ui--primary700);
  background-color: var(--untitled-ui--primary700);
}

.uui-button:focus {
  background-color: var(--untitled-ui--primary600);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--primary100);
}

.uui-button-tertiary-gray {
  grid-column-gap: .5rem;
  color: var(--untitled-ui--gray600);
  white-space: nowrap;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.uui-button-tertiary-gray:hover {
  background-color: var(--untitled-ui--gray50);
  color: var(--untitled-ui--gray700);
}

.uui-button-secondary-gray {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui--gray300);
  background-color: var(--untitled-ui--white);
  color: var(--untitled-ui--gray700);
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button-secondary-gray:hover {
  background-color: var(--untitled-ui--gray50);
  color: var(--untitled-ui--gray800);
}

.uui-button-secondary-gray:focus {
  background-color: var(--untitled-ui--white);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--gray100);
}

.uui-button-secondary-gray.show-tablet, .show-tablet {
  display: none;
}

.uui-navbar04_button-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  display: flex;
}

.uui-navbar04_menu-right {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.uui-navbar04_link {
  color: var(--white);
  align-items: center;
  padding: 1.75rem 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s;
}

.uui-navbar04_link:hover {
  color: var(--walsh--light-goldenrod-yellow);
}

.uui-navbar04_link.w--current {
  color: #000;
}

.uui-navbar04_dropdown-right-overlay-absolute {
  background-color: var(--untitled-ui--gray50);
  min-width: 100vw;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.uui-button-link-gray {
  grid-column-gap: .5rem;
  color: var(--untitled-ui--gray600);
  white-space: nowrap;
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.uui-button-link-gray:hover {
  color: var(--untitled-ui--gray700);
}

.uui-navbar04_heading {
  color: var(--button);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: .25rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: .875rem;
  font-weight: 600;
}

.uui-navbar04_heading.margin-bottom-0 {
  margin-bottom: 0;
}

.uui-navbar04_dropdown-content-wrapper {
  z-index: 1;
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: min-content;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.uui-navbar04_dropdown-content-right {
  flex: 1;
  max-width: 14rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  display: flex;
  position: relative;
}

.uui-text-size-small {
  color: var(--untitled-ui--gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: .875rem;
  line-height: 1.5;
}

.uui-badge-small-success {
  grid-column-gap: .25rem;
  background-color: var(--untitled-ui--success50);
  color: var(--untitled-ui--success700);
  white-space: nowrap;
  mix-blend-mode: multiply;
  border-radius: 10rem;
  align-items: center;
  padding: .125rem .5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  display: flex;
}

.uui-navbar04_item-heading {
  color: var(--untitled-ui--gray900);
  margin-bottom: .25rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 600;
}

.uui-navbar04_item-heading.margin-bottom-0 {
  margin-bottom: 0;
}

.uui-navbar04_text-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: 0px;
  align-items: center;
  margin-bottom: .25rem;
  display: flex;
}

.uui-navbar04_item-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-weight: 400;
  display: flex;
}

.uui-icon-1x1-xsmall {
  color: var(--button);
  -webkit-text-stroke-color: var(--button);
  width: 1.5rem;
  height: 1.5rem;
}

.uui-navbar04_icon-holder {
  color: var(--untitled-ui--primary600);
  flex: none;
}

.uui-navbar04_dropdown-link {
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  border-radius: .5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding: .75rem;
  text-decoration: none;
  transition: all .3s;
  display: grid;
}

.uui-navbar04_dropdown-link:hover {
  background-color: var(--untitled-ui--gray50);
}

.uui-navbar04_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: .5rem;
  grid-template-rows: max-content max-content max-content max-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.uui-navbar04_dropdown-content-left {
  grid-column-gap: 2rem;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 2rem 2rem 2rem 0;
  display: grid;
}

.uui-navbar04_dropdown-content {
  width: 100%;
  display: flex;
}

.uui-navbar04_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1480px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.uui-navbar04_dropdown-list {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #10182808;
}

.uui-navbar04_dropdown-list.w--open {
  background-color: #fff;
  width: 100vw;
  min-width: 100vw;
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  position: absolute;
  inset: 6rem auto auto 0%;
  overflow: hidden;
}

.uui-dropdown-icon {
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 1rem;
  display: flex;
  position: absolute;
  inset: auto 0% auto auto;
}

.uui-navbar04_dropdown-toggle {
  color: var(--white);
  align-items: center;
  padding: 1.75rem 2.5rem 1.75rem 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.uui-navbar04_dropdown-toggle:hover {
  color: var(--walsh--light-goldenrod-yellow);
}

.uui-navbar04_menu-dropdown {
  position: static;
}

.uui-navbar04_menu {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 1.5rem;
  display: flex;
  position: static;
}

.uui-logo_image {
  flex: none;
  width: auto;
  height: 100%;
  display: none;
}

.uui-logo_logotype {
  flex: none;
  width: auto;
  height: 100%;
}

.uui-logo_logomark-dot {
  z-index: 1;
  background-image: linear-gradient(26.5deg, #6941c6, #53389e);
  border-radius: 50%;
  width: 50%;
  height: 50%;
  position: relative;
}

.uui-logo_logomark-blur {
  z-index: 2;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #fff3;
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem;
  width: 100%;
  height: 50%;
  position: absolute;
  inset: 50% 0% 0%;
  overflow: hidden;
}

.uui-styleguide_logomark-bg {
  border-radius: 8px;
  width: 2rem;
  height: 2rem;
  position: absolute;
  inset: 0%;
}

.uui-logo_logomark {
  border: .1px solid #dae0e8;
  border-radius: .5rem;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 1px #1018280f, 0 1px 2px #1018281a;
}

.uui-logo_component {
  flex-wrap: nowrap;
  width: auto;
  height: 3.5rem;
  display: flex;
}

.uui-navbar04_logo-link {
  padding-left: 0;
}

.uui-navbar04_component {
  border-bottom: 1px none var(--untitled-ui--gray100);
  background-color: var(--walsh--walsh-dark-green);
  align-items: center;
  min-height: 5rem;
  padding: 10px 2rem;
  display: flex;
}

.walsh-link-block-green-outline-head-copy {
  border: 4px solid var(--button);
  color: var(--white);
  text-align: center;
  background-color: #fff0;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  height: 60px;
  padding: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-green-outline-head-copy:hover {
  border-color: var(--walsh--walsh-mid-green);
  background-color: var(--walsh--walsh-mid-green);
  color: var(--white);
}

.walsh-link-block-orange-9-copy {
  background-color: var(--button);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  height: 60px;
  padding: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-9-copy:hover {
  background-color: var(--walsh--walsh-mid-green);
}

.uui-cta03_image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.uui-cta03_image-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.uui-text-style-link {
  color: var(--untitled-ui--gray600);
  text-decoration: underline;
  transition: color .3s;
}

.uui-text-style-link:hover {
  color: var(--untitled-ui--gray700);
}

.uui-form_input {
  border: 1px solid var(--untitled-ui--gray300);
  background-color: var(--untitled-ui--white);
  color: var(--untitled-ui--gray900);
  border-radius: .5rem;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .875rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  transition: all .3s;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-form_input:focus {
  border-color: var(--untitled-ui--primary300);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--primary100);
  color: var(--untitled-ui--gray900);
}

.uui-form_input::placeholder {
  color: var(--untitled-ui--gray500);
}

.uui-signup-form_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: .375rem;
  display: grid;
}

.uui-cta03_form {
  max-width: 30rem;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.uui-text-size-large {
  color: var(--untitled-ui--gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.uui-space-small {
  width: 100%;
  min-height: 1.5rem;
}

.uui-heading-large {
  color: var(--untitled-ui--gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.uui-cta03_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.uui-padding-vertical-xhuge {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

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

.uui-page-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.uui-section_cta03 {
  background-color: var(--untitled-ui--white);
}

.spark-hero-section-image {
  border-radius: 8px;
  flex: 0 auto;
  width: 45%;
  max-width: 50%;
  display: block;
}

.spark-button {
  border: 1px solid var(--spark-library--foreground-interactive);
  background-color: var(--spark-library--foreground-interactive);
  color: var(--spark-library--white);
  border-radius: 8px;
  flex: none;
  padding: 16px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: border-color .15s, background-color .15s, opacity .15s;
}

.spark-button:hover {
  border-color: var(--spark-library--foreground-interactive-hover);
  background-color: var(--spark-library--foreground-interactive-hover);
  opacity: 1;
}

.spark-button.spark-dark-button {
  border-style: solid;
  border-color: var(--spark-library--foreground-interactive-hover);
  background-color: var(--spark-library--foreground-interactive-hover);
}

.spark-button.spark-dark-button:hover {
  opacity: .5;
}

.spark-input {
  border: 1px solid var(--spark-library--border-default);
  background-color: var(--spark-library--white);
  border-radius: 8px;
  height: 48px;
  margin-bottom: 32px;
  padding: 8px 16px;
  font-size: 1rem;
}

.spark-input:focus {
  border-color: var(--spark-library--foreground-interactive);
}

.spark-input::placeholder {
  color: var(--spark-library--foreground-tertiary);
}

.spark-input.spark-with-a-inner-shadow {
  box-shadow: inset 0 0 0 1px var(--spark-library--border-default);
  width: 342px;
  max-width: 100%;
  margin-bottom: 0;
  transition: box-shadow .15s;
}

.spark-input.spark-with-a-inner-shadow:hover, .spark-input.spark-with-a-inner-shadow:focus {
  box-shadow: inset 0 0 0 1px var(--spark-library--foreground-interactive-hover);
}

.spark-field-label {
  text-align: left;
}

.spark-flexed-form {
  grid-column-gap: 16px;
  align-items: flex-end;
  display: flex;
}

.spark-hero-sub-paragraph {
  width: 100%;
  margin-bottom: 64px;
}

.spark-hero-section-left-side {
  width: 50%;
}

.spark-flex-row {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.spark-flex-row.spark-5-spacing {
  grid-column-gap: 5%;
  align-items: center;
}

.spark-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.spark-container.spark-primary-with-rounded-corners {
  background-color: var(--walsh--walsh-dark-green);
  color: var(--spark-library--white);
  border-radius: 24px;
  padding: 64px;
}

.spark-line-3 {
  z-index: 2;
  background-color: var(--spark-library--black);
  width: 35px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
}

.spark-line-3.spark-simple-line {
  background-color: var(--spark-library--foreground-interactive);
  border-radius: 3px;
  width: 12.75px;
  height: 3.3px;
  margin-left: 18px;
  top: 38px;
}

.spark-line-2 {
  z-index: 1;
  background-color: var(--spark-library--black);
  width: 35px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
}

.spark-line-2.spark-simple-line {
  background-color: var(--spark-library--foreground-interactive);
  border-radius: 3px;
  width: 24px;
  height: 3.3px;
  top: 28px;
}

.spark-line-1 {
  z-index: 2;
  background-color: var(--spark-library--black);
  width: 35px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
}

.spark-line-1.spark-simple-line {
  background-color: var(--spark-library--foreground-interactive);
  border-radius: 3px;
  width: 24px;
  height: 3.3px;
  top: 18px;
}

.spark-simple-menu-button {
  background-color: #fff;
  width: 60px;
  height: 60px;
  padding: 0 0 0 18px;
  overflow: hidden;
}

.spark-simple-menu-button.w--open {
  background-color: var(--spark-library--background--interactive);
  border-radius: 8px;
}

.spark-nav-link {
  color: var(--spark-library--black);
  text-align: center;
  border-radius: 8px;
  margin-left: 8px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color .15s, color .15s, opacity .15s;
}

.spark-nav-link:hover {
  background-color: var(--spark-library--background--interactive);
  opacity: 1;
  color: var(--spark-library--foreground-interactive);
}

.spark-nav-link.w--current {
  color: var(--spark-library--foreground-interactive);
}

.spark-nav-link.spark-button {
  background-color: var(--spark-library--foreground-interactive);
  color: var(--spark-library--white);
  text-align: center;
  border-style: none;
  border-radius: 999px;
  margin-right: 0;
  padding: 16px 24px;
  font-size: 1rem;
  line-height: 1em;
  transition: background-color .15s, opacity .15s;
}

.spark-nav-link.spark-button:hover {
  background-color: var(--spark-library--foreground-interactive-hover);
  opacity: 1;
  color: var(--spark-library--white);
}

.spark-nav-link.spark-button.w--current {
  opacity: .5;
  color: var(--spark-library--white);
}

.spark-nav-menu {
  align-items: center;
  display: flex;
}

.spark-brand-logo {
  z-index: 2;
  padding-left: 0;
}

.spark-square-menu-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.spark-square-menu-with-links {
  background-color: var(--spark-library--white);
  width: 100%;
  padding-left: 64px;
  padding-right: 64px;
  position: absolute;
  inset: 0% 0% auto;
}

.spark-section {
  width: 100%;
  padding: 176px 64px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  position: relative;
}

.spark-section h5 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.spark-section h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
}

.spark-section h2 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.spark-section h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section h6 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.5;
}

.spark-section ul {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding-left: 14px;
}

.spark-section li {
  margin-bottom: .5rem;
}

.walsh-icon-arrow-flip-11 {
  height: 12px;
}

.walsh-link-block-orange-13 {
  color: #fff;
  text-align: center;
  background-color: #ff715b;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.walsh-link-block-orange-13:hover {
  background-color: #ffbba6;
}

.walsh-button-label-wrapper-11 {
  z-index: 4;
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: relative;
}

.walsh-button-hover-fill-11 {
  background-color: #000;
  border-radius: 100%;
  width: 5em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -100% auto auto -46%;
}

.walsh-label-button-11 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2em;
}

.walsh-arrow-wrapper-11 {
  grid-row-gap: 0px;
  flex-direction: column;
  flex: none;
  align-items: center;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.walsh-container-nav-3 {
  max-width: 1480px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.walsh-main-nav-7 {
  background-color: #0000;
}

.walsh-brand-block-7 {
  z-index: 2;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.walsh-nav-logo-7 {
  flex: 0 auto;
  height: auto;
}

.walsh-inner-nav-7 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.walsh-nav-menu-green {
  grid-column-gap: 8px;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.walsh-nav-link-white-3 {
  color: #fff;
  border-radius: 8px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.walsh-nav-link-white-3:hover {
  background-color: #00000059;
}

.walsh-nav-wrapper-green-3 {
  z-index: 10;
  background-color: #293042;
  position: sticky;
  top: 0;
}

.walsh-dropdown-6 {
  color: #fff;
}

.walsh-toggle-2 {
  color: #fff;
  border-radius: 8px;
  padding-left: 18px;
  padding-right: 32px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
}

.walsh-toggle-2:hover {
  background-color: #00000059;
}

.walsh-dropdown-list-6.w--open {
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding: 6px;
  box-shadow: 0 0 14px 5px #0000000d;
}

.walsh-dropdown-link-6 {
  color: #6b6b6b;
  border-radius: 2px;
  font-weight: 600;
}

.walsh-dropdown-link-6:hover {
  color: #ff8d86;
  background-color: #eee;
  border-radius: 3px;
}

.walsh-flex-nav-buttons-7 {
  grid-column-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.walsh-menu-button-3 {
  color: #fff;
}

.walsh-icon-dropdown-6 {
  margin-right: 12px;
}

.waves---section-hero-primary-4 {
  padding-top: 0;
  padding-bottom: 0;
}

.waves-grid-hero-3 {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.1fr 1fr;
}

.waves---mega-heading-3 {
  color: var(--walsh--walsh-dark-green);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 75px;
  font-weight: 800;
  line-height: 115%;
}

.waves-content-hero-4 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.waves---subtitle-4 {
  font-size: 24px;
  line-height: 40px;
}

.waves---limit-482 {
  width: 100%;
  max-width: 480px;
}

.waves---mg-top-38 {
  margin-top: 16px;
}

.waves---cta-dark-6 {
  background-color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark-6:hover {
  background-color: #131313e6;
}

.waves---cta-dark-6.wide-cta {
  min-width: 200px;
}

.waves-image-wrap-hero-3 {
  border-radius: 12px;
  width: 100%;
  height: 410px;
  overflow: hidden;
}

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

.waves-gradient-hero-3 {
  z-index: 9;
  background-image: linear-gradient(#faebe3, #faebe300);
  height: 220px;
  position: absolute;
  inset: -1px 0% auto;
}

.waves-gradient-hero-3.bottom {
  background-image: linear-gradient(to top, #faebe3, #faebe300);
  inset: auto 0% -1px;
}

.waves-column-hero-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: flex-start;
  width: 48%;
  display: flex;
}

.waves-item-gallery-hero-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.waves-inside-hero-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.waves-inside-hero-3.reverse {
  justify-content: flex-end;
}

.waves-gallery-hero-3 {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 550px;
  height: 750px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.waves---main-container-9 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.heading-33 {
  margin-top: 20px;
  font-size: 1rem;
}

.walsh-button-call {
  z-index: 5;
  border: 4px solid var(--button);
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  background-color: #df593200;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  padding: 1.2em 35px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
}

.walsh-button-call:hover {
  background-color: var(--walsh--walsh-mid-green);
  color: #fff;
}

.button-7 {
  z-index: 5;
  border: 4px solid var(--all-links);
  background-color: #3898ec00;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.2em 35px;
  font-size: 20px;
  display: flex;
  position: relative;
}

.quick-stack-21 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: none;
  padding: 0;
}

.cell-41, .cell-42 {
  justify-content: center;
  align-items: flex-start;
}

.quick-stack-22, .quick-stack-23 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-self: stretch;
  padding: 0;
}

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

.image-42 {
  border-radius: 1rem;
}

.cell-44 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 16px;
  }

  .review-card-name-wrap {
    flex-direction: row;
    align-items: center;
  }

  .max-15ch {
    max-width: 17ch;
    font-size: 4rem;
  }
}

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

  .review-card-name-wrap {
    text-align: center;
    flex-direction: column;
    align-items: flex-start;
  }

  .centered-heading {
    font-size: 3rem;
  }

  ._3-columns-grid-copy {
    margin-bottom: 0;
  }

  .review-card-copy {
    padding: 20px;
  }

  .bold-text-10 {
    display: block;
  }

  ._3-columns-grid-copy-copy {
    margin-bottom: 0;
  }

  .heading-29 {
    color: #1717171c;
    align-self: stretch;
    font-size: 15rem;
    font-weight: 900;
    line-height: .5;
  }

  .walsh-container-4 {
    margin-bottom: 0;
  }

  .walsh-left-hero {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .walsh-main-grid-no-gap-4 {
    align-content: stretch;
  }

  .walsh-background-darkgreen-3 {
    background-image: url('../images/bg-green.svg');
    background-position: 0 0;
    background-size: auto;
  }

  .walsh-cta-block-light-green-2 {
    margin-top: 4em;
  }

  .quick-stack-10 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

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

  .image-35 {
    border-radius: 16px;
  }

  .quick-stack-11 {
    flex: 1;
    align-self: auto;
  }

  .walsh-link-block-orange-10 {
    background-color: var(--button);
  }

  .walsh-nav-link-white {
    color: #333;
    font-weight: 700;
  }

  .walsh-nav-wrapper-green {
    background-color: #fff;
  }

  .text-block-14 {
    color: var(--walsh--walsh-dark-green);
  }

  .walsh-container-4-copy, .walsh-container01 {
    margin-bottom: 0;
  }

  .walsh-cta-block-light-green-2-copy {
    margin-top: 4em;
  }

  .rebates {
    margin-top: 0;
  }

  .insulation, .hvac, .windows, .services {
    margin-top: 4em;
  }

  .uui-navbar04_container {
    max-width: 1480px;
  }

  .uui-navbar04_component {
    align-self: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1920px) {
  .walsh-link-block-orange-4 {
    height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .walsh-nav-logo-3 {
    height: auto;
  }

  .walsh-container-4 {
    max-width: 1750px;
  }

  .walsh-hero-inner-float-image {
    align-self: stretch;
  }

  .walsh-container-6 {
    background-image: none;
  }

  .walsh-background-darkgreen-3 {
    background-image: url('../images/bg-green.svg');
    background-position: 0 0;
    background-size: cover;
  }

  .walsh-center-wrapper-gap {
    align-self: stretch;
  }

  .walsh-container-padding-large {
    max-width: 1750px;
  }

  .image-36-copy {
    height: 300px;
  }

  .uui-navbar04_container {
    max-width: 1480px;
  }

  .walsh-container-nav-3 {
    max-width: none;
  }

  .waves---main-container-9 {
    max-width: 1750px;
  }
}

@media screen and (max-width: 991px) {
  ul {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .navbar {
    position: sticky;
  }

  .container.in-navbar {
    padding-right: 20px;
  }

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

  .nav-menu {
    background-color: var(--white);
    justify-content: flex-start;
    width: 100%;
    padding: 0 20px 40px;
    box-shadow: 0 10px 10px #00000080;
  }

  .button {
    width: 100%;
  }

  .button.in-navbar, .button.in-navbar-copy {
    margin-left: 0;
  }

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

  .logos-wrap {
    grid-auto-columns: 1fr;
  }

  ._3-columns-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  ._3-columns-grid.bottom-margin {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .rating-wrap.in-hero {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .feature-card, .footer-wrap {
    flex-direction: column;
  }

  .footer-links-wrap {
    width: 100%;
    margin-top: 80px;
  }

  .menu-button {
    flex: none;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 16px;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .lottie-animation {
    width: 100%;
    height: 100%;
  }

  .circle-image {
    top: -5%;
  }

  .student-card {
    left: 0%;
  }

  .featured-in-wrap {
    flex-direction: column;
    grid-template-columns: .5fr 1fr;
  }

  .text-column-wrap {
    flex: none;
    align-self: stretch;
    width: 100%;
    display: block;
  }

  .right-arrow {
    display: none;
    right: 0;
  }

  .left-arrow {
    display: none;
    left: 0;
  }

  .faq-wrap {
    order: -1;
  }

  .social-links-wrap {
    justify-content: center;
  }

  .rating {
    margin-bottom: 4px;
  }

  .waves---form-contact-1 {
    align-items: stretch;
  }

  .waves-form-block-contact-1 {
    align-self: stretch;
  }

  .waves-grid-contact-3, .waves-grid-contact-4 {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .waves---master-tiles-features-2 {
    grid-column-gap: 16px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }

  .waves---content-sticky-features-2 {
    text-align: center;
    align-items: center;
  }

  .waves---sticky-halves {
    flex-direction: column;
    align-self: stretch;
    align-items: center;
  }

  .waves---sticky-halves-left {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .waves---grid-halves-sticky {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .button-copy {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .button-copy.in-navbar {
    margin-left: 0;
  }

  .student-card-copy {
    left: 0%;
  }

  ._3-columns-grid-copy {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  ._2-column-grid-copy {
    flex-direction: column;
  }

  .student-card-copy-copy {
    left: 0%;
  }

  ._3-columns-grid-copy {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .button-copy-copy.in-navbar {
    margin-left: 0;
  }

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

  ._2-column-grid-copy-copy {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column-reverse;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .reviewbtn.in-navbar {
    margin-left: 0;
  }

  .div-block-6 {
    flex-direction: column;
    display: flex;
  }

  ._2-column-grid-copy-copy-copy {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column-reverse;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .walsh-menu-button-black {
    order: 1;
  }

  .walsh-menu-button-black.w--open {
    color: var(--walsh--black);
    background-color: #0000;
  }

  .walsh-button-hover-fill {
    display: none;
  }

  .walsh-link-block-orange {
    padding-left: 50px;
  }

  .walsh-flex-nav-buttons {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .walsh-nav-link-black {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-nav-link-black:hover {
    background-color: #0000;
  }

  .walsh-toggle-black {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-toggle-black:hover {
    background-color: #0000;
  }

  .walsh-dropdown {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }

  .walsh-nav-menu-white {
    background-color: #fff;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .walsh-inner-container-nav-float {
    padding-left: 25px;
    padding-right: 0;
  }

  .walsh-float-menu {
    padding: 10px 0;
  }

  .walsh-nav-wrapper-green-padding {
    padding: 10px;
  }

  .walsh-link-block-gray {
    padding-left: 50px;
  }

  .walsh-cta-v-wrapper {
    justify-content: center;
  }

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

  .walsh-cta-block-white {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-left: 3em;
    padding-right: 3em;
    display: flex;
  }

  .walsh-container {
    flex: 0 auto;
    width: auto;
  }

  .waves-gradient-hero-1 {
    height: 140px;
  }

  .waves-image-wrap-hero-1 {
    height: 320px;
  }

  .waves-gallery-hero-1 {
    height: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .waves---mega-heading-1 {
    font-size: 72px;
    line-height: 110%;
  }

  .waves-content-hero-1 {
    text-align: center;
    align-items: center;
  }

  .waves-grid-hero-1 {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .waves---section-hero-primary {
    text-align: center;
  }

  .submit-button.button-2 {
    display: block;
  }

  .form-end-image-block {
    height: auto;
  }

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

  .heading-2-2-center {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .grid-5 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

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

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

  .image-holder {
    order: -1;
  }

  .form-step-item {
    height: auto;
  }

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

  .heading-2-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .icon-holder, .button-red {
    margin-left: 0;
  }

  .walsh-button-hover-fill-2 {
    display: none;
  }

  .walsh-link-block-orange-2 {
    padding-left: 50px;
  }

  .walsh-hero-div-block {
    justify-content: center;
  }

  .walsh-heading-large {
    letter-spacing: -.01em;
    font-size: 3em;
  }

  .walsh-content-wrap-50 {
    order: -1;
    width: 100%;
    padding: 4em 40px;
  }

  .walsh-flex-horizontal {
    flex-flow: column wrap;
  }

  .walsh-container-2 {
    flex: 0 auto;
    width: auto;
  }

  .button-copy-copy-copy.in-navbar {
    margin-left: 0;
  }

  ._3-columns-grid-copy-copy {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .nav-link-copy {
    text-align: center;
  }

  .nav-menu-copy {
    background-color: var(--white);
    justify-content: flex-start;
    width: 100%;
    padding: 0 20px 40px;
    box-shadow: 0 10px 10px #00000080;
  }

  .navbar-copy {
    position: sticky;
  }

  .waves---hamburger-icon {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
  }

  .waves---menu-button {
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
  }

  .waves---menu-button.w--open {
    background-color: var(--waves-library--black);
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
  }

  .waves---nav-buttons-right {
    grid-column-gap: 8px;
  }

  .waves---nav-link {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 20px;
    display: flex;
  }

  .waves---dropdown-link {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 20px;
  }

  .waves-dropdown-list.w--open {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    position: static;
  }

  .waves-dropdown-toggle {
    padding-right: 16px;
    font-size: 20px;
  }

  .waves---nav-dropdown {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---nav-menu {
    background-color: var(--waves-library--white);
    border: 1px solid #1313131a;
    border-radius: 8px;
    margin-top: 4px;
  }

  .waves---nav-brand-link {
    padding-left: 0;
  }

  .walsh-menu-button-black-2 {
    order: 1;
  }

  .walsh-menu-button-black-2.w--open {
    color: var(--walsh--black);
    background-color: #0000;
  }

  .walsh-button-hover-fill-3 {
    display: none;
  }

  .walsh-link-block-orange-3 {
    padding-left: 50px;
  }

  .walsh-flex-nav-buttons-2 {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .walsh-nav-link-black-2 {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-nav-link-black-2:hover {
    background-color: #0000;
  }

  .walsh-toggle-black-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-toggle-black-2:hover {
    background-color: #0000;
  }

  .walsh-dropdown-2 {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }

  .walsh-nav-menu-white-2 {
    background-color: #fff;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .walsh-inner-container-nav-float-2 {
    padding-left: 25px;
    padding-right: 0;
  }

  .walsh-float-menu-2 {
    padding: 10px 0;
  }

  .walsh-nav-wrapper-green-padding-2 {
    padding: 10px;
  }

  .feature-card-copy, .feature-card-copy-copy, .feature-card-copy-copy-copy, .feature-card-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy {
    flex-direction: column;
  }

  .button-copy-copy-copy-copy.in-navbar {
    margin-left: 0;
  }

  .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .card_gen, .card_solar, .card_smart {
    flex-direction: column;
  }

  .section-copy {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .waves-gradient-hero-2 {
    height: 140px;
  }

  .waves-image-wrap-hero-2 {
    height: 320px;
  }

  .waves-gallery-hero-2 {
    height: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .waves---mega-heading-2 {
    font-size: 72px;
    line-height: 110%;
  }

  .waves-content-hero-2 {
    text-align: center;
    align-items: center;
  }

  .waves-grid-hero-2 {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .waves---section-hero-primary-2 {
    text-align: center;
  }

  .waves---mega-heading-2-copy {
    font-size: 72px;
    line-height: 110%;
  }

  .waves---hamburger-icon-2 {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
  }

  .waves---menu-button-2 {
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
  }

  .waves---menu-button-2.w--open {
    background-color: var(--waves-library--black);
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
  }

  .waves---nav-buttons-right-2 {
    grid-column-gap: 8px;
  }

  .waves---nav-link-2 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 20px;
    display: flex;
  }

  .waves---dropdown-link-2 {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 20px;
  }

  .waves-dropdown-list-2.w--open {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    position: static;
  }

  .waves-dropdown-toggle-2 {
    padding-right: 16px;
    font-size: 20px;
  }

  .waves---nav-dropdown-2 {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---nav-menu-2 {
    background-color: var(--waves-library--white);
    border: 1px solid #1313131a;
    border-radius: 8px;
    margin-top: 4px;
  }

  .waves---nav-brand-link-2 {
    padding-left: 0;
  }

  .waves-master-cta-2 {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .waves-master-logos-2 {
    grid-column-gap: 40px;
  }

  .waves---content-image-halves {
    text-align: center;
    align-items: center;
  }

  .waves---grid-cta-3 {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .waves---content-image-halves-2 {
    text-align: center;
    align-items: center;
  }

  .waves-image-features-3 {
    max-width: 470px;
  }

  .waves---grid-image-halves {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .waves---heading-1-no-margins {
    font-size: 64px;
    line-height: 115%;
  }

  .waves-content-hero-3 {
    text-align: center;
    align-items: center;
    padding-left: 0;
  }

  .waves-hero-3-grid {
    grid-template-columns: 1fr;
  }

  .waves---section-hero-primary-3 {
    text-align: center;
  }

  .waves-master-cta-5 {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .waves-grid-testimonials-3 {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 480px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .waves---sides-heading-button {
    grid-row-gap: 32px;
    text-align: center;
    flex-direction: column;
  }

  .waves-hero-3-grid-copy {
    grid-template-columns: 1fr;
  }

  .walsh-menu-button-black-3 {
    order: 1;
  }

  .walsh-menu-button-black-3.w--open {
    color: var(--walsh--black);
    background-color: #0000;
  }

  .walsh-button-hover-fill-4 {
    display: none;
  }

  .walsh-link-block-orange-4 {
    padding-left: 50px;
  }

  .walsh-flex-nav-buttons-3 {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .walsh-nav-link-black-3 {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-nav-link-black-3:hover {
    background-color: #0000;
  }

  .walsh-toggle-black-3 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-toggle-black-3:hover {
    background-color: #0000;
  }

  .walsh-dropdown-3 {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }

  .walsh-nav-menu-white-3 {
    background-color: #fff;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .walsh-inner-container-nav-float-3 {
    padding-left: 25px;
    padding-right: 0;
  }

  .walsh-float-menu-3 {
    padding: 10px 0;
  }

  .walsh-nav-wrapper-green-padding-3 {
    padding: 10px;
  }

  .walsh-hero-sub-bg {
    min-height: auto;
    padding-top: 0;
  }

  .walsh-hero-div-block-2 {
    justify-content: center;
  }

  .walsh-paragraph-serif-left-hero {
    max-width: none;
  }

  .walsh-text-burst {
    background-size: auto 60%;
  }

  .walsh-heading-xlarge-white {
    font-size: 4em;
  }

  .walsh-left-hero-content {
    grid-row-gap: 1.25em;
    text-align: center;
    align-items: center;
    width: auto;
    padding-right: 0;
  }

  .walsh-main-grid-no-gap {
    grid-template-columns: 1fr 1fr;
  }

  .walsh-hero-grid-wrapper {
    padding-top: 7.2em;
  }

  .walsh-rounded-card {
    grid-row-gap: 2em;
  }

  .walsh-main-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .walsh-container-3 {
    flex: 0 auto;
    width: auto;
  }

  .walsh-link-block-outline {
    padding-left: 50px;
  }

  .walsh-button-hover-fill-5 {
    display: none;
  }

  .walsh-link-block-orange-5 {
    padding-left: 50px;
  }

  .walsh-cta-v-wrapper-2 {
    justify-content: center;
  }

  .walsh-main-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .walsh-cta-block-light-green {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-left: 3em;
    padding-right: 3em;
    display: flex;
  }

  .walsh-container-4 {
    flex: 0 auto;
    width: auto;
  }

  .walsh-inner-rounded-banner-image {
    max-width: none;
  }

  .walsh-hero-div-block-3 {
    justify-content: center;
  }

  .walsh-inner-rounded-banner {
    text-align: center;
    align-items: center;
    padding: 45px 30px 30px;
  }

  .walsh-rounded-box-banner {
    flex-direction: column;
  }

  .walsh-heading-large-2 {
    letter-spacing: -.01em;
    font-size: 3em;
  }

  .walsh-rounded-card-2 {
    grid-row-gap: 2em;
  }

  .walsh-button-orange {
    padding: 18px 40px;
  }

  .walsh-button-orange:hover {
    background-color: #80808033;
  }

  .walsh-icon-check {
    margin-right: 0;
  }

  .walsh-main-grid-no-gap-2 {
    grid-template-columns: 1fr 1fr;
  }

  .walsh-hero-sub-bg-2 {
    min-height: auto;
    padding-top: 0;
  }

  .walsh-button-hover-fill-6 {
    display: none;
  }

  .walsh-link-block-orange-6 {
    padding-left: 50px;
  }

  .walsh-hero-div-block-4 {
    justify-content: center;
  }

  .walsh-paragraph-serif-left-hero-2 {
    max-width: none;
  }

  .walsh-text-burst-2 {
    background-size: auto 60%;
  }

  .walsh-heading-xlarge-white-2 {
    font-size: 4em;
  }

  .walsh-left-hero-content-2 {
    grid-row-gap: 1.25em;
    text-align: center;
    align-items: center;
    width: auto;
    padding-right: 0;
  }

  .walsh-main-grid-no-gap-3 {
    grid-template-columns: 1fr 1fr;
  }

  .walsh-hero-grid-wrapper-2 {
    padding-top: 7.2em;
  }

  .walsh-button {
    padding: 18px 40px;
  }

  .walsh-button:hover {
    background-color: #80808033;
  }

  .walsh-icon-check-2 {
    margin-right: 0;
  }

  .walsh-pricing-inner-card, .walsh-pricing-inner-card-featured {
    align-items: center;
  }

  .walsh-main-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .walsh-tab-menu {
    justify-content: center;
  }

  .features {
    flex: 0 auto;
    align-self: stretch;
    width: auto;
  }

  .walsh-hero-inner-float-image {
    width: 50%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
  }

  .walsh-link-block-orange-7 {
    padding-left: 50px;
  }

  .walsh-heading-large-3 {
    letter-spacing: -.01em;
    font-size: 3em;
  }

  .walsh-content-wrap {
    flex-flow: column;
    order: 0;
    justify-content: flex-start;
    align-self: auto;
    align-items: flex-start;
    width: auto;
    max-width: none;
    padding-top: 2em;
    padding-bottom: 4em;
    display: flex;
  }

  .walsh-flex-horizontal-2 {
    grid-column-gap: 4em;
    grid-row-gap: 16px;
    flex-flow: column wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr .25fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    place-items: center;
    display: grid;
  }

  .walsh-rounded-container {
    flex: 0 auto;
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .walsh-rounded-block-2 {
    flex: 0 auto;
  }

  .walsh-link-block-orange-8 {
    padding-left: 50px;
  }

  .walsh-heading-large-4 {
    letter-spacing: -.01em;
    font-size: 3em;
  }

  .walsh-rounded-card-3 {
    grid-row-gap: 2em;
  }

  .walsh-padding-image-hero {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .walsh-button-hover-fill-7 {
    display: none;
  }

  .walsh-link-block-orange-9 {
    padding-left: 50px;
  }

  .walsh-hero-div-block-5 {
    justify-content: flex-start;
    align-self: stretch;
    align-items: center;
  }

  .walsh-paragraph-serif-left-hero-3 {
    max-width: none;
  }

  .walsh-heading-xlarge-white-3 {
    font-size: 4em;
  }

  .walsh-left-hero {
    grid-row-gap: 1em;
  }

  .walsh-main-grid-no-gap-4 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .walsh-container-6 {
    flex: 0 auto;
    width: auto;
  }

  .walsh-text-field-single {
    min-width: auto;
  }

  .walsh-content-wrapper-gap-3 {
    align-self: stretch;
  }

  .walsh-icon-check-3 {
    margin-right: 0;
  }

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

  .walsh-cta-block-light-green-2 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-left: 3em;
    padding-right: 3em;
    display: flex;
  }

  .walsh-container-7 {
    flex: 0 auto;
    width: auto;
  }

  .walsh-menu-button {
    color: #fff;
    order: 1;
  }

  .walsh-menu-button.w--open {
    background-color: #0000;
  }

  .walsh-button-hover-fill-8 {
    display: none;
  }

  .walsh-link-block-orange-10 {
    padding-left: 50px;
  }

  .walsh-flex-nav-buttons-4 {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .walsh-nav-link-white {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-nav-link-white:hover {
    background-color: #0000;
  }

  .walsh-nav-grid-center {
    grid-column-gap: 15px;
    grid-row-gap: 0px;
  }

  .walsh-nav-menu-green-left {
    background-color: var(--walsh--walsh-dark-green-2);
    padding-top: 0;
    padding-right: 20px;
  }

  .walsh-container-nav {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 0;
  }

  .walsh-inner-rounded-banner-image-2 {
    max-width: none;
  }

  .walsh-hero-div-block-6 {
    justify-content: center;
  }

  .walsh-inner-rounded-banner-2 {
    text-align: center;
    align-items: center;
    padding: 45px 30px 30px;
  }

  .walsh-rounded-box-banner-2 {
    flex-direction: column;
  }

  .walsh-menu-button-black-4 {
    order: 1;
  }

  .walsh-menu-button-black-4.w--open {
    color: var(--walsh--black);
    background-color: #0000;
  }

  .walsh-button-hover-fill-9 {
    display: none;
  }

  .walsh-link-block-orange-11 {
    padding-left: 50px;
  }

  .walsh-flex-nav-buttons-5 {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .walsh-nav-link-black-4 {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-nav-link-black-4:hover {
    background-color: #0000;
  }

  .walsh-toggle-black-4 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-toggle-black-4:hover {
    background-color: #0000;
  }

  .walsh-dropdown-4 {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }

  .walsh-nav-menu-white-4 {
    background-color: #fff;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .walsh-inner-container-nav-float-4 {
    padding-left: 25px;
    padding-right: 0;
  }

  .walsh-float-menu-4 {
    padding: 10px 0;
  }

  .walsh-nav-wrapper-green-padding-4 {
    padding: 10px;
  }

  .walsh-main-grid-6 {
    grid-template-columns: 1fr 1fr;
  }

  .walsh-container-8 {
    flex: 0 auto;
    width: auto;
  }

  .walsh-button-light-green {
    padding: 18px 40px;
  }

  .walsh-button-light-green:hover {
    background-color: #80808033;
  }

  .walsh-text-field-auto {
    min-width: 100%;
    margin-bottom: 15px;
    margin-right: 0;
  }

  .walsh-form-single-row {
    flex-direction: column;
  }

  .walsh-form-block {
    padding-right: 0;
  }

  .walsh-paragraph-serif-left-hero-4 {
    max-width: none;
  }

  .walsh-heading-xlarge-white-4 {
    font-size: 4em;
  }

  .walsh-container-padding-large {
    flex: 0 auto;
    width: auto;
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .walsh-footer-grid-social {
    width: 100%;
  }

  .walsh-footer-line-divider {
    margin-bottom: 20px;
  }

  .walsh-main-grid-no-gap-5 {
    grid-template-columns: 1fr 1fr;
  }

  .image-39 {
    align-self: stretch;
  }

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

  .walsh-container-4-copy, .walsh-container01 {
    flex: 0 auto;
    width: auto;
  }

  .walsh-link-block-orange-9-copy {
    padding-left: 50px;
  }

  .walsh-hero-div-block-5-copy {
    justify-content: center;
  }

  .walsh-heading-large-5 {
    letter-spacing: -.01em;
    font-size: 3em;
  }

  .walsh-rounded-card-4 {
    grid-row-gap: 2em;
  }

  .walsh-main-grid-7 {
    grid-template-columns: 1fr 1fr;
  }

  .walsh-container-9 {
    flex: 0 auto;
    width: auto;
  }

  .walsh-cta-block-light-green-2-copy {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-left: 3em;
    padding-right: 3em;
    display: flex;
  }

  .waves---hamburger-icon-3 {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
    font-size: 50px;
    display: flex;
  }

  .waves---menu-button-3 {
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
  }

  .waves---menu-button-3.w--open {
    background-color: var(--waves-library--black);
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
  }

  .waves---nav-buttons-right-3 {
    grid-column-gap: 8px;
  }

  .waves---nav-link-3 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 20px;
    display: flex;
  }

  .waves---dropdown-link-3 {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 20px;
  }

  .waves-dropdown-list-3.w--open {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    position: static;
  }

  .waves-dropdown-toggle-3 {
    padding-right: 16px;
    font-size: 20px;
  }

  .waves---nav-menu-3 {
    background-color: var(--waves-library--white);
    border: 1px solid #1313131a;
    border-radius: 8px;
    margin-top: 4px;
  }

  .waves---nav-brand-link-3 {
    padding-left: 0;
  }

  .waves-right-top-nav-4 {
    grid-column-gap: 18px;
  }

  .waves-left-top-nav-4 {
    grid-row-gap: 12px;
    flex-wrap: wrap;
  }

  .waves-master-top-navbar-4 {
    height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .rebates, .insulation, .hvac, .windows {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-left: 2em;
    padding-right: 2em;
    display: flex;
  }

  .cell-37 {
    display: flex;
  }

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

  .cell-40 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .quick-stack-18 {
    align-self: auto;
  }

  .services {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-left: 2em;
    padding-right: 2em;
    display: flex;
  }

  .walsh-link-block-green-outline, .walsh-link-block-green-outline-head {
    padding-left: 50px;
  }

  .walsh-menu-button-2 {
    color: #fff;
    order: 1;
  }

  .walsh-menu-button-2.w--open {
    background-color: #0000;
  }

  .walsh-button-hover-fill-10 {
    display: none;
  }

  .walsh-link-block-orange-12 {
    padding-left: 50px;
  }

  .walsh-flex-nav-buttons-6 {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .walsh-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-toggle:hover {
    background-color: #0000;
  }

  .walsh-dropdown-5 {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }

  .walsh-nav-link-white-2 {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-nav-link-white-2:hover {
    background-color: #0000;
  }

  .walsh-nav-menu-green-left-2 {
    background-color: var(--walsh--walsh-dark-green-2);
    padding-top: 0;
    padding-right: 20px;
  }

  .walsh-container-nav-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 0;
  }

  .menu-icon_line-bottom {
    background-color: var(--untitled-ui--gray700);
    border-radius: 1rem;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-middle {
    background-color: var(--untitled-ui--gray700);
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-top {
    background-color: var(--untitled-ui--gray700);
    border-radius: 1rem;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_component {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .uui-navbar04_menu-button.w--open {
    background-color: #0000;
  }

  .hide-tablet {
    display: none;
  }

  .uui-button-secondary-gray.show-tablet, .show-tablet {
    display: block;
  }

  .uui-navbar04_button-wrapper {
    flex-direction: column-reverse;
    align-items: stretch;
    display: flex;
  }

  .uui-navbar04_menu-right {
    flex-direction: column-reverse;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    padding-bottom: 7rem;
  }

  .uui-navbar04_link {
    color: var(--untitled-ui--gray900);
    width: 100%;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .uui-navbar04_link:hover {
    color: var(--untitled-ui--gray900);
  }

  .uui-navbar04_dropdown-right-overlay-absolute {
    border-radius: .5rem;
    min-width: 100%;
  }

  .uui-navbar04_dropdown-content-right {
    max-width: none;
    padding-right: 2rem;
  }

  .uui-navbar04_dropdown-link {
    padding-left: 0;
    padding-right: 0;
  }

  .uui-navbar04_dropdown-link:hover {
    background-color: #0000;
  }

  .uui-navbar04_dropdown-content-left {
    padding-left: 0;
    padding-right: 0;
  }

  .uui-navbar04_dropdown-content {
    flex-direction: column;
  }

  .uui-navbar04_dropdown-list {
    position: relative;
    overflow: hidden;
  }

  .uui-navbar04_dropdown-list.w--open {
    box-shadow: none;
    border-style: none;
    align-items: flex-start;
    min-width: auto;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }

  .uui-dropdown-icon {
    color: var(--untitled-ui--gray500);
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    inset: auto 0% auto auto;
  }

  .uui-navbar04_dropdown-toggle {
    color: var(--untitled-ui--gray900);
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    font-size: 1.125rem;
    display: flex;
  }

  .uui-navbar04_dropdown-toggle:hover {
    color: var(--untitled-ui--gray900);
  }

  .uui-navbar04_menu-dropdown {
    width: 100%;
    position: relative;
  }

  .uui-navbar04_menu-left {
    grid-column-gap: 0px;
    grid-row-gap: .5rem;
    color: var(--untitled-ui--gray900);
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .uui-navbar04_menu {
    border-top: 1px solid var(--untitled-ui--gray100);
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    align-items: flex-start;
    height: 100vh;
    margin-left: 0;
    padding: 1.5rem 2rem 5rem;
    position: absolute;
    overflow: auto;
  }

  .walsh-link-block-green-outline-head-copy, .walsh-link-block-orange-9-copy {
    padding-left: 50px;
  }

  .uui-heading-large {
    font-size: 2.75rem;
  }

  .uui-cta03_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .spark-hero-section-image {
    width: 100%;
    max-width: 100%;
  }

  .spark-hero-section-left-side {
    width: 100%;
  }

  .spark-flex-row.spark-5-spacing {
    grid-row-gap: 2rem;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .spark-container.spark-primary-with-rounded-corners {
    padding: 32px;
  }

  .spark-line-3.spark-simple-line {
    background-color: var(--spark-library--foreground-interactive);
    border-radius: 3px;
    width: 12.75px;
    height: 3.33px;
    margin-left: 0;
    left: 18px;
  }

  .spark-line-2.spark-simple-line {
    background-color: var(--spark-library--foreground-interactive);
    border-radius: 3px;
    width: 24px;
    height: 3.33px;
  }

  .spark-line-1.spark-simple-line {
    background-color: var(--spark-library--foreground-interactive);
    border-radius: 2px;
    width: 24px;
    height: 3.33px;
  }

  .spark-simple-menu-button {
    background-color: #0000;
    padding-left: 18px;
  }

  .spark-simple-menu-button.w--open {
    background-color: #0000;
  }

  .spark-nav-link {
    text-align: left;
    margin-bottom: 1rem;
    margin-left: 0;
  }

  .spark-nav-link.spark-button {
    text-align: center;
    margin-bottom: 0;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .spark-nav-menu {
    z-index: 99;
    background-color: var(--spark-library--white);
    border-bottom-right-radius: 42px;
    border-bottom-left-radius: 42px;
    margin-top: 0;
    padding: 2rem 1rem 1rem;
  }

  .spark-square-menu-inner {
    padding: 0;
  }

  .spark-square-menu-with-links {
    padding-left: 32px;
    padding-right: 32px;
  }

  .spark-section {
    padding-top: 104px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .walsh-link-block-orange-13 {
    padding-left: 50px;
  }

  .walsh-button-hover-fill-11 {
    display: none;
  }

  .walsh-container-nav-3 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 0;
  }

  .walsh-nav-menu-green {
    background-color: var(--walsh--walsh-dark-green-2);
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .walsh-nav-link-white-3 {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-nav-link-white-3:hover {
    background-color: #0000;
  }

  .walsh-dropdown-6 {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }

  .walsh-toggle-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .walsh-toggle-2:hover {
    background-color: #0000;
  }

  .walsh-flex-nav-buttons-7 {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .walsh-menu-button-3 {
    color: #fff;
    order: 1;
  }

  .walsh-menu-button-3.w--open {
    background-color: #0000;
  }

  .waves---section-hero-primary-4 {
    text-align: center;
  }

  .waves-grid-hero-3 {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .waves---mega-heading-3 {
    font-size: 72px;
    line-height: 110%;
  }

  .waves-content-hero-4 {
    text-align: center;
    align-items: center;
  }

  .waves-image-wrap-hero-3 {
    height: 320px;
  }

  .waves-gradient-hero-3 {
    height: 140px;
  }

  .waves-gallery-hero-3 {
    height: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .waves---main-container-9 {
    padding-top: 2rem;
  }

  .icon-3 {
    font-size: 50px;
  }

  .walsh-button-call {
    padding: 18px 40px;
  }

  .walsh-button-call:hover {
    background-color: #80808033;
  }

  .quick-stack-22 {
    align-self: auto;
  }
}

@media screen and (max-width: 767px) {
  .logos-wrap {
    grid-auto-columns: 1fr;
  }

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

  .review-card, .review-card-name-wrap {
    flex-direction: row;
  }

  .rating-wrap.in-hero {
    flex-direction: row;
    align-items: center;
  }

  .feature-card {
    flex-direction: row;
    display: block;
  }

  .feature-icon {
    margin-right: 20px;
  }

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

  .footer-links-wrap {
    grid-template-columns: auto 50%;
    grid-auto-flow: row;
    margin-top: 40px;
  }

  .student-card {
    width: auto;
    inset: auto auto 0% 0%;
  }

  .review-avatar {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .social-links-wrap {
    margin-left: 0;
  }

  .rating {
    margin-bottom: 0;
  }

  .waves---heading-2-no-margins {
    font-size: 44px;
    line-height: 125%;
  }

  .waves---main-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---section-medium {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .waves---heading-2-no-margins-2 {
    font-size: 44px;
    line-height: 125%;
  }

  .waves---main-container-2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---section-medium-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .waves---master-tiles-features-2 {
    grid-column-gap: 16px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .student-card-copy {
    width: auto;
    inset: auto auto 0% 0%;
  }

  .student-card-copy-copy {
    width: auto;
    inset: auto auto 0% 0%;
  }

  .review-card-copy {
    flex-direction: row;
  }

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

  ._2-column-grid-copy-copy, ._2-column-grid-copy-copy-copy {
    flex-direction: column-reverse;
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .waves---heading-2-no-margins-3 {
    font-size: 44px;
    line-height: 125%;
  }

  .waves---main-container-3 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---section-medium-3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .walsh-brand-block {
    padding-left: 0;
  }

  .walsh-paragraph-small {
    font-size: 1.4em;
  }

  .walsh-heading-medium {
    font-size: 2.4em;
  }

  .walsh-main-grid {
    grid-column-gap: 1em;
    grid-row-gap: 2em;
  }

  .waves---subtitle {
    font-size: 22px;
    line-height: 34px;
  }

  .waves---mega-heading-1 {
    font-size: 56px;
  }

  .waves-grid-hero-1 {
    grid-row-gap: 40px;
  }

  .waves---main-container-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .form-end-image-block {
    height: 50vh;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .heading-2-2-center {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .grid-5 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .quiz-intro-grid {
    flex-direction: column;
    display: flex;
  }

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

  .margin-bottom.margin-small {
    order: 0;
  }

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

  .margin-top.margin-small.left-aligned {
    order: 0;
  }

  .image-holder {
    order: -1;
  }

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

  .heading-2-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

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

  .helpful-resources-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .walsh-heading-large {
    font-size: 2em;
  }

  .walsh-content-wrap-50 {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .walsh-rounded-block {
    border-radius: 20px;
  }

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

  .waves---nav-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .walsh-brand-block-2 {
    padding-left: 0;
  }

  .feature-card-copy, .feature-card-copy-copy, .feature-card-copy-copy-copy, .feature-card-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .card_gen, .card_solar, .card_smart {
    flex-direction: row;
    display: block;
  }

  .waves---subtitle-2 {
    font-size: 22px;
    line-height: 34px;
  }

  .waves---mega-heading-2 {
    font-size: 56px;
  }

  .waves-grid-hero-2 {
    grid-row-gap: 40px;
  }

  .waves---main-container-5 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---mega-heading-2-copy {
    font-size: 56px;
  }

  .waves---nav-container-2 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .waves---heading-2-no-margins-4 {
    font-size: 44px;
    line-height: 125%;
  }

  .waves---section-medium-4 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .waves---master-checks-horizontal {
    grid-row-gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .waves---heading-2-no-margins-5 {
    font-size: 44px;
    line-height: 125%;
  }

  .waves-master-cta-2 {
    padding: 80px 32px;
  }

  .waves---section-medium-5 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .waves---heading-2-no-margins-6 {
    font-size: 44px;
    line-height: 125%;
  }

  .waves-master-cta-4 {
    padding: 80px 32px;
  }

  .waves---main-container-6 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---heading-2-no-margins-7 {
    font-size: 44px;
    line-height: 125%;
  }

  .waves---main-container-7 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---section-medium-6 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .waves---subtitle-3 {
    font-size: 22px;
    line-height: 34px;
  }

  .waves---heading-1-no-margins {
    font-size: 56px;
  }

  .waves---master-checks-horizontal-2 {
    grid-row-gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .waves-master-cta-5 {
    padding: 80px 32px;
  }

  .waves---heading-2-no-margins-8 {
    font-size: 44px;
    line-height: 125%;
  }

  .waves---testimonial-text-big {
    font-size: 26px;
  }

  .waves---main-container-8 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---section-medium-7 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .walsh-brand-block-3 {
    padding-left: 0;
  }

  .walsh-paragraph-serif-left-hero {
    font-size: 1.4em;
  }

  .walsh-heading-xlarge-white {
    font-size: 3em;
  }

  .walsh-left-hero-content {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .walsh-heading-medium-2 {
    font-size: 2.4em;
  }

  .walsh-rounded-card {
    grid-row-gap: 1.5em;
  }

  .walsh-main-grid-2 {
    grid-column-gap: 1em;
    grid-row-gap: 2em;
  }

  .walsh-paragraph {
    font-size: 1.4em;
  }

  .walsh-heading-medium-3 {
    font-size: 2.4em;
  }

  .walsh-main-grid-3 {
    grid-column-gap: 1em;
    grid-row-gap: 2em;
  }

  .walsh-rounded-box-banner {
    grid-row-gap: 1.5em;
  }

  .walsh-heading-large-2 {
    font-size: 2em;
  }

  .walsh-rounded-card-2 {
    grid-row-gap: 1.5em;
  }

  .walsh-button-orange {
    width: 100%;
    font-size: 16px;
  }

  .walsh-price-wrapper {
    width: 100%;
  }

  .walsh-heading-regular {
    font-size: 1.8em;
  }

  .walsh-paragraph-serif-left-hero-2 {
    font-size: 1.4em;
  }

  .walsh-heading-xlarge-white-2 {
    font-size: 3em;
  }

  .walsh-left-hero-content-2 {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .walsh-button {
    width: 100%;
    font-size: 16px;
  }

  .walsh-price-wrapper-2 {
    width: 100%;
  }

  .walsh-main-grid-4 {
    grid-column-gap: 1em;
    grid-row-gap: 2em;
  }

  .walsh-tab-rounded {
    border-radius: 100px;
    font-size: 1em;
  }

  .walsh-tab-menu {
    grid-column-gap: 10px;
    flex-direction: row;
    align-items: center;
    padding: 7px;
  }

  .walsh-hero-inner-float-image {
    width: 50%;
  }

  .walsh-heading-large-3 {
    font-size: 2em;
  }

  .walsh-content-wrap {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .walsh-flex-horizontal-2 {
    grid-auto-flow: row;
  }

  .walsh-rounded-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .walsh-rounded-block-2 {
    border-radius: 20px;
  }

  .walsh-heading-large-4 {
    font-size: 2em;
  }

  .walsh-heading-regular-2 {
    font-size: 1.8em;
  }

  .walsh-rounded-card-3 {
    grid-row-gap: 1.5em;
  }

  .walsh-padding-image-hero {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .walsh-paragraph-serif-left-hero-3 {
    font-size: 1.4em;
  }

  .walsh-heading-xlarge-white-3 {
    font-size: 3em;
  }

  .walsh-left-hero {
    padding-top: 3em;
    padding-bottom: 0;
  }

  .walsh-text-field-single {
    text-align: left;
    margin-right: 0;
  }

  .walsh-form-single {
    flex-direction: row;
  }

  .walsh-paragraph-small-2, .walsh-paragraph-2 {
    font-size: 1.4em;
  }

  .walsh-heading-medium-4 {
    font-size: 2.4em;
  }

  .walsh-main-grid-5 {
    grid-column-gap: 1em;
    grid-row-gap: 2em;
  }

  .walsh-brand-block-4 {
    padding-left: 0;
  }

  .walsh-rounded-box-banner-2 {
    grid-row-gap: 1.5em;
  }

  .walsh-brand-block-5 {
    padding-left: 0;
  }

  .walsh-heading-medium-5 {
    font-size: 2.4em;
  }

  .walsh-rounded-box-center-large {
    grid-row-gap: 1.5em;
  }

  .walsh-main-grid-6 {
    grid-column-gap: 1em;
    grid-row-gap: 2em;
  }

  .walsh-button-light-green {
    width: 100%;
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    font-size: 20px;
  }

  .walsh-text-field-auto {
    text-align: left;
  }

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

  .walsh-paragraph-serif-left-hero-4 {
    font-size: 1.4em;
  }

  .walsh-heading-xlarge-white-4 {
    font-size: 3em;
  }

  .walsh-cta-center-wrapper {
    grid-row-gap: 1.5em;
  }

  .walsh-container-padding-large {
    padding: 6em 3.5em;
  }

  .walsh-text-field-single-grey {
    text-align: left;
  }

  .walsh-form-single-2 {
    flex-direction: row;
  }

  .walsh-logo-footer {
    max-height: 32px;
  }

  .walsh-heading-large-5 {
    font-size: 2em;
  }

  .walsh-rounded-card-4 {
    grid-row-gap: 1.5em;
  }

  .walsh-main-grid-7 {
    grid-column-gap: 1em;
    grid-row-gap: 2em;
  }

  .waves---nav-cta-3 {
    display: none;
  }

  .waves---nav-container-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .waves-right-top-nav-4 {
    grid-row-gap: 12px;
    flex-wrap: wrap;
    max-width: 130px;
    display: none;
  }

  .text-block-20 {
    display: none;
  }

  .walsh-brand-block-6 {
    padding-left: 0;
  }

  .uui-button {
    font-size: 1rem;
  }

  .uui-button:hover {
    border-color: var(--untitled-ui--primary600);
    background-color: var(--untitled-ui--primary600);
  }

  .uui-button-tertiary-gray:hover {
    color: var(--untitled-ui--gray600);
    background-color: #0000;
  }

  .uui-button-secondary-gray {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .uui-button-secondary-gray:hover {
    background-color: var(--untitled-ui--white);
    color: var(--untitled-ui--gray700);
  }

  .uui-navbar04_link, .uui-button-link-gray {
    font-size: 1rem;
  }

  .uui-button-link-gray:hover {
    color: var(--untitled-ui--gray600);
  }

  .uui-navbar04_dropdown-content-right {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-text-size-small.hide-mobile-landscape, .hide-mobile-landscape {
    display: none;
  }

  .uui-badge-small-success {
    padding: .125rem .5rem;
  }

  .uui-navbar04_dropdown-link-list {
    max-width: none;
  }

  .uui-navbar04_dropdown-content-left {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .uui-navbar04_dropdown-toggle {
    font-size: 1rem;
  }

  .uui-navbar04_menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-styleguide_logomark-bg {
    background-image: url('../images/untitled-ui-logomark.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .uui-navbar04_component {
    min-height: 4.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-cta03_image-wrapper {
    width: 125%;
    margin-left: -12.5%;
  }

  .uui-cta03_form {
    margin-top: 2rem;
  }

  .uui-text-size-large {
    font-size: 1rem;
  }

  .uui-space-small {
    min-height: 1.25rem;
  }

  .uui-heading-large {
    font-size: 2.25rem;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .uui-page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-section_cta03 {
    overflow: hidden;
  }

  .spark-hero-section-image {
    width: 100%;
    max-width: 100%;
  }

  .spark-input.spark-with-a-inner-shadow {
    width: 240px;
  }

  .spark-hero-sub-paragraph {
    margin-bottom: 32px;
  }

  .spark-hero-section-left-side {
    width: 100%;
  }

  .spark-flex-row {
    flex-direction: column;
  }

  .spark-flex-row.spark-5-spacing {
    grid-row-gap: 24px;
    flex-direction: column-reverse;
  }

  .spark-container {
    width: 100%;
  }

  .spark-nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }

  .spark-nav-menu {
    max-height: 90vh;
    overflow: scroll;
  }

  .spark-square-menu-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .spark-square-menu-with-links {
    padding-left: 20px;
    padding-right: 20px;
  }

  .spark-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .walsh-brand-block-7 {
    padding-left: 0;
  }

  .waves-grid-hero-3 {
    grid-row-gap: 40px;
  }

  .waves---mega-heading-3 {
    font-size: 56px;
  }

  .waves---subtitle-4 {
    font-size: 22px;
    line-height: 34px;
  }

  .waves---main-container-9 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .icon-3 {
    font-size: 50px;
  }

  .walsh-button-call {
    width: 100%;
    font-size: 16px;
  }
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5em;
  }

  h4 {
    font-size: 1.25rem;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.in-navbar {
    padding-right: 4px;
  }

  .nav-link {
    text-align: left;
    border-bottom: 2px solid #eee;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    height: 50px;
    margin-bottom: 0;
    font-size: 1rem;
    display: flex;
  }

  .nav-menu {
    padding: 0;
  }

  .button {
    width: 100%;
  }

  .button.in-navbar {
    font-size: 1rem;
  }

  .button.in-navbar-copy {
    border-radius: 0;
    font-size: 1rem;
  }

  .section {
    padding-top: 80px;
  }

  .section.black {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.grey {
    padding-top: 80px;
  }

  .price {
    line-height: 1.5;
  }

  .image-wrap {
    opacity: 1;
    padding: 0;
    position: relative;
  }

  .logos-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 20px;
  }

  ._3-columns-grid {
    grid-row-gap: 20px;
  }

  ._3-columns-grid.bottom-margin {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex: none;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-content: start;
    align-self: auto;
  }

  .review-card-name {
    margin-bottom: 4px;
  }

  .review-card-name-wrap {
    flex-direction: column;
  }

  .rating-wrap.in-hero {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .paragraph-smaller.font-color-grey-copy {
    margin-bottom: 15px;
  }

  .no-top-margin {
    margin-bottom: 10px;
  }

  ._2-column-grid {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .feature-card {
    flex-direction: column;
    padding: 20px;
  }

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

  .footer-links-wrap {
    grid-auto-columns: auto;
    display: grid;
  }

  .menu-button {
    align-self: auto;
    padding-top: 0;
    padding-bottom: 10px;
  }

  .circle-image {
    display: none;
  }

  .dots-image.bottom-left {
    filter: hue-rotate(180deg);
  }

  .student-card {
    bottom: -15%;
  }

  .centered-heading {
    margin-bottom: 40px;
    font-size: 2.5rem;
  }

  .review-avatar {
    align-self: center;
    width: 100px;
    height: 100px;
  }

  .review-author-wrap {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .dropdown-toggle {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .dropdown-list-wrap {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .max-15ch {
    font-size: 2.5rem;
  }

  .review-author-div-in-slider {
    margin-bottom: 12px;
    margin-left: 0;
  }

  .rating {
    margin-bottom: 4px;
  }

  .waves---2-inputs {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .waves-form-block-contact-1 {
    align-self: auto;
    margin-bottom: 0;
  }

  .waves---heading-2-no-margins {
    font-size: 34px;
  }

  .waves---section-medium {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .waves---heading-3-no-margins {
    color: var(--black);
    font-size: 22px;
  }

  .waves---paragraph-big-2 {
    text-align: left;
    font-size: 1rem;
  }

  .waves---heading-2-no-margins-2 {
    text-align: left;
    align-self: auto;
    font-size: 2.5rem;
  }

  .waves---section-medium-2 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .waves---2-inputs-2 {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .waves-icon-32 {
    margin-right: 20px;
  }

  .waves-tile-features-2 {
    flex-direction: row;
    align-items: center;
    padding: 20px;
  }

  .waves---master-tiles-features-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .waves---content-sticky-features-2 {
    align-items: center;
  }

  .waves---sticky-halves {
    align-self: stretch;
  }

  .waves---grid-halves-sticky {
    grid-row-gap: 20px;
  }

  .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bold-text, .bold-text-2, .bold-text-3, .bold-text-4, .bold-text-5, .bold-text-6, .bold-text-7, .bold-text-8, .bold-text-9 {
    font-size: 1.5rem;
  }

  .button-copy {
    width: 100%;
    margin-bottom: 10px;
  }

  .student-card-copy {
    inset: 186px 0% 0% auto;
  }

  ._3-columns-grid-copy {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .review-card-name-copy {
    margin-bottom: 4px;
  }

  .flex-copy.vertical {
    background-size: cover;
  }

  ._2-column-grid-copy {
    flex-direction: column-reverse;
    display: flex;
  }

  .student-card-copy-copy {
    inset: 178px 0% 0% auto;
  }

  ._3-columns-grid-copy {
    grid-row-gap: 20px;
  }

  .button-copy-copy {
    width: 100%;
    margin-bottom: 0;
  }

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

  ._2-column-grid-copy {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  ._2-column-grid-copy-copy {
    flex-direction: column-reverse;
    display: flex;
  }

  .container-2-copy {
    margin-top: 0;
    padding: 40px 20px;
  }

  .reviewbtn {
    width: 100%;
    margin-bottom: 10px;
  }

  ._2-column-grid-copy-copy-copy {
    flex-direction: column-reverse;
    display: flex;
  }

  .quick-stack-3 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .image-8 {
    height: 60px;
  }

  .bold-text-11 {
    font-size: 2.1rem;
  }

  .image-13 {
    width: 220px;
  }

  .waves---expand-line {
    flex: none;
  }

  .waves---expand-line.vertical {
    transform-origin: 50%;
    flex: none;
  }

  .waves---expand-icon-wrap {
    flex: none;
  }

  .waves-expanded-text {
    font-size: 16px;
    line-height: 24px;
  }

  .waves---expandable-content {
    flex: 0 auto;
    max-width: none;
  }

  .waves---heading-2-no-margins-3 {
    font-size: 34px;
  }

  .waves---section-medium-3 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .walsh-label-button {
    font-size: 16px;
  }

  .walsh-link-block-orange {
    align-self: center;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-flex-nav-buttons {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .walsh-nav-link-black {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .walsh-toggle-black {
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .walsh-nav-logo {
    height: 24px;
  }

  .walsh-link-block-gray {
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-cta-v-wrapper {
    grid-row-gap: 1.25em;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .walsh-paragraph-small {
    font-size: 1em;
  }

  .walsh-heading-medium {
    font-size: 1.8em;
  }

  .walsh-label-tag {
    font-size: 12px;
  }

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

  .walsh-content-wrapper-gap {
    grid-row-gap: 1.2em;
  }

  .walsh-cta-block-white {
    padding: 3em 1em;
  }

  .walsh-container {
    flex: 0 auto;
    width: 100%;
  }

  .paragraph-5 {
    font-weight: 500;
  }

  .bold-text-11-copy {
    font-size: 1.3rem;
  }

  .heading-7, .heading-8 {
    font-size: 2rem;
  }

  .waves-gradient-hero-1 {
    top: -1px;
  }

  .waves-gradient-hero-1.bottom {
    bottom: -1px;
  }

  .waves-column-hero-1 {
    width: 48%;
  }

  .waves-column-hero-1.column-two, .waves-column-hero-1.column-one {
    flex: none;
  }

  .waves-gallery-hero-1 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .waves---subtitle {
    font-size: 20px;
  }

  .waves---mega-heading-1 {
    font-size: 36px;
  }

  .waves---section-hero-primary {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .field-button-wrapper, .form-question-content {
    width: 100%;
  }

  .form-end-image-block {
    padding: 1rem;
  }

  .form-navigation-buttons {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column wrap;
  }

  .heading-2-2-center {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.5rem;
    line-height: 2.3rem;
    display: block;
  }

  .back-button.button-2 {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .grid-5 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

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

  .email-collector-wrapper {
    flex-direction: column;
    order: -1;
    align-items: stretch;
    width: 100%;
    display: flex;
  }

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

  .image-holder {
    height: 100%;
  }

  .form-step-item {
    height: auto;
  }

  .footer-items {
    display: flex;
  }

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

  .answer-text-25ch {
    max-width: 15ch;
  }

  .heading-2-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.5rem;
    line-height: 2.3rem;
    display: block;
  }

  .form-answer-option-item {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .padding-global {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .grey-line {
    order: 0;
  }

  .next-button.button-2 {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .button-block {
    width: 1005px;
    margin-top: 2rem;
  }

  .button-red {
    width: 100%;
    margin-right: 0;
    padding-left: 3.2rem;
    padding-right: 3.2rem;
    font-size: 1rem;
  }

  .div-block-9 {
    align-items: center;
    display: flex;
  }

  .walsh-link-wrapper, .walsh-label-button-2 {
    font-size: 16px;
  }

  .walsh-link-block-orange-2 {
    align-self: center;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-hero-div-block {
    grid-row-gap: 1.25em;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .walsh-main-paragraph {
    font-size: 1em;
  }

  .walsh-title-tag {
    font-size: 16px;
  }

  .walsh-content-wrap-50 {
    grid-row-gap: 1.25em;
    text-align: center;
    align-items: center;
    padding: 30px;
    font-size: 18px;
  }

  .walsh-col-image-wrapper {
    width: 100%;
  }

  .walsh-flex-horizontal {
    grid-row-gap: 2em;
  }

  .walsh-container-2 {
    flex: 0 auto;
    width: 100%;
  }

  .button-copy-copy-copy {
    width: 100%;
    margin-bottom: 10px;
  }

  .feature-card-copy {
    flex-direction: column;
    padding: 20px;
  }

  ._3-columns-grid-copy-copy {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .text-block-10 {
    font-size: 18px;
    font-weight: 600;
  }

  .text-block-11 {
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
  }

  .text-block-12 {
    font-size: 18px;
    font-weight: 600;
  }

  .quick-stack-6 {
    align-self: stretch;
    margin-bottom: 0;
  }

  .cell-21, .cell-22, .cell-23, .cell-24 {
    align-items: flex-start;
  }

  .bold-text-16 {
    flex: 0 auto;
    font-size: 1rem;
  }

  .bold-text-17 {
    font-size: 1rem;
  }

  .quick-stack-7 {
    border-bottom: 2px solid #e2e2e2;
    padding: 5px 0;
  }

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

  .heading-25 {
    font-size: 1.5rem;
  }

  .cell-26 {
    display: block;
  }

  .heading-26 {
    font-size: 1.5rem;
  }

  .nav-link-copy {
    text-align: left;
    border-bottom: 2px solid #eee;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    height: 50px;
    margin-bottom: 0;
    font-size: 1rem;
    display: flex;
  }

  .nav-menu-copy {
    flex: 0 auto;
    padding: 0;
    display: none;
    overflow: visible;
  }

  .navbar-copy, .waves---nav-cta, .waves-navbar-1 {
    display: none;
  }

  .walsh-label-button-3 {
    font-size: 16px;
  }

  .walsh-link-block-orange-3 {
    align-self: center;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-flex-nav-buttons-2 {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .walsh-nav-link-black-2 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .walsh-toggle-black-2 {
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .walsh-nav-logo-2 {
    height: 24px;
  }

  .feature-card-copy {
    background-image: linear-gradient(to top, #000, #fff0), url('../images/furnace-repair-service-replacement-installation.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    flex-direction: column;
    height: 500px;
    padding: 20px;
    display: flex;
  }

  .feature-card-copy-copy, .feature-card-copy-copy-copy {
    flex-direction: column;
    height: 500px;
    padding: 20px;
    display: flex;
  }

  .feature-card-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy {
    flex-direction: column;
    padding: 20px;
    display: flex;
  }

  .button-copy-copy-copy-copy {
    width: 100%;
    margin-bottom: 10px;
  }

  .feature-card-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy {
    flex-direction: column;
    padding: 20px;
    display: flex;
  }

  .card_gen {
    flex-direction: column;
    padding: 0;
    display: flex;
  }

  .div_generator {
    height: 300px;
  }

  .card_solar {
    flex-direction: column;
    padding: 0;
    display: flex;
  }

  .div_solar {
    height: 300px;
  }

  .card_smart {
    flex-direction: column;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 0;
    display: flex;
  }

  .div_smart {
    height: 300px;
  }

  .div_pool {
    background-position: 0 0, 50% 65%;
    height: 300px;
  }

  .div_fire, .div_duct {
    height: 300px;
  }

  .div_air {
    background-position: 0 0, 50%;
    height: 300px;
  }

  .div_wf {
    height: 300px;
  }

  .div_hp {
    background-position: 0 0, 50% 25%;
    height: 300px;
  }

  .div_hw, .div_c, .div_h {
    height: 300px;
  }

  .waves---heading-3-no-margins-copy {
    color: var(--black);
    font-size: 22px;
  }

  .section-copy {
    padding-top: 20px;
  }

  .section-copy.black {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-copy.grey {
    padding-top: 80px;
  }

  .waves-gradient-hero-2 {
    top: -1px;
  }

  .waves-gradient-hero-2.bottom {
    bottom: -1px;
  }

  .waves-column-hero-2 {
    width: 48%;
  }

  .waves-column-hero-2.column-two, .waves-column-hero-2.column-one {
    flex: none;
  }

  .waves-gallery-hero-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .waves---subtitle-2 {
    font-size: 20px;
  }

  .waves---mega-heading-2 {
    font-size: 36px;
  }

  .waves-content-hero-2 {
    grid-row-gap: 10px;
    align-items: stretch;
  }

  .waves---section-hero-primary-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .waves---mega-heading-2-copy {
    align-self: auto;
    font-size: 50px;
    overflow: auto;
  }

  .heading-28 {
    font-size: 1.25rem;
    font-weight: 700;
  }

  .waves---nav-cta-2 {
    display: none;
  }

  .waves---hamburger-icon-2 {
    font-size: 60px;
  }

  .waves---menu-button-2 {
    width: 60px;
    height: 60px;
  }

  .waves---2-inputs-3 {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .waves---heading-2-no-margins-4 {
    font-size: 34px;
  }

  .waves---section-medium-4 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .waves---heading-2-no-margins-5 {
    font-size: 34px;
  }

  .waves-master-cta-2 {
    padding: 64px 16px;
  }

  .waves-small-image-wrap-gallery-3.last-image-top-grid {
    display: none;
  }

  .waves-bottom-gird-gallery-3 {
    grid-template-columns: .8fr 1.2fr .7fr;
    height: 30vh;
  }

  .waves-top-grid-gallery-3 {
    grid-template-columns: .7fr 1.2fr .8fr;
    width: auto;
    height: 30vh;
    margin-bottom: 16px;
  }

  .waves---section-medium-5 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .div-block-20 {
    display: flex;
    overflow: auto;
  }

  .waves---2-cta-flex {
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .waves---heading-2-no-margins-6 {
    font-size: 34px;
  }

  .waves---content-image-halves {
    align-items: stretch;
  }

  .waves---heading-2-no-margins-7 {
    font-size: 34px;
  }

  .waves---content-image-halves-2 {
    align-items: stretch;
  }

  .waves---section-medium-6 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .waves-master-image-hero-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .waves---subtitle-3 {
    font-size: 20px;
  }

  .waves---heading-1-no-margins {
    font-size: 36px;
    line-height: 110%;
  }

  .waves---section-hero-primary-3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .waves---master-checks-horizontal-2 {
    grid-template-columns: 1fr 1fr;
  }

  .waves-master-cta-5 {
    padding: 64px 16px;
  }

  .waves---heading-3-no-margins-2 {
    font-size: 2rem;
  }

  .waves-tile-feature-1 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-bottom: 4px solid #000;
    flex-direction: column;
  }

  .waves-grid-features-1 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .waves---heading-2-no-margins-8 {
    font-size: 34px;
  }

  .div-block-22 {
    padding-bottom: 15px;
  }

  .div-block-23 {
    width: 60px;
    height: 60px;
  }

  .waves-hero-3-grid-copy {
    flex-direction: column-reverse;
    display: flex;
  }

  .waves---heading-3-no-margins-3, .waves---testimonial-text-big {
    font-size: 22px;
  }

  .waves---section-medium-7 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .walsh-label-button-4 {
    font-size: 16px;
  }

  .walsh-link-block-orange-4 {
    align-self: center;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-flex-nav-buttons-3 {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .walsh-nav-link-black-3 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .walsh-toggle-black-3 {
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .walsh-nav-logo-3 {
    height: auto;
  }

  .walsh-hero-frame-square {
    max-width: 16em;
  }

  .walsh-hero-rail {
    height: 16em;
  }

  .walsh-hero-sub-bg {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .walsh-hero-div-block-2 {
    grid-row-gap: 1.25em;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .walsh-paragraph-serif-left-hero {
    text-align: center;
    font-size: 1.2em;
  }

  .walsh-text-burst {
    background-size: auto 56%;
  }

  .walsh-left-hero-content {
    text-align: center;
    align-items: center;
    padding-top: 30px;
    padding-right: 0;
    font-size: 18px;
  }

  .walsh-container-hero {
    height: 100%;
  }

  .walsh-link-wrapper-2 {
    font-size: 16px;
  }

  .walsh-main-paragraph-2 {
    font-size: 1em;
  }

  .walsh-heading-medium-2 {
    font-size: 1.8em;
  }

  .walsh-label-tag-2 {
    font-size: 12px;
  }

  .walsh-inner-card-bottom {
    grid-row-gap: 1em;
    padding: 0 30px 45px;
  }

  .walsh-rounded-float-image {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .walsh-card-image-float {
    align-items: flex-end;
    height: auto;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .walsh-container-3 {
    flex: 0 auto;
    width: 100%;
  }

  .walsh-label-button-5 {
    font-size: 16px;
  }

  .walsh-link-block-outline {
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-link-block-orange-5 {
    align-self: center;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-cta-v-wrapper-2 {
    grid-row-gap: 1.25em;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .walsh-paragraph {
    font-size: 1.2em;
  }

  .walsh-heading-medium-3 {
    font-size: 1.8em;
  }

  .walsh-content-wrapper-gap-2 {
    grid-row-gap: 1.2em;
  }

  .walsh-cta-block-light-green {
    padding: 3em 2em;
  }

  .walsh-container-4 {
    background-color: #fff;
    flex: 0 auto;
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
  }

  .walsh-inner-rounded-banner-image {
    height: 30em;
    min-height: auto;
  }

  .walsh-link-wrapper-3 {
    font-size: 16px;
  }

  .walsh-link-block-green {
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-hero-div-block-3 {
    grid-row-gap: 1.25em;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .walsh-main-paragraph-3 {
    font-size: 1em;
  }

  .walsh-card-wrapper-image-medium {
    align-items: flex-end;
    height: auto;
  }

  .walsh-inner-card {
    padding: 45px 30px 0;
  }

  .walsh-button-orange {
    justify-content: center;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .walsh-center-h-wrapper {
    font-size: 18px;
  }

  .walsh-icon-check {
    margin-bottom: 0;
  }

  .walsh-list-flex {
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 16px;
  }

  .walsh-text-small {
    font-size: 13px;
  }

  .walsh-price {
    font-size: 40px;
  }

  .walsh-heading-small-alt {
    font-size: 1em;
  }

  .walsh-pricing-card-block {
    padding: 40px 30px;
  }

  .walsh-list-flex-off {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  .walsh-main-paragraph-4 {
    font-size: 1.25em;
  }

  .walsh-heading-regular {
    font-size: 1.4em;
    line-height: 1.2;
  }

  .walsh-inner-card-bottom-2 {
    grid-row-gap: 1em;
    padding: 0 30px 45px;
  }

  .walsh-card-wrapper-image {
    align-items: flex-end;
    height: auto;
  }

  .walsh-hero-frame-square-2 {
    max-width: 16em;
  }

  .walsh-hero-rail-2 {
    height: 16em;
  }

  .walsh-hero-sub-bg-2 {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .walsh-label-button-6 {
    font-size: 16px;
  }

  .walsh-link-block-orange-6 {
    align-self: center;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-hero-div-block-4 {
    grid-row-gap: 1.25em;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .walsh-paragraph-serif-left-hero-2 {
    text-align: center;
    font-size: 1.2em;
  }

  .walsh-text-burst-2 {
    background-size: auto 56%;
  }

  .walsh-left-hero-content-2 {
    text-align: center;
    align-items: center;
    padding-top: 30px;
    padding-right: 0;
    font-size: 18px;
  }

  .walsh-container-hero-2 {
    height: 100%;
  }

  .walsh-container-4-copy {
    flex: 0 auto;
    width: 100%;
  }

  .walsh-button {
    justify-content: center;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .walsh-center-h-wrapper-2 {
    font-size: 18px;
  }

  .walsh-icon-check-2 {
    margin-bottom: 0;
  }

  .walsh-list-flex-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 16px;
  }

  .walsh-text-small-2 {
    font-size: 13px;
  }

  .walsh-price-2 {
    font-size: 40px;
  }

  .walsh-heading-small-alt-2 {
    font-size: 1em;
  }

  .walsh-pricing-inner-card {
    padding: 30px 20px 40px;
  }

  .walsh-list-flex-off-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  .walsh-pricing-inner-card-featured {
    padding: 30px 20px 40px;
  }

  .walsh-inner-tab-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .walsh-tab-rounded {
    text-align: center;
    flex: 1;
    padding: 12px 15px;
    font-size: 1em;
  }

  .features {
    flex: 0 auto;
    width: 100%;
  }

  .walsh-ui-image {
    border-radius: 12px;
  }

  .walsh-hero-inner-float-image {
    border-radius: 12px;
    width: 100%;
    margin-bottom: 0;
  }

  .walsh-link-wrapper-4 {
    font-size: 16px;
  }

  .walsh-link-block-orange-7 {
    align-self: center;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-main-paragraph-5 {
    font-size: 1em;
  }

  .walsh-hero-p-wrapper-2 {
    text-align: left;
  }

  .walsh-content-wrap {
    grid-row-gap: 1.25em;
    text-align: center;
    order: 1;
    justify-content: center;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 18px;
  }

  .walsh-flex-horizontal-2 {
    grid-row-gap: 0em;
    margin-bottom: 2rem;
  }

  .walsh-rounded-container {
    flex: 0 auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .walsh-link-block-orange-8 {
    align-self: center;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-main-paragraph-6 {
    text-align: left;
    font-size: 1em;
  }

  .walsh-main-paragraph-7 {
    font-size: 1em;
  }

  .walsh-heading-regular-2 {
    font-size: 1.4em;
    line-height: 1.2;
  }

  .walsh-inner-card-bottom-3 {
    grid-row-gap: 1em;
    padding: 0 30px 45px;
  }

  .walsh-card-wrapper-image-2 {
    align-items: flex-end;
    height: auto;
  }

  .star-icon-yellow {
    color: var(--button);
  }

  .walsh-padding-image-hero {
    padding-top: 0;
    padding-bottom: 0;
  }

  .walsh-label-button-7 {
    text-align: center;
    flex: 1;
    font-size: 20px;
  }

  .walsh-button-label-wrapper-7 {
    text-align: right;
    flex: 1;
  }

  .walsh-link-block-orange-9 {
    align-self: stretch;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-hero-div-block-5 {
    grid-row-gap: 1.25em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .walsh-paragraph-serif-left-hero-3 {
    text-align: left;
    font-size: 1.2em;
  }

  .walsh-heading-xlarge-white-3 {
    text-align: left;
    font-size: 4em;
  }

  .walsh-left-hero {
    grid-row-gap: 1em;
    text-align: center;
    align-items: center;
    padding-top: 30px;
    font-size: 18px;
  }

  .walsh-main-grid-no-gap-4 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .walsh-container-6 {
    background-image: url('../images/bg-green.svg');
    background-position: 0 0;
    background-size: auto;
    flex: 0 auto;
    width: 100%;
  }

  .walsh-text-field-single {
    text-align: left;
    margin-bottom: 0;
    padding-left: 20px;
  }

  .walsh-form-single {
    align-items: center;
  }

  .walsh-form-wrapper {
    width: 100%;
  }

  .walsh-paragraph-small-2 {
    font-size: 1em;
  }

  .walsh-content-wrapper-gap-3 {
    grid-row-gap: 1.2em;
  }

  .walsh-icon-check-3 {
    margin-bottom: 0;
  }

  .walsh-list-flex-3 {
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 16px;
  }

  .walsh-grid-col-2 {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .walsh-paragraph-2 {
    font-size: 1.2em;
  }

  .walsh-heading-medium-4 {
    font-size: 1.8em;
  }

  .walsh-label-tag-3 {
    font-size: 12px;
  }

  .walsh-tag-2 {
    text-align: left;
  }

  .walsh-cta-block-light-green-2 {
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 3em 20px;
  }

  .walsh-container-7 {
    flex: 0 auto;
    width: 100%;
  }

  .walsh-label-button-8 {
    font-size: 16px;
  }

  .walsh-link-block-orange-10 {
    align-self: center;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-link-block-transparent-1 {
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-flex-nav-buttons-4 {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .walsh-nav-link-white {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .walsh-nav-logo-4 {
    height: 24px;
  }

  .walsh-inner-rounded-banner-image-2 {
    height: 30em;
    min-height: auto;
  }

  .walsh-link-wrapper-5 {
    font-size: 16px;
  }

  .walsh-link-block-green-2 {
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-hero-div-block-6 {
    grid-row-gap: 1.25em;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .walsh-main-paragraph-8 {
    font-size: 1em;
  }

  .walsh-label-button-9 {
    font-size: 16px;
  }

  .walsh-link-block-orange-11 {
    align-self: stretch;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-flex-nav-buttons-5 {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .walsh-nav-link-black-4 {
    text-align: left;
    flex: 1;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 60px;
  }

  .walsh-toggle-black-4 {
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .walsh-nav-logo-5 {
    height: 24px;
  }

  .walsh-float-menu-4 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .walsh-link-wrapper-6 {
    font-size: 16px;
  }

  .walsh-heading-medium-5 {
    font-size: 1.8em;
  }

  .walsh-container-8 {
    flex: 0 auto;
    width: 100%;
  }

  .walsh-label-button-7-copy {
    flex: 0 auto;
    font-size: 16px;
  }

  .walsh-text-small-white {
    font-size: 13px;
  }

  .walsh-button-light-green {
    justify-content: center;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    font-family: Inter, sans-serif;
    font-size: 20px;
  }

  .walsh-text-field-auto {
    text-align: left;
    height: 65px;
  }

  .walsh-form-single-row {
    align-items: center;
  }

  .walsh-paragraph-serif-left-hero-4 {
    text-align: center;
    font-size: 1.2em;
  }

  .walsh-light-text-burst {
    background-size: auto 56%;
  }

  .walsh-heading-xlarge-white-4 {
    font-size: 2.25em;
  }

  .walsh-center-wrapper-gap {
    grid-row-gap: 1em;
    font-size: 18px;
  }

  .walsh-cta-center-wrapper {
    font-size: 18px;
  }

  .walsh-container-padding-large {
    flex: 0 auto;
    width: 100%;
    padding: 4em 2em;
  }

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

  .walsh-footer-grid-social {
    justify-content: center;
    width: 100%;
  }

  .walsh-footer-inner {
    width: 100%;
  }

  .walsh-footer-legal-text {
    font-size: 11px;
  }

  .walsh-heading-small {
    font-size: 1em;
  }

  .walsh-text-field-single-grey {
    text-align: left;
    margin-bottom: 0;
    margin-right: 0;
    padding-left: 20px;
  }

  .walsh-form-single-2 {
    align-items: center;
  }

  .walsh-form-wrapper-2 {
    width: 100%;
  }

  .walsh-main-paragraph-9 {
    font-size: 1em;
  }

  .walsh-logo-footer {
    max-height: 24px;
  }

  .walsh-content-wrapper-gap-4 {
    grid-row-gap: 1.2em;
  }

  .walsh-content-wrapper-white {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .icon-2 {
    font-size: 50px;
  }

  .image-39 {
    height: 200px;
  }

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

  .walsh-container-4-copy {
    background-color: #214f58;
    flex: 0 auto;
    width: 100%;
  }

  .walsh-container01 {
    background-color: #fff;
    flex: 0 auto;
    width: 100%;
  }

  .walsh-link-block-orange-9-copy {
    flex: 1;
    align-self: stretch;
    padding-left: 50px;
    padding-right: 25px;
  }

  .walsh-hero-div-block-5-copy {
    grid-row-gap: 1.25em;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .walsh-card-wrapper-image-medium-2 {
    align-items: flex-end;
    height: auto;
  }

  .walsh-link-wrapper-7 {
    font-size: 16px;
  }

  .walsh-main-paragraph-10 {
    font-size: 1em;
  }

  .walsh-inner-card-2 {
    padding: 45px 30px 0;
  }

  .walsh-container-9 {
    flex: 0 auto;
    width: 100%;
  }

  .walsh-cta-block-light-green-2-copy {
    padding: 3em 20px;
  }

  .waves---nav-cta-3 {
    display: none;
  }

  .waves---hamburger-icon-3 {
    font-size: 50px;
    display: flex;
  }

  .waves---nav-menu-3 {
    border-radius: 16px;
    margin: 20px;
  }

  .waves-right-nav-4 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
  }

  .waves-icon-24 {
    align-self: auto;
    width: 40px;
    height: auto;
  }

  .rebates {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
    margin-bottom: 1em;
    padding: 3em 20px;
  }

  .insulation, .hvac, .windows {
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 3em 20px;
  }

  .text-block-20 {
    display: none;
  }

  .select-field-3 {
    height: 65px;
  }

  .quick-stack-19 {
    padding-top: 0;
    padding-left: 1em;
    padding-right: 1em;
  }

  .quick-stack-20 {
    padding: 0 1em;
  }

  .services {
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 3em 20px;
  }

  .walsh-link-block-green-outline, .walsh-link-block-green-outline-head {
    align-self: stretch;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-label-button-10 {
    font-size: 16px;
  }

  .walsh-link-block-orange-12 {
    align-self: center;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-link-block-transparent-1-2 {
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-flex-nav-buttons-6 {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .walsh-toggle {
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .walsh-nav-link-white-2 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .walsh-nav-logo-6 {
    height: 24px;
  }

  .menu-icon_component {
    color: var(--white);
  }

  .uui-navbar04_dropdown-content-wrapper {
    width: 100%;
  }

  .uui-navbar04_dropdown-content-right {
    max-width: none;
  }

  .uui-navbar04_dropdown-link {
    padding-left: 0;
  }

  .uui-navbar04_dropdown-content-left {
    grid-template-columns: 1fr;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .walsh-link-block-green-outline-head-copy, .walsh-link-block-orange-9-copy {
    align-self: stretch;
    padding-left: 30px;
    padding-right: 25px;
  }

  .uui-cta03_image-wrapper {
    overflow: visible;
  }

  .uui-signup-form_wrapper {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

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

  .spark-input.spark-with-a-inner-shadow, .spark-form-label-and-input {
    width: 100%;
  }

  .spark-flexed-form {
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .spark-flex-row {
    align-items: flex-start;
  }

  .spark-container.spark-primary-with-rounded-corners {
    padding: 16px;
  }

  .spark-simple-menu-button {
    padding-left: 0;
  }

  .spark-nav-link {
    margin-bottom: .5rem;
  }

  .spark-nav-menu {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    max-height: 90vh;
    padding: 1rem .5rem;
  }

  .spark-square-menu-inner {
    background-color: var(--spark-library--white);
    padding-top: 0;
    padding-bottom: 0;
  }

  .spark-square-menu-with-links {
    padding-right: 0;
  }

  .spark-section {
    padding: 64px 20px;
  }

  .spark-section h1 {
    font-size: 3rem;
  }

  .spark-section h2 {
    font-size: 2.5rem;
  }

  .walsh-link-block-orange-13 {
    align-self: center;
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-label-button-11 {
    font-size: 16px;
  }

  .walsh-nav-logo-7 {
    height: auto;
  }

  .walsh-nav-menu-green {
    background-color: var(--walsh--walsh-dark-green);
    padding-top: 5px;
  }

  .walsh-nav-link-white-3 {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 0;
    font-family: Inter, sans-serif;
  }

  .walsh-toggle-2 {
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .walsh-flex-nav-buttons-7 {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .waves---section-hero-primary-4 {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .waves---mega-heading-3 {
    font-size: 56px;
    line-height: 75px;
  }

  .waves---subtitle-4 {
    font-size: 20px;
  }

  .waves---mg-top-38 {
    align-self: stretch;
  }

  .waves-gradient-hero-3 {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    top: -1px;
  }

  .waves-gradient-hero-3.bottom {
    bottom: -1px;
  }

  .waves-column-hero-3 {
    width: 48%;
  }

  .waves-column-hero-3.column-two, .waves-column-hero-3.column-one {
    flex: none;
  }

  .waves-gallery-hero-3 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .icon-3 {
    font-size: 50px;
  }

  .walsh-button-call {
    justify-content: center;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    font-family: Inter, sans-serif;
    font-size: 20px;
  }

  .cell-43 {
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 1rem;
  }
}

#w-node-_1f6a5ad1-9549-fceb-6938-3102baf97f0d-298baeed {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_1f6a5ad1-9549-fceb-6938-3102baf97f16-298baeed {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: stretch center;
}

#w-node-_8940d79b-ae88-ebe0-21d0-4dad643d294e-298baeed {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-c826a42d-156f-bb4e-8e46-4929bbf596b1-298baeed {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-b58ff1a1-5d4a-e626-6206-b0a06e722ef8-298baeed {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_71d055f1-eb9e-1be9-8817-3573781e9e64-298baeed, #w-node-_7d7ee551-d1a1-89e9-5eb9-1b1f7a04fb03-298baeed {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-a084b63f-4685-e61c-e5b0-f19a95715a7e-298baeed, #w-node-_0643e525-b298-9a1d-41ea-9c2513f41510-298baeed {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-f3abeefa-ae30-e396-cdba-b1e9e54b7a9d-298baeed {
  grid-area: 1 / 3 / 2 / 11;
}

#w-node-f3abeefa-ae30-e396-cdba-b1e9e54b7a9e-298baeed {
  grid-area: 1 / 3 / 2 / 11;
  justify-self: center;
}

#w-node-bcb519cf-105b-ef15-88b1-f77ca56e1926-298baeed {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 1280px) {
  #w-node-c7ee41fd-2729-26df-c386-96ac5dd6c565-9ea95ec4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: start end;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_8940d79b-ae88-ebe0-21d0-4dad643d294e-298baeed, #w-node-c826a42d-156f-bb4e-8e46-4929bbf596b1-298baeed {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_71d055f1-eb9e-1be9-8817-3573781e9e64-298baeed, #w-node-_7d7ee551-d1a1-89e9-5eb9-1b1f7a04fb03-298baeed {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-a084b63f-4685-e61c-e5b0-f19a95715a7e-298baeed {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-a084b63f-4685-e61c-e5b0-f19a95715a87-298baeed {
    order: -9999;
  }

  #w-node-_0643e525-b298-9a1d-41ea-9c2513f41510-298baeed {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0643e525-b298-9a1d-41ea-9c2513f41518-298baeed {
    order: -9999;
  }

  #w-node-f3abeefa-ae30-e396-cdba-b1e9e54b7a9d-298baeed {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-f3abeefa-ae30-e396-cdba-b1e9e54b7a9e-298baeed {
    grid-column: 1 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_71d055f1-eb9e-1be9-8817-3573781e9e64-298baeed, #w-node-_7d7ee551-d1a1-89e9-5eb9-1b1f7a04fb03-298baeed {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-c7ee41fd-2729-26df-c386-96ac5dd6c565-9ea95ec4 {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_8940d79b-ae88-ebe0-21d0-4dad643d294e-298baeed, #w-node-_71d055f1-eb9e-1be9-8817-3573781e9e64-298baeed, #w-node-_7d7ee551-d1a1-89e9-5eb9-1b1f7a04fb03-298baeed, #w-node-bcb519cf-105b-ef15-88b1-f77ca56e1926-298baeed {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-c7ee41fd-2729-26df-c386-96ac5dd6c565-9ea95ec4 {
    grid-area: 1 / 1 / 2 / 3;
    justify-self: start;
  }
}


