/* Font face */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('https://www.lean-labs.com/hubfs/LL%20V4.1/fonts/Poppins-Regular.woff') format('woff');
}
/*@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url('https://www.lean-labs.com/hubfs/LL%20V4.1/fonts/Poppins-Medium.woff') format('woff');
}
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url('https://www.lean-labs.com/hubfs/LL%20V4.1/fonts/Poppins-SemiBold.woff') format('woff');
}
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url('https://www.lean-labs.com/hubfs/LL%20V4.1/fonts/Poppins-Bold.woff') format('woff');
}*/
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: optional;
  src: url('https://www.lean-labs.com/hubfs/LL%20V4.1/fonts/Poppins-ExtraBold.woff') format('woff');
}
.offer-sticky.fixed {
  position: fixed;
  width: 100%;
  bottom: 0;
}
.offer-sticky {
  display: flex;
  position: relative;
  background-color: var(--white);
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  gap: var(--gutter);
  z-index: 99;
  box-shadow: 0px -20px 100px rgb(0 0 0 / 10%);
  padding: 0.5rem 15px;
}
.offer-sticky .offer-info {
  flex-direction: column;
  gap: var(--gutter);
  display: flex;
  align-items: center;
}
.offer-sticky .offer-info p {
  text-align: center;
  line-height: 24px;
}
.offer-sticky .offer-image-container img {
  margin-top: -3.6rem;
  display: none;
}
.offer-sticky .offer-image-container {
  margin-right: 0;
}
.offer-sticky .offer-close {
  position: absolute;
  right: 1rem;
}

