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

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Markpro, sans-serif;
  font-size: 144px;
  font-weight: 900;
  line-height: 137px;
}

h2 {
  color: #2b2a35;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Markpro, sans-serif;
  font-size: 3.2em;
  font-weight: 900;
  line-height: 1em;
}

h3 {
  color: #2b2a35;
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Markpro, sans-serif;
  font-size: 2.6em;
  font-weight: 900;
  line-height: 1.5em;
}

h4 {
  color: #2b2a35;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Eina, sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 41px;
}

h5 {
  color: #2b2a35;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

h6 {
  color: #2b2a35;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
}

p {
  color: #545465;
  margin-bottom: 0;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

a {
  text-decoration: underline;
}

.nav {
  z-index: 2147483647;
  background-color: #fff;
  padding: 16px 10vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav.nav--orange {
  background-image: linear-gradient(to right, #ea72ad, #fab038);
}

.nav.hide {
  display: none;
}

.nav__container {
  max-width: 80vmax;
  grid-template: "Area Area-2 Area-3"
  / auto auto auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav__logo {
  width: 66px;
  height: 23px;
  order: -1;
}

.nav__menu {
  align-items: flex-end;
  display: flex;
}

.nav__link {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

.nav__logo-image {
  color: #2b2a35;
}

.nav__logo-image.nav__logo-image--white {
  color: #fff;
}

.nav__buttons {
  order: 1;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.button {
  text-align: center;
  border-radius: 4px;
  padding: 12px 25px;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.button.button--white-whitebg {
  color: #334ac0;
  background-color: #fff;
  border: .5px solid #f6f6f6;
  transition: box-shadow .2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .04), 0 0 1px rgba(0, 0, 0, .06);
}

.button.button--white-whitebg:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, .12), 0 2px 6px rgba(0, 0, 0, .08), 0 0 1px rgba(0, 0, 0, .12);
}

.button.button--white-whitebg.button--space {
  margin-right: 12px;
}

.button.button--blue {
  color: #fff;
  background-color: #334ac0;
  transition: background-color .2s;
}

.button.button--blue:hover {
  background-color: #586ee0;
}

.button.button--white-purplebg {
  color: #334ac0;
  background-color: #fff;
  border: .5px solid #f6f6f6;
  transition: box-shadow .2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .04), 0 0 1px rgba(0, 0, 0, .06);
}

.button.button--white-purplebg:hover {
  background-color: #f2f2f2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .04), 0 0 1px rgba(0, 0, 0, .06);
}

.button.button--white-purplebg.button--space {
  margin-right: 12px;
}

.nav__link-div-jobs {
  width: 60px;
  height: 28px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.nav__link-div-jobs-counter {
  width: 18px;
  height: 18px;
  background-color: #334ac0;
  border-radius: 20px;
  padding-top: 2px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.nav__link-div-jobs-counter.nav__link-div-jobs-counter--white {
  background-color: #fff;
}

.nav__link-jobs-counter {
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Eina, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
}

.nav__link-jobs-counter.nav__link-jobs-counter--black {
  color: #2b2a35;
}

.nav__link-div-learning {
  height: 23px;
  cursor: pointer;
  align-items: flex-start;
  text-decoration: none;
  position: relative;
}

.nav__link-div-learning.nav__link-div-learning--space {
  align-items: flex-end;
  margin-right: 50px;
}

.nav__link-div-learning-arrow {
  color: #2b2a35;
  order: 1;
  align-self: flex-start;
  margin-right: 0;
  display: inline-block;
  position: static;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.nav__link-div-learning-arrow.nav__link-div-learning-arrow--white {
  color: #fff;
}

.nav__link-learning {
  order: -1;
  align-self: flex-start;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

.nav__link-learning.nav__link--8pxspace {
  margin-right: 8px;
}

.nav__link-learning.nav__link--8pxspace.nav__link-learning--black {
  color: #2b2a35;
}

.nav__link-learning.nav__link--8pxspace.nav__link-learning--white {
  color: #fff;
}

.nav__link-div {
  height: 23px;
  color: #2b2a35;
  margin-right: 0;
  text-decoration: none;
}

.nav__link-div.nav__link-div--black {
  color: #2b2a35;
}

.nav__link-div.nav__link-div--black:hover {
  border-bottom: 2px solid #dddfe5;
}

.nav__link-div.nav__link-div--black.w--current {
  color: #334ac0;
  border-bottom: 2px solid #334ac0;
}

.nav__link-div.nav__link-div--black.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
  display: none;
}

.nav__link-div.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div.nav__link-div--space.nav__link-div--white {
  color: #fff;
}

.nav__link-div.nav__link-div--space.nav__link-div--white:hover {
  border-bottom: 2px solid #fff;
}

.nav__link-div.nav__link-div--space.nav__link-div--white.w--current {
  color: #fff;
  border-bottom-color: #fff;
}

.nav__link-div.nav__link-div--white {
  color: #fff;
}

.nav__link-div.nav__link-div--white:hover {
  border-bottom: 2px solid #fff;
}

.nav__link-div.nav__link-div--white.w--current {
  border-bottom: 2px solid #334ac0;
}

.nav__link-div.nav__link-div--white.nav__link-div--space, .nav__link-div.nav__link-div--white.space {
  margin-right: 50px;
}

.nav__link-div.nav__link-div--white.space.w--current {
  border-bottom-color: #fff;
}

.nav__link-div.nav__link-div-jobs--white {
  color: #fff;
}

.nav__link-div.nav__link-div-jobs--white:hover {
  border-bottom: 2px solid #fff;
}

.nav__link-div.nav__link-div-jobs--white.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div.nav__link-div-jobs--black {
  color: #2b2a35;
}

.nav__link-div.nav__link-div-jobs--black:hover {
  border-bottom: 2px solid #dddfe5;
}

.nav__link-div.nav__link-div-jobs--black.nav__link-div--space {
  margin-right: 50px;
}

.nav-shadow {
  z-index: 9995;
  height: 5em;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .16), 0 2px 6px rgba(0, 0, 0, .08), 0 0 1px rgba(0, 0, 0, .08);
}

.nav__dropdown {
  z-index: 9999999;
  width: 200px;
  position: absolute;
  left: -63px;
}

.nav__dropdown.w--open {
  background-color: rgba(0, 0, 0, 0);
}

.nav__dropdown-bg {
  width: 200px;
  height: 168px;
  background-color: #fff;
  border-radius: 10%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04), 0 0 1px rgba(0, 0, 0, .04);
}

.nav__dropdown-wrapper {
  width: 200px;
  height: 174px;
}

.nav__dropdown-links-wrapper {
  padding-top: 6px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nav__dropdown-arrow {
  height: 6px;
}

.nav__dropdown-links-div {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 26px 40px;
  display: flex;
}

.nav__dropdown-link-div {
  height: 21px;
  margin-right: 0;
  text-decoration: none;
}

.nav__dropdown-link-div.nav__dropdown-link-div--black {
  color: #2b2a35;
}

.nav__dropdown-link-div.nav__dropdown-link-div--black:hover {
  border-bottom: 2px solid #dddfe5;
}

.nav__dropdown-link-div.nav__dropdown-link-div--black.w--current {
  color: #334ac0;
  border-bottom: 2px solid #334ac0;
}

.nav__dropdown-link-div.nav__dropdown-link-div--black.nav__dropdown-link-div--space {
  margin-bottom: 12px;
}

.nav__dropdown-link {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-family: Eina, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.nav__link-wrapper-learning {
  align-items: flex-end;
  padding: 0;
  display: flex;
}

.hero__cta-heading {
  color: #2b2a35;
  text-align: center;
  margin-bottom: 17px;
}

.hero__cta-div {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero__cta-inputwrapper {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.hero__cta-input {
  width: 226px;
  height: 46px;
  color: rgba(84, 84, 101, .82);
  border: 1px solid #dddfe5;
  border-right: 0 #000;
  border-radius: 4px 0 0 4px;
  margin-bottom: 0;
  padding: 14px 18px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  transition: border-color .2s;
}

.hero__cta-input:hover {
  border-top-color: rgba(43, 42, 53, .3);
  border-bottom-color: rgba(43, 42, 53, .3);
  border-left-color: rgba(43, 42, 53, .3);
}

.hero__cta-input:focus {
  border-top-color: #334ac0;
  border-bottom-color: #334ac0;
  border-left-color: #334ac0;
}

.hero__cta-button {
  height: 46px;
  color: #fff;
  text-align: center;
  background-color: #334ac0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 15px 48px;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  transition: background-color .2s;
}

.hero__cta-button:hover {
  background-color: #586ee0;
}

.hero__cta-disclaimer {
  color: rgba(84, 84, 101, .6);
  font-family: Eina, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.hero__cta-disclamer-link {
  color: #586ee0;
  text-decoration: none;
}

.hero__cta-disclamer-link:hover {
  text-decoration: underline;
}

.intro {
  background-image: linear-gradient(#f6f6f6, #fff 30%);
  flex-direction: column;
  align-items: center;
  padding: 100px 4vw 75px;
  display: flex;
  overflow: hidden;
}

.intro__logos {
  margin-bottom: 136px;
}

.intro__logos-heading {
  color: #545465;
  text-align: center;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 70px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

.intro__logos-wrapper {
  height: 56px;
}

.intro__logo.intro__logo--rmargin {
  margin-right: 40px;
}

.intro__workflow {
  max-width: 80em;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.intro__workflow-text {
  width: 50%;
}

.intro__workflow-heading {
  opacity: 0;
  margin-bottom: 46px;
  transform: translate(0, 100px);
}

.intro__workflow-paragraph {
  opacity: 0;
  transform: translate(0, 100px);
}

.intro__workflow-paragraph.intro__workflow-paragraph--space {
  margin-bottom: 18px;
}

.decks {
  height: 67vh;
  background-color: #f6f6f6;
  flex-direction: column;
  align-items: center;
  padding-top: 154px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.decks__text {
  width: 526px;
  margin-bottom: 40px;
}

.decks__text-heading {
  opacity: 0;
  text-align: center;
  margin-bottom: 46px;
  transform: translate(0, 100px);
}

.decks__text-paragraph {
  opacity: 0;
  text-align: center;
  transform: translate(0, 100px);
}

.decks__wrapper {
  width: 120vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.decks__overlay {
  z-index: 1;
  height: 116px;
  background-image: linear-gradient(rgba(246, 246, 246, 0), rgba(43, 42, 53, .2));
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.decks__grid {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.decks__grid.decks__grid--margin {
  margin-right: 1vw;
}

.decks__image {
  width: 15.5vw;
  border-radius: 4px;
  box-shadow: 0 24px 24px rgba(0, 0, 0, .04), 0 16px 24px rgba(0, 0, 0, .06), 0 4px 8px rgba(0, 0, 0, .12), 0 0 1px rgba(0, 0, 0, .06);
}

.decks__image.decks__image--margin {
  margin-bottom: 1.5vh;
}

.formatting {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 93px;
  padding-left: 4vw;
  padding-right: 4vw;
  display: block;
  overflow: hidden;
}

.formatting__text {
  width: 525px;
  margin-left: -15px;
  margin-right: 4vw;
  padding-top: 66px;
  padding-bottom: 180px;
  position: relative;
}

.formatting__lottie {
  z-index: 0;
  width: 75em;
  height: auto;
  margin-left: -24.8em;
  position: absolute;
  bottom: 0;
  left: 0;
}

.integrations {
  background-color: #f6f6f6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 4vw 188px;
  display: block;
  overflow: hidden;
}

.integrations__text {
  width: 425px;
  padding-top: 186px;
}

.integrations__text-heading {
  opacity: 0;
  margin-bottom: 46px;
  transform: translate(0, 100px);
}

.news__card-paragraph {
  color: #fff;
}

.integrations__lottie {
  width: 75em;
  margin-top: 0;
  margin-right: -20vw;
}

.sharing {
  flex-direction: column;
  align-items: center;
  padding-top: 113px;
  padding-left: 2vw;
  padding-right: 2vw;
  display: block;
  overflow: hidden;
}

.sharing__text {
  width: 565px;
  margin-left: auto;
  margin-right: auto;
}

.sharing__text-heading {
  opacity: 0;
  text-align: center;
  margin-bottom: 46px;
  transform: translate(0, 100px);
}

.sharing__text-paragraph {
  opacity: 0;
  text-align: center;
  transform: translate(0, 100px);
}

.sharing__wrapper {
  max-width: 100em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.sharing__image {
  width: 100%;
}

.sharing__hand {
  width: 22%;
  position: absolute;
  bottom: 0;
  left: 14%;
}

.sharing__access {
  width: 30%;
  position: absolute;
  top: 25%;
  left: 0;
}

.sharing__invite {
  width: 30%;
  position: absolute;
  top: 50%;
  right: 0;
}

.sharing__plane-wrapper {
  width: 40%;
  position: absolute;
  top: -72px;
  right: 77px;
}

.sharing__plane {
  z-index: 1;
  position: relative;
}

.sharing__plane-shadow {
  display: none;
  position: absolute;
  bottom: 123px;
  right: 57px;
}

.news {
  justify-content: center;
  align-items: center;
  padding-top: 178px;
  padding-left: 4vw;
  padding-right: 4vw;
  display: block;
}

.news__wrapper {
  max-width: 80em;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.news__card {
  opacity: 0;
  background-color: #fff;
  border: 1px solid #dddfe5;
  border-radius: 6px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  margin: 1.5em;
  padding: 4em;
  display: flex;
  transform: translate(0, 100px);
}

.news__card.news__card--purple {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(138deg, #4966f7, #7756fd);
  border-style: none;
}

.news__card-content {
  flex: 26em;
  margin-bottom: 22px;
}

.news__card-content.news__card-content--height {
  flex: 30em;
}

.news__card-heading {
  margin-bottom: 24px;
  font-size: 3em;
  line-height: 1em;
  transition: color .2s;
}

.news__card-heading:hover {
  color: #334ac0;
}

.news__card-heading.news__card-heading--white {
  color: #fff;
}

.news__card-button {
  width: 139px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.news__card-buttontext {
  color: #334ac0;
  margin-right: 8px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  text-decoration: none;
}

.news__card-buttontext.news__card-buttontext--white {
  color: #f2f2f2;
}

.news__card-buttonarrow {
  color: #334ac0;
}

.news__card-buttonarrow.news__card-buttonarrow--white {
  color: #f2f2f2;
}

.testimonials {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 174px 4vw 103px;
  display: none;
}

.testimonials__heading {
  max-width: 80em;
  text-align: center;
  margin-bottom: 84px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials__wrapper {
  max-width: 80em;
  flex-flow: wrap;
  align-content: flex-start;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.testimonials__card {
  background-color: #fff;
  border: 1px solid #dddfe5;
  border-radius: 6px;
  flex-direction: column;
  flex: 0 30em;
  justify-content: space-between;
  align-items: center;
  margin: 1.5em;
  padding: 38px;
}

.testimonials__card-content {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.testimonials__card-blockquote {
  color: #545465;
  letter-spacing: .1px;
  margin-bottom: 34px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.testimonials__card-info {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonials__card-photo {
  width: 60px;
  border-radius: 100%;
  margin-bottom: 15px;
}

.testimonials__card-role {
  color: rgba(43, 42, 53, .5);
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.cta {
  background-image: linear-gradient(to right, #fab038, #f3696e);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 73px 0 118px 20vw;
  display: block;
}

.cta__container {
  width: 730px;
  margin-left: auto;
  margin-right: auto;
}

.cta__heading {
  color: #fff;
  text-align: center;
  margin-bottom: 67px;
}

.cta-div {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cta__input-wrapper {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.cta__input {
  width: 226px;
  height: 46px;
  color: rgba(255, 255, 255, .6);
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 4px 0 0 4px;
  margin-bottom: 0;
  padding: 14px 18px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

.cta__button {
  height: 46px;
  color: #334ac0;
  text-align: center;
  background-color: #fff;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 15px 48px;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  transition: background-color .2s;
}

.cta__button:hover {
  background-color: #f2f2f2;
}

.cta__disclaimer {
  color: rgba(255, 255, 255, .6);
  font-family: Eina, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.cta__disclamer-link {
  color: #fff;
  text-decoration: none;
}

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

.footer {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 60px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: block;
}

.footer__wrapper {
  max-width: 80em;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-top: 53px;
  display: flex;
}

.footer__credits {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer__logo {
  width: 66px;
  height: 23px;
  order: -1;
  margin-bottom: 20px;
}

.footer__logo-image {
  color: #2b2a35;
}

.footer__copyright {
  color: #2b2a35;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.footer__links-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer__heading {
  margin-bottom: 22px;
}

.footer__link {
  color: #2b2a35;
  margin-bottom: 4px;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-decoration: none;
  display: inline-block;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__sm-wrapper {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer__sm-icon {
  color: #5f6264;
}

.footer__sm-icon:hover {
  color: #424648;
}

.footer__sm-link {
  margin-right: 13px;
}

.news__card-linkh {
  text-decoration: none;
}

.integrations__text-paragraph {
  opacity: 0;
  color: #2b2a35;
  transform: translate(0, 100px);
}

.integrations__wrapper {
  max-width: 77em;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.formatting__wrapper {
  max-width: 77em;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.about-hero {
  z-index: 0;
  height: 48em;
  background-image: linear-gradient(to right, #fab038, #fff95b);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.about-hero__wrapper {
  width: 50em;
}

.about-hero__heading {
  color: #fff;
  text-align: center;
  letter-spacing: -3px;
  margin-bottom: -.2em;
  font-family: Markpro, sans-serif;
  font-size: 7em;
  font-weight: 900;
  line-height: .9em;
}

.about-hero__image {
  width: 30em;
  margin-bottom: 0;
  margin-left: 100px;
}

.about-intro {
  z-index: 1;
  background-image: linear-gradient(#fff 73%, #f6f6f6);
  flex-direction: column;
  align-items: center;
  padding: 103px 10vw 95px;
  display: flex;
}

.about-intro__wrapper {
  max-width: 100em;
  margin-left: auto;
  margin-right: auto;
}

.about-intro__paragraph {
  font-family: Eina, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
}

.about {
  z-index: 1;
  background-image: linear-gradient(#fff 72%, #f6f6f6);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 103px 10vw 100px;
  display: flex;
  position: relative;
}

.about__heading-wrapper {
  z-index: 1;
  width: 60vw;
  position: relative;
}

.about__heading {
  color: #2b2a35;
  text-align: center;
  font-family: Markpro, sans-serif;
  font-size: 5em;
  font-weight: 900;
  line-height: 1em;
}

.about__confetti {
  z-index: 0;
  width: 664px;
  position: absolute;
  top: 0;
}

.about__paragraph1-wrapper {
  max-width: 100em;
  margin-top: 125px;
  margin-bottom: 94px;
}

.about__paragraph1 {
  font-family: Eina, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
}

.about__team {
  max-width: 100em;
}

.about__photos-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about__photo-teammember {
  width: 100%;
}

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

.about__paragraph2-wrapper {
  max-width: 100em;
  margin-top: 114px;
  margin-bottom: 94px;
}

.about__culture {
  max-width: 100em;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about__paragraph2 {
  font-family: Eina, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
}

.about__culture-lottie {
  width: 100%;
}

.about__culture-office {
  width: 100%;
  background-image: url('../images/office1.jpg');
  background-position: 50%;
  background-size: cover;
}

.about__culture-photo {
  width: 100%;
}

.about__culture-party {
  width: 100%;
  background-image: url('../images/party.jpg');
  background-position: 50%;
  background-size: cover;
}

.about__investors {
  margin-top: 84px;
}

.about__investors-heading {
  text-align: center;
}

.about__investors-container {
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 64px;
  display: grid;
}

.about__investors-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.about__investors-logo.about__investors-logo--50space {
  margin-bottom: 50px;
}

.about__investors-logo.about__investors-logo--34space {
  margin-bottom: 34px;
}

.about__investors-logo.about__investors-logo--27space {
  margin-bottom: 27px;
}

.about__investors-logo.about__investors-logo--19space {
  margin-bottom: 19px;
}

.about__investors-name {
  color: #2b2a35;
  text-align: center;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.about__investors-info {
  color: rgba(43, 42, 53, .5);
  text-align: center;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.about-numbers {
  z-index: 1;
  background-image: linear-gradient(#fff 73%, #f6f6f6);
  flex-direction: column;
  align-items: center;
  padding: 74px 10vw 97px;
  display: flex;
}

.about-numbers__container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.about-numbers__heading {
  text-align: center;
  margin-bottom: 60px;
}

.about-numbers__wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 21px;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-columns: 1fr;
  margin-bottom: 53px;
  display: grid;
}

.about-numbers__metric {
  text-align: center;
  font-family: Markpro, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
}

.about-numbers__metric.about-numbers__metric--blue {
  color: #334ac0;
}

.about-numbers__metric-link {
  color: #334ac0;
  text-decoration: none;
}

.about-numbers__metric-link:hover {
  text-decoration: underline;
}

.about-numbers__metrich {
  color: rgba(43, 42, 53, .5);
  text-align: center;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.about-numbers__glassdoor {
  grid-column-gap: 42px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}

.about-numbers__rating {
  color: #2b2a35;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.about-numbers__rating:hover {
  text-decoration: underline;
}

.about-numbers__stars-wrapper {
  display: flex;
}

.about-numbers__rating-link {
  color: #2b2a35;
  text-align: center;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  text-decoration: none;
}

.about-jobs {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 74px 10vw 120px;
  display: none;
}

.about-jobs__mission {
  margin-bottom: 23px;
}

.about-jobs__mission-heading {
  text-align: center;
  margin-bottom: 45px;
}

.about-jobs__mission-paragraph {
  text-align: center;
}

.about-jobs__benefits {
  margin-bottom: 81px;
}

.about-jobs__benefits-heading {
  text-align: center;
  margin-bottom: 24px;
}

.about-jobs__benefits-wrapper {
  grid-column-gap: 86px;
  grid-row-gap: 20px;
  color: #334ac0;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: center;
  justify-items: start;
  margin-bottom: 0;
  display: grid;
}

.about-jobs__benefit {
  color: #545465;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.divider-800 {
  width: 100%;
  height: 1px;
  background-color: #dddfe5;
}

.about-jobs__positions.about-jobs__positions--86margin {
  margin-top: 86px;
}

.about-jobs__positions.about-jobs__positions--46margin {
  margin-top: 46px;
}

.about-jobs__positions-heading {
  text-align: center;
  margin-bottom: 22px;
}

.about-jobs__positions-wrapper {
  width: 60vw;
  height: 76px;
  background-color: #fff;
  border: 1px solid #dddfe5;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 20px 20px;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .04), 0 0 1px rgba(0, 0, 0, .06);
}

.about-jobs__positions-wrapper:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, .12), 0 2px 6px rgba(0, 0, 0, .08), 0 0 1px rgba(0, 0, 0, .12);
}

.about-jobs__positions-wrapper.about-jobs__positions-wrapper--space {
  margin-bottom: 20px;
}

.about-jobs__position-title {
  color: #2b2a35;
  text-align: left;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.about-jobs__position-location {
  color: rgba(43, 42, 53, .5);
  text-align: right;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.blog-hero {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 110px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.blog-hero__wrapper {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-hero__text-wrapper {
  flex: 0 0 44%;
}

.blog-hero__heading {
  transition: color .2s;
}

.blog-hero__heading:hover {
  color: #334ac0;
}

.blog-hero__paragraph {
  margin-bottom: 38px;
}

.blog-hero__cta {
  width: 164px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.blog-hero__cta-text {
  color: #334ac0;
  margin-right: 8px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  text-decoration: none;
}

.blog-hero__cta-arrow {
  color: #334ac0;
}

.blog-hero__image {
  border-radius: 6px;
}

.blog-hero__image.blog-hero__image--onlymobile {
  display: none;
}

.blog-recent {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 120px;
  margin-bottom: 60px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
  overflow: hidden;
}

.blog-recent__container {
  opacity: 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  transform: translate(0, 300px);
}

.blog-recent__wrapper {
  flex: 0 0 31%;
}

.blog-recent__image {
  border-radius: 6px;
}

.blog-recent__heading {
  font-size: 1.7em;
  line-height: 1.7em;
  transition: color .2s;
}

.blog-recent__heading:hover {
  color: #334ac0;
}

.blog-recent__paragraph {
  font-size: 1.2em;
  line-height: 1.9em;
}

.newsletter-cta {
  flex-direction: column;
  align-items: center;
  padding-top: 33px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.newsletter-cta__container {
  width: 100%;
  height: auto;
  opacity: 0;
  background-image: linear-gradient(45deg, #4966f7, #7756fd);
  border-radius: 6px;
  padding-top: 2em;
  padding-bottom: 1em;
  padding-left: 2em;
  position: relative;
  transform: translate(0, 120px);
}

.newsletter-cta__heading {
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-cta__paragraph {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 11px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.newsletter-cta__link {
  color: #f2f2f2;
  font-weight: 700;
  text-decoration: none;
}

.newsletter-cta__link:hover {
  color: #fff;
}

.newsletter-cta__div {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.newsletter-cta__input-wrapper {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.newsletter-cta__input {
  width: 226px;
  height: 46px;
  color: rgba(255, 255, 255, .6);
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 4px 0 0 4px;
  margin-bottom: 0;
  padding: 14px 18px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

.newsletter-cta__button {
  height: 46px;
  color: #334ac0;
  text-align: center;
  background-color: #fff;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 15px 48px;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  transition: background-color .2s;
}

.newsletter-cta__button:hover {
  background-color: #f2f2f2;
}

.newsletter-cta__disclaimer {
  color: rgba(255, 255, 255, .6);
  font-family: Eina, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.newsletter-cta__disclamer-link {
  color: #fff;
  text-decoration: none;
}

.newsletter-cta__disclamer-link:hover {
  text-decoration: underline;
}

.newsletter-cta__image {
  width: 360px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0;
}

.blog-essential {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 93px;
  margin-bottom: 111px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.blog-essential__container {
  width: 100%;
}

.blog-essential__heading {
  margin-bottom: 8px;
}

.divider-1184 {
  height: 1px;
  background-color: #dddfe5;
}

.blog-essential__wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
  display: grid;
}

.blog-essential__article {
  width: auto;
  opacity: 0;
  text-decoration: none;
  transform: translate(0, 170px);
}

.blog-essential__article-nr {
  color: #dddfe5;
  margin-bottom: 20px;
  font-family: Markpro, sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 60px;
  text-decoration: none;
}

.blog-articles {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 95px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.blog-articles__container {
  width: 100%;
}

.blog-articles__heading {
  margin-bottom: 8px;
}

.blog-articles__wrapper {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-top: 62px;
  display: flex;
}

.blog-articles__article {
  opacity: 0;
  flex: 0 0 31%;
  transform: translate(0, 100px);
}

.blog-articles__image1 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/smallheader_ramsrefresh.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image1:hover {
  opacity: .8;
}

.blog-articles__article-heading {
  letter-spacing: -.5px;
  font-size: 1.7em;
  line-height: 1.7em;
  transition: color .2s;
}

.blog-articles__article-heading:hover {
  color: #334ac0;
}

.blog-articles__paragraph {
  font-size: 1.2em;
  line-height: 1.9em;
}

.blog-articles__image2 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/cover-thumbnail-420x300.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image2:hover {
  opacity: .8;
}

.blog-articles__image3 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/supercast_thumbnail.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image3:hover {
  opacity: .8;
}

.blog-articles__image4 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/kevinspost_coverthumbnail.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image4:hover {
  opacity: .8;
}

.blog-articles__image5 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/remote_cover.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image5:hover {
  opacity: .8;
}

.blog-articles__image6 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/fabspost_thumbnail.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image6:hover {
  opacity: .8;
}

.blog-articles__image7 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/coverthumbmnail.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image7:hover {
  opacity: .8;
}

.blog-articles__image8 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/lprspotlight_cover.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image8:hover {
  opacity: .8;
}

.blog-articles__image9 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/stealthreveal_header_thumbnail.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image9:hover {
  opacity: .8;
}

.blog-articles__image10 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/womensday_cover.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image10:hover {
  opacity: .8;
}

.blog-articles__image11 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/pitch-lpr.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image11:hover {
  opacity: .8;
}

.blog-articles__image12 {
  width: 25vw;
  height: 18vw;
  background-image: url('../images/funding_cover.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image12:hover {
  opacity: .8;
}

.blog-hero__heading-link {
  margin-bottom: 46px;
  text-decoration: none;
}

.blog-hero__image-link {
  flex: 0 0 50%;
  transition: opacity .2s;
}

.blog-hero__image-link:hover {
  opacity: .8;
}

.blog-recent__image-link {
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-recent__image-link:hover {
  opacity: .8;
}

.blog-recent__heading-link {
  margin-bottom: 10px;
  text-decoration: none;
}

.newsletter-cta__heading-link {
  text-decoration: none;
}

.blog-articles__article-heading-link {
  margin-bottom: 16px;
  text-decoration: none;
}

.hero__container {
  height: 150vh;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 70px;
  display: block;
}

.hero__cta-section {
  text-align: left;
  margin-top: 7vh;
  margin-bottom: 8vw;
  margin-left: 0;
  position: relative;
}

.hero__container-inner {
  height: 100%;
  max-width: none;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  display: flex;
}

.hero__scroll-container {
  width: 100%;
  height: 100vh;
  align-self: flex-start;
  margin-top: 2rem;
  margin-bottom: 0;
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.hero__transform-target {
  height: 100%;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  transform-origin: 50% 40%;
  font-size: 10vw;
}

.hero__intro {
  z-index: 1;
  width: 80vw;
  max-width: 42ch;
  color: #545465;
  text-align: center;
  margin-top: 14vw;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: Eina, sans-serif;
  font-size: .2em;
  font-weight: 400;
  line-height: 1.75em;
  position: absolute;
  top: 32vh;
  left: 50%;
  transform: translate(-50%);
}

.hero__headline {
  max-width: 8ch;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 26vh;
  left: 0;
  right: 0;
}

.hero__headline-text {
  color: #fab038;
  text-align: center;
  margin-top: -48px;
  padding-bottom: 0;
  font-size: 6.4vw;
  line-height: .95em;
  display: block;
}

.hero__hand {
  z-index: 1;
  width: 10.5em;
  height: auto;
  max-width: none;
  margin-left: -5em;
  position: absolute;
  top: -1.65em;
  left: 43%;
}

.hero__ui {
  z-index: -1;
  width: 16.25em;
  height: auto;
  max-width: none;
  margin-top: -2.15em;
  margin-left: -8.75em;
  display: none;
  position: absolute;
  top: .6em;
  left: 50%;
}

.intro__workflow-lottie {
  z-index: 2;
  flex: 0 0 50em;
  margin-bottom: 0;
  margin-right: -20px;
  position: static;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.div-animated {
  z-index: 1;
  width: 100%;
  position: absolute;
  top: 88em;
}

.about__overlay-teammember {
  opacity: 0;
  background-image: linear-gradient(rgba(53, 59, 81, 0) 80%, rgba(53, 59, 81, .55) 88%, rgba(53, 59, 81, .95));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.about__wrapper-teammember {
  position: relative;
}

.about__infowrapper-teammember {
  z-index: 1;
  opacity: 0;
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.about__name-teammember {
  color: #fff;
  margin-bottom: 0;
}

.about__role-teammember {
  color: #fff;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.about__socialwrapper-teammember {
  margin-top: 0;
}

.about__sociallink-teammember {
  margin-right: 15px;
}

.about__smicon-teammember {
  color: #f2f2f2;
}

.about__smicon-teammember:hover {
  color: #fff;
}

.formatting__heading {
  margin-bottom: 46px;
}

.formatting__paragraph.intro__workflow-paragraph--space, .formatting__paragraph.formatting__paragraph--space {
  margin-bottom: 18px;
}

.nav__link-div-jobstext {
  height: 23px;
  color: #2b2a35;
  margin-right: 0;
  text-decoration: none;
}

.nav__link-div-jobstext.nav__link-div--black {
  color: #2b2a35;
}

.nav__link-div-jobstext.nav__link-div--black:hover {
  border-bottom: 2px solid #dddfe5;
}

.nav__link-div-jobstext.nav__link-div--black.w--current {
  color: #334ac0;
  border-bottom: 2px solid #334ac0;
}

.nav__link-div-jobstext.nav__link-div--black.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-jobstext.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
  display: none;
}

.nav__link-div-jobstext.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-jobstext.nav__link-div--space.nav__link-div--white {
  color: #fff;
}

.nav__link-div-jobstext.nav__link-div--space.nav__link-div--white:hover {
  border-bottom: 2px solid #fff;
}

.nav__link-div-jobstext.nav__link-div--space.nav__link-div--white.w--current {
  color: #fff;
  border-bottom-color: #fff;
}

.nav__link-div-jobstext.nav__link-div--white {
  color: #fff;
}

.nav__link-div-jobstext.nav__link-div--white:hover {
  border-bottom: 2px solid #fff;
}

.nav__link-div-jobstext.nav__link-div--white.w--current {
  color: #334ac0;
  border-bottom: 2px solid #334ac0;
}

.nav__link-div-jobstext.nav__link-div--white.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-jobstext.nav__link-div-jobs--white {
  color: #fff;
}

.nav__link-div-jobstext.nav__link-div-jobs--white:hover {
  border-bottom: 2px solid #fff;
}

.nav__link-div-jobstext.nav__link-div-jobs--white.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-jobstext.nav__link-div-jobs--black {
  color: #2b2a35;
}

.nav__link-div-jobstext.nav__link-div-jobs--black:hover {
  border-bottom: 2px solid #dddfe5;
}

.nav__link-div-jobstext.nav__link-div-jobs--black.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-onlymobile {
  height: 23px;
  color: #2b2a35;
  margin-right: 0;
  text-decoration: none;
  display: none;
}

.nav__link-div-onlymobile.nav__link-div--black {
  color: #2b2a35;
}

.nav__link-div-onlymobile.nav__link-div--black:hover {
  border-bottom: 2px solid #dddfe5;
}

.nav__link-div-onlymobile.nav__link-div--black.w--current {
  color: #334ac0;
  border-bottom: 2px solid #334ac0;
}

.nav__link-div-onlymobile.nav__link-div--black.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-onlymobile.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
  display: none;
}

.nav__link-div-onlymobile.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-onlymobile.nav__link-div--space.nav__link-div--white {
  color: #fff;
}

.nav__link-div-onlymobile.nav__link-div--space.nav__link-div--white:hover {
  border-bottom: 2px solid #fff;
}

.nav__link-div-onlymobile.nav__link-div--space.nav__link-div--white.w--current {
  color: #fff;
  border-bottom-color: #fff;
}

.nav__link-div-onlymobile.nav__link-div--white {
  color: #fff;
}

.nav__link-div-onlymobile.nav__link-div--white:hover {
  border-bottom: 2px solid #fff;
}

.nav__link-div-onlymobile.nav__link-div--white.w--current {
  color: #334ac0;
  border-bottom: 2px solid #334ac0;
}

.nav__link-div-onlymobile.nav__link-div--white.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-onlymobile.nav__link-div-jobs--white {
  color: #fff;
}

.nav__link-div-onlymobile.nav__link-div-jobs--white:hover {
  border-bottom: 2px solid #fff;
}

.nav__link-div-onlymobile.nav__link-div-jobs--white.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-onlymobile.nav__link-div-jobs--black {
  color: #2b2a35;
}

.nav__link-div-onlymobile.nav__link-div-jobs--black:hover {
  border-bottom: 2px solid #dddfe5;
}

.nav__link-div-onlymobile.nav__link-div-jobs--black.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-jobs-mobileonly {
  width: 60px;
  height: 28px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-end;
  display: none;
  position: relative;
}

.blog-articles__wrapper-mobile {
  display: none;
}

.disclaimer {
  z-index: 99999;
  margin-left: 10vw;
  margin-right: 10vw;
  display: block;
  position: fixed;
  bottom: 0;
}

.disclaimer__p {
  color: #fff;
  font-size: 1.2em;
  line-height: 1.8em;
}

.disclaimer__bg {
  opacity: .8;
  background-image: linear-gradient(to right, #4966f7, #7756fd);
  border-radius: 6px 6px 0 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.disclaimer__wrapper {
  z-index: 1;
  padding: 1em 4em 1em 2em;
  position: relative;
}

.disclaimer__close {
  z-index: 1;
  width: 20px;
  cursor: pointer;
  position: absolute;
  top: 1em;
  bottom: auto;
  left: auto;
  right: 1em;
}

.disclaimer__link {
  color: #fff;
}

.services-grid-block-03 {
  background-color: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0);
  border-radius: 10px;
  padding: 50px 30px;
  text-decoration: none;
  transition: all .25s;
}

.services-grid-block-03:hover {
  border: 1.5px solid #813efb;
}

.services-grid-block-03.end-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 30px;
  display: flex;
}

.container-flex {
  width: 100%;
  max-width: 1140px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.container-flex.left-align {
  justify-content: flex-start;
  align-items: flex-start;
}

.tag-10 {
  color: #99a1ba;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 10px;
  line-height: 12px;
}

.h2-span {
  opacity: .6;
}

.services-grid {
  width: 100%;
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.icon-block {
  width: 40px;
  height: 40px;
  background-color: #f0a92e;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
  display: flex;
}

.service-title {
  color: #17171b;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
}

.service-title.service-title-centre {
  text-align: center;
  margin-bottom: 25px;
}

.service-paragraph {
  color: #99a1ba;
  font-size: 15px;
}

.content-h2 {
  color: #18183a;
  margin-top: 0;
  margin-bottom: 16px;
}

.divider {
  width: 100%;
  height: 1px;
  max-width: 850px;
  background-color: rgba(153, 161, 186, .2);
  flex: 0 auto;
  margin-top: 160px;
  position: static;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.services-section {
  background-image: linear-gradient(#f9f9f9, #fff);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 80px;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  position: relative;
}

.primary-cta {
  color: #fff;
  background-color: #fab038;
  border-radius: 100px;
  margin-top: 0;
  padding: 16px 45px;
  font-size: 12px;
  line-height: 21px;
}

.hero__ui-copy {
  z-index: -1;
  width: 16.25em;
  height: auto;
  max-width: none;
  z-index: -1;
  width: 16.25em;
  height: auto;
  max-width: none;
  margin-top: -2.15em;
  margin-left: -8.75em;
  display: none;
  position: absolute;
  top: .6em;
  left: 50%;
}

.hero__ui-final {
  z-index: 10;
  width: 16.25em;
  height: auto;
  max-width: none;
  margin-top: -2.15em;
  margin-left: -8.45em;
  display: block;
  position: absolute;
  top: .6em;
  left: 50%;
}

.hero-button {
  color: #fff;
  background-color: #fab038;
  border-radius: 100px;
  margin-top: 0;
  padding: 16px 45px;
  font-size: 16px;
  line-height: 21px;
  transition: all .2s;
  position: absolute;
  top: 83vh;
  left: 43%;
  right: auto;
}

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

.list_datatable {
  color: #696969;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 12px;
  line-height: 20px;
}

.container-7 {
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  text-align: left;
  flex: 0 auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.nav-link-3 {
  color: #4f5e78;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 500;
}

.footer-flex-container-2 {
  text-align: left;
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
}

.container-2 {
  width: 100%;
  height: 100%;
  max-width: 1300px;
  padding-left: 30px;
  padding-right: 30px;
}

.legal_bases_meaning_tilte_wrapper {
  margin-bottom: 22px;
}

.privacy-bloc {
  align-items: stretch;
  display: flex;
}

.privacy-bloc.data_storage, .privacy-bloc.our-role, .privacy-bloc.datatype {
  flex-direction: column;
}

.privacy-bloc.collect-data {
  flex-direction: column;
  align-items: flex-start;
}

.privacy-bloc.privacy_choices_rights, .privacy-bloc.making_policy_great, .privacy-bloc.third_parties, .privacy-bloc.how_and_why, .privacy-bloc.cookies {
  flex-direction: column;
}

.footer-heading-2 {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.datatable_header {
  width: 100%;
  height: 32px;
  background-color: rgba(105, 105, 105, .1);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-image-2 {
  height: 100%;
  object-fit: contain;
  object-position: 0% 50%;
}

.privacy_content_wrapper {
  background-color: #fff;
  border: 1px solid rgba(105, 105, 105, .1);
  border-radius: 20px;
  padding: 24px 40px;
  overflow: visible;
}

.datatable_category_name {
  color: #696969;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  line-height: 12px;
  display: flex;
}

.data_reason_wrapper {
  flex-direction: column;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.arrow {
  width: 10px;
  height: 10px;
  margin-left: 4px;
  transform: rotate(0);
}

.accordion_content {
  height: auto;
  flex-direction: row-reverse;
  align-items: stretch;
  margin-top: 8px;
  display: flex;
  overflow: hidden;
}

.footer-logo-link-2 {
  width: 60px;
  max-height: 60px;
  min-width: 60px;
  flex: 0 auto;
}

.nav-btn {
  letter-spacing: 1px;
  background-color: #38abe1;
  border-radius: 4px;
  margin-left: 25px;
  font-size: 12px;
  font-weight: 500;
}

.datatable_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
}

.small_dt_header {
  width: 100%;
  background-color: rgba(105, 105, 105, .1);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.brand-4 {
  height: 100%;
}

.small_datatable_line_atom {
  width: 25%;
  justify-content: center;
  align-items: center;
  padding: 16px;
  display: flex;
}

.small_datatable_line_atom.action {
  width: 50%;
  justify-content: flex-start;
}

.list-item {
  margin-top: 0;
  margin-bottom: 0;
}

.read_more_line {
  width: 8px;
  object-fit: none;
  object-position: 100% 0%;
  background-color: #eff2ff;
  border-radius: 16px;
  flex: 0 auto;
  margin-left: 16px;
  display: flex;
  overflow: hidden;
}

.datatable_mobile {
  display: none;
}

.privacy_grid {
  
  grid-column-gap: 0px;
  grid-template: "Lateral-Menu Content"
  / .5fr 1.25fr;
}

.sticky_menu_item {
  color: #696969;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  transition: color .2s;
}

.sticky_menu_item:hover {
  color: #4c14e9;
}

.sticky_menu_item.w--current {
  cursor: pointer;
}

.legal_basis_wrapper {
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.navbar-1 {
  background-color: #f0f0f0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.item_icon_text {
  flex-direction: column;
  margin-left: 0;
  display: flex;
}

.privacy_section {
  background-color: #fab038;
  margin-top: 0;
  padding: 100px 20px;
}

.legal_bases_meaning_wrapper {
  height: auto;
  flex: 1;
  margin-top: 0;
  padding-left: 24px;
  overflow: hidden;
}

.datatable_text {
  color: #696969;
  margin-bottom: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.8;
}

.datatable_text.bold {
  font-weight: 700;
}

.text-block-11 {
  margin-bottom: 5px;
  font-weight: 400;
}

.divider-2 {
  width: 100%;
  height: 1px;
  background-color: rgba(105, 105, 105, .15);
  border-radius: 2px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.divider-2.datatable {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.datatable_line {
  width: 100%;
  height: auto;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.legal_basis_text {
  color: #696969;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 4px;
  font-weight: 700;
  line-height: 1.6;
}

.paragraph_centered {
  text-align: center;
}

.check {
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
}

.check.on {
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Check.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
}

.check.off {
  width: 14px;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Cross.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.small_datatable_line {
  width: 100%;
  justify-content: flex-start;
  display: flex;
}

.list_item_privacy {
  color: #696969;
  padding-bottom: 0;
  font-size: 15px;
  line-height: 22px;
}

.list_item_privacy.datatable_text {
  font-size: 12px;
  line-height: 1.8;
}

.nav-bar-wrap {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.sticky_menu_wrapper {
  z-index: 0;
  height: 400px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  margin-bottom: 0;
  padding: 0 24px 0 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 182px;
  overflow: scroll;
}

.small_datatable_header_atom {
  width: 25%;
  justify-content: center;
  padding: 8px;
  display: flex;
}

.small_datatable_header_atom.action {
  width: 50%;
  justify-content: flex-start;
  padding: 16px;
}

.read_more_text {
  color: #4c14e9;
  letter-spacing: 0;
  text-transform: none;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

.mini_button {
  color: #fff;
  cursor: pointer;
  background-color: #4c14e9;
  border-radius: 4px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 4px 8px;
  font-size: 10px;
  line-height: 1.4;
  transition: background-color .2s, color .2s;
}

.mini_button:hover {
  color: #4c14e9;
  background-color: #eff2ff;
}

.mini_button.privacy_policy {
  margin-top: 4px;
  margin-left: 0;
  margin-right: 0;
}

.intro_wrapper {
  text-align: center;
}

.bly-a-logo-1 {
  width: 100px;
  padding-right: 0;
  position: relative;
}

.datatable_header_atom {
  width: 22%;
  height: 100%;
  align-items: center;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.datatable_header_atom.data_collected_shared {
  width: 26%;
}

.datatable_header_atom.data_give {
  width: 25%;
  justify-content: center;
}

.datatable_header_atom.key_cookie {
  width: 30%;
  height: 100%;
}

.datatable_header_atom.service_provider {
  width: 20%;
  height: 100%;
}

.datatable_header_atom.service_provider.third_party {
  width: 18%;
}

.datatable_header_atom.data_collect {
  width: 25%;
  justify-content: center;
}

.datatable_header_atom.purpose {
  width: 50%;
  height: 100%;
}

.datatable_header_atom.purpose.third_party {
  width: 34%;
}

.header_section_wrapper {
  align-items: flex-start;
  display: flex;
}

.accordion_trigger {
  cursor: pointer;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
}

.item_icon_header {
  flex-direction: row-reverse;
  align-items: flex-start;
  display: flex;
}

.small_data_table {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.content_wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  padding-left: 40px;
  display: flex;
}

.read_more_content_wrapper {
  flex: 1;
  padding-left: 24px;
  overflow: hidden;
}

.read_more_data_wrapper {
  flex: 1;
  padding-left: 24px;
  display: block;
}

.h5_alt {
  color: #696969;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.list-item-copy {
  margin-top: 9px;
  margin-bottom: 0;
}

.item_icon_wrapper {
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.link-8 {
  color: #547eef;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.datatable_line_atom {
  width: 20%;
  height: auto;
  align-items: flex-start;
  padding: 16px;
  display: flex;
}

.datatable_line_atom.service_provider {
  width: 18%;
  flex-direction: column;
}

.datatable_line_atom.data_give {
  width: 25%;
  justify-content: center;
  align-items: center;
}

.datatable_line_atom.data_collected_shared {
  width: 26%;
}

.datatable_line_atom.key_cookies {
  width: 30%;
}

.datatable_line_atom.purpose {
  width: 50%;
}

.datatable_line_atom.purpose.third_party {
  width: 34%;
}

.datatable_line_atom.data_collect {
  width: 25%;
  justify-content: center;
  align-items: center;
}

.datatable_line_atom.place_processing {
  width: 22%;
}

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

.footer-2 {
  color: #0a0a0a;
  text-align: center;
  background-color: #edf1fc;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 40px;
}

.privacy_icon {
  width: auto;
  height: auto;
  max-height: 32px;
  max-width: 32px;
  margin-right: 16px;
}

.privacy_icon.top-margin {
  margin-top: 6px;
}

.privacy_icon.top-margin.big {
  margin-top: 10px;
}

.html-embed {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1280px) {
  .nav {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .nav__container {
    max-width: 100em;
  }

  .intro {
    align-items: stretch;
    padding-left: 10vw;
    padding-right: 10vw;
    display: block;
  }

  .intro__logos {
    flex-direction: column;
    justify-content: center;
    align-self: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .intro__logo.intro__logo--rmargin {
    margin-right: 80px;
  }

  .intro__workflow {
    max-width: 100em;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
  }

  .intro__workflow-text {
    width: 525px;
  }

  .decks {
    height: 100vh;
  }

  .decks__text {
    margin-bottom: 40px;
  }

  .formatting {
    padding-left: 7vw;
    padding-right: 9vw;
    display: block;
  }

  .integrations {
    padding-left: 10vw;
    padding-right: 10vw;
    display: block;
  }

  .integrations__lottie {
    width: 80em;
  }

  .sharing__wrapper {
    max-width: 86em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .sharing__image {
    width: 1198px;
  }

  .sharing__hand {
    width: 274px;
    left: 167px;
  }

  .sharing__access {
    width: 335px;
    top: 157px;
    left: 22px;
  }

  .sharing__invite {
    width: 362px;
    top: 317px;
    right: 9px;
  }

  .sharing__plane-wrapper {
    width: auto;
  }

  .sharing__plane {
    width: 396px;
  }

  .sharing__plane-shadow {
    display: inline-block;
    bottom: 53px;
    right: 57px;
  }

  .news {
    padding-left: 10vw;
    padding-right: 10vw;
    display: block;
  }

  .news__wrapper {
    max-width: 100em;
    margin-left: auto;
    margin-right: auto;
  }

  .news__card-content {
    flex-direction: column;
    flex: 36em;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .news__card-heading {
    font-size: 4em;
  }

  .testimonials {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .testimonials__wrapper {
    max-width: 100em;
  }

  .testimonials__card {
    flex-grow: 1;
    flex-basis: 0%;
  }

  .footer {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .footer__wrapper {
    max-width: 100em;
  }

  .integrations__wrapper, .formatting__wrapper {
    max-width: 80em;
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero {
    padding-bottom: 0;
  }

  .about-hero__wrapper {
    width: 50em;
  }

  .about-hero__heading {
    font-size: 7em;
  }

  .about-hero__image {
    width: 35em;
    margin-bottom: 0;
  }

  .about-intro__wrapper {
    max-width: 60em;
  }

  .about__heading-wrapper {
    width: 828px;
  }

  .about__heading {
    font-size: 120px;
    line-height: 120px;
  }

  .about__paragraph1-wrapper, .about__paragraph2-wrapper {
    max-width: 60em;
  }

  .about-jobs__mission, .about-jobs__benefits, .divider-800 {
    max-width: 70vw;
  }

  .about-jobs__positions-wrapper {
    width: 50vw;
  }

  .newsletter-cta__container {
    padding-top: 3em;
    padding-bottom: 2em;
    padding-left: 3em;
  }

  .blog-essential__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .blog-essential__article {
    width: 50%;
    opacity: 0;
  }

  .hero__container {
    height: 200vh;
  }

  .hero__cta-section {
    margin-top: -10vh;
    margin-bottom: 8vw;
  }

  .div-animated {
    top: 50em;
  }
}

@media screen and (min-width: 1440px) {
  .formatting {
    padding-left: 8vw;
    padding-right: 11vw;
  }

  .integrations {
    padding-bottom: 100px;
  }

  .testimonials__card {
    flex-grow: 1;
    flex-basis: 0%;
  }

  .about-hero {
    height: 60em;
  }

  .about-hero__wrapper {
    width: 55em;
  }

  .about-hero__heading {
    font-size: 9em;
  }

  .about-hero__image {
    width: 50em;
  }

  .about__investors-container {
    grid-column-gap: 180px;
    grid-row-gap: 66px;
  }

  .about-jobs__mission {
    max-width: 50vw;
  }

  .about-jobs__benefits, .divider-800 {
    max-width: 60vw;
  }

  .about-jobs__positions-wrapper {
    width: 40vw;
  }

  .blog-hero__heading {
    font-size: 4em;
  }

  .blog-hero__image {
    height: 800px;
  }

  .newsletter-cta__image {
    right: 60px;
  }

  .blog-articles__image1, .blog-articles__image2, .blog-articles__image3, .blog-articles__image4, .blog-articles__image5, .blog-articles__image6, .blog-articles__image7, .blog-articles__image8, .blog-articles__image9, .blog-articles__image10, .blog-articles__image11, .blog-articles__image12 {
    width: 22vw;
    height: 15vw;
  }

  .blog-hero__heading-link {
    width: 80%;
  }

  .hero__container {
    height: 150vh;
  }

  .hero__cta-section {
    margin-top: 0;
    margin-bottom: 4vw;
  }

  .intro__workflow-lottie {
    flex-basis: 55em;
  }

  .div-animated {
    top: 90em;
  }

  .disclaimer {
    margin-left: 15vw;
    margin-right: 15vw;
  }
}

@media screen and (min-width: 1920px) {
  .about-hero {
    height: 70em;
  }

  .about-jobs__mission, .about-jobs__benefits, .divider-800 {
    max-width: 44vw;
  }

  .about-jobs__positions-wrapper {
    width: 35vw;
  }

  .blog-hero__wrapper {
    max-width: 100em;
  }

  .blog-recent__heading {
    font-size: 2em;
  }

  .newsletter-cta__container, .blog-essential__container, .blog-articles__container {
    max-width: 100em;
  }

  .blog-articles__image1 {
    width: 32em;
    height: 22em;
  }

  .blog-articles__article-heading {
    font-size: 2em;
  }

  .blog-articles__image2, .blog-articles__image3, .blog-articles__image4, .blog-articles__image5, .blog-articles__image6, .blog-articles__image7, .blog-articles__image8, .blog-articles__image9, .blog-articles__image10, .blog-articles__image11, .blog-articles__image12 {
    width: 32em;
    height: 22em;
  }

  .hero__cta-section {
    margin-top: -4vh;
    margin-bottom: 4vw;
  }

  .intro__workflow-lottie {
    flex-basis: 70em;
  }

  .blog-recent__scrollable {
    max-width: 100em;
  }

  .disclaimer {
    margin-left: 25vw;
    margin-right: 25vw;
  }
}

@media screen and (max-width: 991px) {
  .nav {
    padding: 8px 0;
  }

  .nav__container {
    max-width: 100vmax;
    align-content: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 4vw;
    padding-right: 4vw;
    position: relative;
  }

  .nav__menu {
    z-index: 9999;
    background-color: #fff;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    display: block;
    box-shadow: 0 4px 26px rgba(0, 0, 0, .12);
  }

  .nav__mobilebutton {
    color: #2b2a35;
    order: 3;
    padding: 8px;
  }

  .nav__mobilebutton.w--open {
    color: #2b2a35;
    background-color: rgba(0, 0, 0, 0);
  }

  .nav__mobilebutton.nav__mobilebutton--white {
    color: #fff;
  }

  .nav__buttons {
    order: 2;
    position: absolute;
    right: 100px;
  }

  .button {
    padding: 10px;
  }

  .nav__link-div-jobs {
    width: 100%;
    height: auto;
    border-top: 1px solid #dddfe5;
    justify-content: space-between;
    align-items: center;
    padding: 1.3em 4vw;
    display: none;
  }

  .nav__link-div-jobs-counter {
    position: static;
    top: auto;
    right: auto;
  }

  .nav__link-div-learning.nav__link-div-learning--space {
    margin-right: 0;
    display: none;
  }

  .nav__link-div {
    height: auto;
    border-top: 1px solid #dddfe5;
    padding: 1.6em 6vw 1.3em;
    display: flex;
  }

  .nav__link-div:hover {
    border-bottom: 1px #000;
  }

  .nav__link-div.nav__link-div--black:hover {
    border-bottom-style: none;
  }

  .nav__link-div.nav__link-div--black.nav__link-div--space {
    margin-right: 0;
  }

  .nav__link-div.nav__link-div--black.nav__link-div--space.w--current {
    border-bottom-style: none;
  }

  .nav__link-div.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
    justify-content: flex-start;
    display: flex;
  }

  .nav__link-div.nav__link-div--white {
    color: #2b2a35;
  }

  .nav__link-div.nav__link-div--white.w--current {
    border-bottom-style: none;
  }

  .nav__link-div.nav__link-div--white.nav__link-div--space {
    margin-right: 0;
  }

  .nav-shadow {
    height: 56px;
  }

  .intro {
    padding-bottom: 0;
  }

  .intro__logos-wrapper {
    width: 100%;
    height: auto;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    display: grid;
  }

  .intro__logo.intro__logo--rmargin {
    margin-right: 0;
  }

  .intro__workflow {
    flex-direction: column;
    justify-content: flex-start;
  }

  .intro__workflow-text {
    width: 100%;
  }

  .intro__workflow-heading {
    text-align: center;
    font-size: 3.2em;
    line-height: 1em;
  }

  .intro__workflow-paragraph {
    text-align: center;
  }

  .decks {
    height: 50vh;
    padding-top: 60px;
  }

  .decks__text {
    width: 80%;
  }

  .decks__wrapper {
    transform: translate(0, -24px);
  }

  .formatting {
    padding-top: 60px;
  }

  .formatting__text {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
  }

  .formatting__lottie {
    width: 90vw;
    margin-left: 0;
    position: static;
  }

  .integrations {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .integrations__text-heading {
    text-align: center;
  }

  .integrations__lottie {
    width: 90vw;
    margin-right: 0;
  }

  .sharing {
    padding-top: 60px;
  }

  .sharing__text {
    width: 80%;
  }

  .sharing__plane-wrapper {
    width: 30%;
    right: 20px;
  }

  .news {
    padding-top: 60px;
  }

  .news__wrapper {
    max-width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .news__card-content {
    flex: 0 auto;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .testimonials__wrapper {
    flex-direction: column;
  }

  .testimonials__card {
    flex: 1;
  }

  .cta {
    padding: 60px 4vw;
  }

  .cta__container {
    width: 100%;
  }

  .footer {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .footer__wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 40px;
    grid-template: "Area Area-2 Area-3"
                   "Area-4 Area-4 ."
                   / 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .integrations__text-paragraph {
    text-align: center;
  }

  .integrations__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .formatting__wrapper {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .about-hero {
    height: 42em;
  }

  .about-hero__image {
    margin-bottom: 0;
  }

  .about-intro, .about {
    padding: 60px 4vw;
  }

  .about__heading {
    font-size: 4em;
  }

  .about__confetti {
    width: 30em;
  }

  .about__paragraph1-wrapper, .about__paragraph2-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .about__investors-container {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .about-numbers {
    padding: 60px 4vw;
  }

  .about-numbers__metric {
    font-size: 1.6em;
    line-height: 1em;
  }

  .about-jobs {
    padding: 60px 4vw;
  }

  .about-jobs__benefits {
    margin-bottom: 60px;
  }

  .about-jobs__benefits-heading {
    font-size: 1.8em;
  }

  .about-jobs__positions.about-jobs__positions--86margin {
    margin-top: 60px;
  }

  .about-jobs__positions-wrapper {
    width: 100%;
  }

  .blog-hero {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .blog-hero__wrapper {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .blog-hero__image.blog-hero__image--nomobile {
    display: none;
  }

  .blog-hero__image.blog-hero__image--onlymobile {
    width: 90vw;
    height: 35vh;
    background-image: url('../images/cover-thumbnail-420x300.jpg');
    background-position: 50% 0;
    background-size: cover;
    display: block;
  }

  .blog-recent {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-recent__container {
    width: 145vw;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .newsletter-cta {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .newsletter-cta__image {
    display: none;
  }

  .blog-essential {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .blog-essential__wrapper {
    grid-column-gap: 40px;
  }

  .blog-essential__article-nr {
    font-size: 3em;
    line-height: 1em;
  }

  .blog-articles {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .blog-articles__wrapper {
    display: none;
  }

  .blog-articles__article {
    opacity: 0;
  }

  .blog-articles__image1, .blog-articles__image2, .blog-articles__image3, .blog-articles__image4, .blog-articles__image5, .blog-articles__image6, .blog-articles__image7, .blog-articles__image8, .blog-articles__image9, .blog-articles__image10 {
    width: 100%;
    height: 28vw;
  }

  .blog-articles__image11 {
    width: 100%;
    height: 29vw;
  }

  .blog-articles__image12 {
    width: 100%;
    height: 28vw;
  }

  .blog-hero__image-link {
    flex-basis: 100%;
    margin-bottom: 40px;
  }

  .hero__transform-target {
    transform-origin: 50%;
  }

  .hero__intro {
    font-size: .23em;
    top: 28vh;
  }

  .intro__workflow-lottie {
    width: 90vw;
    flex: none;
    margin-right: 0;
  }

  .about__name-teammember {
    font-size: 1.3em;
    line-height: 1em;
  }

  .about__role-teammember {
    font-size: 1em;
    line-height: 1.5em;
  }

  .formatting__heading, .formatting__paragraph, .formatting__paragraph.formatting__paragraph--space {
    text-align: center;
  }

  .nav__mobileicon {
    color: #2b2a35;
    font-size: 32px;
  }

  .nav__link-div-jobstext {
    height: auto;
  }

  .nav__link-div-jobstext.nav__link-div--black.nav__link-div--space {
    margin-right: 0;
  }

  .nav__link-div-jobstext.nav__link-div--black.nav__link-div--space.w--current {
    border-bottom-style: none;
  }

  .nav__link-div-jobstext.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
    justify-content: flex-start;
    display: flex;
  }

  .nav__link-div-onlymobile {
    height: auto;
    border-top: 1px solid #dddfe5;
    padding: 1.6em 6vw 1.6em 10vw;
    display: flex;
  }

  .nav__link-div-onlymobile.nav__link-div--black.nav__link-div--space {
    margin-right: 0;
  }

  .nav__link-div-onlymobile.nav__link-div--black.nav__link-div--space.w--current {
    border-bottom-style: none;
  }

  .nav__link-div-onlymobile.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
    justify-content: flex-start;
    display: flex;
  }

  .nav__link-div-jobs-mobileonly {
    width: 100%;
    height: auto;
    color: #2b2a35;
    border-top: 1px solid #dddfe5;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1.6em 6vw;
    text-decoration: none;
    display: flex;
  }

  .blog-recent__scrollable {
    width: 100vw;
    overflow: auto;
  }

  .blog-articles__wrapper-mobile {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 62px;
    display: grid;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .content-h2 {
    font-size: 38px;
  }

  .container-7 {
    width: 90%;
  }

  .footer-flex-container-2 {
    grid-column-gap: 16px;
    grid-row-gap: 27px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .datatable_header {
    height: auto;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .datatable_category_name {
    flex-wrap: nowrap;
    font-size: 10px;
    line-height: 12px;
  }

  .datatable_mobile {
    display: none;
  }

  .privacy_grid {
    grid-template: "Lateral-Menu"
                   "Content"
                   / 1fr;
    margin-top: 0;
    display: flex;
  }

  .privacy_section {
    margin-top: 99px;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .sticky_menu_wrapper {
    height: auto;
    flex-direction: row;
    display: none;
  }

  .datatable_header_atom.data_collected_shared {
    width: 26%;
    align-items: center;
  }

  .datatable_header_atom.place_processing {
    width: 18%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .datatable_header_atom.service_provider {
    width: 24%;
  }

  .datatable_header_atom.service_provider.third_party {
    width: 26%;
    flex-wrap: wrap;
    overflow: visible;
  }

  .datatable_header_atom.purpose {
    width: 46%;
  }

  .datatable_header_atom.purpose.third_party {
    width: 30%;
  }

  .item_icon_header {
    flex-direction: row-reverse;
    align-items: flex-start;
    display: flex;
  }

  .small_data_table {
    display: none;
  }

  .item_icon_wrapper {
    flex-direction: column-reverse;
  }

  .datatable_line_atom {
    width: 24%;
  }

  .datatable_line_atom.service_provider {
    width: 26%;
  }

  .datatable_line_atom.purpose {
    width: 46%;
  }

  .datatable_line_atom.purpose.third_party {
    width: 30%;
  }

  .datatable_line_atom.place_processing {
    width: 18%;
  }

  .nav-menu-2 {
    background-color: #fcfcfc;
  }

  .footer-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .privacy_icon.top-margin {
    margin-top: 8px;
  }
}

@media screen and (max-width: 767px) {
  .button.button--white-whitebg.button--space.button--nomobile, .button.button--white-purplebg.button--space.button--nomobile {
    display: none;
  }

  .hero__cta-heading {
    font-size: 1.4em;
    line-height: 1em;
  }

  .hero__cta-inputwrapper {
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
    display: block;
  }

  .hero__cta-input {
    width: 100%;
    border: 1px solid #dddfe5;
    border-radius: 4px;
    margin-bottom: 16px;
  }

  .hero__cta-button {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }

  .hero__cta-disclaimer {
    text-align: center;
  }

  .intro__logos {
    margin-bottom: 60px;
  }

  .intro__logos-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .intro__logo.intro__logo--rmargin {
    margin-bottom: 24px;
  }

  .intro__workflow-text {
    margin-bottom: 20px;
  }

  .intro__workflow-heading {
    font-size: 2.6em;
  }

  .decks {
    height: 70vh;
  }

  .decks__text {
    width: 90%;
  }

  .decks__text-heading, .integrations__text-heading {
    font-size: 2.6em;
  }

  .sharing__text {
    margin-bottom: 40px;
  }

  .sharing__text-heading {
    font-size: 2.6em;
  }

  .news__card {
    margin-left: 0;
    margin-right: 0;
  }

  .news__card-heading, .testimonials__heading {
    font-size: 2.6em;
  }

  .testimonials__card {
    margin-left: 0;
    margin-right: 0;
  }

  .cta__heading {
    font-size: 2.6em;
  }

  .cta__input-wrapper {
    width: 100%;
    display: block;
  }

  .cta__input {
    width: 100%;
    border-style: solid;
    border-radius: 4px;
    margin-bottom: 16px;
  }

  .cta__button {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }

  .cta__disclaimer {
    text-align: center;
  }

  .footer__wrapper {
    grid-template: "Area Area-2"
                   "Area-3 ."
                   "Area-4 Area-4"
                   / 1fr 1fr;
  }

  .about-hero {
    height: 24em;
  }

  .about-hero__wrapper {
    width: 60vw;
  }

  .about-hero__heading {
    letter-spacing: -1px;
    margin-bottom: -1vh;
    font-size: 10vw;
    line-height: 1em;
  }

  .about-hero__image {
    width: 16em;
    margin-left: 30px;
  }

  .about-intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-intro__paragraph {
    font-size: 1.3em;
    line-height: 1.8em;
  }

  .about {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about__heading-wrapper {
    width: 70vw;
  }

  .about__heading {
    font-size: 2.6em;
  }

  .about__confetti {
    width: 23em;
  }

  .about__paragraph1-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .about__paragraph1 {
    font-size: 1.3em;
    line-height: 1.8em;
  }

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

  .about__paragraph2-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .about__culture {
    grid-template-rows: 40vw auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .about__paragraph2 {
    font-size: 1.3em;
    line-height: 1.8em;
  }

  .about__investors {
    margin-top: 40px;
  }

  .about__investors-heading {
    font-size: 2.6em;
  }

  .about__investors-container {
    grid-template-columns: 1fr;
  }

  .about__investors-logo.about__investors-logo--50space {
    margin-bottom: 30px;
  }

  .about__investors-name, .about__investors-info {
    font-size: 1.1em;
  }

  .about-numbers {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-numbers__heading {
    margin-bottom: 40px;
    font-size: 2.6em;
  }

  .about-numbers__wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 8px;
    grid-template: ". ."
                   ". ."
                   ". Area-2"
                   ". Area"
                   / auto auto auto;
    margin-bottom: 40px;
  }

  .about-numbers__glassdoor {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .about-numbers__rating-link {
    font-size: 1.1em;
  }

  .about-jobs {
    align-items: flex-start;
  }

  .about-jobs__mission-heading {
    font-size: 2.8em;
  }

  .about-jobs__mission-paragraph {
    font-size: 1.3em;
    line-height: 1.8em;
  }

  .about-jobs__benefits-wrapper {
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .about-jobs__benefit {
    font-size: 1.2em;
    line-height: 1.8em;
  }

  .about-jobs__positions-heading {
    font-size: 1.8em;
  }

  .about-jobs__positions-wrapper {
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .about-jobs__position-title, .about-jobs__position-location {
    font-size: 1.1em;
    line-height: 2em;
  }

  .blog-hero {
    padding-top: 80px;
  }

  .blog-hero__heading {
    font-size: 2.6em;
  }

  .blog-hero__paragraph {
    font-size: 1.3em;
    line-height: 1.8em;
  }

  .blog-hero__image.blog-hero__image--onlymobile {
    height: 26vh;
  }

  .blog-recent {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .blog-recent__container {
    width: 170vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .blog-recent__wrapper {
    flex-basis: 19em;
  }

  .blog-recent__heading {
    font-size: 1.5em;
    line-height: 1.5em;
  }

  .blog-recent__paragraph {
    font-size: 1.1em;
    line-height: 1.7em;
  }

  .newsletter-cta__container {
    opacity: 0;
    padding-right: 2em;
  }

  .newsletter-cta__heading {
    font-size: 2.3em;
    line-height: 1.2em;
  }

  .newsletter-cta__paragraph {
    font-size: 1.2em;
    line-height: 1.5em;
  }

  .newsletter-cta__input-wrapper {
    width: 100%;
    display: block;
  }

  .newsletter-cta__input {
    width: 100%;
    border-style: solid;
    border-radius: 4px;
    margin-bottom: 8px;
  }

  .newsletter-cta__button {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }

  .blog-essential {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .blog-essential__wrapper {
    display: block;
  }

  .blog-essential__article {
    margin-bottom: 40px;
  }

  .blog-essential__article-heading {
    font-size: 1.6em;
    line-height: 1.5em;
  }

  .blog-articles {
    margin-bottom: 40px;
  }

  .blog-articles__article {
    opacity: 0;
  }

  .blog-articles__image1 {
    height: 60vw;
  }

  .blog-articles__article-heading {
    font-size: 1.5em;
    line-height: 1.5em;
  }

  .blog-articles__paragraph {
    font-size: 1.1em;
    line-height: 1.7em;
  }

  .blog-articles__image2, .blog-articles__image3, .blog-articles__image4, .blog-articles__image5, .blog-articles__image6, .blog-articles__image7, .blog-articles__image8, .blog-articles__image9, .blog-articles__image10, .blog-articles__image11, .blog-articles__image12 {
    height: 60vw;
  }

  .hero__container {
    height: 300vh;
  }

  .intro__workflow-lottie {
    width: 60em;
  }

  .div-animated {
    top: 120vh;
  }

  .formatting__heading {
    font-size: 2.6em;
  }

  .blog-articles__wrapper-mobile {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  .disclaimer__p {
    font-size: 1.1em;
  }

  .disclaimer__bg {
    opacity: .9;
  }

  .disclaimer__wrapper {
    padding-bottom: 3em;
  }

  .list_datatable.mobile {
    margin-bottom: 24px;
  }

  .container-7 {
    width: 90%;
  }

  .footer-flex-container-2 {
    flex-direction: column;
  }

  .footer-image-2 {
    height: auto;
    object-fit: contain;
  }

  .privacy_content_wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .datatable_category_name.mobile {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .datatable_wrapper {
    display: none;
  }

  .small_dt_header {
    background-color: rgba(105, 105, 105, .1);
    border-radius: 8px;
    justify-content: space-between;
    display: flex;
  }

  .small_datatable_line_atom {
    width: 25%;
    justify-content: center;
    align-items: center;
    padding: 16px;
    display: flex;
  }

  .small_datatable_line_atom.action {
    width: 50%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .datatable_header_mobile {
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    display: flex;
  }

  .datatable_mobile {
    width: 100%;
    display: block;
  }

  .privacy_grid {
    margin-top: 0;
    display: flex;
  }

  .privacy_section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal_bases_meaning_wrapper {
    padding-left: 16px;
  }

  .datatable_text.mobile {
    margin-bottom: 24px;
  }

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

  .small_datatable_header_atom {
    width: 25%;
    flex: 0 auto;
    justify-content: center;
    align-items: flex-end;
    padding: 8px 16px;
    display: flex;
  }

  .small_datatable_header_atom.action {
    width: 50%;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-end;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .small_data_table {
    width: 100%;
    display: block;
  }

  .content_wrapper {
    padding-left: 40px;
  }

  .read_more_content_wrapper {
    padding-left: 16px;
  }

  .h5_top_margin {
    margin-top: 24px;
  }

  .read_more_data_wrapper {
    padding-left: 16px;
  }

  .footer-2 {
    padding: 40px 20px;
  }

  .privacy_icon {
    width: auto;
    max-height: 24px;
    max-width: 24px;
  }
}

@media screen and (max-width: 479px) {
  .nav__buttons {
    right: 70px;
  }

  .hero__cta-heading {
    line-height: 1.5em;
  }

  .hero__cta-inputwrapper {
    flex: 1;
    align-self: stretch;
  }

  .hero__cta-input {
    width: 100%;
  }

  .decks__wrapper {
    width: 180vw;
  }

  .decks__grid.decks__grid--margin {
    margin-right: 2vw;
  }

  .decks__image {
    width: 30vw;
  }

  .decks__image.decks__image--margin {
    margin-bottom: 1vh;
  }

  .news__card {
    padding: 2em;
  }

  .cta__input-wrapper {
    flex: 1;
    align-self: stretch;
  }

  .cta__input {
    width: 100%;
  }

  .blog-recent__container {
    width: 240vw;
  }

  .newsletter-cta__input-wrapper {
    flex: 1;
    align-self: stretch;
  }

  .newsletter-cta__input {
    width: 100%;
  }

  .hero__container {
    height: 150vh;
    margin-bottom: 0;
  }

  .hero__cta-section {
    margin-top: -28vh;
    margin-bottom: 0;
    display: block;
  }

  .hero__scroll-container {
    margin-top: 0;
  }

  .hero__intro {
    margin-top: 6vw;
  }

  .hero__headline-text {
    margin-top: -16px;
  }

  .hero__hand {
    width: 13.3em;
    margin-left: -6.4em;
    top: -2.45em;
    left: 46%;
  }

  .hero__ui {
    z-index: 3;
    margin-top: -2.55em;
    display: block;
  }

  .intro__workflow-lottie {
    width: 25em;
  }

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

  .hero__ui-copy {
    width: 18em;
    margin-top: -3.55em;
    margin-left: -9.75em;
    display: none;
  }

  .hero__ui-final {
    display: none;
  }

  .hero-button {
    padding: 5px 15px;
    font-size: 12px;
    position: relative;
    top: 42.9vh;
    left: auto;
  }

  .container-7 {
    width: 90%;
  }

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

  .container-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-heading-2 {
    margin-top: 20px;
    margin-bottom: 11px;
    font-size: 1.2em;
  }

  .privacy_content_wrapper {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .datatable_category_name, .datatable_category_name.center {
    font-size: 9px;
  }

  .footer-logo-link-2 {
    height: 60px;
    margin-bottom: 30px;
  }

  .nav-btn {
    margin-bottom: 10px;
  }

  .list-item {
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .read_more_line {
    margin-left: 0;
  }

  .datatable_mobile {
    width: auto;
  }

  .privacy_grid {
    margin-top: 0;
    display: flex;
  }

  .privacy_section {
    margin-top: 78px;
    padding-left: 0;
    padding-right: 0;
  }

  .legal_bases_meaning_wrapper {
    padding-left: 24px;
  }

  .bly-a-logo-1 {
    width: 100px;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .header_section_wrapper {
    align-items: flex-start;
  }

  .item_icon_header {
    flex-direction: row-reverse;
    align-items: flex-start;
    display: flex;
  }

  .content_wrapper {
    flex: 1;
    padding-left: 24px;
  }

  .read_more_content_wrapper, .read_more_data_wrapper {
    padding-left: 24px;
  }

  .item_icon_wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 12px;
    margin-bottom: 4px;
  }

  .footer-2 {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .privacy_icon {
    max-height: 16px;
    max-width: 16px;
    margin-right: 8px;
  }

  .privacy_icon.top-margin {
    margin-top: 12px;
  }

  .privacy_icon.top-margin.big {
    margin-top: 15px;
  }
}

#w-node-_32e10129-2707-fa69-8e71-2a2e29fe89b8-29fe89b6 {
  grid-area: Area;
}

#w-node-_32e10129-2707-fa69-8e71-2a2e29fe89ba-29fe89b6 {
  grid-area: Area-2;
}

#w-node-_32e10129-2707-fa69-8e71-2a2e29fe89df-29fe89b6 {
  grid-area: Area-3;
}

#w-node-_401260e6-c28f-e776-9c77-4038d7efbbca-73732bf8 {
  grid-area: Area;
}

#w-node-_401260e6-c28f-e776-9c77-4038d7efbbf1-73732bf8 {
  grid-area: Area-3;
}

#w-node-_640535ca-2b32-99fc-c2fe-36c433e5e2ac-73732bf8 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_9110bbda-ac3e-35ee-f26f-a632cb821a19-73732bf8 {
  grid-area: 2 / 4 / 3 / 5;
}

#w-node-_7ffa3924-ef28-5891-edd4-6cdadb050750-73732bf8 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_380e8dd7-ac2e-7eed-3c9d-091543cd2630-43cd262e {
  grid-area: Area;
}

#w-node-_380e8dd7-ac2e-7eed-3c9d-091543cd2657-43cd262e {
  grid-area: Area-3;
}

#w-node-_84ca5af8-9b56-a077-3e4b-07cfde394451-d4611792 {
  grid-area: Lateral-Menu;
}

#w-node-_84ca5af8-9b56-a077-3e4b-07cfde394468-d4611792 {
  grid-area: Content;
}

@media screen and (max-width: 991px) {
  #w-node-_52689639-77f9-af09-ed7f-733cbb12f40d-bb12f40b {
    grid-area: Area-4;
  }

  #w-node-_52689639-77f9-af09-ed7f-733cbb12f432-bb12f40b {
    grid-area: Area-3;
  }

  #w-node-c75cc7cf-eb9a-5e8e-21b2-1f1d53187401-531873fe {
    grid-area: Area-4;
  }

  #w-node-c75cc7cf-eb9a-5e8e-21b2-1f1d53187426-531873fe {
    grid-area: Area-3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_52689639-77f9-af09-ed7f-733cbb12f432-bb12f40b {
    grid-area: Area-3;
  }

  #w-node-_9110bbda-ac3e-35ee-f26f-a632cb821a19-73732bf8 {
    grid-area: Area;
  }

  #w-node-_7ffa3924-ef28-5891-edd4-6cdadb050750-73732bf8 {
    grid-area: Area-2;
  }
}


@font-face {
  font-family: 'Eina';
  src: url('../fonts/eina-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eina';
  src: url('../fonts/eina-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Markpro';
  src: url('../fonts/markpro-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Markpro';
  src: url('../fonts/markpro-heavy-1.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}