:root {
  --tertiary--sand: #f4f4f4;
  --grays--gray-1: #555;
  --primary--purple: #705af6;
  --grays--gray-2: #121212;
  --mono--black: black;
  --primary--dark-purple: #211955;
  --secondary--bleu: #ced8ea;
  --mono--white: white;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

body {
  background-color: var(--tertiary--sand);
  color: var(--grays--gray-1);
  flex-direction: column;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 160%;
  display: flex;
}

h1 {
  color: var(--primary--purple);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  color: var(--grays--gray-2);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
}

p {
  margin-bottom: 40px;
}

.ds-section {
  padding: 32px;
}

.ds-title {
  color: var(--mono--black);
  margin-bottom: 32px;
  font-size: 32px;
  line-height: 100%;
}

.ds-subtitle {
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

.ds-color-palette {
  margin-bottom: 32px;
  display: flex;
}

.ds-color-tile {
  border: 1px solid var(--grays--gray-1);
  border-radius: 4px;
  width: 64px;
  height: 64px;
  margin-right: 16px;
}

.ds-color-tile.ds-color-tile--primary-purple {
  background-color: var(--primary--purple);
}

.ds-color-tile.ds-color--primary-dark-purple {
  background-color: var(--primary--dark-purple);
}

.ds-color-tile.ds-color-tile--secondary-bleu {
  background-color: var(--secondary--bleu);
}

.ds-color-tile.ds-color-tile--gray-1 {
  background-color: var(--grays--gray-1);
}

.ds-color-tile.ds-color-tile--gray-2 {
  background-color: var(--grays--gray-2);
}

.ds-color-tile.ds-color-tile--tertiary-sand {
  background-color: #f4f4f4;
}

.ds-color-tile.ds-color-tile--white {
  background-color: #fff;
}

.ds-color-tile.ds-color-tile--black {
  background-color: #000;
}

.h1 {
  color: var(--primary--purple);
  font-size: 50px;
  font-weight: 800;
  line-height: 120%;
}

.ds-sub-section {
  margin-top: 16px;
}

.ds-sub-section.ds-sub-section--horizontal {
  justify-content: space-between;
  display: flex;
}

.h2 {
  color: var(--grays--gray-2);
  font-size: 30px;
  line-height: 120%;
}

.btn {
  text-align: center;
  border-radius: 8px;
  height: 58px;
  padding: 0 28px;
  font-weight: 600;
  line-height: 58px;
}

.btn.btn-primary {
  background-image: linear-gradient(30deg, #506ffe, #6760f9 50%, #705af6 75%);
  align-self: center;
}

.btn.btn-secondary {
  background-image: linear-gradient(30deg, #130377, #705af6);
}

.btn.btn-secondary.btn-secondary--large {
  height: 100px;
  font-size: 33px;
  font-weight: 700;
  line-height: 100px;
}

.btn.btn-secondary.contact-form__inner-item-button {
  width: 100%;
  height: 68px;
  line-height: 68px;
}

.btn.btn-tertiary {
  color: var(--mono--black);
  background-color: #f5f5f5;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 48px;
}

.ds-section-group--inner {
  flex-direction: column;
  display: flex;
}

.ds-spacer-horizontal {
  height: 16px;
}

.header {
  background-color: var(--mono--white);
  justify-content: space-between;
  align-items: center;
  height: 84px;
  padding-left: 54px;
  padding-right: 54px;
  display: flex;
}

.header__nav {
  margin-bottom: 0;
  list-style-type: none;
  display: flex;
}

.header__nav-item {
  margin-left: 40px;
}

.header__nav-item.header__nav-item--last {
  display: none;
}

.header__nav-item-link {
  color: var(--grays--gray-2);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.secttion-homepage-hero {
  background-image: url('../images/hero-bottom-right-lines.png'), url('../images/hero-top-left-lines.png'), url('../images/section-bg-top-center_1.jpg');
  background-position: 100% 30px, 0 20px, 50% 0;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 223px, 198px, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 90px;
  display: flex;
  overflow: hidden;
}

.hero__masthead-title {
  text-align: center;
  margin-bottom: 12px;
}

.hero__masthead {
  z-index: 2;
  flex-direction: column;
  display: flex;
  position: relative;
}

.hero__masthead-text {
  margin-bottom: 28px;
}

.hero__image {
  z-index: 0;
  margin-top: -90px;
  position: relative;
}

.section-block {
  background-image: url('../images/section-bg-top-right.jpg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 1440px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-block.section-block-bg-top-center {
  background-image: url('../images/section-bg-top-center.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-block.section-block-bg-top-center.section-block--bg-lines {
  background-image: url('../images/section-bg-top-center.png'), url('../images/section-bottom-right-lines.png'), url('../images/section-top-left-lines.png');
  background-position: 50% 0, 100% 304px, 0 64px;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, 89px, 89px;
}

.section-block.section-block-bg-top-center.section-block--bg-lines.streamline-introduction-block {
  padding-top: 34px;
}

.section-block.section-block--bg-lines {
  background-image: url('../images/section-bottom-right-lines.png'), url('../images/section-top-left-lines.png');
  background-position: 100% 304px, 0 64px;
  background-repeat: no-repeat, no-repeat;
  background-size: 89px, 89px;
}

.section-block.section-block--zigzag {
  background-image: url('../images/section-bg-top-right.jpg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 1222px;
  padding-top: 54px;
  padding-bottom: 0;
  overflow: hidden;
}

.section-block.section-block--bg-full {
  background-image: url('../images/section-bg-full.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-block.section-demo-cta {
  background-image: url('../images/section-bottom-right-lines2.png'), url('../images/section-top-left-lines.png');
  background-position: 100%, 0 234px;
  background-repeat: no-repeat, no-repeat;
  background-size: 443px, 89px;
}

.section-block.team {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  padding-top: 0;
}

.section-block.security-block {
  background-image: none;
}

.section-block.section-contact-form {
  background-image: none;
  padding-top: 24px;
  padding-bottom: 186px;
}

.section-block.section-plain-text {
  background-image: url('../images/hero-bottom-right-lines.png'), url('../images/hero-top-left-lines.png');
  background-position: 100% 128px, 0 54px;
  background-repeat: no-repeat, no-repeat;
  background-size: 125px, 125px;
}

.section-block.section-featured-post {
  padding-top: 88px;
  padding-bottom: 96px;
}

.section-block.section-latest-posts {
  background-image: url('../images/section-bg-top-right.jpg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 1440px;
}

.section-block.section-testimonials {
  background-image: url('../images/testimonials-bg-1.png');
  background-position: 50% 100%;
}

.container {
  max-width: 1140px;
}

.container.request-tracker__container {
  display: flex;
}

.container.subpage-hero__container {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container.section-plain-text__container {
  max-width: 796px;
}

.section-block__title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
}

.section-block__title.streamline-introduction__title {
  background-image: url('../images/down-arrow-icon.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 66px;
}

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

.card {
  border: 1px solid var(--mono--white);
  text-align: center;
  background-image: linear-gradient(45deg, #ffffff1a, #ffffff4d 80%);
  border-radius: 8px;
  padding: 20px;
}

.card.streamline-introduction__card {
  width: 208px;
}

.card.security-features__card {
  max-width: 265px;
}

.card__image {
  min-width: 156px;
  margin-bottom: 16px;
}

.card__text {
  color: var(--grays--gray-2);
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

.section-block__zigzag-row {
  margin-bottom: 100px;
  display: flex;
}

.section-block__zigzag-row.section-block__zigzag-row--reverse {
  flex-direction: row-reverse;
}

.section-block__zigzag-row.section-block__zigzag-row--reverse.analytics-row, .section-block__zigzag-row.zcm-row {
  justify-content: flex-end;
}

.section-block__zigzag-row-image-src.move-out-right {
  width: 100vw;
  max-width: 902px;
  margin-right: -50%;
}

.section-block__zigzag-row-image-src.move-out-left {
  width: 100vw;
  max-width: 1035px;
  margin-left: -50%;
}

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

.section-block__zigzag-row-content.section-block__zigzag-row-content--right {
  margin-left: 64px;
}

.section-block__zigzag-row-content.section-block__zigzag-row-content--right.zcm-descriptions {
  max-width: 475px;
}

.section-block__zigzag-row-content.section-block__zigzag-row-content--left {
  margin-right: 64px;
}

.section-block__zigzag-row-content.section-block__zigzag-row-content--left.analytics-descriptions {
  max-width: 400px;
}

.section-block__zigzag-row-content-title {
  margin-top: 0;
  margin-bottom: 12px;
}

.section-block__zigzag-row-content-text {
  margin-bottom: 28px;
}

.checklist {
  grid-column-gap: 20px;
  grid-row-gap: 18px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: minmax(50%, 1fr) minmax(50%, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  list-style-type: none;
  display: grid;
}

.checklist__item {
  border: 2px solid var(--mono--white);
  background-image: url('../images/checklist-bullet.png');
  background-position: 8px 6px;
  background-repeat: no-repeat;
  background-size: 80px;
  border-radius: 100px;
  align-items: center;
  min-height: 96px;
  padding-left: 100px;
  padding-right: 16px;
  display: flex;
}

.section-demo-cta-inner__content {
  max-width: 594px;
}

.section-demo-cta-inner {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer {
  background-color: var(--primary--dark-purple);
  margin-top: auto;
  padding-top: 60px;
  padding-bottom: 70px;
}

.footer__inner {
  justify-content: space-between;
  display: flex;
  position: relative;
}

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

.footer__inner-nav-list {
  margin-left: 94px;
}

.footer__inner-nav-list.footer__inner-nav-list--first {
  margin-left: 0;
}

.footer__inner-nav-list-item {
  color: var(--mono--white);
  font-weight: 600;
}

.footer__inner-nav-list-item.footer__inner-nav-list-item-heading {
  margin-bottom: 16px;
}

.footer__inner-nav-list-item.hide {
  display: none;
}

.footer__inner-nav-list-item-link {
  color: var(--mono--white);
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}

.footer__inner-nav-list-item-link:hover {
  text-decoration: underline;
}

.footer__inner-linkedin {
  color: var(--mono--white);
  background-image: url('../images/linkedin-icon.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  padding-left: 30px;
  font-weight: 300;
  text-decoration: none;
  position: absolute;
  inset: auto 0% 0% auto;
}

.footer__inner-linkedin:hover {
  text-decoration: underline;
}

.section-block.request-tracker {
  background-image: url('../images/section-bg-top-center.jpg');
  background-position: 50% 0;
  background-size: cover;
  overflow: hidden;
}

.request-tracker__details {
  max-width: 390px;
}

.request-tracker__details-title {
  margin-bottom: 12px;
}

.request-tracker__details-subtitle {
  margin-top: 0;
  margin-bottom: 12px;
}

.request-tracker__image {
  width: 100vw;
  max-width: 932px;
  margin-right: -50%;
  position: relative;
  right: -10%;
}

.subpage-hero {
  background-image: url('../images/subpage-hero-top-right-lines.png'), url('../images/hero-top-left-lines.png'), url('../images/section-bg-top-center_1.jpg');
  background-position: 100% 102px, 0 54px, 50% 0;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 224px, 198px, cover;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
}

.subpage-hero.subpage-hero-contact {
  min-height: 314px;
}

.subpage-hero.subpage-hero-contact.subpage-hero--contact {
  background-image: url('../images/subpage-hero-top-right-lines.png'), url('../images/hero-top-left-lines.png');
  background-position: 100% 102px, 0 54px;
  background-repeat: no-repeat, no-repeat;
  background-size: 224px, 198px;
  min-height: 340px;
}

.subpage-hero__title {
  margin-bottom: 12px;
}

.subpage-hero__text {
  max-width: 796px;
}

.subpage-hero__text.subpage-hero__text--last {
  margin-bottom: 0;
}

.team__grid-member {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.team__grid-member-details {
  text-align: center;
  max-width: 218px;
  padding-top: 16px;
}

.team__grid-member-details-name {
  color: var(--grays--gray-2);
  font-weight: 600;
}

.team__grid-member-details-title {
  color: var(--grays--gray-1);
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  text-decoration: none;
}

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

.team-member-details__image {
  margin-right: 38px;
}

.team-member-details__text {
  max-width: 562px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
}

.team__grid-member-link {
  text-decoration: none;
}

.team-member-details__container {
  background-color: var(--mono--white);
  max-width: 1104px;
  margin-left: auto;
  margin-right: auto;
  padding: 56px;
  display: flex;
  position: relative;
}

.card__title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 22px;
}

.security-features {
  flex-wrap: wrap;
  grid-template-rows: auto minmax(auto, 1fr);
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: flex;
}

.contact-form {
  background-color: var(--mono--white);
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 72px 54px;
  box-shadow: 17px 17px 44px #48565e59;
}

.contact-form__inner-item {
  margin-bottom: 0;
}

.contact-form__inner {
  grid-column-gap: 36px;
  grid-row-gap: 14px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-form__inner-item-label {
  color: var(--mono--black);
  margin-bottom: 8px;
  font-weight: 400;
}

.contact-form__inner-item-input {
  border: 1px solid #ced8ea;
  border-radius: 5px;
  height: 68px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.contact-form__inner-item-input::placeholder {
  color: #b8b8b8;
}

.select-field {
  background-color: var(--mono--white);
  border: 1px solid #ced8ea;
  border-radius: 5px;
  height: 68px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.success-message {
  background-color: var(--primary--purple);
  color: var(--mono--white);
}

.section-plain-text__heading {
  text-align: center;
  margin-bottom: 16px;
}

.featured-post__inner-item-image {
  transition: transform .2s;
}

.featured-post__inner-item-image:hover {
  transform: scale(1.1);
}

.featured-post__inner-item-image-source {
  border-radius: 8px;
  box-shadow: 17px 17px 44px #48565e40;
}

.featured-post__inner-item-text {
  max-width: 464px;
  margin-left: 56px;
}

.featured-post__inner-item {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.featured-post__inner-item-text-link {
  text-decoration: none;
}

.featured-post__inner-item-text-link:hover {
  color: var(--grays--gray-2);
  text-decoration: underline;
}

.latest-post-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  display: flex;
}

.latest-post-header__title {
  margin-top: 0;
  margin-bottom: 0;
}

.post-card__image {
  transition: transform .2s;
}

.post-card__image:hover {
  transform: scale(1.1);
}

.post-card__title {
  color: var(--grays--gray-2);
  text-decoration: none;
}

.post-card__title:hover {
  text-decoration: underline;
}

.post-card__text {
  margin-bottom: 0;
}

.latest-post-body__list {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.latest-post-body__list-item {
  grid-column-gap: 40px;
  grid-row-gap: 80px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
}

.post-card__image-source {
  border-radius: 8px;
}

.post-card__title-text {
  font-size: 18px;
  line-height: 160%;
}

.page-contact {
  background-image: url('../images/section-bg-top-center.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.post-details__title {
  color: var(--grays--gray-2);
  margin-bottom: 16px;
  font-size: 46px;
  font-weight: 800;
}

.post-details__author {
  display: flex;
}

.post-details__author-image {
  border-radius: 100%;
  width: 60px;
  height: 60px;
  margin-right: 16px;
}

.post-details__author-meta {
  flex-direction: column;
  display: flex;
}

.post-details__author-meta-date, .post-details__author-meta-name {
  display: flex;
}

.post-details__author-meta-prefix {
  margin-right: 8px;
}

.post-details__featued-image-source {
  object-fit: cover;
  width: 100%;
  max-height: 416px;
  margin-top: 36px;
  margin-bottom: 68px;
  box-shadow: 13px 13px 24px #48565e26;
}

.post-details__related-posts__title {
  margin-top: 0;
  margin-bottom: 50px;
}

.post-details__related-posts-wrapper-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.body {
  flex-direction: column;
  display: flex;
}

.body-2 {
  display: flex;
}

.section-plain-text__subheading {
  text-align: center;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 24px;
}

.header__toggle-menu {
  flex-direction: column;
  justify-content: space-between;
  width: 48px;
  height: 48px;
  padding: 16px 12px;
  display: none;
}

.header__toggle-menu-line {
  background-color: #387bff;
  width: 24px;
  height: 2px;
}

.header__toggle-menu-line.header__toggle-menu-line--short {
  width: 16px;
}

.section-block__zigzag-row-image {
  flex: none;
  width: 100%;
  max-width: 530px;
  position: relative;
}

.section-block__zigzag-row-image-svg {
  width: 100%;
  max-width: 530px;
  position: absolute;
  inset: 0%;
}

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

.section-testimonials__item {
  text-align: center;
  flex: 1;
  margin-right: 60px;
}

.section-testimonials__item.section-testimonials__item--last {
  margin-right: 0;
}

.section-testimonials__item-quote {
  text-align: center;
  border-left-width: 0;
  margin-bottom: 0;
  padding: 0;
  line-height: 160%;
}

.section-testimonials__item-cite {
  color: var(--grays--gray-2);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (max-width: 991px) {
  .header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header__logo.w--current {
    z-index: 2;
  }

  .header__nav {
    z-index: 3;
    background-color: var(--tertiary--sand);
    background-image: url('../images/section-bg-top-center_1.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 54px 24px 90px;
    transition: transform .4s;
    position: absolute;
    inset: 0%;
    transform: translate(0, -100%);
  }

  .header__nav-item {
    border-bottom: 1px solid var(--mono--white);
    width: 100%;
    margin-bottom: 24px;
    margin-left: 0;
    padding-bottom: 24px;
    display: block;
  }

  .header__nav-item.header__nav-item--last {
    border-bottom-width: 0;
    margin-bottom: 0;
  }

  .header__nav-item-link {
    background-image: url('../images/chevron-right.svg');
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: auto;
    font-size: 34px;
    font-weight: 800;
    line-height: 120%;
    display: block;
  }

  .secttion-homepage-hero {
    background-image: url('../images/section-bg-top-center_1.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__masthead-title {
    font-size: 34px;
  }

  .hero__masthead {
    text-align: center;
  }

  .hero__image {
    margin-top: 16px;
  }

  .section-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-block.team {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .section-block.section-contact-form {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-block.section-featured-post, .section-block.section-latest-posts {
    padding-top: 48px;
    padding-bottom: 48px;
  }

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

  .container.request-tracker__container {
    flex-direction: column;
  }

  .container.container--streamline-introduction {
    padding-left: 0;
    padding-right: 0;
  }

  .streamline-introduction__wrapper {
    margin-left: 20px;
    padding-right: 20px;
  }

  .card.security-features__card {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .section-block__zigzag-row-image-src {
    width: 100%;
    max-width: 400px;
  }

  .section-demo-cta-inner {
    flex-direction: column;
  }

  .footer__inner-logo {
    margin-bottom: 30px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    padding-left: 56px;
    padding-right: 56px;
  }

  .footer__inner-nav {
    grid-column-gap: 55px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer__inner-nav-list {
    margin-bottom: 32px;
    margin-left: 0;
  }

  .footer__inner-linkedin {
    order: 1;
    position: relative;
    left: 80px;
  }

  .request-tracker__image-source {
    width: 100%;
  }

  .request-tracker__details {
    text-align: center;
    max-width: 100%;
  }

  .request-tracker__image {
    width: 100%;
    margin-right: 0%;
    position: static;
  }

  .subpage-hero {
    background-image: url('../images/section-bg-top-center_1.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .subpage-hero.subpage-hero-contact.subpage-hero--contact {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .team__grid {
    flex-direction: column;
    display: flex;
  }

  .team-member-details__image {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .team-member-details__text {
    max-width: 100%;
  }

  .team-member-details__container {
    flex-direction: column;
  }

  .security-features {
    flex-direction: column;
    align-items: center;
    padding-left: 36px;
    padding-right: 36px;
  }

  .contact-form__inner-item.contact-form__inner-item-wrapper {
    width: 100%;
  }

  .contact-form__inner {
    flex-direction: column;
    display: flex;
  }

  .featured-post__inner-item-image:hover {
    transform: none;
  }

  .featured-post__inner-item-text {
    max-width: 100%;
    margin-top: 32px;
    margin-left: 0;
  }

  .featured-post__inner-item {
    flex-direction: column;
  }

  .post-card {
    margin-bottom: 32px;
  }

  .post-card__image {
    width: 100%;
  }

  .post-card__image:hover {
    transform: none;
  }

  .latest-post-body__list {
    flex-direction: column;
    display: flex;
  }

  .post-card__image-source {
    width: 100%;
  }

  .post-details__title {
    font-size: 32px;
  }

  .post-details__featued-image-source {
    max-height: none;
  }

  .post-details__related-posts-wrapper-list {
    flex-direction: column;
    display: flex;
  }

  .header__toggle-menu {
    z-index: 2;
    display: flex;
  }

  .header__toggle-menu-line {
    width: 24px;
    transition: transform .2s, opacity .2s;
  }

  .header__toggle-menu-line.header__toggle-menu-line--short {
    width: 24px;
  }

  .streamline-introduction {
    overflow: auto;
  }

  .streamline-introduction.splide {
    width: 100%;
    overflow: auto;
  }
}

@media screen and (max-width: 767px) {
  .btn {
    white-space: nowrap;
  }

  .btn.btn-secondary.btn-secondary--large {
    width: 100%;
    font-size: 26px;
  }

  .header__logo-image {
    width: 180px;
  }

  .section-block.section-demo-cta {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .section-block__zigzag-row {
    flex-direction: column;
    align-items: center;
  }

  .section-block__zigzag-row.section-block__zigzag-row--reverse {
    text-align: center;
    flex-direction: column;
  }

  .section-block__zigzag-row-image-src.move-out-right {
    width: 100%;
    margin-right: 0%;
  }

  .section-block__zigzag-row-image-src.move-out-left {
    width: 100%;
    margin-left: 0%;
  }

  .section-block__zigzag-row-content.section-block__zigzag-row-content--right {
    text-align: center;
    align-items: center;
    margin-top: 30px;
    margin-left: 0;
  }

  .section-block__zigzag-row-content.section-block__zigzag-row-content--left {
    align-items: center;
    margin-top: 30px;
    margin-right: 0;
  }

  .checklist {
    flex-direction: column;
    margin-right: 0;
    padding-left: 0;
    display: flex;
  }

  .checklist__item {
    font-size: 16px;
    line-height: 120%;
  }

  .section-demo-cta-inner__action {
    text-align: center;
    width: 100%;
  }

  .footer__inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .contact-form {
    padding-left: 24px;
    padding-right: 24px;
  }

  .latest-post-header {
    margin-bottom: 25px;
  }

  .section-testimonials__wrapper {
    flex-direction: column;
  }

  .section-testimonials__item {
    margin-bottom: 50px;
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .btn.btn-tertiary {
    width: 100%;
  }

  .section-block__zigzag-row-image-src {
    max-width: 100%;
  }

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

  .footer__inner-nav {
    grid-column-gap: 32px;
    grid-row-gap: 0px;
  }

  .latest-post-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .latest-post-header__title {
    margin-bottom: 16px;
  }
}

#w-node-_11db0215-ec56-8503-8045-8f17fe0dbd34-6a3e93d6, #w-node-_83aa4cc9-c35a-0762-0779-633d49273a6c-6a3e93d6, #contact-number-of-employees.w-node-_91039c50-3307-b360-52c3-5187252e9586-573e93da {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82552632-7f46-9ddd-7c8f-2b5125d6d2ce-573e93da {
  align-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_11d6b116-cae7-27cd-5f10-9600e62e8ef6-e62e8eee {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }
}