.team-image-grid {
  display: grid;
  gap: 16px;
}
.team-image-item {
  display: grid;
  overflow: hidden;
  max-width: 100%;
  position: relative;
  visibility: hidden;
}
.team-image-item.show {
  visibility: visible;
  animation: teamImage-show 1s cubic-bezier(0.83, 0, 0.17, 1) forwards;
  width: 100%;
} 
.team-image-item.show .image-wiper {
  position: absolute;
  top: 0;
  background-color: var(--primary);
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  animation: wiper 2.5s cubic-bezier(0.83, 0, 0.17, 1) forwards;
  will-change: transform;
}
.team-image-item.show .team-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  animation: image-scale 2.5s cubic-bezier(0.83, 0, 0.17, 1) forwards;
  position: relative;
  transform: scale3d(1.2, 1.2, 1);
  will-change: transform;
  transform-origin: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row .card-container {
  padding: 0.5rem 0;
  max-width: 100%;
  flex: 0 0 100%;
}
.row .card {
  position: relative;
  background-size: cover;
  background-position: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  border-radius: 0;
  border: 1px solid;
  border-color: #e5e7ea;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 4px solid #EBF4F5;
  border-radius: 0.25rem;
  text-align: center;
  border: 0;
  padding: 1rem 0;
}
.row .card .card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.row .card .card-inner .card-image {
  padding-bottom: 1.5625rem;
}
.row .card .card-inner .card-image svg {
  transform: scale(0.8);
}
.row .card .card-inner .text-wrapper {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
h2.med{
  text-align: center;
}
/* Reset styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
}
.two-columns ul.overcome-list li {
  font-size: var(--p-font-size);
}
.two-columns ul.overcome-list li svg {
  width: 15px;
  position: relative;
  top: 20%;
}
html {
  scroll-behavior: smooth;
}

@property --offset {
  syntax: '<length>';
  inherits: false;
  initial-value: 4px;
}

::selection {
  background: var(--yellow);
  color: var(--secondary);
}

a {
  text-decoration: none;
  color: inherit;
}
.underlined {
  text-decoration: underline !important;
  text-decoration-thickness: 20% !important;
  text-decoration-color: var(--primary) !important;
  text-underline-offset: var(--offset) !important; 
  transition: --offset 150ms ease, text-decoration-color 150ms ease, color 150ms ease;
}
.underlined:hover {
  --offset: 8px;
}
.simple-link {
  text-decoration: underline;
}
a {
  transition: color 250ms ease;
}
a.button {
  font-size: var(--a-button-font-size);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem;
}
a:hover {
  color: var(--primary) !important;
}
a.button:hover svg {
  fill: var(--primary);
}
a.button svg {
  width: 1.5rem;
  aspect-ratio: 1;
  transition: fill 250ms ease;
}

button {
  border: 0;
  background-color: transparent;
}
button a:hover {
  color: currentColor;
}

video {
  width: 100%;
  cursor: pointer;
}

.video-element {
  box-shadow: 0 .3125rem 1.25rem rgb(0 0 0 / 10%);
  transition: transform 250ms ease;
}
.video-element:hover {
  transform: scale(1.05);
}

:root {
  --primary: #F84756;
  --red: #C63945;
  --primary-dark: #BF0010;
  --secondary: #252A3E;
  --tertiary: #1A1E2E;
  --light-grey: #F7F9FA;
  --green: #30FCD4;
  --light-green: #EBF4F5;
  --lighter-green: #B0BFC0;
  --yellow: #FFE46B;
  --light-yellow: #FFF4C0;
  --light-blue: #8CE5FA;
  --links: #1ACBF6;
  --white: #FFF;
  --gutter: 16px;
  --header-height: 7.5625rem;
  --padding: 5rem;
  --h1-font-size: 1.625rem;
  --h2-font-size: 1.625rem;
  --h2-font-size-large: 4.5rem;
  --h3-font-size: 1.5rem;
  --h4-font-size: 1.25rem;
  --h5-font-size: .8125rem;
  --h6-font-size: .6875rem;
  --p-font-size: .8125rem;
  --p-tiny-font-size: .6875rem;
  --p-small-font-size: 1rem;
  --p-lead-font-size: 1rem;
  --p-desc-font-size: 0.875rem;
  --a-button-font-size: .875rem;
  --announcement-bar-height: 2.3125rem;
}

::before, ::after {
  box-sizing: border-box;
}

.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-tertiary {
  background-color: var(--tertiary);
}
.bg-light-green {
  background-color: var(--light-green);
}
.bg-yellow {
  background-color: var(--yellow);
}
.bg-light-yellow {
  background-color: var(--light-yellow);
}
.bg-light-blue {
  background-color: var(--light-blue);
}
.bg-white {
  background-color: var(--white);
}
.fill-primary {
  fill: var(--primary);
}
.fill-secondary {
  fill: var(--secondary);
}
.fill-light-green {
  fill: var(--light-green);
}
.fill-yellow {
  fill: var(--yellow);
}
.fill-light-yellow {
  fill: var(--light-yellow);
}
.fill-light-blue {
  fill: var(--light-blue);
}
.fill-white {
  fill: var(--white);
}
primary,
.text-primary {
  color: var(--primary);
}
red,
.text-red {
  color: var(--red);
}
.text-secondary {
  color: var(--secondary);
}
.text-tertiary {
  color: var(--tertiary);
}
.text-light-green {
  color: var(--light-green);
}
.text-green {
  color: var(--green);
}
.text-yellow {
  color: var(--yellow);
}
.text-light-yellow {
  color: var(--light-yellow);
}
.text-light-blue {
  color: var(--light-blue);
}
.text-white {
  color: var(--white);
}
.text-links {
  font-weight: 800;
  color: var(--links);
}
.module {
  position: relative;
  transition: padding-left 500ms ease, padding-right 500ms ease;
}
.btn--outline-secondary {
  border: 3px solid var(--secondary);
  color: var(--secondary);
  text-shadow: 0px 0px 0!important;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}
.btn-sm {
  font-size: 1rem!important;
}
.container-med {
  max-width: 1280px;
}
.module::before, .module::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: 7;
  width: 0;
  height: 100%;
  transition: border-width 500ms ease, border-color 500ms ease;
}
.module::before {
  left: 0;
}
.module::after {
  right: 0;
}
.module::before, .module:after {
  border-left: 0 solid var(--primary);
}
.module.bg-white::before, .module.bg-white::after {
  border-left: 0 solid var(--light-grey);
}
.module.bg-tertiary::before, .module.bg-tertiary::after {
  border-left: 0 solid var(--secondary);
}
.module.bg-light-blue::before, .module.bg-light-blue::after {
  border-left: 0 solid var(--links);
}
.module.bg-light-green::before, .module.bg-light-green::after {
  border-left: 0 solid var(--lighter-green);
}
.module.bg-light-yellow::before, .module.bg-light-yellow::after {
  border-left: 0 solid var(--primary);
}
.module.bg-light-grey::before, .module.bg-light-grey::after {
  border-left: 0 solid var(--light-grey);
}
.module.header.header--transparent::before, .module.header.header--transparent::after {
  border-left: 0 solid var(--secondary);
}

.highlighted-title-text, .search-results .hs-search-highlight {
  background: var(--secondary);
  color: var(--white);
  white-space: nowrap;
  position: relative;
}
.highlighted-title-text::before,
.highlighted-title-text::after,
.search-results .hs-search-highlight::before,
.search-results .hs-search-highlight::after {
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  aspect-ratio: 8 / 40;
}
.highlighted-title-text::before,
.search-results .hs-search-highlight::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 40' style='enable-background:new 0 0 8 40' xml:space='preserve'%3E%3Cpath d='M8 0v40H0L8 0z' style='fill:%23252a3e'/%3E%3C/svg%3E") no-repeat;
  left: 0;
  transform: translateX(-95%);
}
.highlighted-title-text::after,
.search-results .hs-search-highlight::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 40' style='enable-background:new 0 0 8 40' xml:space='preserve'%3E%3Cpath d='M0 40V0h8L0 40z' style='fill:%23252a3e'/%3E%3C/svg%3E") no-repeat;
  right: 0;
  transform: translateX(90%);
}
.highlighted-title-text-yellow {
  background: #FFFF99;
  color: var(--secondary);
  white-space: nowrap;
  position: relative;
}
.highlighted-title-text-yellow::before,
.highlighted-title-text-yellow::after {
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  aspect-ratio: 8 / 40;
}
.highlighted-title-text-yellow::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0V0V40H0L8 0Z' fill='%23FFFF99'/%3E%3C/svg%3E%0A");
  left: 0;
  transform: translateX(-95%);
}
.highlighted-title-text-yellow::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40V40V0H8L0 40Z' fill='%23FFFF99'/%3E%3C/svg%3E%0A");
  right: 0;
  transform: translateX(90%);
}

/* Common Styles */
.landing-logo-container {
  display: flex;
  flex-direction: column;
  gap: calc(var(--gutter) / 2);
  align-items: center;
  max-width: 1100px;
} 

.landing-logo-container img {
  padding-top: 0.5rem;
  max-width: 140px;
}
.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

ul, li {
  list-style-type: none;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: 800;
}
h2 {
  font-size: var(--h2-font-size);
  font-weight: 800;
}
h3 { 
  font-size: var(--h3-font-size);
  font-weight: 800;
}
h4 {
  font-size: var(--h4-font-size);
  font-weight: 400;
  line-height: 1.45;
}
h5 {
  font-size: var(--h5-font-size);
  font-weight: 400;
  line-height: 1.46;
}
h6 {
  font-size: var(--h6-font-size);
  line-height: 1.25;
}
p {
  font-size: var(--p-font-size);
  line-height: 1.5;
}
p.tiny {
  font-size: var(--p-tiny-font-size);
  line-height: 1.45;
}
p.small {
  font-size: var(--p-font-size);
}
p.lead {
  font-size: var(--p-lead-font-size);
  line-height: 2.1;
}
p strong {
  font-weight: 800;
}
.display-4 {
  font-size: 2.125rem;
  font-weight: 800;
}
blockquote {
  font-size: var(--p-font-size);
  font-style: italic;
  line-height: 2;
}
input[type="text"], input[type="email"], input[type="tel"] {
  border-radius: 0rem;
  box-shadow: 0 .5rem .5rem 0 #00000029 inset;
  padding: .3125rem 0;
  max-width: 21.4375rem;
  border: 3px solid var(--secondary);
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary);
  text-align: center;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-1, .display-2, .display-3, .display-4, p {
  color: var(--secondary);
}
.subheadline {
  font-size: .8125rem;
  font-weight: 400;
  line-height: 1.23;
  text-transform: uppercase;
  letter-spacing: .2rem;
  flex-basis: 100%;
}

.btn, .hbspt-form input[type="submit"], .sr-form input[type="submit"] {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  border-radius: 6.25rem;
  max-width: 21.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-shadow: 0 3px 0px rgb(0 0 0 / 25%);
  cursor: pointer;
  transition: background-color 250ms ease, transform 250ms ease;
}
.btn a {
  padding: .5rem 3.5rem;
  line-height: 1.2;
}
.btn:hover {
  transform: scale(1.05);
}
.btn svg {
  filter: drop-shadow(0 .25rem 0 rgb(0 0 0 / .25));
  transition: all 250ms ease;
}
.btn--open .caret-down-rounded {
  filter: drop-shadow(0 -.25rem 0 rgb(0 0 0 / .25));
  transform: rotate(180deg);
}
.btn--primary, .btn--secondary {
  border-radius: 6.25rem;
}
.btn--height {
  height: 64px;
}
.btn--secondary.btn--open, .btn--secondary:hover {
  background-color: var(--primary);
}
.btn-get-started {
  display: none;
}
.btn--tiny a {
  font-size: inherit;
  padding: .5rem 1rem;
}
.caret-down-rounded {
  width: 1.5rem;
  height: 1.5rem;
}
.underline-container {
  position: relative;
  z-index: 5;
  display: inline-flex;
}
.underline {
  transition: all 750ms ease;
  position: absolute;
  left: -.3125rem;
  bottom: 0;
  z-index: -1;
}
.line-underline {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.underline--active.line-underline {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.circle-underline {
  width: 125%;
  left: -12%;
  bottom: -8%;
}
.circle-underline path {
  transition: all 250ms ease;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}
.underline--active.circle-underline path {
  stroke-dashoffset: 1000;
}
.highlight-container {
  padding: 0 calc(var(--gutter) * 2);
}
.highlight {
  left: 0;
  width: 95%;
  height: 70%;
  bottom: 15%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, currentColor 50%, rgba(255, 255, 255, 1) 100%);
  transform: skew(-40deg, 0deg);
}
.highlight--title {
  left: -15%;
  width: 130%;
}
.text-center {
  text-align: center;
}
.meetings-iframe-container {
  width: 90%;
}
.module-padding {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}
.module-padding-half {
  padding-top: calc(var(--padding) / 2);
  padding-bottom: calc(var(--padding) / 2);
}
.module-padding-top {
  padding-top: var(--padding);
}
.module-padding-bottom {
  padding-bottom: var(--padding);
}
.module-padding-half-top {
  padding-top: calc(var(--padding) / 2);
}
.module-padding-half-bottom {
  padding-bottom: calc(var(--padding) / 2);
}
.module-gutter {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.module-gutter-top {
  padding-top: var(--gutter);
}
.module-gutter-bottom {
  padding-bottom: var(--gutter);
}
.module-container-full {
  max-width: 100%;
}
.module-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  max-width: 69.375rem;
  width: 100%;
  margin: auto;
  gap: var(--gutter);
  position: relative;
  z-index: 6;
}
.module-container--small {
  max-width: 46.875rem;
}
.module-container--medium {
  max-width: 57.5rem;
}
.module-container--medium-small {
  max-width: 75rem;
}
.module-container--medium-large {
  max-width: 100rem;
}
.module-container--border {
  padding: 0rem 0rem 2rem 0rem;
  border: 0px solid var(--secondary);
  max-width: 100%;
  align-items: center;
  z-index: auto;
}
.module-container--border .header-container {
  position: relative;
}
.module-container--border .header-container .header {
  padding: calc(var(--gutter)/2);
}
.module-container--large {
  max-width: 110rem;
}
.module-container--nogap {
  gap: 0;
}
.module-container + .module-container {
  margin-top: var(--gutter);
}
.module-container--mmtyp {
  background: var(--secondary) url(https://www.lean-labs.com/hubfs/vector-bg.png) 5rem 100% / 875px 769px no-repeat;
  gap: 6.25rem;
}
.text-align-left {
  text-align: left;
  align-items: flex-start;
}
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dotted-bg {
  background: url(https://www.lean-labs.com/hubfs/LL%20V4.1/dotted-bg.png) no-repeat 0 0 / 100%;
}
.main-content > .module:first-child {
  padding-top: var(--header-height);
}
.main-content > .module:first-child.no-padding {
  padding-top: 9rem;
}
.nav__item {
  font-size: .925rem;
  font-weight: 400;
  color: var(--secondary);
  text-underline-offset: var(--offset);
  text-decoration: underline transparent 20%;
  transition: --offset 250ms ease, text-decoration-color 250ms ease, color 250ms ease;
}
.nav__item:hover,
.nav__item--active {
  color: var(--primary);
  text-decoration-color: var(--primary);
  --offset: 8px;
}

@supports not (background: paint(something)) {
  .nav__item {
    transition: text-underline-offset 250ms ease, text-decoration-color 250ms ease, color 250ms ease;
  }

  .nav__item:hover {
    text-underline-offset: 8px;
  }
}

.logo {
  width: 9.5rem;
  height: 3.1875rem;
  fill: var(--secondary);
  transition: fill 2s ease;
}

/* Header */
.header-container {
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  transition: top 500ms ease, padding-top .5s ease;
}
.header {
  padding: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  gap: 1rem;
  transition: background-color 250ms ease, padding-left 500ms ease,padding-right 500ms ease;
}
.header > a {
  font-size: 0;
}
.header--transparent .nav__main-nav .nav__item:hover, .header--transparent.header--scroll .nav__main-nav .nav__item:hover {
  color: var(--primary);
}
.header--transparent .menu {
  border: 2px solid var(--white);
  transition: border 250ms ease 300ms;
}
.header--transparent .menu.open {
  border: 2px solid var(--secondary);
}
.header--transparent .menu__line {
  background-color: var(--white);
  transition: background-color 250ms ease 300ms, transform 250ms ease;
}
.header--transparent .logo {
  fill: var(--white);
}
.header.header--scroll {
  background-color: var(--white);
}
.header.header--transparent.header--scroll .logo {
  fill: var(--secondary);
}
.header--transparent.header--scroll .menu {
  border-color: var(--secondary);
}
.header--transparent.header--scroll .menu__line {
  background-color: var(--secondary);
}
.header.header--scroll {
  box-shadow: .9375rem 1.5625rem 3.75rem rgb(0 0 0 / 10%);
}
.header--scroll .announcement-bar {
  margin-top: calc(-1 * var(--announcement-bar-height));
}
.announcement-bar + .header-container.header--scroll {
  padding-top: 0;
}

.nav__additional-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0 1rem;
}
.nav__additional-info img {
  width: 4rem;
  height: 4rem;
}

/* Footer */
.footer {
  padding: 2.5rem 0 var(--gutter);
  position: relative;
}
.footer-logo {
  padding: var(--gutter) 0 1rem;
  display: block;
  width: 3.75rem;
  overflow: hidden;
  transition: width 500ms ease;
}
.footer-logo:hover {
  width: 11.875rem;
}
.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}
.footer__col {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
ul.footer__col {
  flex: 0 0 calc(50% - .9375rem);
}
.footer__col .button {
  padding-left: 0;
}
.footer__col a:not(.button), .footer__col-title {
  font-size: .8125rem;
  font-weight: 400;
}
.footer__cols a {
  --offset: 2px;
  text-underline-offset: var(--offset);
  text-decoration: underline transparent 20%;
  transition: --offset 250ms ease, text-decoration-color 250ms ease, color 250ms ease;
}
.footer__cols a:hover {
  text-decoration-color: var(--primary);
  --offset: 4px;
}

.footer__col-left .git {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__col-left .git:hover svg {
  fill: var(--primary);
  transform:  translateX(.3125rem);
}
.footer__col-left .git svg{
  width: 1rem;
  aspect-ratio: 1;
  transition: fill 250ms ease, transform 250ms ease;
}
.footer__col-left p a:hover {
  --offset: 4px;
}
.footer__col strong {
  font-weight: 400;
}
.footer__col-title {
  font-weight: 800;
}
.footer-bar {
  position: relative;
  bottom: 100%;
  left: 0;
  right: 0;
  z-index: 7;
  display: flex;
  margin: -5rem auto 5rem;
  flex-direction: column;
}
.footer-bar__title {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-bar--variant {
  margin: auto;
}
.footer-bar a {
  flex-wrap: wrap;
  flex: 1 0 0;
  justify-content: flex-end;
  flex-direction: column;
}
.footer-bar img {
  transition: transform 250ms ease;
}
.footer-bar a:hover img {
  transform: scale(1.05);
}
.footer-min .footer-container {
  display: flex;
  justify-content: center;
  text-align: center;
}
.footer-simple {
  padding: var(--gutter);
  background: var(--light-green);
  margin-top: var(--gutter);
  position: relative;
  overflow: hidden;
}
.footer-simple:before {
  content: '';
}
.footer-simple .footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.shape-container {
  background: var(--white);
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 1.5;
  z-index: 7;
  clip-path: url(#path3);
}
.arrow-up {
  width: .75rem;
  margin-left: .625rem;
}
.easter-egg-container {
  position: relative;
}
.easter-egg {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  z-index: 10;
  left: 0;
  width: 100%;
}
.easter-egg:hover .announcement-bar {
  transform: translateY(0);
}

/* Hero module */
.scroll-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  cursor: pointer;
  will-change: transform;
  transition: transform 500ms ease;
}
.scroll-container:hover {
  transform: scale(1.2);
}
.scroll-container__button {
  width: 1.5rem;
  position: relative;
  top: 0;
  animation: bounce 1s ease infinite;
  will-change: transform;
}

/* Announcement bar */
.announcement-bar {
  text-align: center;
  transition: margin-top 500ms ease, background-color 500ms ease;
}
.announcement-bar a {
  font-weight: 400;
  display: block;
  padding: .625rem .3125rem;
}
.announcement-bar a span{
  text-decoration: underline;
}
.announcement-bar:hover {
  background-color: var(--primary);
}
.announcement-bar:hover::before, .announcement-bar:hover::after {
  border-left-color: var(--primary-dark);
}
.announcement-bar:hover a {
  color: var(--white);
}
.announcement-bar + div .header-container {
  padding-top: var(--announcement-bar-height);
}
.announcement-bar--hidden {
  transition: transform 250ms ease;
  transform: translateY(4rem);
}

/* Stats */
.stats {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.stats-bg {
  /*background: url(https://www.lean-labs.com/hubfs/LL%20V4.1/home-bg.png) no-repeat center 21.875rem / 74.0625rem;*/
  position: absolute;
  top: 0;
}
.team-members-container {
  position: relative;
}
.team-members {
  display: flex;
  justify-content: center;
  text-align: center;
  user-select: none;
  transition: all 250ms ease;
}
.team-members.odd {
  transform: translateX(-2.5625rem);
}
.team-members li {
  flex: 0;
  opacity: .5;
  cursor: pointer;
  padding: 2.5rem 0;
  -webkit-tap-highlight-color: transparent;
}
.team-members li::after {
  content: '';
  background-color: var(--white);
  box-shadow: 0 .3125rem 1.25rem rgb(0 0 0 / 10%);
  border-radius: 1rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  min-width: 11.0625rem;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  transition: all 500ms ease;
}
.team-members li.active {
  position: relative;
  z-index: 5;
  opacity: 1;
  min-width: 11.0625rem;
}
.team-members li.active::after {
  opacity: 1;
}
.team-members li.active .team-members__info {
  opacity: 1;
  max-width: 100%;
  max-height: 10rem;
}
.team-members li + li {
  margin-left: -.8125rem;
}
.team-members img {
  width: 6rem;
  mix-blend-mode: multiply;
  max-width: none;
}
.careers-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 6.0625rem;
  height: 6.0625rem;
  border-radius: 100%;
  border: 1px solid var(--secondary);
}
.careers-button-text {
  font-weight: 800;
  text-decoration: underline;
}
.team-members__info {
  opacity: 0;
  max-width: 0;
  max-height: 0;
  margin: auto;
  overflow: hidden;
}
.team-members__navigation {
  position: absolute;
  bottom: 2.75rem;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  width: 15rem;
  display: flex;
  justify-content: space-between;
}
.team-members__navigation svg {
  cursor: pointer;
  width: 1.5625rem;
  height: 1rem;
}
.stats__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.28;
  opacity: 0;
}
.stats__numbers {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.stats__numbers p {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.stats__number {
  flex: 1 0 50%;
  padding: 1.75rem 1.4375rem;
}
.stats__numbers .underline-container {
  padding-bottom: .9375rem;
}
.stats__stat {
  font-family: inherit;
}

/* Clients */
.clients {
  margin-bottom: var(--gutter);
}
.clients-inner {
  display: flex;
  align-items: center;
  gap: 12.5rem;
  animation: marquee 50s linear infinite;
  margin-bottom: calc(-1 * (var(--gutter)));
}
.clients img {
  max-width: none;
}
.clients svg, .clients img {
  transition: all 250ms ease;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-top: 3.5rem;
}
.clients-logos picture {
  flex: 0 0 calc(25% - 2rem);
}
.clients-hero-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 0rem;
}
.clients-hero-logos.small{
  max-width: 768px;
}
.clients-hero-logos picture {
  flex: 0 0 calc(25% - 0.5rem);
  align-items: center;
  justify-content: center;
  display: flex;
}
.client-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter);
}
.client-grid__item {
  position: relative;
  flex-basis: calc(50% - var(--gutter) / 2);
}
.client-grid__overlay {
  background-color: transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  transition: background-color 500ms ease;
}
.client-grid__overlay.hubspot:hover {
  background-color: rgba(255, 122, 89, 0.8);
}
.client-grid__overlay.rocketspace:hover {
  background-color: rgba(89, 154, 255, 0.8);
}
.client-grid__overlay.highfidelity:hover {
  background-color: rgba(254, 66, 167, 0.8);
}
.client-grid__overlay.eztexting:hover {
  background-color: rgba(0, 46, 93, 0.8);
}
.client-grid__overlay.qualio:hover {
  background-color: rgba(0, 108, 216, 0.8);
}
.client-grid__overlay.barometer:hover {
  background-color: rgba(32, 53, 81, 0.8);
}
.client-grid__overlay.campaigndrive:hover {
  background-color: rgba(12, 35, 64, 0.8);
}
.client-grid__overlay.thepredictiveindex:hover {
  background-color: rgba(48, 37, 96, 0.8);
}
.client-grid__overlay.tefl:hover {
  background-color: rgba(255, 148, 0, 0.8);
}
.client-grid__overlay.atlantech:hover {
  background-color: rgba(207, 30, 75, 0.8);
}
.client-grid__overlay.integrate:hover {
  background-color: rgba(26, 60, 75, 0.8);
}
.client-grid__overlay.hirevibe:hover {
  background-color: rgba(63, 195, 128, 0.8);
}
.client-grid__overlay.smartmail:hover {
  background-color: rgba(52, 53, 81, 0.8);
}
.client-grid__overlay.voltdb:hover {
  background-color: rgba(64, 82, 100, 0.8);
}
.client-grid__overlay.sentryone:hover {
  background-color: rgba(196, 18, 48, 0.8);
}
.client-grid__overlay.precisionhawk:hover {
  background-color: rgba(193, 39, 44, 0.8);
}
.client-grid__overlay.distilnetworks:hover {
  background-color: rgba(37, 66, 82, 0.8);
}
.client-grid__overlay.driveninsights:hover {
  background-color: rgba(35, 139, 207, 0.8);
}
.client-grid__overlay.days:hover {
  background-color: rgba(232, 106, 47, 0.8);
}
.client-grid__overlay.crowdflower:hover {
  background-color: rgba(0, 70, 112, 0.8);
}
.client-grid__overlay.briantracy:hover {
  background-color: rgba(243, 201, 63, 0.8);
}
.client-grid__overlay:hover p {
  max-height: 30rem;
}
.client-grid__overlay p {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
  margin-top: 1rem;
  display: none;
  transition: max-height 500ms ease;
}

/* Step boxes */
.step-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.step-box-container__inner {
  margin-bottom: var(--gutter);
}
.step-box {
  padding: 2.5rem var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.step-box p {
  font-size: var(--p-small-font-size);
}
.step-box svg {
  display: none;
}

/* Offer module */
.offer-bg {
  padding-top: calc(var(--padding) / 2);
  position: relative;
  padding-bottom: 20%;
  overflow: hidden;
}
.offer-bg .module-container {
  z-index: 9;
}
.shape {
  position: absolute;
  bottom: calc(100% - 1px);
  z-index: 8;
}

/* Form module */
.form-container,
.drop-content-container {
  box-shadow: 0 .3125rem 1.25rem 0 #0000001a;
  padding: 0rem;
  width: 100%;
  background: var(--white);
}
.form,
.drop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  border: 4px solid var(--secondary);
}
.form-bottom {
  margin-bottom: -6.25rem;
}
.form p {
  font-weight: 800;
  line-height: 1.5;
}
.sr-form input[type="text"], .sr-form input[type="email"], .sr-form input[type="tel"], .sr-form input[type="submit"],
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form input[type="submit"] {
  width: 100% !important;
}
.form-title {
  display: flex;
  align-items: center;
  text-align: left;
}
.sr-form,
.hbspt-form {
  width: 100%;
}
.sr-form form,
.hbspt-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hbspt-form form fieldset,
.sr-form form fieldset {
  max-width: none;
  display: flex;
  gap: 1rem;
}
.sr-form .hs-submit {
  width: 100%;
}
.hbspt-form form fieldset[data-reactid=".hbspt-forms-0.1:$2"],
.sr-form form fieldset[data-reactid=".hbspt-forms-0.1:$2"] 
  flex-direction: column;
}
.sr-form form fieldset.form-columns-2 .hs-form-field,
.sr-form form fieldset.form-columns-1 .hs-form-field,
.hbspt-form form fieldset.form-columns-2 .hs-form-field,
.hbspt-form form fieldset.form-columns-1 .hs-form-field {
  width: 100%;
  float: none;
}
.sr-form input[type="submit"],
.hbspt-form input[type="submit"] {
  color: var(--white) !important;
  background-color: #ff5c35 !important;
  border: 0;
  margin: auto;
  padding: .5rem 3.5rem;
  height: auto;
}
.sr-form input[type="submit"]:hover,
.hbspt-form input[type="submit"]:hover {
  background-color: var(--primary) !important;
}
.sr-form input.error,
.hbspt-form input.error {
  border-color: var(--primary);
}
.sr-form input:focus,
.hbspt-form input:focus {
  border-color: var(--primary);
  outline: none;
}
.sr-form input:-webkit-autofill,
.sr-form input:-webkit-autofill:hover, 
.sr-form input:-webkit-autofill:focus, 
.sr-form input:-webkit-autofill:active,
.hbspt-form input:-webkit-autofill,
.hbspt-form input:-webkit-autofill:hover, 
.hbspt-form input:-webkit-autofill:focus, 
.hbspt-form input:-webkit-autofill:active {
  border-color: var(--primary);
}
.sr-form label.hs-error-msg,
.hbspt-form label.hs-error-msg {
  font-size: .625rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: .3125rem;
  display: block;
}

/* Two columns, three columns module */
.two-columns, .three-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gutter);
  margin: auto;
}
.two-columns .cols,
.three-columns .cols {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}
.two-columns .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.two-columns ul {
  display: flex;
  flex-direction: column;
  gap: calc(var(--gutter)/2);
}
.two-columns.two-columns--mmtyp {
  padding: 0 var(--gutter);
}
.two-columns.two-columns--mmtyp .cols {
  margin-bottom: 1.875rem;
  justify-content: flex-end;
  gap: 1rem;
}
.two-columns--mmtyp .subheadline {
  flex-basis: auto;
}
.vidyard-player-container {
  width: 100%;
}
.vidyard-player-container > iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}
.two-columns > picture, .two-columns > .vidyard-player-container,
.three-columns > picture, .three-columns > .vidyard-player-container {
  flex: 1 0 100%;
}

