:root {
  --black: #2c2c2c;
  --orange: #ffa300;
  --royal-blue: #0074ff;
  --violet: #fe68ff;
  --crimson: #ff3445;
  --white: white;
  --color: #00337c;
  --white-2: #fbfbfb;
  --shadow: #d5d5d5;
  --shadow-opacity: rgba(213, 213, 213, .33);
  --dark-grey: #9b9b9b;
  --white-smoke: #f7f7f7;
  --dark-slate-blue: rgba(34, 52, 123, .16);
  --black-2: #22347b;
  --color-2: #13005a;
  --color-3: #e04d01;
  --color-4: #c84b31;
  --color-5: #2a2550;
  --color-6: #251d3a;
  --color-7: #adaca7;
}

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

body {
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  font-family: Outfit, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}

h1 {
  letter-spacing: -.1rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.1;
}

h2 {
  letter-spacing: -.1rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 1.1;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--orange);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  color: #838383;
  margin-bottom: .5rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid var(--royal-blue);
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.page-wrapper {
  flex-direction: column;
  min-height: 100vh;
  font-size: 1.142rem;
  display: flex;
}

.page-wrapper.center {
  justify-content: center;
}

.styleguide-section {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  padding: 8rem 2.5rem;
  display: flex;
}

.color-primary {
  color: var(--royal-blue);
}

.styleguide-section-title {
  border-top: 1px solid var(--royal-blue);
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
}

.bg-whitesmoke {
  background-color: #f5f5f5;
}

.heading-xl {
  font-size: 6rem;
}

.styleguide-elements-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.styleguide-flex-element {
  display: flex;
}

.styleguide-squared-element {
  flex: 0 50%;
  padding-top: 50%;
}

.styleguide-squared-element.has-border {
  border: 1px solid rgba(44, 44, 44, .4);
}

