:root {
  --rocket-black: #1e1e1e;
  --white: white;
  --oxford-blue: #011936;
  --moderate-red: #ed1c24;
  --palatinate-blue: #0345df;
  --rocket-teal: #7cc6d7;
  --rocket-red: #d77c7c;
  --rocket-green: #84d77c;
  --rocket-light-blue: #ecf7ff;
  --rocket-grey: grey;
  --ghost-white: #ebecf2;
  --moderate-azure: #3f88c5;
}

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

body {
  color: var(--rocket-black);
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 40px;
}

h1 {
  color: var(--rocket-black);
  margin-bottom: 16px;
  font-family: Poppins, sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 80px;
}

h2 {
  margin-top: 0;
  margin-bottom: 48px;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 64px;
}

h3 {
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 32px;
}

a {
  color: var(--rocket-black);
  padding: 12px 24px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

li {
  color: var(--rocket-black);
  background-image: url('../images/checkmark.svg');
  background-position: 0 4px;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-attachment: scroll;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 44px;
  font-family: IBM Plex Sans;
  line-height: 24px;
}

blockquote {
  border: 1px #000;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 72px;
}

.flowout-body {
  background-color: var(--white);
  color: var(--rocket-black);
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
}

.flowout-container {
  color: var(--oxford-blue);
  max-width: 1440px;
  padding-left: 40px;
  padding-right: 40px;
}

.flowout-navbar {
  background-color: #0000;
}

.flowout-brand {
  justify-content: flex-start;
  align-items: center;
  margin-right: 44px;
  padding: 0;
  display: flex;
}

.flowout-brand.w--current {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 12px;
  display: flex;
}

.flowout-menu {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.flowout-burger {
  margin-left: 21px;
}

.flowout-nav-link {
  margin-left: 20px;
  margin-right: 20px;
  padding: 10px;
}

.flowout-navbar-container {
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.flowout-button {
  z-index: 0;
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 2px solid var(--oxford-blue);
  background-color: var(--white);
  outline-offset: 0px;
  color: var(--oxford-blue);
  text-align: center;
  -webkit-text-fill-color: inherit;
  vertical-align: baseline;
  mix-blend-mode: normal;
  object-fit: fill;
  background-clip: border-box;
  border-radius: 32px;
  outline: 3px #1e1e1e;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 56px;
  font-family: Archivo, sans-serif;
  line-height: 24px;
  transition: all .2s ease-in-out;
  display: inline-block;
  position: relative;
}

.flowout-button:hover {
  border-color: var(--moderate-red);
  background-color: var(--moderate-red);
  color: var(--white);
  transform: translate(8px, 8px);
}

.flowout-button:focus {
  border-color: var(--palatinate-blue);
  background-color: var(--oxford-blue);
  color: var(--white);
  transform: translate(8px, 8px);
}

.flowout-button.flowout-nav-button {
  padding: 10px 32px;
}

.flowout-button.flowout-nav-button:hover, .flowout-button.flowout-nav-button:focus {
  transform: none;
}

.flowout-button.flowout-button-card {
  margin-right: 0;
  display: block;
}

.flowout-button.flowout-button-dark:hover, .flowout-button.flowout-button-dark:focus {
  border-color: var(--rocket-black);
  background-color: var(--rocket-black);
}

.flowout-button.blue-bg:hover, .flowout-button.blue-bg:focus {
  border-color: var(--rocket-teal);
  background-color: var(--rocket-teal);
}

.flowout-button.red-bg:hover, .flowout-button.red-bg:focus {
  border-color: var(--rocket-red);
  background-color: var(--rocket-red);
}

.flowout-button.green-bg:hover, .flowout-button.green-bg:focus {
  border-color: var(--rocket-green);
  background-color: var(--rocket-green);
}

.flowout-header {
  background-color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.flowout-footer-hero-heading {
  color: var(--oxford-blue);
  margin-top: 32px;
  margin-bottom: 24px;
  font-family: Archivo Black, sans-serif;
}

.flowout-hero-company {
  transition: opacity .3s;
}

.flowout-hero-company:hover, .flowout-hero-company:focus {
  opacity: .7;
}

.flowout-testimonials.flowout-section.flowout-section-dark {
  background-color: var(--oxford-blue);
  padding-bottom: 112px;
}

.flowout-features.flowout-section.flowout-section-dark {
  background-color: var(--white);
  padding-bottom: 112px;
}

.flowout-how-it-works.flowout-section {
  background-color: var(--rocket-light-blue);
}

.flowout-text-center {
  color: var(--oxford-blue);
  text-align: center;
  font-family: Archivo Black, sans-serif;
  font-size: 2em;
  line-height: 1.2em;
}

.flowout-text-center.testimonial {
  color: var(--white);
  text-align: left;
}

.flowout-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.flowout-section.flowout-section-dark {
  background-color: var(--white);
  padding-bottom: 0;
}

.flowout-section-item {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: minmax(500px, 535px) repeat(auto-fit, minmax(200px, auto));
  grid-auto-flow: row;
}

.flowout-section-item-content {
  margin-top: 112px;
  margin-bottom: 112px;
}

.flowout-section-item-image {
  background-image: url('../images/image1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 100%;
}

.flowout-section-item-image.image-1 {
  background-image: url('../images/furniture-lift-truck.png');
  flex: 0 auto;
}

.flowout-section-item-image.image-1.footer {
  float: none;
  clear: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: 2.39;
  object-fit: fill;
  background-image: url('../images/furniture-lift-truck-footer.png');
  background-size: auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.flowout-section-item-image.image-3 {
  background-image: url('../images/background-4.jpg');
  background-size: cover;
}

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

.flowout-section-item-heading {
  margin-bottom: 16px;
}

.flowout-section-item-text {
  margin-bottom: 32px;
  font-family: Archivo, sans-serif;
}

.flowout-section-item-text.footer {
  width: 80%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.flowout-left-arrow {
  background-color: var(--palatinate-blue);
  width: 56px;
  height: 56px;
  inset: auto 88px 0% auto;
}

.flowout-right-arrow {
  background-color: var(--palatinate-blue);
  width: 56px;
  height: 56px;
  inset: auto 0% 0% auto;
}

.flowout-slide-full {
  width: 100%;
  height: 100%;
}

.flowout-slider-full-dots {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  height: 20px;
  margin-left: auto;
  margin-right: 0;
  padding-top: 0;
  font-size: 16px;
  line-height: 16px;
  display: none;
  position: absolute;
  inset: auto 0% 56px;
}

.flowout-slider {
  background-color: #0000;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: auto;
  display: flex;
  overflow: hidden;
}

.flowout-footer-copyrights {
  background-color: var(--moderate-red);
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.flowout-footer-menu {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flowout-footer-menu-link {
  color: var(--white);
  text-decoration: underline;
  transition: all .3s;
}

.flowout-footer-menu-link:hover, .flowout-footer-menu-link:focus {
  text-decoration: none;
}

.flowout-footer-logo {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 0 auto;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 10%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: block;
  overflow: hidden;
}

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

.flowout-social-link {
  margin-left: 8px;
  margin-right: 8px;
  padding: 0;
}

.flowout-social-link:hover, .flowout-social-link:focus {
  opacity: .9;
}

.flowout-social-link.flowout-last-link {
  margin-right: 0;
}

.flowout-social-icon {
  width: 24px;
  max-width: none;
  height: 24px;
}

.flowout-grid-card {
  border: 2px solid var(--rocket-black);
  background-color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  transition: all .2s ease-in-out;
  display: flex;
}

.flowout-grid-card:hover {
  background-color: var(--oxford-blue);
  color: var(--white);
  transform: translate(16px, 16px);
}

.flowout-grid-card.flowout-grid-card-featured {
  border: 2px solid var(--rocket-black);
  background-color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.flowout-grid-card.green-bg {
  border-color: var(--oxford-blue);
  font-family: Archivo, sans-serif;
}

.flowout-grid-card.green-bg:hover {
  background-color: var(--oxford-blue);
}

.flowout-grid-card.blue-bg {
  border-color: var(--oxford-blue);
  font-family: Archivo, sans-serif;
}

.flowout-grid-card.blue-bg:hover {
  background-color: var(--rocket-teal);
}

.flowout-grid-card.red-bg {
  border-color: var(--oxford-blue);
  font-family: Archivo, sans-serif;
}

.flowout-grid-card.red-bg:hover {
  background-color: var(--rocket-red);
}

.flowout-grid-card-text {
  font-size: 20px;
  line-height: 32px;
}

.flowout-grid-card-content {
  padding: 24px;
}

.flowout-grid-card-background {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  width: 100%;
  height: 100%;
  margin-top: auto;
}

.flowout-grid-card-background.background-2 {
  background-image: url('../images/stock-3.png');
  background-position: 50% 0;
  background-size: cover;
}

.flowout-grid-card-background.background-1 {
  background-image: url('../images/background2.png');
  background-position: 50% 0;
  background-size: cover;
  margin-top: auto;
}

.flowout-grid-card-image-wrapper {
  flex-direction: row;
  flex: 0 auto;
  justify-content: space-around;
  align-self: auto;
  align-items: stretch;
  margin: auto 24px 24px;
}

.flowout-grid-card-image {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.flowout-dropdown-wrapper {
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.div-block {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.flowout-brand-image {
  flex: 0 auto;
  width: 100%;
}

.flowout-slide-testimonial {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  font-family: Archivo, sans-serif;
}

.flowout-quote {
  color: var(--white);
  font-family: Archivo, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 64px;
}

.flowout-footer-hero {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  font-family: Archivo, sans-serif;
  display: block;
}

.flowout-hero {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 30px;
  padding-bottom: 80px;
  display: flex;
}

.flowout-hero-content {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  margin-bottom: 0;
  display: flex;
}

.flowout-hero-text {
  color: var(--oxford-blue);
  width: 100%;
  max-width: 430px;
  margin-bottom: 40px;
  font-family: Archivo, sans-serif;
  font-size: 1em;
  line-height: 1.6em;
}

.flowout-grid-card-heading {
  border: 0px solid var(--oxford-blue);
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Archivo, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.flowout-companies-logos {
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  display: flex;
}

.flowout-single-faq {
  border: 2px solid var(--rocket-black);
  background-color: var(--white);
  cursor: pointer;
  width: 100%;
  margin-bottom: 32px;
  margin-left: -4px;
  padding-left: 28px;
  padding-right: 40px;
}

.flowout-faq-question {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
}

.flowout-faq-icon {
  background-image: url('../images/arrow-down.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 9.88px;
  margin-top: 16px;
}

.flowout-faq-question-text {
  letter-spacing: .04px;
  padding-right: 25px;
}

.flowout-faq-answer {
  opacity: 0;
  width: 100%;
  display: none;
}

.flowout-faq-answer-text {
  margin-bottom: 0;
  padding-bottom: 24px;
}

.flowout-buttons {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.flowout-container-full {
  max-width: 1440px;
  margin: 112px auto;
  padding-left: 40px;
  padding-right: 40px;
}

.flowout-slider-full-mask {
  width: 100%;
  height: auto;
}

.flowout-top {
  align-self: stretch;
}

.flowout-container-special {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  max-width: 1440px;
  padding-bottom: 16px;
  padding-left: 40px;
  padding-right: 56px;
  display: block;
}

.flowout-accentuated {
  color: var(--palatinate-blue);
  font-style: italic;
}

.flowout-accentuated.blue-theme, .flowout-accentuated.green-theme, .flowout-accentuated.red-theme {
  background-color: #0000;
}

.flowout-features-grid {
  grid-column-gap: 40px;
  grid-row-gap: 64px;
  color: var(--oxford-blue);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  font-family: Archivo, sans-serif;
  display: grid;
}

.flowout-grid-card-wrapper {
  z-index: 1;
  position: relative;
}

.flowout-grid-card-bg {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -16px;
  right: -16px;
}

.flowout-grid-card-bg.blue-theme {
  background-color: var(--oxford-blue);
  color: var(--oxford-blue);
}

.flowout-grid-card-bg.red-theme {
  background-color: var(--oxford-blue);
}

.flowout-grid-card-bg.green-theme {
  background-color: var(--oxford-blue);
  color: var(--oxford-blue);
}

.blue-theme {
  background-color: var(--rocket-teal);
  color: var(--rocket-teal);
}

.red-theme {
  background-color: var(--rocket-red);
  color: var(--rocket-red);
}

.green-theme {
  background-color: var(--rocket-green);
  color: var(--rocket-green);
}

.flowout-section-item-image-full {
  background-image: url('../images/image1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 456px;
  margin-bottom: 40px;
}

.flowout-section-item-image-full.background-3 {
  background-image: url('../images/background-3.jpg');
}

.flowout-hero-image {
  border: 2px solid var(--moderate-red);
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  flex: 0 auto;
  width: 50%;
  margin-left: 32px;
  position: relative;
}

.flowout-hero-content-wrapper {
  flex: 0 auto;
  width: 50%;
  padding-top: 10vw;
  padding-bottom: 10vw;
}

.flowout-hero-heading {
  color: var(--oxford-blue);
  -webkit-text-stroke-color: var(--palatinate-blue);
  margin-top: 0;
  font-family: Archivo Black, sans-serif;
  font-size: 2em;
  line-height: 1.2em;
}

.flowout-hero-image-tag {
  position: absolute;
  inset: auto 0% 12% -32px;
}

.flowout-single-faq-wrapper {
  z-index: 0;
  position: relative;
}

.flowout-single-faq-bg {
  z-index: -1;
  background-color: var(--palatinate-blue);
  opacity: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto -4px -8px auto;
}

.flowout-button-wrapper {
  z-index: 0;
  float: none;
  clear: none;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
}

.flowout-button-wrapper.flowout-button-card {
  margin-right: 8px;
  display: block;
}

.flowout-button-wrapper.benefits {
  z-index: 0;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  vertical-align: baseline;
  object-fit: fill;
  object-position: 50% 50%;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: space-around center;
  align-items: center;
  width: 20%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: block;
}

.flowout-button-wrapper.form {
  width: 60%;
  margin: 30px auto 0;
  display: block;
}

.flowout-button-bg {
  z-index: -1;
  background-color: var(--moderate-red);
  border: 1px solid #fff;
  border-radius: 32px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto -8px -8px auto;
}

.flowout-button-bg.blue-theme {
  background-color: var(--rocket-teal);
}

.flowout-button-bg.red-theme {
  background-color: var(--rocket-red);
}

.flowout-button-bg.green-theme {
  background-color: var(--moderate-red);
}

.flowout-button-bg.dark-theme {
  background-color: var(--rocket-black);
}

.flowout-button-bg.form {
  background-color: var(--oxford-blue);
  display: inline-block;
}

.flowout-pricing-grid {
  grid-column-gap: 56px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  max-width: 984px;
  margin-left: auto;
  margin-right: auto;
}

.flowout-card {
  border: 2px solid var(--rocket-black);
  background-color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.flowout-card-title-smaller {
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 56px;
  display: inline;
}

.flowout-card-body {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 40px;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

.flowout-card-header {
  background-color: var(--palatinate-blue);
  color: var(--white);
  margin-bottom: 48px;
  padding: 32px;
}

.flowout-card-header.flowout-card-dark {
  background-color: var(--rocket-black);
}

.flowout-card-subtext {
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 32px;
}

.flowout-card-heading {
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  display: inline;
}

.flowout-card-text {
  color: var(--rocket-grey);
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 24px;
}

.flowout-card-button {
  margin-top: auto;
  padding-top: 8px;
}

.flowout-card-caption {
  margin-bottom: 4px;
}

.flowout-author {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 500px;
  font-style: normal;
  display: flex;
  position: static;
  inset: auto auto 0% 0%;
}

.flowout-author-image-wrapper {
  z-index: 0;
  border: 1px solid var(--rocket-black);
  background-image: url('../images/profilePic3_1profilePic3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 158px;
  height: 158px;
  margin-top: auto;
  margin-bottom: 8px;
  margin-right: 12px;
  position: relative;
}

.flowout-author-info {
  margin-bottom: 0;
  margin-left: 16px;
}

.flowout-author-image {
  background-image: url('../images/profilePic3_1profilePic3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 100%;
  margin-right: 12px;
}

.flowout-author-image.author-1 {
  background-image: url('../images/testimonial-1.png');
}

.flowout-author-image.author-2 {
  background-image: url('../images/testimonial-2.jpg');
}

.flowout-author-image.author-3 {
  background-image: url('../images/testimonial-3.jpg');
}

.flowout-author-bg {
  z-index: -1;
  background-color: var(--palatinate-blue);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto -8px -8px auto;
}

.flowout-author-name {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 8px;
}

.flowout-author-role {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Archivo, sans-serif;
}

.flowout-slide {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.flowout-arrow {
  border: 2px solid var(--palatinate-blue);
  background-color: var(--palatinate-blue);
  color: var(--white);
  cursor: pointer;
  width: 56px;
  height: 56px;
  transition: all .2s ease-in-out;
}

.flowout-arrow:hover {
  background-color: var(--white);
  color: var(--rocket-black);
}

.flowout-arrow.flowout-left-arrow {
  border-color: var(--moderate-red);
  background-color: var(--moderate-red);
}

.flowout-arrow.flowout-left-arrow:hover {
  border-color: var(--moderate-red);
  color: var(--oxford-blue);
}

.flowout-arrow.flowout-right-arrow {
  border-color: var(--moderate-red);
  background-color: var(--moderate-red);
}

.flowout-container-tight {
  max-width: 1440px;
  padding-left: 40px;
  padding-right: 40px;
}

.flowout-section-item-heading {
  color: var(--oxford-blue);
  font-family: Archivo Black, sans-serif;
}

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

.text-span-2 {
  color: var(--palatinate-blue);
}

.text-span-3, .text-span-4 {
  color: var(--moderate-red);
}

.background-video {
  z-index: 1;
  object-fit: fill;
  object-position: 50% 50%;
  width: 100%;
  min-width: 100px;
  height: 100%;
  min-height: 100px;
  position: relative;
  overflow: hidden;
}

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

.italic-text {
  font-style: normal;
}

.paragraph {
  color: var(--white);
  font-family: Archivo, sans-serif;
}

.text-span-7 {
  color: var(--moderate-red);
}

.form-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: stretch;
  width: 70%;
  max-width: none;
  font-family: Archivo, sans-serif;
  display: inline-block;
}

.form {
  text-align: center;
  font-family: Archivo, sans-serif;
}

.footer-form {
  aspect-ratio: auto;
  text-align: left;
  object-fit: fill;
  width: 50%;
  margin: 0 auto 112px;
  padding-top: 0;
  display: block;
  position: static;
}

.heading {
  text-align: center;
  font-family: Archivo Black, sans-serif;
}

.field-label {
  object-fit: fill;
  margin-bottom: 5px;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  line-height: 20px;
  position: static;
}

.form-2 {
  background-color: var(--rocket-light-blue);
  width: auto;
  padding: 20px 40px 41px;
}

.submit-button {
  z-index: 0;
  border: 2px solid var(--oxford-blue);
  background-color: var(--palatinate-blue);
  outline-offset: 0px;
  direction: ltr;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  text-overflow: clip;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  vertical-align: baseline;
  object-fit: fill;
  border-radius: 32px;
  outline: 3px #fff;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
  position: static;
  overflow: visible;
}

.submit-button:hover {
  background-color: var(--oxford-blue);
  transform: translate(8px, 8px);
}

.input-field {
  border: 1px solid #0000;
}

.form-block-2 {
  padding-top: 0;
}

.textarea {
  font-family: Archivo, sans-serif;
}

.select-field {
  background-color: var(--white);
  color: var(--rocket-grey);
  font-family: Archivo, sans-serif;
}

.code-embed {
  margin-top: 40px;
  padding-top: 0;
  padding-left: 40px;
  padding-right: 40px;
}

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

  .flowout-brand.w--current {
    margin-right: 34px;
  }

  .flowout-nav-link {
    margin-left: 28px;
    margin-right: 28px;
  }

  .flowout-button:hover {
    background-color: var(--palatinate-blue);
    color: var(--white);
    transform: translate(8px, 8px);
  }

  .flowout-button.flowout-button-card.flowout-button-dark:hover {
    background-color: var(--rocket-black);
  }

  .flowout-section-item {
    grid-column-gap: 96px;
  }

  .flowout-grid-card {
    transition: all .3s, transform .2s ease-out;
  }

  .flowout-grid-card:hover {
    transform: translate(24px, 24px);
  }

  .flowout-grid-card.green-bg:hover {
    background-color: var(--rocket-green);
    color: var(--white);
  }

  .flowout-grid-card.blue-bg:hover {
    background-color: var(--rocket-teal);
    color: var(--white);
  }

  .flowout-grid-card.red-bg:hover {
    background-color: var(--rocket-red);
    color: var(--white);
  }

  .flowout-grid-card-text {
    font-size: 24px;
    line-height: 40px;
  }

  .flowout-grid-card-background.background-2 {
    height: 100%;
  }

  .flowout-quote {
    font-size: 48px;
    line-height: 72px;
  }

  .flowout-hero {
    padding-bottom: 112px;
  }

  .flowout-grid-card-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .flowout-container-full {
    padding-left: 56px;
    padding-right: 56px;
  }

  .flowout-container-special {
    padding-bottom: 24px;
    padding-left: 56px;
    padding-right: 80px;
  }

  .flowout-features-grid {
    grid-column-gap: 64px;
  }

  .flowout-grid-card-bg {
    bottom: -24px;
    right: -24px;
  }

  .flowout-hero-image {
    width: 100%;
    margin-left: 112px;
  }

  .flowout-hero-content-wrapper {
    width: auto;
  }

  .flowout-hero-image-tag {
    left: -112px;
  }

  .flowout-card {
    align-content: flex-start;
  }

  .flowout-card-text {
    margin-bottom: 48px;
  }

  .flowout-card-content {
    flex-flow: column;
    justify-content: flex-start;
  }

  .flowout-container-tight {
    padding-left: 56px;
    padding-right: 56px;
  }
}

@media screen and (min-width: 1440px) {
  .flowout-button:hover {
    background-color: var(--moderate-red);
  }

  .flowout-section-item-image.image-1.footer {
    background-image: url('../images/furniture-lift-truck-footer.png');
  }

  .flowout-grid-card {
    border-style: solid;
    border-color: var(--oxford-blue);
  }

  .flowout-footer-hero {
    max-width: none;
    padding-left: 56px;
    padding-right: 56px;
  }

  .flowout-grid-card-heading {
    text-overflow: clip;
    font-family: Archivo, sans-serif;
  }

  .flowout-container-full {
    padding-left: 136px;
    padding-right: 136px;
  }

  .flowout-arrow.flowout-left-arrow, .flowout-arrow.flowout-right-arrow {
    border-color: var(--moderate-red);
  }

  .flowout-container-tight {
    padding-left: 136px;
    padding-right: 136px;
  }

  .form-block {
    justify-content: center;
    align-items: center;
    width: 50%;
    display: inline-block;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    margin-bottom: 8px;
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 32px;
  }

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

  .flowout-body {
    font-size: 18px;
    line-height: 26px;
  }

  .flowout-brand.w--current {
    order: 0;
    justify-content: center;
    align-self: auto;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .flowout-burger {
    display: none;
  }

  .flowout-navbar-container {
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .flowout-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .flowout-section-item-right {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .flowout-section-item-right.flowout-section-item-text-only {
    display: block;
  }

  .flowout-section-item {
    flex-direction: column-reverse;
    grid-template-columns: minmax(50%, 50%) repeat(auto-fit, minmax(200px, auto));
    grid-auto-flow: row;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
  }

  .flowout-section-item-content {
    margin-top: 40px;
    margin-bottom: 48px;
  }

  .flowout-section-item-image {
    height: 100%;
    margin-bottom: 24px;
  }

  .flowout-section-item-left {
    order: -1;
    width: 100%;
    height: 450px;
  }

  .flowout-section-item-left.flowout-section-item-text-only {
    height: auto;
  }

  .flowout-slider-full-dots {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    bottom: 20px;
  }

  .flowout-footer-menu {
    display: none;
  }

  .flowout-grid-card {
    flex-direction: column;
    justify-content: flex-start;
    display: flex;
  }

  .flowout-grid-card-text {
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    display: inline;
  }

  .flowout-grid-card-background {
    min-height: 250px;
  }

  .flowout-dropdown-wrapper {
    flex: 0 auto;
    margin-left: 0;
  }

  .flowout-quote {
    font-size: 28px;
    line-height: 48px;
  }

  .flowout-footer-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .flowout-hero {
    padding-top: 36px;
    padding-bottom: 56px;
  }

  .flowout-hero-content {
    margin-bottom: 56px;
  }

  .flowout-faq-icon {
    flex: none;
  }

  .flowout-faq-question-text, .flowout-faq-answer-text {
    font-size: 24px;
    line-height: 40px;
  }

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

  .flowout-container-full {
    margin-top: 56px;
    margin-bottom: 66px;
  }

  .icon {
    display: none;
  }

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

  .flowout-section-item-content-text-only {
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
  }

  .flowout-section-item-image-full {
    margin-bottom: 24px;
  }

  .flowout-section-item-image-full.background-3 {
    height: 375px;
  }

  .flowout-hero-content-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .flowout-button-wrapper.flowout-button-card {
    margin-right: 8px;
  }

  .flowout-button-wrapper.benefits {
    width: 30%;
  }

  .flowout-button-wrapper.form {
    width: 50%;
  }

  .flowout-pricing-grid {
    grid-column-gap: 40px;
  }

  .flowout-card-title-smaller {
    font-size: 32px;
    line-height: 48px;
  }

  .flowout-card-body {
    padding-bottom: 32px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .flowout-card-header {
    margin-bottom: 32px;
    padding: 24px;
  }

  .flowout-card-heading {
    font-size: 40px;
    line-height: 48px;
  }

  .flowout-card-text {
    margin-bottom: 24px;
  }

  .flowout-card-caption {
    margin-bottom: 4px;
  }

  .flowout-author-image-wrapper {
    width: 92px;
    height: 92px;
  }

  .flowout-section-item-heading {
    display: block;
  }

  .footer-form {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .flowout-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .flowout-button.flowout-nav-button {
    padding: 8px 24px;
  }

  .flowout-section-item-right {
    padding-bottom: 8px;
  }

  .flowout-section-item {
    grid-column-gap: 24px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .flowout-section-item-content {
    margin-top: 0;
    margin-bottom: 0;
  }

  .flowout-section-item-left {
    height: 375px;
  }

  .flowout-section-item-heading {
    margin-top: 24px;
  }

  .flowout-slider-full-dots {
    bottom: 40px;
  }

  .flowout-grid-card-background {
    min-height: 320px;
  }

  .flowout-slide-testimonial {
    margin-bottom: 24px;
  }

  .flowout-quote {
    font-size: 24px;
    line-height: 40px;
  }

  .flowout-footer-hero {
    flex-direction: column-reverse;
    padding-top: 0;
  }

  .flowout-hero {
    padding-top: 0;
    padding-bottom: 0;
  }

  .flowout-hero-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .flowout-hero-text {
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    line-height: 32px;
  }

  .flowout-companies-logos {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .flowout-single-faq {
    margin-bottom: 28px;
    margin-left: -2px;
    padding-left: 16px;
    padding-right: 20px;
  }

  .flowout-faq-question {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .flowout-faq-icon {
    margin-top: 13px;
  }

  .flowout-faq-question-text {
    font-size: 20px;
    line-height: 32px;
  }

  .flowout-faq-answer-text {
    padding-bottom: 16px;
    font-size: 20px;
    line-height: 32px;
  }

  .flowout-container-full {
    margin-bottom: 56px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .flowout-slider-full-mask {
    padding-bottom: 56px;
  }

  .flowout-container-special {
    padding-left: 20px;
    padding-right: 36px;
  }

  .flowout-features-grid {
    grid-template-columns: 1fr;
  }

  .flowout-section-item-image-full.background-3 {
    margin-bottom: 0;
  }

  .flowout-hero-image {
    width: 100%;
    height: 400px;
    margin-top: 0;
    margin-left: 0;
  }

  .flowout-hero-content-wrapper {
    text-align: center;
    width: 100%;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .flowout-hero-image-tag {
    left: 0;
  }

  .flowout-single-faq-bg {
    bottom: -4px;
    right: -2px;
  }

  .flowout-button-wrapper.benefits {
    width: 40%;
  }

  .flowout-button-wrapper.form {
    width: 60%;
  }

  .flowout-pricing-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .flowout-card {
    text-align: left;
  }

  .flowout-author {
    justify-content: flex-start;
  }

  .flowout-author-name {
    font-size: 20px;
    line-height: 24px;
  }

  .flowout-slide {
    padding-bottom: 24px;
  }

  .flowout-arrow.flowout-left-arrow {
    inset: auto 68px 0% 0%;
  }

  .flowout-arrow.flowout-right-arrow {
    inset: auto -68px 0% 0%;
  }

  .flowout-container-tight {
    padding-left: 20px;
    padding-right: 20px;
  }

  .background-video {
    object-position: 50% 50%;
  }

  .submit-button {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 38px;
  }

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

  .flowout-container {
    flex-direction: row;
    flex: 0 auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-self: stretch;
    align-items: stretch;
    max-width: 100vh;
    padding-left: 16px;
    padding-right: 16px;
    display: block;
  }

  .flowout-navbar {
    width: 100%;
  }

  .flowout-brand.w--current {
    flex: none;
  }

  .flowout-burger {
    z-index: -1;
    flex: 0 1 0;
    display: none;
    position: absolute;
  }

  .flowout-nav-link {
    display: none;
  }

  .flowout-navbar-container {
    position: relative;
  }

  .flowout-button {
    padding: 12px 32px;
    display: block;
  }

  .flowout-button:hover {
    transform: translate(4px, 4px);
  }

  .flowout-section-item-left {
    height: 375px;
  }

  .flowout-section-item-left.flowout-section-item-text-only {
    padding-left: 16px;
    padding-right: 16px;
  }

  .flowout-section-item-text {
    margin-bottom: 24px;
    line-height: 26px;
  }

  .flowout-slider-full-dots {
    bottom: 16px;
  }

  .flowout-footer-copyrights {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .flowout-footer-logo {
    max-width: 100%;
    margin-top: 24px;
    padding: 0;
  }

  .flowout-footer-socials {
    order: -1;
  }

  .flowout-grid-card.flowout-grid-card-featured {
    margin-bottom: 24px;
  }

  .flowout-grid-card-content {
    padding-bottom: 16px;
  }

  .flowout-grid-card-background {
    min-height: 180px;
  }

  .div-block {
    flex-direction: column;
  }

  .image-5 {
    width: 100%;
  }

  .flowout-slide-testimonial {
    justify-content: flex-start;
    min-height: auto;
  }

  .flowout-hero {
    flex-direction: column;
    flex: 0 auto;
    justify-content: flex-end;
    align-items: stretch;
    display: flex;
  }

  .flowout-hero-content {
    margin-top: auto;
    margin-bottom: 56px;
  }

  .flowout-faq-question {
    grid-template-rows: auto;
    grid-template-columns: .25fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .flowout-faq-icon {
    margin-top: 10px;
  }

  .flowout-faq-question-text, .flowout-faq-answer-text {
    font-size: 18px;
    line-height: 26px;
  }

  .flowout-container-full {
    padding-left: 0;
    padding-right: 0;
  }

  .flowout-container-special {
    flex-direction: row;
    flex: 0 auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-self: stretch;
    align-items: stretch;
    max-width: 100vh;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 32px;
    display: block;
  }

  .flowout-section-item-content-text-only {
    padding-left: 16px;
    padding-right: 16px;
  }

  .flowout-hero-image {
    height: 343px;
  }

  .flowout-hero-content-wrapper {
    padding-bottom: 44px;
  }

  .flowout-hero-heading {
    font-size: 32px;
  }

  .flowout-hero-image-tag {
    max-width: 80%;
  }

  .flowout-button-wrapper {
    margin-right: 4px;
    display: block;
  }

  .flowout-button-wrapper.benefits {
    object-fit: fill;
    object-position: 50% 50%;
    width: 100%;
  }

  .flowout-button-wrapper.form {
    width: 100%;
    display: inline-block;
  }

  .flowout-button-bg {
    bottom: -4px;
    right: -4px;
  }

  .flowout-card-title-smaller {
    display: inline;
  }

  .flowout-card-subtext {
    margin-top: 10px;
  }

  .flowout-card-text {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .flowout-author {
    align-items: flex-start;
  }

  .flowout-author-image-wrapper {
    width: 64px;
    height: 64px;
    margin-top: 0;
  }

  .flowout-author-info {
    margin-left: 10px;
  }

  .flowout-author-bg {
    bottom: -4px;
    right: -4px;
  }

  .flowout-author-name {
    margin-top: 8px;
  }

  .flowout-section-item-heading {
    margin-bottom: 8px;
  }

  .form-block {
    box-sizing: border-box;
    float: none;
    aspect-ratio: auto;
    vertical-align: baseline;
    object-fit: fill;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
  }

  .form-field {
    z-index: 0;
    color: var(--oxford-blue);
    position: static;
    overflow: clip;
  }

  .form-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_80c56941-ca13-ed58-9d0e-7a44e02e96fc-509f2fa3 {
    place-self: auto;
  }
}