/* Video Module */
.module-video {
  margin-top: -3rem;
}
.hs-video-widget {
  width: 100%;
}
.module-form {
  position: relative;
}

.module-container--row {
  flex-direction: row;
  flex-wrap: wrap;
}

.module-schedule {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.module-stats {
  margin: 3.125rem 0;
  flex-wrap: wrap;
  font-weight: 800;
}

/* Boxes module */
.boxes-container {
  row-gap: 7.4375rem;
  column-gap: var(--gutter);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 6.25rem auto 0;
  max-width: 100rem;
  width: 100%;
}
.box {
  box-shadow: .9375rem 1.5625rem 3.75rem rgb(0 0 0 / 10%);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: var(--gutter);
}
.box picture {
  margin-top: -5rem;
  max-width: 15.625rem;
}
.box a.button {
  padding-left: 0;
  padding-right: 0;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: opacity 350ms ease;
}
.modal.show {
  pointer-events: auto;
  opacity: 1;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  margin: 0.5rem;
  pointer-events: none;
  position: relative;
  width: auto;
}
.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.modal-dialog-centered {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100% - 1rem);
}
.modal.fade .modal-dialog {
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out,-webkit-transform .3s ease-out;
}
.modal.show .modal-content {
  pointer-events: auto;
}
.modal-content {
  background-clip: padding-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  outline: 0;
  position: relative;
  width: 100%;
}
.modal-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  position: relative;
}
.footer-nav {
  width: 100%;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  justify-content: center;
}
.footer-nav li {
  padding: 0 5px 5px;
}
.footer-nav li + li::before {
  content: '/';
  opacity: .2;
  padding-right: 1.5rem;
}
fieldset.form-columns-1 .input,
fieldset.form-columns-2 .input {
  margin-right: 0!important;
}
/* Main Menu */
@media screen and (max-width: 1365px) {
  /* Dialog obscured page */
  body.hidden::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
  }
  .module-container--border .nav {
    margin: 0;
    width: 100%;
    text-align: left;
  }
  .nav {
    background-color: var(--white);
    opacity: 0;
    pointer-events: none;
    width: calc(100% - var(--gutter));
    max-height: 0;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 0;
    border-radius: 1rem;
    margin: calc(var(--gutter) / 2 );
    padding: var(--gutter);
    transition: opacity 300ms ease 400ms, max-height 150ms ease 200ms;
  }
  .nav li + li {
    margin-top: 1.5rem;
  }
  .nav__secondary-nav {
    padding-top: 2rem;
  }
  .nav__secondary-nav ul::before {
    content: '';
    border-top: 2px solid var(--secondary);
    opacity: .2;
    display: block;
    margin-bottom: 2rem;
  }

  .menu {
    width: 3.25rem;
    height: 3.25rem;
    border: 2px solid var(--secondary);
    border-radius: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }
  .menu.open .menu__line:first-child, .menu.open .menu__line:last-child {
    opacity: 0;
    transform: none;
  }
  .menu.open .menu__line:nth-child(2) {
    transform: rotate(45deg);
  }
  .menu.open .menu__line:nth-child(3) {
    transform: rotate(-45deg);
  }
  .menu.open .menu__line {
    background-color: var(--secondary);
  }
  .menu.open + .nav {
    max-height: 45rem;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 300ms ease, max-height 400ms cubic-bezier(.2,1.02,.16,.73) 300ms;
  }
  .menu__line {
    width: 2rem;
    height: .1875rem;
    background-color: var(--secondary);
    position: absolute;
    top: 1.4375rem;
    transition: all 250ms ease;
  }
  .menu__line:first-child {
    top: 1rem;
  }
  .menu__line:last-child {
    top: 1.875rem;
  }
  .footer-bar img {
    width: 7.5rem;
  }
  .three-col-black-friday .sr-col {
    margin-bottom: 3.125rem;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    margin: 1.75rem auto;
    max-width: 500px;
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
}