.styleguide-description-label {
  flex-direction: column;
  flex: 0 50%;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.styleguide-description-label.color-white {
  grid-row-gap: .5rem;
}

.label {
  font-size: 1.4rem;
}

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

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

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

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

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

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

.styleguide-typography-element {
  background-color: var(--royal-blue);
  padding: 1rem;
  display: flex;
}

.styleguide-squared-element {
  padding-top: 50%;
  position: relative;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.color-white {
  color: #fff;
}

.weight-normal {
  font-weight: 400;
}

.weight-tin {
  font-weight: 100;
}

.weight-extralight {
  font-weight: 200;
}

.weight-light {
  font-weight: 300;
}

.weight-semibold {
  font-weight: 600;
}

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

.weight-extrabold {
  font-weight: 800;
}

.weight-black {
  font-weight: 900;
}

.styleguide-list-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  display: flex;
}

.styleguide-utility-class-element {
  background-color: var(--royal-blue);
  padding: 1rem;
  display: flex;
}

.class-element-preview {
  background-color: var(--white);
  flex: 1;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.h1 {
  font-size: 4.17rem;
  font-weight: 500;
  line-height: 1.1;
}

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

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

.class-element-preview-block {
  background-color: var(--white);
  flex: 1;
  align-self: center;
  align-items: center;
  padding: 1rem;
  display: block;
}

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

.richtext h2 {
  margin-bottom: 1.5rem;
}

.richtext p {
  margin-bottom: 1rem;
}

.richtext h4 {
  margin-bottom: 1.1rem;
}

.richtext a {
  color: var(--royal-blue);
  font-size: 1rem;
  display: inline;
}

.richtext ol, .richtext ul {
  margin-left: 2rem;
}

.main-container {
  flex-direction: column;
  align-items: stretch;
  width: 90%;
  max-width: 81rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.main-container.center {
  z-index: 4;
  align-items: center;
  position: relative;
}

.main-container.center.small {
  width: auto;
  max-width: 1100px;
}

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

.primary-button {
  background-color: var(--color);
  color: var(--white);
  border-radius: 2rem;
  flex: none;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: padding .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.primary-button:hover {
  padding-right: 3.1rem;
  text-decoration: none;
}

.primary-button.hollow {
  border: 1px solid var(--color);
  background-color: var(--crimson);
  color: var(--orange);
  transition-property: all;
}

.primary-button.hollow:hover {
  color: var(--white);
}

.primary-button.blue {
  background-color: var(--royal-blue);
}

.primary-button.talk {
  margin-left: 303px;
  padding-left: 2rem;
}

.primary-button.primary-button-background {
  background-color: var(--crimson);
}

.button-text {
  z-index: 2;
  height: auto;
  min-height: auto;
  line-height: 1.4;
  position: relative;
}

.button-text.color {
  color: var(--white-2);
  font-size: .95rem;
}

.primary-button-background {
  background-color: var(--royal-blue);
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
}

.button-icon {
  opacity: 0;
  width: 1.5rem;
  display: block;
  position: absolute;
  right: 1.5rem;
}

.cta-link {
  color: var(--black);
  align-items: center;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.arrow-icon {
  justify-content: center;
  align-items: center;
  width: 1.2rem;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  right: -1rem;
}

.arrow-icon.color-accent {
  color: var(--violet);
  right: -1.125rem;
}

.color-accent {
  color: var(--orange);
}

.card {
  border-radius: .75rem;
  width: 100%;
  padding: 3.875rem 2.25rem;
  box-shadow: 0 20px 34px 4px rgba(0, 0, 0, .2);
}

.card-image {
  width: 1.625rem;
  height: auto;
}

.card-headline {
  margin-bottom: 1rem;
  font-size: 1.625rem;
}

.card-richtext {
  margin-top: auto;
}

.card-action-wrapper {
  width: auto;
  margin-top: 1.25rem;
  display: inline-block;
}

.small-card {
  border-radius: .75rem;
  width: 100%;
  padding: 1.5rem 1rem;
  box-shadow: 0 20px 34px 4px rgba(0, 0, 0, .2);
}

.card-label {
  text-transform: uppercase;
  font-size: .8rem;
  line-height: 1.2;
}

.chip {
  background-color: var(--shadow);
  text-transform: uppercase;
  border-radius: 1rem;
  padding: .3125rem .875rem;
  font-size: .8rem;
  font-weight: 500;
  display: inline-block;
}

.spacer-small {
  height: 1rem;
}

.card-with-chip {
  border-radius: .75rem;
  width: 100%;
  padding: 3rem 2rem;
  box-shadow: 0 20px 34px 4px rgba(0, 0, 0, .2);
}

.feature-card {
  border-radius: .75rem;
  justify-content: space-between;
  width: 50vw;
  min-height: 20rem;
  padding: 3rem 2rem;
  text-decoration: none;
  display: flex;
  position: relative;
  box-shadow: 0 20px 34px 4px rgba(0, 0, 0, .2);
}

.feature-card-image {
  align-self: flex-end;
  max-width: 10rem;
  display: block;
}

.feature-card-content {
  width: 30vw;
}

.feature-card-scale {
  border-radius: .75rem;
  justify-content: space-between;
  width: 50vw;
  min-height: 20rem;
  padding: 3rem 2rem;
  text-decoration: none;
  display: flex;
  position: relative;
  box-shadow: 0 20px 34px 4px rgba(0, 0, 0, .2);
}

.navbar {
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0);
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 2rem;
  left: 0;
  right: 0;
}

.brand-image {
  width: auto;
  height: 2.2rem;
  display: block;
}

.nav-actions {
  grid-column-gap: 1rem;
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.navbar-container {
  grid-column-gap: 1.25rem;
  box-shadow: 0 12px 17px 0 var(--shadow-opacity);
  background-color: #fff;
  border-radius: 2.5rem;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 80rem;
  height: 5.125rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.navbar-dropdown-content {
  z-index: -1;
  background-color: var(--white);
  box-shadow: 0 12px 17px 0 var(--shadow-opacity);
  opacity: 0;
  height: 0;
  padding-left: .5rem;
  padding-right: .5rem;
  transition: height 10000s, transform .35s, opacity .35s;
  display: block;
  overflow: hidden;
  transform: translate(0, -10px);
}

.navbar-dropdown-content.w--open {
  opacity: 1;
  background-color: #fff;
  border-radius: 1.25rem;
  height: auto;
  position: absolute;
  transform: translate(0, 1rem);
}

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

.navbar-dropdown-toggle {
  align-items: center;
  padding: 2rem 2.5rem 2rem 1rem;
  font-size: 1.125rem;
  line-height: 1;
  display: none;
}

.nav-dropdown-icon {
  color: var(--dark-grey);
  margin-right: 1rem;
  font-size: 1rem;
  transition: transform .3s ease-in-out;
}

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

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

.navbar-dropdown-content-wrapper {
  grid-column-gap: 1rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
  display: flex;
  position: relative;
}

.nav-dropdown-link {
  color: var(--black);
  border-radius: 1.25rem;
  flex-direction: column;
  width: 20vw;
  padding: .875rem;
  text-decoration: none;
  display: block;
  position: relative;
}

.nav-dropdown-link:hover {
  background-color: var(--royal-blue);
  color: #fff;
}

.dropdown-link-icon {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 2rem;
  display: block;
}

.dropdown-title {
  margin-bottom: .3125rem;
  font-size: 1.675rem;
}

.dropdown-description {
  font-size: 1.1rem;
}

.right-border {
  background-color: var(--shadow-opacity);
  width: 1px;
  height: 90%;
  position: absolute;
  top: 5%;
  right: -.5rem;
}

.brand {
  padding-left: 0;
}

.section {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  padding-left: 0;
  display: flex;
  position: relative;
}

.section.background-color-gray {
  background-color: var(--white-2);
}

.section.full {
  text-align: center;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.section.comments {
  display: none;
}

.navbar-spacer {
  z-index: -1;
  border: 1px #000;
  height: 7.125rem;
}

.footer {
  background-color: var(--white-smoke);
  border-top-left-radius: 6.25rem;
  border-top-right-radius: 6.25rem;
  margin-top: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 3.25fr 2.5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.space-y-1 {
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.submit-button {
  background-color: var(--orange);
  color: var(--white);
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375;
  text-decoration: none;
  transition: background-color .3s, padding .3s;
  display: flex;
  position: relative;
  right: 0;
  overflow: hidden;
}

.submit-button:hover {
  background-color: var(--royal-blue);
  background-image: url('../images/white-chevron.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  padding-right: 3.1rem;
}

.submit-button.large {
  width: 100%;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.submit-button.invers, .submit-button.invers:hover {
  background-color: var(--royal-blue);
}

.subscribe-input-field {
  color: var(--black);
  border: 0 solid #000;
  margin-bottom: 0;
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
}

.subscribe-input-field::placeholder {
  font-size: 1.125rem;
}

.subscribe-form {
  grid-column-gap: 1rem;
  background-color: var(--white);
  box-shadow: 0 12px 17px 0 var(--shadow-opacity);
  border-radius: 3rem;
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.footer-menu-label {
  color: var(--color);
  margin-bottom: .25rem;
  font-size: 1.25rem;
}

.images-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  transform-style: preserve-3d;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-width: 100%;
  height: 10rem;
  display: flex;
}

.spacer {
  height: 2rem;
}

.social-icon {
  background-color: var(--white);
  box-shadow: 0 2px 5px 2px var(--shadow-opacity);
  cursor: pointer;
  border-radius: 3rem;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: all .25s;
  display: flex;
}

.social-icon:hover {
  box-shadow: 0 4px 5px 2px var(--shadow-opacity);
  color: var(--orange);
}

.social-icon:active {
  box-shadow: 0 1px 5px 2px var(--shadow-opacity);
}

.social-icon-svg {
  width: 1.25rem;
  display: flex;
}

.social-icons {
  grid-column-gap: .8rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-menus {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-brand-image {
  width: auto;
  height: 4rem;
  margin-top: 38px;
  padding-top: 0;
  display: block;
}

.icon {
  color: var(--violet);
  height: 26px;
}

.nav-overlay {
  display: none;
}

.main-flex-container {
  grid-column-gap: 4rem;
  grid-row-gap: 2.25rem;
  justify-content: space-between;
  width: 90%;
  max-width: 81rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: flex;
}

.main-flex-container.full {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.column---4 {
  flex-direction: column;
  flex: 0 40%;
  align-items: flex-start;
  display: flex;
}

.column---4.flex {
  flex-direction: row;
}

.column-fill {
  flex: 1;
}

.display-title {
  font-size: 2.4rem;
  line-height: 1.2;
}

.address {
  font-style: normal;
  font-weight: 600;
}

.rotate-in-image {
  height: 100%;
}

.scale-in-image {
  width: 100%;
  height: 100%;
}

.contact-form {
  background-color: var(--white);
  box-shadow: 0 12px 17px 0 var(--shadow-opacity);
  border-radius: 1.25rem;
  margin-bottom: 0;
  padding: 3.4375rem 2.875rem;
}

.input-field {
  background-color: var(--dark-slate-blue);
  border: 1px #000;
  border-radius: 5rem;
  margin-bottom: 0;
  padding: 1.9rem 2rem;
}

.grid-2-columns {
  grid-column-gap: 2.5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-2-columns.hero {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex: 1;
  align-self: stretch;
}

.grid-2-columns.gap-0 {
  grid-column-gap: 0rem;
  flex: 1;
}

.grid-2-columns.slide-from-bottom-0-3 {
  grid-column-gap: 1.5rem;
}

.input-field-copy {
  background-color: var(--dark-slate-blue);
  border: 1px #000;
  border-radius: 5rem;
  margin-bottom: 0;
  padding: 1.5rem 2rem;
}

.spacer-medium {
  height: 3rem;
}

.column---5 {
  flex-direction: column;
  flex: 0 50%;
  align-items: stretch;
  display: flex;
  position: relative;
}

.column---5.center {
  align-self: center;
}

.column---5.left {
  align-self: center;
  align-items: flex-start;
}

.column---5.background-white {
  background-color: #fff;
  position: relative;
}

.rotate-scale-in-image {
  height: 100%;
}

.main-paragraph {
  font-size: 1.1429rem;
  position: relative;
}

.main-paragraph.max-width {
  max-width: 32.4rem;
  margin-bottom: 2rem;
}

.text-size-medium {
  font-size: 1.67rem;
}

.text-size-medium.background {
  background-color: #f1f1f1;
  border-radius: 20px;
  padding: 5px 16px;
}

.text-size-medium.background.yellow {
  background-color: rgba(251, 251, 251, .12);
}

.text-size-small {
  font-size: 1.04rem;
  line-height: 1.2;
}

.text-size-small.primary-color {
  color: var(--orange);
}

.text-size-small.primary-color.aligh-right {
  text-align: right;
  margin-top: auto;
}

.button-hero {
  border-radius: 12px;
  padding: 24px 25px;
  box-shadow: 0 20px 34px 4px rgba(0, 0, 0, .2);
}

.grid-3-columns {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr 1fr;
  margin-top: 21px;
}

.grid-3-columns.reverse {
  grid-template-columns: 1fr 1fr .75fr;
  margin-bottom: 50px;
}

.grid-3-columns.about {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 0;
}

.block {
  background-color: #fbfbfb;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  height: 350px;
  padding: 3.125rem 2.2rem;
  display: flex;
  box-shadow: 0 20px 34px 4px #d5d5d5;
}

.block.background-primary-color {
  background-color: var(--color);
  color: #fff;
  justify-content: space-around;
}

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

.column.top {
  justify-content: flex-start;
}

.column.procres {
  justify-content: flex-end;
  height: 381px;
}

.column.team {
  border-right: 1px solid #298aff;
  padding-right: 117px;
}

.column.form {
  align-items: stretch;
  width: 50%;
}

.column.form.full {
  width: 100%;
}

.tag-text {
  color: #2c2c2c;
  text-align: left;
  text-transform: uppercase;
  background-color: #f1f1f1;
  border-radius: 20px;
  flex: 0 auto;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 500;
}

.icon-image {
  width: auto;
  height: 26px;
  margin-bottom: 0;
}

.spacer-xlarge {
  flex: 0 auto;
  height: 100%;
}

.wrapper-button {
  background-color: #ffa300;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.wrapper-button.border {
  background-color: #fff;
  border: 1px #0074ff;
}

.main-button {
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 20px;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: auto;
  min-height: auto;
  padding: 16px 2rem;
  font-weight: 600;
  line-height: 1.375;
  transition: padding .3s;
  display: flex;
  position: relative;
}

.main-button:hover, .main-button:active {
  padding-right: 3.1rem;
}

.main-button.w--ecommerce-pill-selected {
  color: #5d5dff;
  background-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-color: #5d5dff;
}

.main-image {
  object-fit: cover;
  border-radius: 20px;
  align-self: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-left: 0;
  display: flex;
  position: relative;
}

.main-image.min-height {
  min-height: 500px;
}

.row {
  grid-column-gap: 2rem;
  flex-direction: row;
  display: flex;
}

.row.center {
  grid-column-gap: 1rem;
  align-items: center;
}

.row.overflow-hidden {
  overflow: hidden;
}

.row.align-center {
  justify-content: center;
}

.row.absolute {
  justify-content: space-between;
  width: 100%;
  padding-top: 22px;
  padding-left: 25px;
  padding-right: 25px;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.row.absolute.bottom {
  justify-content: space-around;
  padding-bottom: 22px;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.row.gap-1 {
  grid-column-gap: 1rem;
  align-self: stretch;
}

.row.left {
  grid-column-gap: .75rem;
  justify-content: flex-start;
}

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

.icon-wraps {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.tabs-menu {
  grid-column-gap: 10px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 2.5rem;
  display: grid;
}

.tab-pane-tab-1 {
  background-color: rgba(255, 255, 255, .16);
  border-radius: 20px;
  padding: 31px;
}

.black-tab {
  color: #fff;
  background-color: #0074ff;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 61px 60px;
  display: flex;
}

.black-tab.gray {
  color: #2c2c2c;
  background-color: #fbfbfb;
  border-radius: 20px;
  box-shadow: 0 20px 34px 4px #d5d5d5;
}

.black-tab.center {
  align-items: center;
  max-width: 68.8rem;
}

.black-tab.slide-from-left {
  background-color: var(--color);
}

.grid-proces {
  grid-column-gap: 24px;
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  position: relative;
}

.tab-link {
  grid-row-gap: 1rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  padding: 33px 20px;
  transition: background-color .5s;
  display: flex;
}

.tab-link:hover {
  background-color: rgba(255, 255, 255, .16);
}

.tab-link.w--current {
  background-color: rgba(255, 255, 255, .16);
  border-radius: 20px;
}

.text-block {
  background-color: var(--color);
  border: 1px solid #eceef3;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding-bottom: 0;
  font-size: .8rem;
  display: flex;
}

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

.spacer-large {
  height: 6.5rem;
}

.empty-state {
  color: #fff;
  text-align: center;
  background-color: #ff3445;
  border-radius: 20px;
}

.case-item {
  perspective: 1126px;
  height: 315px;
  position: relative;
  transform: perspective(1010px);
}

.case-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.case-list-wrapper {
  align-self: stretch;
}

.content-card {
  z-index: 2;
  color: #000;
  background-color: #fff;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  transition: opacity .8s;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.content-card:hover {
  opacity: 0;
}

.content-card.absolute {
  z-index: 1;
  opacity: 0;
  background-color: #fff;
  border-radius: 18px;
  align-items: center;
  transition: opacity .65s ease-in-out;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.content-card.absolute:hover {
  opacity: 1;
}

.content-card.absolute._2 {
  opacity: 1;
  color: #2c2c2c;
  background-color: #fbfbfb;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  overflow: hidden;
}

.content-card.absolute._2:hover {
  opacity: 0;
}

.content-card.absolute._2.home {
  box-shadow: 0 20px 34px 4px var(--shadow);
  transform-style: preserve-3d;
  background-color: #fff;
  justify-content: flex-end;
  align-items: flex-start;
  transition: transform .5s;
}

.content-card.absolute._2.home:hover {
  opacity: 1;
  transform: translate3d(0, 0, 35px);
}

.content-card.home {
  background-color: rgba(0, 0, 0, 0);
  align-items: flex-start;
  transition-property: none;
}

.content-card.home:hover {
  opacity: 1;
}

.bold {
  font-weight: 700;
}

.case-studies-block {
  color: rgba(255, 255, 255, .52);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  line-height: .8;
  display: flex;
  position: absolute;
  top: 8%;
  bottom: auto;
  left: 8%;
  right: auto;
  overflow: hidden;
}

.text-block-7 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.bg {
  opacity: .34;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.icon-background {
  background-color: rgba(254, 104, 255, .33);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}

.cta-block {
  grid-column-gap: 2rem;
  background-color: var(--royal-blue);
  color: #fff;
  border-radius: 20px;
  justify-content: space-around;
  width: 100%;
  padding: 5rem 2rem;
  display: flex;
}

.textarea-2 {
  flex: 1;
}

.textarea-2.form-field {
  background-color: rgba(255, 255, 255, .16);
  border-radius: 40px;
  flex: 1;
}

.textarea-2.form-field.white {
  background-color: #fff;
}

.radio-button-field {
  grid-column-gap: 5px;
  color: #fff;
  background-color: rgba(255, 255, 255, .16);
  border-radius: 50px;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 16px 10px 16px 23px;
  font-size: 1rem;
  display: flex;
}

.radio-button-field.white {
  color: var(--black);
  background-color: #fff;
}

.form-field {
  color: #fff;
  background-color: rgba(255, 255, 255, .16);
  border: 1px #000;
  border-radius: 50px;
  height: auto;
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: 26px;
}

.form-field.no-margin {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  width: 70%;
  margin-bottom: 0;
  margin-right: 10px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.1rem;
}

.form-field.white {
  background-color: #fff;
}

.form-field.password {
  background-color: var(--white);
  box-shadow: 0 8px 20px 4px var(--shadow);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.radio-button {
  margin-top: 0;
}

.succes-message {
  color: #fff;
  text-align: center;
  background-color: #0074ff;
  border-radius: 20px;
}

.form-block {
  flex: 1;
  margin-bottom: 0;
}

.main-button-2 {
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 20px;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  min-height: auto;
  padding: 16px 2rem;
  font-weight: 600;
  line-height: 1.375;
  transition: padding .3s;
  display: flex;
  position: relative;
}

.main-button-2:hover, .main-button-2:active {
  padding-right: 3.1rem;
}

.main-button-2.w--ecommerce-pill-selected {
  color: #5d5dff;
  background-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-color: #5d5dff;
}

.form {
  grid-column-gap: 1.5rem;
  display: flex;
}

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

.blog-list {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
}

.blog-item {
  width: 49%;
  height: auto;
  margin-top: 0;
  margin-bottom: 2%;
  display: inline-block;
}

.blog-item:nth-child(odd) {
  margin-right: 2%;
}

.blog-item:nth-child(2n) {
  width: 43%;
  height: auto;
}

.blog-item:first-child {
  width: 55%;
}

.blog-item:last-child {
  width: 49%;
}

.absolute-image {
  z-index: -1;
  opacity: .3;
  width: 200px;
  position: absolute;
  top: 52%;
  bottom: auto;
  left: auto;
  right: 0%;
  transform: rotate(180deg);
}

.absolute-image.blog {
  z-index: 1;
  opacity: .08;
  top: -18%;
  right: 0%;
  transform: rotate(180deg);
}

.absolute-image.blog.third {
  width: 300px;
  height: auto;
  top: auto;
  bottom: -11%;
  left: auto;
  right: -8%;
  transform: none;
}

.absolute-image.blog.fourth {
  width: 400px;
  top: -40%;
  bottom: auto;
  left: -17%;
  right: auto;
  transform: rotate(10deg);
}

.absolute-image.blog.second {
  opacity: .08;
  top: 33%;
  bottom: auto;
  left: -10%;
  right: auto;
  transform: rotate(-81deg);
}

.absolute-image.review {
  z-index: 1;
  opacity: 1;
  width: 99px;
  top: auto;
  bottom: -10%;
  left: 11%;
  right: auto;
  transform: rotate(90deg);
}

.absolute-image.review.third {
  width: 101px;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  transform: rotate(-90deg);
}

.absolute-image.review.second {
  width: 116px;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  transform: none;
}

.absolute-image.about {
  z-index: 3;
  opacity: 1;
  width: 176px;
  top: auto;
  bottom: 40.6px;
  left: auto;
  right: 2%;
  transform: none;
}

.image-link-block {
  width: 40%;
}

.image-link-block.second-card {
  border: 1px #000;
  border-radius: 20px;
  flex: none;
  width: 100%;
  overflow: hidden;
}

.bulled {
  background-color: #22347b;
  border-radius: 20px;
  width: 8px;
  height: 8px;
}

.main-button-3 {
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 20px;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  min-height: auto;
  padding: 16px 2rem;
  font-weight: 600;
  line-height: 1.375;
  transition: padding .3s;
  display: flex;
  position: relative;
}

.main-button-3:hover, .main-button-3:active {
  padding-right: 3.1rem;
}

.main-button-3.w--ecommerce-pill-selected {
  color: #5d5dff;
  background-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-color: #5d5dff;
}

.card-blog {
  color: var(--black);
  border-radius: 20px;
  flex-direction: column;
  height: 100%;
  padding: 1.8rem;
  text-decoration: none;
  display: flex;
  box-shadow: 0 20px 34px 4px rgba(0, 0, 0, .2);
}

.card-blog.border {
  border: 1px solid #333;
  border-radius: 20px;
  display: flex;
}

.card-blog.border.vertical-copy {
  background-color: #fbfbfb;
  border-style: none;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  height: 349px;
  margin-bottom: auto;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 34px 4px #d5d5d5;
}

.blog-post-list {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-post-item {
  perspective: 1107px;
  transform: perspective(990px);
}

.main-image-2 {
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.main-image-2.border {
  border: 1px #000;
  border-radius: 20px;
  height: auto;
}

.text-size-xsmall {
  color: var(--dark-grey);
  font-size: .8rem;
}

.text-size-xsmall.white {
  color: var(--white);
}

.text-primary-color {
  color: var(--royal-blue);
}

.brands-container {
  grid-column-gap: 4rem;
  flex: none;
  display: flex;
}

.hero-brand {
  width: 100px;
}

.last-post-item {
  grid-column-gap: 2rem;
  box-shadow: 0 20px 34px 4px var(--shadow);
  background-color: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  display: flex;
}

.cricle {
  background-color: #fe68ff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.blue-circle {
  background-color: #0074ff;
  border-radius: 1010px;
  width: 30%;
  height: 30%;
}

.newsletter {
  background-color: #fbfbfb;
  border-radius: 50px;
  padding: 10px 10px 10px 0;
  display: flex;
  box-shadow: 0 20px 34px 4px #d5d5d5;
}

.newsletter.orange {
  background-color: rgba(251, 251, 251, .12);
  justify-content: space-between;
  box-shadow: 0 20px 34px 4px #d18600;
}

.form-block-2 {
  width: 32.4rem;
}

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

.block-newsletter {
  color: #fff;
  background-color: #ffa300;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 25px;
  display: flex;
}

.absoluite-block {
  background-color: var(--color);
  border-radius: 20px;
  width: 258px;
  height: 103px;
  position: absolute;
  top: auto;
  bottom: -13px;
  left: 144px;
  right: auto;
}

.heading-large {
  z-index: 1;
  font-size: 3.9rem;
  position: relative;
}

.white-span {
  color: var(--white);
  font-weight: 600;
}

.regular-paragraph {
  font-size: 1.4rem;
}

.regular-paragraph.align-center {
  line-height: 1.3;
}

.dropdown-list-about {
  position: static;
}

.dropdown-list-about.w--open {
  background-color: rgba(0, 0, 0, 0);
  padding-bottom: 0;
  padding-left: 73px;
  padding-right: 20px;
  overflow: hidden;
}

.services-dropdown {
  border-bottom: 1px solid #000;
  width: 100%;
}

.services-dropdown.slide-from-bottom-0-2 {
  font-size: 1.1rem;
}

.icon-dropdown {
  color: #9b9b9b;
  margin-left: 10px;
  margin-right: 20px;
  font-size: .9rem;
  bottom: -3px;
  right: 0;
  transform: rotate(-90deg);
}

.icon-dropdown.second {
  font-size: 2.7rem;
  font-weight: 400;
}

.icon-dropdown.second.blue {
  color: #afafaf;
}

.icon-dropdown.team {
  color: #fff;
  text-align: left;
}

.icon-dropdown.third {
  color: #fff;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 0;
  font-size: 15px;
  bottom: 0;
}

.icon-dropdown.form {
  color: #fff;
  margin-right: 22px;
}

.absolute {
  width: 50px;
  position: absolute;
  left: 0;
}

.tab-services {
  background-color: #fbfbfb;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.dropdown-toggle-about {
  color: #fff;
  align-items: center;
  width: 100%;
  font-size: 1.1429rem;
  font-weight: 500;
  display: flex;
}

.dropdown-toggle-about.services {
  opacity: 1;
  color: #000;
  border: 1px #000;
  justify-content: center;
  align-items: center;
  padding-bottom: 39px;
}

.tabs-menu-2 {
  grid-column-gap: 10px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tabs-menu-2.services {
  background-color: #fbfbfb;
  border-radius: 100px;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  width: auto;
  margin-bottom: 40px;
  padding: 12px;
  display: flex;
}

.review-grid {
  grid-column-gap: 31px;
  grid-template-rows: auto;
  height: 100%;
}

.html-embed {
  color: #fe68ff;
  width: 40px;
}

.html-embed.orange {
  color: #ffa300;
}

.tab-link-second {
  background-color: #fff;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 500;
}

.tab-link-second.w--current {
  color: #fff;
  background-color: #0074ff;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
}

.review-column {
  background-color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
  display: flex;
  position: relative;
  box-shadow: 0 2px 5px rgba(213, 213, 213, .15);
}

.review-column.second {
  flex-direction: column;
  padding: 46px 51px;
  box-shadow: 0 2px 5px rgba(213, 213, 213, .15);
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-hidden.review {
  border-radius: 20px;
  width: 75%;
  position: relative;
}

.review-block {
  background-color: #fbfbfb;
  border-radius: 20px;
  height: 568px;
  padding: 31px;
  box-shadow: 0 20px 34px 4px #d5d5d5;
}

.tab-pane {
  height: 100%;
}

.tab-review {
  flex-direction: column;
  align-items: center;
  max-width: 69rem;
  display: flex;
}

.background-primary {
  z-index: -1;
  background-color: var(--orange);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.background-primary.top {
  z-index: 0;
}

.background-secondary {
  z-index: -1;
  background-color: var(--royal-blue);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.background-secondary.top {
  z-index: 0;
}

.background-terthiary {
  z-index: -1;
  background-color: var(--crimson);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.background-terthiary.top {
  z-index: 0;
}

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

.text-align-center {
  text-align: center;
  font-weight: 400;
}

.case-studies-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.case-studies-item {
  border-radius: 20px;
  height: 350px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 34px 4px #d5d5d5;
}

.case-studies-heading {
  text-align: center;
  font-size: 2.9rem;
}

.hover-wrapper {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.brand-image-2 {
  width: 120px;
  position: absolute;
}

.case-studies-grid {
  z-index: 5;
  grid-column-gap: 27px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
}

.color-block {
  color: #fff;
  background-color: #0074ff;
  border-radius: 100px;
  flex-direction: column;
  align-items: center;
  padding: 20px 61px;
  display: flex;
}

.color-block.third {
  background-color: #fe68ff;
}

.color-block.second {
  background-color: #ffa300;
}

.text-size-normal {
  font-size: 3.4rem;
}

.text-size-normal.bold {
  font-weight: 600;
}

.background-video {
  z-index: 2;
  opacity: .58;
  mix-blend-mode: lighten;
  width: 100%;
  height: 82%;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0%;
  right: auto;
}

.bg-image {
  width: 100%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
  transform: none;
}

.progres-bg {
  background-color: #2c2c2c;
  width: 100%;
  height: 100%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.progres {
  color: #fff;
  border-radius: 20px;
  align-items: flex-end;
  height: 81%;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.progres.second {
  height: 56%;
}

.progres.third {
  height: 35%;
}

.heading-style-h2 {
  letter-spacing: -.1rem;
  margin-top: .125rem;
  margin-bottom: .125rem;
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 1.1;
}

.heading-style-h2.margin-left {
  margin-bottom: 1rem;
  margin-left: 20px;
}

.dropdown-about {
  background-color: rgba(251, 251, 251, .15);
  border-radius: 20px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  position: static;
}

.name {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.grid-2-columns-about {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  position: relative;
}

.order-wrap {
  background-color: rgba(251, 251, 251, .15);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 20px;
  display: flex;
}

.team-image {
  object-fit: cover;
  border-radius: 50%;
  height: 100%;
  transform: rotate(180deg);
}

.team-image.round {
  object-fit: cover;
  width: 350px;
  height: 350px;
  transform: none;
}

.team-image.round.absolute {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: 0%;
  transform: translate(0, -50%);
}

.circ {
  background-color: #ffa300;
  background-image: url('../images/Senza-titolo-2-01_1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 60%;
  border-radius: 50%;
  width: 350px;
  height: 350px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
}

.social-team {
  filter: invert();
  width: 25px;
  height: auto;
}

.spacer-xsmall {
  height: .25rem;
}

.spcaer-medium {
  height: 4rem;
}

.text-size-regular {
  font-size: 1.3rem;
}

.rich-text-block {
  font-size: 1rem;
}

.right-arrow {
  display: none;
}

.slide-nav {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: .6rem;
  display: flex;
  top: auto;
  bottom: -85%;
  left: 64px;
  right: auto;
}

.column-2 {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  display: flex;
}

.column-2.max-width {
  width: 70%;
}

.text-span-2 {
  color: #22347b;
  font-weight: 500;
}

.left-arrow {
  display: none;
}

.row-second {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.row-second.center {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}

.slide-review {
  height: auto;
}

.main-text-2 {
  color: #b1b1b1;
}

.main-text-2.text-color-gray {
  color: #d9e3ea;
}

.main-text-2.text-color-gray.second {
  color: #858585;
}

.main-text-2.text-color-gray.second.margin-bottom.margin-xsmall.italic {
  color: #2c2c2c;
  font-size: 1.2rem;
}

.avatar-image {
  width: 100%;
  height: auto;
  margin-left: 0;
}

.review-slider {
  background-color: rgba(0, 0, 0, 0);
  flex: none;
  align-self: flex-start;
  width: 100%;
  height: auto;
}

.text-span-second {
  color: #525252;
}

.mask {
  height: auto;
  padding-bottom: 0;
}

.avatar-name {
  color: #2c2c2c;
  flex-direction: column;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  display: block;
}

.avatar {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  margin-bottom: 0;
  overflow: hidden;
}

.avatar.absolute {
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
}

.avatar.absolute.about {
  z-index: 17;
  flex: none;
  width: 40px;
  height: 40px;
  position: relative;
  top: auto;
  transform: none;
}

.slide-content {
  grid-column-gap: 27px;
  grid-row-gap: 27px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  display: flex;
  position: relative;
}

.column---3 {
  flex-direction: column;
  align-items: flex-start;
  width: 38%;
  display: flex;
}

.image-circle {
  object-fit: cover;
  border-radius: 100%;
}

.column---25 {
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  display: flex;
}

.slide-from-bottom-0-1.text-align-center {
  text-align: center;
}

.absolute-image-2 {
  z-index: -1;
  opacity: .3;
  width: 200px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
  transform: rotate(180deg);
}

.absolute-image-2.second {
  width: 266px;
  top: auto;
  bottom: -8%;
  left: 0%;
  right: auto;
  transform: rotate(90deg);
}

.circle {
  background-color: #0074ff;
  border-radius: 100%;
  width: 214px;
  height: 214px;
  position: absolute;
  top: auto;
  bottom: 32%;
  left: 18%;
  right: auto;
  transform: rotate(-180deg);
}

.circle._2 {
  z-index: 4;
  background-color: #fe68ff;
  width: 80px;
  height: 80px;
  top: 26%;
  bottom: auto;
  left: 18%;
  right: auto;
}

.circle._2.second {
  opacity: .56;
  background-color: #ffa300;
  width: 120px;
  height: 120px;
  top: auto;
  bottom: 50%;
  left: auto;
  right: 5%;
}

.circle._2.second-copy {
  opacity: .06;
  background-color: #fe68ff;
  width: 350px;
  height: 350px;
  top: auto;
  bottom: 3%;
  left: auto;
  right: 6%;
}

.circle._2 {
  background-color: #fe68ff;
  width: 80px;
  height: 80px;
  top: 26%;
  bottom: auto;
  left: 18%;
  right: auto;
}

.card-about {
  z-index: 0;
  color: #fff;
  background-color: #000;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  width: 535px;
  height: 350px;
  padding: 32px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.card-about.second {
  background-color: rgba(0, 0, 0, 0);
  width: 535px;
  height: 350px;
  margin-left: auto;
  margin-right: 0;
  text-decoration: none;
  overflow: hidden;
}

.card-about.slide-from-left {
  background-color: rgba(0, 0, 0, 0);
  overflow: hidden;
}

.grid-2-column.about {
  grid-column-gap: 0px;
  background-color: rgba(0, 0, 0, 0);
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.max-width {
  max-width: 322px;
}

.max-width.hero {
  width: 100%;
  max-width: 730px;
}

.hero {
  z-index: 2;
}

.hero.rotate-in-image {
  width: 82px;
  height: auto;
  position: absolute;
  top: auto;
  bottom: 17%;
  left: 33%;
  right: auto;
  transform: rotate(0);
}

.background-color-wite {
  z-index: -1;
  background-color: var(--black);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.circle-step {
  flex: 0 auto;
  width: 200px;
  display: none;
  position: absolute;
  top: 40%;
  bottom: auto;
  left: 59%;
  right: auto;
}

.circle-step.small {
  background-color: var(--violet);
  width: 150px;
  top: 52%;
  left: 64%;
}

.image-brand.scale-in-image {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.arrow-line {
  background-color: #fff;
  width: 12px;
  height: 2px;
  position: absolute;
  bottom: 14px;
  right: 6px;
}

.secondary-link {
  color: #2c2c2c;
  align-items: center;
  font-size: 1.2rem;
  text-decoration: none;
  display: flex;
}

.secondary-link.case {
  color: #fff;
  align-items: center;
  padding-right: 22px;
  position: relative;
}

.sticky {
  color: #fff;
  background-color: #ffa300;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 400px;
  height: 380px;
  margin-top: 68px;
  margin-right: 60px;
  padding: 29px 31px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 168px;
  overflow: hidden;
  box-shadow: 0 19px 20px rgba(213, 213, 213, .58);
}

.sticky.blog {
  color: var(--white);
  align-items: flex-start;
  height: auto;
  margin-top: 0;
  margin-right: 0;
  position: static;
  box-shadow: 0 20px 34px 8px #d5d5d5;
}

.main-paragraph-2 {
  font-size: 1.1429rem;
}

.main-paragraph-2.second {
  color: #fff;
}

.challenge {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 68px;
  display: flex;
}

.column-case {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.heading-style-h1 {
  font-size: 4.4rem;
  font-weight: 600;
}

.collection-list-blog-post {
  perspective: 951px;
  transform: perspective(1010px);
}

.collection-item-blog {
  perspective: 990px;
  transform: perspective(1146px);
}

.collection-list-related-post {
  width: 100%;
}

.rich-text-blog {
  font-size: 1.3rem;
}

.sticky-wrapper {
  grid-row-gap: 40px;
  flex-direction: column;
  align-self: flex-start;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 143px;
}

.blog-post {
  grid-column-gap: 17px;
  color: #2c2c2c;
  transform-style: preserve-3d;
  background-color: #fbfbfb;
  border-radius: 20px;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  text-decoration: none;
  transition: transform .525s;
  display: flex;
  box-shadow: 0 18px 17px -7px #d5d5d5;
}

.blog-post:hover {
  transform: translate3d(0, 0, 17px);
}

.blog-card-image {
  object-fit: cover;
  border-radius: 100%;
  width: 80px;
  height: 80px;
}

.image-97 {
  z-index: 2;
  width: 83px;
  position: absolute;
  top: auto;
  bottom: 13%;
  left: 30%;
  right: auto;
  transform: rotate(180deg);
}

.image-97.third {
  opacity: .2;
  width: 271px;
  top: auto;
  bottom: 11%;
  left: 8%;
  right: auto;
  transform: rotate(129deg);
}

.image-97.third-copy {
  width: 78px;
  top: 38%;
  bottom: auto;
  left: 0%;
  right: auto;
  transform: none;
}

.button-form {
  z-index: 99;
  position: relative;
}

.form-button {
  color: #fe68ff;
  cursor: pointer;
  background-color: #fe68ff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 7%;
  left: auto;
  right: 3%;
  box-shadow: 0 20px 34px 4px #d5d5d5;
}

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

.form-wrapper {
  z-index: 999;
  background-color: #fbfbfb;
  border-radius: 20px;
  flex-direction: column;
  width: 400px;
  height: auto;
  padding: 41px 27px;
  display: none;
  position: fixed;
  top: auto;
  bottom: 15%;
  left: auto;
  right: 3%;
  box-shadow: 0 2px 5px #d5d5d5;
}

.form-wrapper.open {
  display: block;
}

.form-3 {
  grid-column-gap: 20px;
  flex-direction: row;
  display: flex;
}

.form-3.vertical {
  flex-direction: column;
  align-items: stretch;
}

.html-embed-second {
  color: #fe68ff;
  width: 25px;
  height: 25px;
}

.html-embed-second.white {
  color: #fff;
}

.main-link {
  color: #2c2c2c;
  align-items: center;
  font-size: 1.2rem;
  text-decoration: none;
  display: flex;
}

.licensing-container {
  box-shadow: 0 12px 39px 4px var(--shadow);
  border-radius: 50px;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  padding: 40px;
}

.images-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.main-image-3 {
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.main-image-3.border {
  object-fit: cover;
  border-radius: 20px;
  height: 100%;
}

.changelog-container {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #525252;
  padding: 55px;
}

.changelog-container.border-radius {
  background-color: #fbfbfb;
  border-style: none;
  border-radius: 20px;
  box-shadow: 0 20px 34px 7px #d5d5d5;
}

.div-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  display: flex;
}

.button {
  background-color: var(--orange);
  text-align: center;
  border-radius: 35px;
  width: 100%;
}

.link, .text-block-8 {
  color: var(--black);
  font-size: 1.125rem;
  line-height: 1;
  text-decoration: none;
}

.link-block {
  color: var(--white);
  text-decoration: none;
}

.paragraph {
  padding-left: 40px;
}

.div-block-2 {
  margin-left: 40px;
  margin-right: 40px;
}

.paragraph-2, .paragraph-3 {
  font-size: 1rem;
}

@media screen and (min-width: 1440px) {
  a {
    cursor: pointer;
  }

  a:hover {
    text-decoration: underline;
  }

  .main-container {
    max-width: 80rem;
  }

  .main-container.small {
    max-width: 70rem;
  }

  .navbar-container {
    max-width: 80rem;
  }

  .nav-dropdown-link {
    width: 15vw;
  }

  .nav-dropdown-link:hover {
    text-decoration: none;
  }

  .main-flex-container {
    max-width: 80rem;
  }

  .main-flex-container.small {
    max-width: 70rem;
  }

  .column---5 {
    flex-basis: 50%;
  }

  .block {
    background-color: #fbfbfb;
    border-radius: 20px;
  }

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

  .column.team {
    padding-right: 128px;
  }

  .icon-image {
    height: 31px;
  }

  .wrapper-button {
    background-color: #ffa300;
  }

  .wrapper-button.border {
    margin-bottom: -15px;
    overflow: hidden;
  }

  .black-tab {
    width: 100%;
    padding-top: 59px;
    padding-bottom: 59px;
  }

  .grid-proces {
    grid-template-columns: 1fr .4fr;
  }

  .tab-link:hover {
    text-decoration: none;
  }

  .text-block {
    padding: 5px;
  }

  .content-card.absolute._2 {
    padding: 37px 31px;
  }

  .content-card.absolute._2.home {
    background-color: #fbfbfb;
  }

  .case-studies-block {
    width: 85px;
    height: 85px;
    top: 37px;
    left: 31px;
  }

  .text-block-7 {
    font-size: 18px;
  }

  .absolute-image {
    width: 15vw;
    top: auto;
    bottom: -35%;
    left: auto;
    right: -2%;
  }

  .absolute-image.blog {
    height: auto;
    top: -30%;
    bottom: auto;
    left: auto;
    right: -7%;
  }

  .absolute-image.blog.third {
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .absolute-image.blog.fourth {
    top: -32%;
    bottom: auto;
    left: -24%;
    right: auto;
  }

  .absolute-image.blog.second {
    height: 36vw;
    top: auto;
    bottom: -59%;
    left: -11%;
    right: auto;
  }

  .absolute-image.about {
    bottom: 49.6px;
  }

  .card-blog:hover {
    text-decoration: none;
  }

  .card-blog.border.vertical-copy {
    height: 349px;
    position: relative;
  }

  .cricle {
    height: 100%;
  }

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

  .block-newsletter {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-left: 51px;
    padding-right: 51px;
  }

  .absoluite-block {
    right: 201px;
  }

  .review-column {
    padding: 75px;
  }

  .overflow-hidden.review {
    width: 100%;
  }

  .bg-image {
    left: 0%;
  }

  .team-image {
    object-fit: cover;
    border-radius: 50%;
    height: 100%;
  }

  .team-image.round.absolute {
    width: 365px;
    height: 365px;
  }

  .circ {
    justify-content: center;
    align-items: center;
    width: 365px;
    height: 365px;
    display: flex;
  }

  .grid {
    grid-column-gap: 52px;
  }

  .column---3, .column---25 {
    width: 42%;
  }

  .absolute-image-2 {
    width: 15vw;
    top: auto;
    bottom: -35%;
    left: auto;
    right: -2%;
  }

  .absolute-image-2.second {
    width: 24vw;
    bottom: -16%;
  }

  .circle._2.second {
    top: 38%;
    bottom: auto;
    left: auto;
    right: 3%;
  }

  .circle._2.second-copy {
    width: 300px;
    height: 300px;
    bottom: 3%;
    right: 7%;
  }

  .hero {
    bottom: 19%;
  }

  .heading-style-h1 {
    font-size: 4rem;
  }

  .image-97 {
    bottom: 19%;
  }

  .image-97.third {
    width: 230px;
  }

  .licensing-container {
    border-style: solid;
    border-color: #000;
    width: 100%;
    max-width: none;
  }

  .changelog-container {
    background-color: rgba(0, 0, 0, 0);
  }
}

@media screen and (max-width: 991px) {
  .styleguide-utility-class-element {
    flex-wrap: wrap;
  }

  .main-container.center {
    width: 93%;
  }

  .main-container.center.small {
    max-width: 93%;
  }

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

  .nav-actions {
    display: none;
  }

  .navbar-container {
    z-index: 2;
    position: relative;
  }

  .navbar-dropdown-content {
    transform: translate(0, -10px);
  }

  .navbar-dropdown-content.w--open {
    position: relative;
  }

  .nav-menu {
    z-index: 2;
    background-color: rgba(0, 0, 0, 0);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: block;
  }

  .navbar-dropdown.ix-dropdown-rotate {
    background-color: var(--white);
    border-radius: 2.5rem;
    height: 5.125rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: block;
  }

  .nav-dropdown-link {
    width: 32%;
  }

  .brand {
    flex: 1;
  }

  .menu-button {
    padding: 1rem 0 1rem 1rem;
  }

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

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .navbar-spacer {
    height: 5.125rem;
  }

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

  .footer-menus {
    justify-content: space-between;
  }

  .footer-bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-wrap: wrap;
  }

  .icon {
    color: var(--violet);
  }

  .nav-overlay {
    z-index: 1;
    background-color: var(--shadow-opacity);
    width: 100%;
    height: 100dvh;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
  }

  .hamburger-line {
    background-color: var(--black);
    width: 1.25rem;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .hamburger-line.center {
    margin-top: 3px;
    margin-bottom: 3px;
  }

  .main-flex-container {
    flex-direction: column;
    width: 93%;
  }

  .main-flex-container.small {
    grid-row-gap: 5.75rem;
  }

  .text-size-medium {
    font-size: 1.3rem;
  }

  .grid-3-columns {
    grid-template-columns: .75fr 1fr;
  }

  .grid-3-columns.reverse {
    grid-template-columns: 1fr 1fr;
  }

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

  .block.background-primary-color {
    height: 250px;
    padding-bottom: 1.925rem;
  }

  .column.form {
    grid-row-gap: 14px;
    width: 100%;
  }

  .column.team {
    padding-right: 0;
  }

  .column.form {
    width: 100%;
  }

  .main-button:hover {
    padding-right: 2rem;
  }

  .main-image {
    width: 100%;
  }

  .grid-proces {
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    display: flex;
  }

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

  .content-card {
    padding: 20px;
  }

  .cta-block {
    grid-row-gap: 30px;
    flex-direction: column-reverse;
  }

  .main-button-2:hover {
    padding-right: 2rem;
  }

  .form {
    grid-row-gap: 17px;
    flex-direction: column;
  }

  .blog-list-wrapper {
    flex-direction: column;
    padding: 0;
    display: flex;
  }

  .main-button-3:hover {
    padding-right: 2rem;
  }

  .card-blog.border.vertical-copy {
    height: 307px;
  }

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

  .main-image-2.border {
    border-style: none;
    height: 194px;
    margin-bottom: 20px;
  }

  .last-post-item.slide-from-bottom-0-3 {
    grid-row-gap: 2rem;
    flex-direction: column-reverse;
  }

  .absoluite-block {
    width: 186px;
    height: 67px;
    bottom: -4px;
    left: 109px;
    right: auto;
  }

  .heading-large {
    font-size: 3.5rem;
  }

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

  .review-column {
    width: 100%;
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .overflow-hidden.review {
    width: 52%;
  }

  .review-block {
    height: auto;
  }

  .case-studies-list {
    grid-template-columns: 1fr 1fr;
  }

  .background-video {
    height: 100%;
    bottom: 0;
  }

  .heading-style-h2 {
    font-size: 2.4rem;
  }

  .grid-2-columns-about {
    flex-direction: column;
    display: flex;
  }

  .team-image.round {
    display: none;
  }

  .circ {
    margin-right: auto;
  }

  .grid {
    grid-column-gap: 71px;
  }

  .avatar {
    width: 40px;
    height: 40px;
  }

  .slide-content {
    width: auto;
  }

  .column---3 {
    width: 80%;
  }

  .column---25 {
    width: 100%;
  }

  .circle._2.second.rotate-scale-in-image {
    z-index: 3;
  }

  .card-about {
    width: auto;
    height: 280px;
  }

  .card-about.second {
    flex: 1;
    width: auto;
    height: 280px;
  }

  .card-about.second.slide-from-right {
    width: 100%;
  }

  .grid-2-column.about {
    grid-column-gap: 20px;
    grid-template-columns: 1fr 1fr;
    max-width: 93%;
  }

  .circle-step {
    width: 80px;
    top: 68%;
    left: 71%;
  }

  .circle-step.small {
    width: 92px;
    top: 61%;
    left: 68%;
    transform: rotate(90deg);
  }

  .sticky {
    width: 100%;
    margin-top: 0;
    position: relative;
    top: 0;
  }

  .form-3 {
    flex-direction: column;
  }

  .licensing-container {
    width: 100%;
  }

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

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .h1 {
    font-size: 2.5rem;
  }

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

  .navbar {
    padding-left: 0;
    padding-right: 0;
    top: 2rem;
  }

  .brand-image {
    height: 1.25rem;
  }

  .navbar-container {
    max-width: none;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav-menu {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .navbar-dropdown-content-wrapper {
    grid-row-gap: 1rem;
    flex-wrap: wrap;
  }

  .nav-dropdown-link {
    flex: 48%;
  }

  .section {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .footer {
    padding-top: 6.45rem;
    padding-bottom: 4.25rem;
  }

  .footer-menus {
    flex-wrap: wrap;
  }

  .footer-brand-image {
    height: 1.25rem;
  }

  .nav-overlay {
    display: none;
  }

  .main-flex-container {
    max-width: none;
  }

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

  .grid-2-columns.hero, .grid-2-columns.gap-0 {
    grid-template-columns: 1fr 1fr;
  }

  .text-size-medium {
    margin-bottom: 0;
    font-size: .9rem;
  }

  .grid-3-columns, .grid-3-columns.reverse {
    grid-template-columns: 1fr;
  }

  .block {
    height: auto;
  }

  .tabs-menu {
    grid-template-columns: 1fr 1fr;
  }

  .black-tab, .black-tab.gray {
    padding-left: 40px;
    padding-right: 40px;
  }

  .black-tab.gray.slide-from-right {
    padding-top: 3.5rem;
    padding-bottom: 0;
  }

  .black-tab.center {
    padding-left: 40px;
    padding-right: 40px;
  }

  .spacer-large {
    height: 3.5rem;
  }

  .content-card {
    padding-top: 45px;
    padding-left: 40px;
  }

  .blog-list-wrapper {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .blog-item {
    width: 100%;
    margin-bottom: 5%;
    display: block;
  }

  .blog-item:nth-child(2n), .blog-item:first-child, .blog-item:last-child {
    width: 100%;
  }

  .absolute-image.about {
    width: 153px;
    bottom: 35.6px;
  }

  .image-link-block {
    width: 100%;
  }

  .card-blog.border {
    flex-direction: column;
  }

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

  .main-image-2.border {
    height: auto;
  }

  .form-block-2 {
    width: auto;
  }

  .absoluite-block {
    width: 159px;
    height: 59px;
    left: 93px;
    right: auto;
  }

  .heading-large {
    text-align: center;
    font-size: 2.5rem;
  }

  .heading-large.slide-from-bottom-0-2 {
    text-align: left;
  }

  .dropdown-list-about.w--open {
    padding-left: 67px;
    padding-right: 0;
  }

  .dropdown-toggle-about.services {
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .tabs-menu-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tab-link-second, .tab-link-second.w--current {
    padding-left: 20px;
    padding-right: 20px;
  }

  .review-column.second {
    padding-left: 24px;
    padding-right: 24px;
  }

  .name-avatar {
    font-size: 18px;
  }

  .overflow-hidden.review {
    width: 70%;
  }

  .case-studies-list {
    grid-template-columns: 1fr;
  }

  .case-studies-grid {
    grid-column-gap: 10px;
  }

  .color-block.third.slide-from-bottom-0-1 {
    padding: 12px 31px;
  }

  .color-block.second.slide-from-bottom-0-2, .color-block.slide-from-bottom-0-3 {
    padding-left: 31px;
    padding-right: 31px;
  }

  .text-size-normal.bold.case {
    font-size: 1.8rem;
  }

  .heading-style-h2 {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
  }

  .column-2 {
    align-items: flex-start;
  }

  .column---3 {
    width: 100%;
  }

  .absolute-image-2.second {
    opacity: .19;
  }

  .card-about.second {
    flex: 0 auto;
    width: 100%;
  }

  .grid-2-column.about {
    grid-template-columns: 1fr;
  }

  .heading-style-h1 {
    font-size: 3rem;
  }

  .case-studies-text {
    font-size: .8rem;
  }

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

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

@media screen and (max-width: 479px) {
  body {
    font-size: 1.142rem;
  }

  h1 {
    font-size: 2rem;
  }

  .styleguide-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .styleguide-flex-element {
    flex-wrap: wrap;
  }

  .styleguide-description-label {
    padding: .5rem;
  }

  .main-container.left {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-link {
    font-size: 1rem;
  }

  .navbar {
    top: 1.25rem;
  }

  .navbar-container {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .navbar-dropdown-content.w--open {
    margin-bottom: 40px;
  }

  .nav-menu {
    height: 84vh;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    overflow: scroll;
  }

  .navbar-dropdown.ix-dropdown-rotate {
    height: auto;
  }

  .dropdown-link-icon {
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 1rem;
  }

  .dropdown-title {
    font-size: 1.3rem;
  }

  .dropdown-description {
    font-size: .9rem;
  }

  .section {
    overflow: hidden;
  }

  .navbar-spacer {
    height: 4.125rem;
  }

  .footer {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
    font-size: .9rem;
  }

  .footer-menu-label {
    font-size: .9rem;
  }

  .images-wrapper {
    transform: scale3d(1none, 1none, 1none);
  }

  .footer-menus {
    grid-column-gap: 2rem;
    justify-content: flex-start;
  }

  .footer-brand-image {
    height: 1.5rem;
  }

  .rotate-in-image, .scale-in-image {
    flex: 1;
  }

  .contact-form.ix-fade-in-bottom {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .main-paragraph.xxsmall {
    font-size: .8rem;
  }

  .text-size-medium {
    margin-top: 0;
    margin-bottom: 5px;
  }

  .text-size-small {
    font-size: .9rem;
  }

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

  .grid-3-columns.about {
    grid-column-gap: 10px;
  }

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

  .column.team {
    position: static;
  }

  .icon-image {
    height: 32px;
    margin-bottom: 10px;
  }

  .main-button {
    width: auto;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .row {
    grid-column-gap: .75rem;
  }

  .row.align-center {
    grid-row-gap: 1rem;
    flex-direction: column;
  }

  .row.gap-1 {
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .icon-wraps {
    grid-column-gap: 5px;
  }

  .tabs-menu {
    grid-template-columns: 1fr 1fr;
  }

  .black-tab {
    padding-left: 20px;
    padding-right: 20px;
  }

  .black-tab.gray {
    padding: 40px 20px;
  }

  .black-tab.center {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }

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

  .content-card {
    padding: 20px 0;
  }

  .content-card.home {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-block {
    padding: 2rem 1rem;
  }

  .radio-button-field {
    justify-content: flex-start;
  }

  .form-field.no-margin {
    width: 50%;
  }

  .radio-button {
    margin-left: 0;
  }

  .main-button-2 {
    width: auto;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .absolute-image.review.third {
    width: 63px;
  }

  .absolute-image.review.second {
    width: 59px;
  }

  .absolute-image.about {
    width: 105px;
    bottom: 25.6px;
  }

  .bulled {
    display: none;
  }

  .main-button-3 {
    width: auto;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .card-blog.border {
    padding: 15px;
  }

  .card-blog.border.vertical-copy {
    padding: 20px;
  }

  .card-blog.slide-from-bottom-0-2 {
    padding: 1.2rem;
  }

  .main-image-2.border {
    border-style: none;
  }

  .absoluite-block {
    width: 137px;
    height: 55px;
    left: 82px;
    right: auto;
  }

  .heading-large {
    font-size: 1.6rem;
  }

  .heading-large.slide-from-bottom-0-2 {
    font-size: 2.7rem;
  }

  .dropdown-list-about.w--open {
    flex-direction: column;
    justify-content: center;
    padding-left: 59px;
    padding-right: 0;
    display: flex;
  }

  .services-dropdown {
    align-self: center;
  }

  .icon-dropdown.second.blue {
    margin-right: 0;
    font-size: 2.4rem;
  }

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

  .absolute {
    width: 30px;
  }

  .dropdown-toggle-about {
    white-space: normal;
    flex-direction: row;
    padding-left: 10px;
    padding-right: 10px;
  }

  .tabs-menu-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tabs-menu-2.services {
    text-align: center;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .tab-link-second {
    text-align: center;
  }

  .review-column {
    padding: 20px;
  }

  .overflow-hidden.review {
    width: 100%;
  }

  .review-block {
    padding: 19px;
  }

  .case-studies-grid {
    grid-column-gap: 9px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .color-block {
    border-radius: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .color-block.third.slide-from-bottom-0-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .color-block.second {
    border-radius: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .color-block.second.slide-from-bottom-0-2, .color-block.slide-from-bottom-0-3 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .text-size-normal.bold {
    font-size: 18px;
  }

  .text-size-normal.bold.case {
    font-size: 1.4rem;
  }

  .progres {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .progres.second {
    padding: 10px 10px 20px;
  }

  .heading-style-h2.margin-left {
    margin-left: 0;
  }

  .about-list {
    margin-top: 1rem;
  }

  .dropdown-about {
    align-self: center;
  }

  .name {
    margin-right: 40px;
    font-size: 18px;
  }

  .grid-2-columns-about {
    position: relative;
  }

  .order-wrap {
    flex: none;
  }

  .team-image.round.absolute {
    width: auto;
    height: 285px;
    display: block;
    top: auto;
    bottom: 0%;
    left: auto;
    right: auto;
    transform: none;
  }

  .circ {
    width: 254px;
    height: 284px;
  }

  .grid {
    grid-column-gap: 24px;
  }

  .image-backgroud-about {
    width: 113%;
    max-width: none;
    margin-left: -41px;
  }

  .rich-text-block.second {
    font-size: .8rem;
  }

  .slide-nav {
    height: auto;
    bottom: -19%;
    left: 0;
  }

  .column-2 {
    grid-row-gap: 0px;
    padding-bottom: 0;
  }

  .column-2.max-width {
    width: 100%;
  }

  .row-second {
    grid-column-gap: 5px;
    grid-row-gap: 2px;
    flex-flow: wrap;
  }

  .main-text-2 {
    flex: 0 auto;
  }

  .avatar-name {
    flex-direction: row;
    display: flex;
  }

  .avatar.absolute.about {
    width: 50px;
    height: 50px;
    display: block;
  }

  .slide-content {
    flex-direction: column;
    width: 100%;
  }

  .slide-from-bottom-0-1 {
    text-align: left;
  }

  .circle._2.rotate-scale-in-image.hide-mobile {
    display: none;
  }

  .circle._2.second {
    width: 89px;
    height: 89px;
    bottom: 64%;
  }

  .circle._2.second-copy {
    width: 120px;
    height: 120px;
  }

  .circle._2 {
    top: 16%;
    left: 5%;
  }

  .card-about {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-about.second {
    height: auto;
  }

  .max-width.hero.slide-from-bottom-0-2 {
    font-size: 2.4rem;
  }

  .sticky {
    height: auto;
    padding: 20px;
  }

  .heading-style-h1 {
    font-size: 2rem;
  }

  .rich-text-blog {
    font-size: 1rem;
  }

  .case-studies-text {
    text-align: center;
  }

  .image-97.third {
    width: 100px;
  }

  .image-97.third-copy {
    display: none;
  }

  .form-button {
    z-index: 99999;
  }

  .form-wrapper {
    z-index: 2147483647;
    width: 96%;
    height: 77vh;
    display: none;
    bottom: 17%;
    overflow: auto;
  }

  .html-embed-second {
    width: 20px;
    height: 20px;
  }

  .licensing-container {
    width: 100%;
    padding: 20px;
  }

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

  .changelog-container {
    padding: 25px;
  }
}

#w-node-db698f50-3ce8-63ff-2b77-60e2745dd2d6-c9314270, #w-node-db698f50-3ce8-63ff-2b77-60e2745dd2d9-c9314270, #w-node-_240a4c91-b4ac-3af4-a6da-ca016c9c3603-c9314270, #w-node-_9023f12f-980b-59ec-3702-d9047363458f-c9314270, #w-node-_23cdaf31-3984-76b3-fee3-162b3cf81f4f-c9314270, #w-node-_23cdaf31-3984-76b3-fee3-162b3cf81f64-c9314270, #w-node-_23cdaf31-3984-76b3-fee3-162b3cf81f6d-c9314270, #w-node-_23cdaf31-3984-76b3-fee3-162b3cf81f6e-c9314270, #w-node-_23cdaf31-3984-76b3-fee3-162b3cf81f75-c9314270, #w-node-_23cdaf31-3984-76b3-fee3-162b3cf81f76-c9314270, #w-node-_23cdaf31-3984-76b3-fee3-162b3cf81f7d-c9314270, #w-node-_23cdaf31-3984-76b3-fee3-162b3cf81f7e-c9314270, #w-node-_23cdaf31-3984-76b3-fee3-162b3cf81f85-c9314270, #w-node-_23cdaf31-3984-76b3-fee3-162b3cf81f86-c9314270, #w-node-_23cdaf31-3984-76b3-fee3-162b3cf81f8b-c9314270, #w-node-_1df643fa-77b8-bff8-6492-0b7e6f651671-c9314270, #w-node-_80ab7c4e-0b5a-9e57-0c01-63f683787984-c9314270 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c2652eab-169d-291a-e640-89af9579f00e-c9314270 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-e851e3f2-b0a9-e51b-f41f-765e3848a09b-48192442, #w-node-_6f933879-f08a-e02e-cc4d-531448192453-48192442, #w-node-_6f933879-f08a-e02e-cc4d-53144819245e-48192442, #w-node-_5fc58158-aa4a-ef03-b9ad-8671da23a5a3-da23a5a3, #w-node-_4f1fe145-a2b2-720e-212c-60c75035b17e-5035b17e, #w-node-dedd9fde-2377-791a-03c2-0a38128f0074-128f0074, #w-node-aa99263a-661d-e34b-e71a-b778d46b787b-c93142db, #w-node-_46e9f632-e054-7a4c-bd48-166b51337989-c93142db, #w-node-_58013b5e-b097-e652-858f-aac947770256-c93142db, #w-node-_883a480e-7c96-aa86-be85-6467b507bb67-c93142db, #w-node-_2a02008b-0688-8eec-e62a-56a7364d617c-c93142db, #w-node-_77bd088e-c21f-cae7-54a0-60478752cd99-c93142db, #w-node-_2eaf8fda-aae2-e4d6-fa80-fc46bb5bb21a-c93142db, #w-node-_2eaf8fda-aae2-e4d6-fa80-fc46bb5bb21c-c93142db, #w-node-cab161cb-44dc-29ab-a4f0-25a154429aed-c93142db, #w-node-cab161cb-44dc-29ab-a4f0-25a154429aef-c93142db, #w-node-c1a70bbf-30e8-2fb2-23fe-c0d1af48bb35-c93142db, #w-node-c1a70bbf-30e8-2fb2-23fe-c0d1af48bb37-c93142db, #w-node-_648f320d-f13b-2d01-1bbc-b815e223d3c2-e223d3c1, #w-node-_0a4b7aa0-d01d-a566-2c54-e7a62e54e23e-e223d3c1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_648f320d-f13b-2d01-1bbc-b815e223d3cc-e223d3c1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-e890a133-ce07-0cb9-3fad-eb5baf373515-c93142dd {
  align-self: stretch;
}

#w-node-f1da2c59-f61b-465c-b962-8b04ec42c6ca-c93142de, #w-node-f1da2c59-f61b-465c-b962-8b04ec42c6d1-c93142de, #w-node-f1da2c59-f61b-465c-b962-8b04ec42c6d6-c93142de {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fc833670-54ae-fcdf-4707-310e7d700b33-c93142de:hover {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_4ef0d702-ad0b-e895-549e-8f2ef0612588-f0612587 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
  justify-self: end;
}

#w-node-_4ef0d702-ad0b-e895-549e-8f2ef0612590-f0612587, #w-node-_3940f592-3403-8e96-4fcf-898d62b809b8-c93142e0, #w-node-_5efafb77-0ada-9226-9f56-0f86ff3daf53-c93142e0, #w-node-bf70381e-518f-f6ce-f562-e8d9b42bf064-c93142e0, #w-node-_9ef3a7e3-ee75-4175-8b32-f88444865d04-c93142e0, #w-node-_721f310c-fbe8-f65f-ba18-bce005ef9a77-c93142e0, #w-node-_2e1d4d1b-ca0a-0731-fb60-4046b007516c-b007516c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#field.w-node-_44f5ec41-a064-588f-8b69-c63182f8c191-c93142e1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-eb97f7a7-35da-df53-9e4e-8977d193b4a7-c93142e2, #w-node-_90dbf9c6-c15c-977f-e870-a051e2278b85-c93142e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4b090cf2-7923-e706-1efc-d851181c11b7-c93142e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_95ab0493-0d06-3b3a-92d0-393cccfc3c6f-c93142e3 {
  align-self: stretch;
}

#w-node-_3dc38daa-3792-f783-7099-e34fd9e3e116-c93142e6, #w-node-_498b6fee-a3f6-6aeb-4229-f24c949bb6a3-c93142e6, #w-node-_498b6fee-a3f6-6aeb-4229-f24c949bb6a4-c93142e6, #w-node-_498b6fee-a3f6-6aeb-4229-f24c949bb6a5-c93142e6, #w-node-a9ae73b4-1dfc-be4d-1a14-57bca9e291fd-c93142e9, #w-node-fe114367-e755-a9cd-9889-d2e0c17177b1-c93142e9, #w-node-faf2ee34-ba66-401b-ac6c-a6cbf625e4a8-c93142e9, #w-node-b921da85-daaf-1d71-28c7-78edb8b030f7-c93142e9, #w-node-_5df127cf-fedf-5282-ace8-2d0930236337-c93142e9, #w-node-_5410c986-4fd8-a8a3-5575-e9ff2c95795f-c93142e9, #w-node-d32b3b2d-df81-8f76-ea42-558924d6cea1-c93142e9, #w-node-dac1e14d-3c73-9686-fbf5-df73184c4dc1-c93142e9, #w-node-_9523ea6c-6b01-ccc8-0d1e-d8527423c78b-c93142e9, #w-node-a9dffd90-05f2-3055-a330-a8e55fdda119-c93142e9, #w-node-f832303f-266a-4c14-d9e4-57169bfd5b75-c93142e9, #w-node-_97acf787-7526-37b7-ac8d-4b629481cbfe-c93142e9, #w-node-_60beb2c6-e020-a49c-1f67-db5e9f8437f3-c93142e9, #w-node-_5c726c56-7bcb-462d-370b-9f054bd95fa7-c93142e9, #w-node-fc78c827-cc9c-952c-b95a-2c90cedadf11-c93142e9, #w-node-_94501c61-e5d1-16a8-84ff-9b4fbbbd04d1-c93142e9, #w-node-_155e1535-a895-8d09-1419-b466630e6828-c93142e9, #w-node-_632c753c-6018-aa17-d085-b9ee7a7b2e45-c93142e9, #w-node-b5c7ef12-a826-6b08-dd15-da67372a9c8c-c93142e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-db698f50-3ce8-63ff-2b77-60e2745dd2d6-c9314270, #w-node-_240a4c91-b4ac-3af4-a6da-ca016c9c3603-c9314270 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-db698f50-3ce8-63ff-2b77-60e2745dd2d6-c9314270, #w-node-_240a4c91-b4ac-3af4-a6da-ca016c9c3603-c9314270 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_459d9c63-966e-a506-87fb-8752a1b0ea5a-c9314270 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #field.w-node-_44f5ec41-a064-588f-8b69-c63182f8c191-c93142e1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-db698f50-3ce8-63ff-2b77-60e2745dd2d6-c9314270, #field.w-node-_44f5ec41-a064-588f-8b69-c63182f8c191-c93142e1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


