:root {
  --dark-slate-blue: #543e80;
  --white-smoke: #f5f6f8;
  --midnight-blue: #31234c;
  --dark-slate-blue-2: #492b6d;
  --grey: #858784;
}

body {
  color: #313131;
  font-family: Nunito Sans, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Roboto Slab, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Roboto Slab, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 40px;
}

h6 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Roboto Slab, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 25px;
}

.brand {
  justify-content: flex-start;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Roboto Slab, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 28px;
  transition: color .2s;
  display: flex;
}

.brand:hover {
  color: #4b6bf5;
}

.nav-dropdown-list.w--open {
  background-color: #161a25eb;
  margin-left: -8px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-link {
  padding: 28px 16px;
  font-weight: 600;
  transition: color .1s;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--dark-slate-blue);
}

.nav-link.w--current:hover {
  color: #4b4c52;
}

.button {
  background-color: var(--dark-slate-blue);
  color: #fff;
  text-align: center;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: box-shadow .3s;
  display: flex;
}

.button:hover {
  box-shadow: 0 4px 12px #4b6bf580;
}

.button.small {
  border-radius: 20px;
  height: 40px;
  padding: 10px 24px 9px;
  font-size: 15px;
  line-height: 20px;
}

.button.white {
  color: #161a25;
  background-color: #fff;
}

.button.white:hover {
  box-shadow: 0 4px 12px #161a2540;
}

.button.red {
  background-color: #ff2f5b;
}

.button.red:hover {
  box-shadow: 0 4px 12px #ff2f5b73;
}

.button.side-margins {
  margin-left: 8px;
  margin-right: 8px;
}

.button.ghost {
  color: #161a25;
  background-color: #0000;
  box-shadow: inset 0 0 0 2px #e6e8ef;
}

.button.ghost:hover {
  box-shadow: inset 0 0 0 2px #cbd0df;
}

.wrapper {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
  position: relative;
}

.wrapper.nav-bar-wrapper {
  z-index: 1;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: relative;
}

.wrapper.side-paddings {
  padding-left: 15px;
  padding-right: 15px;
}

.wrapper.place-top {
  z-index: 1;
}

.nav-bar {
  z-index: 100;
  background-color: #fff;
  justify-content: center;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px #161a251a;
}

.navigation {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15px;
  display: flex;
}

.nav-dropdown-link {
  color: #ffffffb3;
  padding: 8px 32px 8px 24px;
  font-size: 14px;
  transition: color .1s;
}

.nav-dropdown-link:hover, .nav-dropdown-link.w--current {
  color: #fff;
}