@media screen and (min-width: 768px) {
  :root {
    --gutter: 40px;
    --header-height: 11.5625rem;
    --h1-font-size: 3rem;
    --h2-font-size: 3rem;
    --h4-font-size: 1.5rem;
    --h5-font-size: .75rem;
    --h6-font-size: .875rem;
    --p-font-size: 1.5rem;
    --p-tiny-font-size: .625rem;
    --p-lead-font-size: 2.25rem;
    --a-button-font-size: 1.5rem;
    --padding: 10rem;
    --announcement-bar-height: 2.5625rem;
  }
  h2.large, h2.medium {
    font-size: var(--h1-font-size);
  }
  h4, h5, h6 {
    line-height: 1.5;
  }
  p.tiny {
    line-height: 2.4;
  }
  p.small {
    font-size: var(--p-small-font-size);
  }
  p.lead {
    line-height: 1.55;
  }
  input[type="text"], input[type="email"], input[type="tel"] {
    font-size: 1.5rem;
    padding: .6875rem 0;
    max-width: none;
  }
  .btn, .hbspt-form input[type="submit"], .sr-form input[type="submit"] {
    width: 36.625rem;
    max-width: none;
    font-size: 1.5rem;
    line-height: 1.5;
    white-space: nowrap;
  }
  .btn a {
    padding: 1.875rem 3.5rem;
  }
  .btn--small, .btn--tiny {
    width: auto;
  }
  .sr-form input[type="submit"],
  .hbspt-form input[type="submit"] {
    padding: 0.875rem 3.5rem;
    width: 100%;
  }

  .btn--tiny a {
    padding: .875rem 3rem;
  }
  .subheadline {
    font-size: 1rem;
    line-height: 1.5;
  }
  .logo {
    width: 11.875rem;
    height: 4rem;
  }
  .menu {
    width: 4rem;
    height: 4rem;
  }
  .menu__line {
    top: 1.8125rem;
  }
  .menu__line:first-child {
    top: 1.375rem;
  }
  .menu__line:last-child {
    top: 2.25rem;
  }
  .nav {
    left: auto;
    right: 0;
    max-width: 50%;
  }
  .nav__secondary-nav .btn {
    max-width: 100%;
    font-size: 1rem;
  }
  .stats::before, .stats::after {
    z-index: 7;
  }
  .stats__title {
    font-size: 5.9375rem;
    line-height: 1.15;
  }
  .step-box-container__inner {
    border: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .step-box {
    flex: 1 0 50%;
    margin: 0;
    min-height: 23.75rem;
    text-align: left;
  }
  .navigation {
    display: none;
  }
  .offer-bg {
    padding-top: var(--padding);
  }
  .form-container,
  .drop-content-container {
    padding: 2.5rem;
    max-width: 56rem;
  }
  .form-bottom {
    margin-bottom: -12.5rem;
  }
  .form,
  .drop-content {
    padding: 2.5rem;
  }
  .two-columns > picture,
  .two-columns > .vidyard-player-container {
    flex: 1 0 calc(50% - var(--gutter));
  }
  .two-columns video {
    width: calc(50% - var(--gutter));
  }
  .three-columns > picture,
  .three-columns > .vidyard-player-container {
    flex: 1 0 calc(33.33% - 26.666px);
  }
  .three-columns video {
    width: calc(33.33% - 26.666px);
  }
  .two-columns picture img,
  .three-columns picture img {
    width: 100%;
  }
  .footer {
    padding: 5rem 0 var(--gutter);
  }
  .footer-logo {
    width: 4.0625rem;
  }
  .footer__col li {
    line-height: 1.5;
  }
  .footer__col a:not(.button), .footer__col-title {
    font-size: .875rem;
  }
  .footer__col > p {
    font-size: .8754rem;
    line-height: 2.42;
  }
  .footer-bar {
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 47.5rem;
  }
  .footer-bar a:last-child {
    order: -1;
    flex-basis: 100%;
  }
  .client-grid__overlay p {
    display: block;
  }
  .clients-logos {
    gap: 5rem 5.3125rem;
  }
  .clients-logos picture {
    width: 8.75rem;
    flex: 0 0 auto;
  }
  .clients-hero-logos {
    gap: 1.5rem 5rem;
  }
  .clients-hero-logos picture {
    width: 8.75rem;
    flex: 0 0 auto;
  }
  .footer-nav .nav__item, .footer-nav ul {
    color: var(--secondary);
  }
  .footer-nav ul {
    display: flex;
    gap: 1.5rem;
    flex-wrap: no-wrap;
    max-width: auto;
    justify-content: center;
  }
  .footer-nav li {
    width: auto;
    max-width: auto;
    padding-bottom: 0;
  }
  .footer-nav li + li::before {
    content: '/';
    opacity: .2;
    padding-right: 1.5rem;
  }
  .sr-form form,
  .hbspt-form form {
    gap: 1rem;
  }
  .row .card-container {
    position: relative;
    width: 100%;
    padding: 0.5rem;
  }
  .row .card-three {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row .card-two {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row .card-one {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .two-columns ul.overcome-list li svg {
    width: 23px;
    top: 10%;
  }
  .offer-sticky .offer-info {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-direction: row;
  }
  .offer-sticky .offer-info p {
    text-align: left;
  }
  .offer-sticky {
    gap: 3.5rem;
    justify-content: center;
    flex-direction: row;
  }
  .offer-sticky .offer-close {
    position: relative;
    right: unset;
  }
  .offer-sticky .offer-image-container {
    margin-right: 0;
  }
  .team-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    grid-template-rows: repeat(2, 1fr);
  }
  .team-image-item {
    display: grid;
    overflow: hidden;
    max-width: 100%;
    position: relative;
    visibility: hidden;
  }
  .team-image-item.show {
    visibility: visible;
    animation: teamImage-show 1s cubic-bezier(0.83, 0, 0.17, 1) forwards;
    width: 0%;
  } 
  .team-image-item.show .image-wiper {
    position: absolute;
    top: 0;
    background-color: var(--primary);
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    animation: wiper 2.5s cubic-bezier(0.83, 0, 0.17, 1) forwards;
    will-change: transform;
  }
  .team-image-item:last-of-type{
    display: grid;
    /* grid-column: span 2; */
    position: relative;
    grid-row: 1/span 2;
    grid-column: 2;
  }
  .team-image-item.show .team-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: image-scale 2.5s cubic-bezier(0.83, 0, 0.17, 1) 0.5s forwards;
    position: relative;
    transform: scale3d(1.3, 1.3, 1);
    will-change: transform;
    transform-origin: center;
  }
  .row .card .card-inner .card-image svg {
    transform: scale(1);
  }
}

@media screen and (min-width: 992px) {
  .client-grid__item {
    flex-basis: calc(33.33% - 1.75rem);
  }
  .two-columns .cols,
  .three-columns .cols {
    gap: 2.5rem;
  }
  .two-columns ul li {
    font-size: 24px;
  }
  .two-columns ul.overcome-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .offer-image-container {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .row .card {
    border: 4px solid #EBF4F5;
    padding: 3.35rem 2.2rem;
  }
  .row .card-one {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row .card-two {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .offer-sticky {
    border-bottom: 1px solid var(--secondary);
    height: 82px;
  }
  .offer-sticky .offer-image-container img {
    display: block;
  }
  .btn--tiny a {
    padding: .875rem 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .display-4 {
    font-size: 6rem;
  }
}

@media screen and (min-width: 1366px) {
  a.button {
    padding: 2rem;
  }
  /*.module:hover::before, .module:hover::after {
  border-color: var(--secondary);
}*/
  .footer-container p {
    max-width: 1110px;
  }
  .landing-logo-container img {
    padding-top: 5rem;
  }
  .module-container--border {
    border: 4px solid var(--secondary);
    max-width: 100%;
    padding: 0rem 0rem 5rem 0rem;
    align-items: center;
  }
  .module-container--border .header-container .header {
    padding: var(--gutter);
  }
  .module.module--border, .header {
    padding-left: calc(var(--gutter) * 2);
    padding-right: calc(var(--gutter) * 2);
  }
  .module.module--border::before, .module.module--border::after {
    border-left-width: var(--gutter);
  }
  .module.header.header--scroll::before, .module.header.header--scroll::after {
    border-left: var(--gutter) solid var(--light-green);
  }
  .module-container--row {
    flex-wrap: nowrap;
  }
  h2.large {
    font-size: var(--h2-font-size-large);
  }
  h2.medium {
    font-size: 3.5rem;
  }
  h2.med {
    font-size: 3rem;
    max-width: 1100px;
  }
  h3.med {
    font-size: 2.25rem;
    max-width: 1100px;
  }
  .btn--small a, .hbspt-form input[type="submit"], .sr-form input[type="submit"] {
    padding: .875rem 1.875rem;
  }
  .module.module--border.announcement-bar {
    padding-left: 0;
    padding-right: 0;
  }
  .menu {
    display: none;
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav__secondary-nav {
    position: relative;
  }
  .nav__secondary-nav .btn {
    font-size: 1.5rem;
  }
  .nav__main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .header--transparent .nav__main-nav .nav__item, .header--transparent .nav__main-nav ul {
    color: var(--white);
  }
  .header--transparent.header--scroll .nav__main-nav .nav__item, .header--transparent.header--scroll .nav__main-nav ul {
    color: var(--secondary);
  }
  .nav__main-nav ul {
    display: flex;
    gap: 1.5rem;
  }
  .nav__main-nav li + li::before {
    content: '/';
    opacity: .2;
    padding-right: 1.5rem;
  }
  .btn-get-started {
    display: flex;
  }
  .btn-get-started a {
    padding: .875rem 3rem;
  }
  .nav__additional-info-container {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 1.5625rem 2.1875rem 6.25rem rgb(0 0 0 / 30%);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding: var(--gutter);
    width: 48.375rem;
    display: flex;
    gap: var(--gutter);
    transition: all 250ms ease;
  }
  .nav__additional-info-container ul {
    position: relative;
    padding-right: var(--gutter);
  }
  .nav__additional-info-container ul::after {
    content: '';
    background: var(--secondary);
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: .2;
  }
  .nav__additional-info-container--active {
    opacity: 1;
    top: calc(100% + 1rem);
    pointer-events: auto;
  }
  .nav__additional-info-container li + li {
    margin-top: 1.5rem;
  }
  .nav__additional-info {
    padding-top: 0;
  }
  .stats__number {
    flex: 1;
  }
  .step-box-container {
    column-gap: var(--gutter);
    justify-content: center;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .step-box-container__inner {
    background-color: var(--white);
    column-gap: var(--gutter);
  }
  .step-box {
    flex-direction: row;
    flex-wrap: wrap;
    flex: 0 0 calc(25% - (var(--gutter) * 3) / 4);
    min-height: 33rem;
    position: relative;
    overflow: hidden;
    transition: all 250ms ease;
  }
  .step-box p {
    line-height: 1.625;
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease;
  }
  .step-box:hover {
    box-shadow: 0.9375rem 1.5625rem 3.75rem rgb(0 0 0 / 10%);
    border-radius: 1rem;
  }
  .step-box:hover p {
    max-height: 20rem;
  }
  .step-box:hover svg {
    display: none;
  }
  .step-box svg {
    bottom: var(--gutter);
    left: var(--gutter);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .step-box h2 {
    font-size: var(--h3-font-size);
  }
  .form-bottom {
    margin-bottom: -13.125rem;
  }
  .boxes-container {
    flex-direction: row;
    margin-top: var(--gutter);
  }
  .module-stats {
    flex-wrap: nowrap;
    gap: 7.5rem;
  }
  .two-columns--nowrap,
  .three-columns--nowrap {
    flex-wrap: nowrap;
  }
  .footer
  .footer-container {
    max-width: 100rem;
    margin: auto;
  }
  .footer .tiny {
    max-width: 35.625rem;
  }
  .footer-container__inner {
    display: flex;
    gap: 1.875rem;
  }
  .footer__cols {
    margin-top: .3125rem;
  }
  .footer-container__inner > .footer__col {
    flex: 0 1 25.5625rem;
  }
  ul.footer__col {
    flex: 0 0 calc(25% - 1.875rem);
    gap: .8125rem;
  }
  .footer__cols {
    flex: 1;
  }
  .shape-container {
    height: 37.5rem;
  }
  .footer-bar {
    max-width: 73.125rem;
  }
  .footer-bar a:last-child {
    order: 0;
    flex-basis: 0;
  }
  .footer-bar::before {
    content: '';
    border-radius: 1rem;
    background: var(--white);
    box-shadow: .9375rem 1.5625rem 3.75rem rgb(0 0 0 / 10%);
    width: 100%;
    height: 6.25rem;
    position: absolute;
    bottom: 0;
    z-index: -1;
  }
  .footer-bar--variant {
    position: absolute;
  }
  .footer-simple:before {
    content: '';
    height: 100%;
    width: 480px;
    position: absolute;
    background-repeat: no-repeat;
    bottom: 0;
    right: 0;
    background-image: url("https://www.lean-labs.com/hubfs/LL%20V4.1/Dots.png");
  }
  .col-container {
    max-width: 1552px;
    padding: 0 40px;
  }
  .row .card-container {
    position: relative;
    width: 100%;
    border: 1rem solid transparent;
    padding: 0;
  }
  .row .card-three {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .btn--tiny a {
    padding: .875rem 5rem;
  }
  .mmtyp-form-image {
    margin: -10rem 0 -4rem;
  }
}


@media screen and (min-width: 1920px) {
  .step-box h2 {
    font-size: var(--h2-font-size);
  }
  .module-margin-large {
    max-width: 2000px;
    margin: auto;
  }
  .module-margin-medium {
    max-width: 960px;
    margin: auto;
  }
}
@media screen and (min-width: 1921px) {
  .col-container {
    max-width: 1844px;
  }
}

@keyframes bounce {
  0 {
    transform: translateY(0);
  }

  50% {
    transform: translateY(.625rem);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-3289px, 0, 0);
  }
}
@keyframes teamImage-show {
  0 {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes wiper {
  0 {
    transform:translate3d(0%, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform:translate3d(101%, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
@keyframes image-scale {
  0 {
    transform: translate3d(0%, 0px, 0px) scale3d(1.05, 1.05, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0%, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}