:root {
  --white-dark: #fdfcfd;
  --black: #211f26;
  --grey: #65636d;
  --purple-dark: #402060;
  --purple: #8e4ec6;
  --purple-light: #e0c4f4;
  --yellow: #f3d673;
  --blue: #acd8fc;
  --yellow-dark: #4f3422;
  --blue-dark: #113264;
  --white: white;
  --grey-light: #f2eff3;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--white-dark);
  color: var(--black);
  flex-flow: column;
  font-family: Archivo, sans-serif;
  font-size: 20px;
  line-height: 140%;
}

h1 {
  letter-spacing: -4px;
  margin-top: 20px;
  margin-bottom: 16px;
  font-family: Lora, sans-serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 100%;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 600;
  line-height: 150%;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
}

ul, ol {
  color: var(--grey);
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  letter-spacing: -1px;
  border-left: 5px solid #e2e2e2;
  margin-bottom: 24px;
  padding: 10px 20px;
  font-family: Lora, sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  line-height: 110%;
}

figure {
  margin-bottom: 24px;
}

figcaption {
  text-align: center;
}

.section-hero {
  background-image: url('../images/hero-bg-opt.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: -2px;
  overflow: hidden;
}

.container-main {
  width: 100%;
  max-width: 1580px;
  padding-left: 32px;
  padding-right: 32px;
}

.headlinetext-span {
  font-style: italic;
}

.button-main {
  border: 2px solid var(--purple-dark);
  background-color: var(--purple);
  box-shadow: 0 2px 0 0 var(--purple), 0 4px 0 0 var(--purple-dark);
  color: var(--white-dark);
  border-radius: 8px;
  margin-top: -4px;
  padding: 12px 32px;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  transition: opacity .2s;
  overflow: hidden;
}

.button-main:hover {
  opacity: .8;
}

.button-arrow-right {
  border: 2px solid var(--black);
  background-color: var(--black);
  background-image: url('../images/Arrow-Right.svg');
  background-position: 88%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 8px;
  padding: 14px 58px 14px 24px;
  font-weight: 500;
  line-height: 100%;
  transition: opacity .2s;
  overflow: hidden;
}

.button-arrow-right:hover {
  opacity: .9;
}

.hero-wrap {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  margin: 200px auto 120px;
  display: flex;
}

.hero-cta-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 24px;
  display: flex;
}

.hero-cta-wrap.hero-cta-wrap-hide-on-mobile {
  justify-content: flex-start;
  align-items: center;
}

.card-headline-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4px;
  display: flex;
}

.h2-card {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 120%;
}