.nav-menu {
  justify-content: flex-end;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-dropdown-icon {
  display: none;
}

.nav-bar-shadow {
  opacity: 0;
  position: absolute;
  inset: 0;
  box-shadow: 0 3px 16px #525b7326;
}

.image--logo {
  width: 160px;
}

.mini-heading {
  color: #7c8499;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
}

.mini-heading.text-white {
  color: #fff;
}

.link {
  color: #161a25;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  padding: 5px 0 3px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
  transition: box-shadow .2s;
  display: inline-block;
  box-shadow: 0 2px #cbd0df;
}

.link:hover {
  box-shadow: 0 2px #161a25;
}

.link.small {
  font-size: 10px;
  line-height: 12px;
}

.hero-v3 {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 70vh;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 50%;
  display: flex;
  position: relative;
}

.section {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 136px 24px;
  display: flex;
  position: relative;
}

.section.hero-v3-section {
  color: #fff;
  background-color: #161a25;
  background-image: linear-gradient(#161a2566, #161a2566), url('../images/chris-knight-458508.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding-top: 80px;
  padding-bottom: 0;
}

.section.foldsmart {
  color: #fff;
  background-color: #161a25;
  background-image: radial-gradient(circle at 0 0, #00000030, #fff0), linear-gradient(#161a2517, #161a2517), url('../images/-4hYtf7Q.jpeg');
  background-position: 0 0, 0 0, 50% 100%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 80px;
  padding-bottom: 0;
}

.section.big-padding-top {
  padding-top: 200px;
}

.section.dark {
  color: #fff;
}

.section.dark.mask {
  overflow: hidden;
}

.section.border-top {
  border-top: 1px solid #e6e8ef;
}

.section.border-top.no-padding-vertical {
  padding-top: 0;
  padding-bottom: 0;
}

.section.color {
  background-color: var(--dark-slate-blue);
  color: #fff;
}

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

.button-icon {
  width: 20px;
  margin-right: 12px;
}

.hero-v3-services {
  z-index: 1;
  color: #161a25;
  background-color: #fff;
  width: 100%;
  margin-bottom: -72px;
  margin-left: -78px;
  margin-right: -78px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px #525b731f;
}

.no-margin {
  margin: 0;
}

.hero-v3-service-info {
  flex: 1;
  margin-left: 24px;
  padding-bottom: 4px;
}

.hero-v3-service {
  background-color: #fff;
  flex: 1;
  align-items: center;
  padding: 40px 2% 40px 3%;
  display: flex;
  box-shadow: 0 0 0 1px #e6e8ef;
}

.hero-v3-service.cta {
  justify-content: center;
  min-width: 280px;
}

.hero-v3-services-wrapper {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-left: 14px;
  padding-right: 14px;
  display: flex;
  position: relative;
}

.icon {
  background-color: #4b6bf5;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
}

.icon.border {
  background-color: #0000;
  border: 1px solid #e6e8ef;
  flex: none;
}

.icon.border.no-margin {
  margin: 0;
}

.video-link {
  color: #2c3340;
  align-items: center;
  margin-top: 24px;
  text-decoration: none;
  display: flex;
}

.video-link.dark-bg {
  color: #fff;
  font-size: 17px;
}

.video-link.foldsmart {
  color: #fff;
  background-color: #492b6d;
  border-radius: 10px;
  justify-content: center;
  width: 200px;
  margin-top: 28px;
  padding: 11px 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 37px;
}

.video-link-icon-base {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
  padding: 11px;
  display: flex;
}

.video-link-icon {
  width: 22px;
}

.large-video-link {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  padding: 12px;
  display: flex;
}

.large-video-icon {
  width: 25px;
}

.image--points-icon {
  width: 32px;
}

.section-intro {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 600px;
  margin-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.section-intro.left {
  text-align: left;
  align-items: flex-start;
  width: 50%;
  max-width: none;
  margin-right: 50%;
}

.section-intro.left.no-margin {
  margin-bottom: 0;
}

.section-intro.left.foldsmart {
  margin-top: 80px;
}

.section-intro.no-margin {
  margin: 0;
}

.section-intro._50 {
  text-align: left;
  align-items: flex-start;
  width: 50%;
  margin-top: 80px;
  margin-bottom: 80px;
  padding-right: 73px;
}

.divider {
  z-index: 1;
  background-color: #cbd0df;
  width: 40px;
  height: 4px;
  margin-top: 20px;
  margin-bottom: 24px;
  position: relative;
}

.divider.dark-bg {
  background-color: #ffffff80;
}

.paragraph-big {
  font-size: 17px;
  line-height: 28px;
}

.intro-big-text {
  color: #e6e8ef80;
  margin-top: 8px;
  font-size: 128px;
  font-weight: 700;
  line-height: 96px;
  display: block;
}

.paragraph-small {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 20px;
}

.paragraph-small.text-grey {
  font-size: 14px;
  line-height: 22px;
}

.paragraph-small.centered {
  text-align: center;
}

.feature-v2 {
  align-items: flex-start;
  width: 33.33%;
  padding: 8px 25px 40px 15px;
  display: flex;
}

.feature-v2-info {
  flex: 1;
  margin-left: 24px;
}

.line-elements {
  justify-content: center;
  align-items: center;
  display: flex;
}

.features-v2 {
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.image--bottom-banner {
  margin-bottom: 60px;
}

.counter-v2 {
  width: 33.33%;
  padding-right: 20px;
}

.counters-v2 {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.bg-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: absolute;
}

.bg-image._11 {
  background-image: linear-gradient(#161a2566, #161a2566), url('../images/perspective-presentation.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bg-image.why-struggle {
  background-image: linear-gradient(#161a2566, #161a2566), url('../images/31009838_m_r.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.counters-v2-wrapper {
  z-index: 1;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.counter-v2-number {
  margin-bottom: 16px;
  font-family: Roboto Slab, sans-serif;
  font-size: 34px;
  line-height: 40px;
}

.footer-v2-subscribe {
  flex-direction: column;
  align-items: flex-start;
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}

.footer-v2-nav-links {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: -8px;
  font-size: 13px;
  line-height: 40px;
  display: flex;
}

.footer-v2-nav-links.contact-info {
  padding-top: 20px;
  padding-left: 15px;
}

.heart-icon {
  color: #0000;
  background-image: url('../images/heart-icon-color.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  width: 12px;
  margin-right: 1px;
  display: inline-block;
}

.footer-v2-heading {
  margin-top: 9px;
  margin-bottom: 32px;
  font-size: 14px;
}

.footer-v2-logo {
  flex-direction: column;
  align-items: flex-start;
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}

.link-dark {
  color: #161a25;
  text-decoration: none;
}

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

.link-dark.footer-text-right {
  margin-left: 16px;
}

.link-dark._13 {
  font-size: 13px;
  line-height: 25px;
}

.footer-v2 {
  flex-wrap: wrap;
  width: 100%;
  padding-top: 64px;
  display: flex;
}

.badge {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #525b73;
  border-radius: 4px;
  height: 20px;
  padding: 5px 8px;
  font-size: 8px;
  font-weight: 700;
  line-height: 12px;
  text-decoration: none;
  display: inline-block;
}

.badge.footer-v2-quote {
  background-color: var(--dark-slate-blue);
  margin-top: 12px;
}

.badge.work-v2-badge {
  margin-bottom: 24px;
}

.form-success {
  background-color: #0000;
  border-bottom: 1px solid #ffffff30;
  margin-bottom: 20px;
}

.footer-text-left {
  margin-right: 16px;
}

.footer-bottom {
  color: #7c8499;
  border-top: 1px solid #e6e8ef;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 12px;
  line-height: 16px;
  display: flex;
}

.footer-bottom-left {
  text-align: left;
  flex-wrap: wrap;
  flex: 1;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.footer-bottom-right {
  text-align: right;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.input {
  border: 1px solid #e6e8ef;
  border-radius: 24px;
  height: 48px;
  margin-bottom: 24px;
  padding: 15px 24px 14px;
  transition: border-color .2s;
}

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

.input:focus {
  border-color: #4b6bf5;
}

.input.footer-email {
  background-image: url('../images/input-mail-con.svg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: auto 40px;
  height: 40px;
  margin-bottom: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 48px;
  font-size: 13px;
  line-height: 20px;
}

.input.subscribe-email {
  background-image: url('../images/input-mail-con.svg');
  background-position: 0;
  background-repeat: no-repeat;
  border-color: #0000;
  width: 33.33%;
  margin-left: 8px;
  margin-right: 8px;
  padding-left: 56px;
}

.input.subscribe-name {
  background-image: url('../images/input-user-icon.svg');
  background-position: 0;
  background-repeat: no-repeat;
  border-color: #0000;
  width: 33.33%;
  margin-left: 8px;
  margin-right: 8px;
  padding-left: 56px;
}

.footer-v2-nav {
  width: 16.66%;
  padding-bottom: 24px;
  padding-left: 15px;
  padding-right: 15px;
}

.form-error {
  color: #ff2f5b;
  text-align: center;
  background-color: #0000;
  font-size: 13px;
  line-height: 20px;
}

.form-error.text-left {
  text-align: left;
}

.form-error.subscribe-error {
  color: #fff;
}

.image--footer-logo {
  width: 158px;
}

.nav-link-2 {
  padding: 28px 16px;
  font-weight: 600;
  transition: color .1s;
}

.nav-link-2:hover {
  color: #4b6bf5;
}

.nav-link-2.w--current {
  color: #161a25;
}

.nav-link-2.w--current:hover {
  color: #4b6bf5;
}

.arrow-icon {
  opacity: .6;
}

.big-work-circle {
  z-index: 1;
  background-color: var(--dark-slate-blue);
  border-radius: 50%;
  width: 500px;
  height: 500px;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -3%;
}

.work-v2-info {
  z-index: 1;
  text-align: left;
  max-width: 770px;
  margin-left: 16.66%;
  margin-right: 16.66%;
  position: relative;
}

.side-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.side-block._3d {
  perspective: 1000px;
}

.full-width {
  width: 100%;
}

.text-grey {
  color: #525b73;
}

.side-content {
  justify-content: center;
  width: 100%;
  display: flex;
}

.work-v2-preview {
  z-index: 10;
  position: relative;
  overflow: hidden;
  transform: perspective(2000px);
  box-shadow: 0 16px 36px #161a254d;
}

.work-v2-arrow-button {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 48px;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.highlight {
  opacity: .15;
  filter: blur(100px);
  background-color: #fff;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.about-v1-quote {
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
  width: 230px;
  margin-right: 6%;
  padding-top: 40px;
  display: flex;
}

.about-v1-quote-text {
  margin-top: 24px;
  margin-bottom: 48px;
  font-family: Roboto Slab, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
}

.button-2 {
  color: #fff;
  text-align: center;
  background-color: #4b6bf5;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: box-shadow .3s;
  display: flex;
}

.button-2:hover {
  box-shadow: 0 4px 12px #4b6bf580;
}

.button-2.subscribe-button {
  width: 33.33%;
  color: var(--midnight-blue);
  background-color: #e2e2e2;
  margin-left: 8px;
  margin-right: 8px;
}

.button-2.subscribe-button:hover {
  box-shadow: 0 4px 12px #161a254d;
}

.about-v1-quote-icon {
  width: 40px;
}

.about-v1-image {
  width: 33.33%;
  max-width: 400px;
}

.text-highlight {
  background-color: #ff9c2d66;
  padding-left: 4px;
  padding-right: 4px;
}

.about-v1-info {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  padding-left: 6%;
  display: flex;
}

.about-v1 {
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.subscribe {
  width: 800px;
  max-width: 100%;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 0;
}

.float-element-1 {
  opacity: .16;
  background-image: url('../images/icon_white_foldsmart.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  position: absolute;
  top: -33px;
  right: 12%;
}

.float-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.float-element-2 {
  opacity: .16;
  background-image: url('../images/icon_white_foldsmart.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20%;
  height: 144px;
  position: absolute;
  bottom: 20%;
  left: 0;
}

.subscribe-form {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 8px;
  padding-left: 7px;
  padding-right: 7px;
  display: flex;
}

.subscribe-icon {
  background-color: #ff9c2d;
  border: 3px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  display: flex;
}

.subscribe-icon.grade-4 {
  background-color: #e2e2e2;
  border-color: #b4b4b4;
  width: 70px;
  height: 70px;
}

.overall-video-lightbox {
  border-radius: 4px;
  width: 100%;
  height: 230px;
  display: block;
  overflow: hidden;
  box-shadow: 0 10px 40px #0000004d;
}

.overall-video-lightbox.hero-small {
  width: 250px;
  height: 161px;
  margin-top: 38px;
}

.overall-video-lightbox.hero-small.less-top {
  margin-top: 15px;
}

.video-lightbox-image-block {
  background-image: linear-gradient(#0000001a, #0000001a), url('../images/Photo-6.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.video-lightbox-image-block.small-hero {
  background-image: url('../images/Screen-Shot-2020-04-20-at-10.04.26-AM.png');
  background-position: 50%;
  background-size: cover;
}

.video-lightbox-button {
  text-align: center;
  background-color: #5ec045;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-left: 2px;
  transition: transform .2s;
  display: block;
  position: absolute;
  top: 53%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}

.video-lightbox-button:hover {
  transform: translate(0, -50%)scale(1.2);
  box-shadow: 0 0 13px #00000080;
}

.video-lightbox-icon {
  height: 25px;
}

.hero-heading {
  color: #8a8c8d;
  margin-top: 15px;
  font-size: 40px;
  font-weight: 600;
  line-height: 54px;
}

.footer-contact-list {
  font-size: 13px;
}

.footer-contact-list.relative {
  position: relative;
}

.footer-contact-list-item {
  padding-left: 35px;
  position: relative;
}

.footer-contact-icon {
  width: 17px;
  position: absolute;
  top: 2px;
  left: 0;
}

.link-2 {
  color: #1ca6ac;
}

.link-2:hover {
  color: #e95500;
}

.link-2.footer-link {
  color: #000;
}

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

.tooltip-arrow {
  background-color: #fff;
  border-bottom: 1px solid #e1e6ee;
  border-right: 1px solid #e1e6ee;
  width: 8px;
  height: 8px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  transform: rotate(45deg);
}

.pricing-v3-cells {
  flex: 1;
}

.pricing-v3-plan-name {
  margin-top: -4px;
}

.tooltip {
  z-index: 5;
  color: #7a8292;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e1e6ee;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 200px;
  max-width: 200px;
  margin-bottom: 20px;
  padding: 12px 16px;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  position: absolute;
  bottom: 50%;
  box-shadow: 0 2px 6px #5962731a;
}

.pricing-v3 {
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  min-height: 400px;
  top: 0;
  box-shadow: 0 6px 12px #5962731a;
}

.pricing-v3-tag {
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 32px;
  line-height: 32px;
  display: flex;
}

.pricing-v3-header {
  z-index: 2;
  border-bottom: 1px solid #e1e6ee;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  top: 260px;
}

.pricing-v3-category-icon {
  width: 20px;
  margin-right: 10px;
}

.section-2 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 40px;
  display: flex;
  position: relative;
}

.section-2.haze {
  background-color: #f5f6f8;
}

.pricing-v3-plans {
  z-index: 3;
  background-color: #fff;
  border-bottom: 1px solid #e1e6ee;
  width: 100%;
  display: flex;
}

.pricing-v3-plans.mobile-bottom {
  display: none;
}

.pricing-v3-plans.mobile-sticky {
  display: block;
}

.pricing-v3-category-heading {
  margin: 0;
  font-size: 14px;
}

.info {
  cursor: pointer;
  background-image: url('../images/info-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  border: 1px solid #e1e6ee;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  transition: border .3s;
  display: flex;
  position: relative;
}

.info:hover {
  border-color: #d3d8e1;
}

.wrapper-2 {
  z-index: 1;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
  position: relative;
}

.wrapper-2.side-paddings {
  padding-left: 15px;
  padding-right: 15px;
}

.pricing-v3-category {
  width: 100%;
}

.pricing-v3-category-header {
  z-index: 2;
  background-color: #f5f6f8;
  border-top: 1px solid #e1e6ee;
  border-bottom: 1px solid #e1e6ee;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: -1px;
  margin-bottom: -1px;
  padding: 9px 30px 10px;
  display: flex;
}

.pricing-v3-cell {
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 56px;
  padding: 8px 24px;
  font-weight: 700;
  display: flex;
  box-shadow: -1px 0 #e1e6ee;
}

.pricing-v3-cell-description {
  color: #7a8292;
  width: 100%;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
}

.pricing-v3-billing {
  color: #7a8292;
  margin-bottom: 16px;
  font-size: 11px;
  line-height: 16px;
}

.pricing-cell-icon {
  width: 24px;
  display: block;
}

.pricing-cell-icon.small {
  width: 20px;
}

.pricing-v3-row-header {
  color: #596273;
  align-items: center;
  width: 25%;
  min-height: 56px;
  padding: 9px 24px 9px 32px;
  display: flex;
  box-shadow: 0 -1px #e1e6ee;
}

.pricing-v3-currency {
  color: #a9b0be;
  margin-top: 1px;
  margin-left: -12px;
  margin-right: 3px;
  font-size: 16px;
  line-height: 20px;
}

.pricing-plan-cell {
  text-align: center;
  width: 25%;
  padding: 24px;
  box-shadow: -1px 0 #e1e6ee;
}

.pricing-plan-cell.no-divider {
  box-shadow: none;
}

.pricing-plan-cell._37 {
  width: 37.5%;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #2583fd;
  background-image: linear-gradient(#39abff, #397ef3);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: inset 0 0 0 1px #2583fd;
}

.button-3:hover {
  box-shadow: inset 0 0 0 1px #2583fd, 0 4px 16px #2583fd80;
}

.button-3.small {
  height: 40px;
  padding: 8px 20px;
  font-size: 13px;
  line-height: 20px;
}

.pricing-v3-plan-mobile {
  margin-top: -4px;
}

.pricing-v3-row {
  border-top: 1px solid #e1e6ee;
  width: 100%;
  display: flex;
}

.image--compare-logo {
  height: 100px;
}

.button-icon-2 {
  float: left;
  width: 20px;
  margin-right: 8px;
}

.team-member-info {
  flex: 1;
}

.section-intro-2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.team-member-link {
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  padding: 5px;
  transition: transform .2s;
  display: flex;
}

.team-member-link:hover {
  z-index: 1;
  position: relative;
  transform: scale(1.2);
}

.text-dark-grey {
  color: #596273;
}

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

.team {
  flex-wrap: wrap;
  width: 100%;
  margin-top: -15px;
  margin-bottom: 64px;
  display: flex;
}

.team-member-header {
  border-bottom: 1px solid #e1e6ee;
  justify-content: flex-start;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.team-member-position {
  color: #596273;
  text-align: right;
  text-transform: uppercase;
  flex: 1;
  font-size: 11px;
  line-height: 16px;
}

.text-block {
  color: #596273;
  margin-top: 16px;
  font-size: 14px;
  line-height: 24px;
}

.team-member-avatar {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  width: 130px;
  height: 160px;
}

.team-member-avatar._1 {
  background-image: url('../images/Avatar-30.jpg');
  flex: none;
  margin-right: 30px;
}

.team-member-avatar._2 {
  background-image: url('../images/Avatar-32.jpg');
  flex: none;
  margin-right: 30px;
}

.team-member-avatar._4 {
  background-image: url('../images/Avatar-31.jpg');
  flex: none;
  margin-right: 30px;
}

.team-member-avatar._3 {
  background-image: url('../images/Avatar-27.jpg');
  flex: none;
  margin-right: 30px;
}

.title {
  color: #a9b0be;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
}

.team-member-heading {
  margin-bottom: 0;
  margin-right: 6px;
}

.team-member {
  background-color: #fff;
  border-radius: 10px;
  align-items: flex-start;
  padding: 40px;
  display: flex;
  box-shadow: 0 6px 12px #5962731f;
}

.team-member-wrapper {
  width: 50%;
  padding: 15px;
}

.video-wrapper {
  background-color: #fff;
  border-radius: 10px;
  align-items: flex-start;
  padding: 40px;
  display: block;
  box-shadow: 0 6px 12px #5962731f;
}

.video-parent-wrapper {
  width: 50%;
  padding: 15px;
}

.videos {
  flex-wrap: wrap;
  width: 100%;
  margin-top: -15px;
  margin-bottom: 0;
  display: flex;
}

.div-block--hero-bg {
  background-image: url('../images/herobg2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 500px;
  height: 286px;
  margin-bottom: 120px;
  padding: 20px 16px 16px 20px;
}

.hero-heading-4 {
  color: #492b6d;
  margin: 0;
  font-size: 22px;
}

.hero-purple {
  color: var(--dark-slate-blue-2);
}

.div-block--compare-parent {
  width: 100%;
  margin-top: 50px;
}

.div-block--compare-parent._50 {
  width: 50%;
  margin-top: 80px;
}

.div-block--column-1 {
  width: 50%;
  padding: 8px;
}

.div-block--row-wrapper {
  border-top: 1px solid var(--white-smoke);
  display: flex;
}

.div-block--row-wrapper.top {
  border-top-style: none;
}

.div-block--column-2 {
  border-style: none none none solid;
  border-width: 1px;
  border-color: black black black var(--white-smoke);
  justify-content: center;
  align-items: center;
  width: 25%;
  padding: 8px;
  display: flex;
}

.div-block--column-3 {
  border-left: 1px solid var(--white-smoke);
  justify-content: center;
  align-items: center;
  width: 25%;
  padding: 8px;
  display: flex;
}

.chart-text {
  margin-bottom: 0;
}

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

  .nav-dropdown-list.w--open {
    background-color: #0000;
    margin-left: 0;
    box-shadow: 0 1px #ffffff1f;
  }

  .nav-link {
    color: #ffffffb3;
    padding: 12px 24px;
    box-shadow: 0 1px #ffffff1f;
  }

  .nav-link:hover, .nav-link.w--current, .nav-link.w--current:hover {
    color: #fff;
  }

  .nav-link.w--open {
    box-shadow: none;
  }

  .wrapper.side-paddings {
    padding-left: 8px;
    padding-right: 8px;
  }

  .nav-bar {
    border-top: 1px solid #161a251a;
    padding-left: 8px;
    padding-right: 0;
  }

  .menu-button {
    border-left: 1px solid #161a251a;
    margin-left: 16px;
  }

  .menu-button.w--open {
    color: #161a25;
    background-color: #0000;
  }

  .navigation {
    padding-right: 0;
  }

  .nav-dropdown-link {
    padding-left: 40px;
  }

  .nav-dropdown-link:hover, .nav-dropdown-link:visited {
    color: #fff;
  }

  .nav-dropdown-link.w--current {
    color: #ffffff80;
  }

  .nav-menu {
    background-color: #1d152c;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: block;
    overflow: hidden;
  }

  .nav-dropdown-icon {
    opacity: .4;
    display: inline-block;
  }

  .hero-v3 {
    min-height: 480px;
    padding-right: 33.33%;
  }

  .section {
    padding: 104px 8px;
  }

  .section.hero-v3-section {
    padding-top: 60px;
  }

  .section.foldsmart {
    background-image: linear-gradient(to bottom, null, null), url('../images/-4hYtf7Q.jpeg');
    background-attachment: scroll, scroll;
    padding-top: 60px;
  }

  .section.big-padding-top {
    padding-top: 264px;
  }

  .hero-v3-services {
    flex-wrap: wrap;
    margin-bottom: -168px;
  }

  .no-margin {
    margin: 0;
  }

  .hero-v3-service {
    flex: 0 auto;
    width: 50%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-v3-service.cta {
    min-width: 0;
  }

  .icon.border.no-margin {
    margin: 0;
  }

  .section-intro {
    margin-bottom: 64px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .section-intro.left {
    width: 66.66%;
    margin-right: 33.33%;
  }

  .intro-big-text {
    font-size: 88px;
    line-height: 72px;
  }

  .feature-v2 {
    width: 50%;
    padding-bottom: 24px;
    padding-left: 8px;
    padding-right: 24px;
  }

  .bg-image {
    height: 150%;
  }

  .footer-v2-subscribe {
    width: 34%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .footer-v2-logo {
    width: 100%;
    padding-bottom: 48px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .footer-v2 {
    padding-top: 48px;
  }

  .footer-bottom {
    margin-left: 8px;
    margin-right: 8px;
  }

  .footer-v2-nav {
    width: 22%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .nav-link-2 {
    color: #ffffffb3;
    padding: 12px 24px;
    box-shadow: 0 1px #ffffff1f;
  }

  .nav-link-2:hover, .nav-link-2.w--current, .nav-link-2.w--current:hover {
    color: #fff;
  }

  .nav-link-2.w--open {
    box-shadow: none;
  }

  .big-work-circle {
    width: 420px;
    height: 420px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    left: 0;
    right: 0%;
  }

  .work-v2-info {
    text-align: center;
    max-width: none;
    margin-top: 64px;
    margin-left: 16%;
    margin-right: 16%;
  }

  .side-block {
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .side-content {
    flex-wrap: wrap;
  }

  .side-content.mobile-reversed {
    flex-direction: column-reverse;
  }

  .work-v2-preview {
    width: 66.66%;
  }

  .about-v1-quote {
    text-align: left;
    align-items: flex-start;
    max-width: 41.66%;
    margin-left: 8.33%;
    margin-right: 0%;
    padding-left: 8px;
  }

  .about-v1-image {
    order: -1;
    width: 50%;
  }

  .about-v1-info {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 64px;
    padding-left: 8%;
    padding-right: 8%;
    display: flex;
  }

  .about-v1 {
    flex-wrap: wrap;
    padding-left: 8.33%;
    padding-right: 8.33%;
  }

  .float-element-1 {
    width: 186px;
    height: 186px;
    right: 4%;
  }

  .float-element-2 {
    height: 104px;
    bottom: 13%;
  }

  .pricing-v3-plan-name {
    font-size: 14px;
  }

  .pricing-v3-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .section-2 {
    padding: 80px 8px;
  }

  .pricing-v3-plans {
    top: 64px;
  }

  .pricing-v3-category-heading {
    margin: 0;
    font-size: 13px;
  }

  .info {
    flex: none;
  }

  .wrapper-2.side-paddings {
    padding-left: 8px;
    padding-right: 8px;
  }

  .pricing-v3-category-header {
    padding-left: 18px;
    padding-right: 20px;
    top: 240px;
  }

  .pricing-v3-row-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-plan-cell {
    padding: 20px;
  }

  .pricing-v3-plan-mobile {
    font-size: 14px;
  }

  .section-intro-2 {
    max-width: 500px;
    margin-bottom: 56px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .team {
    width: 83.33%;
    margin-top: -12px;
    margin-bottom: 48px;
  }

  .team-member-wrapper, .video-parent-wrapper {
    width: 100%;
    padding: 12px 8px;
  }

  .videos {
    width: 83.33%;
    margin-top: -12px;
    margin-bottom: 48px;
  }

  .hero-heading-4 {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 34px;
    line-height: 44px;
  }

  .button.side-margins {
    margin-bottom: 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-v3 {
    padding-right: 0%;
  }

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

  .section.big-padding-top {
    padding-top: 208px;
  }

  .hero-v3-services {
    margin-bottom: -128px;
  }

  .no-margin {
    margin: 0;
  }

  .hero-v3-service-info {
    margin-left: 20px;
  }

  .hero-v3-service {
    padding: 32px 24px;
  }

  .icon.border.no-margin {
    margin: 0;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .section-intro.left {
    width: 80%;
    margin-right: 20%;
  }

  .section-intro._50 {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 0;
  }

  .paragraph-big {
    font-size: 16px;
  }

  .intro-big-text {
    font-size: 80px;
    line-height: 64px;
  }

  .feature-v2 {
    width: 100%;
    padding-right: 8px;
  }

  .line-elements {
    flex-direction: column;
    align-items: stretch;
    padding-left: 8px;
    padding-right: 8px;
  }

  .features-v2 {
    width: 75%;
  }

  .bg-image.why-struggle {
    background-image: linear-gradient(#0006, #0006), url('../images/31009838_m_r.jpg');
    background-position: 0 0, 68%;
  }

  .counters-v2-wrapper.mobile {
    flex-direction: column;
  }

  .footer-v2-subscribe {
    width: 50%;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .input.subscribe-email, .input.subscribe-name {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-v2-nav {
    width: 33.33%;
    padding-bottom: 48px;
  }

  .big-work-circle {
    width: 380px;
    height: 380px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    bottom: 0%;
    left: 0;
    right: 0;
  }

  .work-v2-info {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 8%;
    margin-right: 8%;
    display: flex;
  }

  .side-block {
    width: 100%;
  }

  .side-content {
    flex-wrap: wrap;
  }

  .work-v2-preview {
    width: 83.33%;
  }

  .about-v1-quote {
    padding-top: 16px;
  }

  .button-2.subscribe-button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .about-v1-info {
    padding-top: 48px;
  }

  .subscribe {
    max-width: 66.66%;
  }

  .float-element-1 {
    width: 149px;
    height: 148px;
    right: 4%;
  }

  .float-element-2 {
    height: 80px;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 24px;
  }

  .overall-video-lightbox.hero-small {
    width: 100%;
    height: 190px;
    margin-top: 30px;
  }

  .pricing-v3-plan-name {
    font-size: 13px;
    display: none;
    position: sticky;
  }

  .pricing-v3-tag {
    font-size: 24px;
    line-height: 24px;
  }

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

  .pricing-v3-plans {
    position: static;
  }

  .pricing-v3-plans.mobile-bottom {
    border-top: 1px solid #e1e6ee;
    display: flex;
  }

  .pricing-v3-plans.mobile-sticky {
    display: flex;
    position: sticky;
  }

  .pricing-v3-category-heading {
    margin: 0;
  }

  .pricing-v3-category-header {
    padding-left: 14px;
    padding-right: 16px;
    position: static;
  }

  .pricing-v3-cell {
    min-height: 48px;
    font-size: 13px;
  }

  .pricing-cell-icon {
    width: 20px;
  }

  .pricing-v3-row-header {
    border-bottom: 1px solid #e1e6ee;
    width: 100%;
    min-height: 32px;
    padding: 4px 16px;
    font-size: 12px;
    line-height: 16px;
  }

  .pricing-v3-currency {
    margin-top: 0;
    margin-left: -11px;
    font-size: 14px;
  }

  .pricing-plan-cell {
    width: 33.33%;
  }

  .pricing-plan-cell.no-divider {
    display: none;
  }

  .pricing-v3-plan-mobile {
    margin-top: -10px;
    margin-bottom: -10px;
    font-size: 13px;
    position: sticky;
  }

  .pricing-v3-row {
    flex-wrap: wrap;
  }

  .team, .videos {
    width: 100%;
    margin-bottom: 32px;
  }

  .hero-heading-4 {
    margin: 0;
  }

  .div-block--compare-parent._50 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .button.small.nav {
    min-width: 109px;
    font-size: 12px;
    line-height: 14px;
  }

  .hero-v3 {
    text-align: center;
    align-items: center;
    min-height: 400px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.foldsmart {
    background-image: linear-gradient(#0006, #0006), url('../images/-4hYtf7Q.jpeg');
    background-position: 0 0, 74% 100%;
  }

  .section.big-padding-top {
    padding-top: 440px;
  }

  .hero-v3-services {
    margin-bottom: -368px;
  }

  .no-margin {
    margin: 0;
  }

  .hero-v3-service {
    width: 100%;
  }

  .icon.border.no-margin {
    margin: 0;
  }

  .video-link.foldsmart {
    width: 180px;
    margin-top: 0;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 18px;
  }

  .section-intro.left {
    width: 100%;
    margin-right: 0%;
  }

  .intro-big-text {
    font-size: 56px;
    line-height: 56px;
  }

  .features-v2 {
    width: 100%;
  }

  .counter-v2 {
    align-items: center;
    width: 100%;
    padding-bottom: 40px;
    display: flex;
  }

  .counters-v2 {
    flex-wrap: wrap;
    margin-bottom: -32px;
  }

  .counter-v2-number {
    margin-bottom: 2px;
    margin-right: 20px;
  }

  .footer-v2-subscribe {
    width: 100%;
  }

  .footer-v2-nav {
    width: 50%;
  }

  .big-work-circle {
    width: 288px;
    height: 288px;
  }

  .work-v2-info {
    margin-left: 0%;
    margin-right: 0%;
  }

  .work-v2-preview {
    width: 100%;
  }

  .about-v1-quote {
    text-align: center;
    order: -1;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-left: 0%;
    padding-top: 0;
    padding-bottom: 48px;
    padding-left: 0;
  }

  .about-v1-image {
    width: 100%;
  }

  .about-v1-info, .about-v1 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .subscribe {
    max-width: 100%;
    padding-top: 8px;
  }

  .float-element-1 {
    width: 100px;
    height: 100px;
    top: -9px;
    right: 3%;
  }

  .float-element-2 {
    bottom: 2%;
  }

  .overall-video-lightbox, .overall-video-lightbox.hero-small {
    height: 140px;
  }

  .video-lightbox-button {
    width: 50px;
    height: 50px;
    padding-top: 13px;
  }

  .video-lightbox-icon {
    height: 20px;
  }

  .hero-heading {
    font-size: 26px;
    line-height: 44px;
  }

  .footer-contact-list-item {
    padding-left: 30px;
  }

  .pricing-v3 {
    border-radius: 0;
    width: 100vw;
  }

  .section-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .pricing-v3-category-heading {
    margin: 0;
  }

  .pricing-v3-billing {
    flex: 1;
  }

  .pricing-v3-row-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .pricing-v3-currency {
    margin-left: -10px;
    margin-right: 2px;
  }

  .pricing-plan-cell {
    flex-direction: column;
    align-items: stretch;
    padding-left: 3%;
    padding-right: 3%;
    display: flex;
  }

  .button-3.small {
    padding-left: 16px;
    padding-right: 16px;
  }

  .team-member-header {
    flex-wrap: wrap;
    padding-top: 20px;
  }

  .team-member-position {
    text-align: left;
    flex: 0 auto;
    width: 100%;
    margin-top: 4px;
  }

  .team-member-avatar {
    width: 100%;
    height: 280px;
  }

  .team-member {
    flex-direction: column;
    padding: 32px;
  }

  .video-wrapper {
    flex-direction: column;
    padding: 9px;
  }

  .div-block--hero-bg {
    text-align: left;
    background-size: cover;
    width: 300px;
    height: 272px;
  }

  .hero-heading-4 {
    margin: 0;
    font-size: 19px;
  }

  .div-block--compare-parent._50 {
    margin-top: 40px;
  }

  .chart-text {
    font-size: 14px;
  }
}


