:root {
  --dark-slate-grey: #243136;
  --lifestyle: #90ffb1;
  --goldenrod: #fcbd0e;
  --liliac: #7272e0;
  --liliac-light: #e8eaf6;
  --yellow-light: #fffde6;
  --dark-blu: #1a1d31;
  --liliac-medium: #ccf;
  --slate-blue: #4e51e9;
  --culture-neon: #ff286c;
  --ciano: #7ad3ff;
  --lifestyle-yellow: #ffff05;
  --web3: #9cbad8;
  --culture: #ffbbba;
  --burlywood: #fac670;
  --black: #1d1d1d;
  --untitled-ui-gray700: #183035;
  --untitled-ui-white: white;
  --cornflower-blue: #7aa7ff;
  --alice-blue: #e7ecf0;
  --white-smoke: #f5f6f7;
  --light-steel-blue: #7678dd;
  --untitled-ui-primary600: #7f56d9;
  --untitled-ui-primary700: #6941c6;
  --untitled-ui-primary100: #f4ebff;
  --untitled-ui-gray300: #d0d5dd;
  --untitled-ui-gray50: #f9fafb;
  --untitled-ui-gray800: #1d2939;
  --untitled-ui-gray100: #f2f4f7;
  --untitled-ui-gray600: #475467;
  --untitled-ui-gray900: #101828;
  --untitled-ui-primary50: #f9f5ff;
  --untitled-ui-gray500: #667085;
  --untitled-ui-primary300: #d6bbfb;
  --untitled-ui-gray200: #eaecf0;
  --untitled-ui-gray400: #98a2b3;
  --untitled-ui-primary800: #53389e;
  --medium-spring-green: #00cd47;
  --culture-pink: #ff00d6;
  --light-grey: #cbd5df;
  --untitled-ui-primary500: #9e77ed;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

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

body {
  background-color: var(--dark-slate-grey);
  color: #333;
  flex-direction: column;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  display: flex;
  left: auto;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  color: var(--lifestyle);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Alliance no, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

a {
  color: var(--goldenrod);
  text-decoration: underline;
}

a:hover {
  color: var(--liliac);
}

.logo {
  width: 90%;
  height: auto;
  flex: 1;
  margin-right: 5px;
}

.logo.big {
  width: 60%;
  height: auto;
  max-height: 50%;
  max-width: 40%;
  display: block;
  position: static;
  bottom: -100px;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: center;
  align-items: stretch;
  padding: 12px 24px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav-menu {
  flex-direction: row;
  display: flex;
}

.nav-menu-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
}

.nav-link {
  color: rgba(255, 255, 255, .5);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 12px 24px;
  font-weight: 500;
  display: flex;
}

.nav-link:hover {
  color: var(--goldenrod);
}

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

.nav-link.focus {
  background-color: var(--goldenrod);
  color: var(--dark-slate-grey);
  border-radius: 8px;
}

.nav-logo {
  width: 200px;
  color: #f5f5f5;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.nav-logo:hover {
  color: #f5f5f5;
}

.nav-spacer {
  height: 0;
  flex: 1;
}

.hero-container {
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.container {
  width: 100%;
  max-width: 950px;
  padding: 24px;
  position: relative;
}

.container.center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-bottom: 0;
  display: flex;
}

.container.center.ecosystem {
  max-width: 900px;
  justify-content: flex-start;
  padding-top: 0;
  padding-bottom: 100px;
}

.container.center.hide {
  display: none;
}

.container.center.cta-advisory {
  grid-row-gap: 40px;
}

.container.left {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container.right {
  flex-direction: column;
  align-items: flex-end;
  padding-top: 0;
  display: flex;
}

.container.right.copyright {
  padding-top: 40px;
  padding-bottom: 0;
}

.hero-title {
  color: #f2f2f2;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 80px;
}

.text-span {
  color: var(--goldenrod);
  font-family: Caveat, sans-serif;
  font-size: 90px;
}

.hero-paragraph {
  color: rgba(152, 162, 179, .75);
  margin-bottom: 32px;
  font-family: Alliance no, sans-serif;
  font-size: 18px;
  line-height: 1.25em;
}

.hero-link {
  width: 50px;
}

.nav-link-icon {
  width: 100%;
  height: 100%;
  text-align: left;
  display: block;
}

.nav-link-icon.invert {
  filter: invert();
}

.nav-link-social {
  width: 20px;
  height: 50px;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  position: relative;
}

.section.fade {
  background-image: linear-gradient(to bottom, transparent, var(--dark-slate-grey) 25%);
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.fade.update {
  background-image: none;
  padding-top: 0;
  padding-bottom: 60px;
}

.section.fade.update.grain {
  padding-top: 60px;
  padding-bottom: 40px;
}

.section.fade.update.grain.team {
  padding-top: 80px;
  padding-bottom: 0;
}

.section.fade.update.grain.chat {
  padding-bottom: 0;
}

.section.fade.update.grain.boh {
  padding-top: 0;
}

.section.cover {
  background-color: var(--dark-slate-grey);
}

.section.cover.map {
  background-image: url('../images/feedelmap-01.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.section.cover.yellow {
  background-color: var(--goldenrod);
  color: var(--dark-slate-grey);
  overflow: hidden;
}

.section.cover.yellow.cosmic {
  background-color: rgba(0, 0, 0, 0);
}

.section.cover.yellow.cosmic.old {
  display: none;
}

.section.footer {
  background-color: var(--dark-slate-grey);
  padding-top: 30px;
  padding-bottom: 30px;
}

.card-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.card-grid.hide {
  display: none;
}

.card {
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  display: flex;
}

.card-image {
  height: 50px;
  object-fit: contain;
  margin-bottom: 24px;
}

.card-image.version-2 {
  height: 190px;
  margin-bottom: -70px;
}

.card-text {
  color: rgba(255, 255, 255, .5);
  margin-bottom: 0;
  font-size: 24px;
}

.card-text.version-2 {
  color: var(--liliac-light);
}

.card-text.version-2.expertise {
  font-family: DM Sans, sans-serif;
}

.card-text.version-2.expertise.hide {
  display: none;
}

.card-text.paragraph-version-2 {
  font-size: 18px;
  line-height: 1.3;
}

.card-text-white {
  color: #fff;
}

.heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 48px;
}

.heading.nomargin {
  text-align: left;
  margin-bottom: 0;
}

.heading.nomargin.blue {
  color: var(--dark-slate-grey);
}

.heading.nomargin.new {
  color: var(--yellow-light);
  text-shadow: 0 0 6px var(--goldenrod);
  background-color: rgba(0, 0, 0, 0);
  font-family: Space Mono, sans-serif;
}

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

.heading.neon {
  color: var(--liliac-light);
  text-transform: none;
  text-shadow: 0 0 8px rgba(252, 189, 14, .64);
  margin-bottom: 24px;
  font-family: Space Mono, sans-serif;
  font-size: 56px;
}

.heading.neon.team {
  margin-bottom: 60px;
}

.heading.neon.hide {
  display: none;
}

.heading.neon.gradient-span {
  background-image: linear-gradient(140deg, var(--goldenrod) 15%, rgba(255, 253, 230, .68) 59%, var(--liliac) 100%, var(--liliac-light));
  color: var(--yellow-light);
  text-shadow: none;
  margin-bottom: 24px;
  font-family: Space Mono, sans-serif;
  font-weight: 700;
}

.heading.neon.small {
  font-size: 32px;
}

.heading.neon.small.dark {
  color: var(--dark-blu);
  text-shadow: 0 0 8px rgba(114, 114, 224, .46);
}

.heading.neon.small.dark.left {
  text-align: right;
}

.heading.neon.small.dark.center {
  font-size: 5vh;
}

.heading.neon.dark {
  color: var(--dark-blu);
  text-shadow: 0 0 8px var(--liliac-medium);
}

.heading.neon.dark.centered {
  text-align: center;
}

.grid-container {
  width: 100%;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.paragraph {
  color: rgba(255, 255, 255, .5);
  text-align: left;
  margin-bottom: 0;
  font-size: 24px;
}

.paragraph.blue {
  color: rgba(36, 49, 54, .75);
}

.portfolio-link {
  min-height: 180px;
  background-color: var(--goldenrod);
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: end;
  justify-content: flex-end;
  align-items: stretch;
  padding: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.heading-2 {
  color: var(--dark-blu);
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Alliance no, sans-serif;
  font-size: 48px;
}

.heading-2.new {
  color: rgba(232, 234, 246, .49);
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  align-self: flex-start;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
}

.paragraph-2 {
  color: rgba(255, 255, 255, .5);
  margin-bottom: 24px;
  font-family: Space Mono, sans-serif;
  font-size: 18px;
  line-height: 1.1;
}

.paragraph-2.hide {
  display: none;
}

.paragraph-2.question {
  color: var(--liliac-light);
  font-family: DM Sans, sans-serif;
  font-weight: 500;
}

.paragraph-2.question.title {
  font-family: Space Mono, sans-serif;
  font-size: 22px;
}

.counter-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}

.counter-circle {
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, .05);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.counter-description {
  color: var(--liliac-light);
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  line-height: 1;
}

.counter-description.tech {
  color: #74acff;
  text-transform: none;
  font-family: DM Sans, sans-serif;
  line-height: 1.2;
}

.counter-description.design {
  color: var(--liliac-medium);
  text-transform: none;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.counter-description.business {
  color: #d8ba66;
  text-transform: none;
  font-family: DM Sans, sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

.counter-title {
  color: var(--goldenrod);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 700;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button {
  height: 48px;
  background-color: var(--goldenrod);
  color: #333;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.checkbox-label {
  color: #f5f5f5;
  font-size: 13px;
  font-weight: 400;
}

.feedback {
  background-color: rgba(0, 0, 0, 0);
  padding: 16px;
}

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

.checkbox {
  margin-top: 0;
  margin-right: 8px;
}

.text-field {
  height: 48px;
  color: var(--goldenrod);
  background-color: rgba(255, 255, 255, .05);
  border: 1px #000;
  border-radius: 5px;
  margin-bottom: 0;
  font-size: 16px;
}

.text-field:focus {
  background-color: rgba(255, 255, 255, .15);
}

.text-field.footer {
  margin-bottom: 10px;
}

.checkbox-field {
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.field-label {
  color: rgba(255, 255, 255, .5);
  font-size: 16px;
  font-weight: 500;
}

.heading-span {
  color: var(--goldenrod);
}

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

.footer-container {
  width: 100%;
  max-width: 1200px;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  display: grid;
}

.footer-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: flex-start;
  align-items: flex-start;
  display: grid;
}

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

.corporate-logo {
  color: var(--goldenrod);
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
}

.copyright-text {
  color: rgba(255, 255, 255, .7);
}

.corporate-text {
  color: var(--goldenrod);
}

.div-block {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  display: grid;
}

.image-3 {
  height: 100px;
}

.image-3.hide {
  display: none;
}

.video {
  opacity: .4;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cover-wrapper {
  background-image: linear-gradient(to bottom, rgba(36, 49, 54, .95), rgba(36, 49, 54, .95)), linear-gradient(to bottom, var(--dark-slate-grey), transparent), url('../images/feedel-bg.png');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  position: relative;
}

.heading-3 {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
}

.heading-3.new {
  max-width: none;
  color: var(--liliac-light);
  background-color: rgba(0, 0, 0, 0);
  margin-top: 5px;
  margin-bottom: 24px;
  font-family: Alliance no, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3em;
}

.heading-3.new.neon {
  color: var(--yellow-light);
  text-shadow: 0 0 6px var(--goldenrod);
  margin-top: 100px;
  font-family: Space Mono, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.heading-3.new.neon.version-3 {
  color: var(--liliac-light);
  text-shadow: 0 0 1.1em rgba(156, 186, 216, .65);
  font-family: Neon, sans-serif;
  font-size: 48px;
}

.heading-3.new.neon.version-3.hide {
  display: none;
}

.heading-3.new.neon.version-3.gradient-span {
  max-width: none;
  background-image: linear-gradient(135deg, var(--goldenrod), var(--yellow-light) 46%, var(--liliac) 86%, white);
  text-shadow: none;
  font-size: 36px;
  line-height: 1.3em;
}

.heading-3.new.neon.hide {
  display: none;
}

.heading-3.new.no-space {
  font-family: Space Mono, sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.heading-3.new.no-space.big {
  margin-top: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.heading-3.new.no-space.big.same-line {
  display: flex;
}

.heading-3.new.small {
  font-size: 18px;
}

.heading-3.new.gradient-span {
  background-image: linear-gradient(135deg, var(--goldenrod), var(--yellow-light) 46%, var(--liliac) 86%, white);
}

.heading-3.new.hero {
  color: var(--yellow-light);
  margin-top: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.heading-3.new.hero.hide {
  display: none;
}

.heading-3.new.dark {
  color: var(--dark-blu);
}

.heading-3.cta {
  margin-bottom: 10px;
  font-size: 24px;
}

.type {
  color: var(--goldenrod);
  padding-left: 8px;
  padding-right: 8px;
  font-family: Caveat, sans-serif;
  font-size: 42px;
}

.link {
  color: var(--goldenrod);
  align-self: flex-end;
  margin-top: 48px;
  margin-right: 48px;
}

.footer-link {
  color: #fff;
}

.text-block {
  color: rgba(255, 255, 255, .5);
  margin-top: 12px;
}

.text-block.new {
  color: rgba(255, 253, 230, .43);
  background-color: rgba(0, 0, 0, 0);
  font-size: 12px;
}

.text-span-2 {
  color: var(--goldenrod);
}

.form-2 {
  flex-direction: column;
  display: flex;
}

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

.text-span-3 {
  color: #fff;
  margin-left: 8px;
  margin-right: 8px;
  display: inline-block;
}

.success-message {
  background-color: rgba(0, 0, 0, 0);
}

.text-block-2 {
  font-size: 40px;
}

.error-message {
  border-radius: 5px;
}

.grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 10px;
  grid-template-rows: auto;
  grid-auto-flow: column;
  align-self: stretch;
  padding-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
}

.grid.version-2 {
  grid-column-gap: 32px;
  border-style: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
}

.grid.ecosystem {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  opacity: 1;
  border-style: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 10px;
  display: flex;
}

.div-block-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: rgba(255, 255, 255, .7);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  margin-top: -32px;
  line-height: 1;
  display: grid;
}

.div-block-2.hide {
  display: none;
}

.div-block-2.intergiew {
  grid-template-rows: auto;
  margin-top: -80px;
}

.image-4 {
  height: 140px;
  object-fit: cover;
  border: 2px dashed rgba(255, 255, 255, .3);
  border-radius: 50%;
  padding: 5px;
}

.image-4.ring {
  border: 0px none var(--goldenrod);
  mix-blend-mode: normal;
  background-image: radial-gradient(circle, rgba(252, 189, 14, .56) 30%, rgba(0, 0, 0, 0) 31%, rgba(255, 253, 230, .04));
}

.image-4.ring.squared {
  width: 140px;
}

.image-4.ring.ecosystem {
  width: 120px;
  height: auto;
  min-width: 120px;
  object-fit: scale-down;
  background-image: none;
  border-style: none;
  border-radius: 0%;
  margin-top: 0;
  padding-top: 0;
}

.image-4.ring.ecosystem:hover {
  filter: hue-rotate(135deg);
}

.image-4.no-ring {
  border-style: none;
  padding: 0;
}

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

.paragraph-3.new {
  color: var(--liliac-medium);
  text-transform: capitalize;
  background-color: rgba(0, 0, 0, 0);
  font-family: Space Mono, sans-serif;
  font-size: 16px;
  display: none;
}

.paragraph-3.new.ecosystem {
  opacity: 1;
  color: var(--liliac-light);
  text-align: left;
  text-transform: none;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  display: block;
}

.paragraph-3.new.ecosystem:hover {
  opacity: .85;
}

.paragraph-3.new.hide {
  display: none;
}

.paragraph-3.interview {
  color: rgba(255, 255, 255, .73);
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.paragraph-3.interview.left {
  text-align: left;
}

.heading-4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
}

.heading-4.new {
  color: var(--liliac-light);
  text-align: center;
  text-shadow: 0 0 6px var(--slate-blue);
  background-color: rgba(0, 0, 0, 0);
  margin-top: 22px;
  font-family: Alliance no, sans-serif;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.heading-4.new.title {
  font-size: 18px;
}

.heading-4.new.ecossytem {
  color: var(--yellow-light);
  text-shadow: none;
  margin-bottom: 10px;
  font-family: Space Mono, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.heading-4.new.ecossytem.hide {
  display: none;
}

.image-5 {
  width: auto;
  height: 30px;
  max-height: 40px;
  padding-top: 5px;
}

.image-5.hide {
  display: none;
}

.image-5.ecoosystem {
  opacity: 0;
}

.image-5.edit {
  max-height: 20px;
  filter: brightness(200%);
}

.heading-5 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 64px;
  font-size: 48px;
}

.spacer {
  margin-top: 32px;
  margin-bottom: 32px;
}

.div-block-3 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-3.hide, .hidden-field {
  display: none;
}

.recaptcha {
  margin-bottom: 0;
}

.num-wrapper {
  display: flex;
}

.slider-content {
  width: 500px;
  background-color: var(--dark-slate-grey);
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.image-6 {
  height: 40px;
}

.text-block-3 {
  color: #fff;
  font-size: 20px;
}

.image-7 {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.div-block-5 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 2rem;
  display: grid;
}

.link-2 {
  color: var(--goldenrod);
  font-size: 16px;
}

.link-2.stealthmode {
  text-decoration: none;
}

.slide-nav {
  display: none;
}

.slider {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 2rem;
}

.arrow {
  width: 50px;
  height: 50px;
  color: var(--dark-slate-grey);
  background-color: #fff;
  border-radius: 50%;
  margin-left: 16px;
  margin-right: 16px;
  font-size: 1rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, .2);
}

.slide {
  height: auto;
  margin-right: 24px;
}

.mask {
  height: auto;
  overflow: visible;
}

.collection-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.swiper-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.swiper-slide {
  width: 30%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 4px solid var(--goldenrod);
  background-color: var(--dark-slate-grey);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  padding: 2rem;
  transition: all .3s;
  display: grid;
  position: relative;
  overflow: hidden;
}

.swiper-slide.update {
  border-width: 2px;
  border-color: var(--yellow-light);
  background-color: var(--dark-blu);
  color: var(--yellow-light);
}

.icon-show-slider-nav {
  width: 28px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.swiper-container {
  z-index: 1;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  transform: perspective(1200px);
}

.control-btn {
  z-index: 80;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, .1);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: all .3s;
  display: flex;
  position: relative;
}

.control-btn:hover {
  color: #051328;
  background-color: rgba(0, 255, 225, .5);
}

.swiper-nav-btn {
  z-index: 40;
  width: 60px;
  height: 60px;
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-radius: 100%;
  align-items: center;
  padding: 20px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 60%;
  left: 20%;
  transform: rotate(-20deg);
}

.swiper-nav-btn:hover {
  color: var(--goldenrod);
}

.swiper-nav-btn.next {
  left: auto;
  right: 20%;
  transform: rotate(20deg);
}

.swiper-navigation {
  z-index: 40;
  justify-content: center;
  align-items: center;
}

.swiper-nav-btn-icon {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.wheel-slider {
  width: 100%;
  flex-direction: column;
  margin-top: 2.5rem;
  display: flex;
  position: relative;
}

.wheel-slider.new {
  margin-top: 2rem;
}

.paragraph-4 {
  margin-bottom: 0;
  font-size: 20px;
}

.link-3 {
  color: var(--goldenrod);
  font-size: 16px;
}

.link-3.stealth {
  cursor: not-allowed;
  text-decoration: none;
}

.image-8 {
  height: 60px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-4-copy {
  color: rgba(255, 255, 255, .5);
  margin-bottom: 0;
  font-size: 16px;
}

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

.big-txt-bl {
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  display: flex;
  position: relative;
}

.big-txt {
  z-index: 1;
  color: #ffbe00;
  letter-spacing: .01em;
  text-shadow: 0 0 15px #ffbe00;
  background-image: url('../images/txt-vect-des.svg');
  background-position: 78% 58%;
  background-repeat: no-repeat;
  background-size: 420px;
  font-size: 80px;
  line-height: 88px;
}

.big-txt.ligh {
  color: #fffde6;
  text-shadow: 0 0 15px #ffbe00;
  font-size: 80px;
  line-height: 88px;
}

.neon-shadow {
  position: absolute;
  bottom: -65%;
  right: -40%;
}

.big-txt-bl-startup-studio {
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  display: flex;
  position: relative;
}

.anim-big-txt {
  color: #ffdb71;
  letter-spacing: 0;
  text-shadow: 0 0 15px #ffbe00;
  font-size: 80px;
  line-height: 88px;
}

.container-new {
  width: 100%;
  max-width: 950px;
  padding: 24px;
  position: relative;
}

.container-new.center {
  height: 100vh;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.container-new.left {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-new.right {
  flex-direction: column;
  align-items: flex-end;
  padding-top: 0;
  display: flex;
}

.main-sec {
  height: 100vh;
  background-color: #151a1e;
  background-image: url('../images/elipse-main.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.big-txt-2 {
  z-index: 1;
  color: #ffbe00;
  letter-spacing: .01em;
  background-image: url('../images/txt-vect-des.svg');
  background-position: 78% 58%;
  background-repeat: no-repeat;
  background-size: 420px;
  font-family: Beon medium, sans-serif;
  font-size: 70px;
  line-height: 88px;
}

.big-txt-2.ligh {
  color: #fffde6;
  letter-spacing: .03em;
  text-shadow: 0 0 15px #ffbe00;
  white-space: normal;
  font-family: Beon medium, sans-serif;
  font-size: 70px;
  line-height: 78px;
}

.big-txt-2.ligh.small {
  letter-spacing: 0;
  font-size: 62px;
  line-height: 68px;
}

.anim-big-txt-2 {
  color: #ffdb71;
  letter-spacing: 0;
  text-indent: 0;
  text-shadow: 0 0 15px #ffbe00;
  font-size: 70px;
  font-weight: 500;
  line-height: 78px;
}

.type-2 {
  color: var(--liliac-light);
  text-shadow: 0 0 8px #fcbd0e;
  padding-left: 8px;
  padding-right: 8px;
  font-family: DM Sans, sans-serif;
}

.type-2.hide {
  display: none;
}

.timeline_progress-bar {
  z-index: -1;
  width: 3px;
  height: 50vh;
  background-color: #fff;
  background-image: linear-gradient(#1a1d31, #fcbd0e 51%, #6248ff);
  display: none;
  position: fixed;
  top: 0;
  bottom: 50vh;
  left: auto;
  right: auto;
}

.timeline_centre {
  justify-content: center;
  display: flex;
}

.overlay-fade-bottom {
  height: 30px;
  background-image: linear-gradient(to top, #1a1d31, rgba(10, 10, 10, 0));
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.overlay-fade-bottom.hide {
  display: none;
}

.section-timeline-cta {
  background-color: #0a0a0a;
  background-image: linear-gradient(63deg, var(--dark-blu), var(--dark-blu) 66%, rgba(114, 231, 167, .69));
}

.margin-bottom-xlarge {
  margin-bottom: 56px;
  display: none;
}

.margin-bottom-xlarge.hide {
  display: none;
}

.timeline_image-wrapper {
  background-image: linear-gradient(138deg, #000, rgba(0, 0, 0, 0) 28%), url('../images/Image-Background.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border-radius: 12px;
  display: none;
  overflow: hidden;
}

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

.container-2 {
  width: 90vw;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.timeline_left {
  text-align: right;
  justify-content: flex-end;
  align-items: stretch;
}

.text-colour-lightgrey {
  color: rgba(255, 255, 255, .65);
}

.text-colour-lightgrey.hide {
  display: none;
}

.timeline_circle {
  width: 15px;
  height: 15px;
  max-height: 15px;
  max-width: 15px;
  min-height: 15px;
  min-width: 15px;
  border: 1px solid var(--yellow-light);
  background-color: #1a1d31;
  border-radius: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  box-shadow: 0 0 0 3px rgba(26, 29, 49, .42);
}

.timeline_circle.mobile-hide {
  top: 0;
}

.link-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.timeline_quote-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.timeline_quote-title.hide {
  display: none;
}

.margin-bottom-medium {
  margin-bottom: 0;
}

.margin-bottom-medium.slim {
  margin-bottom: 10px;
}

.timeline_item {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 180px 1fr;
  grid-auto-columns: 1fr;
  padding-top: 15px;
  padding-bottom: 15px;
  display: grid;
  position: relative;
}

.timeline_item.last {
  padding-bottom: 30px;
}

.timeline-main_heading-wrapper {
  max-width: 640px;
  color: var(--liliac-light);
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.timeline_quote-wrapper {
  border: 2px solid var(--liliac-light);
  opacity: 1;
  border-radius: 16px;
  align-items: flex-start;
  padding: 24px;
  display: none;
}

.timeline_quote-wrapper.hide {
  display: none;
}

.timeline_quote {
  color: var(--liliac-light);
  margin-bottom: 16px;
  font-size: 14px;
}

.button-inverted {
  color: #161616;
  letter-spacing: .05em;
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: 700;
  line-height: 20px;
  transition: all .4s;
}

.button-inverted:hover {
  transform: translate(0, -4px);
}

.padding-vertical-xlarge {
  padding-top: 120px;
  padding-bottom: 120px;
}

.timeline_text {
  color: rgba(232, 234, 246, .73);
  text-transform: none;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.timeline_text.dark {
  color: #fff;
}

.timeline_text.dark.cta {
  font-size: 22px;
}

.timeline_text.dark.footer {
  color: var(--yellow-light);
  background-color: rgba(0, 0, 0, 0);
  font-family: Space Mono, sans-serif;
}

.timeline_text.timeline {
  color: var(--yellow-light);
  font-family: Space Mono, sans-serif;
}

.margin-bottom-small {
  margin-bottom: 24px;
}

.margin-bottom-large {
  margin-bottom: 40px;
}

.timeline_progress {
  z-index: -2;
  width: 3px;
  height: 100%;
  background-color: #414141;
  position: absolute;
}

.timeline_progress.active {
  background-image: linear-gradient(#1a1d31, rgba(252, 189, 14, .33) 58%, #a2a2f0 83%, rgba(26, 29, 49, .74));
}

.timeline_quote-text-wrapper {
  flex: 1;
}

.timeline_component {
  max-width: 1120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.overlay-fade-top {
  height: 80px;
  background-image: linear-gradient(#0a0a0a, rgba(10, 10, 10, 0));
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.timeline_link {
  opacity: .6;
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.timeline_link:hover {
  opacity: 1;
}

.timeline_date-text {
  color: #fff;
  text-align: right;
  letter-spacing: -.03em;
  text-transform: none;
  text-shadow: 0 0 6px var(--goldenrod);
  font-family: Space Mono, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  position: -webkit-sticky;
  position: sticky;
  top: auto;
}

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

.timeline_date-text.center.other.hide {
  text-align: center;
}

.timeline_date-text.hide {
  display: none;
}

.page-wrapper {
  z-index: 0;
  position: relative;
}

.paragraph-large {
  letter-spacing: -.02em;
  font-size: 20px;
}

.section-timeline {
  z-index: -3;
  position: relative;
}

.timeline_quote-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-right: 24px;
}

.fixed-cta-container {
  z-index: 1000;
  width: 90%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: fixed;
  top: 24px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.fixed-cta {
  z-index: 500;
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  background-color: #0a0a0a;
  border: 2px solid #000;
  border-radius: 8px;
  align-items: center;
  padding: 12px 20px 12px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s;
  display: flex;
  position: fixed;
  top: 24px;
  right: 5vw;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

.fixed-cta:hover {
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}

.fixed-cta.migration {
  background-image: linear-gradient(129deg, #fcbd0e, #fffde6 58%, #a2a2f0);
  border-width: 1px;
  border-color: #fffde6;
  border-radius: 20px;
  padding-left: 24px;
  padding-right: 24px;
  display: none;
  top: 10px;
}

.text-block-5 {
  color: #1a1d31;
  font-weight: 700;
}

.text-block-5.new {
  background-color: rgba(0, 0, 0, 0);
  font-family: Space Mono, sans-serif;
}

.page-wrapper-2 {
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  transform: translate(0);
}

.page-wrapper-2.hero {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.relume-logo-secondary {
  z-index: 1;
  color: #fff;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.feature-item-use-case {
  min-height: 350px;
  background-color: #1e2029;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: -48px;
  padding: 42px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feature-item-use-case.left-item {
  background-image: url('../images/Gradient-Blur-001.jpg');
  background-position: 40% 20%;
  background-size: auto;
  border-radius: 12px;
}

.feature-item-use-case.left-item.culture {
  border: 2px solid var(--dark-blu);
  box-shadow: 0 0 6px 0 var(--culture-neon);
}

.feature-item-use-case.left-item.culture:hover {
  border-color: var(--culture-neon);
}

.feature-item-use-case.left-item.other {
  min-height: 100%;
  border: 1px solid var(--goldenrod);
  background-image: linear-gradient(270deg, var(--dark-blu), rgba(252, 189, 14, .12));
  margin-bottom: 20px;
}

.feature-item-use-case.middle-item {
  background-image: url('../images/ths12_bg_mesh_gradient_1.jpg');
  background-position: 0 100%;
  background-repeat: repeat;
  background-size: 200%;
  border-radius: 12px;
  margin-top: -48px;
  margin-bottom: 0;
}

.feature-item-use-case.middle-item.wellbeing {
  border: 2px solid var(--lifestyle);
  background-color: var(--dark-slate-grey);
  background-image: linear-gradient(45deg, rgba(0, 205, 71, .02), var(--lifestyle));
  box-shadow: 0 0 6px 0 var(--lifestyle);
}

.feature-item-use-case.middle-item.wellbeing:hover {
  border-style: solid;
  border-color: var(--lifestyle);
}

.feature-item-use-case.right-item {
  background-image: url('../images/GradientSquare.jpg');
  background-position: 100% 99%;
  background-size: auto 300%;
  border-radius: 12px;
}

.feature-item-use-case.right-item.web-3 {
  border: 2px solid var(--dark-blu);
  box-shadow: 0 0 6px 0 var(--ciano);
}

.feature-item-use-case.right-item.web-3:hover {
  border-color: var(--ciano);
}

.num-wrapper-2 {
  color: #fffde6;
  display: flex;
}

._4-col-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.home {
  width: 124px;
  height: 64px;
  position: relative;
}

.home.w--current {
  height: 64px;
}

.circle-blur-middle-left {
  z-index: -1;
  width: 440px;
  height: 440px;
  filter: blur(100px);
  background-image: linear-gradient(59deg, #ff7448 27%, #ff4848 50%, #6248ff 75%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 30%;
  bottom: auto;
  left: 5%;
  right: auto;
}

.circle-blur-middle-left.safari {
  background-image: linear-gradient(59deg, #ff7448 27%, var(--lifestyle) 50%, var(--dark-blu) 75%);
  opacity: .97;
  filter: blur(64px) blur(64px);
}

.circle-blur-middle-left.safari.small {
  width: 200px;
  height: 200px;
  background-image: linear-gradient(59deg, var(--slate-blue) 27%, var(--dark-blu) 50%, rgba(26, 29, 49, .15) 75%);
}

.circle-blur-middle-left.safari.small.alt {
  background-image: linear-gradient(59deg, var(--lifestyle-yellow), var(--yellow-light) 27%, var(--dark-blu) 50%, rgba(26, 29, 49, .15) 75%);
  top: auto;
  bottom: 10%;
  left: auto;
  right: 3%;
}

.circle-blur-middle-left.safari.small.alt.hero {
  opacity: .63;
  filter: none;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: multiply;
  background-image: url('../images/blob_1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-clip: border-box;
  bottom: 0%;
  left: 150px;
  right: 0%;
}

.circle-blur-middle-left.safari.small.alt.hero.hide {
  display: none;
}

.circle-blur-middle-left.safari.hide {
  transform: scale(.7);
}

.circle-blur-middle-left.safari {
  opacity: .97;
  filter: blur(64px) blur(64px);
  background-image: linear-gradient(59deg, #ff7448 27%, #72e7a7 50%, #1a1d31 75%);
}

.circle-blur-middle-left.safari.small {
  width: 200px;
  height: 200px;
  background-image: linear-gradient(59deg, #ff7448 27%, #1a1d31 50%, rgba(26, 29, 49, .15) 75%);
  top: 50%;
}

.circle-blur-middle-left.safari.small.green {
  background-image: linear-gradient(59deg, var(--lifestyle) 27%, var(--slate-blue) 50%, rgba(26, 29, 49, .15) 75%);
}

.figma-embed-wrapper {
  width: 100%;
  height: 560px;
  border: 2px solid #161616;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  display: block;
  position: relative;
  overflow: hidden;
}

.step {
  min-width: 120px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.text-light-grey {
  color: rgba(255, 255, 255, .65);
}

.page-type-text {
  color: #fff;
  text-align: center;
  margin-top: 0;
}

.hero-grid {
  width: 99.9995%;
  height: auto;
  grid-column-gap: 30px;
  grid-template-rows: minmax(auto, 2fr);
  grid-template-columns: 1.5fr;
  align-items: stretch;
}

.features-text {
  color: #fff;
}

.main-bl-2 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-left: 0;
  padding-top: 40px;
  padding-left: 0;
  display: flex;
}

.main-bl-2.inner-section {
  flex-direction: column;
  margin-top: 40px;
  padding-bottom: 20px;
}

.counter-circle-2 {
  width: 150px;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  border: 3px #a2a2f0;
  border-radius: 18px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 30px 20px;
  display: flex;
}

.counter-circle-2.expertise {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.counter-circle-2.ecosytem {
  width: 100%;
  height: auto;
  border-radius: 17px;
}

.counter-circle-2.turnover {
  width: 100%;
}

.circle-blur-top-right-2 {
  z-index: -1;
  width: 440px;
  height: 440px;
  filter: blur(100px);
  background-image: linear-gradient(132deg, #ff7448 35%, #ff4848 54%, #6248ff 80%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: block;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: -5%;
}

.circle-blur-top-right-2.safari {
  opacity: .97;
  filter: blur(64px) blur(64px);
}

.step-1-info-wrapper {
  border: 2px solid #fff;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  padding: 24px;
  display: flex;
}

.trio-cards {
  grid-column-gap: 36px;
  grid-row-gap: 16px;
  grid-template: "."
                 "Area"
                 / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 20px;
  display: grid;
}

.trio-cards.use-case {
  grid-template-columns: 1fr 1fr;
}

.pricing-table {
  background-color: #161616;
  border-radius: 16px;
  padding: 40px;
}

.step-info {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  margin-left: 24px;
  display: flex;
  position: static;
}

.heading-9 {
  color: #fff;
  text-transform: capitalize;
  font-size: 28px;
  line-height: 1.3;
}

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

.navbar-2 {
  z-index: 100;
  height: auto;
  filter: contrast(200%);
  mix-blend-mode: luminosity;
  background-color: rgba(26, 29, 49, .88);
  background-image: linear-gradient(rgba(232, 234, 246, .23), rgba(232, 234, 246, .23));
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  transform: translate(0);
}

.navbar-2.blur {
  filter: blur(17px);
  background-color: rgba(84, 97, 177, .28);
}

.nav-menu-2 {
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav-menu-2.hide {
  display: none;
}

.white-line {
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.price-text {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.anim-big-txt-3 {
  color: #fffde6;
  letter-spacing: 0;
  text-indent: 0;
  text-shadow: 0 0 6px var(--goldenrod), 0 0 9px #ffbe00;
  font-family: Beon medium, sans-serif;
  font-size: 7vh;
  font-weight: 500;
  line-height: 1.1;
}

.anim-big-txt-3.inner {
  text-shadow: 0 0 4px var(--goldenrod), 0 0 4px #ffbe00;
  font-size: 42px;
}

.project-spec-webflow-wrap {
  width: 100%;
  height: 520px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.wrapper-2 {
  z-index: 10;
  width: 100%;
  max-width: none;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.wrapper-2.shade-wrapper {
  background-color: #1e2029;
  position: static;
}

.button-icon-2 {
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  transition: all .4s;
  display: flex;
}

.button-icon-2:hover {
  background-color: #161616;
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}

.button-icon-2.secondary {
  color: #000;
  background-color: #fff;
}

.button-icon-2.secondary:hover {
  background-color: #c2c0bc;
}

.button-icon-2.secondary.small {
  text-align: center;
  flex: 1;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  text-decoration: none;
  position: relative;
}

.button-icon-2.secondary.small.visit-live {
  margin-left: 16px;
}

.button-icon-2.secondary.small.visit-live.project-spec {
  width: 40px;
  height: 40px;
  padding: 0;
  position: absolute;
  top: 16px;
  bottom: auto;
  left: auto;
  right: 16px;
}

.client-quote {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
}

.step-3-info-wrapper {
  border: 2px solid #fff;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  padding: 24px;
  display: flex;
}

.label-arrow {
  width: 100%;
  position: static;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.label-arrow.on-t-m {
  width: 120px;
  opacity: .82;
  mix-blend-mode: multiply;
  display: block;
  position: absolute;
  bottom: -10%;
  left: 75%;
}

.blur-wrapper {
  z-index: 1;
  width: 200%;
  height: 100%;
  filter: blur(6em);
  object-fit: fill;
  background-color: rgba(162, 162, 240, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 0;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.tick._0-opacity {
  opacity: 0;
}

.webflow-embed {
  width: 200%;
  height: 870px;
  border-radius: 12px;
  margin-top: -175px;
  margin-left: -50%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  transform: scale(.6);
}

.neon-shadow-2 {
  mix-blend-mode: multiply;
  position: absolute;
  bottom: -65%;
  right: -40%;
}

.neon-shadow-2.hide {
  display: none;
}

.button-3 {
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  transition: all .4s;
}

.button-3:hover {
  background-color: #161616;
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}

.button-3.secondary {
  color: #000;
  background-color: #fff;
}

.button-3.secondary:hover {
  background-color: rgba(0, 0, 0, .15);
}

.button-3.secondary.small {
  text-align: center;
  flex: 1;
  padding: 12px 24px;
  font-size: 14px;
  text-decoration: none;
}

.button-3.secondary.small.nav-cta {
  z-index: 2000;
  flex: 0 auto;
}

.button-3.secondary.small.nav-cta.hide, .button-3.hide-on-t-m.hero {
  display: none;
}

.feature-icon-wrapper {
  min-height: 60px;
  min-width: 60px;
  background-color: #2a2c34;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: none;
}

.step-5-number {
  z-index: 2;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  position: relative;
  overflow: hidden;
}

.project-spec-name {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
}

.circle-blur-top-left {
  z-index: -1;
  width: 440px;
  height: 440px;
  filter: blur(100px);
  background-image: linear-gradient(132deg, #ff7448 35%, #ff4848 54%, #6248ff 80%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: block;
  position: absolute;
  top: -5%;
  bottom: auto;
  left: -5%;
  right: auto;
}

.circle-blur-top-left.safari {
  opacity: .97;
  filter: blur(64px) blur(64px);
}

.circle-blur-top-left.safari.purple {
  background-image: linear-gradient(132deg, var(--liliac) 35%, var(--dark-blu) 54%, var(--liliac) 80%);
}

.circle-blur-top-left.safari.purple.small.hide {
  display: none;
}

.centered-intro {
  max-width: none;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.step-heading {
  color: #fff;
}

.pricing-row-spacer {
  height: 24px;
}

.step-1-number {
  z-index: 2;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  position: relative;
  overflow: hidden;
}

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

.step-5-info-wrapper {
  border: 2px solid #fff;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  padding: 24px;
  display: flex;
}

.text-block-4 {
  color: var(--liliac-light);
  font-weight: 400;
}

.feature-descriptor {
  font-size: 24px;
  font-weight: 700;
  display: none;
}

.badge {
  background-color: #d8d5d1;
  border-radius: 8px;
  padding: 6px 8px;
  display: inline-block;
}

.badge.yolo-media {
  background-color: #deeffa;
}

.badge.laura-avery {
  background-color: #e9e5dd;
}

.pricing-row {
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px rgba(255, 255, 255, .15);
  grid-template-rows: auto;
  grid-template-columns: .5fr 1.25fr;
  padding-top: 16px;
  padding-bottom: 16px;
}

.pricing-row.pricing-header {
  border-top-style: none;
  padding-top: 0;
  padding-bottom: 40px;
}

.step-3-number {
  z-index: 2;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  position: relative;
  overflow: hidden;
}

.hero-content-wrap.design-to-webflow {
  text-align: center;
  margin-top: 5%;
}

.counter-title-2 {
  color: #fffde6;
  text-shadow: 0 0 10px #fcbd0e;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  font-size: 50px;
  font-weight: 700;
}

.counter-title-2.espertise {
  text-transform: uppercase;
  font-size: 18px;
}

.counter-title-2.espertise.busines {
  color: var(--goldenrod);
  font-size: 20px;
  font-weight: 700;
}

.counter-title-2.espertise.design {
  color: var(--liliac-medium);
  text-shadow: 0 0 10px var(--liliac);
  font-size: 20px;
  font-weight: 700;
}

.counter-title-2.espertise.tech {
  color: #74acff;
  text-shadow: 0 0 5px #2426a0;
  font-size: 20px;
  font-weight: 700;
}

.counter-title-2.espertise.hide {
  display: none;
}

.step-2-number {
  z-index: 2;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  position: relative;
  overflow: hidden;
}

.big-txt-3 {
  z-index: 1;
  color: var(--liliac-light);
  letter-spacing: .02em;
  text-shadow: 0 0 rgba(255, 253, 230, .3), 0 0 6px rgba(252, 189, 14, .78), 0 0 3px rgba(255, 253, 230, .54);
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  font-family: Beon medium, sans-serif;
  font-size: 54px;
  line-height: 1;
}

.big-txt-3.ligh {
  color: #fffde6;
  letter-spacing: .03em;
  text-shadow: 0 0 15px #ffbe00;
  white-space: normal;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  font-family: Beon medium, sans-serif;
  font-size: 70px;
  line-height: 78px;
}

.big-txt-3.ligh.small {
  color: var(--liliac-light);
  letter-spacing: .03em;
  text-shadow: 0 0 6px rgba(252, 189, 14, .78), 0 0 3px rgba(255, 253, 230, .54), 0 0 3em var(--dark-blu);
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  margin-bottom: -2px;
  font-family: Beon medium, sans-serif;
  font-size: 7vh;
  line-height: 1.1;
}

.big-txt-3.ligh.small.second-line {
  text-shadow: 0 0 5px rgba(255, 253, 230, .61);
  font-size: 54px;
}

.big-txt-3.ligh.small.inner {
  text-shadow: 0 0 4px rgba(252, 189, 14, .78), 0 0 3px rgba(255, 253, 230, .54), 0 0 3em var(--dark-blu);
  font-size: 42px;
}

.circle-hover {
  width: 6vw;
  height: 6vw;
  background-color: #2a2c34;
  border-radius: 100%;
  position: absolute;
  top: -6vw;
  bottom: auto;
  left: auto;
  right: -6vw;
}

.circle-hover.lifestyle {
  background-color: #72e7a7;
}

.circle-hover.culture {
  background-color: #ff286c;
}

.circle-hover.white {
  z-index: 0;
  background-color: #fc5b5e;
  top: -6vw;
  right: -6vw;
}

.circle-hover.white.culture {
  background-color: var(--culture-neon);
}

.circle-hover.white.web-3 {
  background-color: var(--web3);
}

.circle-hover.white {
  z-index: 0;
  background-color: #fff;
  top: -6vw;
  right: -6vw;
}

.pricing-table-text {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}

.project-spec-wrapper {
  width: 100%;
  background-color: #fff;
  border: 2px solid #161616;
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  display: flex;
}

.project-title-wrap {
  align-items: center;
  display: flex;
}

.step-4-number {
  z-index: 2;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  position: relative;
  overflow: hidden;
}

.relume-logo-primary {
  z-index: 0;
  color: #000;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.feature-title-wrapper {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 10px;
  display: block;
  position: relative;
}

.section-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 5vw;
  display: flex;
  position: relative;
}

.section-3.grain.hide {
  display: none;
}

.section-3.no-top-padding {
  padding-top: 0;
}

.section-3.home-hero-section {
  min-height: 100vh;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 0;
  overflow: hidden;
}

.section-3.home-hero-section.slider-new {
  height: auto;
  min-height: 90vh;
  margin-top: 120px;
}

.section-3.home-hero-section.slider-new.reference, .section-3.home-hero-section.slider-new.noshow, .section-3.home-hero-section.slider-new.hide {
  display: none;
}

.section-3.hide {
  display: block;
}

.section-3.hide.noshow {
  display: none;
}

.heading-2-small {
  color: var(--yellow-light);
  text-shadow: 0 0 6px var(--goldenrod);
  font-family: DM Sans, sans-serif;
  font-size: 44px;
  line-height: 1;
}

.heading-2-small.hide {
  display: none;
}

.timeline-wrapper {
  width: 40px;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.navbar-container {
  z-index: 2;
  width: 90%;
  max-width: 1360px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.navbar-container.hide {
  display: none;
}

.large-heading {
  color: #e8eaf6;
  font-size: 54px;
}

.large-heading.new {
  color: var(--liliac-light);
  background-color: rgba(0, 0, 0, 0);
  font-family: DM Sans, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.large-heading.new.hide {
  display: none;
}

.client-quote-wrap {
  width: 50%;
}

.footer-feedel {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
}

.footer-feedel.hero {
  height: 100vh;
}

.footer-feedel.hero.grain {
  height: 90vh;
  background-image: url('../images/slide-16-9-hero-1.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 80%;
  padding-bottom: 0;
}

.footer-feedel.grain {
  background-color: rgba(26, 29, 49, .2);
  background-image: url('../images/Grain-Background.png');
  background-size: 300px 300px;
  padding-top: 140px;
  padding-bottom: 60px;
}

.footer-feedel.grain.padding-top-40 {
  background-color: rgba(162, 162, 240, 0);
  padding-top: 40px;
}

.footer-feedel.grain.timeline {
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-feedel.grain.slim {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-feedel.grain.copyright {
  padding-bottom: 40px;
}

.footer-feedel.grain.copyright.footer.no-grain {
  background-image: none;
}

.footer-feedel.grain.copyright.footer.feedel {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, var(--dark-blu), rgba(255, 255, 255, 0)), url('../images/Grain-Background.png');
  background-position: 0 0, 0 0;
  background-size: auto, 300px 300px;
}

.footer-feedel.grain.grey.light {
  background-image: url('../images/Grain-Background.png');
  background-position: 0 0;
  background-size: 300px 300px;
  padding-top: 60px;
}

.footer-feedel.grain.hide {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.footer-feedel.grain.first {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 0;
  display: flex;
}

.footer-feedel.grain.first.second-page {
  padding-top: 140px;
}

.footer-feedel.grain.first.no-padding {
  padding-top: 0;
}

.footer-feedel.grain.slim-cta {
  padding-top: 0;
  padding-bottom: 40px;
}

.footer-feedel.black.hide {
  display: none;
}

.footer-feedel.copyright {
  padding-top: 100px;
  padding-bottom: 20px;
}

.footer-feedel.highlight {
  padding-top: 100px;
  padding-bottom: 140px;
}

.footer-feedel.highlight.hide {
  display: none;
}

.footer-feedel.highlight.grain {
  background-image: none;
  background-size: auto;
  padding-top: 40px;
}

.footer-feedel.highlight.grain.light {
  padding-top: 0;
  padding-bottom: 60px;
}

.footer-feedel.highlight.no-margin {
  padding-top: 120px;
  padding-bottom: 0;
}

.footer-feedel.slim {
  padding-top: 40px;
  padding-bottom: 20px;
}

.footer-feedel.slim.grain {
  background-image: none;
  background-size: auto;
}

.counter-container-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin-top: 40px;
  margin-bottom: 0;
}

.counter-container-2.large {
  width: 100%;
  grid-column-gap: 64px;
  justify-content: center;
  justify-items: center;
  margin-top: 5px;
  margin-bottom: 40px;
}

.counter-container-2.large.expertise {
  grid-column-gap: 20px;
}

.step-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.benefits-icon {
  margin-bottom: 16px;
  margin-right: 0;
}

.step-2-info-wrapper {
  border: 2px solid #fff;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  padding: 24px;
  display: flex;
}

.black-line {
  width: 2px;
  height: 72px;
  background-color: #0a0a0a;
  position: absolute;
  left: 19px;
  right: 20px;
}

.project-spec-figma-wrap {
  width: 100%;
  height: auto;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

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

.center-div.max-800w {
  max-width: 800px;
}

.center-div.max-800w.margin-xl {
  align-items: center;
  margin-left: auto;
}

.center-div.max-800w.margin-xl.know-more {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
}

.center-div.max-800w.margin-xl.know-more.hide, .center-div.max-800w.margin-xl.hide {
  display: none;
}

.project-spec-top {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.circle-blur-top-left-2 {
  z-index: -1;
  width: 440px;
  height: 440px;
  filter: blur(100px);
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6248ff 79%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: block;
  position: absolute;
  top: -5%;
  bottom: auto;
  left: -5%;
  right: auto;
}

.circle-blur-top-left-2.safari {
  opacity: .97;
  filter: blur(64px) blur(64px);
}

.circle-blur-top-left-2.safari.hero {
  width: 600px;
  background-image: linear-gradient(132deg, #7272e0 11%, #1a1d31 50%, #1a1d31 87%);
}

.circle-blur-top-left-2.safari.hero.hide {
  width: 300px;
  height: 300px;
  filter: blur(64px);
  background-image: linear-gradient(132deg, #4f4fbd 13%, rgba(252, 189, 14, .26) 64%, rgba(252, 189, 14, .68));
  display: none;
}

.nav-text-hover {
  color: #0a0a0a;
  letter-spacing: .28px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}

.nav-text-hover:hover {
  color: var(--yellow-light);
}

.gradient-span {
  background-image: linear-gradient(-270deg, var(--goldenrod), var(--yellow-light) 52%, var(--liliac-light));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 20px;
  font-weight: 500;
}

.gradient-span.small {
  background-image: linear-gradient(-270deg, var(--yellow-light), var(--goldenrod) 52%, var(--liliac-light));
  font-size: 16px;
}

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

.process-image {
  width: 240px;
  height: 240px;
  background-image: url('../images/Process_step_background.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.export-icon {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  display: none;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 16px;
  right: 16px;
}

.export-icon.project-spec {
  margin-top: 0;
  display: block;
  position: static;
}

.tabs-menu {
  justify-content: center;
  display: flex;
}

.tabs-menu.left-align {
  justify-content: flex-start;
}

.nav-text-wrap {
  height: 20px;
  text-decoration: none;
  overflow: hidden;
}

.circle-blur-bottom-right-2 {
  z-index: -1;
  width: 440px;
  height: 440px;
  filter: blur(100px);
  background-image: linear-gradient(132deg, #ff7448 26%, #ff4848 51%, #6248ff 75%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -15%;
  left: auto;
  right: 0%;
}

.circle-blur-bottom-right-2.safari {
  height: 300px;
  background-image: linear-gradient(132deg, var(--slate-blue) 26%, rgba(204, 204, 255, .39) 51%, var(--lifestyle) 75%);
  opacity: .97;
  filter: blur(64px) blur(64px);
}

.circle-blur-bottom-right-2.safari.hero {
  background-image: linear-gradient(132deg, var(--lifestyle) 16%, var(--liliac-light) 51%, #1a1d31 58%);
  bottom: -10%;
}

.circle-blur-bottom-right-2.safari.hide {
  display: none;
}

.circle-blur-bottom-right-2.safari.smaller {
  width: 200px;
  height: 150px;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav-text {
  color: rgba(232, 234, 246, .49);
  letter-spacing: .28px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.nav-text.new {
  color: #fff;
  text-transform: capitalize;
  background-color: rgba(0, 0, 0, 0);
  font-family: Space Mono, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.nav-text.new:hover {
  color: var(--dark-blu);
}

.img-24 {
  width: 24px;
}

.img-24.right-12 {
  margin-right: 12px;
}

.badge-text {
  color: #000;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  text-decoration: none;
}

.wrapper {
  width: 100%;
  height: 100%;
  filter: saturate(90%);
  position: relative;
}

.step-4-info-wrapper {
  border: 2px solid #fff;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  padding: 24px;
  display: flex;
}

.circle-blur-bottom-right {
  z-index: -1;
  width: 440px;
  height: 440px;
  filter: blur(100px);
  background-image: linear-gradient(132deg, #ff7448 26%, #ff4848 51%, #6248ff 75%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -15%;
  left: auto;
  right: 0%;
}

.circle-blur-bottom-right.safari {
  opacity: .97;
  filter: blur(64px) blur(64px);
}

.body-display {
  color: #fffde6;
  line-height: 1.1;
}

.body-display.allcaps {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
}

.body-display.allcaps.small {
  color: rgba(255, 255, 255, .74);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
}

.body-display.large {
  font-size: 18px;
  line-height: 1.6em;
}

.body-display.large.new {
  color: var(--liliac-light);
}

.body-display.large.new.hide {
  display: none;
}

.clip {
  overflow: hidden;
}

.lottie-gradient {
  z-index: 4;
  width: 200%;
  height: 150%;
  opacity: 1;
  mix-blend-mode: normal;
  object-fit: fill;
  background-color: rgba(0, 0, 0, 0);
  margin-left: -100vh;
  display: block;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.lottie-gradient.footer {
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.container-3 {
  z-index: 2;
  width: 90%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.container-3.hero {
  height: 100%;
  display: flex;
}

.container-3.small {
  max-width: 920px;
}

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

.container-3.centred {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-3.centred.full-width {
  font-size: 16px;
}

.with-underline {
  background-image: url('../images/underline.svg');
  background-position: 50% 115%;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 4px 2px 8px;
  display: inline-block;
}

.with-underline.long-underline {
  background-image: url('../images/Underline_long.svg');
  background-position: 50% 100%;
}

.table-caption {
  color: rgba(255, 255, 255, .8);
  text-align: right;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
}

.project-spec-tab-link {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  align-items: center;
  padding: 8px 0;
  display: flex;
}

.project-spec-tab-link:hover {
  opacity: 1;
}

.project-spec-tab-link.w--current {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-color: #161616;
  transition: all .3s;
}

.project-spec-tab-link.right-32, .project-spec-tab-link.right-32.w--current {
  margin-right: 32px;
}

.process-wrapper {
  position: relative;
}

.aud {
  font-size: 14px;
  line-height: 22px;
}

.grey-line {
  width: 2px;
  height: 82%;
  background-color: rgba(255, 255, 255, .15);
  position: relative;
}

.paragraph-m {
  letter-spacing: -.4px;
  font-size: 20px;
}

.paragraph-m.text-white {
  color: #e8eaf6;
}

.paragraph-m.max-640w {
  max-width: 640px;
  color: #e8eaf6;
}

.paragraph-m.max-640w.hero {
  opacity: 1;
  color: rgba(255, 253, 230, .49);
  margin-top: 40px;
  font-family: Space Mono, sans-serif;
}

.paragraph-m.max-640w.hero.footer {
  color: var(--liliac-light);
  text-align: left;
  margin-top: 0;
  font-size: 16px;
  display: none;
}

.feature-item-info {
  z-index: 10;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
  position: relative;
}

.nav-link-dope-edition {
  padding: 16px;
  text-decoration: none;
}

.nav-link-dope-edition.right-32 {
  color: #e8eaf6;
  margin-right: 16px;
  padding-top: 10px;
}

.nav-link-dope-edition.right-32:hover {
  color: var(--yellow-light);
  font-size: 14px;
}

.gradient-background-fill {
  height: 100%;
  min-width: auto;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--liliac), var(--yellow-light));
  opacity: .55;
}

.gradient-background-fill.advisory {
  background-image: url('../images/milad-fakurian-PGdW_bHDbpI-unsplash-1.jpg'), linear-gradient(to top, var(--liliac), white);
  opacity: 1;
  background-position: 50%, 0 0;
  background-size: cover, auto;
}

.gradient-background-fill.advisory.different-backgroun {
  background-image: url('../images/and-machines-bvruqj_Rp-M-unsplash.jpg'), linear-gradient(to top, var(--liliac), white);
}

.new {
  background-color: var(--dark-blu);
  font-family: Space Mono, sans-serif;
}

.new.text {
  color: var(--yellow-light);
  background-color: rgba(0, 0, 0, 0);
  font-size: 14px;
  font-weight: 700;
}

.new.text.dark {
  color: var(--dark-blu);
}

.centered-call-to-action {
  grid-column-gap: 48px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.centered-call-to-action.clip {
  grid-column-gap: 10px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: auto;
  justify-items: center;
  margin-top: 40px;
  padding-top: 0;
}

.centered-call-to-action.clip.no-space {
  margin-top: 0;
  padding: 0;
}

.centered-call-to-action.spaced {
  flex-direction: column;
  margin-top: 40px;
}

.centered-call-to-action.spaced.orizonta {
  flex-direction: row;
}

.call-to-action-heading {
  grid-column-gap: 18px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  display: grid;
}

.feature-icon-wrapper-2 {
  min-height: 60px;
  min-width: 60px;
  background-color: #2a2c34;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.feature-icon-wrapper-2.white {
  color: #dbe2f0;
  letter-spacing: -.05em;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  font-weight: 700;
  display: flex;
  overflow: hidden;
}

.button-4 {
  border: 1px solid var(--yellow-light);
  background-color: var(--dark-blu);
  box-shadow: inset 0 0 4px 0 var(--goldenrod);
  color: var(--liliac-light);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.button-4.new {
  box-shadow: inset 0 0 4px 0 var(--liliac-medium);
}

.button-4.dark {
  background-color: var(--dark-blu);
}

.button-4.cyber {
  display: inline-block;
}

.button-4.secondary {
  background-color: var(--liliac-medium);
}

.background-fill {
  background-color: var(--dark-slate-grey);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.cosmic {
  background-color: var(--dark-blu);
  cursor: auto;
  margin: 0;
  padding-left: 0;
  font-family: Space Mono, sans-serif;
}

.cosmic.text {
  background-color: rgba(0, 0, 0, 0);
}

.cosmic.interview {
  background-color: #1a1d31;
}

.cosmic.advisory {
  background-color: var(--liliac-medium);
}

.text-field-2 {
  height: 48px;
  color: #fcbd0e;
  background-color: rgba(255, 255, 255, .05);
  border: 1px #000;
  border-radius: 5px;
  margin-bottom: 0;
  font-size: 18px;
}

.text-field-2:focus {
  background-color: rgba(255, 255, 255, .15);
}

.text-field-2.footer {
  height: 40px;
  color: var(--yellow-light);
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  line-height: 1.1;
}

.button-5 {
  height: 48px;
  color: #333;
  background-color: #fcbd0e;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.button-5.new {
  background-color: var(--dark-blu);
  color: var(--liliac-light);
}

.corporate-logo-2 {
  color: #fcbd0e;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
}

.corporate-logo-2.new {
  color: var(--liliac-light);
  background-color: rgba(0, 0, 0, 0);
}

.corporate-logo-2.new.newsletter {
  color: rgba(255, 253, 230, .66);
  margin-bottom: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.corporate-text-2 {
  color: #fcbd0e;
}

.logos-heading-wrapper {
  align-items: center;
  margin-bottom: 48px;
  display: flex;
}

.logos-heading-wrapper.heading {
  text-align: left;
  justify-content: center;
  margin-bottom: 0;
}

.body-display-2 {
  color: #8a94a6;
  line-height: 1.55em;
}

.body-display-2.large {
  color: rgba(255, 255, 255, .5);
  font-family: Space Mono, sans-serif;
  font-size: 18px;
  line-height: 1.1em;
}

.solid-line {
  height: 1px;
  background-color: #1e2029;
  flex: 1;
  margin-left: 36px;
}

.featured-logos-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
  display: none;
}

.logo-partners.small {
  width: 20%;
  height: 100px;
  filter: grayscale();
  padding-right: 0;
}

.logo-partners.small:hover {
  filter: none;
}

.text-span-4 {
  color: #fcbd0e;
}

.text-span-4.alternative {
  color: rgba(255, 253, 230, .51);
}

.h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  line-height: 72px;
  overflow: hidden;
}

.inline {
  display: inline-block;
  position: relative;
}

.link-block {
  display: none;
}

.link-block.more {
  width: 20%;
  height: 20%;
  display: none;
}

.overlay-social {
  z-index: 1;
  background-color: rgba(0, 0, 0, .5);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.reg-icon {
  z-index: 10;
  width: 48px;
  margin-bottom: 12px;
  position: relative;
  box-shadow: 0 9px 36px -8px rgba(0, 0, 0, .24);
}

.social-icon {
  z-index: 1;
  width: 48px;
  margin-bottom: 12px;
  position: relative;
}

.social-cred {
  z-index: 100;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.box {
  background-color: #fff;
  margin-bottom: -160px;
  margin-left: -6vw;
  position: relative;
}

.social-items {
  z-index: 10;
  height: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  background-image: url('../images/GradientSquare.jpg');
  background-position: 30%;
  background-repeat: no-repeat;
  background-size: auto 120%;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.social-block {
  color: #fff;
  border: 1px rgba(255, 255, 255, .09);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.social-block:hover {
  z-index: 10;
}

.social-block.tl-tr {
  border-top-style: solid;
  border-bottom-width: 0;
  border-left-style: solid;
  border-right-width: 0;
}

.social-block.trl {
  border-top-style: solid;
}

.social-block.tl {
  border-top-width: 0;
  border-bottom-width: 0;
  border-left-style: solid;
  border-right-width: 0;
}

.half-dual {
  width: 100%;
  max-width: 1300px;
  grid-column-gap: 6vw;
  grid-row-gap: 56px;
  grid-template-rows: 1fr minmax(400px, 1.5fr);
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 36px;
  display: grid;
}

.large-heading-2 {
  font-size: 54px;
}

.background-shade {
  z-index: 5;
  width: 100%;
  height: 100%;
  justify-content: center;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: visible;
}

.background-shade.third-height {
  height: 40%;
}

.about-wrapper {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 6vw;
  display: flex;
}

.speaker-image {
  width: 101%;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.speaker-image.team-four {
  background-image: url('../images/Team005.jpeg');
}

.speaker-image.team-two {
  background-image: url('../images/Team003.jpeg');
}

.speaker-image.team-one {
  background-image: url('../images/Team002.jpeg');
}

.speaker-image.team-three {
  background-image: url('../images/Team004.jpeg');
}

.speaker-image.team-images {
  width: 100%;
  height: 80%;
  mix-blend-mode: normal;
  background-position: 0 100%;
  background-size: cover;
  border: 1px rgba(255, 255, 255, .5);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.speaker-image.two {
  background-image: url('../images/waznex-1.png');
  background-position: 0 0;
  background-size: auto;
}

.speaker-image.four {
  background-image: url('../images/hauseme-logo-1.png');
  background-position: 50% 0;
}

.speaker-image.five {
  width: 101%;
  background-image: url('../images/10seconds.png');
  background-position: 50%;
  background-size: contain;
}

.speaker-image.six {
  width: 100%;
  object-fit: contain;
  background-image: url('../images/artvisor-logo-white-retina-1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 70%;
}

.speaker-image.one {
  background-image: url('../images/pyxie-logo.png');
  background-size: 60%;
  display: none;
}

.speaker-image.three {
  background-image: url('../images/v.expo-1.png');
  background-position: 100% 0;
  margin-right: 0;
}

.speaker-image.two {
  background-image: url('../images/card_lifestyle-1.png');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.speaker-image.four {
  background-image: url('../images/card_culture-1.png');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.speaker-image.five {
  width: 101%;
  background-image: url('../images/card_lifestyle-1.png');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.speaker-image.six {
  height: 100%;
  max-height: none;
  background-image: url('../images/card_lifestyle-1.png');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.speaker-image.one {
  background-image: url('../images/card_lifestyle-1.png');
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.speaker-image.three {
  background-image: url('../images/card_web-4.png');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  display: flex;
}

.speaker-image.seven {
  background-image: url('../images/card_culture-1.png');
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.speaker-image.seven.other {
  background-image: url('../images/other-2.png');
}

.speaker-image.eight {
  background-image: url('../images/card_culture-1.png');
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.box-two {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-top: 0;
  display: grid;
}

.slide-image {
  width: 100%;
  height: 65vh;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-image: url('../images/card_culture-2.png');
  background-size: auto;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slide-image.team-gallery {
  height: 100%;
}

.slide-image.team-image {
  height: 100%;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.background-cover {
  width: 50%;
  background-color: #1e2029;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.big-txt-3-second-line {
  z-index: 1;
  color: #fffde6;
  letter-spacing: .01em;
  text-shadow: 0 0 5px #fcbd0e;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  font-family: Beon medium, sans-serif;
  font-size: 54px;
  line-height: 1;
}

.big-txt-3-second-line.ligh {
  color: #fffde6;
  letter-spacing: .03em;
  text-shadow: 0 0 15px #ffbe00;
  white-space: normal;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  font-family: Beon medium, sans-serif;
  font-size: 70px;
  line-height: 78px;
}

.big-txt-3-second-line.ligh.small {
  color: var(--yellow-light);
  letter-spacing: .03em;
  text-shadow: 0 0 8px rgba(255, 253, 230, .61);
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  font-size: 58px;
  line-height: 1;
}

.big-txt-3-second-line.ligh.small.second-line {
  letter-spacing: 0;
  text-shadow: 0 0 5px var(--yellow-light);
  font-size: 48px;
}

.button-6 {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.button-6.newsly {
  color: var(--yellow-light);
}

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

.three-grid-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr .75fr;
  grid-auto-columns: 1fr;
  margin-bottom: 80px;
  display: grid;
}

.team-wrapper {
  z-index: 20;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gradient-span-2 {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/Gradient-Blur-001.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 120%;
  -webkit-background-clip: text;
  background-clip: text;
}

.team-item {
  width: 33.33%;
  height: 100%;
  min-width: 33.33vw;
  color: #fff;
  text-decoration: none;
}

.team-member-info {
  z-index: 100;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -48px;
  left: 0%;
  right: 0%;
}

.creator_content {
  opacity: .4;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.creator_content:hover {
  opacity: 1;
  filter: none;
}

.creator_content.hide {
  display: none;
}

.block_followers {
  margin-top: 5px;
}

.block_top-wrap {
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.creator_block {
  min-width: 394px;
  background-color: #fff;
  border-radius: 12px;
  margin-right: 24px;
  padding: 32px;
  display: block;
}

.block_username {
  font-size: 24px;
  font-weight: 700;
}

.block_text {
  max-width: 330px;
}

.creator_container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 0 0;
  overflow: hidden;
}

.creator_container.hide {
  display: none;
}

.block-profile-img {
  width: 64px;
  height: 64px;
  margin-right: 24px;
}

.image-small {
  width: 20%;
  height: 20%;
  filter: grayscale();
  padding-left: 5px;
  padding-right: 5px;
}

.image-small:hover {
  filter: none;
}

.logos {
  padding-top: 10px;
}

.logos.wellbeing {
  flex-direction: column;
  display: flex;
}

.collection-list {
  grid-column-gap: 15px;
  grid-row-gap: 20px;
  opacity: 1;
  grid-template: "Area"
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  margin-top: 40px;
  display: grid;
}

.collection-list.wellbeing {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.collection-item-2 {
  width: 100%;
  height: 100%;
  text-align: center;
  justify-content: center;
  display: block;
}

.image-card {
  width: auto;
  height: auto;
  max-height: 40px;
  margin-bottom: 8px;
}

.image-card.edit._2 {
  height: auto;
  max-height: 40px;
  max-width: 99.9998%;
  margin-bottom: 0;
}

.carousel-logo {
  width: 80%;
  height: 10%;
}

.content-container {
  width: 100vw;
  height: auto;
  display: block;
  overflow: visible;
}

.projects {
  position: static;
  top: 0;
}

.projects-list {
  display: block;
}

.projects-list.camera {
  margin-bottom: -50vh;
  padding-top: 100vh;
  overflow: visible;
}

.project-slider-container {
  width: 100vw;
  height: 200vh;
  position: relative;
}

.project-slider-container.with-margin {
  height: 200vh;
  margin-top: -150vh;
  position: static;
}

.image-overlay {
  z-index: 2;
  width: 99%;
  height: 70%;
  background-image: linear-gradient(340deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 35%);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: fill;
  background-color: rgba(0, 0, 0, 0);
  margin-left: 0;
  margin-right: 0;
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-container {
  z-index: 10;
  width: 100%;
  height: 100%;
  cursor: auto;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.heading-10 {
  z-index: 0;
  width: 70%;
  opacity: 1;
  color: #fff;
  text-transform: uppercase;
  white-space: normal;
  font-size: 8vw;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(-5vw, -5vw);
}

.heading-10.outline {
  z-index: 10;
  opacity: 1;
  transform: translate(-5vw, -5vw);
}

.project-content-container {
  width: 50vw;
  height: 50vh;
  position: relative;
  overflow: visible;
}

.project-content-info {
  text-align: right;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.project-slide {
  z-index: 10;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  top: 0;
}

.sticky-camera {
  z-index: 999;
  width: 100vw;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.project-content-details {
  z-index: 10;
  width: 100%;
  max-width: 240px;
  color: #fff;
  padding: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.section-4 {
  display: block;
}

.speaker-image-cover {
  z-index: 10;
  height: 101%;
  opacity: 1;
  cursor: pointer;
  background-image: url('../images/Gradient-Blur-001.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.speaker-slide {
  width: 33.33%;
}

.slide-nav-2 {
  display: none;
}

.speaker-name {
  z-index: 10;
  color: var(--yellow-light);
  font-size: 40px;
  position: relative;
}

.speaker-arrow {
  width: 60px;
  height: 60px;
  background-color: #1e2029;
  border: 1px rgba(255, 255, 255, .04);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
  top: auto;
  bottom: 5vw;
  left: auto;
  right: 5vw;
}

.speaker-arrow.left {
  background-color: #1e2029;
  margin-right: 72px;
  left: auto;
  right: 5vw;
}

.speaker-arrow.left.hide, .speaker-arrow.hide {
  display: flex;
}

.slide-arrow {
  width: 18px;
}

.speaker-slider {
  height: 50%;
  max-height: none;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 60px;
  display: flex;
}

.speaker-slide-content {
  z-index: 100;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 36px;
  display: flex;
  position: relative;
}

.speaker-info {
  max-width: 500px;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 36px;
  display: block;
}

.clip-text {
  overflow: hidden;
}

.clip-text.speaker-headding {
  margin-top: 0;
  margin-bottom: 10px;
}

.clip-text.stealth-mode {
  display: none;
}

.speaker-slide-mask {
  width: 100%;
  overflow: visible;
}

.portfolio-wrapper {
  width: 100%;
  height: 50%;
  max-height: 50%;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.portfolio-slider-wrapper {
  height: 50%;
  max-height: 50%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 20px;
  display: flex;
}

.content-container-2 {
  width: 100vw;
  display: block;
  overflow: visible;
}

.content-container-2.hide {
  display: none;
}

.sticky-camera-2 {
  z-index: 1;
  width: 100vw;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.image-9 {
  z-index: 999;
  width: 50%;
  height: 50%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-10 {
  display: none;
}

.image-11 {
  width: 100%;
}

.speaker-slide-2 {
  width: auto;
}

.speaker-image-cover-2 {
  z-index: 10;
  height: 101%;
  opacity: 1;
  cursor: pointer;
  background-image: url('../images/Gradient-Blur-001.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.speaker-image-cover-2.culture {
  background-image: url('../images/card_lifestyle.png');
  background-size: cover;
  display: block;
}

.speaker-image-cover-2.web3 {
  background-image: url('../images/card_web-3.png');
}

.speaker-image-cover-2.lifestyle {
  background-image: url('../images/card_culture.png');
}

.speaker-image-cover-2.artvisor {
  background-image: url('../images/card_lifestyle-1.png');
}

.speaker-image-cover-2.pyxie {
  background-image: url('../images/card_lifestyle-1.png');
  background-attachment: scroll;
}

.speaker-image-cover-2.waznex {
  background-image: url('../images/card_lifestyle-1.png');
}

.speaker-image-cover-2.v-expo {
  background-image: url('../images/card_web-4.png');
}

.speaker-image-cover-2.hausme, .speaker-image-cover-2.magari {
  background-image: url('../images/card_culture-1.png');
}

.speaker-image-cover-2.newsly {
  background-image: url('../images/card_lifestyle-1.png');
}

.speaker-image-cover-2._10seconds {
  background-image: url('../images/card_culture-1.png');
}

.speaker-slide-mask-2 {
  width: 33.3%;
  overflow: visible;
}

.speaker-slide-mask-2.feedel {
  width: 90%;
}

.collection-list-wrapper {
  height: 100%;
  flex-direction: column;
  display: none;
}

.collection-list-2 {
  display: flex;
}

.content-container-portfolio {
  width: 100vw;
  display: none;
  overflow: visible;
}

.image-overlay-2 {
  z-index: 2;
  width: 100%;
  height: 70%;
  background-image: linear-gradient(340deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 35%);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.image-12 {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-container-2 {
  width: 100%;
  height: 100%;
  cursor: none;
  text-decoration: none;
  position: static;
  overflow: hidden;
}

.project-content-details-2 {
  z-index: 10;
  width: 100%;
  max-width: 240px;
  color: #fff;
  padding: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.startup-logo-carousel {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin-left: auto;
  margin-right: 0;
  display: block;
  position: static;
  top: 50%;
  left: 50%;
  right: auto;
}

.speaker-slide-3 {
  height: 70%;
  max-height: 70%;
}

.speaker-name-2 {
  z-index: 10;
  font-size: 64px;
  position: relative;
}

.speaker-name-2.heading-2-small {
  color: var(--liliac-light);
  text-shadow: none;
  font-size: 32px;
}

.slide-image-2 {
  width: 100%;
  height: 40vh;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
  overflow: hidden;
}

.speaker-slide-content-2 {
  z-index: 100;
  height: 70%;
  max-height: 70%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 36px;
  display: flex;
  position: relative;
}

.speaker-image-cover-3 {
  z-index: 10;
  height: 101%;
  opacity: 1;
  cursor: pointer;
  background-image: url('../images/Gradient-Blur-001.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.speaker-image-cover-3.artvisor, .speaker-image-cover-3.pyxie, .speaker-image-cover-3.waznex {
  background-image: url('../images/card_lifestyle-1.png');
}

.speaker-image-cover-3.hausme {
  background-image: url('../images/card_culture-1.png');
}

.speaker-image-cover-3.v-expo {
  background-image: url('../images/card_web-4.png');
}

.speaker-image-cover-3.magari {
  background-image: url('../images/card_lifestyle-1.png');
}

.speaker-image-cover-3.newsly, .speaker-image-cover-3._10seconds {
  background-image: url('../images/card_culture-1.png');
}

.speaker-slide-mask-3 {
  width: 33.33%;
  overflow: visible;
}

.slider-logo {
  width: 50%;
}

.hero-img {
  width: 100%;
  background-image: url('../images/blob.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: block;
}

.hero-img.mobile {
  display: none;
}

.hero-blob {
  width: 100%;
  height: auto;
  opacity: .5;
  filter: brightness();
  cursor: auto;
  mix-blend-mode: normal;
  display: block;
  position: absolute;
  top: 75%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.hero-blob.hide {
  display: none;
}

.heading-6 {
  color: var(--liliac-light);
  font-family: DM Sans, sans-serif;
  font-size: 44px;
}

.heading-6.second-line {
  margin-top: 0;
  font-family: Space Mono, sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.knowmore {
  width: 150px;
  position: absolute;
  top: 50%;
  right: 200px;
}

.knowmore.right {
  top: auto;
  bottom: 0%;
  left: 15%;
  right: auto;
}

.knowmore.hide {
  display: none;
}

.knowmore.version-2 {
  position: relative;
  top: 0%;
  left: 150px;
  right: auto;
}

.knowmore.version-2.hide {
  display: none;
}

.image-13 {
  max-width: 100%;
  opacity: .82;
  mix-blend-mode: normal;
  display: block;
}

.image-13.center {
  margin-top: 0;
  position: relative;
}

.hero-images {
  height: 50vh;
  max-height: 100%;
}

.div-block-6 {
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.div-block-6.verion-2 {
  margin-top: 0;
}

.div-block-7 {
  width: 50%;
  height: auto;
  margin-top: 0;
  margin-left: 20px;
  position: relative;
  top: 0;
}

.div-block-7.hide {
  display: block;
}

.div-block-7.hide.desktop {
  opacity: .7;
  display: none;
  position: absolute;
  top: 0%;
}

.div-block-7.hide.desktop.section {
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.div-block-7.hide.desktop.section-copy {
  width: 30%;
  margin-left: -10%;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.div-block-7.hide.desktop.section-portfolio {
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.div-block-7.mobile {
  display: none;
}

.image-14 {
  max-width: 75%;
  opacity: 1;
  mix-blend-mode: normal;
  position: relative;
  bottom: 0;
  left: 150px;
}

.image-14.mobile {
  max-width: 90%;
  top: auto;
  left: auto;
}

.image-14.mobile.hide {
  display: none;
}

.image-14-copy {
  max-width: 75%;
  opacity: 1;
  mix-blend-mode: normal;
  position: relative;
  bottom: -150px;
  left: 120px;
}

.ths12-overlay-4 {
  z-index: 5;
  background-image: linear-gradient(135deg, rgba(237, 66, 100, .2), rgba(202, 179, 116, .5)), url('../images/ths12_bg_mesh_gradient_4.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.ths12-cta-links-wrapper {
  grid-column-gap: 100px;
  color: #fff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 40px;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 100px;
  left: 0%;
  right: 0%;
}

.ths12-overlay-3 {
  z-index: 5;
  background-image: linear-gradient(135deg, rgba(237, 66, 100, .2), rgba(202, 179, 116, .5)), url('../images/ths12_bg_mesh_gradient_3.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.ths12-heading-h1-span {
  border-bottom: 2px solid rgba(255, 237, 188, .2);
}

.ths12-heading-h1-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.ths12-link-hover-line {
  width: 0%;
  height: 1px;
  background-color: #fff;
}

.ths12-link-line-wrapper {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .3);
  overflow: hidden;
}

.ths12-overlay-5 {
  z-index: 5;
  background-image: linear-gradient(135deg, rgba(237, 66, 100, .2), rgba(202, 179, 116, .5)), url('../images/ths12_bg_mesh_gradient_5.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.ths12-overlay-2 {
  z-index: 5;
  background-image: linear-gradient(135deg, rgba(237, 66, 100, .2), rgba(202, 179, 116, .5)), none;
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.ths12-wrapper {
  z-index: 6;
  width: 100%;
  max-width: 1234px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.ths12-heading-bg-circle {
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 237, 188, .2);
  border-right-width: 3px;
  border-radius: 50%;
  position: absolute;
}

.ths12-heading-h1 {
  z-index: 1;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  position: relative;
}

.ths12-heading-h1.ths12-margin-left {
  margin-left: 40px;
}

.ths12-cta-link {
  color: #fff;
  letter-spacing: .5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 40px;
  text-decoration: none;
  display: flex;
}

.ths12-hero-section {
  min-height: 100vh;
  justify-content: center;
  align-items: stretch;
  padding-left: 70px;
  padding-right: 70px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ths12-overlay-1 {
  z-index: 5;
  background-image: linear-gradient(135deg, rgba(237, 66, 100, .2), rgba(202, 179, 116, .5)), url('../images/ths12_bg_mesh_gradient_1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.download {
  height: auto;
}

.cta {
  max-height: 65px;
}

.section-2_v2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section-2_v2.hero {
  height: 100vh;
  text-align: center;
  cursor: auto;
  padding-top: 100px;
  padding-bottom: 60px;
}

.section-2_v2.hero.grain {
  height: 90vh;
  opacity: 1;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  padding-bottom: 0;
}

.section-2_v2.grain {
  background-color: rgba(26, 29, 49, .2);
  background-image: url('../images/Grain-Background.png');
  background-size: 300px 300px;
  padding-bottom: 60px;
}

.section-2_v2.grain.padding-top-40 {
  background-color: rgba(162, 162, 240, 0);
  padding-top: 40px;
}

.section-2_v2.grain.timeline {
  padding-bottom: 60px;
}

.section-2_v2.grain.slim {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-2_v2.grain.copyright {
  padding-bottom: 40px;
}

.section-2_v2.grain.hide {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.section-2_v2.grain.first {
  padding-top: 60px;
}

.section-2_v2.black.hide {
  display: none;
}

.section-2_v2.copyright {
  padding-top: 100px;
  padding-bottom: 20px;
}

.knowmore_v2 {
  width: 150px;
  position: absolute;
  top: 50%;
  right: 200px;
}

.knowmore_v2.right {
  top: auto;
  bottom: 0%;
  left: 15%;
  right: auto;
}

.knowmore_v2.hide {
  display: none;
}

.hero-blob_v2 {
  width: 100%;
  height: auto;
  opacity: .5;
  filter: brightness();
  cursor: auto;
  mix-blend-mode: normal;
  display: block;
  position: relative;
  top: -80px;
  bottom: 20px;
  left: 60px;
}

.hero-blob_v2.hide {
  display: none;
}

.image-14_v2 {
  max-width: 75%;
  opacity: 1;
  mix-blend-mode: normal;
  position: relative;
  bottom: 0;
  left: 150px;
}

.container-3_v2 {
  z-index: 2;
  width: 90%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.container-3_v2.hero {
  width: 70%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.container-3_v2.small {
  max-width: 920px;
}

.container-3_v2.small.flex {
  justify-content: flex-start;
  align-items: flex-start;
}

.container-3_v2.centred {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-3_v2.centred.full-width {
  align-items: stretch;
}

.div-block-7_v2 {
  width: 50%;
  height: auto;
  margin-top: 0;
  margin-left: 20px;
  position: relative;
  top: 0;
}

.div-block-7_v2.hide {
  display: block;
}

.div-block-7_v2.hide.desktop {
  position: absolute;
  top: 40%;
}

.div-block-7_v2.mobile {
  display: none;
}

.div-block-6_v2 {
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.knowmore-center {
  width: 150px;
  position: absolute;
  top: 50%;
  right: 200px;
}

.knowmore-center.right {
  top: auto;
  bottom: 0%;
  left: 15%;
  right: auto;
}

.knowmore-center.hide {
  display: none;
}

.knowmore-center.version-2 {
  width: 110px;
  padding-top: 40px;
  top: 75%;
  right: auto;
}

.text-span-5, .text-span-6 {
  color: var(--liliac-light);
}

.div-block-background {
  width: auto;
  height: auto;
  margin-top: 0;
  margin-left: auto;
  position: absolute;
  top: 0;
}

.div-block-background.hide {
  display: block;
}

.div-block-background.hide.desktop {
  opacity: .7;
  position: absolute;
  top: 40%;
}

.div-block-background.mobile {
  display: none;
}

.hero-blob-backgound {
  width: 100%;
  height: auto;
  opacity: .5;
  filter: brightness();
  cursor: auto;
  mix-blend-mode: normal;
  display: block;
  position: relative;
  top: -80px;
  bottom: 20px;
  left: 40px;
}

.hero-blob-backgound.hide {
  display: none;
}

.same-line {
  display: flex;
}

.counter-container-2-expertise {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin-top: 40px;
  margin-bottom: 0;
}

.counter-container-2-expertise.large {
  grid-column-gap: 64px;
}

.counter-container-2-expertise.large.expertise {
  width: 100%;
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  border-radius: 12px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-content: center;
  justify-content: start;
  align-self: flex-start;
  justify-items: stretch;
  margin-top: 24px;
  padding-top: 0;
  padding-left: 5px;
  padding-right: 5px;
}

.counter-container-2-expertise.large.ecosystem {
  width: 100%;
  grid-column-gap: 20px;
  grid-auto-flow: column;
}

.div-block-ecosystem {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  color: rgba(255, 255, 255, .7);
  background-color: rgba(26, 29, 49, 0);
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: 200px;
  grid-auto-columns: 200px;
  align-content: start;
  align-items: start;
  justify-items: center;
  margin-top: 0;
  padding: 15px 10px 10px;
  line-height: 1;
  display: grid;
}

.div-block-ecosystem.hide {
  display: none;
}

.div-block-ecosystem.focused {
  max-width: 100%;
  border: 1px solid var(--yellow-light);
  background-image: linear-gradient(60deg, var(--dark-blu), rgba(252, 189, 14, .18));
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  box-shadow: 1px 1px 3px rgba(232, 234, 246, .79);
}

.div-block-ecosystem.focused.puglia-orizzonti {
  background-image: linear-gradient(60deg, var(--dark-blu), rgba(0, 196, 250, .18));
  box-shadow: 1px 1px 3px 0 var(--ciano);
  border-color: #3000f0;
}

.div-block-ecosystem.focused.lamia {
  border-color: var(--culture);
  background-image: linear-gradient(60deg, #112b1f, rgba(0, 82, 38, .4));
}

.counter-circle-expertise {
  width: 150px;
  height: 150px;
  background-color: rgba(242, 242, 242, .05);
  border: 3px #a2a2f0;
  border-radius: 18px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.counter-circle-expertise.expertise {
  width: 100%;
  height: auto;
  border-style: solid;
  border-color: rgba(252, 189, 14, .23);
  border-radius: 18px;
}

.counter-circle-expertise.expertise.business {
  width: auto;
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  justify-content: flex-start;
  margin-top: -30px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 10px;
}

.counter-circle-expertise.expertise.design {
  width: auto;
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  border-color: rgba(114, 114, 224, .25);
  justify-content: flex-start;
  margin-top: -30px;
  padding-top: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.counter-circle-expertise.expertise.tech {
  width: auto;
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  border-color: rgba(156, 186, 216, .2);
  justify-content: flex-start;
  margin-top: -30px;
  padding-top: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.counter-circle-expertise.ecosytem {
  width: 100%;
  height: auto;
  border-radius: 17px;
}

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

.left-div.max-800w {
  max-width: 800px;
}

.left-div.max-800w.margin-xl {
  width: 90%;
  max-width: none;
  align-items: center;
  margin-left: auto;
}

.left-div.max-800w.margin-xl.know-more {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
}

.left-div.max-800w.margin-xl.know-more.hide {
  display: none;
}

.left-div.max-800w.margin-xl.full {
  width: 100%;
}

.image-5-copy {
  width: auto;
  height: 30px;
  padding-top: 5px;
}

.image-5-copy.hide {
  display: none;
}

.image-5-copy.ecoosystem {
  opacity: .66;
}

.image-4-interview-founder {
  height: 140px;
  object-fit: cover;
  border: 2px dashed rgba(255, 255, 255, .3);
  border-radius: 50%;
  padding: 5px;
}

.image-4-interview-founder.ring {
  border-style: solid;
  border-color: var(--goldenrod);
  mix-blend-mode: normal;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0) 31%, rgba(252, 189, 14, .56));
}

.image-4-interview-founder.ring.squared {
  width: 140px;
}

.image-4-interview-founder.ring.ecosystem {
  height: auto;
  object-fit: scale-down;
  background-image: none;
  border-style: none;
  border-radius: 0%;
  margin-top: -25px;
  padding-top: 0;
}

.image-4-interview-founder.ring.ecosystem:hover {
  filter: hue-rotate(135deg);
}

.image-4-interview-founder.no-ring {
  height: 250px;
  border-style: none;
  border-radius: 12%;
  padding: 0;
}

.image-4-interview-founder.no-ring.edit {
  height: auto;
  border-radius: 0%;
}

.link-4 {
  color: var(--liliac-light);
}

.container-partners {
  z-index: 2;
  width: 90%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.container-partners.hero {
  height: 100%;
  display: flex;
}

.container-partners.small {
  max-width: 920px;
}

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

.container-partners.centred {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-partners.centred.full-width {
  width: 100%;
  align-items: stretch;
}

.subscribe__form__text {
  color: #000;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  font-size: 1.6em;
  font-weight: 200;
}

.checkbox-2 {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  border-color: #000;
  border-radius: 2px;
  margin-left: -1.39em;
  margin-right: 1.39em;
}

.checkbox-2.w--redirected-checked {
  filter: invert();
  background-color: rgba(0, 0, 0, 0);
  border-color: #fff;
}

.subscribe__form__flex {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.arrow-2 {
  width: 1.5em;
  max-width: none;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 41.5em;
  right: 0%;
}

.checkbox__label {
  color: rgba(0, 0, 0, .92);
  font-size: 1.11em;
  font-weight: 200;
}

.subscribe__form__input__wrapper {
  width: 30%;
  color: rgba(0, 0, 0, .92);
  align-items: center;
  display: flex;
  position: relative;
}

.button__submit {
  width: 25.7em;
  height: 3.1em;
  color: #141414;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  font-size: 1.25em;
  font-weight: 200;
  line-height: 2;
  position: relative;
}

.button__submit:hover {
  font-weight: 400;
}

.checkbox-field-2 {
  width: 54.5em;
  margin-top: 1.53em;
  padding-left: 1.39em;
  display: flex;
}

.text__field__input {
  width: 47.6em;
  height: 2.5em;
  color: rgba(0, 0, 0, .92);
  letter-spacing: .03em;
  background-color: rgba(0, 0, 0, 0);
  border: 0 solid #000;
  border-bottom: 2px solid rgba(0, 0, 0, .92);
  margin-bottom: 0;
  margin-right: 1.47em;
  padding: 0;
  font-size: 1.94em;
  font-weight: 400;
  line-height: 1.71;
}

.text__field__input:hover, .text__field__input:active, .text__field__input:focus {
  border-bottom-color: rgba(0, 0, 0, .92);
}

.text__field__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, .7);
}

.text__field__input::placeholder {
  color: rgba(0, 0, 0, .7);
}

.form__wrapper {
  opacity: 1;
}

.gallery-scroll-track {
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.gallery-container {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0;
  overflow: hidden;
}

.gallery-track {
  width: 300vw;
  height: 100%;
  align-items: center;
  display: flex;
  position: relative;
}

.gallery-image {
  height: 70vh;
  border-radius: 5px;
  flex: 1;
  margin: 20px;
  box-shadow: 1px 1px 19px rgba(0, 0, 0, .25);
}

.gallery-image._1 {
  background-image: url('../images/saso-tusar-181518_compressed.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-image._2 {
  background-image: url('../images/carson-arias-197710_compressed.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-image._3 {
  background-image: url('../images/andrew-bui-277993_compressed.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section_1h {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section_1h.hero {
  height: 100vh;
  cursor: auto;
}

.section_1h.hero.grain {
  height: 90vh;
  opacity: 1;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  padding-bottom: 0;
}

.section_1h.grain {
  background-color: rgba(26, 29, 49, .2);
  background-image: url('../images/Grain-Background.png');
  background-size: 300px 300px;
  padding-bottom: 60px;
}

.section_1h.grain.padding-top-40 {
  background-color: rgba(162, 162, 240, 0);
  padding-top: 40px;
}

.section_1h.grain.timeline {
  padding-bottom: 60px;
}

.section_1h.grain.slim {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section_1h.grain.copyright {
  padding-bottom: 40px;
}

.section_1h.grain.hide {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.section_1h.grain.first {
  padding-top: 60px;
}

.section_1h.black.hide {
  display: none;
}

.section_1h.copyright {
  padding-top: 100px;
  padding-bottom: 20px;
}

.section-2-1h {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section-2-1h.hero {
  height: 100vh;
}

.section-2-1h.hero.grain {
  height: 90vh;
  background-image: url('../images/slide-16-9-hero-1.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 80%;
  padding-bottom: 0;
}

.section-2-1h.grain {
  background-color: rgba(26, 29, 49, .2);
  background-image: url('../images/Grain-Background.png');
  background-size: 300px 300px;
  padding-top: 140px;
  padding-bottom: 60px;
}

.section-2-1h.grain.padding-top-40 {
  background-color: rgba(162, 162, 240, 0);
  padding-top: 40px;
}

.section-2-1h.grain.timeline {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-2-1h.grain.slim {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-2-1h.grain.copyright {
  padding-bottom: 40px;
}

.section-2-1h.grain.grey.light {
  background-image: url('../images/Grain-Background.png');
  background-position: 0 0;
  background-size: 300px 300px;
  padding-top: 60px;
}

.section-2-1h.grain.hide {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.section-2-1h.grain.first {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  justify-content: center;
  padding-top: 60px;
  display: flex;
}

.section-2-1h.grain.slim-cta {
  padding-top: 0;
  padding-bottom: 40px;
}

.section-2-1h.black.hide {
  display: none;
}

.section-2-1h.copyright {
  padding-top: 100px;
  padding-bottom: 20px;
}

.section-2-1h.highlight {
  padding-top: 40px;
  padding-bottom: 140px;
}

.section-2-1h.highlight.hide {
  display: none;
}

.section-2-1h.highlight.grain {
  background-image: none;
  background-size: auto;
  padding-top: 40px;
}

.section-2-1h.highlight.grain.light {
  padding-top: 0;
  padding-bottom: 60px;
}

.section-2-1h.slim {
  padding-bottom: 20px;
}

.section-2-1h.slim.grain {
  background-image: none;
  background-size: auto;
}

.container-billboard {
  z-index: 2;
  width: 90%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.container-billboard.hero {
  height: 100%;
  display: flex;
}

.container-billboard.small {
  max-width: 920px;
}

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

.container-billboard.centred {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-billboard.centred.full-width {
  width: 100%;
  max-width: none;
  align-items: stretch;
}

.container-billboard.centred.full-width.hide {
  display: none;
}

.track-horizontal {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.page-wrapper-panel {
  height: auto;
  max-width: 90%;
  margin-left: 0%;
  margin-right: 0;
}

.page-wrapper-panel.hide, .custom-css {
  display: none;
}

.buttons-wrapper {
  z-index: 5;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: opacity .2s;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bg-gradient-blur {
  width: 50%;
  height: 50%;
  opacity: .75;
  filter: blur(100px);
  background-image: linear-gradient(#f969fc, #bc01f0 50%, #0c01de);
  display: none;
  position: absolute;
  top: -10%;
  bottom: auto;
  left: -10%;
  right: auto;
}

.bg-gradient-blur._2 {
  top: -25%;
  left: 15%;
}

.scroller {
  z-index: 1;
  width: 100%;
  height: 12.5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  left: auto;
  overflow: hidden;
}

.background {
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.main-wrapper {
  width: 100%;
  height: 100vh;
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 0%;
  margin-right: 0;
  display: flex;
}

.scroll-text {
  color: #fff;
  letter-spacing: -.02em;
  flex: none;
  margin-right: 5vw;
  font-size: 8vw;
  line-height: 1.37;
}

.noise {
  opacity: .5;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.noise.hide {
  display: none;
}

.button-7 {
  z-index: 5;
  width: 13.4vw;
  height: 3.47vw;
  text-align: center;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(36deg, #f969fc 14%, #bc01f0 38%, #0c01de 85%);
  border: 1.4px solid #fff;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.4;
  display: flex;
  position: relative;
}

.button-7.dark {
  z-index: 0;
  color: rgba(0, 0, 0, 0);
  background-color: #0d0d0d;
  background-image: none;
  border-color: rgba(255, 255, 255, .5);
  position: absolute;
}

.button-7.dark._2 {
  z-index: 2;
  opacity: .9;
}

.button-7.dark._1 {
  z-index: 3;
}

.button-7.dark._3 {
  z-index: 1;
  opacity: .8;
}

.line-divider {
  width: 100%;
  height: .0625rem;
  background-color: #fff;
}

.line-divider._3 {
  width: 100%;
}

.line-divider._3.hide {
  display: none;
}

.line-divider._1 {
  width: 100%;
  background-color: var(--yellow-light);
}

.line-divider._1.hide {
  display: none;
}

.line-divider._2 {
  width: 100%;
}

.line-divider._2.hide {
  display: none;
}

.move-text {
  white-space: nowrap;
  font-size: 48px;
}

.move-text.primary-font.second {
  align-self: auto;
}

.social-bunner.background-color-white.display-flex-horizontal {
  justify-content: flex-start;
}

.main-link {
  color: #000;
  font-size: 48px;
  text-decoration: none;
}

.main-link.footer {
  font-size: 18px;
}

.main-link.footer:hover {
  font-style: italic;
}

.move-wrapper.position-absolute {
  z-index: 2;
  top: 10%;
}

.move-wrapper.position-absolute.background-color-black.display-flex-horizontal {
  z-index: 1;
  width: 103vw;
  perspective: 804px;
  perspective-origin: 50%;
  transform-origin: 0%;
  flex-direction: row;
  justify-content: flex-end;
  right: auto;
  transform: translate(-14px, 57px)perspective(1078px)rotate(-6deg);
}

.image-15 {
  width: 100%;
  height: 100%;
}

.overflow-hidden {
  position: relative;
  overflow: hidden;
}

.main-paragraph {
  width: 100%;
  max-width: 374px;
  color: var(--yellow-light);
  font-family: Alliance no, sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

.main-paragraph.text-align-center {
  font-size: 16px;
}

.main-paragraph.margin-bottom.margin-small.tab {
  font-size: 14px;
}

.main-paragraph.margin-top {
  white-space: normal;
}

.main-paragraph.margin-top.text-weight-bold {
  font-size: 24px;
}

.main-paragraph.margin-top.margin-xxsmall.max-width-full {
  max-width: none;
  color: var(--dark-blu);
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.main-paragraph.margin-top.margin-xxsmall.max-width-full.orange {
  color: var(--dark-blu);
}

.main-paragraph.margin-top.margin-xxsmall.illustrations {
  max-width: 573px;
}

.main-paragraph.margin-top.margin-xxsmall.text-style-italic {
  font-size: 24px;
}

.section-heading.heading-large {
  font-weight: 400;
}

.section-heading.heading-large.footer {
  font-size: 64px;
}

.section-heading.heading-large.footer.primary-font {
  line-height: 1;
}

.section-heading.heading-large.text-color-black {
  color: var(--yellow-light);
  text-align: right;
  font-size: 5vw;
}

.heading-container.padding-vertical.padding-custom1.border-bottom.overflow-hidden {
  perspective: 1510px;
  padding-top: 26px;
  padding-left: 0;
  padding-right: 0;
  transform: perspective(1353px);
}

.lightbox.display-flex-horizontal {
  color: #fff;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.form-message-success {
  text-align: left;
  background-color: #a3ec88;
  padding: 1rem 1.25rem;
}

.image-wrapper-branding.overflow-hidden.margin-top.margin-xlarge.width-50vw {
  margin-left: -10.4vw;
}

.left-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  top: -9%;
  bottom: auto;
  left: auto;
  right: 12%;
  transform: rotate(45deg);
}

.left-arrow.background-color-black {
  width: 54px;
  height: 54px;
  cursor: none;
  border: 4px solid #fff;
  transform: rotate(135deg);
}

.left-arrow.background-color-black:hover {
  filter: invert();
}

.html-embed {
  display: none;
}

.navbar-3 {
  background-color: rgba(0, 0, 0, 0);
  position: static;
  top: 0;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.lottie-animation {
  width: 200%;
  height: 200%;
  object-fit: cover;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.lottie-animation._2 {
  width: auto;
  height: auto;
}

.lottie-animation.cell {
  width: 149%;
}

.lottie-animation._3 {
  width: 120%;
}

.position-relative {
  justify-content: center;
  align-items: center;
  position: relative;
}

.position-relative.display-flex-horizontal {
  width: 68px;
  height: 53px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 0;
}

.filter {
  width: 263px;
  height: 100%;
}

.filter.position-absolute.sixth {
  background-color: rgba(163, 236, 136, .25);
}

.filter.position-absolute.third {
  background-color: rgba(0, 0, 0, .25);
}

.filter.position-absolute.second {
  background-color: rgba(113, 210, 242, .25);
}

.filter.position-absolute.fifth {
  background-color: rgba(135, 75, 249, .25);
}

.filter.position-absolute.first {
  background-color: rgba(238, 207, 39, .25);
}

.filter.position-absolute.fourth {
  background-color: rgba(239, 161, 103, .25);
}

.number-wrap.position-absolute {
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.number-wrap.position-absolute.display-flex-horizontal {
  padding-bottom: 40px;
  font-size: 24px;
}

.wrap-text-illustrations {
  width: 651px;
}

.wrap-text-illustrations.position-absolute {
  background-color: rgba(255, 255, 255, .8);
  padding: 45px 80px;
  bottom: 0;
}

.faq-question-bar {
  color: #1a1e27;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px rgba(0, 0, 0, .07);
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  display: flex;
}

.faq-question-bar.padding-top.padding-custom1.hover {
  padding-top: 20px;
}

.back-to-top-link {
  width: 83px;
  height: 83px;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.back-to-top-link.hover {
  z-index: 9999;
  position: fixed;
  bottom: 7%;
  right: 3%;
}

.back-to-top-link.hover.w--current {
  z-index: 2147483647;
}

.client-name.primary-font {
  font-size: 24px;
}

.form-message-error {
  color: #cc0606;
  background-color: rgba(0, 0, 0, 0);
  margin-top: .75rem;
  padding: .75rem .75rem .75rem 0;
}

.image-move {
  height: 43vw;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}

.image-move.position-relative {
  width: 100%;
  height: 100vh;
  background-color: #525a89;
  align-items: flex-end;
  display: flex;
}

.image-move.position-relative.tird {
  z-index: 0;
  background-color: #c0e4b6;
}

.image-move.position-relative.tird.overflow-hidden {
  z-index: 0;
  justify-content: center;
}

.image-move.position-relative.fourth {
  z-index: 0;
  background-color: #525a89;
  background-image: none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 100vh;
}

.image-move.position-relative.fourth.overflow-hidden {
  z-index: 0;
  justify-content: center;
}

.image-move.position-relative.secon {
  z-index: 0;
  background-color: #00545f;
}

.image-move.position-relative.secon.overflow-hidden {
  z-index: 0;
  justify-content: center;
}

.image-move.position-relative.first {
  background-color: #01197d;
}

.image-move.position-relative.first.overflow-hidden {
  z-index: 3;
  justify-content: center;
  align-self: center;
}

.right-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  top: -9%;
  bottom: auto;
  left: auto;
  right: 5%;
}

.right-arrow.background-color-black {
  width: 54px;
  height: 54px;
  cursor: none;
  border: 4px solid #fff;
  transform: rotate(-45deg);
}

.right-arrow.background-color-black:hover {
  filter: invert();
}

.moved-image {
  width: 35vw;
}

.image-size {
  width: 100%;
  height: 100vh;
  max-width: none;
  object-fit: fill;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.social-link {
  width: 22px;
  height: auto;
}

.wrapper-faq.display-flex-horizontal {
  justify-content: flex-start;
}

.wrapper-faq.display-flex-horizontal.is-mobile-vertical, .wrapper-faq.display-flex-horizontal.is-mobile-vertical.relative-position {
  position: relative;
}

.wrap-line {
  width: 25vw;
  height: 1.5vh;
  border: 1px solid #000;
  margin-bottom: 36px;
  margin-right: 40px;
  display: none;
}

.line {
  width: 75%;
  height: 100%;
  background-color: #000;
}

.line.fourth {
  width: 50%;
}

.line.first {
  width: 80%;
}

.line.fifth {
  width: 90%;
}

.line.second {
  width: 85%;
}

.nav-link-2.margin-0.padding-0.heading-large.text-weight-bold {
  z-index: 1;
  color: #020202;
  text-align: center;
  font-size: 72px;
  transition: letter-spacing .4s ease-in-out;
}

.nav-link-2.margin-0.padding-0.heading-large.text-weight-bold:hover {
  font-style: italic;
}

.nav-link-2.margin-0.padding-0.heading-large.text-weight-bold.w--current {
  width: auto;
  color: #000;
  font-weight: 400;
}

.nav-link-2.margin-0.padding-0.heading-large.text-weight-bold.first {
  z-index: 1;
  width: auto;
  font-size: 72px;
}

.nav-link-2.margin-0.padding-0.heading-large.text-weight-bold.first.hover.w--current {
  font-weight: 700;
}

.link-span {
  color: #000;
}

.link-span:hover {
  font-style: italic;
}

.my-skill-wrap.padding-bottom.padding-custom1.border-bottom {
  padding: 20px .8rem 40px;
  transition: background-color .4s ease-in-out;
}

.my-skill-wrap.padding-bottom.padding-custom1.border-bottom:hover {
  background-color: #efcf27;
  padding-left: .8rem;
  padding-right: .8rem;
}

.my-skill-wrap.padding-bottom.padding-custom1.border-bottom.fouth:hover {
  background-color: #a3ec88;
}

.my-skill-wrap.padding-bottom.padding-custom1.border-bottom.fifth {
  padding-bottom: 60px;
}

.my-skill-wrap.padding-bottom.padding-custom1.border-bottom.fifth:hover {
  background-color: #71d2f2;
}

.my-skill-wrap.padding-bottom.padding-custom1.border-bottom.third:hover {
  background-color: #874bf9;
}

.my-skill-wrap.padding-bottom.padding-custom1.border-bottom.second:hover {
  background-color: #f55cd8;
}

.wrap-moved-images.display-flex-horizontal {
  flex: none;
  position: relative;
}

.avatar {
  width: 330px;
  height: 330px;
  background-image: none;
  background-position: 50%;
  background-size: cover;
}

.avatar.border-radius {
  background-image: none;
}

.avatar.border-radius.overflow-hidden {
  flex: none;
}

.image-background {
  width: 40vw;
}

.image-background.second.position-absolute {
  top: -13%;
  right: 24%;
  transform: rotate(-43deg);
}

.image-background.second.position-absolute.hide-mobile {
  width: 30vw;
  top: 10%;
}

.image-background.third.position-absolute {
  width: 60vw;
  top: -1%;
  left: -26%;
  right: auto;
}

.image-background.third.position-absolute.hide-mobile {
  width: 30vw;
}

.image-background.position-absolute {
  width: 50vw;
  height: auto;
  position: absolute;
  top: 23%;
  bottom: auto;
  left: auto;
  right: -19%;
  transform: rotate(-23deg);
}

.image-background.position-absolute.footer {
  top: auto;
  bottom: -48%;
  left: -14%;
  right: auto;
  transform: rotate(180deg);
}

.image-background.position-absolute.footer.third {
  top: -16%;
  bottom: auto;
  left: auto;
  right: 8%;
}

.image-background.position-absolute.footer.second {
  top: -6%;
  left: -16%;
  transform: rotate(180deg);
}

.image-background.position-absolute.footer.fourth {
  top: auto;
  left: auto;
  right: 13%;
}

.image-background.fourth.position-absolute {
  top: 48%;
  left: 10%;
  right: auto;
}

.image-background.position-absolute {
  width: 50vw;
  height: auto;
  top: 23%;
  bottom: auto;
  left: auto;
  right: -19%;
  transform: rotate(-23deg);
}

.image-background.position-absolute.hide {
  display: none;
}

.image-background.position-absolute.footer {
  width: 40vw;
  top: auto;
  bottom: -48%;
  left: 0%;
  right: auto;
  transform: rotate(180deg);
}

.image-background.position-absolute.footer.second {
  width: 40vw;
  top: -6%;
  left: -10%;
  transform: rotate(180deg);
}

.image-background.position-absolute.footer.second.last {
  top: -10%;
}

.image-background.position-absolute.footer.second.last.edit {
  filter: hue-rotate(180deg);
}

.image-background.position-absolute.footer.third {
  top: -16%;
  bottom: auto;
  left: auto;
  right: 8%;
}

.image-background.position-absolute.footer.third.edit {
  filter: hue-rotate(180deg);
}

.image-background.position-absolute.footer.fourth {
  z-index: -1;
  width: 30vw;
  background-color: rgba(0, 0, 0, 0);
  top: auto;
  left: auto;
  right: 50%;
}

.image-background.position-absolute.footer.copy {
  width: 30vw;
  background-color: rgba(0, 0, 0, 0);
  left: 5%;
}

.address-wrap {
  flex: 1;
  padding-right: 100px;
  position: relative;
}

.icon-menu {
  z-index: 1;
  font-size: 116px;
  position: absolute;
  top: -29px;
  right: 0;
}

.sticker {
  align-self: auto;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: relative;
  left: -15%;
}

.sticker.position-relative.padding-top.padding-xxhuge.custom-background {
  padding-top: 22.3rem;
}

.sticker.position-relative.padding-top.padding-xxhuge.custom-background.overflow-hidden {
  z-index: 99;
}

.sticker.hero {
  left: auto;
}

.sticker.hide {
  display: none;
}

.clients-image {
  width: 263px;
  height: 100%;
  object-fit: cover;
}

.brand-image {
  z-index: 1;
  width: 100px;
  position: relative;
}

.image-effect-wrapper {
  height: 400vh;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.grid-3-columns {
  grid-column-gap: 30px;
  grid-row-gap: 22px;
  grid-template-columns: 1fr 1fr 1fr;
}

.main-text.primary-font.text-size-xlarge.hover {
  cursor: none;
}

.main-text.heading-large.primary-font {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 2vw;
}

.main-text.heading-large.text-weight-normal {
  font-size: 64px;
}

.main-text._96px {
  font-size: 96px;
}

.main-text._96px.primary-font {
  color: var(--dark-blu);
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.text-span-7.text-weight-normal.secondary-font.text-style-italic {
  font-size: 3.8vw;
}

.text-span-7.text-weight-normal.secondary-font.dark {
  color: var(--dark-blu);
}

.text-span-7.secondary-font.contact, .text-span-7.text-style-bold._48 {
  font-size: 48px;
}

.grid-4-columns {
  grid-column-gap: 0px;
  grid-row-gap: 100px;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-columns: 1fr;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.grid-4-columns.margin-top.margin-xhuge {
  grid-column-gap: 121px;
  grid-row-gap: 56px;
  margin-top: 200px;
  margin-bottom: 200px;
}

.arrow-image {
  width: 30px;
  height: 50px;
}

.arrow-image.slider {
  width: 20px;
  height: 20px;
}

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

.row.display-flex-horizontal.border-bottom {
  justify-content: flex-start;
  align-items: center;
}

.row.padding-custom3.display-flex-horizontal {
  align-items: center;
}

.row.padding-custom3.display-flex-horizontal.is-tablet-padding-0 {
  perspective: 922px;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  transform: perspective(1000px);
}

.row.show-tablet.display-flex-horizontal.show-mobile-portrait {
  display: none;
}

.row.padding-bottom.padding-medium.display-flex-horizontal.clients {
  min-height: 850px;
  justify-content: center;
  align-items: center;
}

.row.padding-bottom.padding-medium.display-flex-horizontal.clients.position-relative {
  margin-top: 67px;
  transform: none;
}

.row.padding-bottom.padding-medium.display-flex-horizontal.clients.position-relative:hover {
  z-index: 10;
}

.row.padding-bottom.padding-medium.display-flex-horizontal.clients.position-relative.hide-tablet {
  width: auto;
  height: auto;
}

.row.padding-bottom.padding-medium.display-flex-horizontal.border-bottom {
  perspective: 1471px;
  justify-content: flex-start;
  align-items: center;
  transform: perspective(1647px);
}

.row.padding-bottom.padding-medium.display-flex-horizontal.border-bottom.overflow-hidden {
  z-index: 9;
  perspective: 1706px;
  border-top-color: #000;
  border-bottom-style: none;
  border-left: 1px #000;
  border-right: 1px #000;
  justify-content: center;
  display: flex;
  transform: perspective(1510px);
}

.row.padding-bottom.padding-medium.display-flex-horizontal.border-bottom.center {
  justify-content: center;
}

.row.padding-bottom.padding-medium.display-flex-horizontal.border-bottom.left {
  justify-content: flex-end;
}

.row.padding-bottom.padding-large.border-bottom.white {
  border-bottom-color: #fff;
}

.row.padding-bottom.padding-large.border-bottom.white.display-flex-horizontal {
  align-items: flex-end;
}

.row.padding-bottom.padding-large.border-bottom.white.display-flex-horizontal.max-width-full {
  perspective: 1706px;
  justify-content: space-between;
  display: flex;
  transform: perspective(1529px);
}

.row.display-flex-horizontal {
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}

.row.display-flex-horizontal.top {
  align-items: flex-start;
}

.row.display-flex-horizontal.margin-top-auto {
  align-items: flex-start;
  margin-top: auto;
}

.row.display-flex-horizontal.heart {
  align-items: center;
}

.row.display-flex-horizontal.border-bottom {
  z-index: 1;
  justify-content: space-between;
  position: relative;
}

.row.display-flex-horizontal.border-bottom.padding-bottom.padding-xsmall {
  justify-content: space-between;
}

.row.display-flex-horizontal._2 {
  justify-content: space-between;
  align-items: center;
}

.row.display-flex-horizontal.margin-top.margin-medium.second {
  justify-content: flex-end;
}

.row.display-flex-horizontal.center {
  align-items: center;
}

.row.display-flex-horizontal.is-mobile-horizontal {
  align-items: flex-start;
}

.row.display-flex-horizontal.is-mobile-horizontal.center {
  justify-content: flex-start;
}

.clients.custom-background.padding-vertical.padding-huge {
  padding-bottom: 0;
}

.main-heading.heading-xlarge.text-align-center {
  font-size: 11.8vw;
}

.lottie-wrap {
  width: 84px;
  height: 71px;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon-white {
  width: 63px;
}

.icon-white.margin-right.margin-small {
  width: 72px;
  height: auto;
}

.icon-white.margin-right.margin-small.heart {
  width: 53px;
  margin-top: 0;
  margin-left: .7rem;
}

.icon-white.margin-right.margin-small.illustrations {
  margin-top: 0;
}

.link-5 {
  color: #000;
  text-decoration: none;
}

.branding-slider.background-color-white {
  height: auto;
}

.wrap-branding.position-relative {
  padding: 33px;
}

.branding.background-color-white.padding-vertical.padding-huge {
  width: 100%;
  background-color: rgba(255, 253, 230, .16);
  padding-top: 100px;
}

.back-to-top-image {
  width: 36px;
  height: auto;
  transform: rotate(-134deg);
}

.illustrations-wrap-text.max-width-medium.margin-left.margin-medium {
  margin-top: 2rem;
}

.illustrations-wrap-text.max-width-medium.margin-right.margin-huge {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 22px;
}

.column.width-50.display-flex-horizontal {
  justify-content: space-between;
  padding-top: 3px;
  display: flex;
}

.column.width-50.display-flex-horizontal.padding-right {
  padding-right: 23px;
}

.column.width-50.padding-left.padding-large {
  flex-direction: column;
  align-self: stretch;
  padding-bottom: 4rem;
  display: flex;
}

.column.width-50.padding-left.padding-xlarge.is-tablet-padding-0 {
  align-self: center;
}

.column.width-50.padding-vertical.padding-huge {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.column.width-50.padding-vertical.padding-huge.border-right {
  border-bottom: 1px #000;
}

.column.padding-top.padding-medium._50 {
  width: 50%;
}

.column.max-width-full {
  flex: 1;
}

.column.max-width-full.padding-left.padding-large.is-tablet-padding-0 {
  width: auto;
  perspective: 1255px;
  flex: 0 auto;
  transform: perspective(2000px);
}

.submit-button.background-color-white {
  color: #000;
  padding-left: 0;
}

.submit-button.background-color-white.text-style-allcaps {
  cursor: none;
  background-color: rgba(0, 0, 0, 0);
}

.submit-button.background-color-white.text-style-allcaps:hover {
  font-style: italic;
}

.text-field-3 {
  border: 1px #000;
  border-bottom-style: solid;
}

.text-field-3.padding-left {
  background-color: rgba(0, 0, 0, 0);
  padding-left: 0;
}

.text-field-3.padding-left:focus {
  border-bottom-color: #000;
}

.text-field-3.padding-left.min-height {
  min-height: 80px;
  padding-top: .9rem;
}

.text-field-3.padding-left.min-height:focus {
  border-bottom-color: #000;
}

.hover-image {
  width: 170px;
}

.hover-image.position-absolute {
  width: 230px;
  height: auto;
  max-width: none;
  top: 57%;
  bottom: auto;
  left: auto;
  right: -18%;
}

.container-4 {
  margin-left: auto;
  margin-right: auto;
}

.container-4.max-width-xxlarge {
  width: 95%;
  height: auto;
  max-width: 900px;
}

.container-4.max-width-xxlarge.display-flex-center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container-4.max-width-xxlarge.position-relative {
  z-index: 1;
  align-items: center;
}

.container-4.max-width-xxlarge.display-flex-horizontal {
  position: relative;
}

.container-4.max-width-xxlarge.padding-vertical.padding-large.display-flex-horizontal {
  z-index: 1;
  position: relative;
}

.grid-5-columns {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-5-columns.margin-top.margin-xxlarge {
  grid-template-columns: auto auto auto auto auto;
}

.clients-card {
  width: 600px;
  height: 365px;
}

.clients-card.display-flex-horizontal.position-absolute {
  transform: scale(.7);
}

.clients-card.display-flex-horizontal.position-absolute.first {
  z-index: 4;
  right: 21%;
}

.clients-card.display-flex-horizontal.position-absolute.first.z-index-hover {
  z-index: 0;
  transition: transform 1s cubic-bezier(.55, .492, 0, .991);
}

.clients-card.display-flex-horizontal.position-absolute.first.z-index-hover:hover {
  z-index: 10;
  transform: scale(1);
}

.clients-card.display-flex-horizontal.position-absolute.second {
  z-index: 5;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 9%;
}

.clients-card.display-flex-horizontal.position-absolute.second.z-index-hover {
  z-index: 0;
  transition: transform 1s cubic-bezier(.55, .492, 0, .991);
  transform: scale(.7);
}

.clients-card.display-flex-horizontal.position-absolute.second.z-index-hover:hover {
  transform: scale(1);
}

.clients-card.display-flex-horizontal.position-absolute.fourth {
  z-index: 0;
  transition: transform 1s cubic-bezier(.55, .492, 0, .991);
  top: 14%;
  bottom: auto;
  left: 21%;
  right: auto;
}

.clients-card.display-flex-horizontal.position-absolute.fourth:hover {
  z-index: 10;
  transform: scale(1);
}

.clients-card.display-flex-horizontal.position-absolute.third {
  z-index: 6;
  top: auto;
  bottom: 14%;
  left: auto;
  right: 2%;
}

.clients-card.display-flex-horizontal.position-absolute.third.z-index-hover {
  z-index: 0;
  transition: transform 1s cubic-bezier(.55, .492, 0, .991);
}

.clients-card.display-flex-horizontal.position-absolute.third.z-index-hover:hover {
  z-index: 10;
  transform: scale(1);
}

.clients-card.display-flex-horizontal.position-absolute.fifth {
  z-index: 0;
  transition: transform 1s cubic-bezier(.55, .492, 0, .991);
  top: 9%;
  bottom: auto;
  left: 3%;
  right: auto;
}

.clients-card.display-flex-horizontal.position-absolute.fifth:hover {
  z-index: 10;
  transform: scale(1);
}

.clients-card.display-flex-horizontal.position-absolute.sixth {
  z-index: 0;
  transition: transform 1s cubic-bezier(.55, .492, 0, .991);
  top: auto;
  bottom: 16%;
  left: 11%;
  right: auto;
}

.clients-card.display-flex-horizontal.position-absolute.sixth:hover {
  z-index: 10;
  transform: scale(1);
}

.icon {
  width: 40px;
  height: auto;
  margin-bottom: 10px;
}

.wrap-text-clients {
  flex: 1;
}

.wrap-text-clients.padding-horizontal.padding-medium {
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.wrap-text-clients.padding-horizontal.padding-medium.sixth {
  background-color: #a3ec88;
}

.wrap-text-clients.padding-horizontal.padding-medium.fifth {
  background-color: #874bf9;
}

.wrap-text-clients.padding-horizontal.padding-medium.second {
  background-color: #71d2f2;
}

.wrap-text-clients.padding-horizontal.padding-medium.third {
  color: #fff;
  background-color: #000;
}

.wrap-text-clients.padding-horizontal.padding-medium.fourth {
  background-color: #efa167;
}

.wrap-text-clients.padding-horizontal.padding-medium.first {
  background-color: #efcf27;
}

.icon-button {
  width: 22px;
  height: 22px;
  margin-top: -8px;
  margin-left: 4px;
  transform: rotate(-46deg);
}

.icon-button.position-absolute {
  top: 25%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bg-slider {
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bg-slider.second {
  background-color: #ffeae9;
}

.bg-slider.first {
  background-color: #d9e9ea;
}

.bg-slider.third {
  background-color: #fbf5ee;
}

.nav-menu-3.max-width-full.display-flex-horizontal.padding-right.border-bottom {
  padding-right: 96px;
  position: static;
  top: 0;
}

.cosmic-copy {
  cursor: auto;
  background-color: #f5f5f5;
  font-family: Space Mono, sans-serif;
}

.cosmic-copy.text {
  background-color: rgba(0, 0, 0, 0);
}

.cosmic-copy.interview {
  background-color: #1a1d31;
}

.container-creative {
  margin-left: auto;
  margin-right: auto;
}

.container-creative.max-width-xxlarge {
  width: 95%;
  height: auto;
}

.container-creative.max-width-xxlarge.display-flex-center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container-creative.max-width-xxlarge.position-relative {
  z-index: 1;
  align-items: center;
}

.container-creative.max-width-xxlarge.display-flex-horizontal {
  position: relative;
}

.container-creative.max-width-xxlarge.padding-vertical.padding-large.display-flex-horizontal {
  z-index: 1;
  position: relative;
}

.cursor {
  z-index: 9999;
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
  margin-left: -50px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.big-circle {
  width: 48px;
  height: 48px;
  -webkit-backdrop-filter: invert();
  backdrop-filter: invert();
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  display: block;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.small-cursor {
  width: 15px;
  height: 15px;
  -webkit-backdrop-filter: invert();
  backdrop-filter: invert();
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50%;
}

.circle-cursor {
  width: 139px;
  height: 139px;
  background-image: linear-gradient(216deg, rgba(135, 75, 249, .86) 11.56%, rgba(39, 220, 235, .59) 55%, rgba(239, 207, 39, .86) 92.25%);
  border-radius: 50%;
}

.circle-cursor.display-flex-horizontal {
  justify-content: center;
  align-items: center;
}

.circle-cursor.display-flex-horizontal.position-absolute {
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  display: flex;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.text-block-6 {
  color: #fff;
}

.avatar-copy {
  width: 330px;
  height: 330px;
  background-image: none;
  background-position: 50%;
  background-size: cover;
}

.avatar-copy.border-radius {
  background-image: none;
}

.avatar-copy.border-radius.overflow-hidden {
  border-radius: 50%;
  flex: none;
}

.avatar-creative {
  width: 330px;
  height: 330px;
  background-image: none;
  background-position: 50%;
  background-size: cover;
}

.avatar-creative.border-radius {
  background-image: none;
}

.avatar-creative.border-radius.overflow-hidden {
  flex: none;
}

.column-creative.width-50.padding-left.padding-xlarge.is-tablet-padding-0 {
  align-self: center;
}

.column-creative.width-50.padding-vertical.padding-huge {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.column-creative.width-50.padding-vertical.padding-huge.border-right {
  border-bottom: 1px #000;
}

.column-creative.max-width-full {
  flex: 1;
}

.column-creative.max-width-full.padding-left.padding-large.is-tablet-padding-0 {
  width: auto;
  perspective: 1255px;
  flex: 0 auto;
  transform: perspective(2000px);
}

.row-creative {
  z-index: 1;
  position: relative;
}

.row-creative.padding-custom3.display-flex-horizontal {
  align-items: center;
}

.row-creative.padding-custom3.display-flex-horizontal.is-tablet-padding-0 {
  perspective: 922px;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  transform: perspective(1000px);
}

.row-creative.display-flex-horizontal {
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}

.row-creative.display-flex-horizontal.heart {
  align-items: center;
}

.row-creative.display-flex-horizontal.border-bottom {
  z-index: 1;
  justify-content: space-between;
  position: relative;
}

.row-creative.display-flex-horizontal.border-bottom.padding-bottom.padding-xsmall {
  justify-content: space-between;
}

.row-creative.display-flex-horizontal._2 {
  justify-content: space-between;
  align-items: center;
}

.row-creative.display-flex-horizontal.is-mobile-horizontal {
  align-items: flex-start;
}

.cosmic-copu {
  color: #000;
  cursor: none;
  background-color: #fcfcfc;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
}

.image-background-copy {
  width: 40vw;
}

.image-background-copy.second.position-absolute {
  top: -13%;
  right: 24%;
  transform: rotate(-43deg);
}

.image-background-copy.third.position-absolute {
  width: 60vw;
  top: -1%;
  left: -26%;
  right: auto;
}

.image-background-copy.position-absolute {
  width: 50vw;
  height: auto;
  position: absolute;
  top: 23%;
  bottom: auto;
  left: auto;
  right: -19%;
  transform: rotate(-23deg);
}

.image-background-copy.position-absolute.footer {
  top: auto;
  bottom: -48%;
  left: -14%;
  right: auto;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.third {
  top: -16%;
  bottom: auto;
  left: auto;
  right: 8%;
}

.image-background-copy.position-absolute.footer.second {
  top: -6%;
  left: -16%;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.fourth {
  top: auto;
  left: auto;
  right: 13%;
}

.image-background-copy.fourth.position-absolute {
  top: 48%;
  left: 10%;
  right: auto;
}

.image-background-copy.position-absolute {
  width: 50vw;
  height: auto;
  top: 23%;
  bottom: auto;
  left: auto;
  right: -19%;
  transform: rotate(-23deg);
}

.image-background-copy.position-absolute.hide {
  display: none;
}

.background-2 {
  width: 100%;
  height: 100%;
  opacity: .81;
  mix-blend-mode: normal;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.image-background-copy {
  width: 40vw;
}

.image-background-copy.second.position-absolute {
  top: -13%;
  right: 24%;
  transform: rotate(-43deg);
}

.image-background-copy.third.position-absolute {
  width: 60vw;
  top: -1%;
  left: -26%;
  right: auto;
}

.image-background-copy.position-absolute {
  width: 50vw;
  height: auto;
  position: absolute;
  top: 23%;
  bottom: auto;
  left: auto;
  right: -19%;
  transform: rotate(-23deg);
}

.image-background-copy.position-absolute.footer {
  top: auto;
  bottom: -48%;
  left: -14%;
  right: auto;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.third {
  top: -16%;
  bottom: auto;
  left: auto;
  right: 8%;
}

.image-background-copy.position-absolute.footer.second {
  top: -6%;
  left: -16%;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.fourth {
  top: auto;
  left: auto;
  right: 13%;
}

.image-background-copy.fourth.position-absolute {
  top: 48%;
  left: 10%;
  right: auto;
}

.image-background-copy.position-absolute {
  width: 50vw;
  height: auto;
  top: 23%;
  bottom: auto;
  left: auto;
  right: -19%;
  transform: rotate(-23deg);
}

.image-background-copy.position-absolute.hide {
  display: none;
}

.image-background-copy.position-absolute.footer {
  width: 40vw;
  background-color: rgba(0, 0, 0, 0);
  top: auto;
  bottom: -48%;
  left: -14%;
  right: auto;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.second {
  top: -6%;
  left: -16%;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.third {
  top: -16%;
  bottom: auto;
  left: auto;
  right: 8%;
}

.image-background-copy.position-absolute.footer.fourth {
  top: auto;
  left: auto;
  right: 13%;
}

.image-background-copy {
  width: 40vw;
}

.image-background-copy.second.position-absolute {
  top: -13%;
  right: 24%;
  transform: rotate(-43deg);
}

.image-background-copy.third.position-absolute {
  width: 60vw;
  top: -1%;
  left: -26%;
  right: auto;
}

.image-background-copy.position-absolute {
  width: 50vw;
  height: auto;
  position: absolute;
  top: 23%;
  bottom: auto;
  left: auto;
  right: -19%;
  transform: rotate(-23deg);
}

.image-background-copy.position-absolute.footer {
  top: auto;
  bottom: -48%;
  left: -14%;
  right: auto;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.third {
  top: -16%;
  bottom: auto;
  left: auto;
  right: 8%;
}

.image-background-copy.position-absolute.footer.second {
  top: -6%;
  left: -16%;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.fourth {
  top: auto;
  left: auto;
  right: 13%;
}

.image-background-copy.fourth.position-absolute {
  top: 48%;
  left: 10%;
  right: auto;
}

.image-background-copy.position-absolute {
  width: 50vw;
  height: auto;
  top: 23%;
  bottom: auto;
  left: auto;
  right: -19%;
  transform: rotate(-23deg);
}

.image-background-copy.position-absolute.hide {
  display: none;
}

.image-background-copy.position-absolute.footer {
  top: auto;
  bottom: -48%;
  left: -14%;
  right: auto;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.second {
  width: 30vw;
  top: -6%;
  left: -16%;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.third {
  top: -16%;
  bottom: auto;
  left: auto;
  right: 8%;
}

.image-background-copy.position-absolute.footer.fourth {
  top: auto;
  left: auto;
  right: 13%;
}

.image-background-copy {
  width: 40vw;
}

.image-background-copy.second.position-absolute {
  top: -13%;
  right: 24%;
  transform: rotate(-43deg);
}

.image-background-copy.third.position-absolute {
  width: 60vw;
  top: -1%;
  left: -26%;
  right: auto;
}

.image-background-copy.position-absolute {
  width: 50vw;
  height: auto;
  position: absolute;
  top: 23%;
  bottom: auto;
  left: auto;
  right: -19%;
  transform: rotate(-23deg);
}

.image-background-copy.position-absolute.footer {
  top: auto;
  bottom: -48%;
  left: -14%;
  right: auto;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.third {
  top: -16%;
  bottom: auto;
  left: auto;
  right: 8%;
}

.image-background-copy.position-absolute.footer.second {
  top: -6%;
  left: -16%;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.fourth {
  top: auto;
  left: auto;
  right: 13%;
}

.image-background-copy.fourth.position-absolute {
  top: 48%;
  left: 10%;
  right: auto;
}

.image-background-copy.position-absolute {
  width: 50vw;
  height: auto;
  top: 23%;
  bottom: auto;
  left: auto;
  right: -19%;
  transform: rotate(-23deg);
}

.image-background-copy.position-absolute.hide {
  display: none;
}

.image-background-copy.position-absolute.footer {
  top: auto;
  bottom: -48%;
  left: -14%;
  right: auto;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.second {
  top: -6%;
  left: -16%;
  transform: rotate(180deg);
}

.image-background-copy.position-absolute.footer.third {
  top: -16%;
  bottom: auto;
  left: auto;
  right: 8%;
}

.image-background-copy.position-absolute.footer.fourth {
  width: 40vw;
  top: auto;
  left: auto;
  right: 20%;
}

.image-background-copy.position-absolute.footer.fourth.edit {
  filter: hue-rotate(315deg);
}

.image-14-copy {
  max-width: 75%;
  opacity: 1;
  mix-blend-mode: normal;
  position: relative;
  bottom: 0;
  left: 150px;
}

.image-14-copy.mobile {
  max-width: 90%;
  top: auto;
  left: auto;
}

.image-14-copy.mobile.hide {
  display: none;
}

.track-vertical {
  flex-direction: column;
  display: flex;
  position: absolute;
}

.track-overlay {
  z-index: 1;
  background-image: linear-gradient(#f9f5ff, rgba(0, 0, 0, 0) 50%, #f9f5ff);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.track-overlay.unclickable {
  width: 100%;
  height: 100%;
  background-image: none;
  position: absolute;
}

.infinite-rotation-holder {
  width: 100%;
  height: 50vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.vertical-scroll-wrapper {
  width: 43ch;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.text-rotation-wrapper {
  display: flex;
}

.heading-large {
  color: #111322;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.25;
}

.heading-large.rotate-text {
  color: #dcdfea;
  white-space: nowrap;
  font-weight: 600;
}

.link-block-2 {
  opacity: 1;
}

.link-block-2:hover {
  opacity: 1;
  filter: none;
}

.image-partner {
  width: 100%;
  height: 100%;
  filter: grayscale();
  padding-left: 5px;
  padding-right: 5px;
}

.image-partner:hover {
  filter: none;
}

.collection-list-3 {
  align-items: center;
  display: flex;
}

.startup-wrapper-edit {
  z-index: 20;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.collection-item-3 {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.portfolio-item-draft {
  width: 100%;
  height: 100%;
  min-width: 100%;
  color: #fff;
  text-decoration: none;
}

.carousel-portoflio-draft {
  width: 80%;
  height: 100%;
  display: block;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  background-color: var(--lifestyle);
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.page-wrapper-4 {
  width: 100%;
  font-size: 1em;
  position: relative;
  overflow: hidden;
}

.loader_left {
  width: 50%;
  position: relative;
}

.heading-11 {
  width: 100%;
  max-width: 7em;
  color: var(--liliac-light);
  letter-spacing: -.02em;
  text-shadow: 0 0 8px var(--liliac-medium);
  font-size: 7em;
  font-weight: 700;
  line-height: .8;
}

.div-block-8 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero_left {
  width: 50%;
  background-color: rgba(0, 0, 0, 0);
}

.key_text-wrap {
  width: 5em;
  height: 5em;
  color: #fff;
  background-color: rgba(255, 255, 255, .23);
  border-radius: 1em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-color-orange {
  color: #f37925;
}

.loader_text {
  letter-spacing: -.02em;
  padding-bottom: .1em;
  font-size: 10em;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.color2 {
  width: 100%;
  height: 0%;
  background-color: #f5e1be;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.padding {
  padding: 2em;
}

.padding.is-hero {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.section-5.is-hero {
  min-height: 100vh;
  display: flex;
}

.logo_svg {
  width: 11em;
}

.html-embed-2 {
  width: 2em;
}

.hero_right {
  width: 50%;
  background-color: #1b1a19;
  align-items: center;
  padding-left: 6em;
  display: flex;
}

.global-styles {
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.html {
  width: 0;
  height: 0;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.loader {
  z-index: 1000;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: none;
  position: fixed;
  overflow: hidden;
}

.hero_heading-wrap {
  width: 100%;
  max-width: 38em;
  padding-top: 4em;
  padding-bottom: 4em;
}

.keys {
  width: 100%;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  align-items: flex-end;
  font-size: 1.8vh;
  display: flex;
}

.hero_bottom {
  width: 100%;
  max-width: 23em;
}

.loader_right {
  width: 50%;
}

.color1 {
  width: 100%;
  height: 0%;
  background-color: #c0a8e6;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.key {
  width: 100%;
  background-color: #91c3ce;
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
  padding: 1.6em;
  transition: filter .4s, transform .2s;
}

.key:active {
  filter: brightness(120%);
}

.key.is-yellow {
  background-color: #fac670;
}

.key.is-purple {
  background-color: #c0a8e6;
}

.key.is-dark {
  z-index: 2;
  width: 70%;
  background-color: #0d0d0d;
  margin-top: -4.6em;
  margin-bottom: -4.6em;
  position: relative;
}

.key.is-orange {
  background-color: #f37925;
}

.key.is-tan {
  background-color: #f5e1be;
}

.portfolio---others {
  z-index: 10;
  width: 100%;
  max-width: none;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.portfolio---others.shade-wrapper {
  background-color: #1e2029;
  position: static;
}

.announcements {
  z-index: 10000;
  background-color: var(--burlywood);
  color: rgba(26, 29, 49, .71);
  text-align: center;
  text-shadow: 1px 1px 4px rgba(232, 234, 246, .39);
  background-image: none;
  padding-top: 6px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 700;
  position: -webkit-sticky;
  position: sticky;
}

.announcement-bar {
  justify-content: center;
  padding-top: 8px;
  display: flex;
}

.link-7 {
  color: var(--goldenrod);
  font-weight: 700;
}

.main-cta {
  z-index: 500;
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  background-color: #0a0a0a;
  border: 2px solid #000;
  border-radius: 8px;
  align-items: center;
  padding: 12px 20px 12px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s;
  display: flex;
  position: fixed;
  top: 24px;
  right: 5vw;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

.main-cta:hover {
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}

.main-cta.migration {
  background-color: var(--goldenrod);
  background-image: linear-gradient(129deg, #fcbd0e, #fffde6 64%, #a2a2f0);
  border-width: 1px;
  border-color: #fffde6;
  border-radius: 20px;
  padding-left: 24px;
  padding-right: 24px;
  position: absolute;
  top: 10px;
}

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

.section-cta {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
}

.section-cta.hero {
  height: 100vh;
}

.section-cta.hero.grain {
  height: 90vh;
  background-image: url('../images/slide-16-9-hero-1.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 80%;
  padding-bottom: 0;
}

.section-cta.grain {
  background-color: rgba(26, 29, 49, .2);
  background-image: url('../images/Grain-Background.png');
  background-size: 300px 300px;
  padding-top: 140px;
  padding-bottom: 60px;
}

.section-cta.grain.padding-top-40 {
  background-color: rgba(162, 162, 240, 0);
  padding-top: 40px;
}

.section-cta.grain.timeline {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-cta.grain.slim {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-cta.grain.copyright {
  padding-bottom: 40px;
}

.section-cta.grain.copyright.footer.no-grain {
  background-image: none;
}

.section-cta.grain.grey.light {
  background-image: url('../images/Grain-Background.png');
  background-position: 0 0;
  background-size: 300px 300px;
  padding-top: 60px;
}

.section-cta.grain.hide {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.section-cta.grain.first {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 0;
  display: flex;
}

.section-cta.grain.first.second-page {
  padding-top: 140px;
}

.section-cta.grain.slim-cta {
  min-height: auto;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.section-cta.grain.full-screen-cta {
  min-height: 90vh;
  background-image: url('../images/milad-fakurian-PGdW_bHDbpI-unsplash-1.jpg'), url('../images/Grain-Background.png');
  background-position: 50%, 0 0;
  background-size: 300px 300px, auto;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 40px;
  display: flex;
}

.section-cta.black.hide {
  display: none;
}

.section-cta.copyright {
  padding-top: 100px;
  padding-bottom: 20px;
}

.section-cta.highlight {
  padding-top: 100px;
  padding-bottom: 140px;
}

.section-cta.highlight.hide {
  display: none;
}

.section-cta.highlight.grain {
  background-image: none;
  background-size: auto;
  padding-top: 40px;
}

.section-cta.highlight.grain.light {
  padding-top: 0;
  padding-bottom: 60px;
}

.section-cta.highlight.no-margin {
  padding-top: 120px;
  padding-bottom: 0;
}

.section-cta.slim {
  padding-top: 40px;
  padding-bottom: 20px;
}

.section-cta.slim.grain {
  background-image: none;
  background-size: auto;
}

.section-2-loghi {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
}

.section-2-loghi.hero {
  height: 100vh;
}

.section-2-loghi.hero.grain {
  height: 90vh;
  background-image: url('../images/slide-16-9-hero-1.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 80%;
  padding-bottom: 0;
}

.section-2-loghi.grain {
  background-color: rgba(26, 29, 49, .2);
  background-image: url('../images/Grain-Background.png');
  background-size: 300px 300px;
  padding-top: 140px;
  padding-bottom: 60px;
}

.section-2-loghi.grain.padding-top-40 {
  background-color: rgba(162, 162, 240, 0);
  padding-top: 40px;
}

.section-2-loghi.grain.timeline {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-2-loghi.grain.slim {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-2-loghi.grain.copyright {
  padding-bottom: 40px;
}

.section-2-loghi.grain.copyright.footer.no-grain {
  background-image: none;
}

.section-2-loghi.grain.grey.light {
  background-image: url('../images/Grain-Background.png');
  background-position: 0 0;
  background-size: 300px 300px;
  padding-top: 60px;
}

.section-2-loghi.grain.hide {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.section-2-loghi.grain.first {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 0;
  display: flex;
}

.section-2-loghi.grain.first.second-page {
  padding-top: 140px;
}

.section-2-loghi.grain.first.no-padding {
  padding-top: 0;
}

.section-2-loghi.grain.slim-cta {
  padding-top: 0;
  padding-bottom: 40px;
}

.section-2-loghi.black.hide {
  display: none;
}

.section-2-loghi.copyright {
  padding-top: 100px;
  padding-bottom: 20px;
}

.section-2-loghi.highlight {
  padding-top: 100px;
  padding-bottom: 140px;
}

.section-2-loghi.highlight.hide {
  display: none;
}

.section-2-loghi.highlight.grain {
  background-image: none;
  background-size: auto;
  padding-top: 40px;
}

.section-2-loghi.highlight.grain.light {
  padding-top: 0;
  padding-bottom: 60px;
}

.section-2-loghi.highlight.no-margin {
  padding-top: 120px;
  padding-bottom: 0;
}

.section-2-loghi.slim {
  padding-top: 40px;
  padding-bottom: 20px;
}

.section-2-loghi.slim.grain {
  background-image: none;
  background-size: auto;
}

.section-team {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  position: relative;
}

.section-team.fade {
  background-image: linear-gradient(to bottom, transparent, var(--dark-slate-grey) 25%);
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-team.fade.update {
  background-image: none;
  padding-top: 0;
  padding-bottom: 60px;
}

.section-team.fade.update.grain {
  padding-top: 60px;
  padding-bottom: 40px;
}

.section-team.fade.update.grain.team {
  padding-top: 80px;
  padding-bottom: 0;
}

.section-team.fade.update.grain.chat {
  padding-bottom: 0;
}

.section-team.fade.update.grain.boh {
  padding-top: 0;
}

.section-team.cover {
  background-color: var(--dark-slate-grey);
}

.section-team.cover.map {
  background-image: url('../images/feedelmap-01.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.section-team.cover.yellow {
  background-color: var(--goldenrod);
  color: var(--dark-slate-grey);
  overflow: hidden;
}

.section-team.cover.yellow.cosmic {
  background-color: rgba(0, 0, 0, 0);
}

.section-team.cover.yellow.cosmic.old {
  display: none;
}

.section-team.footer {
  background-color: var(--dark-slate-grey);
  padding-top: 30px;
  padding-bottom: 30px;
}

.form-advisory {
  width: 50%;
}

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

.banner-section {
  z-index: 200;
  background-color: #fff;
  background-image: radial-gradient(circle at 25% -20%, rgba(122, 167, 255, .15), rgba(255, 255, 255, 0) 52%), radial-gradient(circle at 100% 0, rgba(255, 1, 1, .08), rgba(255, 255, 255, 0) 25%);
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}

.banner-container {
  max-width: 1080px;
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.banner {
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4em;
  display: flex;
}

.banner-link {
  color: #99a4af;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  line-height: 1.3em;
  text-decoration: none;
  display: inline;
}

.banner-link:hover {
  color: #1d1d1d;
}

.hidden {
  display: none;
}

.nav-content {
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 24px;
  display: flex;
  position: relative;
}

.search-bar {
  width: 280px;
  height: 36px;
  color: #1d1d1d;
  background-color: #f5f6f7;
  background-image: none;
  background-position: 8px;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 1px solid #f5f6f7;
  border-radius: 6px;
  margin-bottom: 0;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 400;
  transition: border-color .2s;
}

.search-bar:hover, .search-bar:focus {
  border-color: #cbd5df;
}

.search-bar::-ms-input-placeholder {
  color: #99a4af;
}

.search-bar::placeholder {
  color: #99a4af;
}

.search {
  align-items: flex-start;
  margin-bottom: 0;
}

.nav-container {
  width: 100%;
  height: 70px;
  max-width: 1230px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 50px;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
}

.menu-button-2.w--open {
  color: rgba(9, 106, 208, .2);
  background-color: #fff;
}

.nav-menu-4 {
  text-align: right;
  margin-right: 6px;
}

.logo-div {
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  display: block;
}

.nav-cta-button-container {
  align-items: center;
  display: flex;
}

.nav-bar {
  z-index: 200;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #f5f6f7;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.search-section {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.search-banner {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
  padding-right: 4px;
  font-size: 14px;
  line-height: 1.4em;
  display: flex;
}

.nav-link-3 {
  color: #626a72;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  margin-left: 4px;
  margin-right: 4px;
  padding: 6px 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  transition: background-color .2s, transform .2s, color .2s;
}

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

.nav-link-3:active {
  color: #626a72;
}

.nav-link-3.w--current {
  color: #1d1d1d;
}

.nav-link-3.cta-button {
  color: #fff;
  background-color: #1d1d1d;
  border-radius: 8px;
  padding-left: 20px;
  padding-right: 20px;
  transition: box-shadow .2s, background-color .2s, transform .2s, color .2s;
  box-shadow: 0 2px #f5f6f7;
}

.nav-link-3.cta-button:hover {
  background-color: #33383f;
}

.nav-link-3.cta-button:active {
  background-color: #626a72;
  transform: translate(0, 1px);
  box-shadow: 0 0 #e7ecf0;
}

.nav-logo-2 {
  transition: opacity .2s;
}

.nav-logo-2:hover {
  opacity: .75;
}

.text-box {
  max-width: 650px;
  position: relative;
}

.text-box._500px {
  max-width: 500px;
  text-align: center;
}

.text-box._550px {
  max-width: 550px;
}

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

.text-box._550px.center-align.large {
  max-width: 100%;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.spacer-2 {
  height: 48px;
  background-color: #e7ecf0;
}

.spacer-2._16 {
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0);
  flex: none;
}

.spacer-2._32 {
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 6px;
}

.hero-illustration {
  max-width: 70%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  mix-blend-mode: lighten;
  border: 0 #000;
  margin-left: auto;
  margin-right: auto;
  transition: transform .2s;
  transform: scale(1.2);
}

.page-wrapper-5 {
  width: 100%;
  min-height: 75vh;
  position: relative;
}

.hero-grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1.4fr;
  align-items: center;
  justify-items: center;
}

.paragraph-5.large {
  color: #cbd5df;
  text-align: center;
  padding-bottom: 22px;
  font-family: Alliance no, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

.paragraph-5.large.logo {
  color: #e7ecf0;
  text-align: left;
  font-family: DM Sans, sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.paragraph-5.small {
  opacity: .75;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.4em;
}

.paragraph-5.medium {
  font-family: Alliance no, sans-serif;
  font-size: 18px;
}

.container-5 {
  width: 100%;
  max-width: 1230px;
  min-height: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  display: block;
  position: relative;
}

.secondary {
  color: var(--lifestyle);
  text-align: center;
  text-transform: uppercase;
  background-color: rgba(114, 231, 167, .2);
  border-radius: 9px;
  flex: none;
  margin-top: 10px;
  margin-bottom: 8px;
  margin-left: 10px;
  padding: 8px 28px;
  font-family: Alliance no, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: box-shadow .2s, transform .2s, border-color .2s, color .2s, background-color .2s;
  box-shadow: 0 2px rgba(32, 32, 32, .05);
}

.secondary:hover {
  background-color: var(--dark-blu);
}

.secondary:active {
  background-color: #626a72;
  transform: translate(0, 2px);
  box-shadow: 0 0 rgba(32, 32, 32, 0);
}

.secondary.light {
  box-shadow: none;
  color: #626a72;
  background-color: #f5f6f7;
}

.secondary.light:hover {
  color: #626a72;
  background-color: #e7ecf0;
}

.secondary.light:active {
  color: #33383f;
  background-color: #cbd5df;
}

.secondary.light.mobile-hidden {
  box-shadow: inset 0 0 0 1px #e7ecf0;
}

.secondary.dark {
  background-color: #495158;
}

.secondary.dark:hover {
  background-color: #33383f;
}

.secondary.dark:active {
  background-color: #99a4af;
}

.secondary.no-margin {
  margin-left: 0;
  margin-right: 0;
  font-family: Alliance no, sans-serif;
}

.secondary.main {
  background-color: var(--slate-blue);
  margin-left: 20px;
  font-weight: 400;
}

.heading-hero {
  color: var(--untitled-ui-white);
  text-align: center;
  margin-bottom: 24px;
  font-family: Alliance no, sans-serif;
  font-size: 3.5em;
  font-weight: 600;
  display: block;
}

.heading-hero.h1 {
  color: #e7ecf0;
  text-align: left;
  margin-bottom: 18px;
  font-family: Alliance no, sans-serif;
  font-size: 46px;
  line-height: 1.25em;
}

.heading-hero.h1.center {
  text-align: center;
}

.heading-hero.h1.center.pugliai {
  color: var(--lifestyle);
}

.heading-hero.h1.pugliai.left {
  text-align: left;
}

.heading-hero.h2 {
  margin-bottom: 16px;
  font-size: 36px;
  line-height: 1.3em;
}

.heading-hero.h2.blsck {
  color: #7aa7ff;
  text-align: left;
  font-family: Alliance no, sans-serif;
}

.heading-hero.h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.4em;
}

.heading-hero.pugliai {
  color: var(--yellow-light);
  text-align: center;
}

.cta-section-cuber {
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.cta-section-cuber.account-page-wrapper {
  height: auto;
  min-height: auto;
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
}

.cta-section-cuber.black-gradient {
  color: #fff;
  background-color: #1d1d1d;
  background-image: radial-gradient(circle at 40% 130%, rgba(122, 167, 255, .41), rgba(0, 0, 0, 0) 58%);
}

.paragraph-6 {
  color: #e7ecf0;
}

.paragraph-7 {
  color: var(--liliac-medium);
  padding-top: 22px;
  padding-bottom: 0;
  font-family: Alliance no, sans-serif;
  font-size: 16px;
}

.bold-text-3 {
  color: var(--liliac-light);
  font-family: Alliance no, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 0;
}

.heading-13 {
  line-height: 1.1em;
}

.large-4-grid-copy {
  width: 100%;
  grid-column-gap: 24px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  display: grid;
}

.section-top {
  width: 100%;
  color: #f5f6f7;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 24px;
  display: flex;
}

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

.service-box {
  width: 100%;
  height: 100%;
  border: 1px solid var(--cornflower-blue);
  box-shadow: 0 -1px 5px 0 var(--slate-blue);
  color: #1d1d1d;
  text-align: left;
  background-color: rgba(122, 167, 255, .15);
  border-radius: 10px;
  flex-direction: column;
  padding: 13px 12px 12px;
  transition: transform .2s, opacity .2s;
  overflow: hidden;
}

.service-box:hover {
  background-color: var(--slate-blue);
  transform: translate(0, -3px);
}

.heading-14 {
  color: #f5f6f7;
}

.image-2 {
  width: 75%;
  border-radius: 18px;
}

.paragraph-8 {
  color: #e7ecf0;
  text-align: left;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.link-8 {
  color: rgba(255, 176, 30, .79);
  text-align: left;
  font-size: 16px;
  text-decoration: none;
}

.link-8:hover {
  color: #edb302;
}

.content-wrap {
  max-width: 590px;
  text-align: left;
  align-self: flex-start;
  position: relative;
}

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

.column-wrap {
  display: flex;
}

.section-feedel {
  color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: flex-start;
  padding: 10px 5% 40px;
}

.image-block {
  width: 50%;
  min-height: auto;
  justify-content: flex-start;
  align-items: center;
  padding: 30px;
  display: flex;
  position: relative;
}

.content-block-right-copy {
  width: 75%;
  color: #e7ecf0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px 0 25px 55px;
  display: flex;
}

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

.clients-wrapper-three {
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: -10px;
  display: flex;
}

.logos-without-title {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

.clients-image-three {
  filter: invert();
  margin-bottom: 10px;
  margin-left: 15px;
  margin-right: 15px;
}

.form-success {
  width: 100%;
  color: #33383f;
  background-color: #e7ecf0;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.4em;
}

.form-success.dark {
  color: #fff;
  background-color: #495158;
}

.email-subscribe {
  width: 100%;
  grid-column-gap: 12px;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.text-field-4 {
  height: 44px;
  min-width: 120px;
  border: 1px solid var(--alice-blue);
  background-color: var(--white-smoke);
  border-radius: 9px;
  margin-bottom: 16px;
  padding: 19px 12px;
  font-size: 15px;
  line-height: 1.4em;
  transition: border-color .2s;
}

.text-field-4:focus {
  border-color: #33383f;
}

.text-field-4::-ms-input-placeholder {
  color: #cbd5df;
}

.text-field-4::placeholder {
  color: #cbd5df;
}

.text-field-4.no-margin {
  margin-bottom: 0;
}

.email-form {
  max-width: 450px;
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.email-form.center-align {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-links-container {
  flex-direction: column;
  display: flex;
}

.footer-logo-block {
  max-width: 650px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.footer-header {
  color: #99a4af;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

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

.footer-container-2 {
  width: 100%;
  max-width: 1230px;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 50px;
  display: block;
}

.footer-link-2 {
  color: #626a72;
  cursor: pointer;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
  text-decoration: none;
  transition: color .2s ease-in-out;
  display: block;
}

.footer-link-2:hover {
  opacity: 1;
  color: #1d1d1d;
}

.footer-link-2.w--current {
  opacity: 1;
}

.footer {
  z-index: 0;
  background-color: #f5f6f7;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}

.strenghts {
  border: 1px #000;
  padding: 60px 30px;
  position: relative;
}

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

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-description {
  max-width: 550px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  grid-column-gap: 64px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 24px;
  margin-bottom: 32px;
  display: grid;
}

.pricing-card-three {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pricing-image {
  width: 40%;
  height: 100%;
  filter: brightness(200%);
  object-fit: cover;
  margin-bottom: 16px;
}

.pricing-card-text {
  margin-bottom: 20px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.bold-text-4 {
  color: var(--culture);
  font-family: Alliance no, sans-serif;
}

.bold-text-5 {
  color: var(--liliac-medium);
  text-transform: uppercase;
  font-family: Alliance no, sans-serif;
}

.bold-text-6 {
  color: var(--burlywood);
  font-family: Alliance no, sans-serif;
}

.form-card {
  min-width: 500px;
  color: #1d1d1d;
  text-align: left;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
}

.form-2-grid {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}

.form-error {
  color: #1d1d1d;
  background-color: #e7ecf0;
  border-radius: 6px;
  padding: 16px;
  font-size: 14px;
  line-height: 18px;
}

.text-area {
  min-height: 120px;
  border: 1px none var(--liliac-light);
  background-color: rgba(78, 81, 233, .1);
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 16px;
  font-family: Alliance no, sans-serif;
  font-size: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .01);
}

.text-area:focus {
  color: var(--liliac-light);
}

.text-area:focus-visible {
  color: var(--liliac-light);
  border-style: solid;
}

.text-area[data-wf-focus-visible] {
  color: var(--liliac-light);
  border-style: solid;
}

.text-area::-ms-input-placeholder {
  color: var(--liliac-light);
}

.text-area::placeholder {
  color: var(--liliac-light);
}

.field-block {
  z-index: 1;
  min-height: 20px;
  min-width: 50px;
  border: 1px solid rgba(0, 0, 0, 0);
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  margin-bottom: 8px;
  display: flex;
}

.title-tag {
  color: rgba(114, 231, 167, .45);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Alliance no, sans-serif;
  font-weight: 500;
}

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

.form-cyber {
  margin-bottom: 0;
}

.cta-form {
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
}

.cta-form.black-gradient {
  color: #fff;
  background-color: #1d1d1d;
  background-image: radial-gradient(circle at 40% 130%, rgba(122, 167, 255, .41), rgba(0, 0, 0, 0) 58%);
  padding-bottom: 0;
}

.heading-15 {
  text-transform: uppercase;
  margin-top: 10px;
}

.container-5-copy {
  width: 100%;
  max-width: 1230px;
  min-height: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.section-hero-advidory {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
}

.section-hero-advidory.hero {
  height: 100vh;
}

.section-hero-advidory.hero.grain {
  height: 90vh;
  background-image: url('../images/slide-16-9-hero-1.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 80%;
  padding-bottom: 0;
}

.section-hero-advidory.grain {
  background-color: rgba(26, 29, 49, .2);
  background-image: url('../images/Grain-Background.png');
  background-size: 300px 300px;
  padding-top: 140px;
  padding-bottom: 60px;
}

.section-hero-advidory.grain.padding-top-40 {
  background-color: rgba(162, 162, 240, 0);
  padding-top: 40px;
}

.section-hero-advidory.grain.timeline {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-hero-advidory.grain.slim {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-hero-advidory.grain.copyright {
  padding-bottom: 40px;
}

.section-hero-advidory.grain.copyright.footer.no-grain {
  background-image: none;
}

.section-hero-advidory.grain.grey.light {
  background-image: url('../images/Grain-Background.png');
  background-position: 0 0;
  background-size: 300px 300px;
  padding-top: 60px;
}

.section-hero-advidory.grain.hide {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.section-hero-advidory.grain.first {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 0;
  display: flex;
}

.section-hero-advidory.grain.first.second-page {
  padding-top: 140px;
}

.section-hero-advidory.grain.slim-cta {
  min-height: auto;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.section-hero-advidory.grain.full-screen-cta {
  min-height: 90vh;
  background-image: url('../images/milad-fakurian-PGdW_bHDbpI-unsplash-1.jpg'), url('../images/Grain-Background.png');
  background-position: 50%, 0 0;
  background-size: cover, auto;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 40px;
  display: flex;
}

.section-hero-advidory.black.hide {
  display: none;
}

.section-hero-advidory.copyright {
  padding-top: 100px;
  padding-bottom: 20px;
}

.section-hero-advidory.highlight {
  padding-top: 100px;
  padding-bottom: 140px;
}

.section-hero-advidory.highlight.hide {
  display: none;
}

.section-hero-advidory.highlight.grain {
  background-image: none;
  background-size: auto;
  padding-top: 40px;
}

.section-hero-advidory.highlight.grain.light {
  padding-top: 0;
  padding-bottom: 60px;
}

.section-hero-advidory.highlight.no-margin {
  padding-top: 120px;
  padding-bottom: 0;
}

.section-hero-advidory.slim {
  padding-top: 40px;
  padding-bottom: 20px;
}

.section-hero-advidory.slim.grain {
  background-image: none;
  background-size: auto;
}

.banner-img-full {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
}

.banner-img-full.hero {
  height: 100vh;
}

.banner-img-full.hero.grain {
  height: 90vh;
  background-image: url('../images/slide-16-9-hero-1.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 80%;
  padding-bottom: 0;
}

.banner-img-full.grain {
  background-color: rgba(26, 29, 49, .2);
  background-image: url('../images/Grain-Background.png');
  background-size: 300px 300px;
  padding-top: 140px;
  padding-bottom: 60px;
}

.banner-img-full.grain.padding-top-40 {
  background-color: rgba(162, 162, 240, 0);
  padding-top: 40px;
}

.banner-img-full.grain.timeline {
  padding-top: 60px;
  padding-bottom: 60px;
}

.banner-img-full.grain.slim {
  padding-top: 40px;
  padding-bottom: 40px;
}

.banner-img-full.grain.copyright {
  padding-bottom: 40px;
}

.banner-img-full.grain.copyright.footer.no-grain {
  background-image: none;
}

.banner-img-full.grain.grey.light {
  background-image: url('../images/Grain-Background.png');
  background-position: 0 0;
  background-size: 300px 300px;
  padding-top: 60px;
}

.banner-img-full.grain.hide {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.banner-img-full.grain.first {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 0;
  display: flex;
}

.banner-img-full.grain.first.second-page {
  padding-top: 140px;
}

.banner-img-full.grain.slim-cta {
  min-height: auto;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.banner-img-full.grain.full-screen-cta {
  min-height: 50vh;
  mix-blend-mode: soft-light;
  background-image: url('../images/milad-fakurian-PGdW_bHDbpI-unsplash-1.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 40px;
  display: flex;
}

.banner-img-full.grain.full-screen-cta.hide, .banner-img-full.black.hide {
  display: none;
}

.banner-img-full.copyright {
  padding-top: 100px;
  padding-bottom: 20px;
}

.banner-img-full.highlight {
  padding-top: 100px;
  padding-bottom: 140px;
}

.banner-img-full.highlight.hide {
  display: none;
}

.banner-img-full.highlight.grain {
  background-image: none;
  background-size: auto;
  padding-top: 40px;
}

.banner-img-full.highlight.grain.light {
  padding-top: 0;
  padding-bottom: 60px;
}

.banner-img-full.highlight.no-margin {
  padding-top: 120px;
  padding-bottom: 0;
}

.banner-img-full.slim {
  padding-top: 40px;
  padding-bottom: 20px;
}

.banner-img-full.slim.grain {
  background-image: none;
  background-size: auto;
}

.banner-img-full-copy {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
}

.banner-img-full-copy.hero {
  height: 100vh;
}

.banner-img-full-copy.hero.grain {
  height: 90vh;
  background-image: url('../images/slide-16-9-hero-1.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 80%;
  padding-bottom: 0;
}

.banner-img-full-copy.grain {
  background-color: rgba(26, 29, 49, .2);
  background-image: url('../images/Grain-Background.png');
  background-size: 300px 300px;
  padding-top: 140px;
  padding-bottom: 60px;
}

.banner-img-full-copy.grain.padding-top-40 {
  background-color: rgba(162, 162, 240, 0);
  padding-top: 40px;
}

.banner-img-full-copy.grain.timeline {
  padding-top: 60px;
  padding-bottom: 60px;
}

.banner-img-full-copy.grain.slim {
  padding-top: 40px;
  padding-bottom: 40px;
}

.banner-img-full-copy.grain.copyright {
  padding-bottom: 40px;
}

.banner-img-full-copy.grain.copyright.footer.no-grain {
  background-image: none;
}

.banner-img-full-copy.grain.grey.light {
  background-image: url('../images/Grain-Background.png');
  background-position: 0 0;
  background-size: 300px 300px;
  padding-top: 60px;
}

.banner-img-full-copy.grain.hide {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.banner-img-full-copy.grain.first {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 0;
  display: flex;
}

.banner-img-full-copy.grain.first.second-page {
  padding-top: 140px;
}

.banner-img-full-copy.grain.slim-cta {
  min-height: auto;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.banner-img-full-copy.grain.full-screen-cta {
  min-height: 25vh;
  background-image: linear-gradient(to top, var(--light-steel-blue), rgba(114, 114, 224, 0) 47%, rgba(114, 114, 224, 0) 98%);
  background-position: 0 0;
  background-size: auto;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 40px;
  display: flex;
}

.banner-img-full-copy.black.hide {
  display: none;
}

.banner-img-full-copy.copyright {
  padding-top: 100px;
  padding-bottom: 20px;
}

.banner-img-full-copy.highlight {
  padding-top: 100px;
  padding-bottom: 140px;
}

.banner-img-full-copy.highlight.hide {
  display: none;
}

.banner-img-full-copy.highlight.grain {
  background-image: none;
  background-size: auto;
  padding-top: 40px;
}

.banner-img-full-copy.highlight.grain.light {
  padding-top: 0;
  padding-bottom: 60px;
}

.banner-img-full-copy.highlight.no-margin {
  padding-top: 120px;
  padding-bottom: 0;
}

.banner-img-full-copy.slim {
  padding-top: 40px;
  padding-bottom: 20px;
}

.banner-img-full-copy.slim.grain {
  background-image: none;
  background-size: auto;
}

.div-block-9, .link-block-4 {
  display: flex;
}

.bold-text-7 {
  color: var(--cornflower-blue);
}

.bold-text-7.pugliai {
  font-size: 4rem;
  line-height: 1em;
}

.bold-text-8 {
  font-weight: 500;
}

.cyber-filed {
  border: 1px solid var(--alice-blue);
  background-color: var(--white-smoke);
  border-radius: 9px;
}

.cyber-filed-message {
  min-height: 120px;
  border: 1px solid var(--alice-blue);
  background-color: var(--white-smoke);
  border-radius: 9px;
}

.form-card-2 {
  border: 1px solid var(--liliac-light);
  color: #1d1d1d;
  text-align: left;
  background-color: rgba(114, 231, 167, .01);
  border-radius: 12px;
  padding: 40px;
}

.button-9 {
  color: #fff;
  text-align: center;
  background-color: #495158;
  border-radius: 9px;
  flex: none;
  margin-bottom: 8px;
  padding: 8px 28px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  transition: box-shadow .2s, transform .2s, border-color .2s, color .2s, background-color .2s;
  box-shadow: 0 2px rgba(32, 32, 32, .05);
}

.button-9:hover {
  background-color: #33383f;
}

.button-9:active {
  background-color: #626a72;
  transform: translate(0, 2px);
  box-shadow: 0 0 rgba(32, 32, 32, 0);
}

.button-9.no-margin {
  background-color: var(--liliac);
  margin-left: 0;
  margin-right: 0;
  font-family: Alliance no, sans-serif;
}

.text-field-5 {
  height: 44px;
  min-width: 120px;
  border: 1px none var(--cornflower-blue);
  color: var(--black);
  background-color: rgba(78, 81, 233, .1);
  border-radius: 9px;
  margin-bottom: 16px;
  padding: 19px 12px;
  font-size: 16px;
  line-height: 1.4em;
  transition: border-color .2s;
}

.text-field-5:focus {
  border-color: #33383f;
}

.text-field-5:focus-visible {
  border-style: solid;
  border-color: var(--liliac-light);
  color: var(--liliac-light);
}

.text-field-5[data-wf-focus-visible] {
  border-style: solid;
  border-color: var(--liliac-light);
  color: var(--liliac-light);
}

.text-field-5::-ms-input-placeholder {
  color: #cbd5df;
}

.text-field-5::placeholder {
  color: #cbd5df;
}

.form-squadra {
  margin-bottom: 0;
}

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

.feature-iteem-use-case {
  min-height: 350px;
  background-color: #1e2029;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: -48px;
  padding: 42px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feature-iteem-use-case.left-item {
  border: 1px solid var(--goldenrod);
  background-image: linear-gradient(45deg, rgba(252, 189, 14, .19), rgba(255, 255, 5, .15));
  border-radius: 12px;
  box-shadow: 0 2px 5px #fffde6;
}

.feature-iteem-use-case.left-item.culture {
  border: 2px solid var(--dark-blu);
  box-shadow: 0 0 6px 0 var(--culture-neon);
}

.feature-iteem-use-case.left-item.culture:hover {
  border-color: var(--culture-neon);
}

.feature-iteem-use-case.left-item.other {
  min-height: 100%;
  border: 1px solid var(--goldenrod);
  background-image: linear-gradient(270deg, var(--dark-blu), rgba(252, 189, 14, .12));
  margin-bottom: 20px;
}

.feature-iteem-use-case.middle-item {
  background-image: url('../images/ths12_bg_mesh_gradient_1.jpg');
  background-position: 0 100%;
  background-repeat: repeat;
  background-size: 200%;
  border-radius: 12px;
  margin-top: -48px;
  margin-bottom: 0;
}

.feature-iteem-use-case.middle-item.wellbeing {
  border: 2px solid var(--dark-blu);
  box-shadow: 0 0 6px 0 var(--lifestyle);
}

.feature-iteem-use-case.middle-item.wellbeing:hover {
  border-style: solid;
  border-color: var(--lifestyle);
}

.feature-iteem-use-case.right-item {
  background-image: url('../images/GradientSquare.jpg');
  background-position: 100% 99%;
  background-size: auto 300%;
  border-radius: 12px;
}

.feature-iteem-use-case.right-item.web-3 {
  border: 2px solid var(--dark-blu);
  box-shadow: 0 0 6px 0 var(--ciano);
}

.feature-iteem-use-case.right-item.web-3:hover {
  border-color: var(--ciano);
}

.feature-icon-wrapper-copy {
  min-height: 60px;
  min-width: 60px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 4%;
  justify-content: center;
  align-items: center;
  display: inline-block;
}

.image-16 {
  padding: 10px 4px;
}

.feature-title-wrapper-case-study {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
  position: relative;
}

.bold-text-9 {
  font-size: 20px;
  font-weight: 500;
}

.bold-text-10 {
  font-size: 18px;
  font-weight: 500;
}

.bold-text-11, .bold-text-12, .bold-text-13 {
  font-weight: 500;
}

.text-field-6 {
  min-height: 230px;
}

.deliverable-list {
  text-transform: uppercase;
  font-family: Space Mono, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.pugliai-page {
  background-color: var(--black);
  background-image: linear-gradient(rgba(26, 29, 49, 0), rgba(26, 29, 49, 0));
}

.pugliai, .pugliai.violet {
  color: var(--lifestyle);
}

.all-caps {
  text-transform: uppercase;
}

.card-hilight {
  grid-column-gap: 40px;
  padding-top: 20px;
  display: flex;
}

.dark {
  color: #1d1d1d;
  font-weight: 700;
}

.heading-17 {
  text-transform: uppercase;
}

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

.credentials {
  min-width: 100%;
  float: none;
  clear: none;
  border-radius: 10px;
}

.image-17 {
  border: 6px solid var(--lifestyle);
  border-radius: 56%;
  box-shadow: 0 10px 5px 4px rgba(122, 167, 255, .04);
}

.image-18 {
  max-width: 100%;
  margin-left: 69px;
  position: static;
}

.uui-heroheader01_pattern-image {
  width: 18.625rem;
  position: absolute;
  top: -6%;
  right: -21%;
}

.uui-heroheader01_fileupload-image2 {
  width: 23rem;
  min-width: 23rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: .5rem;
}

.uui-heroheader01_fileupload-image1 {
  width: 23rem;
  min-width: 23rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: .5rem;
  margin-bottom: .75rem;
}

.uui-heroheader01_fileupload-image-wrapper {
  width: 23rem;
  position: absolute;
  top: auto;
  bottom: 5%;
  left: -16%;
  right: auto;
}

.uui-heroheader01_image {
  width: 100%;
  height: 40rem;
  object-fit: cover;
  border-top-left-radius: 10rem;
}

.uui-heroheader01_image-wrapper {
  position: relative;
}

.uui-button {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui-primary600);
  background-color: var(--untitled-ui-primary600);
  color: var(--untitled-ui-white);
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.uui-button:hover {
  border-color: var(--untitled-ui-primary700);
  background-color: var(--untitled-ui-primary700);
}

.uui-button:focus {
  background-color: var(--untitled-ui-primary600);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05), 0 0 0 4px var(--untitled-ui-primary100);
}

.uui-button.is-button-large {
  grid-column-gap: .75rem;
  padding: 1rem 1.75rem;
  font-size: 1.125rem;
}

.uui-button-icon {
  width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  min-width: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.uui-button-icon.is-icon-large {
  width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
  min-width: 1.5rem;
}

.uui-button-secondary-gray {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui-gray300);
  background-color: var(--untitled-ui-white);
  color: var(--untitled-ui-gray700);
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.uui-button-secondary-gray:hover {
  background-color: var(--untitled-ui-gray50);
  color: var(--untitled-ui-gray800);
}

.uui-button-secondary-gray:focus {
  background-color: var(--untitled-ui-white);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05), 0 0 0 4px var(--untitled-ui-gray100);
}

.uui-button-secondary-gray.is-button-large {
  grid-column-gap: .75rem;
  padding: 1rem 1.75rem;
  font-size: 1.125rem;
}

.uui-button-row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.uui-button-row.button-row-center {
  justify-content: center;
}

.uui-space-large {
  width: 100%;
  min-height: 3rem;
}

.uui-text-size-xlarge {
  color: var(--untitled-ui-gray600);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

.uui-max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.uui-space-small {
  width: 100%;
  min-height: 1.5rem;
}

.uui-heading-xlarge {
  color: var(--untitled-ui-gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.uui-heroheader01_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.uui-padding-vertical-xhuge {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.uui-container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.uui-page-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.uui-section_heroheader01 {
  overflow: hidden;
}

.uui-layout13_image-01 {
  width: 24rem;
  min-width: 24rem;
  position: absolute;
  top: 2rem;
  left: auto;
  right: -1.5rem;
}

.uui-layout13_image-02 {
  width: 18rem;
  min-width: 18rem;
  position: absolute;
  top: 7rem;
  left: 2rem;
  right: 0%;
}

.uui-layout13_image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  background-color: var(--untitled-ui-gray100);
  display: flex;
  position: relative;
  overflow: hidden;
}

.uui-layout13_lightbox-image {
  width: 100%;
  border: .25rem solid var(--untitled-ui-gray900);
  border-radius: .5rem;
}

.uui-lightbox_play-icon {
  z-index: 2;
  width: 8rem;
  height: 8rem;
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-radius: 100%;
  position: absolute;
}

.lightbox_video-overlay-layer {
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 41, 57, .1);
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.uui-layout13_lightbox {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  background-color: var(--untitled-ui-gray100);
  align-items: center;
  padding: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.uui-text-size-medium {
  color: var(--untitled-ui-gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.uui-text-size-medium.text-color-primary700 {
  color: var(--untitled-ui-primary700);
}

.uui-space-xxsmall {
  width: 100%;
  min-height: .5rem;
}

.uui-heading-xsmall {
  color: var(--untitled-ui-gray900);
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.uui-layout13_tabs-link {
  border-left: 4px solid var(--untitled-ui-gray100);
  background-color: rgba(0, 0, 0, 0);
  padding: 1.5rem 0 1.5rem 2rem;
  display: block;
}

.uui-layout13_tabs-link.w--current {
  border-left-color: var(--untitled-ui-primary600);
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
}

.uui-layout13_tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.uui-layout13_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.body {
  background-color: #f2f4f7;
}

.uui-space-medium {
  width: 100%;
  min-height: 2rem;
}

.uui-text-size-large {
  color: var(--untitled-ui-gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.uui-space-xsmall {
  width: 100%;
  min-height: 1rem;
}

.uui-heading-medium {
  color: var(--untitled-ui-gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.uui-heading-medium.text-weight-medium {
  font-weight: 500;
}

.uui-badge {
  grid-column-gap: .375rem;
  background-color: var(--untitled-ui-gray100);
  color: var(--untitled-ui-gray700);
  white-space: nowrap;
  border-radius: 10rem;
  align-items: center;
  padding: .125rem .625rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
}

.uui-badge.is-primary {
  background-color: var(--untitled-ui-primary50);
  color: var(--untitled-ui-primary700);
}

.uui-layout50_content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.uui-layout50_image {
  width: 100%;
}

.uui-layout50_image_wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 2rem;
  display: grid;
}

.uui-layout50_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.uui-cta12_logo, .uui-cta13_logo {
  height: 2.5rem;
}

.uui-cta13_logo-row {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.error-text {
  color: #e23939;
}

.error-message-2 {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.success-text {
  font-weight: 600;
}

.success-message-2 {
  background-color: #f4f4f4;
  padding: 1.5rem;
}

.uui-text-style-link {
  color: var(--untitled-ui-gray600);
  text-decoration: underline;
  transition: color .3s;
}

.uui-text-style-link:hover {
  color: var(--untitled-ui-gray700);
}

.uui-text-size-small {
  color: var(--untitled-ui-gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: .875rem;
  line-height: 1.5;
}

.uui-text-size-small.text-align-left {
  text-align: left;
}

.uui-text-size-small.text-color-gray500 {
  color: var(--untitled-ui-gray500);
}

.uui-form_input {
  height: auto;
  min-height: 2.75rem;
  border: 1px solid var(--untitled-ui-gray300);
  background-color: var(--untitled-ui-white);
  color: var(--untitled-ui-gray900);
  border-radius: .5rem;
  margin-bottom: 0;
  padding: .5rem .875rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  transition: all .3s;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.uui-form_input:focus {
  border-color: var(--untitled-ui-primary300);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05), 0 0 0 4px var(--untitled-ui-primary100);
  color: var(--untitled-ui-gray900);
}

.uui-form_input::-ms-input-placeholder {
  color: var(--untitled-ui-gray500);
}

.uui-form_input::placeholder {
  color: var(--untitled-ui-gray500);
}

.uui-form_input.text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.uui-signup-form_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: .375rem;
  display: grid;
}

.uui-cta13_form {
  max-width: 30rem;
  margin: 2.5rem auto 4rem;
}

.uui-max-width-large {
  width: 100%;
  max-width: 48rem;
}

.uui-max-width-large.align-center, .align-center {
  margin-left: auto;
  margin-right: auto;
}

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

.uui-cta13_component {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.uui-contact05_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uui-form-button-wrapper {
  flex-direction: column;
  margin-top: .5rem;
  display: flex;
}

.uui-form-checkbox-label {
  color: var(--untitled-ui-gray700);
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.uui-form-checkbox-icon {
  width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  min-width: 1.25rem;
  border: 1px solid var(--untitled-ui-gray300);
  background-color: var(--untitled-ui-white);
  cursor: pointer;
  border-radius: .375rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .75rem;
  transition: all .3s;
}

.uui-form-checkbox-icon:hover {
  border-color: var(--untitled-ui-primary600);
  background-color: var(--untitled-ui-primary50);
}

.uui-form-checkbox-icon.w--redirected-checked {
  border-width: 1px;
  border-color: var(--untitled-ui-primary600);
  background-color: var(--untitled-ui-primary50);
  box-shadow: none;
  background-image: url('../images/check.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: .875rem .875rem;
  background-attachment: scroll;
  border-radius: .25rem;
}

.uui-form-checkbox-icon.w--redirected-focus {
  border-color: var(--untitled-ui-primary600);
  background-color: var(--untitled-ui-primary50);
  box-shadow: 0 0 0 4px var(--untitled-ui-primary100);
  border-radius: .25rem;
}

.uui-form-checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.uui-field-label {
  color: var(--untitled-ui-gray700);
  margin-bottom: .5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5;
}

.uui-form-field-wrapper {
  position: relative;
}

.uui-contact05_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.uui-contact05_form-wrapper {
  flex-direction: column;
  align-items: stretch;
  margin-top: 3rem;
  margin-bottom: 0;
}

.uui-text-style-link-02 {
  color: var(--untitled-ui-primary700);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.uui-contact05_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.uui-testimonial05_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
}

.uui-testimonial05_arrow {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--untitled-ui-gray200);
  color: var(--untitled-ui-gray500);
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
}

.uui-testimonial05_arrow:hover {
  background-color: var(--untitled-ui-gray50);
}

.uui-testimonial05_arrow.hide-mobile-landscape {
  color: var(--untitled-ui-gray500);
}

.uui-heading-tiny {
  color: var(--untitled-ui-gray900);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

.uui-testimonial05_client-image {
  width: 4rem;
  height: 4rem;
  min-height: 4rem;
  min-width: 4rem;
  object-fit: cover;
  border-radius: 100%;
}

.uui-testimonial05_client-image-wrapper {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.uui-testimonial05_logo {
  max-height: 3rem;
}

.uui-testimonial05_logo-wrapper {
  margin-bottom: 2rem;
}

.uui-testimonial05_content {
  height: 100%;
  max-width: 64rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.uui-testimonial05_slide {
  padding-left: 4rem;
  padding-right: 4rem;
}

.uui-testimonial05_component {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
}

.social-icon-3 {
  width: 1.5rem;
  height: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-link-2 {
  color: var(--untitled-ui-gray400);
  transition: all .3s;
}

.social-link-2:hover {
  color: var(--untitled-ui-gray500);
}

.uui-team02_social {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: center;
  margin-top: 1.5rem;
  display: grid;
}

.uui-team02_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.uui-team02_image-wrapper {
  width: 100%;
  margin-bottom: 1.5rem;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.uui-team02_item {
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.uui-team02_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: stretch;
  display: grid;
}

.uui-team02_component {
  margin-top: 4rem;
}

.uui-heading-subheading {
  color: var(--untitled-ui-primary600);
  margin-bottom: .75rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.uui-heading-xxsmall {
  color: var(--untitled-ui-gray900);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.uui-icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.uui-icon-featured-outline-large {
  width: 3.5rem;
  height: 3.5rem;
  border: .5rem solid var(--untitled-ui-primary50);
  background-color: var(--untitled-ui-primary100);
  color: var(--untitled-ui-primary600);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.uui-layout90_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.uui-layout90_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: grid;
}

.uui-layout90_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.uui-footer07_legal-link {
  color: var(--untitled-ui-gray500);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: .875rem;
  text-decoration: none;
  transition: all .3s;
}

.uui-footer07_legal-link:hover {
  color: var(--untitled-ui-gray600);
}

.uui-footer07_legal-list {
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.uui-footer07_bottom-wrapper {
  border-top: 1px solid var(--untitled-ui-gray200);
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
}

.uui-footer07_link {
  color: var(--untitled-ui-gray600);
  text-align: center;
  padding: .5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.uui-footer07_link:hover {
  color: var(--untitled-ui-gray700);
}

.uui-footer07_link-list {
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  justify-items: start;
  display: grid;
}

.uui-logo_image {
  width: auto;
  height: 100%;
  flex: none;
  display: none;
}

.uui-logo_logotype {
  width: auto;
  height: 100%;
  flex: none;
}

.uui-logo_logomark-dot {
  z-index: 1;
  width: 50%;
  height: 50%;
  background-image: linear-gradient(26.5deg, #6941c6, #53389e);
  border-radius: 50%;
  position: relative;
}

.uui-logo_logomark-blur {
  z-index: 2;
  width: 100%;
  height: 50%;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, .2);
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem;
  position: absolute;
  top: 50%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.uui-styleguide_logomark-bg {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.uui-logo_logomark {
  width: 2rem;
  height: 2rem;
  border: .1px solid #dae0e8;
  border-radius: .5rem;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(16, 24, 40, .06), 0 1px 2px rgba(16, 24, 40, .1);
}

.uui-logo_component {
  width: auto;
  height: 2rem;
  flex-wrap: nowrap;
  display: flex;
}

.uui-footer07_logo-link {
  margin-bottom: 2rem;
  padding-left: 0;
}

.uui-footer07_top-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.uui-padding-vertical-xlarge {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.div-block-11 {
  background-color: var(--lifestyle);
  color: var(--untitled-ui-gray800);
  border-radius: 10px;
  padding: 18px;
}

.div-block-11.styledcard {
  border: 0px none var(--lifestyle);
  -webkit-text-fill-color: inherit;
  background-color: rgba(0, 0, 0, 0);
  background-clip: border-box;
  transform: skew(0deg);
}

.div-block-11.styledcard:hover {
  transform: scale(1.09);
}

.bold-text-14 {
  color: rgba(255, 255, 255, .75);
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.div-block-12.ebook-box {
  background-image: none;
}

.div-block-12.ebook-box.customebok {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-style: none;
}

.logos-quote-divider {
  border-style: solid none;
  border-width: 1px 0;
  border-color: var(--slate-blue) black;
  background-color: rgba(78, 81, 233, .06);
  padding: 60px 30px;
  position: relative;
}

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

.clients-wrapper-two {
  max-width: 820px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.clients-info-two {
  max-width: 350px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.clients-quote-two {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.clients-quote-two.heading-12.pugliai.left {
  text-align: left;
  font-family: Alliance no, sans-serif;
  font-size: 28px;
}

.clients-divider {
  width: 90%;
  height: 1px;
  background-color: var(--slate-blue);
  margin-top: 20px;
  margin-bottom: 20px;
}

.clients-info {
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  display: flex;
}

.clients-info-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 24px;
}

.clients-grid {
    /* grid-column-gap: 50px; */
    grid-row-gap: 50px;
    /* grid-template-rows: auto auto; */
    grid-template-columns: 2fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    justify-items: center;
    display: grid;
}

.navbar-logo-left-container {
  z-index: 5;
  width: 1030px;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0);
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 1140px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

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

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

.nav-link-4 {
  color: var(--lifestyle);
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-4:hover {
  color: var(--untitled-ui-gray300);
}

.nav-link-4:active {
  color: var(--yellow-light);
}

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

.nav-link-4[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 {
  color: var(--lifestyle);
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: var(--alice-blue);
}

.nav-dropdown-toggle:active {
  color: var(--yellow-light);
}

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

.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 {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

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

.nav-divider {
  width: 1px;
  height: 22px;
  background-color: #e4ebf3;
  margin-left: 15px;
  margin-right: 15px;
}

.nav-link-accent {
  color: var(--lifestyle);
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: inline;
}

.nav-link-accent:hover {
  color: var(--untitled-ui-gray50);
}

.nav-link-accent:active {
  color: var(--yellow-light);
}

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

.image-19 {
  filter: invert();
  padding-left: 0;
}

.image-19:hover {
  transform: scale(1.1);
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.logos-title-large {
  border-bottom: 0px none var(--slate-blue);
  padding: 60px 30px;
  position: relative;
}

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

.clients-title {
  text-align: center;
  font-size: 24px;
  line-height: 32px;
}

.clients-wrapper {
  max-width: 750px;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.clients-image-2.inverted {
  filter: invert();
}

.service-overview {
  border-bottom: 0 rgba(0, 0, 0, 0);
  padding: 80px 30px;
  position: relative;
}

.centered-heading-2 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading-2.pugliai.light {
  color: var(--lifestyle);
}

.pricing-description-2 {
  max-width: 550px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid-2 {
  grid-column-gap: 40px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 24px;
  display: grid;
}

.servie-card-title {
  border: 1px none var(--slate-blue);
  text-align: center;
  background-color: rgba(78, 81, 233, .05);
  border-radius: 4px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  display: flex;
}

.servie-card-title:hover {
  background-color: rgba(0, 0, 0, 0);
}

.service-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  margin-bottom: 0;
  display: block;
}

.pricing-card-text-2 {
  margin-bottom: 20px;
}

.text-link-arrow-2 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-2 {
  margin-left: 2px;
  display: flex;
}

.uui-button-2 {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui-primary600);
  background-color: var(--untitled-ui-primary600);
  color: var(--untitled-ui-white);
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.uui-button-2:hover {
  border-color: var(--untitled-ui-primary700);
  background-color: var(--untitled-ui-primary700);
}

.uui-button-2:focus {
  background-color: var(--untitled-ui-primary600);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05), 0 0 0 4px var(--untitled-ui-primary100);
}

.uui-button-secondary-gray-2 {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui-gray300);
  background-color: var(--untitled-ui-white);
  color: var(--untitled-ui-gray700);
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.uui-button-secondary-gray-2:hover {
  background-color: var(--untitled-ui-gray50);
  color: var(--untitled-ui-gray800);
}

.uui-button-secondary-gray-2:focus {
  background-color: var(--untitled-ui-white);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05), 0 0 0 4px var(--untitled-ui-gray100);
}

.uui-button-row-2 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  display: none;
}

.uui-button-row-2.button-row-center {
  justify-content: center;
}

.uui-space-medium-2 {
  width: 100%;
  min-height: 2rem;
}

.uui-text-size-large-2 {
  color: var(--untitled-ui-gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.uui-space-xsmall-2 {
  width: 100%;
  min-height: 1rem;
}

.uui-heading-medium-2 {
  color: var(--untitled-ui-gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}

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

.uui-padding-vertical-xhuge-2 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.uui-container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.uui-page-padding-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.uui-section_cta08 {
  background-color: var(--untitled-ui-white);
  position: relative;
}

.uui-testimonial18_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.uui-button-icon-2 {
  width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  min-width: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.uui-testimonial18_arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--untitled-ui-gray200);
  color: var(--untitled-ui-gray500);
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.uui-testimonial18_arrow:hover {
  background-color: var(--untitled-ui-gray50);
}

.uui-testimonial18_arrow.left {
  right: 4rem;
}

.uui-button-link {
  grid-column-gap: .5rem;
  color: var(--untitled-ui-primary700);
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.uui-button-link:hover {
  color: var(--untitled-ui-primary800);
}

.uui-button-link.is-alternate {
  color: var(--untitled-ui-white);
}

.uui-space-small-2 {
  width: 100%;
  min-height: 1.5rem;
}

.uui-text-size-medium-2 {
  color: var(--untitled-ui-gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.uui-text-size-medium-2.text-color-white {
  color: rgba(255, 255, 255, .75);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
}

.uui-heading-small {
  color: var(--untitled-ui-gray900);
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4;
}

.uui-heading-small.text-color-white {
  color: var(--untitled-ui-white);
  font-family: Alliance no, sans-serif;
  font-size: 18px;
}

.uui-testimonial18_content-wrapper {
  border: 1px solid var(--slate-blue);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  color: var(--untitled-ui-white);
  background-color: rgba(24, 48, 53, .26);
  margin-top: 1rem;
  padding: 1.5rem 1rem 1rem;
}

.uui-testimonial17_logo {
  max-height: 3rem;
}

.uui-testimonial18_logo-wrapper {
  margin-top: .5rem;
  margin-left: .5rem;
}

.uui-testimonial18_content {
  width: 100%;
  height: 32rem;
  background-color: var(--untitled-ui-gray500);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  display: flex;
}

.uui-testimonial18_content.background-color-orange600 {
  background-color: #e04f16;
}

.uui-testimonial18_content.background-color-lightblue600 {
  background-color: var(--liliac);
}

.uui-testimonial18_content.background-color-pink600 {
  background-color: #dd2590;
}

.uui-testimonial18_content.background-color-indigo600 {
  background-color: #0c745b;
}

.uui-testimonial18_content.background-color-blue600 {
  background-color: #e05858;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.uui-testimonial18_content.background-color-primary600 {
  background-color: #4e3915;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.uui-testimonial18_slide {
  padding-right: 2rem;
}

.uui-testimonial18_mask {
  width: 40%;
  overflow: visible;
}

.uui-testimonial18_component {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 4rem;
  padding-bottom: 5rem;
  position: relative;
}

.uui-max-width-large-2 {
  width: 100%;
  max-width: 48rem;
}

.uui-container-large-2 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.case-study {
  display: block;
  overflow: hidden;
}

.text-block-7 {
  font-family: Alliance no, sans-serif;
}

.bold-text-15 {
  color: var(--yellow-light);
  text-align: left;
  text-shadow: 0 0 4px var(--goldenrod);
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2rem;
}

.box-title {
  color: var(--cornflower-blue);
  text-align: center;
  text-shadow: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Alliance no, sans-serif;
  font-size: 18px;
  line-height: 1.2rem;
}

.hide {
  display: none;
}

.field-label-2, .field-label-3, .field-label-4 {
  color: var(--liliac-light);
  font-family: Alliance no, sans-serif;
}

.primary {
  background-color: var(--slate-blue);
  color: var(--liliac-light);
  text-align: center;
  text-transform: uppercase;
  border-radius: 9px;
  flex: none;
  margin-top: 10px;
  margin-bottom: 8px;
  margin-left: 0;
  padding: 8px 28px;
  font-family: Alliance no, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: box-shadow .2s, transform .2s, border-color .2s, color .2s, background-color .2s;
  box-shadow: 0 2px rgba(32, 32, 32, .05);
}

.primary:hover {
  background-color: var(--dark-blu);
}

.primary:active {
  background-color: #626a72;
  transform: translate(0, 2px);
  box-shadow: 0 0 rgba(32, 32, 32, 0);
}

.primary.light {
  box-shadow: none;
  color: #626a72;
  background-color: #f5f6f7;
}

.primary.light:hover {
  color: #626a72;
  background-color: #e7ecf0;
}

.primary.light:active {
  color: #33383f;
  background-color: #cbd5df;
}

.primary.light.mobile-hidden {
  box-shadow: inset 0 0 0 1px #e7ecf0;
}

.primary.dark {
  background-color: #495158;
}

.primary.dark:hover {
  background-color: #33383f;
}

.primary.dark:active {
  background-color: #99a4af;
}

.primary.no-margin {
  margin-left: 0;
  margin-right: 0;
  font-family: Alliance no, sans-serif;
}

.primary.main {
  background-color: var(--slate-blue);
  margin-left: 20px;
  font-weight: 400;
}

.subtitle {
  color: rgba(255, 255, 255, .75);
  font-family: Alliance no, sans-serif;
  font-size: 16px;
  line-height: 1.6em;
}

.card-title {
  color: var(--cornflower-blue);
  margin-top: 0;
  font-family: Alliance no, sans-serif;
}

.card-title.pink {
  color: var(--culture);
}

.card-title.yellow {
  color: var(--yellow-light);
}

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

.fh-section-image-wrapper-first {
  width: 100%;
  height: 490px;
  border-radius: 24px;
  overflow: hidden;
}

.fn-button-secondery {
  min-width: 137px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.6em;
  transition: background-color .25s;
  display: flex;
}

.fn-button-secondery:hover {
  background-color: #3e4545;
}

.fn-button {
  color: #0f1213;
  text-align: center;
  background-color: #df0;
  border: 1px solid #df0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  transition: opacity .25s, border-color .25s;
  display: flex;
}

.fn-button:hover {
  opacity: .9;
  border-color: #0f1213;
}

.fn-button-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.fn-list-checkmark-icon {
  width: 11px;
  height: 10px;
  color: var(--lifestyle);
  object-fit: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fn-list-checkmark {
  width: 24px;
  height: 24px;
  background-color: var(--slate-blue);
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  display: flex;
  overflow: hidden;
}

.fn-list-checkmark.pink {
  background-color: var(--slate-blue);
}

.fn-list-item {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.fn-list {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  color: #cdd3d2;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  margin-bottom: 45px;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.6em;
  list-style-type: none;
  display: flex;
}

.fn-paragraph {
  color: #cdd3d2;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6em;
}

.fn-heading-2 {
  color: var(--untitled-ui-gray700);
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Alliance no, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2em;
}

.fn-label-small {
  color: #df0;
  margin-bottom: 24px;
  line-height: 1em;
}

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

.fn-container-grid {
  width: 100%;
  max-width: 1310px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.fn-container-grid.relative {
  grid-template-columns: 1fr;
  position: relative;
}

.cta-course {
  width: 100%;
  color: #ecf0ef;
  background-color: #1d1f1e;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.cta-course.overflow-none {
  background-color: rgba(0, 0, 0, 0);
  overflow: hidden;
}

.cta-course.overflow-none.hide {
  display: none;
}

.text-block-list {
  color: var(--untitled-ui-white);
  font-family: DM Sans, sans-serif;
  font-weight: 700;
}

.text-block-9 {
  font-family: Alliance no, sans-serif;
}

.text-block-10, .text-block-11 {
  color: var(--lifestyle);
  font-family: Alliance no, sans-serif;
}

.fn-banner-image-three {
  z-index: -1;
  width: 246px;
  height: 246px;
  opacity: 1;
  mix-blend-mode: color-dodge;
  object-fit: contain;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.fn-banner-image-two {
  width: 172px;
  height: 172px;
  object-fit: contain;
  position: absolute;
  top: -67px;
  bottom: auto;
  left: auto;
  right: 186px;
}

.fn-banner-image-one {
  width: 287px;
  height: 287px;
  opacity: 1;
  mix-blend-mode: color-dodge;
  object-fit: contain;
  position: absolute;
  top: auto;
  bottom: -62px;
  left: -44px;
  right: auto;
}

.fn-button-dark {
  color: var(--lifestyle);
  background-color: #1d1f1e;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  transition: color .25s, background-color .25s;
}

.fn-button-dark:hover {
  background-color: var(--lifestyle);
  color: #0f1213;
  border-color: #0f1213;
}

.fn-button-dark.w--current {
  background-color: #1d1f1e;
}

.fn-button-dark.w--current:hover {
  background-color: rgba(0, 0, 0, 0);
}

.fn-paragraph-dark {
  color: var(--untitled-ui-gray700);
  margin-bottom: 32px;
  font-family: Alliance no, sans-serif;
  font-size: 16px;
  line-height: 1.6em;
}

.fn-cta-banner-column {
  max-width: 532px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.fn-cta-banner {
  width: 100%;
  background-color: var(--ciano);
  color: #1d1f1e;
  text-align: center;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.fn-container {
  width: 100%;
  max-width: 1310px;
  padding-left: 15px;
  padding-right: 15px;
}

.fn-404-image-third {
  width: 120px;
  height: 120px;
  object-fit: contain;
  position: absolute;
  top: auto;
  bottom: -55%;
  left: 20%;
  right: auto;
}

.fn-404-image-second {
  z-index: -1;
  width: 250px;
  height: 250px;
  object-fit: contain;
  position: absolute;
  top: -56%;
  bottom: auto;
  left: -5%;
  right: auto;
}

.fn-404-image-first {
  width: 411px;
  height: 405px;
  object-fit: contain;
  position: absolute;
  top: -80%;
  bottom: auto;
  left: auto;
  right: -10%;
}

.fn-link-arrow {
  width: 12px;
  height: 18px;
  object-fit: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  display: flex;
}

.fn-link-with-arrow-classic {
  color: #df0;
  align-items: center;
  margin-top: 0;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
  text-decoration: underline;
  display: flex;
}

.fn-heading-jambo {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 88px;
  font-weight: 400;
  line-height: 1.1em;
}

.fn-column-center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.fn-section-404 {
  width: 100%;
  min-height: 100vh;
  color: #ecf0ef;
  background-color: #1d1f1e;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: Open Sans, sans-serif;
  display: flex;
  overflow: hidden;
}

.fn-cta-banner-dark-image {
  width: 100%;
  object-fit: cover;
}

.fn-banner-dark-column {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  display: flex;
}

.fn-cta-banner-dark {
  width: 100%;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: #ecf0ef;
  background-color: #0f1213;
  border-radius: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
  position: relative;
  overflow: hidden;
}

.fn-section-405 {
  width: 100%;
  color: #ecf0ef;
  background-color: #1d1f1e;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.fh-features-image-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
}

.fn-featured-tabs-content-wrapper {
  width: 100%;
}

.fn-featured-tabs-content {
  width: 60%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 15px;
}

.fn-tabs-paragraph {
  flex: none;
  overflow: hidden;
}

.fn-tabs-link-title-icon {
  width: 19px;
  height: 19px;
  color: #df0;
  object-fit: contain;
}

.fn-tabs-link-title {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #cdd3d2;
  align-items: center;
  display: flex;
}

.fn-tabs-link {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #939b9b;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  transition: opacity .25s;
  display: flex;
}

.fn-tabs-link:hover {
  opacity: .8;
  color: #939b9b;
}

.fn-tabs-link.w--current {
  background-color: #0f1213;
}

.fn-featured-tabs-menu {
  flex-direction: column;
  display: flex;
}

.fn-featured-tabs {
  width: 100%;
  margin-bottom: 32px;
  position: static;
}

.bold-text-16 {
  font-family: DM Sans, sans-serif;
}

.fn-cover-image-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-hero-image-wrapper-first {
  width: 100%;
  height: 534px;
  border-radius: 24px;
  margin-top: 36px;
  overflow: hidden;
}

.fn-button-2 {
  color: #0f1213;
  text-align: center;
  background-color: #df0;
  border: 1px solid #df0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  transition: opacity .25s, border-color .25s;
  display: flex;
}

.fn-button-2:hover {
  opacity: .9;
  border-color: #0f1213;
}

.fn-paragraph-2 {
  color: #cdd3d2;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6em;
}

.fn-heading-1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1.2em;
}

.fn-column-center-2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.fn-container-grid-2 {
  width: 100%;
  max-width: 1310px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.fn-section-406 {
  width: 100%;
  color: #ecf0ef;
  background-color: #1d1f1e;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .heading.neon {
    color: var(--liliac-light);
    text-shadow: 0 0 8px var(--goldenrod);
  }

  .heading-3.new {
    color: #fff;
    font-family: DM Sans, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .heading-3.new.neon.version-3 {
    color: var(--yellow-light);
  }

  .heading-3.new.neon.version-3.gradient-span {
    font-size: 38px;
    display: flex;
  }

  .heading-3.new.no-space {
    font-size: 28px;
  }

  .heading-3.new.gradient-span {
    font-family: Space Mono, sans-serif;
    font-size: 24px;
  }

  .heading-3.new.hero {
    margin-bottom: 10px;
  }

  .grid.ecosystem {
    justify-content: space-around;
  }

  .paragraph-3.new.ecosystem {
    opacity: 1;
    color: var(--liliac-light);
    font-size: 16px;
    line-height: 1.1;
  }

  .paragraph-3.new.ecosystem:hover {
    color: var(--yellow-light);
  }

  .heading-4.new.ecossytem {
    color: var(--yellow-light);
    font-family: Space Mono, sans-serif;
    font-size: 14px;
    font-weight: 400;
  }

  .heading-4.new.ecossytem.hide {
    display: none;
  }

  .image-5.edit {
    filter: blur(5px) brightness(200%);
  }

  .padding-vertical-xlarge {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-timeline-heading {
    background-color: rgba(0, 0, 0, 0);
  }

  .timeline_progress {
    box-shadow: 0 0 11px -1px #fffde6;
  }

  .overlay-fade-top {
    background-image: linear-gradient(#1a1d31, rgba(10, 10, 10, 0));
  }

  .paragraph-large.hide {
    display: none;
  }

  .section-timeline, .text-block-5.new {
    background-color: rgba(0, 0, 0, 0);
  }

  .feature-item-use-case.left-item {
    border-radius: 14px;
  }

  .feature-item-use-case.right-item {
    background-position: 90% 99%;
    background-size: auto 200%;
  }

  .hero-grid {
    grid-template-columns: 1.25fr;
    justify-items: center;
  }

  .main-bl-2 {
    max-width: 100%;
  }

  .main-bl-2.inner-section {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .white-line {
    background-image: repeating-linear-gradient(#fcbd0e, #e8eaf6 56%, #a2a2f0);
  }

  .anim-big-txt-3 {
    font-family: Beon medium, sans-serif;
    font-size: 7vh;
  }

  .wrapper-2 {
    max-width: none;
    color: rgba(232, 234, 246, .63);
  }

  .wrapper-2.hide-mobile {
    align-items: center;
  }

  .label-arrow {
    bottom: 2%;
  }

  .label-arrow.on-t-m {
    width: 12%;
    opacity: .89;
    left: 75%;
  }

  .blur-wrapper {
    mix-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
  }

  .neon-shadow-2 {
    display: none;
  }

  .hero-content-wrap.design-to-webflow {
    margin-top: 2%;
  }

  .big-txt-3 {
    color: var(--liliac-light);
    font-family: Beon medium, sans-serif;
    line-height: 1;
  }

  .big-txt-3.ligh {
    line-height: 70px;
  }

  .big-txt-3.ligh.small {
    color: #e8eaf6;
    font-family: Beon medium, sans-serif;
    font-size: 7vh;
  }

  .circle-hover.white {
    background-color: var(--web3);
  }

  .circle-hover.white.culture {
    background-color: var(--culture-neon);
  }

  .heading-2-small {
    font-size: 50px;
  }

  .large-heading.new {
    color: var(--liliac-light);
    font-family: Space Mono, sans-serif;
    font-size: 28px;
  }

  .footer-feedel {
    padding-top: 140px;
  }

  .footer-feedel.hero {
    height: 100vh;
  }

  .footer-feedel.hero.grain {
    height: 90vh;
  }

  .footer-feedel.grain.padding-top-40 {
    background-image: url('../images/Grain-Background.png');
    background-size: 300px 300px;
  }

  .footer-feedel.grain.first {
    padding-top: 60px;
  }

  .footer-feedel.highlight {
    color: rgba(255, 253, 230, .86);
    background-image: none;
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .footer-feedel.highlight.grain {
    padding-bottom: 60px;
  }

  .footer-feedel.highlight.no-margin {
    padding-top: 140px;
  }

  .footer-feedel.slim {
    padding-bottom: 20px;
  }

  .gradient-span {
    font-size: 20px;
    line-height: 1.1;
  }

  .circle-blur-bottom-right-2.safari.hero {
    bottom: -10%;
  }

  .body-display.large.new {
    color: var(--liliac-light);
    font-family: Space Mono, sans-serif;
  }

  .lottie-gradient {
    opacity: 1;
    outline-offset: 0px;
    mix-blend-mode: normal;
    background-color: rgba(0, 0, 0, 0);
    outline: 3px #333;
  }

  .container-3.centred.full-width {
    color: var(--liliac-light);
  }

  .grey-line {
    background-color: #e8eaf6;
    border: 1px solid #e8eaf6;
  }

  .paragraph-m.max-640w.hero {
    font-family: Space Mono, sans-serif;
  }

  .new {
    background-color: var(--dark-blu);
    color: var(--liliac-light);
    font-family: Space Mono, sans-serif;
  }

  .centered-call-to-action.clip.no-space {
    margin-top: 0;
  }

  .cosmic {
    background-color: var(--dark-blu);
    color: var(--liliac-light);
    margin: 0;
    font-family: Space Mono, sans-serif;
  }

  .big-txt-3-second-line, .big-txt-3-second-line.ligh {
    line-height: 70px;
  }

  .creator_content {
    justify-content: flex-end;
  }

  .creator_content.hide {
    display: none;
  }

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

  .image-small {
    opacity: .31;
    filter: brightness(200%);
  }

  .image-small:hover {
    opacity: 1;
  }

  .speaker-image-cover-2 {
    background-image: url('../images/card_culture-2.png');
  }

  .hero-blob {
    left: -50%;
  }

  .heading-6.second-line {
    font-family: DM Sans, sans-serif;
    font-size: 28px;
    font-weight: 400;
  }

  .knowmore {
    top: 55%;
  }

  .div-block-6.verion-2 {
    margin-top: 40px;
  }

  .div-block-7 {
    width: 60%;
  }

  .div-block-7.hide.desktop.section {
    width: 100%;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .div-block-7.hide.desktop.section.slim {
    padding-bottom: 20px;
  }

  .div-block-7.hide.desktop.section-portfolio {
    width: 100%;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .image-14 {
    bottom: -40px;
    left: 120px;
  }

  .image-14.mobile {
    top: 25%;
  }

  .image-14-copy {
    bottom: -150px;
  }

  .section-2_v2.hero {
    height: 100vh;
  }

  .section-2_v2.hero.grain {
    height: 90vh;
  }

  .section-2_v2.grain.padding-top-40 {
    background-image: url('../images/Grain-Background.png');
    background-size: 300px 300px;
  }

  .section-2_v2.grain.first {
    padding-top: 40px;
  }

  .knowmore_v2 {
    top: 55%;
  }

  .image-14_v2 {
    bottom: -40px;
    left: 120px;
  }

  .container-3_v2.hero {
    align-items: stretch;
  }

  .div-block-7_v2 {
    width: 60%;
  }

  .knowmore-center {
    top: 55%;
  }

  .div-block-background {
    width: 60%;
  }

  .hero-blob-backgound {
    left: -50%;
  }

  .div-block-ecosystem {
    grid-template-columns: repeat(auto-fit, 226px);
    grid-auto-flow: row;
    justify-content: space-between;
  }

  .container-partners.centred.full-width {
    max-width: none;
    color: var(--liliac-light);
  }

  .section_1h.hero {
    height: 100vh;
  }

  .section_1h.hero.grain {
    height: 90vh;
  }

  .section_1h.grain.padding-top-40 {
    background-image: url('../images/Grain-Background.png');
    background-size: 300px 300px;
  }

  .section_1h.grain.first {
    padding-top: 40px;
  }

  .section-2-1h.hero {
    height: 100vh;
  }

  .section-2-1h.hero.grain {
    height: 90vh;
  }

  .section-2-1h.grain.padding-top-40 {
    background-image: url('../images/Grain-Background.png');
    background-size: 300px 300px;
  }

  .section-2-1h.grain.first {
    padding-top: 60px;
  }

  .section-2-1h.highlight {
    color: rgba(255, 253, 230, .86);
    background-image: none;
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .section-2-1h.highlight.grain {
    padding-bottom: 60px;
  }

  .section-2-1h.slim {
    padding-bottom: 20px;
  }

  .container-billboard.centred.full-width {
    color: var(--liliac-light);
    align-items: stretch;
  }

  .page-wrapper-panel {
    width: 100%;
    max-width: 100%;
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 0;
    position: static;
  }

  .scroller {
    width: 100%;
    max-width: 100%;
    left: auto;
  }

  .background {
    opacity: 1;
    mix-blend-mode: color-burn;
  }

  .main-wrapper {
    width: 100%;
    max-width: 100%;
    margin-left: 5px;
    margin-right: 5px;
  }

  .image-background.position-absolute.footer {
    width: 40vw;
  }

  .image-background.position-absolute.footer.fourth {
    right: 75%;
  }

  .image-background.position-absolute.footer.copy {
    filter: hue-rotate(225deg);
  }

  .sticker {
    text-align: left;
    padding-left: 0;
    left: 0;
  }

  .sticker.hide {
    display: none;
  }

  .cosmic-copy {
    background-color: var(--dark-blu);
    color: var(--liliac-light);
    font-family: Space Mono, sans-serif;
  }

  .image-background-copy.position-absolute.copy {
    filter: hue-rotate(180deg);
  }

  .image-background-copy.position-absolute.footer.fourth {
    right: 65%;
  }

  .image-14-copy {
    bottom: -40px;
    left: 120px;
  }

  .image-14-copy.mobile {
    top: 25%;
  }

  .image-partner {
    width: 100%;
    opacity: .31;
    filter: brightness(200%);
  }

  .image-partner:hover {
    opacity: 1;
  }

  .pagination {
    display: none;
  }

  .collection-list-3 {
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }

  .portfolio---others {
    max-width: none;
    color: rgba(232, 234, 246, .63);
  }

  .portfolio---others.hide-mobile {
    align-items: center;
  }

  .section-cta {
    padding-top: 140px;
  }

  .section-cta.hero {
    height: 100vh;
  }

  .section-cta.hero.grain {
    height: 90vh;
  }

  .section-cta.grain.padding-top-40 {
    background-image: url('../images/Grain-Background.png');
    background-size: 300px 300px;
  }

  .section-cta.grain.first {
    padding-top: 60px;
  }

  .section-cta.highlight {
    color: rgba(255, 253, 230, .86);
    background-image: none;
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .section-cta.highlight.grain {
    padding-bottom: 60px;
  }

  .section-cta.highlight.no-margin {
    padding-top: 140px;
  }

  .section-cta.slim {
    padding-bottom: 20px;
  }

  .section-2-loghi {
    padding-top: 140px;
  }

  .section-2-loghi.hero {
    height: 100vh;
  }

  .section-2-loghi.hero.grain {
    height: 90vh;
  }

  .section-2-loghi.grain.padding-top-40 {
    background-image: url('../images/Grain-Background.png');
    background-size: 300px 300px;
  }

  .section-2-loghi.grain.first {
    padding-top: 60px;
  }

  .section-2-loghi.highlight {
    color: rgba(255, 253, 230, .86);
    background-image: none;
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .section-2-loghi.highlight.grain {
    padding-bottom: 60px;
  }

  .section-2-loghi.highlight.no-margin {
    padding-top: 140px;
  }

  .section-2-loghi.slim {
    padding-bottom: 20px;
  }

  .banner-container {
    max-width: 1140px;
  }

  .section-hero-advidory {
    padding-top: 140px;
  }

  .section-hero-advidory.hero {
    height: 100vh;
  }

  .section-hero-advidory.hero.grain {
    height: 90vh;
  }

  .section-hero-advidory.grain.padding-top-40 {
    background-image: url('../images/Grain-Background.png');
    background-size: 300px 300px;
  }

  .section-hero-advidory.grain.first {
    padding-top: 60px;
  }

  .section-hero-advidory.highlight {
    color: rgba(255, 253, 230, .86);
    background-image: none;
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .section-hero-advidory.highlight.grain {
    padding-bottom: 60px;
  }

  .section-hero-advidory.highlight.no-margin {
    padding-top: 140px;
  }

  .section-hero-advidory.slim {
    padding-bottom: 20px;
  }

  .banner-img-full {
    padding-top: 140px;
  }

  .banner-img-full.hero {
    height: 100vh;
  }

  .banner-img-full.hero.grain {
    height: 90vh;
  }

  .banner-img-full.grain.padding-top-40 {
    background-image: url('../images/Grain-Background.png');
    background-size: 300px 300px;
  }

  .banner-img-full.grain.first {
    padding-top: 60px;
  }

  .banner-img-full.highlight {
    color: rgba(255, 253, 230, .86);
    background-image: none;
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .banner-img-full.highlight.grain {
    padding-bottom: 60px;
  }

  .banner-img-full.highlight.no-margin {
    padding-top: 140px;
  }

  .banner-img-full.slim {
    padding-bottom: 20px;
  }

  .banner-img-full-copy {
    padding-top: 140px;
  }

  .banner-img-full-copy.hero {
    height: 100vh;
  }

  .banner-img-full-copy.hero.grain {
    height: 90vh;
  }

  .banner-img-full-copy.grain.padding-top-40 {
    background-image: url('../images/Grain-Background.png');
    background-size: 300px 300px;
  }

  .banner-img-full-copy.grain.first {
    padding-top: 60px;
  }

  .banner-img-full-copy.highlight {
    color: rgba(255, 253, 230, .86);
    background-image: none;
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .banner-img-full-copy.highlight.grain {
    padding-bottom: 60px;
  }

  .banner-img-full-copy.highlight.no-margin {
    padding-top: 140px;
  }

  .banner-img-full-copy.slim {
    padding-bottom: 20px;
  }

  .feature-iteem-use-case.left-item {
    border-radius: 14px;
  }

  .feature-iteem-use-case.right-item {
    background-position: 90% 99%;
    background-size: auto 200%;
  }
}

@media screen and (min-width: 1440px) {
  .timeline_date-text {
    text-align: right;
  }

  .page-wrapper-2.hero {
    transform: translate(0);
  }

  .main-bl-2.inner-section {
    margin-bottom: 0;
  }

  .counter-circle-2 {
    width: auto;
  }

  .wrapper-2 {
    max-width: none;
    justify-content: center;
    align-items: stretch;
  }

  .wrapper-2.hide-mobile {
    align-items: center;
  }

  .section-3.home-hero-section {
    min-height: 60vh;
  }

  .footer-feedel {
    padding-top: 160px;
  }

  .footer-feedel.highlight.grain {
    padding-bottom: 60px;
  }

  .footer-feedel.highlight.no-margin {
    text-align: center;
    padding-top: 160px;
  }

  .counter-container-2.large {
    width: 100%;
    justify-content: space-between;
    justify-items: stretch;
  }

  .gradient-span {
    font-size: 20px;
  }

  .container-3.centred.full-width {
    align-items: center;
  }

  .centered-call-to-action.clip.no-space {
    margin-top: 0;
  }

  .cosmic {
    margin: 0;
  }

  .hero-blob {
    left: -30px;
  }

  .knowmore {
    top: 55%;
  }

  .image-13.center {
    margin-top: 10px;
  }

  .div-block-7 {
    width: 60%;
  }

  .div-block-7.hide.desktop.section-portfolio {
    margin-left: auto;
    margin-right: auto;
  }

  .image-14 {
    bottom: 0;
  }

  .image-14-copy {
    bottom: -200px;
  }

  .knowmore_v2 {
    top: 55%;
  }

  .hero-blob_v2 {
    left: -30px;
  }

  .image-14_v2 {
    bottom: 0;
  }

  .container-3_v2.hero {
    width: 90%;
    max-width: none;
  }

  .div-block-7_v2 {
    width: 60%;
  }

  .knowmore-center {
    top: 55%;
  }

  .div-block-background {
    width: 60%;
  }

  .hero-blob-backgound {
    left: -30px;
  }

  .counter-container-2-expertise.large.expertise {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    background-color: rgba(0, 0, 0, 0);
  }

  .left-div.max-800w.margin-xl {
    max-width: 900px;
    min-width: 75%;
    margin-left: 0;
    margin-right: 0;
  }

  .container-partners.centred.full-width {
    align-items: center;
  }

  .section-2-1h.highlight.grain {
    padding-bottom: 60px;
  }

  .container-billboard.centred.full-width {
    align-items: center;
  }

  .page-wrapper-panel {
    width: 100%;
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 0;
    padding-right: 0;
  }

  .page-wrapper-panel.hide {
    display: none;
  }

  .scroller {
    width: 100vw;
    max-width: 100vw;
    left: 0%;
  }

  .main-wrapper {
    width: 100%;
    max-width: 100%;
    margin-left: 0%;
    margin-right: 0;
  }

  .move-wrapper.position-absolute {
    top: 17%;
  }

  .move-wrapper.position-absolute.background-color-black.display-flex-horizontal {
    top: 21%;
  }

  .section-heading.heading-large.text-color-black {
    font-size: 96px;
  }

  .left-arrow.background-color-black {
    right: 10%;
  }

  .lottie-animation {
    width: 200%;
    height: 200%;
    color: #000;
  }

  .lottie-animation._2 {
    width: 75%;
  }

  .lottie-animation._2.hhheart {
    width: 95%;
  }

  .lottie-animation._2.footer {
    width: 100%;
    flex: 1;
  }

  .lottie-animation.cell {
    width: 149%;
    height: auto;
  }

  .lottie-animation._3 {
    width: 120%;
  }

  .position-relative.display-flex-horizontal {
    width: 80px;
    height: 4.5vw;
    margin-bottom: 0;
    margin-left: 4px;
  }

  .position-relative.display-flex-horizontal._2 {
    margin-top: 0;
    margin-left: 10px;
  }

  .number-wrap.position-absolute.display-flex-horizontal {
    width: 40%;
  }

  .back-to-top-link {
    border-width: 2px;
    border-color: #fff;
    position: absolute;
  }

  .back-to-top-link:hover {
    filter: invert();
  }

  .image-move.position-relative.tird {
    width: auto;
    align-self: stretch;
  }

  .image-move.position-relative.tird.overflow-hidden, .image-move.position-relative.fourth.overflow-hidden {
    width: 100%;
    align-self: auto;
  }

  .image-move.position-relative.secon {
    width: auto;
    align-self: stretch;
  }

  .image-move.position-relative.secon.overflow-hidden {
    width: 100%;
    align-self: auto;
  }

  .image-move.position-relative.first {
    width: auto;
    background-color: #f38d7e;
    align-self: stretch;
  }

  .image-move.position-relative.first.overflow-hidden {
    width: 100%;
    align-self: auto;
  }

  .image-size {
    width: auto;
    object-fit: fill;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .wrap-line {
    width: auto;
    height: 14px;
    flex: 1;
    margin-right: 40px;
  }

  .nav-link-2.margin-0.padding-0.heading-large.text-weight-bold {
    width: auto;
  }

  .nav-link-2.margin-0.padding-0.heading-large.text-weight-bold:hover {
    letter-spacing: 0;
    font-style: italic;
  }

  .nav-link-2.margin-0.padding-0.heading-large.text-weight-bold.w--current {
    font-style: italic;
  }

  .newsletter-form {
    width: 485px;
  }

  .avatar.border-radius {
    width: 22vw;
    height: 22vw;
    background-image: none;
    flex: none;
  }

  .image-background.third.position-absolute {
    width: 800px;
  }

  .image-background.position-absolute {
    width: 800px;
    height: auto;
  }

  .image-background.position-absolute.footer {
    width: 800px;
  }

  .image-background.position-absolute.footer.third {
    top: 9%;
    right: 7%;
  }

  .image-background.position-absolute.footer.fourth {
    bottom: -53%;
    right: 5%;
  }

  .image-background.fourth.position-absolute {
    height: auto;
  }

  .image-background.position-absolute {
    width: 800px;
    height: auto;
  }

  .image-background.position-absolute.footer {
    width: 70vh;
    right: -41px;
  }

  .image-background.position-absolute.footer.second {
    width: 30vw;
  }

  .image-background.position-absolute.footer.third {
    top: 9%;
    right: 7%;
  }

  .image-background.position-absolute.footer.fourth {
    z-index: -1;
    bottom: -53%;
    right: 50%;
  }

  .image-effect-wrapper {
    height: 400vh;
    justify-content: flex-end;
  }

  .main-text.heading-large.primary-font {
    font-size: 64px;
  }

  .main-text.heading-large.text-weight-normal {
    font-size: 80px;
  }

  .main-text.heading-large.text-weight-normal.margin-bottom.margin-small {
    font-size: 64px;
  }

  .main-text.heading-large.text-weight-normal.primary-font {
    font-size: 80px;
  }

  .text-span-7.text-weight-normal.secondary-font.text-style-italic {
    font-size: 2.5vw;
  }

  .arrow-image {
    width: 50px;
  }

  .row.padding-custom3.display-flex-horizontal.is-tablet-padding-0 {
    justify-content: center;
    padding: 174px 14px 174px 0;
  }

  .row.padding-bottom.padding-medium.display-flex-horizontal.clients.position-relative {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }

  .row.padding-bottom.padding-medium.display-flex-horizontal.border-bottom.overflow-hidden {
    padding-bottom: 3.8rem;
    top: 0;
  }

  .row.display-flex-horizontal {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .row.display-flex-horizontal.margin-top-auto.is-mobile-horizontal {
    flex-direction: row;
  }

  .row.display-flex-horizontal._2 {
    align-items: center;
  }

  .row.display-flex-horizontal.is-mobile-horizontal {
    align-items: flex-start;
  }

  .row.display-flex-horizontal.is-mobile-horizontal.center, .row.display-flex-horizontal.hero {
    align-items: center;
  }

  .main-heading.heading-xlarge.text-align-center {
    white-space: nowrap;
    font-size: 11.8vw;
  }

  .lottie-wrap {
    flex: 0 auto;
  }

  .lottie-wrap.heart {
    width: 3.8vw;
    height: 3.8vw;
    margin-bottom: -8px;
  }

  .icon-white.margin-right.margin-small {
    width: 76px;
    height: auto;
    margin-top: .7rem;
  }

  .icon-white.margin-right.margin-small.heart {
    width: 102vw;
  }

  .slide-image-3 {
    width: 100%;
    height: 100%;
  }

  .back-to-top-image {
    height: auto;
  }

  .column.width-50.padding-vertical.padding-huge.border-right.is-tablet-full-width {
    align-items: flex-start;
    padding-right: 8rem;
  }

  .column.max-width-full.padding-left.padding-large.is-tablet-padding-0 {
    width: auto;
    flex: 0 auto;
  }

  .submit-button.background-color-white.text-style-allcaps {
    cursor: none;
  }

  .hover-image.position-absolute {
    width: 300px;
  }

  .grid-5-columns.margin-top.margin-xxlarge {
    width: auto;
    grid-column-gap: 36px;
    grid-template-columns: auto auto auto auto 1fr;
    align-self: flex-start;
    margin-right: auto;
  }

  .icon {
    height: auto;
  }

  .bg-slider.first {
    height: 100%;
  }

  .avatar-copy.border-radius, .avatar-creative.border-radius {
    width: 22vw;
    height: 22vw;
    background-image: none;
    flex: none;
  }

  .column-creative.width-50.padding-vertical.padding-huge.border-right.is-tablet-full-width {
    align-items: flex-start;
    padding-right: 8rem;
  }

  .column-creative.max-width-full.padding-left.padding-large.is-tablet-padding-0 {
    width: auto;
    flex: 0 auto;
  }

  .row-creative.padding-custom3.display-flex-horizontal.is-tablet-padding-0 {
    justify-content: center;
    padding: 174px 14px 174px 0;
  }

  .row-creative.display-flex-horizontal {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .row-creative.display-flex-horizontal._2 {
    align-items: center;
  }

  .row-creative.display-flex-horizontal.is-mobile-horizontal {
    align-items: flex-start;
  }

  .row-creative.display-flex-horizontal.hero {
    align-items: center;
  }

  .image-background-copy.third.position-absolute {
    width: 800px;
  }

  .image-background-copy.position-absolute {
    width: 800px;
    height: auto;
  }

  .image-background-copy.position-absolute.footer {
    width: 800px;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 9%;
    right: 7%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: -53%;
    right: 5%;
  }

  .image-background-copy.fourth.position-absolute {
    height: auto;
  }

  .image-background-copy.position-absolute {
    width: 800px;
    height: auto;
    filter: hue-rotate(180deg);
  }

  .image-background-copy.third.position-absolute {
    width: 800px;
  }

  .image-background-copy.position-absolute {
    width: 800px;
    height: auto;
  }

  .image-background-copy.position-absolute.footer {
    width: 800px;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 9%;
    right: 7%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: -53%;
    right: 5%;
  }

  .image-background-copy.fourth.position-absolute {
    height: auto;
  }

  .image-background-copy.position-absolute {
    width: 800px;
    height: auto;
  }

  .image-background-copy.position-absolute.footer {
    width: auto;
    height: 75%;
    max-width: 75%;
    filter: none;
    left: -34%;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 9%;
    right: 7%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: -53%;
    right: 5%;
  }

  .image-background-copy.third.position-absolute {
    width: 800px;
  }

  .image-background-copy.position-absolute {
    width: 800px;
    height: auto;
  }

  .image-background-copy.position-absolute.footer {
    width: 800px;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 9%;
    right: 7%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: -53%;
    right: 5%;
  }

  .image-background-copy.fourth.position-absolute {
    height: auto;
  }

  .image-background-copy.position-absolute {
    width: 800px;
    height: auto;
  }

  .image-background-copy.position-absolute.footer {
    width: 800px;
  }

  .image-background-copy.position-absolute.footer.second {
    filter: none;
    left: -20%;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 9%;
    right: 7%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: -53%;
    right: 5%;
  }

  .image-background-copy.third.position-absolute {
    width: 800px;
  }

  .image-background-copy.position-absolute {
    width: 800px;
    height: auto;
  }

  .image-background-copy.position-absolute.footer {
    width: 800px;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 9%;
    right: 7%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: -53%;
    right: 5%;
  }

  .image-background-copy.fourth.position-absolute {
    height: auto;
  }

  .image-background-copy.position-absolute {
    width: 800px;
    height: auto;
  }

  .image-background-copy.position-absolute.footer {
    width: 800px;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 9%;
    right: 7%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    width: 30vw;
    bottom: -53%;
    right: 60%;
  }

  .image-background-copy.position-absolute.footer.fourth.edit {
    filter: hue-rotate(315deg);
  }

  .image-14-copy {
    bottom: 0;
  }

  .portfolio---others {
    max-width: none;
    justify-content: center;
    align-items: stretch;
  }

  .portfolio---others.hide-mobile {
    align-items: center;
  }

  .section-cta {
    padding-top: 160px;
  }

  .section-cta.highlight.grain {
    padding-bottom: 60px;
  }

  .section-cta.highlight.no-margin {
    text-align: center;
    padding-top: 160px;
  }

  .section-2-loghi {
    padding-top: 160px;
  }

  .section-2-loghi.highlight.grain {
    padding-bottom: 60px;
  }

  .section-2-loghi.highlight.no-margin {
    text-align: center;
    padding-top: 160px;
  }

  .hero-illustration {
    transition-property: none;
    transform: none;
  }

  .section-hero-advidory {
    padding-top: 160px;
  }

  .section-hero-advidory.highlight.grain {
    padding-bottom: 60px;
  }

  .section-hero-advidory.highlight.no-margin {
    text-align: center;
    padding-top: 160px;
  }

  .banner-img-full {
    padding-top: 160px;
  }

  .banner-img-full.highlight.grain {
    padding-bottom: 60px;
  }

  .banner-img-full.highlight.no-margin {
    text-align: center;
    padding-top: 160px;
  }

  .banner-img-full-copy {
    padding-top: 160px;
  }

  .banner-img-full-copy.highlight.grain {
    padding-bottom: 60px;
  }

  .banner-img-full-copy.highlight.no-margin {
    text-align: center;
    padding-top: 160px;
  }

  .div-block-12.ebook-box {
    padding-top: 10px;
  }

  .clients-grid {
    grid-template-rows: auto auto auto;
  }
}

@media screen and (max-width: 991px) {
  .logo.big {
    width: 40%;
  }

  .nav-menu {
    background-color: var(--dark-slate-grey);
    flex-direction: column;
    padding: 16px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .2);
  }

  .nav-menu-button {
    background-color: var(--goldenrod);
    color: var(--dark-slate-grey);
    border-radius: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
  }

  .nav-menu-button.w--open {
    background-color: var(--goldenrod);
    color: var(--dark-slate-grey);
  }

  .nav-menu-grid {
    grid-auto-flow: row;
    justify-items: stretch;
  }

  .nav-link-social {
    margin-left: 10px;
    margin-right: 10px;
  }

  .menu-icon {
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section.cover.map {
    background-image: none;
  }

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

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

  .portfolio-link {
    min-height: 240px;
  }

  .paragraph-2 {
    font-size: 18px;
  }

  .image-3 {
    display: none;
  }

  .cover-wrapper {
    background-image: linear-gradient(to bottom, var(--dark-slate-grey), var(--dark-slate-grey));
  }

  .heading-3.new {
    font-size: 18px;
  }

  .heading-3.new.neon {
    font-size: 36px;
  }

  .swiper-slide {
    width: 45%;
    height: 60vh;
  }

  .swiper-nav-btn.next {
    right: 16%;
  }

  .swiper-nav-btn.prev {
    left: 16%;
  }

  .wheel-slider {
    position: relative;
  }

  .timeline_date-text.left {
    font-size: 36px;
  }

  .fixed-cta-container {
    z-index: 1000;
    justify-content: flex-end;
    display: flex;
    top: 16px;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .fixed-cta {
    position: static;
    top: 16px;
  }

  .feature-item-use-case {
    margin-bottom: 0;
  }

  .feature-item-use-case.middle-item {
    margin-top: 0;
  }

  .feature-item-use-case.middle-item.wellbeing {
    background-image: linear-gradient(45deg, rgba(26, 29, 49, .53), var(--liliac-medium));
  }

  ._4-col-grid {
    grid-row-gap: 56px;
    grid-template-columns: 1fr 1fr;
  }

  .circle-blur-middle-left {
    width: 320px;
    height: 320px;
    opacity: .9;
    filter: blur(64px);
    top: 20%;
  }

  .circle-blur-middle-left.safari {
    opacity: .8;
    filter: blur(68px);
    opacity: .8;
    filter: blur(68px);
  }

  .figma-embed-wrapper {
    max-width: none;
  }

  .step {
    min-width: auto;
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    top: -19px;
    bottom: auto;
    left: 24px;
    right: auto;
  }

  .page-type-text {
    line-height: 28px;
  }

  .hero-grid {
    height: 60vh;
    max-height: 60vh;
    grid-row-gap: 56px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

  .main-bl-2 {
    text-align: center;
    align-items: center;
    padding-left: 0;
  }

  .circle-blur-top-right-2 {
    width: 400px;
    height: 400px;
    opacity: .7;
    filter: blur(68px);
    background-image: linear-gradient(285deg, #ff7448 29%, #ff4848 58%, #6248ff 80%);
    display: block;
  }

  .circle-blur-top-right-2.safari {
    opacity: .7;
    filter: blur(68px);
  }

  .step-1-info-wrapper {
    align-items: flex-start;
  }

  .trio-cards {
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar-2 {
    height: 80px;
  }

  .nav-menu-2 {
    justify-content: flex-start;
    margin-left: 0;
    display: flex;
  }

  .step-3-info-wrapper {
    align-items: flex-start;
  }

  .label-arrow {
    top: 30%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .label-arrow.on-t-m {
    max-width: 100%;
    margin-top: 40px;
    display: block;
    position: static;
    top: auto;
    left: auto;
  }

  .webflow-embed {
    width: 125%;
    margin-top: -88px;
    margin-left: -12.5%;
    transform: scale(.8);
  }

  .button-3.hide-on-t-m {
    display: none;
  }

  .circle-blur-top-left {
    width: 400px;
    height: 400px;
    opacity: .7;
    filter: blur(68px);
    background-image: linear-gradient(285deg, #ff7448 29%, #ff4848 58%, #6248ff 80%);
    display: block;
    top: -10%;
    right: -5%;
  }

  .circle-blur-top-left.safari {
    filter: blur(68px);
  }

  .circle-blur-top-left.safari.purple {
    height: 50px;
    margin-top: 140px;
  }

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

  .step-5-info-wrapper {
    align-items: flex-start;
  }

  .hero-content-wrap.design-to-webflow {
    text-align: center;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .project-title-wrap {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .section-3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-3.home-hero-section {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .heading-2-small {
    font-size: 36px;
    line-height: 1;
  }

  .timeline-wrapper {
    display: none;
  }

  .navbar-container {
    display: flex;
  }

  .large-heading {
    font-size: 48px;
  }

  .large-heading.new {
    font-size: 36px;
  }

  .client-quote-wrap {
    width: 100%;
  }

  .footer-feedel {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .footer-feedel.grain.hide {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    background-size: auto;
  }

  .footer-feedel.grain.first {
    padding-top: 100px;
  }

  .footer-feedel.highlight.grain {
    padding-bottom: 40px;
  }

  .step-2-info-wrapper {
    align-items: flex-start;
  }

  .black-line {
    display: none;
  }

  .project-spec-top.margin-m {
    flex-direction: column;
  }

  .circle-blur-top-left-2 {
    width: 400px;
    height: 400px;
    opacity: .7;
    filter: blur(68px);
    background-image: linear-gradient(285deg, #ff7448 29%, #ff4848 58%, #6248ff 80%);
    display: block;
    top: -10%;
    right: -5%;
  }

  .circle-blur-top-left-2.safari {
    opacity: .7;
    filter: blur(68px);
  }

  .circle-blur-bottom-right-2 {
    width: 320px;
    height: 320px;
    opacity: .9;
    filter: blur(64px);
  }

  .circle-blur-bottom-right-2.safari {
    filter: blur(68px);
    top: 100px;
  }

  .step-4-info-wrapper {
    align-items: flex-start;
  }

  .circle-blur-bottom-right {
    width: 320px;
    height: 320px;
    opacity: .9;
    filter: blur(64px);
    bottom: 0%;
  }

  .circle-blur-bottom-right.safari {
    opacity: .7;
    filter: blur(68px);
  }

  .container-3.small.flex {
    width: 100%;
    max-width: none;
  }

  .with-underline {
    padding-top: 2px;
    padding-bottom: 4px;
  }

  .paragraph-m {
    font-size: 18px;
  }

  .gradient-background-fill {
    background-size: cover;
  }

  .logos-heading-wrapper {
    margin-bottom: 24px;
  }

  .featured-logos-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .logo-partners.small {
    height: 20%;
  }

  .h1 {
    font-size: 48px;
    line-height: 1.2;
  }

  .box {
    min-height: 400px;
    margin-bottom: -140px;
  }

  .social-items {
    width: 100%;
    height: 100%;
    background-size: auto 160%;
  }

  .social-block {
    cursor: default;
  }

  .social-text {
    display: none;
  }

  .half-dual {
    grid-row-gap: 36px;
    grid-template-rows: minmax(200px, 1fr);
    grid-template-columns: 1fr;
  }

  .large-heading-2 {
    font-size: 48px;
  }

  .slide-image {
    height: 50vh;
    min-height: 500px;
  }

  .slide-image.team-gallery {
    min-height: 300px;
  }

  .slide-image.team-image {
    min-height: auto;
  }

  .three-grid-wrapper {
    grid-row-gap: 36px;
    grid-template-columns: 1fr .75fr;
    margin-bottom: 60px;
  }

  .team-wrapper {
    min-height: 500px;
    justify-content: flex-start;
    overflow: auto;
  }

  .team-item {
    min-width: 48vw;
  }

  .creator_block {
    display: block;
  }

  .creator_container {
    padding-bottom: 80px;
  }

  .speaker-name {
    font-size: 52px;
  }

  .speaker-info {
    max-width: 470px;
  }

  .clip-text.speaker-headding {
    margin-top: -36px;
    margin-bottom: 24px;
  }

  .speaker-slide-mask, .speaker-slide-mask-2 {
    width: 65%;
  }

  .speaker-name-2 {
    font-size: 52px;
  }

  .slide-image-2 {
    height: 50vh;
    min-height: 500px;
  }

  .speaker-slide-mask-3 {
    width: 65%;
  }

  .hero-img {
    width: 100%;
    margin-top: -200px;
    display: none;
  }

  .hero-img.mobile {
    display: block;
  }

  .hero-blob {
    height: 400px;
    position: relative;
    left: 0;
  }

  .heading-6 {
    font-size: 36px;
  }

  .knowmore {
    width: 100px;
    position: relative;
    top: -250px;
    left: 50px;
    right: auto;
  }

  .hero-images {
    display: none;
  }

  .div-block-7 {
    width: 100%;
  }

  .div-block-7.mobile {
    display: block;
  }

  .image-14, .image-14-copy {
    left: 0;
  }

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

  .section-2_v2.hero {
    max-height: 100vh;
  }

  .section-2_v2.grain.hide {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    background-size: auto;
  }

  .knowmore_v2 {
    width: 100px;
    position: relative;
    top: -250px;
    left: 50px;
    right: auto;
  }

  .hero-blob_v2 {
    height: 400px;
    position: relative;
    left: 0;
  }

  .image-14_v2 {
    left: 0;
  }

  .container-3_v2.hero {
    height: 90%;
  }

  .container-3_v2.small.flex {
    width: 100%;
    max-width: none;
  }

  .div-block-7_v2 {
    width: 100%;
  }

  .knowmore-center {
    width: 100px;
    position: relative;
    top: -250px;
    left: 50px;
    right: auto;
  }

  .knowmore-center.version-2 {
    top: 0%;
    left: auto;
  }

  .div-block-background {
    width: 100%;
  }

  .hero-blob-backgound {
    height: 400px;
    position: relative;
    left: 0;
  }

  .container-partners.small.flex {
    width: 100%;
    max-width: none;
  }

  .checkbox-2.w--redirected-focus {
    box-shadow: none;
  }

  .arrow-2 {
    width: 2em;
    left: 38.8em;
  }

  .checkbox__label {
    font-size: 1.45em;
    font-weight: 400;
  }

  .button__submit {
    font-size: 1.75em;
    font-weight: 400;
  }

  .text__field__input {
    font-size: 2.5em;
  }

  .gallery-image {
    height: 50vh;
  }

  .section_1h {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .section_1h.hero {
    max-height: 100vh;
  }

  .section_1h.grain.hide {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    background-size: auto;
  }

  .section-2-1h {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .section-2-1h.grain.hide {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    background-size: auto;
  }

  .section-2-1h.grain.first {
    padding-top: 100px;
  }

  .section-2-1h.highlight.grain {
    padding-bottom: 40px;
  }

  .container-billboard.small.flex {
    width: 100%;
    max-width: none;
  }

  .buttons-wrapper {
    display: none;
  }

  .scroller {
    height: 8rem;
  }

  .main-link.footer, .main-paragraph {
    font-size: 14px;
  }

  .main-paragraph.margin-top {
    font-size: 16px;
  }

  .main-paragraph.margin-top.text-weight-bold, .main-paragraph.margin-top.margin-xxsmall.text-style-italic {
    font-size: 18px;
  }

  .main-paragraph.text-align-right {
    text-align: left;
    font-size: 14px;
  }

  .section-heading.heading-large.footer, .section-heading.heading-large.text-color-black, .section-heading.heading-large.text-color-black {
    font-size: 45px;
  }

  .display-none {
    display: none;
  }

  .image-wrapper-branding.overflow-hidden.width-50vw {
    width: 100%;
  }

  .image-wrapper-branding.overflow-hidden.margin-top.margin-xlarge.width-50vw {
    display: none;
  }

  .left-arrow.background-color-black {
    top: auto;
    bottom: 2%;
    left: 5%;
    right: auto;
  }

  .navbar-3 {
    z-index: 23;
    position: relative;
  }

  .lottie-animation._2.footer {
    margin-top: 0;
  }

  .lottie-animation._3 {
    margin-top: -1px;
  }

  .position-relative.display-flex-horizontal {
    margin-bottom: 0;
  }

  .position-relative.display-flex-horizontal._2 {
    width: 35px;
    height: 35px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .wrap-text-illustrations.position-absolute {
    width: auto;
    padding-left: 36px;
    padding-right: 36px;
    position: static;
  }

  .back-to-top-link {
    width: 70px;
    height: 70px;
  }

  .back-to-top-link.hover.w--current {
    bottom: 3%;
  }

  .image-move.position-relative.tird.overflow-hidden {
    height: auto;
    background-color: rgba(0, 0, 0, 0);
    flex-direction: column;
  }

  .image-move.position-relative.fourth.overflow-hidden {
    height: auto;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    flex-direction: column;
  }

  .image-move.position-relative.secon.overflow-hidden, .image-move.position-relative.first.overflow-hidden.is-tablet-relative {
    height: auto;
    background-color: rgba(0, 0, 0, 0);
    flex-direction: column;
  }

  .right-arrow.background-color-black {
    top: auto;
    bottom: 2%;
    left: auto;
    right: 66%;
  }

  .image-size.is-tablet-static {
    width: 100%;
    height: auto;
    position: static;
  }

  .my-clients-slider {
    height: auto;
    background-color: rgba(0, 0, 0, 0);
    padding-bottom: 90px;
  }

  .nav-link-2.margin-0.padding-0.heading-large.text-weight-bold {
    border-bottom: 1px solid #000;
    margin-top: .5rem;
    margin-bottom: .5rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    font-size: 60px;
  }

  .nav-link-2.margin-0.padding-0.heading-large.text-weight-bold.first {
    font-size: 60px;
  }

  .about-section.custom-background.position-relative {
    padding-bottom: 101px;
  }

  .avatar.border-radius {
    width: 183px;
    height: 183px;
    margin-right: 20px;
  }

  .icon-menu {
    font-family: Georgia, Times, Times New Roman, serif;
    font-size: 86px;
    position: absolute;
    top: -1px;
    right: auto;
  }

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

  .main-text.menu {
    color: #000;
    font-size: 36px;
  }

  .main-text.heading-large {
    font-size: 45px;
  }

  .main-text.heading-large.primary-font {
    font-size: 34px;
  }

  .main-text.heading-large.text-weight-normal {
    font-size: 45px;
  }

  .main-text.heading-large.text-weight-normal.margin-bottom.margin-small {
    font-size: 34px;
  }

  .main-text.heading-large.text-weight-normal.text-style-allcaps, .main-text.heading-large.text-weight-normal.primary-font {
    font-size: 45px;
  }

  .text-span-7.text-weight-normal.secondary-font.text-style-italic {
    font-size: 26px;
  }

  .text-span-7.secondary-font.contact {
    font-size: 34px;
  }

  .text-span-7.primary-font {
    font-size: 45px;
  }

  .grid-4-columns.margin-top.margin-xhuge {
    grid-column-gap: 42px;
    grid-row-gap: 101px;
  }

  .row.padding-custom3.display-flex-horizontal {
    flex-direction: column;
  }

  .row.padding-custom3.display-flex-horizontal.is-tablet-padding-0 {
    flex-direction: row;
    justify-content: center;
    padding-top: 68px;
    padding-bottom: 68px;
    padding-right: 0;
  }

  .row.show-tablet.display-flex-horizontal {
    display: flex;
  }

  .row.show-tablet.padding-vertical.padding-xlarge {
    padding-left: 0;
    padding-right: 0;
  }

  .row.padding-bottom.padding-medium.display-flex-horizontal {
    justify-content: flex-start;
  }

  .row.padding-bottom.padding-medium.display-flex-horizontal.border-bottom, .row.padding-bottom.padding-medium.display-flex-horizontal.border-bottom.overflow-hidden {
    flex-direction: row;
  }

  .row.padding-bottom.padding-large.border-bottom.white.display-flex-horizontal.max-width-full {
    align-items: flex-start;
  }

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

  .row.display-flex-horizontal.margin-top-auto.is-mobile-horizontal {
    margin-top: 88px;
  }

  .row.display-flex-horizontal.heart {
    flex-direction: row;
  }

  .row.display-flex-horizontal.border-bottom {
    flex-direction: column;
  }

  .row.display-flex-horizontal.border-bottom.padding-bottom.padding-xsmall {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
  }

  .row.display-flex-horizontal._2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .row.display-flex-horizontal.margin-top.margin-xxlarge, .row.display-flex-horizontal.margin-top.margin-medium {
    flex-direction: row;
  }

  .row.display-flex-horizontal.center.is-mobile-horizontal {
    align-items: center;
  }

  .row.display-flex-horizontal.is-mobile-horizontal {
    align-items: flex-start;
  }

  .row.display-flex-horizontal.is-mobile-horizontal.padding {
    padding-top: 12px;
    padding-left: 57px;
  }

  .lottie-wrap {
    width: 65px;
    height: 40px;
    margin-top: 5px;
  }

  .lottie-wrap.heart {
    width: 35px;
    height: 35px;
    margin-bottom: -10px;
  }

  .icon-white.margin-right.margin-small {
    width: 40px;
    margin-top: .4rem;
  }

  .icon-white.margin-right.margin-small.heart {
    width: 28px;
  }

  .icon-white.margin-right.margin-small.illustrations {
    width: 40px;
    margin-top: .3rem;
  }

  .column.width-50.border-right.padding-bottom.padding-xlarge {
    width: 100%;
    border: 1px #000;
  }

  .column.width-50.display-flex-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .column.width-50.display-flex-horizontal.padding-right {
    flex-direction: column-reverse;
  }

  .column.width-50.padding-right.padding-large {
    width: auto;
  }

  .column.width-50.padding-left.padding-large {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }

  .column.width-50.padding-left.padding-xlarge.is-tablet-padding-0 {
    padding-left: 2.2rem;
  }

  .column.width-50.padding-vertical.padding-huge.border-right.is-tablet-full-width {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 2.2rem;
  }

  .column.max-width-full.padding-left.padding-large.is-tablet-padding-0 {
    width: auto;
    flex: 0 auto;
  }

  .menu-button {
    margin-left: auto;
    padding-bottom: 0;
    padding-right: 0;
  }

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

  .hover-image.position-absolute {
    display: none;
  }

  .container-4.max-width-xxlarge.display-flex-horizontal {
    width: 100%;
    border-bottom: 1px solid #000;
    padding-left: 36px;
    padding-right: 36px;
  }

  .container-4.max-width-xxlarge.padding-vertical.padding-large.display-flex-horizontal {
    flex-direction: column;
  }

  .grid-5-columns.margin-top.margin-xxlarge {
    grid-column-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .clients-card.display-flex-horizontal.position-absolute.first.z-index-hover.is-tablet-relative {
    margin-left: auto;
    margin-right: auto;
    transition: none;
    right: auto;
    transform: none;
  }

  .clients-card.display-flex-horizontal.position-absolute.second.z-index-hover.is-tablet-relative {
    margin-left: auto;
    margin-right: auto;
    transition: none;
    top: auto;
    right: auto;
    transform: none;
  }

  .clients-card.display-flex-horizontal.position-absolute.fourth.is-tablet-relative {
    margin-left: auto;
    margin-right: auto;
    transition: none;
    top: auto;
    left: auto;
    transform: none;
  }

  .clients-card.display-flex-horizontal.position-absolute.third.z-index-hover.is-tablet-relative {
    margin-left: auto;
    margin-right: auto;
    transition: none;
    bottom: auto;
    right: auto;
    transform: none;
  }

  .clients-card.display-flex-horizontal.position-absolute.fifth.is-tablet-relative {
    margin-left: auto;
    margin-right: auto;
    transition: none;
    top: auto;
    left: auto;
    transform: none;
  }

  .clients-card.display-flex-horizontal.position-absolute.sixth {
    transition: none;
    transform: none;
  }

  .clients-card.display-flex-horizontal.position-absolute.sixth.is-tablet-relative {
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    left: auto;
  }

  .icon {
    width: 25px;
  }

  .nav-menu-3.max-width-full.display-flex-horizontal.padding-right.border-bottom {
    border-bottom-style: none;
    align-items: center;
    padding: 13.2rem 60px;
    position: absolute;
  }

  .container-creative.max-width-xxlarge.display-flex-horizontal {
    width: 100%;
    border-bottom: 1px solid #000;
    padding-left: 36px;
    padding-right: 36px;
  }

  .container-creative.max-width-xxlarge.padding-vertical.padding-large.display-flex-horizontal {
    flex-direction: column;
  }

  .cursor, .circle-cursor.display-flex-horizontal.position-absolute {
    display: none;
  }

  .avatar-copy.border-radius, .avatar-creative.border-radius {
    width: 183px;
    height: 183px;
    margin-right: 20px;
  }

  .column-creative.width-50.padding-left.padding-xlarge.is-tablet-padding-0 {
    padding-left: 2.2rem;
  }

  .column-creative.width-50.padding-vertical.padding-huge.border-right.is-tablet-full-width {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 2.2rem;
  }

  .column-creative.max-width-full.padding-left.padding-large.is-tablet-padding-0 {
    width: auto;
    flex: 0 auto;
  }

  .row-creative.padding-custom3.display-flex-horizontal {
    flex-direction: column;
  }

  .row-creative.padding-custom3.display-flex-horizontal.is-tablet-padding-0 {
    flex-direction: row;
    justify-content: center;
    padding-top: 68px;
    padding-bottom: 68px;
    padding-right: 0;
  }

  .row-creative.display-flex-horizontal {
    flex-direction: row;
    align-items: flex-start;
  }

  .row-creative.display-flex-horizontal.heart {
    flex-direction: row;
  }

  .row-creative.display-flex-horizontal.border-bottom {
    flex-direction: column;
  }

  .row-creative.display-flex-horizontal.border-bottom.padding-bottom.padding-xsmall {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
  }

  .row-creative.display-flex-horizontal._2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .row-creative.display-flex-horizontal.is-mobile-horizontal {
    align-items: flex-start;
  }

  .image-14-copy {
    left: 0;
  }

  .vertical-scroll-wrapper {
    width: auto;
    height: 2.8125rem;
    overflow: hidden;
  }

  .text-rotation-wrapper {
    flex-direction: column;
  }

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

  .startup-wrapper-edit {
    min-height: 500px;
    justify-content: flex-start;
    overflow: auto;
  }

  .portfolio-item-draft {
    min-width: 48vw;
  }

  .main-cta {
    position: static;
    top: 16px;
  }

  .section-cta {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .section-cta.grain.hide {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    background-size: auto;
  }

  .section-cta.grain.first {
    padding-top: 100px;
  }

  .section-cta.highlight.grain {
    padding-bottom: 40px;
  }

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

  .section-2-loghi.grain.hide {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    background-size: auto;
  }

  .section-2-loghi.grain.first {
    padding-top: 100px;
  }

  .section-2-loghi.highlight.grain {
    padding-bottom: 40px;
  }

  .section-team.cover.map {
    background-image: none;
  }

  .banner-section {
    padding-left: 60px;
    padding-right: 60px;
  }

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

  .nav-content {
    justify-content: flex-end;
    margin-left: 16px;
  }

  .search-bar {
    width: 220px;
    font-size: 14px;
  }

  .menu-icon-2 {
    color: #096ad0;
  }

  .nav-container {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .logo-div {
    flex: 0 auto;
  }

  .search-banner {
    display: none;
  }

  .nav-link-3 {
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
  }

  .nav-link-3.cta-button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-logo-2 {
    flex: 1;
  }

  .container-5 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .secondary {
    position: relative;
  }

  .heading-hero.h1 {
    font-size: 40px;
  }

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

  .content-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 35px;
    display: flex;
  }

  .column-wrap {
    flex-wrap: wrap;
  }

  .section-feedel {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .image-block {
    width: 100%;
    min-height: auto;
    margin-bottom: 35px;
  }

  .content-block-right-copy {
    width: 100%;
    padding-left: 25px;
  }

  .container-7 {
    max-width: 728px;
  }

  .clients-image-three {
    margin-bottom: 30px;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

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

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

  .container-8 {
    max-width: 728px;
  }

  .pricing-grid {
    grid-column-gap: 30px;
  }

  .container-5-copy {
    padding-left: 30px;
    padding-right: 30px;
  }

  .section-hero-advidory {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .section-hero-advidory.grain.hide {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    background-size: auto;
  }

  .section-hero-advidory.grain.first {
    padding-top: 100px;
  }

  .section-hero-advidory.highlight.grain {
    padding-bottom: 40px;
  }

  .banner-img-full {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .banner-img-full.grain.hide {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    background-size: auto;
  }

  .banner-img-full.grain.first {
    padding-top: 100px;
  }

  .banner-img-full.highlight.grain {
    padding-bottom: 40px;
  }

  .banner-img-full-copy {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .banner-img-full-copy.grain.hide {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    background-size: auto;
  }

  .banner-img-full-copy.grain.first {
    padding-top: 100px;
  }

  .banner-img-full-copy.highlight.grain {
    padding-bottom: 40px;
  }

  .button-9 {
    position: relative;
  }

  .feature-iteem-use-case {
    margin-bottom: 0;
  }

  .feature-iteem-use-case.middle-item {
    margin-top: 0;
  }

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

  .uui-heroheader01_fileupload-image-wrapper {
    left: -2.5%;
  }

  .uui-space-large {
    min-height: 2.5rem;
  }

  .uui-heading-xlarge {
    font-size: 3.25rem;
  }

  .uui-heroheader01_component {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .uui-layout13_image-01 {
    width: 100%;
    min-width: auto;
    top: 3%;
    right: -5%;
  }

  .uui-layout13_image-02 {
    display: none;
  }

  .uui-layout13_lightbox-image {
    width: 35rem;
    min-width: 35rem;
    left: 2rem;
  }

  .uui-layout13_lightbox {
    padding: 2rem;
  }

  .uui-layout13_component {
    grid-column-gap: 3rem;
  }

  .uui-layout50_image_wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding: 0;
  }

  .uui-layout50_component {
    min-height: auto;
    grid-column-gap: 3rem;
    grid-auto-flow: row;
  }

  .uui-cta13_logo-row {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .uui-contact05_component {
    min-height: auto;
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .uui-team02_list, .uui-layout90_list {
    grid-template-columns: 1fr 1fr;
  }

  .uui-padding-vertical-xlarge {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .container-9 {
    max-width: 728px;
  }

  .clients-quote-two {
    font-size: 28px;
    line-height: 36px;
  }

  .container-10 {
    max-width: 728px;
  }

  .nav-menu-wrapper {
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-menu-two {
    background-color: var(--dark-slate-grey);
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px rgba(0, 0, 0, .05);
  }

  .nav-link-4 {
    padding-left: 5px;
    padding-right: 5px;
  }

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

  .menu-button-3 {
    color: var(--lifestyle);
    padding: 12px;
  }

  .menu-button-3:hover {
    color: var(--yellow-light);
  }

  .menu-button-3.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .image-19:hover {
    transform: scale(1.1);
  }

  .container-11 {
    max-width: 728px;
  }

  .clients-title {
    margin-bottom: 32px;
  }

  .pricing-grid-2 {
    grid-column-gap: 30px;
  }

  .uui-padding-vertical-xhuge-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .uui-testimonial18_mask {
    width: 50%;
  }

  .uui-testimonial18_component {
    padding-left: 0;
    padding-right: 0;
  }

  .primary {
    position: relative;
  }

  .fh-section-image-wrapper-first {
    height: 334px;
  }

  .fn-button-secondery {
    transition: none;
  }

  .fn-button-secondery:hover {
    background-color: rgba(0, 0, 0, 0);
  }

  .fn-heading-2 {
    margin-bottom: 12px;
    font-size: 40px;
  }

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

  .cta-course {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fn-banner-image-three, .fn-banner-image-two, .fn-banner-image-one {
    display: none;
  }

  .fn-button-dark:hover {
    color: #df0;
    background-color: #1d1f1e;
  }

  .fn-cta-banner-column {
    width: 100%;
    max-width: none;
  }

  .fn-cta-banner {
    padding: 60px;
  }

  .fn-404-image-first {
    width: 350px;
    height: 350px;
  }

  .fn-heading-jambo {
    font-size: 76px;
  }

  .fn-section-404 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fn-banner-dark-column {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
  }

  .fn-section-405 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fh-features-image-wrapper {
    height: 450px;
  }

  .fn-featured-tabs-content {
    width: 58%;
  }

  .fn-tabs-link {
    transition: none;
  }

  .fn-tabs-link:hover {
    opacity: 1;
  }

  .fh-hero-image-wrapper-first {
    height: 464px;
    margin-top: 12px;
  }

  .fn-heading-1 {
    font-size: 48px;
  }

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

  .fn-section-406 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 50px;
  }

  .text-span {
    font-size: 60px;
  }

  .hero-paragraph {
    font-size: 18px;
  }

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

  .counter-description {
    font-size: 12px;
  }

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

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

  .link {
    margin-left: auto;
    margin-right: auto;
  }

  .grid {
    grid-column-gap: 38px;
    grid-row-gap: 38px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    padding-top: 32px;
  }

  .div-block-2 {
    margin-top: 0;
  }

  .slider-content {
    width: 100%;
  }

  .div-block-5 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .slide-nav {
    position: static;
  }

  .arrow {
    width: 25px;
    height: 25px;
    margin-left: -10px;
    margin-right: -10px;
    font-size: .75rem;
    line-height: 1;
  }

  .swiper-slide {
    width: 60%;
  }

  .swiper-nav-btn {
    width: 40px;
    height: 40px;
    justify-content: center;
    padding: 0;
  }

  .swiper-nav-btn.next {
    right: 14%;
  }

  .swiper-nav-btn.prev {
    left: 14%;
  }

  .swiper-nav-btn-icon {
    width: 40%;
  }

  .big-txt, .big-txt-2 {
    background-position: 62% 54%;
    background-size: 360px;
    font-size: 130px;
  }

  .timeline_centre {
    justify-content: flex-start;
  }

  .margin-bottom-xlarge {
    margin-bottom: 48px;
  }

  .timeline_left {
    text-align: left;
  }

  .timeline_item {
    width: 100%;
    grid-template-columns: 64px 1fr;
  }

  .timeline_quote-wrapper {
    flex-direction: column-reverse;
  }

  .button-inverted {
    padding: 14px 24px;
  }

  .padding-vertical-xlarge {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .timeline_text {
    font-size: 20px;
  }

  .margin-bottom-small {
    margin-bottom: 24px;
  }

  .timeline_progress {
    left: 6px;
  }

  .timeline_date-text {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .paragraph-large {
    font-size: 18px;
  }

  .timeline_quote-image {
    margin-top: 24px;
    margin-right: 0;
  }

  .home.hide-mobile {
    display: none;
  }

  .circle-blur-middle-left {
    width: 280px;
    height: 280px;
  }

  .circle-blur-middle-left.safari {
    opacity: .9;
    filter: blur(64px);
    opacity: .9;
    filter: blur(64px);
  }

  .figma-embed-wrapper {
    height: 480px;
  }

  .step {
    left: 16px;
  }

  .page-type-text {
    font-size: 20px;
    line-height: 24px;
  }

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

  .features-text {
    font-size: 14px;
    line-height: 22px;
  }

  .counter-circle-2 {
    width: 120px;
    height: 120px;
  }

  .circle-blur-top-right-2 {
    width: 320px;
    height: 320px;
    opacity: .9;
    filter: blur(68px);
    top: 2%;
  }

  .circle-blur-top-right-2.safari {
    opacity: .9;
    filter: blur(64px);
  }

  .step-1-info-wrapper {
    flex-direction: column;
    padding: 16px;
  }

  .pricing-table {
    padding: 32px 24px;
  }

  .step-info {
    margin-left: 0;
  }

  .price-text {
    font-size: 22px;
    line-height: 28px;
  }

  .project-spec-webflow-wrap {
    height: 480px;
  }

  .button-icon-2.secondary.small.visit-live {
    flex: 0 auto;
    padding: 10px;
  }

  .client-quote {
    font-size: 18px;
    line-height: 28px;
  }

  .step-3-info-wrapper {
    flex-direction: column;
    padding: 16px;
  }

  .label-arrow.on-t-m {
    width: 128px;
    top: 32%;
  }

  .button-3 {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 15px;
  }

  .project-spec-name {
    white-space: nowrap;
    margin-top: 0;
    margin-bottom: 12px;
    margin-right: 0;
  }

  .circle-blur-top-left {
    width: 320px;
    height: 320px;
    opacity: .9;
    filter: blur(68px);
  }

  .step-heading.margin-xs {
    margin-bottom: 8px;
  }

  .pricing-row-spacer {
    display: none;
  }

  .step-5-info-wrapper {
    flex-direction: column;
    padding: 16px;
  }

  .pricing-row {
    grid-template-columns: 1.25fr;
  }

  .hero-content-wrap.design-to-webflow {
    align-items: center;
    margin-top: 16px;
  }

  .counter-title-2 {
    font-size: 32px;
  }

  .big-txt-3 {
    background-position: 62% 54%;
    background-size: 360px;
    font-size: 54px;
  }

  .project-spec-wrapper {
    padding: 16px;
  }

  .project-title-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .heading-2-small {
    font-size: 40px;
    line-height: 48px;
  }

  .large-heading {
    font-size: 42px;
  }

  .footer-feedel {
    padding-top: 64px;
    padding-bottom: 64px;
  }

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

  .step-2-info-wrapper {
    flex-direction: column;
    padding: 16px;
  }

  .project-spec-figma-wrap {
    height: 480px;
  }

  .circle-blur-top-left-2 {
    width: 320px;
    height: 320px;
    opacity: .9;
    filter: blur(68px);
  }

  .circle-blur-top-left-2.safari {
    opacity: .9;
    filter: blur(64px);
  }

  .process-image {
    width: 100%;
    background-image: url('../images/Process-Image-Background-Mobile.png');
    background-size: cover;
    margin-bottom: 24px;
  }

  .export-icon {
    display: block;
    position: static;
  }

  .circle-blur-bottom-right-2 {
    width: 280px;
    height: 280px;
    filter: blur(60px);
    bottom: 5%;
  }

  .circle-blur-bottom-right-2.safari {
    filter: blur(64px);
  }

  .step-4-info-wrapper {
    flex-direction: column;
    padding: 16px;
  }

  .circle-blur-bottom-right {
    width: 280px;
    height: 280px;
    filter: blur(60px);
  }

  .circle-blur-bottom-right.safari {
    opacity: .9;
    filter: blur(64px);
  }

  .with-underline {
    background-position: 50% 110%;
    padding-top: 2px;
    padding-bottom: 4px;
  }

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

  .paragraph-m.text-white.margin-m {
    margin-bottom: 16px;
  }

  .centered-call-to-action {
    grid-row-gap: 24px;
    text-align: center;
    grid-template-columns: auto;
  }

  .call-to-action-heading {
    grid-template-columns: 1fr;
  }

  .logo-partners.small {
    height: 20%;
  }

  .box {
    margin-bottom: -100px;
  }

  .large-heading-2 {
    font-size: 42px;
  }

  .about-wrapper {
    padding-left: 0;
  }

  .slide-image {
    min-height: 400px;
  }

  .slide-image.team-gallery {
    min-height: 250px;
  }

  .slide-image.team-image {
    min-height: 300px;
  }

  .background-cover {
    width: 100%;
  }

  .big-txt-3-second-line {
    background-position: 62% 54%;
    background-size: 360px;
    font-size: 130px;
  }

  .three-grid-wrapper {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .team-wrapper {
    min-height: 500px;
  }

  .team-item {
    min-width: 55vw;
  }

  .creator_block {
    display: block;
  }

  .creator_container {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .speaker-name {
    font-size: 48px;
  }

  .speaker-slide-mask, .speaker-slide-mask-2 {
    width: 90%;
  }

  .speaker-name-2 {
    font-size: 48px;
  }

  .slide-image-2 {
    min-height: 400px;
  }

  .speaker-slide-mask-3 {
    width: 90%;
  }

  .hero-blob {
    position: relative;
    top: -150px;
    left: 0;
  }

  .knowmore {
    width: 150px;
    top: -350px;
    left: 100px;
  }

  .hero-images {
    flex-direction: column;
    align-items: center;
    display: flex;
    position: relative;
    top: -50px;
  }

  .div-block-6 {
    justify-content: flex-end;
    display: flex;
  }

  .div-block-6.verion-2.hide {
    display: none;
  }

  .div-block-7 {
    width: 60%;
  }

  .image-14 {
    position: static;
  }

  .image-14.mobile {
    display: none;
  }

  .image-14-copy {
    position: static;
  }

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

  .knowmore_v2 {
    width: 150px;
    top: -350px;
    left: 100px;
  }

  .hero-blob_v2 {
    position: relative;
    top: -150px;
    left: 0;
  }

  .image-14_v2 {
    position: static;
  }

  .div-block-7_v2 {
    width: 60%;
  }

  .div-block-6_v2 {
    justify-content: flex-end;
    display: flex;
  }

  .knowmore-center {
    width: 150px;
    top: -350px;
    left: 100px;
  }

  .div-block-background {
    width: 60%;
  }

  .hero-blob-backgound {
    position: relative;
    top: -150px;
    left: 0;
  }

  .counter-container-2-expertise {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .div-block-ecosystem {
    margin-top: 0;
  }

  .counter-circle-expertise {
    width: 120px;
    height: 120px;
  }

  .checkbox-2 {
    width: 15px;
    height: 15px;
    margin-top: 4px;
  }

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

  .arrow-2 {
    width: 4em;
    top: auto;
    bottom: 4.9em;
    left: 30.5em;
    right: 0%;
  }

  .checkbox__label {
    font-size: 2em;
    font-weight: 200;
    line-height: 1.5;
  }

  .subscribe__form__input__wrapper {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .button__submit {
    width: 52%;
    font-size: 4.38em;
    line-height: 1.71;
    top: auto;
  }

  .checkbox-field-2 {
    width: 90%;
    align-items: flex-start;
    margin-top: 3em;
    display: flex;
  }

  .text__field__input {
    width: 90%;
    text-align: center;
    letter-spacing: .025em;
    margin-right: 0;
    font-size: 6.25em;
  }

  .gallery-image {
    min-width: 22.5%;
    margin-left: 10px;
    margin-right: 10px;
  }

  .section_1h, .section-2-1h {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .main-wrapper {
    width: 125vw;
  }

  .main-link.footer.hover {
    display: block;
  }

  .main-paragraph.text-align-right {
    white-space: nowrap;
  }

  .section-heading.heading-large.footer, .section-heading.heading-large.footer.primary-font {
    font-size: 36px;
  }

  .lottie-animation._2 {
    margin-top: 0;
  }

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

  .number-wrap.position-absolute.display-flex-horizontal {
    position: static;
  }

  .wrapper-faq.display-flex-horizontal.is-mobile-vertical {
    flex-direction: column;
  }

  .wrap-line {
    flex: 1;
  }

  .newsletter-form {
    width: 100%;
  }

  .about-section.custom-background.position-relative.overflow-hidden {
    background-repeat: repeat;
    background-attachment: fixed;
    padding-bottom: 60px;
  }

  .avatar.border-radius {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .address-wrap {
    padding-right: 0;
  }

  .sticker.position-relative.padding-top.padding-xxhuge.custom-background.overflow-hidden {
    background-repeat: repeat;
  }

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

  .main-text.text-size-xlarge.primary-font.margin-bottom.margin-xsmall.hide-mobile-portrait {
    display: none;
  }

  .main-text.primary-font.text-size-xlarge.hover {
    margin-top: auto;
    margin-bottom: auto;
  }

  .main-text.heading-large {
    font-size: 2.7rem;
  }

  .main-text.heading-large.text-weight-normal {
    font-size: 34px;
  }

  .main-text.heading-large.text-weight-normal.primary-font {
    font-size: 48px;
  }

  .text-span-7.secondary-font.contact, .text-span-7.text-style-bold._48, .text-span-7.primary-font {
    font-size: 36px;
  }

  .grid-4-columns.margin-top.margin-xhuge {
    grid-template-columns: auto auto;
  }

  .arrow-image {
    width: 35px;
    height: 35px;
  }

  .row.padding-custom3.display-flex-horizontal.is-tablet-padding-0 {
    flex-direction: column;
    align-items: flex-start;
  }

  .row.show-tablet.display-flex-horizontal.show-mobile-portrait {
    flex-direction: row;
    align-items: center;
    display: flex;
  }

  .row.padding-bottom.padding-large.border-bottom.white.display-flex-horizontal {
    align-items: flex-start;
  }

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

  .row.display-flex-horizontal.margin-top-auto.is-mobile-horizontal {
    flex-direction: row;
  }

  .row.display-flex-horizontal.center {
    align-items: flex-start;
  }

  .row.display-flex-horizontal.is-mobile-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .row.display-flex-horizontal.is-mobile-horizontal.center {
    flex-direction: row;
    align-items: flex-start;
  }

  .lottie-wrap {
    margin-top: 0;
  }

  .illustrations-wrap-text.max-width-medium.margin-left.margin-medium {
    margin-left: 0;
  }

  .column.width-50.border-right.padding-bottom.padding-xlarge {
    width: 100%;
    border: 1px #000;
  }

  .column.width-50.display-flex-horizontal.padding-right {
    border-bottom: 1px solid #000;
  }

  .column.width-50.padding-right.padding-large {
    padding-bottom: 3.5rem;
  }

  .column.width-50.padding-left.padding-large {
    width: 100%;
    flex-direction: column-reverse;
    padding-bottom: 1.9rem;
    padding-left: 0;
  }

  .column.width-50.padding-left.padding-large.footer {
    flex-direction: column;
  }

  .column.width-50.padding-left.padding-xlarge.is-tablet-padding-0 {
    width: 100%;
    padding-left: 0;
  }

  .column.width-50.padding-vertical.padding-huge.border-right.is-tablet-full-width {
    width: 100%;
    border: 1px #000;
  }

  .column.max-width-full.padding-left.padding-large.is-tablet-padding-0 {
    padding-left: 0;
  }

  .container-4.max-width-xxlarge {
    width: 90%;
  }

  .container-4.max-width-xxlarge.padding-vertical.padding-large.display-flex-horizontal {
    flex-direction: column-reverse;
  }

  .grid-5-columns.margin-top.margin-xxlarge {
    grid-column-gap: 54px;
  }

  .container-creative.max-width-xxlarge {
    width: 90%;
  }

  .container-creative.max-width-xxlarge.padding-vertical.padding-large.display-flex-horizontal {
    flex-direction: column-reverse;
  }

  .circle-cursor.display-flex-horizontal.position-absolute {
    display: none;
  }

  .avatar-copy.border-radius, .avatar-creative.border-radius {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .column-creative.width-50.padding-left.padding-xlarge.is-tablet-padding-0 {
    width: 100%;
    padding-left: 0;
  }

  .column-creative.width-50.padding-vertical.padding-huge.border-right.is-tablet-full-width {
    width: 100%;
    border: 1px #000;
  }

  .column-creative.max-width-full.padding-left.padding-large.is-tablet-padding-0 {
    padding-left: 0;
  }

  .row-creative.padding-custom3.display-flex-horizontal.is-tablet-padding-0 {
    flex-direction: column;
    align-items: flex-start;
  }

  .row-creative.display-flex-horizontal {
    flex-direction: row;
    align-items: flex-start;
  }

  .row-creative.display-flex-horizontal.is-mobile-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-14-copy {
    position: static;
  }

  .vertical-scroll-wrapper {
    height: 2.34375rem;
    overflow: hidden;
  }

  .text-rotation-wrapper {
    margin-left: 0%;
  }

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

  .startup-wrapper-edit {
    min-height: 500px;
  }

  .portfolio-item-draft {
    min-width: 55vw;
  }

  .section-cta, .section-2-loghi {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .banner-section {
    text-align: left;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .banner {
    text-align: left;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-content {
    background-color: #fff;
    border-top: 1px solid #e7ecf0;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 40px;
    position: absolute;
    overflow: auto;
  }

  .search-bar {
    width: 100%;
  }

  .nav-container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .menu-button-2 {
    width: 56px;
    height: 56px;
    justify-content: center;
    align-items: center;
    margin-right: -12px;
    padding: 16px;
  }

  .nav-menu-4 {
    text-align: center;
    margin-right: 0;
    padding-right: 0;
  }

  .logo-div {
    margin-right: auto;
  }

  .nav-cta-button-container {
    flex-direction: column;
    align-items: stretch;
    margin-top: 10px;
  }

  .nav-bar {
    border: 1px #000;
  }

  .nav-link-3 {
    text-align: center;
    margin-left: 25px;
    margin-right: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .nav-link-3:hover {
    transform: none;
  }

  .spacer-2 {
    height: 32px;
  }

  .hero-illustration {
    width: 120px;
    margin-left: 0;
  }

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

  .paragraph-5 {
    font-size: 15px;
  }

  .secondary.light.mobile-hidden {
    display: none;
  }

  .heading-hero.h1 {
    font-size: 35px;
  }

  .heading-hero.h2 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .cta-section-cuber {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

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

  .section-services {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-feedel {
    padding-left: 3%;
    padding-right: 3%;
  }

  .content-block-right-copy {
    padding: 10px;
  }

  .clients-wrapper-three {
    margin-bottom: -30px;
  }

  .logos-without-title {
    padding: 60px 15px;
  }

  .clients-image-three {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer-logo {
    padding-left: 0;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
    display: flex;
  }

  .footer-logo-block {
    margin-bottom: 40px;
  }

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

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

  .strenghts {
    padding: 60px 15px;
  }

  .field-block {
    min-height: auto;
  }

  .cta-form {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-hero-advidory, .banner-img-full, .banner-img-full-copy {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .uui-heroheader01_pattern-image {
    width: 14.9rem;
    top: auto;
    bottom: -15%;
    right: -10%;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .uui-heroheader01_image {
    height: 22rem;
    border-top-left-radius: 6rem;
  }

  .uui-button {
    font-size: 1rem;
  }

  .uui-button:hover {
    border-color: var(--untitled-ui-primary600);
    background-color: var(--untitled-ui-primary600);
  }

  .uui-button.is-button-large {
    grid-column-gap: .5rem;
    padding: .75rem 1.25rem;
    font-size: 1rem;
  }

  .uui-button-wrapper.max-width-full-mobile-landscape {
    width: 100%;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .uui-button-icon.is-icon-large {
    width: 1.25rem;
    height: 1.25rem;
  }

  .uui-button-secondary-gray {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .uui-button-secondary-gray:hover {
    background-color: var(--untitled-ui-white);
    color: var(--untitled-ui-gray700);
  }

  .uui-button-secondary-gray.is-button-large {
    grid-column-gap: .5rem;
    padding: .75rem 1.25rem;
    font-size: 1rem;
  }

  .uui-button-row {
    align-self: stretch;
  }

  .uui-button-row.is-reverse-mobile-landscape, .uui-button-row.button-row-center.is-reverse-mobile-landscape {
    flex-direction: column-reverse;
  }

  .uui-space-large {
    min-height: 2rem;
  }

  .uui-text-size-xlarge {
    font-size: 1.125rem;
  }

  .uui-space-small {
    min-height: 1.25rem;
  }

  .uui-heading-xlarge {
    font-size: 2.25rem;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .uui-page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-layout13_image-01 {
    width: 60%;
    min-width: 60%;
    top: 2%;
    right: 0%;
  }

  .uui-layout13_image-02 {
    width: 50%;
    min-width: auto;
    display: block;
    top: 25%;
    left: 5%;
  }

  .uui-layout13_image-wrapper {
    height: 24rem;
    min-height: auto;
  }

  .uui-layout13_lightbox-image {
    width: 100%;
    min-width: 100%;
    position: static;
  }

  .uui-lightbox_play-icon {
    width: 4rem;
    height: 4rem;
  }

  .uui-layout13_lightbox {
    height: 24rem;
    min-height: auto;
    padding: 1.5rem 1rem;
  }

  .uui-heading-xsmall {
    font-size: 1.25rem;
  }

  .uui-layout13_tabs-link {
    padding-left: 1.5rem;
  }

  .uui-layout13_component {
    grid-column-gap: 0px;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .uui-space-medium {
    min-height: 1.5rem;
  }

  .uui-text-size-large {
    font-size: 1rem;
  }

  .uui-space-xsmall {
    min-height: .75rem;
  }

  .uui-heading-medium {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .uui-badge {
    padding: .125rem .5rem;
  }

  .uui-layout50_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .uui-cta13_logo-row {
    padding-left: 0;
    padding-right: 0;
  }

  .uui-cta13_form {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .uui-contact05_form-wrapper {
    margin-top: 2rem;
  }

  .uui-contact05_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .uui-testimonial05_arrow:hover {
    background-color: var(--untitled-ui-white);
  }

  .uui-testimonial05_logo {
    max-height: 2.5rem;
  }

  .uui-testimonial05_slide {
    padding-left: 0;
    padding-right: 0;
  }

  .uui-testimonial05_component {
    padding-bottom: 3rem;
  }

  .social-link-2:hover {
    color: var(--untitled-ui-gray400);
  }

  .uui-team02_image-wrapper {
    height: 100%;
  }

  .uui-team02_list {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .uui-team02_component {
    margin-top: 3rem;
  }

  .uui-heading-xxsmall {
    font-size: 1.125rem;
  }

  .uui-layout90_list {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .uui-layout90_component {
    align-items: stretch;
  }

  .uui-footer07_legal-link:hover {
    color: var(--untitled-ui-gray400);
  }

  .uui-footer07_legal-list {
    margin-bottom: 1rem;
  }

  .uui-footer07_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 3rem;
  }

  .uui-footer07_link:hover {
    color: var(--untitled-ui-gray500);
  }

  .uui-footer07_link-list {
    grid-row-gap: .5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
  }

  .uui-styleguide_logomark-bg {
    background-image: url('../images/untitled-ui-logomark.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .uui-padding-vertical-xlarge {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .logos-quote-divider {
    padding: 60px 15px;
  }

  .clients-wrapper-two {
    flex-direction: column;
  }

  .clients-info-two {
    max-width: none;
    margin-bottom: 40px;
  }

  .clients-grid {
    grid-column-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 15px;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

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

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link-4 {
    padding-top: 10px;
    padding-bottom: 10px;
    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 rgba(0, 0, 0, .05);
  }

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

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

  .nav-divider {
    width: 200px;
    height: 1px;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

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

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

  .logos-title-large {
    padding: 60px 15px;
  }

  .clients-wrapper {
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: -20px;
  }

  .clients-image-2 {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .service-overview {
    padding: 60px 15px;
  }

  .uui-button-2 {
    font-size: 1rem;
  }

  .uui-button-2:hover {
    border-color: var(--untitled-ui-primary600);
    background-color: var(--untitled-ui-primary600);
  }

  .uui-button-wrapper-2.max-width-full-mobile-landscape {
    width: 100%;
  }

  .max-width-full-mobile-landscape-2 {
    width: 100%;
    max-width: none;
  }

  .uui-button-secondary-gray-2 {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .uui-button-secondary-gray-2:hover {
    background-color: var(--untitled-ui-white);
    color: var(--untitled-ui-gray700);
  }

  .uui-button-row-2 {
    align-self: stretch;
  }

  .uui-button-row-2.button-row-center.is-reverse-mobile-landscape, .uui-button-row-2.is-reverse-mobile-landscape {
    flex-direction: column-reverse;
  }

  .uui-space-medium-2 {
    min-height: 1.5rem;
  }

  .uui-text-size-large-2 {
    font-size: 1rem;
  }

  .uui-space-xsmall-2 {
    min-height: .75rem;
  }

  .uui-heading-medium-2 {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .uui-padding-vertical-xhuge-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .uui-page-padding-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-testimonial18_arrow:hover {
    background-color: var(--untitled-ui-white);
  }

  .uui-testimonial18_arrow.left {
    right: 3.5rem;
  }

  .uui-button-link {
    font-size: 1rem;
  }

  .uui-button-link:hover {
    color: var(--untitled-ui-primary700);
  }

  .uui-button-link.is-alternate:hover {
    color: var(--untitled-ui-white);
  }

  .uui-space-small-2 {
    min-height: 1.25rem;
  }

  .uui-heading-small {
    font-size: 1.5rem;
  }

  .uui-testimonial17_logo {
    max-height: 2.5rem;
  }

  .uui-testimonial18_content {
    padding: 1.5rem;
  }

  .uui-testimonial18_slide {
    padding-right: 1.5rem;
  }

  .uui-testimonial18_mask {
    width: 80%;
  }

  .uui-testimonial18_component {
    margin-top: 3rem;
  }

  .primary.light.mobile-hidden {
    display: none;
  }

  .fn-button {
    width: 100%;
  }

  .fn-paragraph {
    margin-bottom: 24px;
  }

  .fn-heading-2 {
    font-size: 34px;
  }

  .fn-label-small {
    margin-bottom: 12px;
  }

  .fn-container-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .cta-course {
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .fn-button-dark {
    width: 100%;
  }

  .fn-cta-banner {
    padding: 12px;
  }

  .fn-404-image-third {
    width: 80px;
    height: 80px;
  }

  .fn-404-image-second {
    width: 150px;
    height: 150px;
    top: -82%;
    left: 9%;
  }

  .fn-404-image-first {
    width: 150px;
    height: 150px;
    top: -101%;
    right: 6%;
  }

  .fn-heading-jambo {
    margin-bottom: 12px;
    font-size: 54px;
  }

  .fn-section-404 {
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .fn-cta-banner-dark-image {
    display: none;
  }

  .fn-banner-dark-column {
    padding: 12px;
  }

  .fn-section-405 {
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .fh-features-image-wrapper {
    height: 350px;
  }

  .fn-featured-tabs-content {
    width: 100%;
    margin-top: 12px;
    position: static;
  }

  .fh-hero-image-wrapper-first {
    height: 220px;
  }

  .fn-button-2 {
    width: 100%;
  }

  .fn-paragraph-2 {
    margin-bottom: 24px;
  }

  .fn-heading-1 {
    margin-bottom: 12px;
    font-size: 38px;
  }

  .fn-container-grid-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .fn-section-406 {
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    width: 80px;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }

  .container.center {
    flex-direction: column;
    margin-top: 0;
  }

  .container.center.ecosystem {
    margin-top: 0;
    padding: 0;
  }

  .container.right {
    align-items: center;
  }

  .hero-title {
    font-size: 40px;
  }

  .text-span {
    font-size: 50px;
  }

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

  .section.fade.update {
    padding-bottom: 40px;
  }

  .section.fade.update.grain, .section.cover.yellow.cosmic {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .card-image.version-2 {
    max-width: 90%;
    margin-bottom: -85px;
  }

  .heading.neon {
    text-align: center;
    margin-bottom: 24px;
    font-size: 36px;
  }

  .heading.neon.gradient-span {
    font-size: 36px;
  }

  .heading.neon.small {
    font-size: 24px;
  }

  .portfolio-link {
    min-height: 260px;
  }

  .heading-2 {
    font-size: 36px;
  }

  .heading-2.new {
    font-size: 24px;
  }

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

  .paragraph-2.hide {
    display: none;
  }

  .counter-container {
    grid-auto-flow: column;
  }

  .counter-description {
    font-size: 12px;
    line-height: 1;
  }

  .counter-description.tech, .counter-description.design, .counter-description.business {
    font-size: 12px;
    line-height: 1.3;
  }

  .counter-title {
    font-size: 28px;
  }

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

  .footer-container {
    max-width: none;
    grid-row-gap: 20px;
    justify-content: center;
  }

  .footer-wrapper {
    grid-row-gap: 0px;
    justify-content: center;
    justify-items: center;
  }

  .heading-3.new {
    color: #e8eaf6;
    margin-bottom: 10px;
    font-family: DM Sans, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1em;
  }

  .heading-3.new.neon {
    font-size: 24px;
  }

  .heading-3.new.neon.version-3 {
    font-size: 32px;
  }

  .heading-3.new.neon.version-3.gradient-span {
    color: var(--goldenrod);
    padding-left: 0%;
    padding-right: 0%;
    font-size: 28px;
    line-height: 1.1em;
  }

  .heading-3.new.no-space {
    margin-bottom: 0;
    font-size: 20px;
  }

  .heading-3.new.no-space.big {
    margin-top: 0;
    font-size: 18px;
    line-height: 1.5em;
  }

  .heading-3.new.gradient-span {
    font-family: Space Mono, sans-serif;
    font-size: 22px;
    font-weight: 400;
  }

  .heading-3.new.hero {
    margin-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
  }

  .heading-3.new.hide {
    display: none;
  }

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

  .form-2 {
    padding-left: 10%;
    padding-right: 10%;
  }

  .grid.version-2 {
    display: inline-block;
  }

  .grid.ecosystem {
    grid-column-gap: 4px;
    grid-row-gap: 8px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: .5fr .5fr;
    grid-auto-columns: 1fr;
    align-items: center;
    padding: 0;
    display: flex;
  }

  .image-4.ring.ecosystem {
    width: 80px;
    max-width: 120px;
    min-width: 80px;
  }

  .paragraph-3.new.ecosystem {
    opacity: 1;
    color: var(--yellow-light);
    line-height: 1.1;
  }

  .heading-4.new.ecossytem {
    font-size: 12px;
    font-weight: 700;
  }

  .spacer {
    display: none;
  }

  .swiper-slide {
    height: 65vh;
  }

  .swiper-nav-btn.next {
    right: 5%;
  }

  .swiper-nav-btn.prev {
    left: 5%;
  }

  .main-bl {
    width: 90%;
  }

  .big-txt-bl {
    max-width: 291px;
  }

  .big-txt-bl.inner {
    max-width: none;
  }

  .big-txt {
    background-position: 74% 52%;
    background-size: 246px;
    font-size: 90px;
  }

  .neon-shadow {
    bottom: -20%;
  }

  .big-txt-bl-startup-studio {
    max-width: 291px;
  }

  .container-new.right {
    align-items: center;
  }

  .big-txt-2 {
    background-position: 74% 52%;
    background-size: 246px;
    font-size: 90px;
  }

  .timeline_centre {
    justify-content: center;
  }

  .margin-bottom-medium {
    margin-bottom: 24px;
  }

  .timeline_item {
    grid-template-columns: 48px 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .timeline_item.last {
    padding-bottom: 20px;
  }

  .timeline_text {
    color: #e8eaf6;
    font-size: 14px;
  }

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

  .timeline_text.dark.cta {
    font-size: 20px;
  }

  .timeline_text.dark.footer {
    font-family: Space Mono, sans-serif;
    font-size: 16px;
  }

  .timeline_progress {
    text-align: left;
    object-fit: fill;
    flex: 0 auto;
    align-self: auto;
    left: 22px;
  }

  .timeline_progress.active {
    left: auto;
  }

  .timeline_date-text {
    color: var(--liliac-light);
    text-align: left;
    text-shadow: 0 0 6px var(--goldenrod);
    font-size: 18px;
  }

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

  .timeline_date-text.center.other {
    color: var(--liliac-light);
    text-shadow: none;
  }

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

  .fixed-cta-container {
    width: 50%;
    top: auto;
    bottom: 3%;
    left: auto;
    right: 5%;
  }

  .fixed-cta {
    padding: 10px 14px;
    font-size: 13px;
    top: 18px;
  }

  .fixed-cta.migration {
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    position: static;
  }

  .text-block-5 {
    font-size: 12px;
  }

  .page-wrapper-2 {
    margin-top: 0;
    padding-top: 32px;
  }

  .page-wrapper-2.second, .page-wrapper-2.hero {
    padding-top: 0;
  }

  .feature-item-use-case {
    min-height: 120px;
    padding: 24px;
  }

  .feature-item-use-case.left-item {
    max-height: 370px;
    min-height: 370px;
    padding: 0 20px;
  }

  .feature-item-use-case.middle-item {
    max-height: 370px;
    min-height: 370px;
  }

  .feature-item-use-case.middle-item.wellbeing {
    background-image: linear-gradient(45deg, rgba(0, 205, 71, .41), rgba(114, 231, 167, .27));
  }

  .feature-item-use-case.right-item {
    max-height: 370px;
    min-height: 370px;
  }

  ._4-col-grid {
    grid-template-columns: 1fr;
  }

  .home.w--current {
    width: 50%;
    display: flex;
  }

  .home.hide-mobile {
    display: none;
  }

  .circle-blur-middle-left.safari.small {
    height: 100px;
    left: 75%;
  }

  .circle-blur-middle-left.safari.small.alt {
    width: 100px;
    margin-right: 40px;
    bottom: 25%;
    left: 140px;
  }

  .circle-blur-middle-left.safari.hide {
    display: none;
  }

  .circle-blur-middle-left.safari.small {
    height: 100px;
    left: 25%;
  }

  .figma-embed-wrapper {
    height: 360px;
    display: none;
  }

  .hero-grid {
    height: 60%;
    justify-content: center;
    justify-items: center;
  }

  .main-bl-2 {
    width: 100%;
    text-align: center;
    padding-top: 0;
    padding-left: 0;
  }

  .main-bl-2.inner-section {
    flex-direction: column;
    padding-bottom: 20px;
  }

  .counter-circle-2 {
    width: 90px;
    height: 90px;
    border-width: 2px;
    padding: 10px;
  }

  .circle-blur-top-right-2 {
    width: 280px;
    height: 280px;
    right: -20%;
  }

  .trio-cards {
    grid-column-gap: 41px;
    grid-row-gap: 41px;
  }

  .pricing-table {
    padding: 24px 16px;
  }

  .heading-9 {
    font-size: 24px;
  }

  .navbar-2 {
    height: auto;
    justify-content: center;
  }

  .nav-menu-2 {
    justify-content: center;
    margin-right: 0;
  }

  .anim-big-txt-3 {
    font-size: 36px;
    line-height: 40px;
  }

  .anim-big-txt-3.inner {
    color: var(--yellow-light);
    text-shadow: 0 0 6px #ffbe00;
    font-size: 24px;
    line-height: 1;
  }

  .project-spec-webflow-wrap {
    height: 400px;
  }

  .wrapper-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .wrapper-2.hide-mobile {
    justify-content: center;
    margin-top: 60px;
  }

  .label-arrow.on-t-m {
    width: 80px;
    margin-left: 140px;
    top: 40%;
  }

  .blur-wrapper {
    height: 100%;
    background-image: none;
    display: block;
  }

  .neon-shadow-2 {
    bottom: -20%;
  }

  .button-3.secondary.small.nav-cta.hide {
    display: none;
  }

  .project-spec-name {
    margin-bottom: 12px;
    margin-right: 0;
  }

  .icon-image-wrapper {
    align-items: center;
    display: flex;
  }

  .circle-blur-top-left {
    width: 280px;
    height: 280px;
    right: -20%;
  }

  .circle-blur-top-left.safari.purple {
    height: 50px;
    margin-top: 140px;
  }

  .circle-blur-top-left.safari.purple.small {
    width: 150px;
    height: 150px;
    margin-top: 40px;
    top: 0%;
  }

  .centered-intro {
    margin-bottom: 0;
  }

  .hero-content-wrap.design-to-webflow {
    height: auto;
    flex-wrap: nowrap;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .counter-title-2 {
    font-size: 24px;
  }

  .counter-title-2.espertise.busines, .counter-title-2.espertise.design, .counter-title-2.espertise.tech {
    font-size: 16px;
  }

  .big-txt-3 {
    font-size: 20px;
    line-height: 1;
  }

  .big-txt-3.ligh {
    font-size: 40px;
    line-height: 1;
  }

  .big-txt-3.ligh.small {
    text-align: center;
    font-size: 36px;
    line-height: 1;
  }

  .big-txt-3.ligh.small.inner {
    padding-top: 40px;
    font-size: 24px;
  }

  .project-title-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-title-wrapper {
    margin-bottom: 10px;
  }

  .section-3 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-3.home-hero-section {
    padding-bottom: 36px;
  }

  .section-3.home-hero-section.slider-new {
    margin-top: 0;
  }

  .heading-2-small {
    color: #e8eaf6;
    font-size: 32px;
    line-height: 1;
  }

  .navbar-container {
    width: auto;
    justify-content: flex-start;
    margin-left: auto;
  }

  .large-heading.new {
    color: var(--liliac-light);
    font-family: Space Mono, sans-serif;
    font-size: 20px;
    font-weight: 400;
  }

  .footer-feedel {
    padding-left: 10%;
    padding-right: 10px;
  }

  .footer-feedel.hero {
    height: 90%;
  }

  .footer-feedel.hero.grain {
    height: 90%;
    padding-bottom: 0;
  }

  .footer-feedel.grain {
    padding: 40px 5%;
  }

  .footer-feedel.grain.timeline {
    padding: 60px 12px 40px;
  }

  .footer-feedel.grain.slim {
    padding-top: 20px;
  }

  .footer-feedel.grain.grey.light {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .footer-feedel.grain.hide {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-feedel.grain.first {
    width: 100%;
    max-width: 100%;
    margin-top: -40px;
    padding: 40px 10% 0;
  }

  .footer-feedel.grain.slim-cta {
    padding-top: 20px;
  }

  .footer-feedel.highlight {
    width: 100%;
    padding: 20px 10px 60px;
  }

  .footer-feedel.slim {
    padding-left: 10%;
    padding-right: 10%;
  }

  .counter-container-2 {
    grid-column-gap: 10px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
  }

  .counter-container-2.large {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: center;
    justify-items: center;
  }

  .benefits-icon {
    width: 32px;
    margin-bottom: 0;
    margin-right: 12px;
  }

  .project-spec-figma-wrap {
    height: 400px;
  }

  .center-div.max-800w.margin-xl {
    max-width: 100%;
    align-self: center;
    align-items: center;
  }

  .center-div.max-800w.margin-xl.know-more.hide {
    display: block;
  }

  .center-div.max-800w.margin-xl.motto {
    margin-top: 24px;
  }

  .circle-blur-top-left-2 {
    width: 280px;
    height: 280px;
    right: -20%;
  }

  .circle-blur-top-left-2.safari.hero {
    padding-top: 100px;
  }

  .circle-blur-top-left-2.safari.hero.hide {
    display: none;
  }

  .gradient-span {
    font-size: 20px;
  }

  .circle-blur-bottom-right-2.safari {
    width: 280px;
    height: 180px;
    margin-top: 300px;
    display: none;
    bottom: 30%;
  }

  .circle-blur-bottom-right-2.safari.hero {
    width: 150px;
    height: 150px;
    margin-top: 140px;
  }

  .circle-blur-bottom-right-2.safari.small {
    width: 100px;
    height: 150px;
    margin-top: 220px;
    bottom: 10%;
  }

  .nav-text.new {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }

  .lottie-gradient {
    width: 150%;
    height: 100%;
    object-fit: fill;
    margin-left: -50vw;
    padding-top: 0;
    overflow: visible;
  }

  .container-3.hero {
    height: auto;
    max-width: none;
    margin-top: 0;
  }

  .container-3.centred.full-width {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .paragraph-m.max-640w.hero {
    opacity: .38;
    color: #e8eaf6;
    mix-blend-mode: multiply;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.2;
  }

  .nav-link-dope-edition.right-32 {
    margin-right: 4px;
    padding: 10px 4px;
    font-size: 9px;
  }

  .centered-call-to-action.clip {
    grid-column-gap: 5vw;
    grid-row-gap: 20px;
  }

  .button-4 {
    margin-top: 20px;
  }

  .text-field-2.footer {
    font-size: 12px;
  }

  .button-5.new {
    background-color: var(--goldenrod);
    color: var(--yellow-light);
  }

  .logos-heading-wrapper {
    border-bottom: 1px solid #1e2029;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .body-display-2.large {
    font-size: 16px;
  }

  .solid-line {
    margin-left: 0;
  }

  .featured-logos-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 12px;
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    align-content: stretch;
    justify-content: space-between;
    display: none;
  }

  .featured-logo-item {
    padding: 0;
  }

  .logo-partners.small {
    width: 35%;
    height: 50%;
  }

  .h1 {
    font-size: 40px;
  }

  .reg-icon, .social-icon {
    width: 36px;
    margin-bottom: 0;
  }

  .box {
    min-height: 250px;
    margin-bottom: -100px;
  }

  .half-dual {
    grid-row-gap: 48px;
  }

  .about-wrapper {
    padding-left: 0;
  }

  .slide-image {
    height: 40vh;
    min-height: 300px;
  }

  .slide-image.team-gallery {
    min-height: 160px;
  }

  .slide-image.team-image {
    height: 100%;
    min-height: auto;
  }

  .big-txt-3-second-line {
    font-size: 36px;
    line-height: 1;
  }

  .big-txt-3-second-line.ligh {
    font-size: 40px;
    line-height: 1;
  }

  .big-txt-3-second-line.ligh.small {
    text-align: left;
    font-size: 36px;
    line-height: 1;
  }

  .big-txt-3-second-line.ligh.small.second-line {
    font-size: 36px;
  }

  .team-wrapper {
    min-height: 475px;
    padding-bottom: 80px;
  }

  .team-item {
    height: 70vh;
    min-width: 90vw;
    margin-right: 16px;
  }

  .creator_content {
    grid-column-gap: 16px;
    filter: grayscale(70%);
  }

  .creator_block {
    display: block;
  }

  .block_username {
    font-size: 22px;
  }

  .creator_container {
    padding: 0;
  }

  .image-small {
    width: 35%;
    height: 35%;
  }

  .logos {
    padding-top: 0;
  }

  .collection-list {
    grid-row-gap: 12px;
  }

  .image-card {
    max-height: 20px;
  }

  .image-card.edit {
    max-height: 30px;
  }

  .image {
    height: 100%;
  }

  .image-container {
    width: 80vw;
    height: 50vh;
  }

  .heading-10 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 15vw;
    transform: translate(-5vw, -10vw);
  }

  .heading-10.outline {
    font-size: 15vw;
    transform: translate(-5vw, -10vw);
  }

  .project-content-container {
    width: 80vw;
    height: 50vh;
  }

  .project-slide {
    position: relative;
    overflow: visible;
  }

  .sticky-camera {
    width: 100vw;
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    overflow: hidden;
  }

  .speaker-name {
    font-size: 42px;
  }

  .speaker-arrow {
    top: auto;
    bottom: 0;
    right: 5vw;
  }

  .speaker-arrow.left {
    margin-right: 84px;
    left: auto;
    right: 0;
  }

  .speaker-slide-content {
    padding-bottom: 6px;
  }

  .speaker-info {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .clip-text.speaker-headding {
    margin-top: -30px;
    margin-bottom: 10px;
  }

  .sticky-camera-2 {
    width: 100vw;
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    overflow: hidden;
  }

  .image-12 {
    height: 100%;
  }

  .image-container-2 {
    width: 80vw;
    height: 50vh;
  }

  .startup-logo-carousel {
    height: 100%;
  }

  .speaker-name-2 {
    font-size: 42px;
  }

  .speaker-name-2.heading-2-small {
    font-size: 24px;
  }

  .slide-image-2 {
    height: 40vh;
    min-height: 300px;
  }

  .speaker-slide-content-2 {
    padding-bottom: 6px;
  }

  .hero-blob {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 10px;
    right: 0%;
  }

  .heading-6 {
    font-size: 32px;
  }

  .heading-6.second-line {
    font-family: Space Mono, sans-serif;
    font-size: 20px;
    font-weight: 400;
  }

  .knowmore {
    width: 120px;
    top: -100px;
    left: 0;
  }

  .knowmore.version-2 {
    top: 0;
  }

  .knowmore.version-2.w--current {
    top: -100%;
  }

  .knowmore.version-2.hide {
    display: none;
  }

  .image-13 {
    opacity: 1;
    mix-blend-mode: normal;
  }

  .image-13.center {
    max-width: 90%;
    display: inline-block;
  }

  .hero-images {
    height: auto;
    margin-bottom: 0;
  }

  .div-block-6 {
    width: 50%;
    height: 30%;
  }

  .div-block-7.hide.desktop {
    width: 100%;
    margin-left: 0;
    display: block;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .div-block-7.hide.desktop.section-portfolio {
    top: -300%;
  }

  .div-block-7.hide.desktop.section-portfolio.hide-mobile {
    display: none;
  }

  .div-block-7.mobile {
    padding-bottom: 60px;
    display: block;
  }

  .image-14.mobile {
    display: none;
  }

  .download {
    width: 90%;
    display: flex;
  }

  .section-2_v2.hero {
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-2_v2.hero.grain {
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-2_v2.grain {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-2_v2.grain.timeline {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-2_v2.grain.hide {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-2_v2.grain.first {
    padding-top: 20px;
  }

  .knowmore_v2 {
    width: 120px;
    top: -100px;
    left: 0;
  }

  .hero-blob_v2 {
    width: 90%;
    height: auto;
    top: 0;
    left: 0;
  }

  .container-3_v2.hero {
    height: 75vh;
    max-width: none;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
  }

  .div-block-7_v2.hide.desktop {
    display: none;
  }

  .div-block-7_v2.mobile {
    display: block;
  }

  .div-block-6_v2 {
    width: 50%;
    height: 30%;
  }

  .knowmore-center {
    width: 120px;
    top: -100px;
    left: 0;
  }

  .knowmore-center.version-2 {
    margin-top: 0;
    padding-top: 0;
    top: 0;
  }

  .knowmore-center.version-2.w--current {
    top: -100%;
  }

  .div-block-background.hide.desktop {
    display: none;
  }

  .div-block-background.mobile {
    padding-bottom: 20px;
    display: block;
  }

  .hero-blob-backgound {
    width: 90%;
    height: auto;
    top: 0;
    left: 0;
  }

  .counter-container-2-expertise {
    grid-column-gap: 10px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
  }

  .counter-container-2-expertise.large {
    grid-column-gap: 12px;
  }

  .counter-container-2-expertise.large.expertise {
    width: 120%;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-content: center;
    justify-content: center;
    justify-items: center;
    margin-top: 0;
    margin-left: -20px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-ecosystem {
    grid-template-rows: auto;
    grid-template-columns: 50vw;
    display: flex;
  }

  .div-block-ecosystem.focused {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .div-block-ecosystem.focused.puglia-orizzonti, .div-block-ecosystem.focused.lamia {
    grid-row-gap: 12px;
  }

  .counter-circle-expertise {
    width: 90px;
    height: 90px;
    border-width: 2px;
    padding: 10px;
  }

  .counter-circle-expertise.expertise.business {
    width: 90px;
    mix-blend-mode: normal;
    background-color: rgba(0, 0, 0, 0);
    border-style: none;
    padding-bottom: 0;
    padding-right: 0;
  }

  .counter-circle-expertise.expertise.design, .counter-circle-expertise.expertise.tech {
    width: 90px;
    background-color: rgba(0, 0, 0, 0);
    border-style: none;
    padding-left: 0;
    padding-right: 0;
  }

  .left-div.max-800w.margin-xl {
    max-width: 100%;
    align-self: center;
    align-items: center;
  }

  .left-div.max-800w.margin-xl.know-more.hide {
    display: block;
  }

  .container-partners.hero {
    height: auto;
    max-width: none;
    margin-top: 0;
  }

  .container-partners.centred.full-width {
    max-width: 100%;
  }

  .checkbox-2 {
    width: 30px;
    margin-top: 4px;
  }

  .checkbox__label {
    font-size: 3.5em;
    font-weight: 400;
  }

  .button__submit {
    width: 52%;
    font-size: 4.38em;
  }

  .checkbox-field-2 {
    width: 90%;
  }

  .text__field__input {
    width: 90%;
    text-align: center;
    letter-spacing: .025em;
    font-size: 6.25em;
  }

  .form__wrapper {
    padding-top: 16.2em;
  }

  .gallery-track {
    padding-left: 10px;
    padding-right: 10px;
  }

  .gallery-image {
    margin-left: 10px;
    margin-right: 10px;
  }

  .section_1h.hero {
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section_1h.hero.grain {
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section_1h.grain {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section_1h.grain.timeline {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section_1h.grain.hide {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section_1h.grain.first {
    padding-top: 20px;
  }

  .section-2-1h.hero {
    height: 90%;
  }

  .section-2-1h.hero.grain {
    height: 90%;
    padding-bottom: 0;
  }

  .section-2-1h.grain {
    padding: 40px 5%;
  }

  .section-2-1h.grain.timeline {
    padding: 60px 12px 40px;
  }

  .section-2-1h.grain.slim {
    padding-top: 20px;
  }

  .section-2-1h.grain.grey.light {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-2-1h.grain.hide {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-2-1h.grain.first {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding: 80px 10% 0;
  }

  .section-2-1h.grain.slim-cta {
    padding-top: 20px;
  }

  .section-2-1h.highlight {
    width: 100%;
    padding: 20px 10px 60px;
  }

  .section-2-1h.slim {
    padding-left: 5%;
    padding-right: 5%;
  }

  .container-billboard.hero {
    height: auto;
    max-width: none;
    margin-top: 0;
  }

  .container-billboard.centred.full-width {
    max-width: 100%;
  }

  .page-wrapper-panel {
    min-height: 0;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .scroller {
    height: 6rem;
  }

  .background {
    mix-blend-mode: color-dodge;
  }

  .main-wrapper {
    width: 100vw;
    height: auto;
    margin-left: 0;
  }

  .line-divider._1.mobile-hide {
    display: none;
  }

  .move-text.primary-font.first, .move-text.primary-font.second, .main-link {
    font-size: 30px;
  }

  .main-link.footer {
    display: block;
  }

  .move-wrapper.position-absolute {
    top: 5%;
  }

  .move-wrapper.position-absolute.background-color-black.display-flex-horizontal {
    width: 120vw;
    top: 5%;
    transform: translate(-19px, 38px)perspective(1078px)rotate(-9deg);
  }

  .projects-2.padding-vertical.padding-huge.background-color-black {
    padding-bottom: 0;
  }

  .projects-2.padding-vertical.padding-huge.background-color-black.overflow-hidden {
    padding-bottom: 3.5rem;
  }

  .main-paragraph.text-align-center {
    font-size: 14px;
  }

  .main-paragraph.margin-top.text-weight-bold.margin-small {
    margin-top: 1.4rem;
  }

  .main-paragraph.margin-top.margin-medium, .main-paragraph.margin-top.margin-xxsmall.max-width-full {
    font-size: 14px;
  }

  .main-paragraph.margin-top.margin-xxsmall.illustrations {
    display: none;
  }

  .main-paragraph.text-align-right {
    white-space: nowrap;
    margin-top: 10px;
  }

  .section-heading.heading-large.footer {
    font-size: 33px;
  }

  .section-heading.heading-large.footer.primary-font {
    font-size: 32px;
  }

  .section-heading.heading-large.text-color-black {
    font-size: 40px;
  }

  .heading-container.padding-vertical.padding-custom1.border-bottom.overflow-hidden {
    padding-top: 20px;
  }

  .left-arrow.background-color-black {
    width: 50px;
    height: 50px;
    border-style: none;
    top: auto;
    bottom: 9%;
    left: 30%;
    right: auto;
  }

  .left-arrow.background-color-black:hover {
    filter: none;
  }

  .lottie-animation {
    height: 201%;
  }

  .lottie-animation.cell {
    height: 197%;
  }

  .position-relative.display-flex-horizontal {
    margin-bottom: 0;
  }

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

  .filter.position-absolute, .filter.position-absolute.sixth, .filter.position-absolute.third, .filter.position-absolute.fourth {
    width: 150px;
  }

  .branding-slide.overflow-hidden {
    height: 100%;
  }

  .number-wrap.position-absolute.display-flex-horizontal {
    justify-content: flex-start;
    align-items: flex-end;
    position: static;
  }

  .wrap-text-illustrations.position-absolute {
    padding: 20px;
  }

  .faq-question-bar {
    padding: 15px 0;
  }

  .faq-question-bar.padding-top.padding-custom1 {
    padding-bottom: 0;
  }

  .back-to-top-link {
    bottom: 8%;
  }

  .client-name.primary-font {
    font-size: 16px;
  }

  .social-links-wrapper {
    margin-top: 0;
  }

  .right-arrow.background-color-black {
    width: 50px;
    height: 50px;
    border-style: none;
    top: auto;
    bottom: 9%;
    left: auto;
    right: 30%;
  }

  .right-arrow.background-color-black:hover {
    filter: none;
  }

  .moved-image.margin-right.margin-medium {
    width: 55vw;
  }

  .image-size {
    width: 100%;
  }

  .my-clients-slider {
    padding-bottom: 135px;
  }

  .social-link.margin-left.margin-small {
    width: 20px;
    margin-left: .5rem;
  }

  .wrap-line {
    flex: 1;
    margin-bottom: 15px;
    margin-right: 40px;
  }

  .nav-link-2.margin-0.padding-0.heading-large.text-weight-bold {
    padding-top: .5rem;
    padding-bottom: 1rem;
    font-size: 40px;
  }

  .nav-link-2.margin-0.padding-0.heading-large.text-weight-bold.first {
    font-size: 40px;
  }

  .my-skill-wrap.padding-bottom.padding-custom1.border-bottom, .my-skill-wrap.padding-bottom.padding-custom1.border-bottom.fouth, .my-skill-wrap.padding-bottom.padding-custom1.border-bottom.fifth, .my-skill-wrap.padding-bottom.padding-custom1.border-bottom.third, .my-skill-wrap.padding-bottom.padding-custom1.border-bottom.second {
    padding-bottom: 15px;
  }

  .about-section.custom-background.position-relative.overflow-hidden {
    padding-top: 0;
  }

  .avatar.border-radius.overflow-hidden {
    width: 230px;
    height: 230px;
    margin-bottom: 22px;
  }

  .image-background.second.position-absolute {
    top: 10%;
    right: -48%;
  }

  .image-background.second.position-absolute.hide-mobile {
    width: 200px;
    top: 100%;
    left: 0;
  }

  .image-background.third.position-absolute {
    width: 340px;
    top: -1%;
    left: -52%;
  }

  .image-background.third.position-absolute.hide-mobile {
    display: block;
  }

  .image-background.position-absolute {
    width: 340px;
    top: 29%;
    right: 26%;
  }

  .image-background.position-absolute.footer.third {
    top: 8%;
    right: -15%;
  }

  .image-background.position-absolute.footer.second {
    top: 21%;
  }

  .image-background.position-absolute.footer.fourth {
    bottom: 26%;
    right: -17%;
  }

  .image-background.position-absolute {
    width: 340px;
    top: 29%;
    right: 26%;
  }

  .image-background.position-absolute.footer.second {
    top: 21%;
  }

  .image-background.position-absolute.footer.third {
    top: 8%;
    right: -15%;
  }

  .image-background.position-absolute.footer.fourth {
    width: 180px;
    bottom: 26%;
    right: 25%;
  }

  .address-wrap {
    width: 100%;
  }

  .icon-menu {
    font-size: 73px;
    top: auto;
    bottom: -68%;
  }

  .sticker {
    padding-right: 0;
    left: 0%;
  }

  .sticker.position-relative.padding-top.padding-xxhuge.custom-background.overflow-hidden {
    padding-top: 12.8rem;
  }

  .clients-image {
    width: 150px;
  }

  .main-text.text-size-xlarge.text-style-allcaps.margin-bottom.margin-small {
    font-size: 36px;
  }

  .main-text.menu {
    color: #000;
    line-height: 1.2;
  }

  .main-text.primary-font.text-size-xlarge {
    font-size: 18px;
  }

  .main-text.heading-large {
    font-size: 36px;
  }

  .main-text.heading-large.primary-font {
    font-size: 30px;
  }

  .main-text.heading-large.primary-font.second {
    font-size: 64px;
  }

  .main-text.heading-large.text-weight-normal, .main-text.heading-large.text-weight-normal.text-style-allcaps, .main-text.heading-large.text-weight-normal.primary-font {
    font-size: 36px;
  }

  .main-text._96px.primary-font {
    font-size: 40px;
  }

  .text-span-7.secondary-font.contact {
    font-size: 33px;
  }

  .text-span-7.text-style-bold._48 {
    font-size: 24px;
  }

  .text-span-7.primary-font {
    font-size: 31px;
  }

  .grid-4-columns.margin-top.margin-xhuge {
    grid-column-gap: 36px;
    grid-row-gap: 47px;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .arrow-image {
    width: 30px;
    height: 30px;
  }

  .row.padding-custom3.display-flex-horizontal.is-tablet-padding-0 {
    padding-top: 39px;
  }

  .row.show-tablet.display-flex-horizontal {
    justify-content: flex-start;
  }

  .row.show-tablet.padding-vertical.padding-xlarge {
    padding-top: .7rem;
    padding-left: 0;
    padding-right: 0;
  }

  .row.show-tablet.padding-vertical.padding-xlarge.slider {
    padding-top: 64px;
  }

  .row.padding-bottom.padding-medium.display-flex-horizontal.border-bottom.overflow-hidden {
    padding-top: 2.7rem;
    padding-bottom: 0;
  }

  .row.padding-bottom.padding-medium.display-flex-horizontal.border-bottom.center, .row.padding-bottom.padding-medium.display-flex-horizontal.border-bottom.left {
    border-bottom-style: solid;
  }

  .row.padding-bottom.padding-large.border-bottom.white.display-flex-horizontal.max-width-full {
    align-items: flex-start;
  }

  .row.display-flex-horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .row.display-flex-horizontal.top {
    align-items: flex-start;
  }

  .row.display-flex-horizontal.margin-top-auto.is-mobile-horizontal {
    border: 1px #000;
    flex-direction: row;
    margin-top: 46px;
    padding-bottom: 97px;
  }

  .row.display-flex-horizontal.border-bottom {
    border-bottom-style: none;
    flex-direction: column;
  }

  .row.display-flex-horizontal.border-bottom.padding-bottom.padding-xsmall {
    align-items: center;
  }

  .row.display-flex-horizontal._2 {
    align-items: flex-start;
  }

  .row.display-flex-horizontal.center.is-mobile-horizontal {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .row.display-flex-horizontal.center.margin-top.margin-large.is-mobile-horizontal {
    align-items: flex-start;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .row.display-flex-horizontal.is-mobile-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .row.display-flex-horizontal.is-mobile-horizontal.padding {
    padding-left: 0;
    display: none;
  }

  .row.display-flex-horizontal.hero {
    justify-content: flex-start;
  }

  .main-heading.heading-xlarge.text-align-center {
    font-size: 72px;
  }

  .lottie-wrap {
    width: 65px;
    height: 45px;
    flex: none;
    justify-content: center;
    margin-top: 10px;
    margin-right: 0;
  }

  .lottie-wrap.no-margin {
    margin-top: 0;
  }

  .lottie-wrap.show-mobile-portrait {
    margin-top: 0;
    display: flex;
  }

  .lottie-wrap.heart {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
  }

  .icon-white.margin-right.margin-small {
    width: 40px;
    margin-top: .3rem;
    margin-right: .125rem;
  }

  .branding-slider.background-color-white {
    padding-bottom: 0;
  }

  .illustrations-wrap-text.max-width-medium.margin-right.margin-huge {
    margin-bottom: 0;
  }

  .bold-text {
    font-size: 16px;
  }

  .column.width-50.display-flex-horizontal.padding-right {
    border-bottom: 1px solid #000;
    align-items: flex-end;
    padding-right: 0;
  }

  .column.width-50.padding-right.padding-large {
    padding-top: 1.1rem;
    padding-bottom: 7.3rem;
  }

  .column.width-50.padding-left.padding-large {
    flex-direction: column-reverse;
    padding-bottom: 0;
  }

  .column.width-50.padding-left.padding-large.footer {
    border-bottom: 1px #000;
    flex-direction: column;
  }

  .column.width-50.padding-vertical.padding-huge.border-right.is-tablet-full-width {
    border: 1px #000;
    padding-right: 0;
  }

  .column.padding-top.padding-medium._50 {
    width: auto;
  }

  .type-work {
    font-size: 14px;
  }

  .menu-button {
    padding-bottom: 0;
  }

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

  .submit-button.background-color-white.text-style-allcaps {
    padding-right: 0;
  }

  .container-4.max-width-xxlarge.display-flex-horizontal {
    background-color: rgba(255, 255, 255, .38);
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-4.max-width-xxlarge.padding-vertical.padding-large.display-flex-horizontal {
    height: 100%;
    border-bottom-style: none;
    flex-direction: column-reverse;
    padding-top: 0;
  }

  .grid-5-columns.margin-top.margin-xxlarge {
    width: 100%;
    grid-column-gap: 18px;
    grid-row-gap: 39px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .clients-card.display-flex-horizontal.position-absolute, .clients-card.display-flex-horizontal.position-absolute.fourth.is-tablet-relative {
    width: auto;
    height: 250px;
  }

  .clients-card.display-flex-horizontal.position-absolute.third.z-index-hover.is-tablet-relative {
    width: 100%;
    height: 250px;
  }

  .clients-card.display-flex-horizontal.position-absolute.fifth.is-tablet-relative {
    width: auto;
    height: 250px;
  }

  .clients-card.display-flex-horizontal.position-absolute.sixth.is-tablet-relative {
    width: 100%;
    height: 250px;
  }

  .icon {
    width: 40px;
    max-width: none;
    display: inline-block;
  }

  .nav-menu-3.max-width-full.display-flex-horizontal.padding-right.border-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-creative.max-width-xxlarge.display-flex-horizontal {
    background-color: rgba(255, 255, 255, .38);
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-creative.max-width-xxlarge.padding-vertical.padding-large.display-flex-horizontal {
    height: 100%;
    border-bottom-style: none;
    flex-direction: column-reverse;
    padding-top: 0;
  }

  .avatar-copy.border-radius.overflow-hidden, .avatar-creative.border-radius.overflow-hidden {
    width: 230px;
    height: 230px;
    margin-bottom: 22px;
  }

  .column-creative.width-50.padding-vertical.padding-huge.border-right.is-tablet-full-width {
    border: 1px #000;
    padding-right: 0;
  }

  .row-creative.padding-custom3.display-flex-horizontal.is-tablet-padding-0 {
    padding-top: 39px;
  }

  .row-creative.display-flex-horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .row-creative.display-flex-horizontal.border-bottom {
    border-bottom-style: none;
    flex-direction: column;
  }

  .row-creative.display-flex-horizontal.border-bottom.padding-bottom.padding-xsmall {
    align-items: center;
  }

  .row-creative.display-flex-horizontal._2 {
    align-items: flex-start;
  }

  .row-creative.display-flex-horizontal.is-mobile-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .row-creative.display-flex-horizontal.hero {
    justify-content: flex-start;
  }

  .image-background-copy.second.position-absolute {
    top: 10%;
    right: -48%;
  }

  .image-background-copy.third.position-absolute {
    width: 340px;
    top: -1%;
    left: -52%;
  }

  .image-background-copy.position-absolute {
    width: 340px;
    top: 29%;
    right: 26%;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 8%;
    right: -15%;
  }

  .image-background-copy.position-absolute.footer.second {
    top: 21%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: 26%;
    right: -17%;
  }

  .image-background-copy.position-absolute {
    width: 340px;
    top: 29%;
    right: 26%;
  }

  .background-2 {
    opacity: .55;
    display: block;
  }

  .image-background-copy.second.position-absolute {
    top: 10%;
    right: -48%;
  }

  .image-background-copy.third.position-absolute {
    width: 340px;
    top: -1%;
    left: -52%;
  }

  .image-background-copy.position-absolute {
    width: 340px;
    top: 29%;
    right: 26%;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 8%;
    right: -15%;
  }

  .image-background-copy.position-absolute.footer.second {
    top: 21%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: 26%;
    right: -17%;
  }

  .image-background-copy.position-absolute {
    width: 340px;
    top: 29%;
    right: 26%;
  }

  .image-background-copy.position-absolute.footer {
    top: 50vh;
  }

  .image-background-copy.position-absolute.footer.second {
    top: 21%;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 8%;
    right: -15%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: 26%;
    right: -17%;
  }

  .image-background-copy.second.position-absolute {
    top: 10%;
    right: -48%;
  }

  .image-background-copy.third.position-absolute {
    width: 340px;
    top: -1%;
    left: -52%;
  }

  .image-background-copy.position-absolute {
    width: 340px;
    top: 29%;
    right: 26%;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 8%;
    right: -15%;
  }

  .image-background-copy.position-absolute.footer.second {
    top: 21%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: 26%;
    right: -17%;
  }

  .image-background-copy.position-absolute {
    width: 340px;
    top: 29%;
    right: 26%;
  }

  .image-background-copy.position-absolute.footer.second {
    width: 50vw;
    top: 50%;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 8%;
    right: -15%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: 26%;
    right: -17%;
  }

  .image-background-copy.second.position-absolute {
    top: 10%;
    right: -48%;
  }

  .image-background-copy.third.position-absolute {
    width: 340px;
    top: -1%;
    left: -52%;
  }

  .image-background-copy.position-absolute {
    width: 340px;
    top: 29%;
    right: 26%;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 8%;
    right: -15%;
  }

  .image-background-copy.position-absolute.footer.second {
    top: 21%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    bottom: 26%;
    right: -17%;
  }

  .image-background-copy.position-absolute {
    width: 340px;
    top: 29%;
    right: 26%;
  }

  .image-background-copy.position-absolute.footer.second {
    top: 21%;
  }

  .image-background-copy.position-absolute.footer.third {
    top: 8%;
    right: -15%;
  }

  .image-background-copy.position-absolute.footer.fourth {
    width: 200px;
    bottom: 15%;
    right: 10%;
  }

  .image-14-copy.mobile {
    display: none;
  }

  .link-block-2 {
    opacity: 1;
    filter: none;
  }

  .image-partner {
    width: 35%;
    height: 35%;
  }

  .startup-wrapper-edit {
    min-height: 475px;
    padding-bottom: 80px;
  }

  .portfolio-item-draft {
    height: 70vh;
    min-width: 90vw;
    margin-right: 16px;
  }

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

  .hero_left {
    width: 100%;
  }

  .section-5.is-hero {
    flex-direction: column;
  }

  .hero_right {
    width: 100%;
  }

  .portfolio---others {
    padding-left: 10px;
    padding-right: 10px;
  }

  .portfolio---others.hide-mobile {
    justify-content: center;
    margin-top: 60px;
  }

  .announcements {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    line-height: 1.2;
  }

  .announcement-bar {
    padding-top: 8px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .main-cta {
    padding: 10px 14px;
    font-size: 13px;
    top: 18px;
  }

  .main-cta.migration {
    padding-left: 10px;
    padding-right: 10px;
    display: none;
    position: static;
  }

  .section-cta {
    padding-left: 10%;
    padding-right: 10px;
  }

  .section-cta.hero {
    height: 90%;
  }

  .section-cta.hero.grain {
    height: 90%;
    padding-bottom: 0;
  }

  .section-cta.grain {
    padding: 40px 5%;
  }

  .section-cta.grain.timeline {
    padding: 60px 12px 40px;
  }

  .section-cta.grain.slim {
    padding-top: 20px;
  }

  .section-cta.grain.grey.light {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .section-cta.grain.hide {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-cta.grain.first {
    width: 100%;
    max-width: 100%;
    margin-top: -40px;
    padding: 40px 10% 0;
  }

  .section-cta.grain.slim-cta, .section-cta.grain.full-screen-cta {
    padding-top: 20px;
  }

  .section-cta.highlight {
    width: 100%;
    padding: 20px 10px 60px;
  }

  .section-cta.slim {
    padding-left: 10%;
    padding-right: 10%;
  }

  .section-2-loghi {
    padding-left: 10%;
    padding-right: 10px;
  }

  .section-2-loghi.hero {
    height: 90%;
  }

  .section-2-loghi.hero.grain {
    height: 90%;
    padding-bottom: 0;
  }

  .section-2-loghi.grain {
    padding: 40px 5%;
  }

  .section-2-loghi.grain.timeline {
    padding: 60px 12px 40px;
  }

  .section-2-loghi.grain.slim {
    padding-top: 20px;
  }

  .section-2-loghi.grain.grey.light {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .section-2-loghi.grain.hide {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-2-loghi.grain.first {
    width: 100%;
    max-width: 100%;
    margin-top: -40px;
    padding: 40px 10% 0;
  }

  .section-2-loghi.grain.slim-cta {
    padding-top: 20px;
  }

  .section-2-loghi.highlight {
    width: 100%;
    padding: 20px 10px 60px;
  }

  .section-2-loghi.slim {
    padding-left: 10%;
    padding-right: 10%;
  }

  .section-team.fade.update {
    padding-bottom: 40px;
  }

  .section-team.fade.update.grain, .section-team.cover.yellow.cosmic {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .banner-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner {
    text-align: left;
    justify-content: space-between;
  }

  .banner-link {
    width: 100%;
    flex: 0 auto;
  }

  .search-bar {
    width: 100%;
  }

  .search {
    flex-direction: column;
  }

  .nav-container {
    height: 64px;
    padding: 2px 20px;
  }

  .menu-button-2 {
    flex: 0 auto;
  }

  .search-banner {
    justify-content: space-between;
  }

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

  .text-box._550px.center-align {
    max-width: none;
  }

  .hero-illustration {
    max-width: 130%;
    margin-left: 70px;
  }

  .page-wrapper-5 {
    min-height: auto;
  }

  .paragraph-5.large {
    text-align: center;
    font-size: 16px;
  }

  .paragraph-5.medium {
    font-size: 16px;
  }

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

  .secondary {
    width: 100%;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.8em;
  }

  .secondary.main {
    margin-left: 0;
  }

  .heading-hero {
    font-size: 2.1em;
  }

  .heading-hero.h1.center {
    font-size: 28px;
  }

  .heading-hero.h1.pugliai.left, .heading-hero.h2.blsck {
    text-align: center;
  }

  .heading-hero.pugliai {
    font-size: 24px;
  }

  .cta-section-cuber.account-page-wrapper {
    height: auto;
    padding-top: 20px;
  }

  .paragraph-7 {
    max-width: 80%;
    color: rgba(231, 236, 240, .86);
    text-align: center;
    font-size: 14px;
  }

  .heading-13 {
    max-width: 100%;
    text-align: center;
    font-size: 18px;
  }

  .large-4-grid-copy {
    grid-row-gap: 18px;
  }

  .section-top {
    align-items: center;
  }

  .service-box {
    background-color: rgba(231, 236, 240, .05);
    border-radius: 9px;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .paragraph-8 {
    width: 100%;
    white-space: normal;
    font-size: 16px;
  }

  .content-wrap {
    flex-wrap: wrap;
    align-content: space-around;
    align-items: stretch;
    margin-bottom: 0;
    display: block;
  }

  .section-feedel {
    padding-bottom: 40px;
  }

  .image-block {
    padding: 8px;
  }

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

  .clients-wrapper-three {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    margin-bottom: 0;
    display: flex;
  }

  .clients-image-three {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .email-subscribe {
    width: 100%;
    grid-row-gap: 12px;
    flex-direction: column;
  }

  .text-field-4 {
    width: 100%;
  }

  .email-form {
    width: 100%;
    flex-direction: column;
  }

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

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

  .centered-heading {
    margin-bottom: 24px;
  }

  .pricing-grid {
    grid-column-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 0;
    display: inline-block;
  }

  .pricing-card-three {
    padding-top: 4px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-image {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
  }

  .bold-text-4, .bold-text-5, .bold-text-6 {
    font-size: 18px;
    line-height: 16px;
  }

  .form-card {
    max-width: 100%;
    min-width: auto;
    padding: 24px;
  }

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

  .text-area {
    width: 100%;
  }

  .title-tag {
    margin-bottom: 6px;
  }

  .heading-15 {
    font-size: 16px;
    line-height: 18px;
  }

  .container-5-copy {
    max-width: none;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-hero-advidory {
    padding-left: 10%;
    padding-right: 10px;
  }

  .section-hero-advidory.hero {
    height: 90%;
  }

  .section-hero-advidory.hero.grain {
    height: 90%;
    padding-bottom: 0;
  }

  .section-hero-advidory.grain {
    padding: 40px 5%;
  }

  .section-hero-advidory.grain.timeline {
    padding: 60px 12px 40px;
  }

  .section-hero-advidory.grain.slim {
    padding-top: 20px;
  }

  .section-hero-advidory.grain.grey.light {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .section-hero-advidory.grain.hide {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-hero-advidory.grain.first {
    width: 100%;
    max-width: 100%;
    margin-top: -40px;
    padding: 40px 10% 0;
  }

  .section-hero-advidory.grain.slim-cta, .section-hero-advidory.grain.full-screen-cta {
    padding-top: 20px;
  }

  .section-hero-advidory.highlight {
    width: 100%;
    padding: 20px 10px 60px;
  }

  .section-hero-advidory.slim {
    padding-left: 10%;
    padding-right: 10%;
  }

  .banner-img-full {
    padding-left: 10%;
    padding-right: 10px;
  }

  .banner-img-full.hero {
    height: 90%;
  }

  .banner-img-full.hero.grain {
    height: 90%;
    padding-bottom: 0;
  }

  .banner-img-full.grain {
    padding: 40px 5%;
  }

  .banner-img-full.grain.timeline {
    padding: 60px 12px 40px;
  }

  .banner-img-full.grain.slim {
    padding-top: 20px;
  }

  .banner-img-full.grain.grey.light {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .banner-img-full.grain.hide {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .banner-img-full.grain.first {
    width: 100%;
    max-width: 100%;
    margin-top: -40px;
    padding: 40px 10% 0;
  }

  .banner-img-full.grain.slim-cta {
    padding-top: 20px;
  }

  .banner-img-full.grain.full-screen-cta {
    min-height: 30vh;
    padding-top: 20px;
  }

  .banner-img-full.highlight {
    width: 100%;
    padding: 20px 10px 60px;
  }

  .banner-img-full.slim {
    padding-left: 10%;
    padding-right: 10%;
  }

  .heading-16 {
    font-size: 14px;
    line-height: 18px;
  }

  .banner-img-full-copy {
    padding-left: 10%;
    padding-right: 10px;
  }

  .banner-img-full-copy.hero {
    height: 90%;
  }

  .banner-img-full-copy.hero.grain {
    height: 90%;
    padding-bottom: 0;
  }

  .banner-img-full-copy.grain {
    padding: 40px 5%;
  }

  .banner-img-full-copy.grain.timeline {
    padding: 60px 12px 40px;
  }

  .banner-img-full-copy.grain.slim {
    padding-top: 20px;
  }

  .banner-img-full-copy.grain.grey.light {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .banner-img-full-copy.grain.hide {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .banner-img-full-copy.grain.first {
    width: 100%;
    max-width: 100%;
    margin-top: -40px;
    padding: 40px 10% 0;
  }

  .banner-img-full-copy.grain.slim-cta {
    padding-top: 20px;
  }

  .banner-img-full-copy.grain.full-screen-cta {
    min-height: 15vh;
    padding-top: 20px;
  }

  .banner-img-full-copy.highlight {
    width: 100%;
    padding: 20px 10px 60px;
  }

  .banner-img-full-copy.slim {
    padding-left: 10%;
    padding-right: 10%;
  }

  .link-block-3, .link-bloc-cyber {
    max-width: 40%;
  }

  .bold-text-7.pugliai {
    font-size: 36px;
    line-height: 1rem;
  }

  .form-card-2 {
    max-width: 100%;
    padding: 24px;
  }

  .button-9 {
    width: 100%;
    font-size: 16px;
    line-height: 1.8em;
  }

  .text-field-5 {
    width: 100%;
  }

  .div-block-10 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .feature-iteem-use-case {
    min-height: 120px;
    padding: 24px;
  }

  .feature-iteem-use-case.left-item {
    max-height: 370px;
    min-height: 370px;
    padding: 0 20px;
  }

  .feature-iteem-use-case.middle-item, .feature-iteem-use-case.right-item {
    max-height: 370px;
    min-height: 370px;
  }

  .feature-title-wrapper-case-study {
    margin-bottom: 10px;
  }

  .pugliai {
    text-align: center;
  }

  .card-hilight {
    flex-direction: column;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
    display: inline-block;
  }

  .uui-heroheader01_pattern-image {
    width: 12.125rem;
    bottom: -25%;
    right: -20%;
  }

  .uui-heroheader01_image {
    height: 15rem;
    border-top-left-radius: 4rem;
  }

  .uui-heroheader01_component {
    grid-template-columns: 1fr;
  }

  .uui-layout13_image-01 {
    width: 80%;
    right: -7%;
  }

  .uui-layout13_image-02 {
    top: 20%;
  }

  .uui-layout50_image_wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .uui-signup-form_wrapper {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .uui-contact05_component {
    grid-template-columns: 1fr;
  }

  .uui-team02_image-wrapper {
    padding-top: 66%;
  }

  .uui-team02_list {
    grid-template-columns: 1fr;
  }

  .uui-footer07_link-list {
    grid-template-rows: auto auto auto;
  }

  .div-block-11.styledcard {
    margin-top: 19px;
  }

  .bold-text-14 {
    text-align: center;
    font-size: 18px;
  }

  .div-block-12 {
    margin-bottom: 20px;
  }

  .div-block-12.ebook-box {
    padding-top: 5px;
  }

  .div-block-13 {
    margin-bottom: 22px;
  }

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

  .clients-quote-two {
    font-size: 24px;
    line-height: 32px;
  }

  .clients-info-image {
    margin-right: 16px;
  }

  .clients-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .navbar-logo-left {
    position: sticky;
  }

  .navbar-logo-left-container.shadow-three {
    z-index: 999999;
    position: -webkit-sticky;
    position: sticky;
  }

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

  .nav-menu-wrapper {
    z-index: 99999999;
    background-color: var(--black);
    position: absolute;
  }

  .nav-menu-two {
    background-color: var(--black);
    flex-direction: column;
  }

  .menu-button-3 {
    z-index: 999999;
    color: var(--lifestyle);
  }

  .menu-button-3:hover {
    color: var(--untitled-ui-gray50);
  }

  .menu-button-3.w--open {
    background-color: var(--black);
  }

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

  .clients-image-2 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .centered-heading-2 {
    margin-bottom: 24px;
  }

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

  .servie-card-title {
    justify-content: flex-start;
    padding-left: 10px;
  }

  .service-image {
    margin-right: 10px;
  }

  .uui-text-size-medium-2.text-color-white {
    font-size: 14px;
  }

  .uui-heading-small.text-color-white {
    font-size: 16px;
  }

  .uui-testimonial18_content.background-color-lightblue600, .uui-testimonial18_content.background-color-pink600, .uui-testimonial18_content.background-color-indigo600, .uui-testimonial18_content.background-color-blue600, .uui-testimonial18_content.background-color-primary600 {
    height: 50rem;
  }

  .uui-testimonial18_mask {
    width: 95%;
  }

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

  .primary {
    width: 100%;
    font-size: 16px;
    line-height: 1.8em;
  }

  .primary.main {
    margin-left: 0;
  }

  .subtitle {
    font-size: 14px;
  }

  .fh-section-image-wrapper-first {
    height: 220px;
  }

  .fn-button-secondery, .fn-button, .fn-button-wrapper {
    width: 100%;
  }

  .fn-banner-image-three {
    width: 200px;
    height: 200px;
    display: block;
    top: -10%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .fn-banner-image-one {
    opacity: .26;
    display: block;
  }

  .fn-paragraph-dark {
    line-height: 1.5em;
  }

  .fn-404-image-second {
    width: 120px;
    height: 120px;
    top: -76%;
  }

  .fn-404-image-first {
    width: 120px;
    height: 120px;
  }

  .fh-features-image-wrapper {
    height: 220px;
  }

  .fn-button-2 {
    width: 100%;
  }

  .bold-text-17 {
    font-size: 14px;
    line-height: 1.3;
  }

  .hide-mobile {
    display: none;
  }

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

#w-node-f6f36805-97df-9c3a-9fe9-703da63064fb-e047e4b5, #w-node-f6f36805-97df-9c3a-9fe9-703da6306505-e047e4b5, #w-node-f6f36805-97df-9c3a-9fe9-703da630650f-e047e4b5, #w-node-_67f424d8-13f6-9d22-a744-485f0de22826-e047e4b5, #w-node-_67f424d8-13f6-9d22-a744-485f0de22830-e047e4b5, #w-node-_67f424d8-13f6-9d22-a744-485f0de2283a-e047e4b5, #w-node-ac9fde74-1724-4d51-40e0-a183ab2021c2-e047e4b5, #w-node-ac9fde74-1724-4d51-40e0-a183ab2021c6-e047e4b5, #w-node-ac9fde74-1724-4d51-40e0-a183ab2021ca-e047e4b5, #w-node-_6b2822ab-5e0f-8763-5e4c-00cc961fc057-e047e4b5, #w-node-_6b2822ab-5e0f-8763-5e4c-00cc961fc05b-e047e4b5, #w-node-_6b2822ab-5e0f-8763-5e4c-00cc961fc05f-e047e4b5, #w-node-b3d6567e-e5ad-f831-9d5f-b1e8c7635bd2-e047e4b5, #w-node-b3d6567e-e5ad-f831-9d5f-b1e8c7635bd8-e047e4b5, #w-node-b3d6567e-e5ad-f831-9d5f-b1e8c7635bde-e047e4b5, #w-node-b3d6567e-e5ad-f831-9d5f-b1e8c7635be4-e047e4b5, #w-node-_13b7b8f8-5318-6922-b15e-fb352700293d-e047e4b5, #w-node-_5c55bded-5e87-3cfd-b242-b6d88a576552-e047e4b5, #w-node-b433804f-24fd-bc56-601a-ab74f5d1f209-e047e4b5, #w-node-_4bca71a4-1a83-461a-433e-a95d2bc6bcde-e047e4b5, #w-node-_0fee2699-17ec-b53d-0cc8-0d7cdb761305-e047e4b5, #w-node-_0fab6cd4-a37b-d588-1c4b-8faba26eff4f-e047e4b5, #w-node-_80cdd047-529e-efac-76f8-6bd957ce11be-e047e4b5, #w-node-_80cdd047-529e-efac-76f8-6bd957ce11bf-e047e4b5, #w-node-_80cdd047-529e-efac-76f8-6bd957ce11c0-e047e4b5, #w-node-_80cdd047-529e-efac-76f8-6bd957ce11c2-e047e4b5, #w-node-c9c8bd6a-b115-8685-85c3-0d30415425f0-e047e4b5, #w-node-c9c8bd6a-b115-8685-85c3-0d30415425f1-e047e4b5, #w-node-c9c8bd6a-b115-8685-85c3-0d30415425f2-e047e4b5, #w-node-c9c8bd6a-b115-8685-85c3-0d30415425f4-e047e4b5, #w-node-b2cc5664-fac9-7ea8-551b-e85227b91c0e-e047e4b5, #w-node-b2cc5664-fac9-7ea8-551b-e85227b91c0f-e047e4b5, #w-node-b2cc5664-fac9-7ea8-551b-e85227b91c10-e047e4b5, #w-node-b2cc5664-fac9-7ea8-551b-e85227b91c12-e047e4b5, #w-node-_532c09df-c985-35f9-dca9-cb78eb1de0cc-e047e4b5, #w-node-_532c09df-c985-35f9-dca9-cb78eb1de0cd-e047e4b5, #w-node-_532c09df-c985-35f9-dca9-cb78eb1de0ce-e047e4b5, #w-node-_532c09df-c985-35f9-dca9-cb78eb1de0d0-e047e4b5, #w-node-cbb32f4f-b9bd-2871-287d-f759e33c1853-e047e4b5, #w-node-cbb32f4f-b9bd-2871-287d-f759e33c1854-e047e4b5, #w-node-cbb32f4f-b9bd-2871-287d-f759e33c1855-e047e4b5, #w-node-cbb32f4f-b9bd-2871-287d-f759e33c1857-e047e4b5, #w-node-f70ebf60-acbe-4e0d-4fcf-6f3318b2d491-e047e4b5, #w-node-f70ebf60-acbe-4e0d-4fcf-6f3318b2d492-e047e4b5, #w-node-f70ebf60-acbe-4e0d-4fcf-6f3318b2d493-e047e4b5, #w-node-f70ebf60-acbe-4e0d-4fcf-6f3318b2d495-e047e4b5, #w-node-_385933fc-4799-c1ee-9a77-51e445a4f06e-e047e4b5, #w-node-_385933fc-4799-c1ee-9a77-51e445a4f06f-e047e4b5, #w-node-_385933fc-4799-c1ee-9a77-51e445a4f070-e047e4b5, #w-node-_385933fc-4799-c1ee-9a77-51e445a4f072-e047e4b5, #w-node-_097abe72-6f41-21e9-58f7-f33d8dc1fac3-e047e4b5, #w-node-_097abe72-6f41-21e9-58f7-f33d8dc1fac4-e047e4b5, #w-node-_097abe72-6f41-21e9-58f7-f33d8dc1fac5-e047e4b5, #w-node-_097abe72-6f41-21e9-58f7-f33d8dc1fac6-e047e4b5, #w-node-_9a9f6188-3bbd-8cfb-52cf-347359ec1e03-e047e4b5, #w-node-_93567740-7225-4da2-94b7-3a306a4b2f15-e047e4b5, #w-node-_9a9f6188-3bbd-8cfb-52cf-347359ec1e04-e047e4b5, #w-node-e0ab90ba-2466-4a95-5039-53303864dbf4-e047e4ee {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e0ab90ba-2466-4a95-5039-53303864dc0b-e047e4ee {
  justify-self: end;
}

#w-node-_6da6175c-1fd1-98d6-dedb-41cc41e10158-e047e52a {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_40fabe00-410c-5131-45bb-ad376b5d6a88-e047e52a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_40fabe00-410c-5131-45bb-ad376b5d6a89-e047e52a, #w-node-_3905bc19-c2f7-2fa8-2a74-14480485b293-e047e52a {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_097abe72-6f41-21e9-58f7-f33d8dc1fac6-e047e4b5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3905bc19-c2f7-2fa8-2a74-14480485b293-e047e52a {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8cc33249-20ca-7903-6fcb-55639b93ace7-9b93ace4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-df7849df-701c-fc29-ec2b-3206d505c1a9-e047e52a {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_3e4f7bc2-accf-6fce-5c65-8fcdb9a7bc79-e047e4b5, #w-node-_3905bc19-c2f7-2fa8-2a74-14480485b293-e047e52a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Beon medium';
  src: url('../fonts/BeonMedium-7Z34.ttf') format('truetype'), url('../fonts/BeonMedium-6d51.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neon';
  src: url('../fonts/Neon.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Alliance no';
  src: url('../fonts/Alliance-No.2-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}