.card-description {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.card-description.text-block-2-card-second {
  margin-bottom: 0;
}

.bg-purple-light {
  background-color: var(--purple-light);
}

.bg-yellow {
  background-color: var(--yellow);
}

.bg-blue {
  background-color: var(--blue);
}

.card-image {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.cards-wrapper {
  z-index: 1;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  bottom: 0;
}

.card {
  z-index: 1;
  background-color: var(--purple-light);
  border-radius: 16px;
  width: 100%;
  max-width: 428px;
  height: 100%;
  min-height: 520px;
  padding-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
  text-decoration: none;
  transition: transform .3s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  z-index: 10;
}

.card.card-first {
  background-color: var(--yellow);
  color: var(--yellow-dark);
  bottom: -40px;
  right: -5px;
  transform: rotate(-5deg);
}

.card.card-first:hover {
  transform: translate(0, -200px)rotate(-5deg);
}

.card.card-second {
  background-color: var(--blue);
  color: var(--blue-dark);
}

.card.card-second:hover {
  transform: translate(0, -150px);
}

.card.card-third {
  color: var(--purple-dark);
  bottom: -53px;
  left: -20px;
  transform: rotate(8deg);
}

.card.card-third:hover {
  transform: translate(0, -200px)rotate(8deg);
}

.section-help {
  z-index: 2;
  background-color: var(--white-dark);
  padding-top: 20px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.slide {
  width: 20%;
}

.slide.slider-fifth {
  margin-left: 10px;
}

.slide.slider-second {
  margin-left: 5px;
}

.slider {
  background-color: #0000;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 33px;
  padding-right: 77px;
}

.slide-card {
  width: 100%;
  height: 100%;
  max-height: 354px;
  color: var(--black);
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px #21201c05, 0 2px 5px #21201c08, 0 5px 10px #21201c0a, 0 12px 18px #21201c0d, 0 25px 35px #21201c0d, 0 62px 80px #21201c12;
}

.slide-card.slide-1 {
  transform: translate(-5px, 15px)rotate(-2.74deg);
}

.slide-card.slide-2 {
  transform: translate(0, 25px)rotate(2deg);
}

.slide-card.slide-4 {
  transform: translate(0, 5px)rotate(-2.74deg);
}

.slide-card.slide-5 {
  transform: rotate(4deg)translate(10px, 15px);
}

.left-arrow, .right-arrow, .slide-nav {
  display: none;
}

.mask {
  height: 100%;
  overflow: visible;
}

.slide-card-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slide-card-cta {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fefcfe;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 12px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.slide-card-embed {
  font-size: 0;
  line-height: 100%;
}

.portfolio-card-cta-name {
  font-family: Instrument Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
}

.headline-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 720px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.h2-regular {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lora, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 110%;
}

.h2-regular.h2-regular-inside-blog-list {
  font-size: 32px;
}

.headline-subtitle-wrapper {
  width: 100%;
  max-width: 550px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.section-help-deco-2 {
  width: 220px;
  position: absolute;
  inset: auto -250px -130px auto;
}

.section-help-deco-1 {
  width: 190px;
  position: absolute;
  inset: 0% auto 0% -250px;
  transform: rotate(-23deg);
}

.bottom-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-progress-02 {
  margin-bottom: 140px;
}

.hero-subtitle-wrap {
  width: 100%;
  max-width: 680px;
  margin-bottom: 24px;
}

.h2-big {
  letter-spacing: -6px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lora, sans-serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 100%;
}

.progress-content {
  background-color: #fff;
  border: 1px solid #eae7ec;
  border-radius: 12px;
  padding: 100px 150px 150px;
  box-shadow: 0 11.45px 17.87px #21201c0a;
}

.features-card-wrapper {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.features-wrapper-inner {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  height: 80%;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.features-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  height: 100vh;
  display: flex;
}

.features-card {
  z-index: 1;
  grid-column-gap: 100px;
  grid-row-gap: 1.5rem;
  background-color: #fff;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  min-height: 100%;
  padding: 1.5rem;
  display: flex;
  position: absolute;
}

.features-card._3 {
  z-index: 3;
  transform: none;
}

.features-card._2 {
  z-index: 2;
  transform: none;
}

.features-card._4 {
  z-index: 4;
}

.features-card._0 {
  z-index: 0;
}

.section-features {
  height: 500vh;
  overflow: hidden;
}

.div-block-13 {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 510px;
  height: 100%;
  max-height: 345px;
  display: flex;
}

.scroll-description-subtitle {
  color: #be93e4;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}

.h3-regular {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lora, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 110%;
}

.scroll-decoration-description {
  margin-bottom: 0;
}

.sticky-triggers {
  position: absolute;
  inset: 0%;
}

.overflow-hidden {
  overflow: hidden;
}

.phone-mock_wrapper {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.sticky-center {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.h3 {
  margin-top: 0;
  margin-bottom: .4em;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.sticky-text_wrapper {
  color: #363636;
  margin-top: 8vh;
  margin-bottom: 8vh;
  text-decoration: none;
  display: block;
  position: relative;
}

.sticky-text_wrapper.steps {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 60px 1fr;
  grid-auto-columns: 1fr;
  margin-top: 4vh;
  margin-bottom: 4vh;
  display: grid;
}

.sticky-text_wrapper.steps.fourth {
  margin-bottom: 0;
}

.circle-number {
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-top: -16px;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
}

.phone-screen {
  position: relative;
}

.phone-mock_border {
  z-index: 1;
  border: 12px solid #cacaca;
  border-radius: 2em;
  display: none;
  position: absolute;
  inset: 0%;
}

.sticky-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.sticky-img_wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.stick-text_detail {
  transform-origin: 50% 0;
  overflow: hidden;
}

.phone-screen_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}

.phone-screen_img {
  object-fit: cover;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  flex: none;
  width: 100%;
}

.phone-screen_img.third, .phone-screen_img.second, .phone-screen_img.fourth {
  position: absolute;
  inset: 0%;
}

.position-relative {
  position: relative;
}

.sticky-container {
  width: 100%;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.container {
  width: 90%;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.paragraph-l {
  font-size: 1.125rem;
}

.paragraph-l.cc-sm-small.mb-0 {
  margin-bottom: 0;
}

.paragraph-l.cc-sm-small.mb-0.text-dark {
  display: block;
}

.sticky-wrapper {
  width: 100%;
  height: 400vh;
  position: relative;
}

.phone-mock {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: visible;
}

.sticky-trigger {
  z-index: 1;
  position: absolute;
  inset: 0% 0% auto;
}

.sticky-trigger._80 {
  top: 80%;
}

.sticky-trigger._60 {
  top: 60%;
}

.sticky-trigger._20 {
  top: 20%;
}

.sticky-trigger._40 {
  top: 40%;
}

.section-progress-03 {
  padding-top: 8%;
  padding-bottom: 8%;
  position: relative;
}

.phone-mock_tab {
  background-color: #cacaca;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
  width: 50%;
  height: 6%;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.hide {
  display: none;
}

.section-build {
  margin-top: 140px;
}

.build-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 100px;
  display: flex;
}

.card-build-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fefcfe;
  border: 1px solid #e0c4f4;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4.53px 3.62px #3f075f05, 0 12.52px 10.02px #3f075f08, 0 30.15px 24.12px #3f075f0a, 0 100px 80px #3f075f0f;
}

.card-build {
  flex-flow: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.h3-small-purple {
  color: var(--purple-dark);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
}

.card-build-description {
  color: #8145b5;
  margin-bottom: 0;
}

.scroll-description {
  width: 100%;
  max-width: 590px;
}

.image-7 {
  height: 100%;
  max-height: 345px;
}

.section-footer {
  background-color: var(--purple);
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-wrapper, .footer-navigation-wrap {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright-text {
  color: #e0c4f4;
  font-size: 16px;
  line-height: 150%;
}

.footer-nav-link {
  color: #fefcfe;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
}

.footer-logo-text {
  color: #fefcfe;
  letter-spacing: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
}

.footer-logo-block {
  text-decoration: none;
}

.section-form {
  background-image: url('../images/top-half-ellipse-purple.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-bottom: -1px;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}

.form-wrapper {
  background-color: #fefcfe;
  background-image: url('../images/lines.svg'), url('../images/arrow-down.svg');
  background-position: 2% 78%, 98% 35%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  border: 1px solid #e0c4f4;
  border-radius: 8px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 34px 120px 74px;
  position: relative;
}

.form-headline {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  margin-left: -40px;
  display: flex;
}

.form-headline-description {
  color: #8145b5;
  letter-spacing: -1px;
  font-family: Instrument Sans, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
}

.h2-form {
  letter-spacing: -1px;
  margin-bottom: 8px;
  font-family: Lora, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 110%;
}

.form-deco-2 {
  position: absolute;
  inset: auto auto 55px 20px;
}

.form-deco-3 {
  position: absolute;
  inset: 54px 27px auto auto;
}

.form-fields-wrap, .form-field-submit-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  display: flex;
}

.text-field {
  color: #8e8c99;
  background-color: #f2eff3;
  border: 1px #dbd8e0;
  border-radius: 8px;
  height: 100%;
  margin-bottom: 0;
  padding: 19px 24px;
  font-family: Archivo, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  overflow: hidden;
}

.text-field.text-field-with-border {
  border-style: solid;
}

.text-field.text-field-subscribe {
  background-color: #fff;
  border-style: solid;
  padding: 10px 12px;
  font-size: 18px;
  box-shadow: 0 2px 4px #0000001a;
}

.text-field.text-field-subscribe.text-field-subscribe-inside-blog-list {
  height: 44px;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.button-arrow-submit {
  border: 2px solid var(--black);
  background-color: var(--black);
  background-image: url('../images/Arrow-Right.svg');
  background-position: 88%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 14px 58px 14px 24px;
  font-weight: 500;
  line-height: 100%;
}

.button-arrow-submit:hover {
  opacity: .9;
}

.button-arrow-submit.button-arrow-submit-full {
  text-align: left;
  background-color: #0000;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.navbar-logo-center {
  position: absolute;
  inset: 0% 0% auto;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 32px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1580px;
  padding-left: 17px;
  padding-right: 17px;
}

.container-navbar {
  width: 100%;
  max-width: 1580px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-menu-block.nav-menu-block-hide-on-desktop {
  display: none;
}

.nav-link {
  color: var(--black);
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.nav-link:hover {
  color: #1a1b1fbf;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.menu-button {
  width: 36px;
  height: 36px;
  display: none;
}

.navbar-logo-text {
  color: var(--black);
  letter-spacing: 8px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
}

.c-phone-btm-nav {
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.c-phone-section {
  justify-content: flex-start;
  align-items: center;
  height: 70vh;
  display: flex;
}

.c-phone-section.c-phone-section-progress {
  height: 100vh;
}

.c-phone-content {
  position: absolute;
  inset: 0%;
}

.c-content-scroll {
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
}

._w-phone-frame {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.phone-item-details {
  margin-bottom: 0;
}

._w-section-phone {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1580px;
  height: 350vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

._w-section-phone._w-section-phone-process {
  height: 500vh;
}

._w-section-phone.test {
  padding-left: 0;
  padding-right: 0;
}

.c-game-btn {
  width: 55%;
  padding-right: 2%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.c-trigger-get-btn {
  flex: 1;
  display: none;
}

.c-phone-left-col {
  width: 100%;
  max-width: 510px;
  position: sticky;
  top: 30vh;
}

.c-phone-left-col.c-phone-left-col-progress {
  justify-content: center;
  align-items: center;
  max-width: 420px;
  height: 100vh;
  display: flex;
  top: 0;
}

.c-phone-left-col.test {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
  top: 0;
}

.c-phone-item-title {
  margin-bottom: 10px;
}

._w-phone-right-col {
  flex-direction: column;
  height: 100%;
  display: flex;
}

._w-content-scroll {
  position: relative;
}

._w-content-scroll.test {
  border: 4px solid var(--black);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 420px;
  height: 420px;
  display: flex;
  overflow: hidden;
}

._w-content-scroll.test-hide-on-desktop {
  border: 4px solid var(--black);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 420px;
  height: 420px;
  display: none;
  overflow: hidden;
}

._w-phone-btm-nav {
  background-color: #f5f5f5;
}

.phone0item-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 24px;
}

._w-phone-indicator {
  position: relative;
}

.phone-frame {
  z-index: 100;
  width: 510px;
  height: 345px;
  position: relative;
}

.phone-frame.phone-frame-v2 {
  width: 420px;
  height: 420px;
}

.c-phone-section-item {
  padding: 0;
}

.c-phone-indicator {
  z-index: 10;
  text-align: center;
  background-color: #fff;
  padding-bottom: 10px;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

._w-phone-content {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

._w-phone-left-col {
  justify-content: center;
  align-items: center;
  display: flex;
}

._w-phone-section {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.c-phone-right-col {
  width: 100%;
  max-width: 590px;
  height: 100%;
}

.c-phone-right-col.c-phone-right-col-progress {
  max-width: 440px;
}

.scroll-image {
  opacity: 0;
  position: absolute;
  inset: auto 0%;
}

.section-progress.section-progress-progress {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-progress-wrapper {
  background-color: #fff;
  border: 1px solid #eae7ec;
  border-radius: 12px;
  width: 100%;
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 32px;
  box-shadow: 0 2px 5.32px #21201c08, 0 11.45px 17.87px #21201c0a;
}

.h1-big {
  margin-top: 0;
  margin-bottom: 0;
}

.section-hero-bottom {
  z-index: 1;
  width: 100%;
  position: relative;
}

.cards-section-v2 {
  height: 100%;
  min-height: 510px;
  margin-top: 0;
  margin-bottom: -225px;
}

.section-hero-bottom-image {
  width: 100%;
}

.form-headline-content-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.section-services {
  margin-top: 100px;
  margin-bottom: 140px;
}

.service-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1516px;
  display: flex;
}

.services-divider {
  border-top: 2px dashed #dbd8e0;
  width: 100%;
  margin-top: 120px;
  margin-bottom: 120px;
}

.headline-subtitle-medium-text {
  color: var(--grey);
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
}

.body-style-guide {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1580px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px;
  display: flex;
}

.service-card-left-col {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  max-width: 590px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.service-card-right-col {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  flex: 0 .5 auto;
  align-items: flex-start;
  width: 100%;
  max-width: 900px;
  display: flex;
}

.service-card-item-wrap {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-color: #faf9fb;
  border: 1px solid #dbd8e0;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 24px;
  display: flex;
}

.service-card-item-content {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.service-card-icon {
  width: 100%;
  max-width: 226px;
}

.h2-medium {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lora, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 110%;
}

.headline-subtitle-regular-text {
  color: var(--grey);
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}

.section-about-us-headline {
  margin-top: 60px;
  margin-bottom: 120px;
}

.about-header-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.paragraph-medium {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
}

.paragraph-subtitle {
  margin-bottom: 0;
}

.about-headline-right-col {
  flex: 0 1.5 auto;
  width: 100%;
  max-width: 580px;
}

.about-headline-left-col {
  width: 100%;
  max-width: 935px;
}

.about-headline {
  margin-bottom: 72px;
}

.about-subtitmes {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.section-about-us-body {
  margin-top: 120px;
  margin-bottom: 160px;
}

.about-us-divider {
  border-top: 2px dashed #dbd8e0;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.about-us-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.about-us-card-left-col {
  grid-column-gap: 62px;
  grid-row-gap: 62px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.about-us-card-right-col {
  flex: none;
  width: 100%;
  max-width: 600px;
}

.about-us-card-headline {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.about-us-card-icon {
  width: 64px;
  height: 64px;
}

.about-us-card-number {
  letter-spacing: -1px;
  font-size: 32px;
  font-weight: 500;
  line-height: 150%;
}

.about-us-card-headline-with-accent {
  z-index: -1;
  width: 484px;
  position: absolute;
  inset: -33px 0% 0% -60px;
}

.hero-title-wrap {
  margin-bottom: 24px;
}

.hero-title-wrap.hero-title-wrap-contacts {
  margin-top: -16px;
  margin-bottom: 48px;
}

.scroll-title {
  margin-top: 8px;
  margin-bottom: 24px;
}

.section-404 {
  margin-top: 140px;
  margin-bottom: 220px;
}

._404-wrapper {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.body-full-height {
  justify-content: space-between;
  align-items: stretch;
  min-height: 100vh;
  display: flex;
}

.needed-just-for-flex-space-between {
  width: 100%;
  height: 1px;
}

.section-contacts {
  margin-top: 140px;
  margin-bottom: 140px;
}

.contacts-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  display: flex;
}

.contacts-left-col, .contacts-right-col {
  width: 100%;
  max-width: 746px;
}

.button-mailbox-left {
  border: 2px solid var(--black);
  background-color: var(--black);
  background-image: url('../images/mailbox.svg');
  background-position: 22px;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 8px;
  padding: 14px 24px 14px 58px;
  font-weight: 500;
  line-height: 100%;
  transition: opacity .2s;
  overflow: hidden;
}

.button-mailbox-left:hover {
  opacity: .9;
}

.button-calendar-left {
  border: 2px solid var(--black);
  background-color: var(--black);
  background-image: url('../images/calendar-check.svg');
  background-position: 22px;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 8px;
  padding: 14px 24px 14px 58px;
  font-weight: 500;
  line-height: 100%;
  transition: opacity .2s;
  overflow: hidden;
}

.button-calendar-left:hover {
  opacity: .9;
}

.h1-medium {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  line-height: 110%;
}

.field-label {
  color: var(--grey);
  margin-bottom: 12px;
  font-weight: 400;
}

.form-contacts {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.form-contacts-fields-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.form-contacts-field-wrapper {
  width: 100%;
}

.text-area {
  color: #8e8c99;
  background-color: #f2eff3;
  border: 1px solid #dbd8e0;
  border-radius: 8px;
  height: 100%;
  min-height: 240px;
  margin-bottom: 0;
  padding: 19px 24px;
  font-family: Archivo, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}

.form-contacts-submit-wrapper {
  background-color: var(--black);
  background-image: url('../images/Arrow-Right.svg');
  background-position: 97%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  display: flex;
  overflow: hidden;
}

.form-contacts-submit-wrapper:hover {
  opacity: .9;
}

.select-field {
  height: 60px;
  color: var(--black);
  cursor: pointer;
  appearance: none;
  background-color: #fff;
  background-image: url('../images/caret-down.svg');
  background-position: 97%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #dbd8e0;
  border-radius: 8px;
  margin-bottom: 0;
  padding: 18px 24px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  box-shadow: 0 2px 4px #0000001a;
}

.section-privacy-terms {
  margin-top: 60px;
  margin-bottom: 220px;
}

.privacy-terms-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1054px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.privacy-terms-left-col {
  width: 100%;
  max-width: 284px;
  position: sticky;
  top: 10px;
}

.privacy-terms-right-col {
  width: 100%;
  max-width: 746px;
}

.tocitem {
  color: var(--grey);
  font-size: 16px;
  text-decoration: none;
}

.tocitem:hover {
  color: var(--purple);
}

.tocitem.header {
  color: var(--black);
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.toc {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.rich-text-block h1 {
  margin-top: 0;
  margin-bottom: 24px;
}

.rich-text-block h2 {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Lora, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 110%;
}

.rich-text-block h3 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Lora, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
}

.rich-text-block p {
  color: var(--grey);
  margin-bottom: 24px;
}

.rich-text-block img {
  border: 1px solid #dbd8e0;
  border-radius: 8px;
  overflow: hidden;
}

.rich-text-block figcaption {
  color: var(--grey);
  font-size: 16px;
  font-style: italic;
}

.rich-text-block a {
  color: var(--purple);
  text-decoration: underline;
}

.rich-text-block a:hover {
  opacity: .9;
}

.rich-text-block li {
  margin-bottom: 12px;
}

.c-phone-left-offset-col {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.scroll-description-v2 {
  width: 100%;
  max-width: 438px;
  margin-top: 0;
}

.scroll-description-main-content-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.scroll-decoration-icon {
  width: 48px;
  height: 48px;
}

.link {
  color: var(--grey);
  white-space: nowrap;
  word-break: keep-all;
  padding-left: 24px;
  font-family: Lora, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.link.w--current {
  color: var(--black);
  background-image: url('../images/star-four.svg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: auto;
}

.text-span {
  margin-right: 10px;
}

.hero-article-wrap {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 140px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-article-left-col {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: flex-start;
  height: 100%;
}

.hero-article-right-col {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  flex-flow: column;
  justify-content: flex-end;
  align-self: flex-end;
  align-items: stretch;
  width: 100%;
  max-width: 590px;
  height: 495px;
  display: flex;
  overflow: hidden;
}

.hero-article-details {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 100px;
  display: flex;
}

.hero-article-author {
  font-size: 16px;
  font-weight: 500;
}

.hero-article-publish-date {
  color: var(--grey);
  font-size: 16px;
  font-weight: 400;
}

.text-block {
  border: 1px solid var(--purple-light);
  color: var(--purple-dark);
  background-color: #f7edfe;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
}

.section-article-body {
  margin-top: 70px;
  margin-bottom: 140px;
}

.blog-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}

.blog-collection-list {
  grid-column-gap: 24px;
  grid-row-gap: 48px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-post-link {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.blog-post-link:hover {
  opacity: .9;
}

.blog-post-main-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  max-height: 250px;
  overflow: hidden;
}

.h3-small {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lora, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
}

.blog-post-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 16px;
  display: flex;
}

.hero-article-content-wrap {
  flex-flow: column;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.image-9 {
  object-fit: cover;
  width: 100%;
  max-width: 590px;
  height: 495px;
}

.blog-post-headline-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.blog-post-description {
  color: var(--grey);
  font-size: 18px;
}

.blog-post-publish-date {
  color: var(--grey);
  font-size: 16px;
}

.blog-subscribe-wrap {
  z-index: 0;
  background-color: #faf9fb;
  background-image: url('../images/sending.svg'), url('../images/planes.svg');
  background-position: 0 100%, 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  border: 1px solid #dbd8e0;
  border-radius: 16px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
  overflow: hidden;
}

.blog-subscribe-wrap.blog-subscribe-wrap-inside-blog-list {
  background-image: url('../images/planes.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 150px;
}

.form-subscribe {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  width: 100%;
  height: 60px;
  display: flex;
}

.form-subscribe.form-subscribe-inside-blog-list {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  height: auto;
}

.button-arrow-subscribe {
  border: 2px solid var(--black);
  background-color: var(--black);
  height: 100%;
  color: var(--white-dark);
  background-image: url('../images/arrow-up-right.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 8px;
  padding: 10px 50px 10px 12px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}

.button-arrow-subscribe:hover {
  opacity: .9;
}

.button-arrow-subscribe.button-arrow-subscribe-inside-blog-list, .button-arrow-subscribe.button-arrow-subscribe-inside-blog-list-copy {
  text-align: left;
  background-color: #0000;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  line-height: 100%;
  display: flex;
}

.blog-subscribe-form {
  z-index: 7;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  margin: 36px auto;
  display: flex;
}

.blog-subscribe-form.blog-subscribe-form-inside-blog-list {
  text-align: left;
  margin-top: 72px;
  margin-bottom: 72px;
}

.form-block-subscribe {
  margin-bottom: 0;
}

.blog-subscribe-form-desc {
  color: var(--grey);
  margin-bottom: 0;
  font-size: 18px;
  line-height: 140%;
}

.form-email, .form-contact {
  margin-bottom: 0;
}

.blog-subscribe-form-terms {
  color: var(--grey);
  margin-top: 8px;
  font-size: 14px;
}

.link-subscribe-form {
  color: var(--purple-dark);
}

.link-subscribe-form:hover {
  color: var(--purple);
}

.hero-category-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fff;
  border: 1px solid #dbd8e0;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  padding: 4px;
  display: flex;
  overflow: hidden;
}

.hero-article-time-to-read {
  color: var(--grey);
  margin-right: 8px;
  font-size: 14px;
  font-weight: 500;
}

.list_page-buttons {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.fs-list_pagination_button {
  width: 36px;
  height: 36px;
  color: var(--black);
  border: 2px solid #0000;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.fs-list_pagination_button:hover {
  background-color: #f7edfe;
}

.fs-list_pagination_button.w--current {
  border-color: var(--black);
}

.fs-list_pagination_dots {
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  display: flex;
}

.fs-list_pagination_prev {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #000;
  background-color: #0000;
  border-width: 2px;
  border-color: #0000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 12px 24px 12px 12px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
}

.fs-list_pagination_prev:hover {
  background-color: #f7edfe;
}

.fs-list_pagination_prev.is-list-pagination-disabled {
  opacity: .5;
  cursor: not-allowed;
}

.fs-list_pagination_prev.is-list-pagination-disabled.hide {
  display: none;
}

.fs-list_pagination_next {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #000;
  background-color: #0000;
  border-width: 2px;
  border-color: #0000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 12px 12px 12px 24px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
}

.fs-list_pagination_next:hover {
  background-color: #f7edfe;
  overflow: hidden;
}

.fs-list_pagination_next.is-list-pagination-disabled {
  opacity: .5;
  cursor: not-allowed;
}

.fs-list_pagination_next.hide {
  display: none;
}

.fs-list_pagination {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 60px;
}

.blog-post-list {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

.blog-post-list-filter {
  cursor: pointer;
  border-bottom: 3px solid #0000;
  height: 44px;
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  transition: border-color .2s;
}

.blog-post-list-filter:hover {
  border-bottom: 3px solid var(--purple);
}

.blog-filter {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.blog-list-search {
  border-bottom: 1px solid #dbd8e0;
  border-radius: 8px;
  width: 100%;
  max-width: 258px;
  height: 44px;
  padding: 10px 12px;
  font-size: 18px;
  box-shadow: 0 2px 4px #0000001a;
}

.blog-filter-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border-bottom: 1px solid #dbd8e0;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.blog-post-list-filter-radio-button, .blog-post-category {
  display: none;
}

.form-contacts-subscribe-wrapper {
  background-color: var(--black);
  background-image: url('../images/arrow-up-right.svg');
  background-position: 97%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 44px;
  display: flex;
  overflow: hidden;
}

.form-contacts-subscribe-wrapper:hover {
  opacity: .9;
}

.form-contacts-subscribe-wrapper.form-contacts-subscribe-wrapper-higher {
  background-position: 93%;
  max-width: 160px;
  height: 100%;
}

.form-footer-submit-wrapper {
  background-color: var(--black);
  background-image: url('../images/Arrow-Right.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  border-radius: 8px;
  justify-content: space-between;
  width: 300px;
  height: 60px;
  overflow: hidden;
}

.form-footer-submit-wrapper:hover {
  opacity: .9;
}

.button-footer-arrow-submit {
  border: 2px solid var(--black);
  background-color: #0000;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  padding: 14px 58px 14px 24px;
  font-weight: 500;
  line-height: 100%;
}

.button-footer-arrow-submit:hover {
  opacity: .9;
}

.section-portfolio {
  margin-bottom: 140px;
}

.portfolio-wrapper {
  width: 100%;
  max-width: 1208px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}

.article-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1054px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.article-left-col {
  width: 100%;
  max-width: 284px;
  position: sticky;
  top: 10px;
}

.article-right-col {
  width: 100%;
  max-width: 746px;
}

.breadcrumb-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.breadcrumb-link {
  color: var(--grey);
  margin-right: 8px;
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
}

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

.breadcrumb-current-page {
  color: var(--black);
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  display: inline;
}

.section-contacts-portfolio {
  margin-top: 140px;
  margin-bottom: 100px;
}

.section-portfolio-hero {
  margin-top: 80px;
}

.portfolio-hero-wrap {
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}

.portfolio-hero-image {
  width: 100%;
}

.section-about-the-project {
  z-index: 1;
  margin-top: -160px;
  margin-bottom: 150px;
  position: relative;
}

.about-details-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--white);
  border: 1px solid #dbd8e0;
  border-radius: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 .5px 2px #21201c05, 0 2px 5px #21201c08, 0 5px 10px #21201c0a, 0 11.45px 17.87px #21201c0a, 0 24.58px 33.42px #21201c0d, 0 62px 80px #21201c12;
}

.about-details-right-col {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.about-details-item-icon {
  object-fit: contain;
  height: 100%;
  max-height: 120px;
}

.about-details-item-title {
  font-weight: 600;
}

.about-details-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-4 {
  color: var(--grey);
  margin-top: 24px;
}

.breadcrumb-list-item {
  flex: none;
}

.breadcrumb-list-item.breadcrumb-list-item-current-page {
  flex: 0 auto;
}

.section-goal {
  margin-top: 150px;
  margin-bottom: 100px;
}

.goal-wrapper {
  width: 100%;
  max-width: 1208px;
  margin-left: auto;
  margin-right: auto;
}

.goal-block {
  width: 100%;
  max-width: 900px;
}

.section-info {
  margin-top: 100px;
  margin-bottom: 160px;
}

.info-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1208px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.info-image {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}

.block-quote {
  letter-spacing: -1px;
  border-left-style: none;
  margin-bottom: 0;
  padding: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 110%;
}

.quote-block {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 34px;
}

.quote-wrapper {
  border-top: 2px dashed #dbd8e0;
  border-bottom: 2px dashed #dbd8e0;
  width: 100%;
  max-width: 1208px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 48px;
}

.section-quote {
  margin-top: 160px;
  margin-bottom: 80px;
}

.under-quote-block {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.quote-deco {
  flex: 0 999 auto;
  padding-left: 48px;
}

.quote-author-photo {
  aspect-ratio: 1;
  border-radius: 999px;
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.quote-author-details {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--white);
  border: 1px solid #dbd8e0;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
}

.quote-author-name {
  font-weight: 500;
}

.quote-author-role, .quote-author-company {
  color: var(--grey);
}

.section-challenges {
  margin-top: 80px;
  margin-bottom: 160px;
}

.challenges-wrapper {
  width: 100%;
  max-width: 1208px;
  margin-left: auto;
  margin-right: auto;
}

.h3-medium {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
}

.collection-list-wrapper {
  width: 100%;
}

.challenges-block {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.challenges-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid #dbd8e0;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.h3-medium-purple {
  color: var(--purple);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lora, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
}

.text-block-5 {
  color: var(--grey);
}

.challenges-headline {
  margin-bottom: 32px;
}

.section-project {
  background-color: #0000;
  margin-top: 160px;
  margin-bottom: 120px;
  overflow: hidden;
}

.project-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1208px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.project-photo-1 {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}

.project-photo-2 {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  overflow: hidden;
}

.project-photo-3 {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}

.project-block-left-col {
  height: 100%;
  padding-top: 48px;
}

.project-block-right-col {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

.portfolio-collection-list {
  grid-column-gap: 24px;
  grid-row-gap: 48px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

.portfolio-filter {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 80px;
  display: flex;
}

.portfolio-filter-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border-bottom: 1px solid #dbd8e0;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.portfolio-post-list-filter {
  cursor: pointer;
  border-bottom: 3px solid #0000;
  height: 44px;
  margin-bottom: 0;
  padding-left: 8px;
  padding-right: 8px;
  text-decoration: none;
  transition: border-color .2s;
}

.portfolio-post-list-filter:hover {
  border-bottom: 3px solid var(--purple);
}

.portfolio-post-list-filter-radio-button {
  display: none;
}

.portfolio-post-list {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

.portfolio-card {
  aspect-ratio: 2 / 3;
  width: 100%;
  color: var(--black);
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px #21201c05, 0 2px 5px #21201c08, 0 5px 10px #21201c0a, 0 12px 18px #21201c0d, 0 25px 35px #21201c0d, 0 62px 80px #21201c12;
}

.portfolio-project-service, .nav-menu-mobile-terms-wrapper {
  display: none;
}

.nav-menu-three-custom {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.section-navbar {
  padding-top: 24px;
  padding-bottom: 24px;
  position: absolute;
  inset: 0% 0% auto;
}

.navbar-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-navigation {
  width: 100%;
  max-width: 1580px;
  padding-left: 22px;
  padding-right: 22px;
}

.help-slider {
  background-color: #0000;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 33px;
  padding-right: 33px;
}

.help-slider-mask {
  height: 100%;
  overflow: visible;
}

.help-slider-slide {
  width: 20%;
}

.help-slider-slide.slider-fifth {
  margin-left: 10px;
}

.help-slider-slide.slider-second {
  margin-left: 5px;
}

.about-details-block {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.form-footer-contact-submit-wrapper {
  background-color: var(--black);
  background-image: url('../images/Arrow-Right.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 240px;
  height: 60px;
  display: flex;
  overflow: hidden;
}

.form-footer-contact-submit-wrapper:hover {
  opacity: .9;
}

.footer-navigation-block {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.scroll-description-icon {
  width: 100%;
  margin-bottom: 24px;
  display: none;
}

.scroll-image-for-mobile {
  opacity: 0;
  position: absolute;
  inset: auto 0%;
}

.about-card-description {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
}

.h2-regular-about {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lora, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 110%;
}

.h2-regular-about.h2-regular-inside-blog-list {
  font-size: 32px;
}

.form-headline-deco-2 {
  display: none;
}

.portfolio-card-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.portfolio-card-cta {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fefcfe;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 12px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.slide-card-cta-name {
  font-family: Instrument Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
}

.portfolio-card-embed {
  font-size: 0;
  line-height: 100%;
}

.scroll-cta {
  margin-top: 4px;
}

.contacts-cta-devider {
  color: var(--grey);
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
}

.home-divider {
  border-top: 2px dashed #dbd8e0;
  width: 100%;
  margin-top: 96px;
  margin-bottom: 96px;
  display: none;
}

.section-protected {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.blog-form-block {
  width: 100%;
}

@media screen and (min-width: 1920px) {
  .nav-link {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
  }

  .c-phone-section.c-phone-section-progress {
    height: 70vh;
  }

  ._w-section-phone._w-section-phone-process {
    height: 350vh;
  }

  .c-phone-left-col.c-phone-left-col-progress {
    height: 70vh;
  }

  .section-progress.section-progress-progress {
    margin-top: -150px;
  }

  .section-progress-wrapper {
    padding-left: 140px;
    padding-right: 140px;
  }

  .headline-subtitle-regular-text.headline-subtitle-regular-text-services {
    margin-bottom: 0;
  }

  .c-phone-left-offset-col {
    height: 70vh;
  }

  .scroll-description-v2 {
    margin-top: 0;
  }

  .link:hover {
    color: var(--black);
    background-image: url('../images/star-four.svg');
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: auto;
  }
}

@media screen and (max-width: 991px) {
  blockquote {
    font-size: 32px;
  }

  .container-main {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-wrap {
    margin-top: 100px;
    margin-bottom: 80px;
  }

  .hero-cta-wrap.hero-cta-wrap-hide-on-mobile {
    display: none;
  }

  .slide {
    width: 244px;
  }

  .sticky-text_wrapper.steps {
    margin-top: 3vh;
    margin-bottom: 3vh;
  }

  .circle-number {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .phone-mock_border {
    border-width: 8px;
    border-radius: 1.5em;
  }

  .phone-screen_wrapper {
    border-radius: 1.2em;
  }

  .phone-mock {
    border-radius: 1.5em;
    width: 90%;
    padding: 8px;
  }

  .phone-mock_tab {
    height: 3vw;
  }

  .build-wrapper {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    flex-flow: column;
    align-items: center;
  }

  .card-build-wrap {
    width: 100%;
  }

  .card-build {
    width: 50%;
  }

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

  .form-field-submit-wrap {
    flex-flow: column;
    align-items: stretch;
    height: auto;
  }

  .navbar-logo-center-container.shadow-three {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
  }

  .navbar-brand-three {
    z-index: 9;
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    height: calc(100vh - 128px);
  }

  .nav-menu-three {
    z-index: 8;
    background-color: #fff;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100vh;
    padding: 100px 24px 20px;
    display: none;
    position: absolute;
    inset: 0%;
    transform: translate(0, -100vh);
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-menu-block {
    flex-flow: column;
    align-items: flex-start;
  }

  .nav-menu-block.nav-menu-block-hide-on-desktop {
    display: flex;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 32px;
  }

  .nav-link.w--current {
    color: var(--purple);
    font-weight: 500;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    z-index: 9;
    width: 36px;
    height: 36px;
    padding: 0;
    display: block;
    position: relative;
  }

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

  .c-phone-section.c-phone-section-progress {
    height: auto;
    margin-bottom: 80px;
  }

  .c-phone-section.test {
    height: auto;
  }

  ._w-section-phone._w-section-phone-process {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
  }

  ._w-section-phone.test {
    height: auto;
  }

  .c-phone-left-col.c-phone-left-col-progress, .c-phone-left-col.test {
    display: none;
  }

  ._w-content-scroll.test-hide-on-desktop {
    margin-bottom: 24px;
    display: flex;
  }

  .c-phone-right-col.c-phone-right-col-progress {
    justify-content: center;
    align-items: flex-start;
  }

  .section-services {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .service-card {
    flex-flow: column;
  }

  .services-divider {
    margin-top: 96px;
    margin-bottom: 96px;
  }

  .service-card-left-col {
    padding-top: 0;
  }

  .section-about-us-headline {
    margin-top: 0;
    margin-bottom: 96px;
  }

  .about-header-wrapper {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-flow: column-reverse;
  }

  .about-headline-right-col {
    max-width: 244px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-headline {
    margin-bottom: 24px;
  }

  .about-us-card {
    flex-flow: column;
  }

  .about-us-card-right-col {
    max-width: none;
  }

  ._404-wrapper {
    flex-flow: column;
  }

  .section-contacts {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .contacts-wrapper {
    flex-flow: column;
  }

  .privacy-terms-left-col {
    display: none;
  }

  .privacy-terms-right-col {
    max-width: none;
  }

  .rich-text-block h1 {
    font-size: 48px;
  }

  .rich-text-block h2 {
    font-size: 32px;
  }

  .rich-text-block h3 {
    font-size: 24px;
  }

  .rich-text-block p {
    font-size: 16px;
    line-height: 140%;
  }

  .rich-text-block ol {
    padding-left: 24px;
  }

  .rich-text-block li {
    font-size: 16px;
  }

  .rich-text-block ul {
    padding-left: 24px;
  }

  .c-phone-left-offset-col {
    display: none;
  }

  .section-progress-wrapper-v2 {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-article-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column-reverse;
    margin-top: 40px;
  }

  .hero-article-right-col {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    align-self: flex-start;
  }

  .hero-article-details {
    margin-bottom: 48px;
  }

  .section-article-body {
    margin-top: 48px;
    margin-bottom: 100px;
  }

  .blog-subscribe-wrap {
    background-size: 200px, 150px;
  }

  .blog-list-search {
    max-width: none;
  }

  .blog-filter-wrapper {
    white-space: nowrap;
    width: 100%;
    overflow: auto;
  }

  .form-contacts-subscribe-wrapper.form-contacts-subscribe-wrapper-higher {
    background-position: 93%;
  }

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

  .article-wrapper {
    margin-top: 48px;
  }

  .article-left-col {
    display: none;
  }

  .article-right-col {
    max-width: none;
  }

  .breadcrumb-link {
    font-size: 16px;
  }

  .breadcrumb-current-page {
    font-size: 16px;
    display: inline-block;
  }

  .section-portfolio-hero {
    margin-top: 0;
  }

  .section-about-the-project {
    margin-top: -32px;
    margin-bottom: 80px;
  }

  .about-details-wrapper {
    padding: 32px;
  }

  .about-details-right-col {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .about-details-item-icon {
    max-height: 96px;
  }

  .section-goal {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .section-info {
    margin-top: 60px;
    margin-bottom: 80px;
  }

  .quote-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-quote {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .under-quote-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: space-between;
    align-items: flex-start;
  }

  .quote-deco {
    padding-left: 0;
  }

  .quote-author-company {
    font-size: 16px;
  }

  .section-challenges {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .h3-medium-purple {
    font-size: 24px;
  }

  .section-project {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .portfolio-collection-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .portfolio-filter {
    white-space: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    overflow: auto;
  }

  .nav-list-item {
    margin-bottom: 20px;
  }

  .nav-mobile-bottom-link {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
  }

  .nav-mobile-bottom-copywrite {
    color: var(--grey);
    text-align: center;
    font-size: 16px;
  }

  .nav-menu-terms {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    display: flex;
  }

  .nav-menu-mobile-terms-wrapper {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 80px;
    display: block;
  }

  .nav-menu-three-custom {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0;
    display: flex;
  }

  .list-item {
    display: none;
  }

  .section-navbar {
    z-index: 9;
    background-color: var(--white);
    position: sticky;
  }

  .navbar-wrapper {
    justify-content: space-between;
    align-items: center;
  }

  .container-navigation {
    padding-left: 24px;
    padding-right: 24px;
  }

  .help-slider-slide {
    width: 244px;
  }

  .about-details-block {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .form-footer-contact-submit-wrapper {
    background-position: 97%;
    max-width: none;
  }

  .scroll-description-icon {
    display: inline-block;
  }

  .scroll-image-for-mobile {
    opacity: 100;
    height: 100%;
  }

  .scroll-cta {
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .breadcrumb-devider, .image-11 {
    width: 12px;
  }

  .list {
    padding-left: 24px;
  }

  .home-divider {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  blockquote {
    font-size: 24px;
  }

  .section-hero {
    background-image: url('../images/hero-bg-mobile.jpg');
  }

  .hero-cta-wrap {
    flex-flow: column;
    margin-top: 30px;
  }

  .cards-wrapper {
    flex-flow: column;
    align-items: center;
    height: auto;
  }

  .card.card-first {
    inset: -30px 0 0 -15px;
  }

  .card.card-first:hover {
    z-index: 1;
    transform: rotate(-5deg);
  }

  .card.card-second {
    top: -380px;
    right: -5px;
    transform: rotate(2deg);
  }

  .card.card-second:hover {
    z-index: 1;
    transform: rotate(2deg);
  }

  .card.card-third {
    margin-right: -18px;
    inset: -680px 0 0 -5px;
    transform: rotate(8deg);
  }

  .card.card-third:hover {
    z-index: 1;
    transform: rotate(8deg);
  }

  .slide-card.slide-1, .slide-card.slide-2, .slide-card.slide-4, .slide-card.slide-5 {
    transform: none;
  }

  .headline-wrapper {
    margin-bottom: 48px;
  }

  .h2-regular {
    letter-spacing: -1px;
    font-size: 32px;
  }

  .h2-big {
    letter-spacing: -1px;
    font-size: 48px;
    line-height: 110%;
  }

  .features-card {
    width: 25rem;
    min-height: 18rem;
  }

  .h3-regular {
    letter-spacing: -1px;
    font-size: 32px;
  }

  .phone-mock_wrapper {
    position: absolute;
    left: auto;
    right: -28px;
    overflow: hidden;
  }

  .h3 {
    font-size: 1.7rem;
  }

  .sticky-text_wrapper.steps {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 40px 1fr;
  }

  .circle-number {
    font-size: 1.1rem;
  }

  .circle-number.steps1 {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .circle-number.steps3, .circle-number.steps2, .circle-number.steps4 {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .sticky-img_wrapper {
    width: 100%;
  }

  .sticky-container {
    height: auto;
  }

  .container {
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
  }

  .paragraph-l {
    font-size: 1.1rem;
  }

  .paragraph-l.cc-sm-small {
    font-size: 1rem;
  }

  .phone-mock {
    width: 150%;
    box-shadow: none;
  }

  .section-progress-03 {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .phone-mock_tab {
    border-bottom-right-radius: .5em;
    border-bottom-left-radius: .5em;
    height: 29px;
  }

  .section-build {
    margin-top: 96px;
  }

  .card-build {
    width: 100%;
  }

  .footer-wrapper, .footer-navigation-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .footer-copyright-text {
    text-align: center;
  }

  .section-form {
    background-image: url('../images/subtract-mobile-view.svg');
  }

  .form-wrapper {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding: 48px 24px 24px;
  }

  .form-headline {
    margin-bottom: 24px;
    margin-left: 0;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three, .nav-menu-block {
    flex-direction: column;
  }

  .nav-link {
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .c-phone-section {
    height: 100%;
  }

  ._w-section-phone {
    flex-direction: column-reverse;
    justify-content: flex-end;
    height: 100vh;
    position: sticky;
    top: 1px;
  }

  ._w-section-phone._w-section-phone-process {
    justify-content: flex-end;
    align-items: center;
  }

  ._w-section-phone.test {
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
    top: auto;
  }

  .c-trigger-get-btn {
    height: 100%;
  }

  .c-phone-left-col {
    z-index: 500;
    width: 100%;
    height: 500vh;
    position: relative;
  }

  .c-phone-section-item {
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 0;
    padding: 0;
    display: flex;
  }

  ._w-phone-left-col {
    opacity: 1;
  }

  .section-progress-wrapper {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .h1-big {
    letter-spacing: -2px;
    font-size: 48px;
    line-height: 110%;
  }

  .cards-section-v2 {
    height: 600px;
    min-height: 0;
    margin-bottom: 0;
  }

  .form-headline-deco-1 {
    display: none;
  }

  .service-card {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    flex-flow: column;
  }

  .services-divider {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .headline-subtitle-medium-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
  }

  .service-card-left-col {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .service-card-item-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .h2-medium {
    font-size: 40px;
  }

  .service-card-cta-wrap {
    margin-top: 4px;
  }

  .about-subtitmes {
    flex-flow: column;
  }

  .about-us-card {
    width: 100%;
  }

  .about-us-card-left-col {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .about-us-card-headline {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: row-reverse;
    justify-content: space-between;
    width: 100%;
  }

  .about-us-card-number {
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
  }

  .about-us-card-headline-with-accent {
    width: 300px;
    top: -14px;
    left: -24px;
  }

  .hero-title-wrap {
    margin-bottom: 16px;
  }

  .section-contacts {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .h1-medium {
    font-size: 40px;
  }

  .hero-article-right-col {
    max-width: none;
  }

  .blog-collection-list {
    grid-template-columns: 1fr;
  }

  .image-9 {
    max-width: none;
  }

  .blog-subscribe-wrap {
    background-image: url('../images/planes.svg');
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: 150px;
  }

  .form-subscribe {
    flex-flow: column;
    height: auto;
  }

  .blog-subscribe-form {
    text-align: left;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .form-contacts-subscribe-wrapper.form-contacts-subscribe-wrapper-higher {
    background-position: 98%;
    max-width: none;
  }

  .breadcrumb-list {
    grid-row-gap: 4px;
    flex-flow: wrap;
  }

  .about-details-right-col {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .about-details-item-icon {
    max-height: 48px;
  }

  .about-details-item {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
  }

  .section-info {
    margin-bottom: 60px;
  }

  .info-wrapper {
    grid-template-columns: 1fr;
  }

  .block-quote {
    font-size: 32px;
  }

  .quote-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .section-quote {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .quote-deco {
    display: none;
  }

  .quote-author-details {
    background-color: #0000;
    border-style: none;
    border-radius: 0;
    padding: 0;
  }

  .section-challenges {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .challenges-block {
    grid-template-columns: 1fr;
  }

  .section-project {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .project-wrapper {
    grid-template-columns: 1fr;
  }

  .project-photo-1 {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }

  .project-photo-2 {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .project-block-left-col {
    padding-top: 24px;
  }

  .portfolio-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-filter {
    margin-bottom: 40px;
  }

  .portfolio-filter-wrapper {
    flex: none;
  }

  .nav-list-item {
    margin-bottom: 10px;
  }

  .nav-menu-three-custom {
    flex-direction: column;
  }

  .help-slider {
    margin-bottom: 48px;
  }

  .help-slider-mask {
    width: 244px;
  }

  .help-slider-slide {
    margin-right: 24px;
  }

  .about-details-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .about-card-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
  }

  .form-headline-deco-2 {
    display: inline-block;
    position: absolute;
    inset: -79px auto auto -26px;
  }

  .contacts-cta-devider {
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    display: none;
  }

  .home-divider {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}

@media screen and (max-width: 479px) {
  .hero-cta-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .features-card {
    width: 20rem;
    min-height: 15rem;
  }

  .h3 {
    font-size: 1.4rem;
  }

  .sticky-text_wrapper.steps {
    grid-template-columns: 1fr;
  }

  .circle-number.steps1, .circle-number.steps3, .circle-number.steps2, .circle-number.steps4 {
    display: none;
  }

  .phone-mock_border {
    border-width: 5px;
  }

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

  .phone-mock {
    width: 170%;
    padding: 6px;
  }

  .section-progress-03 {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .phone-mock_tab {
    height: 5vw;
  }

  .footer-wrapper {
    flex-flow: column;
  }

  .form-fields-wrap {
    flex-flow: column;
    height: auto;
  }

  .container-navbar {
    max-width: none;
  }

  .nav-menu-three {
    flex-direction: column;
  }

  ._w-phone-frame {
    padding-left: 10px;
    padding-right: 10px;
  }

  ._w-section-phone {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._w-section-phone._w-section-phone-process {
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  ._w-content-scroll.test-hide-on-desktop {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
  }

  .c-phone-indicator {
    padding-left: 10px;
    padding-right: 10px;
  }

  ._w-phone-left-col {
    align-items: flex-start;
    height: 80vh;
  }

  .form-contacts-fields-wrapper.form-contacts-fields-wrapper-flex-mobile {
    flex-flow: column;
  }

  .form-contacts-submit-wrapper, .select-field {
    background-position: 93%;
  }

  .form-contacts-subscribe-wrapper.form-contacts-subscribe-wrapper-higher {
    background-position: 96%;
  }

  .portfolio-collection-list {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .portfolio-filter {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .nav-menu-three-custom {
    flex-direction: column;
  }

  .form-footer-contact-submit-wrapper {
    background-position: 93%;
  }
}

#w-node-c0b7aa98-d8c9-e754-c9f0-7dc91596139e-ec02d304 {
  align-self: end;
}

#w-node-_30241e68-9d2b-5900-925e-aa6162f8df03-ec02d304 {
  align-self: stretch;
}

#w-node-_8f617dc4-18d4-7dfb-409d-09e165e17053-ec02d304 {
  align-self: start;
}

#w-node-fe438ce5-1c84-2ef0-43b9-c920a34997e3-ec02d304 {
  align-self: end;
}


