@font-face {
  font-family: Gridular;
  src: url('../fonts/Gridular-Regular.woff2') format("woff2"), url('../fonts/Gridular-Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Googlesans 17 Pt";
  src: url('../fonts/GoogleSans_17pt-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Googlesans 17 Pt";
  src: url('../fonts/GoogleSans_17pt-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Googlesans 17 Pt";
  src: url('../fonts/GoogleSans_17pt-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Googlesans 17 Pt";
  src: url('../fonts/GoogleSans_17pt-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Googlesans 17 Pt";
  src: url('../fonts/GoogleSans_17pt-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Googlesans;
  src: url('../fonts/GoogleSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Googlesans;
  src: url('../fonts/GoogleSans-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Googlesans;
  src: url('../fonts/GoogleSans-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Googlesans 17 Pt";
  src: url('../fonts/GoogleSans_17pt-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Googlesans 17 Pt";
  src: url('../fonts/GoogleSans_17pt-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Googlesans;
  src: url('../fonts/GoogleSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Googlesans;
  src: url('../fonts/GoogleSans-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Googlesans 17 Pt";
  src: url('../fonts/GoogleSans_17pt-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Googlesans;
  src: url('../fonts/GoogleSans-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Googlesans;
  src: url('../fonts/GoogleSans-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Googlesans;
  src: url('../fonts/GoogleSans-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Big Zubo;
  src: url('../fonts/Big-Zubo.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pixelifysans Variablefont Wght;
  src: url('../fonts/PixelifySans-VariableFont_wght.ttf') format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neokuratplakat;
  src: url('../fonts/NeokuratPlakat.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-Semibold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --gainsboro: #e6e6e6;
  --dark-slate-grey: #414141;
  --black: #353535;
  --white: white;
  --blue-violet: #5739fb;
}

.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-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

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

body {
  background-color: var(--gainsboro);
  color: var(--dark-slate-grey);
  font-family: neue-haas-grotesk-text;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

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

p {
  margin-bottom: 0;
}

a {
  color: var(--dark-slate-grey);
  text-decoration: none;
}

.grid-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 6%;
  display: grid;
}

.grid-container.is--background {
  z-index: -1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100vh;
  display: grid;
  position: fixed;
  inset: 0%;
}

.grid-background__item {
  border-left: 1px solid #4141411a;
}

.hero-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin-top: 0;
  margin-bottom: 40px;
  display: grid;
  position: relative;
}

.hero__meta {
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  font-family: Inconsolata, monospace;
  font-size: 1rem;
  display: flex;
}

.text-heading {
  text-transform: uppercase;
  font-family: dharma-gothic-e;
  font-size: 4rem;
  line-height: 1.25;
}

.text-heading.is--2 {
  font-size: 4rem;
  line-height: 1.25;
}

.text-heading.is--center {
  color: var(--black);
  text-align: center;
}

.container.is--lg {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero__meta-logos {
  grid-column-gap: 1.5rem;
  justify-content: center;
  display: flex;
}

.hero__meta-logo {
  width: 80px;
}

.hero__title {
  color: var(--black);
  text-align: center;
  margin-top: 0;
  font-size: 30vh;
  line-height: .825;
  position: relative;
}

.hero__heading {
  letter-spacing: 2px;
  text-transform: none;
  font-family: Neokuratplakat, Georgia, sans-serif;
  font-size: 17vh;
  font-weight: 600;
}

.hero__heading.is--accent {
  letter-spacing: 0;
  text-transform: none;
  height: 1em;
  margin-top: 40px;
  margin-left: 21rem;
  margin-right: 21rem;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: .12em;
}

.hero__heading.is--accent.is--transparent {
  z-index: 50;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  color: #fff3;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--gainsboro);
  position: relative;
}

.hero__heading.main {
  text-overflow: clip;
  font-family: Big Zubo, Georgia, sans-serif;
  font-size: 14vh;
  font-weight: 400;
  line-height: 100%;
}

.hero__heading.main.second {
  font-family: Changa One, Impact, sans-serif;
  font-size: 12vh;
  font-style: italic;
  font-weight: 400;
}

.hero {
  grid-row-gap: 4vh;
  flex-direction: column;
  align-items: center;
  margin-top: 10%;
  margin-bottom: 0;
  display: flex;
}

.button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--black);
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 40px;
  align-items: center;
  padding: .75rem 1.75rem;
  font-family: dharma-gothic-e;
  font-size: 1.5rem;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button.is--hero {
  z-index: 150;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  color: var(--blue-violet);
  mix-blend-mode: normal;
  background-color: #ffffff80;
  display: block;
  position: relative;
}

.button-row {
  z-index: 50;
  grid-column-gap: 2rem;
  border-radius: 40px;
  justify-content: center;
  position: relative;
}

.button-row.is--flex {
  display: flex;
}

.button__text {
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1.1rem;
}

.about-section {
  margin-top: 10vh;
  margin-bottom: 15vh;
}

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

.about__block-head {
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.about__block-meta {
  border-bottom: 1px solid var(--dark-slate-grey);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.about__block-title {
  color: var(--black);
  text-transform: uppercase;
  font-family: dharma-gothic-e;
  font-size: 3rem;
  line-height: .8;
}

.about__block-paragraph {
  font-family: Googlesans, Tahoma, sans-serif;
}

.about__meta-label {
  color: var(--black);
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: .85;
  display: inline-block;
}

.about__title-highlight {
  color: var(--blue-violet);
}

.marquee-section {
  z-index: 50;
  margin-top: 25vh;
  margin-bottom: 12.5vh;
}

.marquee-section.is-footer {
  margin-top: 10vh;
  margin-bottom: 0;
  position: relative;
}

.marquee-wrapper {
  z-index: 5;
  grid-column-gap: 1rem;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.marquee-wrapper.is--z-index-top {
  z-index: 300;
}

.marquee {
  grid-column-gap: 1rem;
  color: var(--white);
  flex-direction: row;
  flex: none;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  font-family: dharma-gothic-e;
  font-size: 300px;
  line-height: .8;
  display: flex;
}

.marquee__text.is--outline {
  color: #0000;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--white);
}

.teaser-section {
  z-index: 50;
  position: relative;
}

.teaser__title {
  grid-column-gap: 1rem;
  display: flex;
}

.teaser {
  grid-row-gap: 1rem;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #fffc;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 9rem;
  display: flex;
  position: relative;
}

.teaser__paragraph {
  text-align: center;
  max-width: 550px;
}

.text-accent {
  color: var(--black);
  text-align: left;
  text-transform: uppercase;
  font-size: 1.1rem;
}

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

.text-accent.is--right-aligned {
  text-align: right;
}

.footer {
  z-index: 50;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  mix-blend-mode: multiply;
  flex-direction: column;
  justify-content: center;
  min-height: 50vh;
  display: flex;
}

.teaser__content {
  grid-row-gap: 1rem;
  flex-direction: column;
  margin-bottom: 1.5rem;
  display: flex;
}

.footer__meta {
  grid-column-gap: 0px;
  grid-row-gap: 0rem;
  text-align: center;
  border-top: 1px solid #4141411a;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 2rem;
  font-family: Inconsolata, monospace;
  font-size: 1rem;
  display: grid;
}

.spline-section {
  z-index: 50;
  position: relative;
}

.spline-embed {
  z-index: 10;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.text-link {
  transition: color .2s;
}

.text-link:hover {
  color: var(--blue-violet);
}

.preloader {
  z-index: 500;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: grid;
  position: fixed;
  inset: 0%;
}

.preloader__content {
  grid-row-gap: 2rem;
  background-color: var(--black);
  color: var(--gainsboro);
  border-right: 1px solid #242424;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.preloader__content.is--main {
  overflow: visible;
}

.preloader__element {
  opacity: 1;
  font-family: Gridular, sans-serif;
}

.gallery-section {
  z-index: 100;
  background-color: var(--black);
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.gallery {
  width: 100%;
}

.gallery__head {
  background-color: var(--black);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 6rem;
  display: flex;
}

.gallery__topline {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Inconsolata, monospace;
  display: flex;
}

.gallery__title {
  text-align: center;
  font-size: .7rem;
}

.section-title {
  text-transform: uppercase;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: .2rem;
  line-height: .6;
}

.section-title.is--accent {
  font-family: Gridular, sans-serif;
  line-height: .9;
}

.is--pre {
  margin-top: 15vh;
  margin-bottom: 0;
  line-height: 0;
}

.gallery-wrapper {
  z-index: 50;
  width: 100vw;
  min-height: 100vh;
  margin-top: 20vh;
  margin-bottom: 25vh;
  position: relative;
  overflow: hidden;
}

.gallery-wrapper.section {
  background-color: #0000;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}

.is--after {
  margin-top: 0;
  margin-bottom: 15vh;
  line-height: 0;
}

.gallery-border {
  z-index: 50;
  width: 110%;
  max-width: none;
  margin-left: -2px;
  position: relative;
}

.gallery__content {
  z-index: 50;
  background-color: var(--black);
  color: var(--white);
  flex-direction: row;
  align-items: center;
  margin-right: 10rem;
  padding-left: 10rem;
  display: flex;
}

.gallery__item {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  border: 1px solid #fff3;
  flex-flow: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  min-height: 80vh;
  max-height: 100vh;
  padding: 8rem;
  display: flex;
  position: relative;
}

.gallery__embed {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 400px;
  display: flex;
  position: relative;
}

.gallery__number {
  border: 1px solid var(--white);
  border-radius: 8px;
  flex: none;
  padding: .5rem;
  font-family: dharma-gothic-e;
  font-size: 2rem;
  line-height: 1;
}

.gallery__item-content {
  z-index: 5;
  grid-row-gap: 1rem;
  flex-direction: column;
  flex: none;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.gallery__item-title {
  font-family: dharma-gothic-e;
  font-size: 4rem;
  line-height: 1;
}

.gallery__item-title.is--big {
  font-size: 15rem;
  line-height: .8;
}

.tutorials__topline {
  font-family: Inconsolata, monospace;
}

.tutorials__topline.is--margin {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.tutorials__title {
  text-align: center;
}

.tutotrials-section {
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 15vh;
  padding-bottom: 15vh;
  display: flex;
}

.preloader__progressbar {
  background-color: #ffffff40;
  border-radius: 16px;
  width: 200px;
  height: 5px;
  position: relative;
  overflow: hidden;
}

.preloader__text {
  text-align: center;
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 1rem;
  line-height: 1.2;
}

.preloader__items {
  z-index: 105;
  grid-row-gap: 1rem;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.spline-wrapper {
  z-index: 600;
  position: relative;
}

.cursor {
  perspective-origin: 0 0;
  transform-origin: 0 0;
  transition: opacity .2s, height .4s, width .4s, background-color .3s, border-width .2s, border-color .2s;
}

.cursor.is--active {
  width: 40px;
  height: 40px;
  transition-duration: .2s, .3s, .3s, .3s, .2s, .2s;
}

.cursor-wrapper {
  z-index: 999;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.body {
  transition: border-color .2s, border-width .2s, background-color .3s;
}

.footer__block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer__block.is--head {
  margin-bottom: 2rem;
}

.intro-section {
  z-index: 100;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 25vh;
  display: grid;
}

.intro-section.section {
  margin-top: 5vh;
  padding-top: 5em;
  padding-left: 2em;
  padding-right: 2em;
}

.intro-text {
  color: var(--black);
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1.9rem;
  line-height: 1.2;
}

.intro-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  margin: 100px 40px 80px;
  padding: 100px 140px 40px;
  font-size: 1rem;
  display: flex;
}

.intro-deco {
  font-family: Inconsolata, monospace;
  font-size: .8rem;
  line-height: 1.1;
}

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

.preloader__lottie {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
}

.gallery__mask {
  z-index: 100;
  background-color: var(--black);
  width: 60%;
  display: none;
  position: absolute;
  inset: 0%;
}

.menu-wrapper {
  z-index: 350;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: 1px solid #fff9;
  border-radius: 8px;
  flex-direction: row;
  align-items: center;
  padding: 4px 32px;
  display: flex;
  overflow: hidden;
}

.menu__item {
  color: var(--white);
  letter-spacing: .35px;
  text-transform: uppercase;
  border: 1px solid #fff0;
  border-radius: 4px;
  padding: 12px 16px;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: .95rem;
  font-weight: 400;
  transition: border-color .2s;
  position: relative;
}

.menu__item:hover {
  border-color: #ffffff80;
}

.menu__item.is--active {
  border: 1px solid #ffffff4d;
  transition: all .3s, border-color .2s;
}

.menu__item.is--last {
  border-right-width: 0;
}

.about__block-kicker {
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 1rem;
  line-height: 1;
}

.about__block-kicker.is--center {
  text-align: center;
}

.about__block-kicker.is--right-aligned {
  text-align: right;
}

.gallery__item-sub {
  text-transform: uppercase;
  max-width: 240px;
  font-family: Inconsolata, monospace;
  font-size: .9rem;
  line-height: 1.2;
}

.gallery__item-sub.is--big {
  font-size: 20rem;
}

.scroll-wrapper {
  position: fixed;
  inset: 0%;
}

.scroller {
  background-color: var(--blue-violet);
  border-radius: 20px;
  width: 4px;
  height: 20vh;
  position: absolute;
  inset: 20px 20px 20px auto;
}

.menu__logo {
  margin-right: 32px;
}

.menu__lottie {
  width: 24px;
  height: 24px;
}

.hero__deco {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: absolute;
}

.hero__deco.is--right {
  align-items: flex-end;
}

.hero__deco.is--left {
  align-items: flex-start;
}

.hero__sub {
  text-align: right;
  margin-top: 2rem;
}

.hero__sub.is--left-aligned {
  text-align: left;
}

.kicker--hero {
  letter-spacing: .1px;
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 1.3rem;
  line-height: 1;
}

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

.footer__color-preview {
  border-radius: 50%;
  width: 16px;
  height: 16px;
  overflow: hidden;
}

.footer__color-preview.is--dark-grey {
  background-color: var(--black);
}

.footer__color-preview.is--purple {
  background-color: var(--blue-violet);
}

.footer__color-preview.is--white {
  background-color: var(--white);
  border: 1px solid #0006;
}

.footer__color-preview.is--light-grey {
  background-color: var(--gainsboro);
  border: 1px solid #0006;
}

.gallery__lottie {
  width: 220px;
  height: 200px;
}

.teaser__deco {
  width: 24px;
  height: 24px;
  position: absolute;
}

.teaser__deco.is--right-top {
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  top: 6rem;
  bottom: auto;
  right: 8rem;
}

.teaser__deco.is--right-top.is--wrapper {
  width: 40px;
  height: 40px;
  top: 2rem;
  right: 2rem;
}

.teaser__deco.is--right-bottom {
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  bottom: 8rem;
  right: 8rem;
}

.teaser__deco.is--right-bottom.is--wrapper {
  width: 40px;
  height: 40px;
  bottom: 2rem;
  right: 2rem;
}

.teaser__deco.is-left-bottom {
  border-bottom: 1px solid var(--black);
  border-left: 1px solid var(--black);
  bottom: 8rem;
  left: 8rem;
}

.teaser__deco.is-left-bottom.is--wrapper {
  width: 40px;
  height: 40px;
  bottom: 2rem;
  left: 2rem;
}

.teaser__deco.is--left-top {
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  top: 8rem;
  left: 8rem;
}

.teaser__deco.is--left-top.is--wrapper {
  width: 40px;
  height: 40px;
  top: 2rem;
  left: 2rem;
}

.gallery-border__wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100vw;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.sub-text-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10vh;
  margin-bottom: 5vh;
  font-family: Inconsolata, monospace;
  line-height: 1.25;
  display: grid;
}

.sub-text-section.is--no-margin-top {
  margin-top: 0;
}

.sub-text__content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.sub-text__icon {
  margin-left: -16px;
}

.deco-wrapper {
  z-index: 499;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.deco__text {
  text-align: right;
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 13px;
  display: inline;
}

.deco-link {
  z-index: 500;
  color: var(--black);
  position: fixed;
  inset: 3rem 4rem auto auto;
}

.deco-link:hover {
  color: var(--blue-violet);
}

.marquee__arrow {
  z-index: 10;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.to-top {
  z-index: 9000;
  width: 1px;
  height: 1px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.button__icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  display: flex;
}

.menu-outer {
  -webkit-backdrop-filter: hue-rotate(180deg) invert() blur(15px);
  backdrop-filter: hue-rotate(180deg) invert() blur(15px);
  background-color: #1f1f1f80;
  border-radius: 12px;
  padding: 4px;
}

.menu__divider {
  color: var(--gainsboro);
  font-family: Inconsolata, monospace;
  line-height: 1;
}

.gallery_p {
  color: var(--gainsboro);
  padding-top: 15vh;
  padding-bottom: 15vh;
  font-size: 5rem;
}

.gallery__features {
  padding-top: 0;
  padding-bottom: 15vh;
}

.gallery__feature-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--white);
  border-top: 1px solid #fff3;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.gallery__feature-item.is--first {
  border-top-width: 0;
}

.gallery__feature-item.is--link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 100px;
  margin-right: 100px;
  padding: 4rem 0 0;
}

.gallery__feature-label {
  flex-direction: row;
  align-items: center;
  width: 40px;
  font-family: Inconsolata, monospace;
  display: flex;
}

.gallery__feature-title {
  margin-left: 100px;
  margin-right: 100px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 3rem;
}

.gallery__feature-title.is--title {
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 1rem;
}

.gallery__feature-icon {
  justify-content: center;
  align-items: center;
  line-height: 1;
  display: flex;
}

.gallery__feature-link {
  color: var(--white);
  border: 1px dashed #fff3;
  border-radius: 16px;
  padding: 1rem 2rem;
  transition: background-color .2s;
}

.spline-main {
  z-index: 10;
  position: fixed;
  inset: 0%;
}

.tutorials__media {
  z-index: 100;
  width: 100%;
  margin-top: 4rem;
  position: relative;
}

.tutorials__media-container {
  border-radius: 2rem;
  overflow: hidden;
}

.desktop-hint {
  display: none;
}

.hero_tag-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  display: flex;
}

.active-cercle-wrap {
  z-index: 1;
  background-color: #57b830;
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.active-dotted-wrap {
  z-index: 1;
  cursor: pointer;
  background-color: #469124;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  display: flex;
  position: relative;
}

.active-wite-dott {
  background-color: #aeb2d7;
  border-radius: 999px;
  width: 10px;
  height: 10px;
}

.active-wite-dott.d-1 {
  cursor: auto;
  background-color: #57b830;
  width: 8px;
  height: 8px;
}

.cercle {
  background-color: #57b830;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  margin-top: 0;
  display: flex;
  position: absolute;
  inset: -2% 0% 0%;
}

.hero-tag_text {
  color: var(--black);
  text-transform: uppercase;
}

.active-dotted-wrap-2 {
  z-index: 1;
  cursor: pointer;
  background-color: #57b830;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  display: flex;
  position: relative;
}

.hero-tag_text-2 {
  color: #0f0f0f;
  text-transform: uppercase;
}

.hero-tag_text-2.hero__heading {
  font-family: Inconsolata, monospace;
  font-size: 2.1vh;
  font-weight: 400;
}

.hero-tag_text-2.now-booking {
  font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  font-size: 1rem;
}

.heading {
  background-color: #0000;
}

.heading-style-h1 {
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.project_description {
  color: #fff;
  max-width: 85%;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1rem;
}

.menu-lotti-icon {
  width: 36px;
  height: 36px;
  margin-bottom: -3px;
}

.project_link-button {
  grid-column-gap: 10px;
  color: #323232;
  background-color: #94ee94;
  border-radius: 8rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-weight: 700;
  display: flex;
}

.project_wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 0px;
  border-bottom-width: 1px;
  border-bottom-color: #fff;
  border-left: 1px #fff;
  border-right: 1px #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  min-height: 100%;
  margin-bottom: auto;
  display: grid;
  position: relative;
}

.heading-7 {
  color: #2e3030;
  margin-top: 1%;
  font-size: 2rem;
  line-height: 1;
}

.heading-7.custom-text {
  text-align: center;
  font-family: Inconsolata, monospace;
  font-size: 1.6rem;
  font-weight: 600;
}

.image-49 {
  height: 15.1878%;
}

.past-projects-titleblock {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  color: #1f2020;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  display: flex;
}

.past-projects-titleblock.project-sub-heading {
  justify-content: center;
  align-items: center;
}

.past-projects-titleblock.how-we_help-titleblock {
  margin-bottom: 20px;
}

.margin-top-2 {
  justify-content: center;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.margin-top-2.margin-xsmall {
  justify-content: flex-start;
}

.margin-top-2.margin-medium {
  justify-content: flex-start;
  margin: 3rem 0 0;
}

.container-large {
  background-color: #0000;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.text-block-98 {
  font-family: Googlesans, Tahoma, sans-serif;
  font-weight: 600;
}

.project_cta-new-webstie {
  grid-row-gap: 1rem;
  color: #fff;
  background-color: #252525;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.project_tag-group {
  grid-column-gap: .625rem;
  grid-row-gap: .5rem;
  flex-flow: wrap;
  align-items: center;
  display: flex;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.project_image-wrapper {
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 10px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: static;
}

.project_image-wrapper.stvincents {
  background-color: #0000;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-repeat: no-repeat;
  background-size: auto;
  height: 658.424%;
}

.project_image-wrapper.drivereach, .project_image-wrapper.torontogaa, .project_image-wrapper.chicagopizza {
  background-color: #fff;
}

.project_tag-award {
  color: #ffd333;
  background-color: #5c6673;
  border-radius: 100rem;
  padding: 5px 16px;
  font-size: .75rem;
  font-weight: 700;
}

.project_date-and-link {
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.project_tag {
  color: #000;
  background-color: #d4c3fa;
  border-radius: 20px;
  flex-direction: row;
  flex: 0 auto;
  justify-content: flex-start;
  width: auto;
  padding: 5px 16px;
  font-family: Inconsolata, monospace;
  font-size: .8rem;
  font-weight: 400;
  display: flex;
  overflow: visible;
}

.paragraph {
  text-align: left;
  max-width: 80%;
  font-family: Googlesans, Tahoma, sans-serif;
  text-decoration: none;
}

.project_heading {
  color: #fff;
  letter-spacing: .02em;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

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

.portfolio-section {
  background-color: #0000;
  border-bottom: 1px dashed #fff;
  margin-top: 0%;
  overflow: hidden;
}

.heading-style-h2 {
  color: #1f2020;
  text-align: center;
  font-size: 3.7rem;
}

.heading-style-h2.custom-text {
  margin-bottom: 20px;
  margin-right: 40px;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
}

.padding-global-2 {
  background-color: #0000;
  border: 1px #000;
  padding-left: 5%;
  padding-right: 5%;
}

.padding-section-medium {
  background-color: #0000;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.project_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: 10px;
  grid-template-columns: 1fr 1fr;
}

.project_content-wrapper {
  z-index: 2;
  background-color: #252525f2;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 35px 20px;
  display: flex;
  position: absolute;
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
}

.icon-embed-xlarge.absolute {
  color: #abf066;
  -webkit-text-stroke-color: #abf066;
  margin-top: 55px;
  position: absolute;
  inset: 10% 10% auto auto;
}

.project_link.icecream.float {
  -webkit-text-fill-color: inherit;
  background-image: url('../images/2025-03-18-12-51-26.mp4');
  background-position: 0 0;
  background-size: auto;
  background-clip: border-box;
}

.project_link.float {
  height: 15.1917%;
}

.logo-sldier {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  width: 200vw;
  display: flex;
  overflow: hidden;
}

.logo-wrapper {
  aspect-ratio: 3 / 2;
  background-color: var(--white);
  border: 1px solid #0f1c1236;
  border-radius: 1em;
  justify-content: center;
  align-items: center;
  width: 15em;
  margin-right: 1em;
  display: flex;
}

.heading-medium {
  color: #0f1c12;
  text-transform: uppercase;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 6em;
  line-height: .9em;
  display: flex;
}

.heading-medium.perfect {
  text-align: right;
  text-transform: none;
  align-self: flex-end;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 4em;
}

.heading-medium.cta {
  text-transform: none;
  align-self: flex-start;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 4em;
}

.heading-medium.perfect {
  text-align: right;
  align-self: flex-end;
}

.heading-medium.cta {
  align-self: flex-start;
}

.tag {
  color: #0f1c12;
  text-transform: uppercase;
  align-self: flex-start;
  font-size: .875em;
}

.grid-global {
  grid-column-gap: 1.5em;
  grid-row-gap: 4.2em;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  width: 100%;
  display: grid;
}

.marquee-item {
  display: flex;
  overflow: visible;
}

.logo {
  max-width: 8em;
}

.logo.wp {
  max-width: 10em;
}

.logo.js, .logo.php {
  max-width: 6em;
}

.languages-marquee {
  display: block;
  overflow: hidden;
}

.logo-slider-inner {
  display: flex;
}

.section {
  background-color: #fff;
  padding: 4em;
  overflow: hidden;
}

.section.logos {
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.cta-wrapper {
  grid-column-gap: 8em;
  grid-row-gap: 8em;
  flex-flow: column;
  display: flex;
}

.padding {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 4em;
}

.padding.footer {
  background-color: #a0e146;
  border-radius: 1em;
  width: 100%;
  max-width: none;
  margin: 0 0;
}

.link-blog {
  color: #0f1c12;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.cta.section {
  background-color: #0f1c12;
  display: block;
}

.error-message {
  background-color: #f5a3a3;
  border-radius: 20px;
  padding: 20px;
  font-size: 14px;
}

.color-gray {
  color: #646464;
}

.nav-button_icon {
  color: #0e0f11;
  width: 24px;
  height: 24px;
  overflow: clip;
}

.text-lg {
  color: #646464;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 150%;
}

.text-lg.bold {
  color: #1a1b1e;
  font-weight: 500;
}

.contact_wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-color: var(--black);
  border-radius: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 56px;
  display: grid;
}

.success-message {
  background-color: #d0ff71;
  border-radius: 20px;
}

.contact_review-wrap {
  grid-column-gap: 33px;
  grid-row-gap: 33px;
  background-color: #f6f5f8;
  border-radius: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 48px;
  display: flex;
}

.form_field {
  color: #0e0f11;
  border: 1px #000;
  border-bottom: 1px solid #b8b8b8;
  height: 50px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.form_field.text-area {
  resize: none;
  height: 54px;
  padding-top: 20px;
}

.review_text {
  padding-right: 34px;
}

.author-image {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.submit-button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  white-space: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 150%;
  text-decoration: none;
  position: relative;
  overflow: clip;
}

.submit-button._02 {
  z-index: 1;
  color: #fff;
}

.google-img {
  width: 18px;
  height: 18px;
}

.google-img._02 {
  width: 40px;
  height: 40px;
}

.nav-button-overlay {
  z-index: -1;
  background-color: #fff;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.form-btn {
  z-index: 99;
  opacity: 0;
  background-color: #569fdf;
  border-radius: 50px;
  height: 100%;
  font-family: Googlesans, Tahoma, sans-serif;
  position: absolute;
  inset: 0%;
}

.nav-button {
  z-index: 1;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #1a1b1e;
  background-color: #d0ff71;
  border: 1px #d0ff71;
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 32px 16px 24px;
  font-size: 16px;
  line-height: 150%;
  text-decoration: none;
  transition: border-radius .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-button:hover {
  border-color: #d0ff71;
}

.nav-button._02 {
  border: 2px solid var(--blue-violet);
  background-color: #5739fbab;
}

.container-md {
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto 100px;
}

.review_top {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.form_button-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact_heading-wrap {
  padding-right: 0;
}

.heading-3_big {
  color: var(--gainsboro);
  font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  font-size: 48px;
  font-weight: 400;
}

.heading-3_big.second-heading {
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
}

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

.padding-global.padding-vertical-rg {
  justify-content: center;
  align-items: center;
}

.padding-global.padding-vertical-rg.footer-top {
  padding-bottom: 60px;
}

.contact_left {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.text-xxlg {
  font-size: 28px;
}

.form_field-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.margin-y-medium {
  color: #646464;
  margin-top: 33px;
  margin-bottom: 30px;
}

.footer_link {
  color: #1a1b1e;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  line-height: 125%;
  text-decoration: none;
  transition: color .3s;
  display: inline-flex;
}

.footer-menu-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #220b13;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.bottom-margin-big {
  margin-bottom: 40px;
  padding-bottom: 0;
}

.bottom-margin-big._02 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  margin-top: 33px;
  display: flex;
}

.section-footer.bg-color-white {
  margin-top: 40px;
  padding-bottom: 100px;
}

.footer-logo-wrapper {
  width: 100%;
  max-width: 300px;
}

.footer-menu-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.button-arrow-wrap {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-arrow-wrap._02 {
  padding: 7px;
}

.subscribe-form {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.social_icon-wrap {
  z-index: 1;
  color: #fff;
  border: 1px solid #525252;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.social_icon-wrap.footer {
  color: #1a1b1e;
  background-color: #f4f4f4;
  border-color: #f4f4f4;
  padding: 8px;
}

.primary-button-inner {
  background-color: #d0ff71;
  border-radius: 50px;
  padding: 16px 24px 16px 32px;
}

.primary-button-inner.subscribe {
  z-index: 1;
  background-color: #1a1b1e;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  transition: color .3s, background-color .3s;
  display: flex;
  position: relative;
}

.primary-button-inner.subscribe:hover {
  color: #0e0f11;
}

.heading-custom-h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

.heading-custom-h6.capital {
  text-transform: uppercase;
  font-size: 16px;
}

.global-social-icon {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  cursor: pointer;
  display: flex;
}

.footer-bottom {
  text-align: center;
  border-top: 1.5px solid #ebebeb;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-menu-wrapper {
  grid-column-gap: 124px;
  grid-row-gap: 124px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.bottom-margin-small {
  margin-bottom: 16px;
  padding-bottom: 0;
  display: inline-block;
}

.bottom-margin-small._02 {
  margin-bottom: 20px;
}

.sub-svg {
  margin-left: 1px;
}

.social_icon-overlay {
  z-index: -1;
  background-color: #d0ff71;
  border-radius: 100%;
  position: absolute;
  inset: 0%;
  transform: scale(0);
}

.social_icon-overlay._02 {
  background-color: #d0ff71;
  inset: 0%;
  transform: scale(0);
}

.footer-bottom-text {
  color: #646464;
  font-size: 14px;
  line-height: 142%;
}

.image-full-black {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.button-flex-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-content-wrapper {
  grid-column-gap: 112px;
  grid-row-gap: 112px;
  display: flex;
}

.footer-menu-list-wrapper.footer-contact-manu-wrapper {
  width: 100%;
  max-width: 300px;
}

.heading-8 {
  color: var(--black);
  letter-spacing: .8px;
  font-family: Neokuratplakat, Georgia, sans-serif;
  font-size: 2.5rem;
}

.text-block-99 {
  color: #000;
  text-align: left;
  font-family: Googlesans, Tahoma, sans-serif;
  font-weight: 400;
}

.text-span, .text-span-2 {
  color: var(--blue-violet);
}

.text-block-100 {
  font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
}

.text-span-3 {
  color: var(--blue-violet);
  text-align: left;
}

.marquee-horizontal {
  z-index: 200;
  background-color: var(--blue-violet);
  letter-spacing: .2px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 55px;
  margin-top: -2%;
  margin-left: auto;
  margin-right: auto;
  font-family: Inconsolata, monospace;
  font-size: 1.1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.track-horizontal-alt {
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.marquee-text {
  color: #fff;
  text-transform: uppercase;
  flex: none;
  margin-right: 8vw;
  font-size: 1rem;
}

.heading-9 {
  text-transform: none;
  margin-top: 0;
  font-family: Inconsolata, monospace;
  font-size: 3.2rem;
}

.paragraph-text {
  margin-left: 0;
  margin-right: 37px;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1.25rem;
}

.text-block-101, .text-block-102, .text-block-103, .text-block-104 {
  font-family: Googlesans, Tahoma, sans-serif;
}

.text-block-105 {
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 1.5rem;
}

.button-text-4 {
  z-index: 20;
  color: #000;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 16px;
  position: relative;
  transform: rotate(-15deg);
}

.optimism-cta-2 {
  color: #181818;
  background-color: #0000;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid-wrapper-2 {
  z-index: 20;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1500px) minmax(5vw, 1fr);
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.action-content {
  grid-column-gap: 16px;
  grid-row-gap: 48px;
  border-left: 1px solid #8c9fac33;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-width: 800px;
  padding-top: 140px;
  padding-bottom: 140px;
  padding-left: 200px;
  display: grid;
  position: relative;
}

.grain-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.heading-4 {
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1.8rem;
}

.body-display {
  color: #333538;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6em;
}

.grain {
  z-index: 1;
  opacity: .02;
  background-image: url('../images/noise.gif');
  background-position: 50%;
  background-size: auto;
  position: fixed;
  inset: 0%;
}

.grain.in-block {
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: auto;
}

.stacked-content {
  grid-column-gap: 0px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 72px;
  padding-right: 72px;
  display: grid;
  position: relative;
}

.link-hover-fill {
  background-color: #000;
  border-radius: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.large-circle-link {
  color: #000;
  letter-spacing: 4px;
  text-transform: uppercase;
  background-color: #f7f7f7;
  border: 1px solid #8c9fac33;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  font-size: 11px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto auto auto -100px;
  overflow: hidden;
}

.large-circle-link.click {
  pointer-events: auto;
  cursor: default;
}

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

.stacked-intro {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.content-wrapper {
  z-index: 20;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  position: relative;
}

.sub-heading-services {
  margin-left: 177px;
  margin-right: 177px;
  font-family: Inconsolata, monospace;
  font-size: 1.4rem;
  line-height: 34px;
}

.letstalk-container {
  display: flex;
}

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

.text-block-107, .text-block-108, .text-block-109, .text-block-110 {
  font-family: Googlesans, Tahoma, sans-serif;
}

.heading-10 {
  background-color: #0000;
}

.heading-style-h1-2 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.project_description-2 {
  color: #fff;
  max-width: 85%;
  font-size: 1rem;
}

.heading-11 {
  color: #2e3030;
  margin-top: 1%;
  font-size: 2rem;
  line-height: 1;
}

.heading-11.custom-text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

.text-block-111 {
  font-weight: 600;
}

.project_date-and-link-2 {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.project_tag-2 {
  color: #000;
  background-color: #d4c3fa;
  border-radius: 20px;
  flex-direction: row;
  flex: 0 auto;
  justify-content: flex-start;
  width: auto;
  padding: 5px 16px;
  font-size: .8rem;
  font-weight: 400;
  display: flex;
  overflow: visible;
}

.portfolio {
  z-index: 5;
  mix-blend-mode: darken;
  background-color: #fff;
  margin-top: 0;
  position: relative;
}

.paragraph-2 {
  text-align: left;
  max-width: 80%;
  text-decoration: none;
}

.project_heading-2 {
  color: #fff;
  letter-spacing: .02em;
  font-size: 1.5rem;
  font-weight: 600;
}

.portfolio-section-2 {
  background-color: #eaeaea;
  border-bottom: 1px dashed #fff;
  margin-top: 4%;
  overflow: hidden;
}

.padding-global-3 {
  background-color: #fff;
  border: 1px #000;
  padding-left: 5%;
  padding-right: 5%;
}

.padding-section-medium-2 {
  background-color: #fff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-us-introtext {
  margin: 10% 18%;
  padding-left: 40px;
  padding-right: 40px;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1.2rem;
}

.gradient-intro-wrapper-2 {
  z-index: 1;
  color: #f5f5f7;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.tip-wrapper {
  flex-direction: row;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: auto;
  margin-top: 0;
  margin-bottom: 20px;
  overflow: visible;
}

.shape-6-2 {
  background-color: #a0bce0;
  border-radius: 999em;
  width: 66em;
  height: 60em;
  margin-left: auto;
  position: absolute;
  top: -14.2em;
  right: -25em;
  transform: rotate(60deg);
}

.title1 {
  text-transform: none;
  margin-top: 2rem;
  font-family: Neokuratplakat, Georgia, sans-serif;
  font-size: 6rem;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
}

.shape-9 {
  background-color: #1b1b1b;
  border-radius: 999em;
  width: 30em;
  height: 119em;
  position: absolute;
  top: -5.3em;
  right: 1.2em;
  transform: rotate(39deg);
}

.section-ultra-gradients {
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 45em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-ultra-gradients.is-first {
  z-index: 2;
  display: block;
}

.shape-2 {
  background-color: #b5a3d6;
  border-radius: 999em;
  width: 43em;
  height: 40em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -20em;
  left: -27.4em;
  right: 0;
}

.blending-group-wrapper {
  z-index: 1;
  filter: blur(120px);
  mix-blend-mode: overlay;
}

.page-padding {
  padding-left: 0;
  padding-right: 0;
  position: static;
}

.ultra-gradient-wrapper-2 {
  background-color: #1b1b1b;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  font-size: 1vw;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.green-dot {
  width: 1.1vw;
  height: 1.1vw;
}

.section-tip {
  justify-content: center;
  align-items: center;
  height: 104%;
  display: flex;
  position: relative;
  overflow: visible;
}

.shape-3 {
  background-color: #b5a3d6;
  border-radius: 999em;
  width: 53em;
  height: 100em;
  position: absolute;
  top: -19.8em;
  left: -26em;
  right: 0;
  transform: rotate(-28deg);
}

.background-noise {
  z-index: 0;
  opacity: .3;
  background-image: url('../images/noise.png');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.container-w1 {
  width: 100%;
  max-width: 95em;
  margin-left: auto;
  margin-right: auto;
}

.main-shapes-wrapper {
  filter: blur(120px);
}

.container-w3 {
  width: 100%;
  max-width: 58em;
  margin-left: auto;
  margin-right: auto;
}

.scramble-text.text-size-xl.text-weight-light {
  margin-bottom: 20px;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1.5rem;
  line-height: 150%;
}

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

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

.shape-8 {
  background-color: #9fc68e;
  border-radius: 999em;
  width: 47em;
  height: 119em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -17.1em;
  left: 26.7em;
  right: 0;
  transform: rotate(29deg);
}

.available-group {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 2vw;
}

.top-tag {
  color: #1f1f1f;
  text-align: center;
  max-width: 40vw;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 1.6vw;
  font-weight: 400;
  line-height: 1.2;
}

.div-block-5 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.title-highlight-wrapper {
  margin-bottom: 1.3em;
  font-size: .7em;
}

.shape-5-2 {
  background-color: #e7805b;
  border-radius: 999em;
  width: 30em;
  height: 30em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -21.7em;
  left: 0;
  right: 0;
}

.shape-7 {
  background-color: #b5a3d6;
  border-radius: 999em;
  width: 20em;
  height: 13em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -4.1em;
  left: 0;
  right: -23.9em;
  transform: rotate(40deg);
}

.shape-1-2 {
  background-color: #a0bce0;
  border-radius: 999em;
  width: 40em;
  height: 40em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -24.7em;
  left: 0;
  right: 0;
}

.shape-4 {
  background-color: #f6c779;
  border-radius: 999em;
  width: 65em;
  height: 40em;
  margin-left: auto;
  position: absolute;
  top: -11.3em;
  left: 0;
  transform: rotate(40deg);
}

.button-2 {
  color: #d2e9ec;
  text-align: center;
  background-color: #1c1d21;
  border-radius: .9em;
  padding: .8em 3.1em;
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.button-2.is--hero {
  margin-top: .9em;
}

.cms_list {
  grid-column-gap: .83em;
  grid-row-gap: .83em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.is--display {
  text-align: center;
  width: 57%;
  margin-bottom: .6em;
  margin-left: auto;
  margin-right: auto;
  font-size: 7em;
  line-height: .9;
}

.container-2 {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 5.26em;
}

.container-2.is--main {
  padding-top: 10.26em;
  padding-bottom: 9em;
}

.header_left {
  color: #1c1d21;
  background-color: #f2fe9a;
  background-image: url('../images/background-svg-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.04em;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  min-height: 28em;
  padding: 1.94em 2.24em;
  display: flex;
}

.header_left.is--blue {
  background-color: #d2e9ec;
  background-image: none;
}

.header_left.is--green {
  background-color: #c6ead2;
  background-image: none;
}

.header_left.is--yellow {
  background-image: none;
}

.header_left-contain {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.work_thumbnail-img {
  object-fit: cover;
  width: 108%;
  max-width: none;
  height: 108%;
  position: absolute;
  inset: -4% 0% 0% -4%;
}

.text-color-graytrue100 {
  color: #f5f5f5;
}

.work_scroll-wrapper {
  padding-left: 5%;
  padding-right: 5%;
}

.button-icon {
  justify-content: center;
  align-items: center;
  padding: 2px;
  display: flex;
}

.button-icon.is-bottom {
  position: absolute;
  bottom: -100%;
  left: -100%;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

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

.icon-1x1-tiny {
  width: .575rem;
  height: .575rem;
}

.work_card-hover {
  z-index: 2;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  perspective: 1000px;
  letter-spacing: .25px;
  background-color: #2b2929;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.work_card-content {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.work_card-glow-background {
  z-index: 1;
  filter: blur(80px);
  background-color: #c7c7c7;
  border-radius: 50%;
  width: auto;
  height: auto;
  position: absolute;
  inset: 0% auto auto 0%;
}

.work_embed {
  display: none;
}

.work_project-title {
  color: var(--gainsboro);
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.work_card-border_glow {
  z-index: 2;
  background-color: #000;
  border: 0 #0000;
  border-radius: 13px;
  padding: 1px;
  position: relative;
  overflow: hidden;
}

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

.margin-top.margin-xlarge {
  margin: 40px 0 0;
}

.work_title-line {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  display: flex;
}

.container-large-2 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.work_tag-wrapper {
  background-color: var(--blue-violet);
  border: 1px solid #838383;
  border-radius: 6px;
  padding: .175rem .5rem;
}

.button-3 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: center;
  background-color: #0000;
  border: 1px solid #dcff7d;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  min-height: 2.1rem;
  padding: .75rem 1.75rem;
  text-decoration: none;
  display: flex;
  position: relative;
}

.padding-global-4 {
  padding-left: 5%;
  padding-right: 5%;
}

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

.padding-section-large {
  padding-top: 3rem;
  padding-bottom: 7rem;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group.is-center {
  justify-content: center;
}

.work_grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  width: 100%;
}

.text-color-yellow500 {
  color: #dcff7d;
}

.work_thumbnail-img-wrapper {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 60%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-text.is-bottom {
  position: absolute;
  bottom: -100%;
}

.text-size-tiny {
  color: var(--gainsboro);
  font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  font-size: .9rem;
  font-weight: 400;
}

.text-condensed-normal {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.work_tags-container {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.clip {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 1px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-services_card {
  opacity: .28;
}

.home-services_component {
  grid-column-gap: 12.5rem;
  grid-row-gap: 12.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-right: 17.5rem;
  display: grid;
  position: relative;
}

.section_home-services {
  z-index: 15;
  background-color: #000;
  position: relative;
}

.home-services_display-title {
  color: #fff;
  border-bottom: 2px solid #dcff7d;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 3.675rem;
  font-weight: 600;
  line-height: .9;
  display: inline-block;
}

.heading-style-h4 {
  text-transform: none;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

.home-services_list-wrapper {
  flex-direction: column;
  justify-content: center;
  height: 0;
  display: flex;
  position: relative;
  top: 50vh;
}

.container-large-3 {
  z-index: 22;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.text-color-graytrue400 {
  color: #a3a3a3;
}

.home-services_left-title-line {
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  display: flex;
}

.padding-global-5 {
  z-index: 22;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

.home-services_list {
  align-items: flex-start;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.text-condensed-small {
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 300;
}

.home-services_content {
  grid-column-gap: 10rem;
  grid-row-gap: 10rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 30vh;
  padding-bottom: 30vh;
  display: grid;
}

.home-services_list-text-wrapper {
  opacity: .2;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  position: relative;
}

.button_text {
  font-size: .88em;
  line-height: 1;
}

.container-3 {
  width: 100%;
  max-width: 90em;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
}

.container-3.is-cards {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: auto;
  padding-top: 4em;
  display: flex;
}

.icon {
  width: 3.5em;
  height: 3.5em;
}

.text-size-h2 {
  letter-spacing: -.02em;
  font-size: 4.5em;
  line-height: 1;
}

.card_content {
  padding-top: .5em;
  padding-bottom: .5em;
  font-family: Googlesans, Tahoma, sans-serif;
}

.card {
  background-color: #e9e9e9;
  border-radius: 2em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: auto;
  padding: 2.25em;
  transition: color .2s, background-color .2s;
  display: flex;
}

.card_text {
  margin-top: 1em;
  margin-bottom: 1.4em;
  font-size: .8em;
  line-height: 1.3;
}

.card_text.heading-servicecard {
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 500;
}

.button-4 {
  background-color: var(--blue-violet);
  color: #fff;
  text-align: center;
  border-radius: 100vw;
  padding: .8em 1.3em;
  transition: background-color .2s;
  display: inline-block;
}

.services-wrapper {
  width: 100%;
  font-size: 1em;
  position: relative;
  overflow: hidden;
}

.card_heading {
  color: var(--black);
  font-size: 1.8em;
  line-height: 1;
}

.grid {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: 5%;
  margin-right: 5%;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: grid;
}

.styles {
  width: 0;
  height: 0;
  position: fixed;
  inset: 0% 0% auto;
  overflow: hidden;
}

.button-38 {
  color: #222;
  cursor: pointer;
  background-color: #94ee94;
  border: .2em solid #000;
  border-radius: 500px;
  place-content: space-around center;
  align-self: center;
  align-items: center;
  margin-top: 20px;
  padding: 1em .8em;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: ease-in-out;
  display: inline-block;
}

.button-38:hover {
  transform: translate(-8px, -8px);
  box-shadow: 6px 6px #222;
}

.button-38:active {
  box-shadow: none;
  transform: translate(0);
}

.button-38.custom-cursor {
  text-align: center;
  background-color: #94ee94;
  margin-top: 0;
  padding: .5em .6em;
}

.button_text-2 {
  float: left;
  flex: 0 auto;
  margin-top: .2em;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1em;
  display: inline-block;
}

.button_arrow {
  float: right;
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 2em;
  line-height: 1;
  display: inline-block;
}

.container-large-fh {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 84rem;
  height: 100svh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
}

.section_contact {
  z-index: 12;
  background-color: #946fc7;
  width: 100%;
  height: 100svh;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
  overflow: hidden;
}

.form_input {
  color: #000;
  text-align: center;
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #ffffff4d;
  border-radius: 0;
  height: auto;
  margin-bottom: 0;
  padding: 1.75rem 0 1rem;
  font-size: 2rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: #000;
}

.form_input::placeholder {
  color: #fff9;
  font-size: 2rem;
}

.form_input.is-last {
  border-bottom-style: none;
}

.contact_form {
  width: 100%;
}

.form_submit {
  color: #ffff04;
  background-color: #ffff0400;
  border-top: 1px solid #ffff04;
  width: 100%;
  padding: 1rem 0;
  font-size: 2rem;
}

.contact_flex {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

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

.contact_separator {
  background-color: #fff3;
  flex: none;
  width: 1px;
}

.heading-style-h2-2 {
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 900;
  line-height: 3.75rem;
}

.button-emblem {
  z-index: 5;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 1.6em;
  height: 1.6em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.emblem-wrapper {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  display: flex;
  position: absolute;
}

.buttone-text-block {
  font-family: Googlesans, Tahoma, sans-serif;
  font-weight: 700;
}

.arrow {
  filter: invert();
  width: 1em;
}

.button-emblem-background {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  background-color: #0f1c12;
  border-radius: .25em;
  justify-content: center;
  align-items: center;
  width: 1.375em;
  height: 1.375em;
  display: flex;
  position: static;
  overflow: visible;
}

.button-39 {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  color: #0f1c12;
  text-transform: uppercase;
  border: 1px solid #0f1c1299;
  border-radius: .25em;
  justify-content: center;
  align-items: center;
  min-width: 11em;
  padding: .5em .5em .5em .75em;
  font-size: .875em;
  line-height: 1em;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.button-39.nav {
  background-color: #f3f37a;
  border-color: #f3f37a;
  border-top-width: 2px;
  min-width: auto;
  height: 3em;
  padding-top: .5em;
  padding-bottom: .5em;
}

.button-39.nav.cta {
  z-index: 999;
  background-color: #a0e146;
  border-width: 0;
  border-color: #a0e146;
  height: 3em;
  padding-top: .5em;
  padding-bottom: .5em;
  position: relative;
}

.button-text-wrapper {
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 1em;
  display: flex;
  overflow: hidden;
}

.work-button {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  border: 2.4px solid var(--blue-violet);
  color: #0f1c12;
  text-transform: uppercase;
  border-radius: .25em;
  justify-content: center;
  align-items: center;
  min-width: 11em;
  padding: .5em .5em .5em .75em;
  font-size: .875em;
  line-height: 1em;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.work-button.nav {
  background-color: #f3f37a;
  border-color: #f3f37a;
  border-top-width: 2px;
  min-width: auto;
  height: 3em;
  padding-top: .5em;
  padding-bottom: .5em;
}

.work-button.nav.cta {
  z-index: 999;
  background-color: #a0e146;
  border-width: 0;
  border-color: #a0e146;
  height: 3em;
  padding-top: .5em;
  padding-bottom: .5em;
  position: relative;
}

.work-button.main-button {
  background-color: var(--blue-violet);
  color: var(--gainsboro);
  border-width: 0;
}

.button-divs {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: row;
  display: flex;
}

.button-41 {
  padding: 10px;
}

.btn-outer {
  background-color: #fff3;
  border-radius: 10px;
  padding: 2px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.glow-border {
  filter: blur(16px);
  background-color: #fff;
  width: 20%;
  height: 80%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.btn-inner {
  color: #fff;
  background-color: #04012b;
  border-radius: 8px;
  padding: 14px 26px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.btn-text {
  z-index: 1;
  position: relative;
}

.glow-inner {
  filter: blur(16px);
  background-color: #fff;
  width: 25%;
  height: 60%;
  position: absolute;
  inset: -10% auto auto -10%;
}

.button-42 {
  color: #fff;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  box-shadow: 0 4px 11px #000000d9;
}

.button-42:active {
  transform: translate(0, 2px);
  box-shadow: 0 4px 4px #0000004d;
}

.button__inner {
  border-radius: 12px;
  padding: 20px 32px;
  transition: box-shadow .2s;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 7px #ffffff47;
}

.button__inner:hover {
  box-shadow: inset 0 0 7px #fff9;
}

.gradient {
  z-index: 1;
  border-radius: 12px;
  position: absolute;
  inset: 0%;
}

.gradient__ball {
  filter: blur(20px);
  mix-blend-mode: overlay;
  border-radius: 50%;
  width: 50%;
  height: 50%;
}

.gradient__ball.gradient__ball--1 {
  background-color: #fd3846;
  background-image: linear-gradient(to right, #fd3846, #ffd000);
  position: absolute;
  bottom: 0;
}

.gradient__ball.gradient__ball--2 {
  background-image: linear-gradient(78deg, #a600ff, #2bff00);
  position: absolute;
  bottom: 0;
  left: 50%;
}

.button__text-2 {
  position: relative;
}

.gradient-glow {
  opacity: .25;
  position: absolute;
  inset: 0%;
}

.button-46 {
  grid-column-gap: .5rem;
  color: #0b0d01;
  text-align: center;
  background-color: #ade7ec;
  border-radius: 1.5rem;
  align-items: center;
  padding: 1.2rem 1.7rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
}

.button-46:hover {
  color: #f3f3f3;
  background-color: #0b0d01;
  box-shadow: 0 4px 2.9px 0 #c8ff0005, 0 10px 7.4px 0 #00000008, 0 21px 15px #00000008, 0 42px 31px #0000000a;
}

.button-46:active {
  background-color: #0b0d01;
}

.button-item---brix {
  margin: 18px 12px;
}

.learn-more {
  color: #fff;
  text-align: center;
  background-color: #4a3aff;
  border-radius: 50px;
  width: 57%;
  padding: 17px 20px;
  font-size: .8em;
  font-weight: 700;
  line-height: 20px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: -6px 6px #252aa3;
}

.learn-more:hover {
  transform: translate(0, 3px);
  box-shadow: 0 0 #252aa3;
}

.heading-12 {
  background-color: #0000;
}

.heading-13 {
  background-color: #0000;
  font-family: Googlesans, Tahoma, sans-serif;
}

.heading-14 {
  color: #2e3030;
  margin-top: 1%;
  font-size: 2rem;
  line-height: 1;
}

.heading-14.custom-text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}

.heading-15 {
  text-align: center;
  font-family: Googlesans, Tahoma, sans-serif;
}

.menu-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.menu-link.scribble-btn {
  border-radius: 2vw;
  flex-direction: row;
  padding: 6px 16px;
  transition: background-color .5s cubic-bezier(.883, .346, .088, .755);
  position: relative;
}

.menu-link.scribble-btn:hover {
  background-color: var(--blue-violet);
  color: var(--gainsboro);
  font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  font-style: italic;
  font-weight: 500;
}

.txt-sm {
  color: var(--white);
  text-transform: lowercase;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.txt-sm:hover {
  color: var(--black);
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 18px;
}

.txt-sm.letstalk-nav:hover {
  color: var(--blue-violet);
  font-style: italic;
  font-weight: 500;
}

.animated-svg-link {
  background-color: #0000;
  width: 80px;
  height: 80px;
  position: absolute;
  top: auto;
  bottom: -30px;
  left: 0;
}

.text-span-7 {
  color: var(--blue-violet);
  font-weight: 600;
}

.looping_image {
  align-self: center;
  width: 4em;
  height: 2em;
}

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

.looping_text {
  color: #222;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: center;
  margin-left: 1em;
  margin-right: 1em;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

.h2-blue {
  color: #0b1a3a;
}

.looping_container {
  z-index: 5;
  background-color: #728bd6;
  border-top: .2em solid #222;
  border-bottom: .2em solid #222;
  width: 100%;
  margin-top: 0;
  padding-top: 1.2em;
  padding-bottom: 3.2em;
  position: relative;
  overflow: hidden;
  transform: rotate(0);
}

.splash-2 {
  width: 22%;
  max-width: none;
  height: 22%;
  position: absolute;
}

.splash-6 {
  width: 65%;
  max-width: none;
  height: 65%;
  position: absolute;
}

.grid-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  place-items: end stretch;
  height: 100%;
}

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

.splash-container {
  z-index: 0;
  justify-content: center;
  align-items: center;
  width: 1440px;
  height: 1440px;
  display: flex;
  position: absolute;
  bottom: -62%;
}

.splash-container.white {
  width: 1440px;
  height: 1440px;
  bottom: -16%;
}

.sucessicon {
  width: 80px;
  height: 80px;
}

.cta-motto {
  justify-content: center;
  align-items: center;
  width: 1080px;
  height: 1080px;
  margin-top: -140px;
  display: flex;
  position: relative;
}

.theform {
  margin-bottom: 0;
  position: relative;
}

.splash-5 {
  width: 54%;
  max-width: none;
  height: 54%;
  position: absolute;
}

.splash-8 {
  width: 89%;
  height: 89%;
  position: absolute;
}

.splash-4 {
  width: 43%;
  max-width: none;
  height: 43%;
  position: absolute;
}

.form-fields {
  grid-column-gap: 0px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.looping_container_inner {
  flex-flow: row;
  align-items: center;
  display: flex;
  transform: rotate(0);
}

.looping_container_inner.track-marquee-a {
  padding-bottom: 0;
}

.field {
  border: 1px solid #fff;
  border-bottom-color: #728bd6;
  height: 48px;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 16px;
  line-height: 100%;
}

.field.msg {
  padding-top: 20px;
  padding-bottom: 0;
}

.splash-3 {
  width: 32%;
  max-width: none;
  height: 32%;
  position: absolute;
}

.btn-primary {
  color: #0b1a3a;
  text-align: center;
  background-color: #d0ff71;
  flex: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 24px 48px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: ease;
  display: block;
}

.btn-primary:hover {
  color: #000;
  background-color: #fff;
}

.btn-primary.blue:hover {
  color: #fff;
  background-color: #0b1a3a;
}

.formcombo {
  grid-column-gap: 10px;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.select-field {
  color: #0b1a3a;
  background-color: #fff;
  border: 1px solid #728bd6;
  height: 48px;
  margin-bottom: 0;
}

.select-field:active {
  background-color: #ffd8c2;
}

.sucessinfo {
  grid-row-gap: 32px;
  color: #0b1a3a;
  border: 3px solid #ee9ad2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 42px 10%;
  font-size: 32px;
  line-height: 110%;
  display: flex;
}

.cta-section {
  background-image: linear-gradient(#ee9ad2 20%, #0b1a3a 80%);
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.form-container {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: .6fr 1fr;
  place-items: stretch stretch;
  padding: 64px;
}

.formerror {
  color: #728bd6;
  text-align: center;
  background-color: #0000;
  border: 2px dashed #728bd6;
  font-size: 16px;
  font-weight: 600;
}

.splash-7 {
  width: 77%;
  height: 77%;
  position: absolute;
}

.label {
  color: #0b1a3a;
  flex: none;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}

.paragraph-3.small {
  color: #14125f;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
}

.splash-9 {
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
}

.h2-big {
  color: #0b1a3a;
  text-align: center;
  max-width: 920px;
  font-size: 96px;
  line-height: 90%;
  position: absolute;
}

.splash-1 {
  width: 12%;
  max-width: none;
  height: 12%;
}

.successcontainer {
  background-color: #0000;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.radio {
  grid-column-gap: 8px;
  grid-row-gap: 0px;
  align-items: center;
  padding-left: 12px;
  display: flex;
}

.global-container {
  z-index: 1;
  width: 90%;
  max-width: 1280px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.runningwords {
  grid-column-gap: 64px;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.divider {
  background-color: #0b1a3a;
  flex: none;
  width: 48px;
  height: 8px;
}

.middle-strip {
  z-index: 2;
  text-align: center;
  padding: 24px 48px;
  font-size: 48px;
  line-height: 100%;
  text-decoration: none;
  position: absolute;
}

.middle-strip.pink {
  color: #0b1a3a;
  background-color: #ee9ad2;
  transition: all .2s;
}

.middle-strip.pink:hover {
  background-color: #fff;
}

.runningtext {
  color: #0b1a3a;
  flex: none;
  font-size: 8vw;
  line-height: 90%;
}

.scroll-projects {
  grid-row-gap: 32px;
  background-color: #728bd6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 220px;
  padding-bottom: 220px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.bold {
  font-weight: 600;
}

.block-misc {
  background-color: #14125f3d;
  width: 320px;
  height: 320px;
  position: absolute;
}

.block-misc.vertical {
  width: 300px;
  height: 840px;
  inset: auto auto 0% 0%;
}

.block-misc.horizontal {
  width: 840px;
  height: 300px;
  inset: 40% -20% auto auto;
}

.h2-big-2 {
  color: #14125f;
  text-align: center;
  max-width: 920px;
  font-size: 96px;
  line-height: 90%;
  position: absolute;
}

.il_text {
  flex: none;
  margin-right: 2vw;
}

.label-2 {
  color: #14125f;
  flex: none;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}

.h2-blue-2 {
  color: #14125f;
}

.infiniteunit {
  align-items: center;
  display: flex;
}

.infiniteloop {
  flex: none;
  align-items: center;
  margin-left: 2vw;
  display: flex;
}

.infinitecontainer {
  z-index: 2;
  color: #fff;
  background-color: #14125f;
  justify-content: flex-start;
  align-items: center;
  width: 96vw;
  height: 120px;
  font-size: 30px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
  top: -120px;
  overflow: hidden;
  transform: rotate(2deg);
}

.infinitecontainer:hover {
  color: #fff;
  background-color: #3c39ec;
}

.infinitecontainer.w--current {
  background-color: #14125f;
}

.formerror-2 {
  color: #3c39ec;
  text-align: center;
  background-color: #0000;
  border: 2px dashed #3c39ec;
  font-size: 16px;
  font-weight: 600;
}

.field-2 {
  border: 1px solid #fff;
  border-bottom-color: #3c39ec;
  height: 48px;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 16px;
  line-height: 100%;
}

.field-2.msg {
  padding-top: 20px;
  padding-bottom: 0;
}

.sucessinfo-2 {
  grid-row-gap: 32px;
  color: #14125f;
  border: 3px solid #ee9ad2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 42px 10%;
  font-size: 32px;
  line-height: 110%;
  display: flex;
}

.select-field-2 {
  color: #14125f;
  background-color: #fff;
  border: 1px solid #3c39ec;
  height: 48px;
  margin-bottom: 0;
}

.select-field-2:active {
  background-color: #ffd8c2;
}

.btn-primary-2 {
  color: #14125f;
  text-align: center;
  background-color: #ee9ad2;
  flex: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 24px 48px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.btn-primary-2:hover {
  color: #000;
  background-color: #fff;
}

.btn-primary-2.blue:hover {
  color: #fff;
  background-color: #14125f;
}

.cta-section-2 {
  background-image: linear-gradient(#ee9ad2 20%, #14125f 80%);
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.form-contact {
  z-index: 1;
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.email-input-combo {
  align-items: flex-start;
  display: flex;
}

.text-field-2020 {
  border: 2px solid #000;
  height: 56px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
}

.text-field-2020:focus {
  border-color: #0080ff;
}

.text-field-2020::placeholder {
  color: #afafaf;
}

.form-block {
  padding-top: 24px;
  padding-bottom: 24px;
}

.content {
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.section-4 {
  border: 24px solid #000;
  align-items: center;
  height: 100vh;
  display: flex;
}

.success-message-2 {
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
}

.error-message-2 {
  opacity: 1;
  color: #ffefef;
  background-color: #0000;
  padding: 0;
  font-size: 15px;
  line-height: 1.5em;
  text-decoration: none;
}

.image {
  margin-bottom: 12px;
}

.text-block {
  color: #ff2727;
}

.small {
  font-size: .8em;
}

.submit-button-2020 {
  background-color: #2e2c31;
  border: 2px solid #000;
  height: 56px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
}

.submit-button-2020:focus {
  border-color: #1352ff;
}

.os-footer-text {
  color: #3a3939;
  margin-bottom: 0;
  padding-top: 0;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 21px;
}

.os-btn-menu {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #000;
  background-color: #fff;
  border-top: 1px solid #6666664f;
  border-radius: 100px;
  align-items: center;
  padding: 16px 30px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
}

.os-btn-menu.back-home {
  margin-top: 40px;
  position: absolute;
  inset: 10% 10% auto auto;
}

.os-footer-menu {
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.os-menu-inner {
  height: 26px;
  overflow: hidden;
}

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

.os-social-link {
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.showcase-footer-top {
  text-align: center;
}

.os-footer-text-btm {
  color: #000;
  text-align: center;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1rem;
}

.os-btn-text {
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1rem;
}

.os-link {
  color: #000;
  font-weight: 500;
}

.showcase-footer {
  color: #f7f7f7;
  background-color: #f7f7f7;
  padding-top: 86px;
  padding-bottom: 40px;
}

.container-md-2 {
  max-width: 1112px;
  padding-left: 16px;
  padding-right: 16px;
}

.loading-lottie {
  width: 10vw;
  height: 10vw;
  padding-left: 0;
}

.text-block-124 {
  color: var(--gainsboro);
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1rem;
}

.arrow-icon {
  z-index: 1;
  color: #000;
  width: 20%;
  height: 20%;
  position: absolute;
}

.button-wrapper {
  color: #dcff7d;
  align-items: center;
  min-height: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  position: relative;
}

.button-background {
  border: 2px solid #dcff7d;
  border-radius: 25px;
  width: 50px;
  height: 50px;
  position: absolute;
}

.button-text-5 {
  z-index: 1;
  margin-left: 20px;
  margin-right: 10px;
  font-family: Googlesans, Tahoma, sans-serif;
  position: relative;
}

.button-arrow {
  width: 15px;
  margin-right: 20px;
}

.contact-left {
  color: var(--black);
  width: 100%;
}

.hero_title-4 {
  color: var(--black);
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  justify-content: flex-end;
  align-items: center;
  max-width: 100%;
  margin-top: 2%;
  font-family: Neokuratplakat, Georgia, sans-serif;
  font-size: 7cqw;
  font-weight: 400;
  display: block;
}

.lottie-eye {
  width: 21px;
  height: 20px;
  padding-right: 0;
}

.lottie-eye.demo-eye {
  text-align: left;
  width: 26px;
  height: 26px;
}

.lottie-eye.demo-eye.big-eye {
  width: 40px;
  height: 32px;
  margin-top: 2%;
  margin-left: 2%;
}

.form-block-2 {
  margin-top: 3%;
  margin-bottom: 10%;
  padding-left: 10%;
  padding-right: 10%;
}

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

.contact-wrapper-2 {
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin: 0% auto 1%;
  padding-left: 5%;
  padding-right: 5%;
  display: block;
}

.contact-name-wrapper {
  flex: 1;
  margin-right: 40px;
}

.contact-field-label {
  color: #003049;
  margin-bottom: 10px;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 21px;
  line-height: 1.3;
}

.heading-16 {
  color: #2e3030;
  text-align: center;
  margin-top: 10px;
  font-size: 2.5rem;
  font-weight: 600;
}

.contact-section {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin-top: 10%;
  padding-left: 0;
  display: flex;
}

.div-block-7 {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-text-area {
  color: #003049;
  background-color: #4200f71a;
  border: 1px solid #00f;
  min-height: 150px;
  padding-top: 12px;
  font-family: Varela Round, sans-serif;
  line-height: 1.3;
}

.contact-text-area:focus {
  border-color: #003049;
}

.contact-text-area::placeholder {
  color: #00304966;
  font-family: Varela Round, sans-serif;
}

.contact-text-area.input-cursor {
  font-family: Googlesans, Tahoma, sans-serif;
}

.success-text {
  font-weight: 500;
}

.contact-paragraph {
  text-align: left;
  width: 88%;
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.contact-paragraph.smaller {
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 60px;
  padding-left: 7%;
  padding-right: 7%;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 1.4rem;
}

.contact-paragraph.bigger {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 10%;
  padding-right: 10%;
  font-size: 1.2rem;
  font-weight: 400;
  display: none;
}

.contact-bottom-wrapper {
  margin-bottom: 40px;
  margin-right: 40px;
}

.success-message-3 {
  background-color: #fcbf49;
  font-size: 16px;
  font-weight: 600;
}

.error-message-inquiry {
  color: #fff;
  background-color: #d62828;
  font-size: 14px;
  line-height: 1.3;
}

.contact-form-button {
  background-color: var(--dark-slate-grey);
  color: var(--white);
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-clip: border-box;
  border-radius: 8px;
  margin-bottom: 60px;
  padding: 15px;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 15px;
  line-height: 1.3;
  transition: none;
}

.contact-form-button:hover {
  color: var(--black);
  background-color: #bacbffa1;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
}

.contact-top-wrapper {
  margin-bottom: 40px;
  display: flex;
}

.contact-text-field {
  color: #003049;
  background-color: #4200f71c;
  border: 1px solid #00f;
  height: 50px;
  font-family: Varela Round, sans-serif;
  line-height: 1.3;
}

.contact-text-field:focus {
  border-color: #003049;
}

.contact-text-field::placeholder {
  color: #00304966;
  font-family: Varela Round, sans-serif;
}

.contact-text-field.input-cursor {
  border-color: var(--blue-violet);
  -webkit-text-stroke-color: var(--blue-violet);
  background-color: #4200f71c;
  font-family: Googlesans, Tahoma, sans-serif;
}

.contact-left-2 {
  width: 100%;
}

.hero_title-5 {
  text-align: center;
  letter-spacing: .01em;
  text-transform: none;
  justify-content: flex-end;
  align-items: center;
  max-width: 100%;
  margin-top: 4%;
  font-family: Neokuratplakat, Georgia, sans-serif;
  font-size: 7cqw;
  font-weight: 400;
  display: block;
}

.heading-17 {
  color: #2e3030;
  text-align: center;
  margin-top: 10px;
  font-size: 2.5rem;
  font-weight: 600;
}

.div-block-8 {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.success-message-4 {
  background-color: #fcbf49;
  font-size: 16px;
  font-weight: 600;
}

.about__title-highlight-2 {
  color: #5739fb;
}

.about__block-title-2 {
  color: var(--black);
  text-transform: none;
  padding-right: 30px;
  font-family: Googlesans, Tahoma, sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}

.about__block-meta-2 {
  color: var(--gainsboro);
  border-bottom: 1px solid #414141;
  margin-bottom: .5rem;
  padding-bottom: 1rem;
}

.about__block-meta-2:hover {
  color: var(--gainsboro);
}

.about__meta-label-2 {
  color: #1f1f1f;
  font-size: 15rem;
  font-weight: 700;
  line-height: .85;
  display: inline-block;
}

.text-span-8 {
  color: var(--blue-violet);
}

.text-span-9 {
  color: var(--blue-violet);
  font-style: italic;
}

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

.text-block-125 {
  font-family: Inconsolata, monospace;
}

.pricing_bottom {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #0000;
  flex-flow: column;
  padding: 30px;
  display: flex;
}

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

.text-weight-semibold.blue {
  color: #0b1730;
}

.text-weight-semibold.card-text {
  font-size: .9em;
}

.pricing_checklist {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

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

.pricing_tick-icon {
  width: 18px;
  height: 18px;
}

.pricing_checktxt {
  color: #0b1730cc;
  font-size: .875rem;
  font-weight: 600;
}

.bold-text-3 {
  color: var(--blue-violet);
}

.top-card {
  padding-left: 30px;
  padding-right: 30px;
}

.text-block-126 {
  font-family: Inconsolata, monospace;
  font-size: .85em;
}

.text-span-11 {
  color: var(--blue-violet);
  font-style: italic;
}

.card-text.check-list {
  font-size: .8em;
}

.section-5 {
  background-color: #fffbea;
  padding: 4em;
  overflow: hidden;
}

.section-5.languages {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.partners {
  display: block;
  overflow: hidden;
}

.stars-3 {
  width: 10em;
  position: absolute;
  inset: auto 16% 62% auto;
}

.ur-so-cute {
  z-index: 1;
  width: 12em;
  height: auto;
  position: absolute;
  top: 17%;
  left: 57%;
  overflow: visible;
}

.about {
  background-color: #f8eeec;
  border-top: .2em solid #222;
  padding-top: 8em;
  padding-bottom: 8em;
  position: relative;
}

.grid_item {
  flex-direction: column;
  flex: 0 auto;
  align-self: auto;
  align-items: stretch;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: flex;
}

.grid_item.about_text_container {
  width: 70%;
  padding: 7em;
}

.grid_item.about_picture {
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 27em;
  padding-left: 0;
  padding-right: 0;
  transition: transform .2s;
  display: flex;
  position: static;
  overflow: visible;
  transform: rotate(-8deg);
}

.grid_item.about_picture:hover {
  transform: scale(1.2)rotate(0);
}

.about_heading {
  color: #e85c3b;
  margin-bottom: .1em;
  font-size: 4em;
  font-weight: 900;
}

.container-4 {
  max-width: 72em;
}

.grid-3 {
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.grid-3.about_container {
  justify-content: center;
  position: relative;
}

.about_animation {
  background-color: #fff;
  border: .2em solid #000;
  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.isnt-she-cute {
  width: 16em;
  position: absolute;
  inset: auto auto 23% 25%;
}

.stars-2 {
  width: 9em;
  position: absolute;
  inset: 5% auto auto 5%;
}

.pixelated-image-card {
  color: #ff4c24;
  text-align: left;
  background-color: #131313;
  border-radius: .5em;
  width: 25em;
  max-width: 100%;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

.contact-left-3 {
  width: 100%;
}

.contact-left-3.container {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: static;
}

.hero_title-6 {
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  justify-content: flex-end;
  align-items: center;
  max-width: 100%;
  margin-top: 2%;
  font-size: 7cqw;
  font-weight: 400;
  display: block;
}

.div-block-9 {
  padding-bottom: 20px;
  font-size: 1.2rem;
}

.grid-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 3%;
  margin-left: 3%;
  margin-right: 3%;
}

.heading-18 {
  text-align: center;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-end;
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 2.2rem;
  display: flex;
}

.pixelated-image-card__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.div-block-10 {
  margin-left: 5%;
  margin-right: auto;
}

.pixelated-image-card__active {
  color: #8f4df8;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.normal {
  margin: 0 10% 20px;
  font-size: 1.3rem;
  font-weight: 400;
}

.normal.custom-text {
  margin-left: 3%;
  margin-right: 3%;
}

.heading-style-h2-7 {
  text-align: center;
  font-size: 2.625rem;
}

.heading-style-h2-7.skills-header {
  text-align: left;
  margin-bottom: 20px;
  font-size: 2rem;
}

.heading-style-h2-7.skills-header.background-header {
  margin-top: 0;
  margin-left: 0%;
  padding-top: 10px;
  font-size: 2rem;
}

.heading-style-h2-7.skills-header.background-header._1 {
  text-align: center;
  margin-left: 0%;
}

.before__100 {
  color: #8f4df8;
  padding-top: 100%;
}

.pixelated-image-card__default {
  color: #8f4df8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.about-section-2 {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  padding-left: 0%;
  padding-right: 0%;
}

.pixelated-image-card__pixel {
  background-color: currentColor;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
}

.pixelated-image-card__pixels {
  color: #8f4df8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.browser-top-bar-button-icon {
  opacity: .25;
  width: .65em;
  max-height: .65em;
}

.browser {
  aspect-ratio: 3 / 2;
  background-color: #fff;
  border-radius: .25rem;
  width: 100%;
  max-width: 40rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px #0000000d;
}

.browser-top-bar-button-group {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.browser-top-bar-input {
  background-color: #fff;
  border-radius: .25em;
  width: 100%;
  height: 1.15em;
}

.browser-top-bar-dot-group {
  grid-column-gap: .35em;
  grid-row-gap: .35em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.browser-top-bar-dot {
  background-color: #f96058;
  border-radius: 100%;
  width: .6em;
  height: .6em;
}

.browser-top-bar-dot.browser-top-bar-dot-yellow {
  background-color: #fbbd38;
}

.browser-top-bar-dot.browser-top-bar-dot-green {
  background-color: #59cb3f;
}

.browser-top-bar {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  background-color: #e6e6e6;
  justify-content: flex-start;
  align-items: center;
  height: 2em;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
}

.browser-image {
  object-position: 50% 0%;
}

.browser-top-bar-button {
  aspect-ratio: 1;
  background-color: #d6d6d6;
  border-radius: .25em;
  justify-content: center;
  align-items: center;
  height: 1.15em;
  display: flex;
}

.footer-logo {
  max-width: 220px;
}

.heading-style-h2-8 {
  color: #1f2020;
  text-align: center;
  font-size: 3.7rem;
}

.heading-style-h2-8.custom-text {
  font-family: Generalsans, Tahoma, sans-serif;
  font-size: 3.6rem;
}

.heading-19 {
  color: #2e3030;
  margin-top: 1%;
  font-size: 2rem;
  line-height: 1;
}

.heading-19.custom-text {
  text-align: center;
  margin-top: -4%;
  margin-bottom: 4%;
  font-family: Generalsans, Tahoma, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.paragraph-4 {
  text-align: left;
  max-width: 80%;
  font-family: Generalsans, Tahoma, sans-serif;
  text-decoration: none;
}

.heading-style-h1-3 {
  font-family: Generalsans, Tahoma, sans-serif;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.paragraph-4 {
  text-align: left;
  max-width: 80%;
  text-decoration: none;
}

.mobile-link {
  display: none;
}

.tab-content-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.tab-content-holder._01 {
  grid-row-gap: 4px;
}

.tab-wrapper {
  grid-column-gap: 30px;
  align-items: center;
  display: flex;
}

.tab-link {
  cursor: pointer;
  background-color: #fff0;
  border: 1px solid #4b94ff00;
  border-radius: 12px;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 24px 50px 24px 24px;
}

.tab-link:hover {
  color: #000;
  border-color: #e4e4e4;
}

.tab-link.w--current {
  background-color: #fff;
  border-color: #4b94ff;
  box-shadow: inset 1px 1px 10px #0000000d, 0 2px 5px #3d5cff1a;
}

.stacked-tab-holder {
  width: 100%;
}

.stacked-tab-holder._02 {
  z-index: 3;
  opacity: .7;
  position: absolute;
  transform: scale(.9)translate(76px);
}

.stacked-tab-holder._01 {
  z-index: 4;
  justify-content: flex-start;
  display: flex;
  position: relative;
}

.stacked-tab-holder._03 {
  z-index: 2;
  opacity: .3;
  position: absolute;
  transform: scale(.8)translate(167px);
}

.stacked-tabs-container {
  z-index: 10;
  background-color: #fbfbfb;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 520px;
  min-width: 520px;
  display: flex;
  position: relative;
}

.tab-paragraph {
  color: var(--dark-slate-grey);
  font-family: Generalsans, Tahoma, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.stacked-tabs-content-holder {
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.stacked-gradient {
  z-index: 9;
  background-image: linear-gradient(270deg, #fbfbfb00 13%, #fbfbfb 23%);
  width: 70vw;
  height: 120%;
  position: absolute;
  left: -50vw;
  right: auto;
}

.center-text {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0%;
  display: flex;
}

.link:hover {
  color: #646464;
}

.tabs-wrapper {
  padding-top: 0;
}

.stacked-tabs-pane-holder {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.stacked-tab-image {
  border: .7px solid #e8eaed;
  border-radius: 12px;
  width: 100%;
  box-shadow: 6px 6px 41px #56565626;
}

.filter-section.overflow-hidden {
  overflow: hidden;
}

.container-5 {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
}

.stacked-tabs-holder {
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.tab-circle {
  background-color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 70px;
  min-width: 70px;
  height: 70px;
  min-height: 70px;
  display: flex;
  box-shadow: 6px 6px 26px #65656542, inset -6px -6px 15px #7978781a;
}

.grid-8-col {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tab-title {
  font-family: Generalsans, Tahoma, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.tab-title.filter-subtitle {
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
}

.tab-title.subtitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.tab-icon {
  width: 24px;
  height: 24px;
}

.grey-paragraph {
  color: #7f8090;
}

.heading-21 {
  background-color: #0000;
}

.heading-21.top-heading {
  margin-top: 40px;
}

.div-block-3 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #1f2020;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  display: flex;
}

.heading-style-h2-9 {
  color: #1f2020;
  text-align: center;
  font-size: 3.7rem;
}

.heading-22 {
  background-color: #0000;
}

.heading-22.top-heading {
  margin-top: 40px;
}

.div-block-11 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #1f2020;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  display: flex;
}

.heading-style-h2-10 {
  color: #1f2020;
  text-align: center;
  font-size: 3.7rem;
}

.heading-style-h2-10.custom-text {
  margin-bottom: 0;
  font-family: Generalsans, Tahoma, sans-serif;
  font-size: 3.4rem;
}

.heading-23 {
  color: #2e3030;
  margin-top: 1%;
  font-size: 2rem;
  line-height: 1;
}

.heading-23.custom-text {
  text-align: center;
  font-family: Generalsans, Tahoma, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.banner-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: #5b5b5b;
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem 1rem 1.5rem;
  text-decoration: none;
  display: flex;
}

.banner-wrapper.is-green {
  text-align: center;
  background-color: #fbfbfb;
  flex-flow: row;
}

.banner-wrapper.is-orange {
  background-color: #fbfbfb;
  flex-flow: row;
}

.banner-wrapper.is-pink {
  background-color: #ffdbef;
  flex-flow: row;
}

.text-size-regular {
  color: #2e3030;
  padding-left: 5%;
  padding-right: 5%;
}

.heading-24 {
  color: #2e3030;
  margin-top: 1%;
  font-size: 2rem;
  line-height: 1;
}

.heading-24.custom-text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

.heading-24.custom-text.filter-heading {
  margin-top: 5%;
}

.iphone-mockup-4 {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.iphone-shape {
  z-index: 1;
  width: 100%;
  position: relative;
}

.iphone-screen {
  z-index: 0;
  object-fit: cover;
  border-radius: 2%;
  width: 89.5%;
  height: 95.4%;
  position: absolute;
  top: 2.4%;
  left: 5.5%;
}

.text-block-127, .text-block-128, .text-block-129, .text-block-130 {
  font-size: .85rem;
}

.button-47 {
  color: #222;
  cursor: pointer;
  background-color: #94ee94;
  border: .2em solid #000;
  border-radius: 500px;
  place-content: space-around center;
  align-self: center;
  align-items: center;
  margin-top: 20px;
  padding: 1em .8em;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: ease-in-out;
  display: inline-block;
}

.button-47:hover {
  transform: translate(-8px, -8px);
  box-shadow: 6px 6px #222;
}

.button-47:active {
  box-shadow: none;
  transform: translate(0);
}

.button-47.custom-cursor {
  text-align: center;
  background-color: #94ee94;
  margin-top: 40px;
}

.button_text-3 {
  float: left;
  flex: 0 auto;
  margin-top: .2em;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1em;
  display: inline-block;
}

.loading-lottie-2 {
  width: 10vw;
  height: 10vw;
}

.cta-2 {
  color: #0e1633;
  text-align: center;
  background-color: #fff;
  border: 2px solid #0e1633;
  border-radius: 200px;
  align-items: center;
  padding: 13px 30px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow .25s;
  display: flex;
  box-shadow: 0 1px 20px #00000026;
}

.cta-2:hover {
  box-shadow: 0 1px 25px #00000040;
}

.arrow-icon-2 {
  margin-left: 5px;
}

.text-block-131 {
  color: var(--black);
  padding-right: 10px;
  font-family: Generalsans, Tahoma, sans-serif;
}

.navbar-link {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  border: 1px solid var(--blue-violet);
  color: var(--black);
  border-radius: 50rem;
  justify-content: center;
  width: 26%;
  margin-top: 8%;
  padding: .5rem 1rem;
  font-family: Generalsans, Tahoma, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .35s;
  display: flex;
}

.navbar-link:hover {
  background-color: var(--black);
  color: var(--white);
}

.navbar-link_wrapper {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  justify-content: center;
  align-items: center;
  display: block;
  position: relative;
  overflow: hidden;
}

.hover-text-01.bottom, .hover-text-02.bottom, .hover-text-03.bottom {
  position: absolute;
  inset: auto 0% -100%;
}

.button-48 {
  color: #222;
  cursor: pointer;
  background-color: #94ee94;
  border: .2em solid #000;
  border-radius: 500px;
  place-content: space-around center;
  align-self: center;
  align-items: center;
  margin-top: 20px;
  padding: 1em .8em;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: ease-in-out;
  display: inline-block;
}

.button-48:hover {
  transform: translate(-8px, -8px);
  box-shadow: 6px 6px #222;
}

.button-48:active {
  box-shadow: none;
  transform: translate(0);
}

.button-48.back-home-button {
  background-color: #e1daf2;
}

.link-3 {
  color: #5b3acc;
}

.animation-2 {
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
}

.form-title-wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 35px;
  font-family: Generalsans, Tahoma, sans-serif;
  display: flex;
}

.span-blue {
  color: #5b3acc;
}

.form-section-title-5 {
  color: #1b1b1b;
  letter-spacing: -.03px;
  margin-bottom: 12px;
  font-size: 34px;
  font-weight: 400;
  line-height: 32px;
}

.success {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 80vh;
  margin-top: 40px;
  padding: 0 3%;
  display: flex;
}

.paragraph-11 {
  color: var(--black);
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-size: 22px;
  line-height: 29px;
}

.text-span-14 {
  color: var(--blue-violet);
}

@media screen and (min-width: 1280px) {
  .hero-section {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero__heading.is--accent {
    margin-left: 21rem;
    margin-right: 21rem;
  }

  .hero__heading.main {
    font-size: 14vh;
  }

  .hero {
    grid-row-gap: 4vh;
    margin-top: 10%;
  }

  .menu-wrapper {
    margin-top: 20px;
    inset: 0% 0% auto;
  }

  .menu__item {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .active-wite-dott.d-1 {
    cursor: auto;
  }

  .heading-style-h2.custom-text {
    font-size: 2.5rem;
  }

  .heading-8 {
    margin-bottom: 5px;
    font-size: 2.5rem;
  }

  .button-text-4 {
    font-family: Googlesans, Tahoma, sans-serif;
    transform: rotate(-15deg);
  }

  .about-us-introtext {
    margin: 10% 18%;
    padding-left: 40px;
    padding-right: 40px;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .tip-wrapper {
    margin-top: 0;
  }

  .scramble-text.text-size-xl.text-weight-light {
    color: var(--black);
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1.5rem;
  }

  .available-group {
    margin-top: 0;
  }

  .work_project-title {
    color: var(--gainsboro);
  }

  .work_tag-wrapper {
    background-color: var(--blue-violet);
    color: var(--gainsboro);
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1.7rem;
  }

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

  .text-condensed-normal.text-color-yellow500 {
    font-size: 1.3rem;
  }

  .container-3.is-cards {
    min-height: auto;
    padding-top: 0;
    padding-left: 5%;
    padding-right: 5%;
  }

  .card_content {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .card_text {
    padding-left: 0;
    padding-right: 0;
    font-size: .9em;
  }

  .card_text.heading-servicecard {
    margin-top: 0;
    margin-bottom: 0;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 2rem;
    font-weight: 500;
  }

  .button-4 {
    background-color: var(--blue-violet);
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: .88em;
  }

  .card_heading {
    font-size: 1.8em;
  }

  .grid {
    padding-top: 0;
  }

  .buttone-text-block {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .work-button {
    border-width: 2.4px;
    border-color: var(--blue-violet);
  }

  .work-button.nav.cta {
    background-color: #69bb48;
  }

  .work-button.main-button {
    background-color: var(--blue-violet);
    color: var(--gainsboro);
    border-width: 0;
  }

  .button-divs {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    display: flex;
  }

  .button-41, .btn-outer {
    color: var(--blue-violet);
  }

  .button__inner {
    color: var(--black);
    background-color: #534e4e;
  }

  .gradient__ball.gradient__ball--1 {
    background-color: var(--blue-violet);
    background-image: linear-gradient(90deg, var(--blue-violet), #ffd000);
  }

  .button__text-2 {
    color: var(--white);
  }

  .button-46 {
    margin-top: 20px;
    font-size: 1.2rem;
  }

  .learn-more {
    border-radius: 50px;
    width: 55%;
    padding: 17px 20px;
    font-size: .77em;
  }

  .heading-15 {
    color: var(--black);
    text-align: center;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .txt-sm {
    font-size: 20px;
    line-height: 24px;
  }

  .txt-sm.letstalk-nav:hover {
    color: var(--blue-violet);
    font-style: italic;
    font-weight: 500;
  }

  .bold-text {
    color: var(--blue-violet);
  }

  .os-footer-text {
    padding-top: 0;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 21px;
  }

  .os-btn-menu.back-home {
    margin-top: 40px;
    position: absolute;
    inset: 10% 10% auto auto;
  }

  .os-footer-menu {
    padding-top: 60px;
  }

  .os-btn-text {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1rem;
  }

  .text-block-124 {
    color: var(--gainsboro);
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1rem;
    font-weight: 400;
  }

  .button-background {
    color: #dcff7d;
    -webkit-text-stroke-color: #dcff7d;
    border-color: #dcff7d;
  }

  .button-text-5 {
    color: #dcff7d;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1rem;
  }

  .hero_title-4 {
    margin-top: 4%;
    font-size: 8cqw;
  }

  .contact-wrapper-2 {
    margin-bottom: 0%;
  }

  .contact-field-label {
    margin-bottom: 10px;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .heading-16 {
    font-size: 3rem;
  }

  .contact-section {
    margin-top: 5%;
  }

  .contact-text-area.input-cursor {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .contact-paragraph.smaller {
    margin-bottom: 60px;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .contact-form-button {
    background-color: var(--blue-violet);
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .contact-form-button:hover {
    color: var(--black);
    background-color: #dcff7da1;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
  }

  .contact-text-field.input-cursor {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .contact-left-2 {
    margin-top: 0;
  }

  .hero_title-5 {
    color: var(--black);
    margin-top: 5%;
    margin-bottom: 20px;
    font-family: Neokuratplakat, Georgia, sans-serif;
    font-size: 7cqw;
  }

  .heading-17 {
    margin-top: 20px;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 2.5rem;
  }

  .about__block-title-2 {
    color: var(--black);
    padding-left: 0;
    padding-right: 0;
  }

  .about__block-title-2:focus {
    color: var(--gainsboro);
  }

  .text-weight-semibold.blue {
    font-size: 1.2em;
  }

  .text-weight-semibold.card-text {
    font-size: .88em;
  }

  .pricing_checkitem {
    font-size: 1.2em;
  }

  .pricing_checktxt {
    font-size: 1.1rem;
  }

  .top-card {
    padding: 30px 30px 10px;
  }

  .text-block-126 {
    font-family: Inconsolata, monospace;
    font-style: normal;
  }

  .text-span-10 {
    color: var(--blue-violet);
    font-style: italic;
    font-weight: 600;
  }

  .text-span-11 {
    color: var(--blue-violet);
    font-style: italic;
  }

  .card-text.check-list {
    font-size: .7em;
  }

  .hero_title-6 {
    margin-top: 4%;
    font-size: 8cqw;
  }

  .normal {
    margin-left: 10%;
    margin-right: 10%;
  }

  .about-section-2 {
    margin-top: 20px;
  }

  .footer-logo {
    max-width: 260px;
  }

  .center-text {
    margin-bottom: 0%;
  }

  .heading-style-h2-10.custom-text {
    margin-bottom: 0;
  }

  .text-block-127, .text-block-128, .text-block-129, .text-block-130 {
    font-size: .85rem;
  }

  .text-block-131 {
    color: var(--black);
    font-family: Generalsans, Tahoma, sans-serif;
  }

  .navbar-link {
    width: 24%;
  }

  .form-title-wrap {
    font-family: Generalsans, Tahoma, sans-serif;
  }

  .success {
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
    padding-bottom: 0;
  }

  .paragraph-11 {
    color: var(--black);
    font-size: 22px;
    line-height: 29px;
  }

  .text-span-13 {
    color: var(--blue-violet);
  }
}

@media screen and (min-width: 1440px) {
  .hero-section {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero__title {
    margin-top: 0;
  }

  .hero__heading.is--accent {
    width: auto;
    margin-top: 40px;
    margin-left: 25rem;
    margin-right: 25rem;
    font-size: .125em;
    line-height: 1;
  }

  .hero__heading.main {
    font-size: 14vh;
  }

  .hero {
    grid-row-gap: 3vh;
    margin-top: 7%;
    margin-bottom: 0%;
  }

  .marquee-section {
    margin-top: 5vh;
  }

  .marquee__text {
    font-family: Inconsolata, monospace;
    font-size: 121px;
  }

  .gallery-section {
    margin-left: 0;
    margin-right: 0;
  }

  .intro-wrapper {
    margin-top: 111px;
    margin-left: 100px;
    margin-right: 100px;
  }

  .menu-wrapper {
    margin-top: 10px;
    inset: 5% 0% auto;
  }

  .menu__item {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .gallery__lottie {
    height: 220px;
  }

  .active-wite-dott.d-1 {
    cursor: auto;
  }

  .hero-tag_text-2.now-booking {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1rem;
  }

  .menu-lotti-icon {
    padding-left: 0;
  }

  .past-projects-titleblock {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .past-projects-titleblock.project-sub-heading {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .project_image-wrapper.stvincents {
    background-color: #0000;
  }

  .project_image-wrapper.drivereach, .project_image-wrapper.torontogaa, .project_image-wrapper.chicagopizza {
    background-color: #8f4df8;
  }

  .heading-style-h2.custom-text {
    margin-top: 0;
    margin-bottom: 0;
  }

  .logo-wrapper {
    background-color: var(--gainsboro);
    width: 14em;
  }

  .languages-marquee {
    width: auto;
  }

  .section.logos {
    background-color: #0000;
    margin-bottom: 20px;
  }

  .form_field {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .submit-button._02 {
    margin-left: 20px;
  }

  .form-btn {
    margin-left: 0;
  }

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

  .heading-custom-h6 {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .footer-menu-wrapper {
    padding-left: 40px;
  }

  .bottom-margin-small._02 {
    max-width: 500px;
  }

  .footer-bottom-text {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 17px;
  }

  .footer-menu-list-wrapper, .footer-menu-list-wrapper.footer-contact-manu-wrapper {
    max-width: 500px;
  }

  .heading-8 {
    margin-bottom: 5px;
    font-size: 2.5rem;
  }

  .track-horizontal-alt {
    font-size: 1.2rem;
  }

  .button-text-4 {
    font-family: Googlesans, Tahoma, sans-serif;
    transform: rotate(-15deg);
  }

  .heading-4, .body-display {
    font-family: Generalsans, Tahoma, sans-serif;
  }

  .project_description-2 {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .heading-11.custom-text {
    font-family: Inconsolata, monospace;
  }

  .text-block-111 {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1rem;
  }

  .project_tag-2, .project_heading-2, .text-block-113, .text-block-114, .text-block-115, .text-block-116, .text-block-117 {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .about-us-introtext {
    margin: 10% 18%;
    padding-left: 40px;
    padding-right: 40px;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1.2rem;
  }

  .tip-wrapper {
    margin-top: 0;
  }

  .scramble-text.text-size-xl.text-weight-light {
    margin-top: 0;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.6rem;
    font-style: normal;
  }

  .available-group {
    margin-top: 0;
  }

  .work_card-hover {
    background-color: var(--black);
    -webkit-text-stroke-color: var(--black);
  }

  .work_project-title {
    color: var(--gainsboro);
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .work_tag-wrapper {
    background-color: var(--blue-violet);
    color: var(--gainsboro);
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.4rem;
  }

  .padding-section-large {
    padding-top: 2rem;
  }

  .text-size-tiny {
    font-size: 1.1rem;
  }

  .text-condensed-normal.text-color-yellow500 {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.3rem;
  }

  .container-3.is-cards {
    min-height: auto;
    padding: 1em 10em 4em;
  }

  .text-size-h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 2.2em;
  }

  .card_content {
    text-align: left;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .card_content.mid {
    padding-top: 2em;
    padding-bottom: 2rem;
  }

  .card {
    min-height: 21em;
    padding: 1.5em;
  }

  .card_text {
    margin-bottom: .125em;
    font-size: .88em;
  }

  .card_text.heading-servicecard {
    margin-bottom: 0;
    font-size: 1.7rem;
  }

  .button-4 {
    background-color: var(--blue-violet);
  }

  .services-wrapper {
    margin-top: 1rem;
  }

  .card_heading {
    font-size: 1.5em;
    font-weight: 500;
  }

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

  .button-38 {
    background-color: #94ee94;
    margin-top: 20px;
  }

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

  .form_input {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1rem;
    line-height: .88;
  }

  .form_input.is-last {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .contact_form {
    font-size: 1rem;
  }

  .form_submit {
    color: var(--blue-violet);
  }

  .form_form {
    font-size: 1rem;
  }

  .buttone-text-block {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: .95rem;
  }

  .button-39.nav.cta {
    background-color: #f0e85c;
  }

  .work-button {
    border-width: 2px;
    border-color: var(--blue-violet);
    padding-top: .75em;
    padding-bottom: .7em;
  }

  .work-button.nav.cta {
    background-color: var(--blue-violet);
  }

  .work-button.main-button {
    background-color: var(--blue-violet);
    color: var(--white);
    border-width: 0;
    padding-bottom: .75em;
    padding-right: .75em;
  }

  .work-button.see-more-work-btn {
    margin-top: 60px;
  }

  .button-divs {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: row;
    margin-top: 20px;
    display: flex;
  }

  .text-span-6 {
    color: var(--blue-violet);
    font-weight: 600;
  }

  .div-block-6 {
    justify-content: center;
    align-items: center;
    line-height: 1.5px;
    display: flex;
  }

  .button-46 {
    margin-top: 20px;
    font-size: 1.2rem;
  }

  .learn-more {
    border-radius: 50px;
    width: 75%;
    padding: 17px 22px;
    font-size: .8em;
  }

  .learn-more._2-btn {
    margin-top: 40px;
  }

  .heading-12 {
    line-height: 1;
  }

  .heading-14.custom-text {
    margin-top: 0%;
    margin-bottom: 40px;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
  }

  .heading-15 {
    color: var(--black);
    text-align: center;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .text-block-118, .text-block-119, .text-block-120 {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .text-block-121 {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
  }

  .text-block-122 {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: .89rem;
    font-style: italic;
  }

  .menu-link {
    text-transform: capitalize;
    align-self: center;
    line-height: 0;
    position: relative;
  }

  .menu-link.scribble-btn:hover {
    color: var(--blue-violet);
    font-family: Googlesans, Tahoma, sans-serif;
    font-style: italic;
  }

  .txt-sm {
    font-size: 22px;
    line-height: 26px;
  }

  .txt-sm.letstalk-nav:hover {
    z-index: 999;
    color: var(--blue-violet);
    font-weight: 500;
    position: relative;
  }

  .animated-svg-link {
    left: 0;
  }

  .looping_container_inner.track-marquee-a {
    margin-top: auto;
    margin-bottom: auto;
  }

  .divider {
    font-size: 1rem;
  }

  .middle-strip.pink {
    background-color: var(--blue-violet);
    color: var(--gainsboro);
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-style: italic;
  }

  .runningtext {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 4vw;
  }

  .scroll-projects {
    background-color: #728bd6;
  }

  .os-footer-text {
    padding-top: 0;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 20px;
  }

  .os-btn-menu.back-home {
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
    position: absolute;
    inset: 10% 10% auto auto;
  }

  .os-footer-menu {
    padding-top: 60px;
  }

  .os-btn-text {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.1rem;
  }

  .text-block-123 {
    color: var(--gainsboro);
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.1rem;
  }

  .text-block-124 {
    color: var(--gainsboro);
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1rem;
  }

  .button-wrapper {
    color: #dcff7d;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1rem;
  }

  .button-background {
    border-color: #dcff7d;
  }

  .button-text-5 {
    letter-spacing: .2px;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .hero_title-4 {
    margin-top: 4%;
    font-size: 8cqw;
  }

  .contact-wrapper-2 {
    margin-bottom: 0%;
  }

  .contact-field-label {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .heading-16 {
    font-size: 3.4rem;
  }

  .contact-section {
    margin-top: 5%;
  }

  .contact-paragraph.smaller {
    margin-top: 10px;
    margin-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.6rem;
  }

  .contact-form-button {
    background-color: @var_variable-f2ac006a;
    color: #d8d1ff;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 17px;
  }

  .contact-form-button:hover {
    background-color: var(--black);
    color: var(--gainsboro);
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 500;
  }

  .contact-text-field.input-cursor {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .contact-left-2 {
    margin-top: 0;
  }

  .hero_title-5 {
    color: var(--black);
    margin-top: 4%;
    font-family: Neokuratplakat, Georgia, sans-serif;
    font-size: 8cqw;
  }

  .heading-17 {
    margin-top: 40px;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 3.2rem;
  }

  .pricing_bottom {
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .text-weight-semibold.card-text {
    font-size: 1em;
  }

  .text-block-126 {
    font-size: .82em;
  }

  .text-span-11 {
    color: var(--blue-violet);
  }

  .card-text.check-list {
    font-size: .7em;
  }

  .section-5.languages {
    background-color: #fff;
  }

  .about {
    padding-left: 100px;
    padding-right: 10px;
  }

  .pixelated-image-card {
    color: #6e25de;
  }

  .hero_title-6 {
    margin-top: 4%;
    font-size: 8cqw;
  }

  .pixelated-image-card__img, .pixelated-image-card__active {
    -webkit-text-stroke-color: #6e25de;
  }

  .normal {
    margin-left: 10%;
    margin-right: 10%;
  }

  .before__100, .pixelated-image-card__default {
    -webkit-text-stroke-color: #6e25de;
  }

  .about-section-2 {
    margin-top: 20px;
  }

  .pixelated-image-card__pixel, .pixelated-image-card__pixels {
    -webkit-text-stroke-color: #6e25de;
  }

  .image-50 {
    padding-bottom: 10px;
  }

  .heading-style-h2-8.custom-text {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .heading-style-h2-8.custom-text.sub-title {
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 3rem;
  }

  .heading-19.custom-text {
    margin-top: -4%;
    margin-bottom: 4%;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .mobile-link {
    display: none;
  }

  .center-text {
    margin-bottom: 0%;
  }

  .container-5 {
    max-width: 1350px;
  }

  .tab-title {
    color: var(--black);
    font-family: Generalsans, Tahoma, sans-serif;
  }

  .tab-title.filter-subtitle {
    font-size: 24px;
  }

  .div-block-11 {
    justify-content: center;
    align-items: flex-end;
  }

  .heading-style-h2-10.custom-text {
    margin-bottom: 5%;
    margin-right: 10px;
    font-family: Generalsans, Tahoma, sans-serif;
  }

  .heading-23.custom-text {
    margin-top: 1%;
    margin-bottom: 0;
    font-family: Generalsans, Tahoma, sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
  }

  .text-block-127, .text-block-128, .text-block-129, .text-block-130 {
    font-size: .85rem;
  }

  .button-47 {
    background-color: #94ee94;
    margin-top: 20px;
  }

  .text-block-131 {
    color: var(--black);
    padding-right: 10px;
    font-family: Generalsans, Tahoma, sans-serif;
    font-style: normal;
    font-weight: 600;
  }

  .navbar-link {
    width: 21%;
  }

  .button-48 {
    background-color: #94ee94;
    margin-top: 20px;
  }

  .link-3 {
    color: var(--blue-violet);
  }

  .form-title-wrap {
    justify-content: center;
    align-items: center;
    font-family: Generalsans, Tahoma, sans-serif;
  }

  .span-blue {
    color: var(--blue-violet);
  }

  .success {
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 0;
  }

  .paragraph-11 {
    color: var(--black);
    margin-top: 10px;
    font-size: 22px;
    line-height: 29px;
  }

  .text-span-12 {
    color: var(--blue-violet);
  }
}

@media screen and (min-width: 1920px) {
  .hero-section {
    place-items: center stretch;
  }

  .hero__title {
    margin-right: 0;
  }

  .hero__heading.is--accent {
    white-space: normal;
    justify-content: center;
    align-items: center;
    width: 50rem;
    margin-top: 60px;
    margin-left: 25rem;
    margin-right: 25rem;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: .12em;
    line-height: 1.2;
    display: block;
  }

  .hero__heading.main {
    font-size: 14vh;
  }

  .hero {
    grid-row-gap: 3vh;
    justify-content: flex-start;
    align-items: center;
    margin-top: 7%;
    margin-bottom: 3%;
  }

  .button__text {
    font-size: 1.2rem;
  }

  .about__block-paragraph {
    font-size: 1.8rem;
  }

  .gallery-section {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery__head {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }

  .intro-text {
    font-size: 2rem;
  }

  .menu-wrapper {
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    font-family: Googlesans, Tahoma, sans-serif;
    position: fixed;
    inset: 0% 0% auto;
  }

  .menu__item {
    font-size: 1.2rem;
  }

  .kicker--hero {
    font-size: 1.7rem;
  }

  .gallery__lottie {
    height: 80%;
  }

  .hero_tag-wrap {
    font-size: .6rem;
  }

  .active-wite-dott.d-1 {
    pointer-events: auto;
  }

  .hero-tag_text-2.now-booking {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.1rem;
  }

  .project_wrapper {
    background-color: #fff;
  }

  .past-projects-titleblock {
    grid-column-gap: 0%;
    grid-row-gap: 0%;
    justify-content: center;
    align-items: center;
  }

  .past-projects-titleblock.project-sub-heading {
    margin-bottom: 2rem;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .past-projects-titleblock.how-we_help-titleblock {
    flex-flow: row;
  }

  .project_image-wrapper.stvincents {
    background-color: #0000;
  }

  .heading-style-h2.custom-text {
    text-transform: none;
    margin-bottom: 0;
    margin-right: 40px;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 3.4rem;
    font-style: normal;
  }

  .padding-global-2 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .project_link.float {
    background-color: #fff;
  }

  .padding.footer {
    background-color: var(--black);
    color: var(--gainsboro);
  }

  .link-blog {
    color: var(--gainsboro);
  }

  .cta.section {
    background-color: var(--blue-violet);
    color: var(--gainsboro);
  }

  .form_field {
    padding-left: 20px;
  }

  .container-md {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: center;
    max-width: 66vw;
    font-family: Googlesans, Tahoma, sans-serif;
    display: flex;
  }

  .heading-3_big {
    font-size: 44px;
  }

  .heading-3_big.second-heading.sub-text-smaller {
    margin-top: 50px;
    font-size: 22px;
    font-style: normal;
  }

  .padding-global.padding-vertical-lg {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer_wrapper {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    color: var(--black);
  }

  .footer-logo-wrapper {
    max-width: 500px;
  }

  .heading-custom-h6 {
    color: var(--black);
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-weight: 700;
  }

  .footer-menu-wrapper {
    margin-left: 140px;
  }

  .footer-menu-list-wrapper {
    width: 100%;
    max-width: 500px;
  }

  .footer-menu-list-wrapper.footer-contact-manu-wrapper {
    max-width: none;
  }

  .heading-8 {
    font-size: 3rem;
  }

  .marquee-horizontal {
    height: 80px;
  }

  .marquee-text {
    font-size: 1.5rem;
  }

  .button-text-4 {
    color: var(--blue-violet);
    letter-spacing: 2.2px;
    font-family: Inconsolata, monospace;
    font-size: 22px;
    font-weight: 700;
  }

  .optimism-cta-2 {
    background-color: #0000;
  }

  .heading-4 {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 2.6rem;
    font-style: italic;
    font-weight: 700;
  }

  .body-display {
    color: var(--black);
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 26px;
  }

  .text-block-106 {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.5rem;
  }

  .heading-style-h1-2, .project_description-2 {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .heading-11.custom-text {
    font-family: Inconsolata, monospace;
  }

  .text-block-111, .project_tag-2, .paragraph-2, .project_heading-2 {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .padding-global-3 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .text-block-112, .text-block-113, .text-block-114, .text-block-115, .text-block-116 {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .about-us-introtext {
    margin: 10% 21%;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.9rem;
  }

  .text-span-4 {
    color: var(--blue-violet);
    font-weight: 600;
  }

  .tip-wrapper {
    height: auto;
    margin-top: 40px;
    margin-bottom: 0;
  }

  .section-tip {
    margin-bottom: 40px;
  }

  .scramble-text.text-size-xl.text-weight-light {
    margin-top: -22px;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 2rem;
    line-height: 150%;
  }

  .available-group {
    margin-top: 0;
  }

  .top-tag {
    font-size: 1.7rem;
  }

  .is--display {
    margin-top: 0;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 4em;
  }

  .container-2.is--main {
    padding-top: 2em;
  }

  .header_left.is--blue, .header_left.is--green, .header_left.is--yellow {
    padding-top: 0;
    padding-bottom: 4em;
  }

  .work_scroll-wrapper {
    padding-left: 0%;
    padding-right: 0%;
  }

  .work_card-hover {
    color: var(--white);
    background-color: #242323;
  }

  .work_project-title {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 2rem;
  }

  .container-large-2 {
    max-width: 100rem;
  }

  .work_tag-wrapper {
    background-color: var(--blue-violet);
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.7rem;
  }

  .padding-section-large {
    padding-top: 0;
  }

  .text-size-tiny {
    font-size: 1.2rem;
  }

  .text-condensed-normal.text-color-yellow500 {
    margin-right: 60px;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .container-3.is-cards {
    min-height: 100%;
    padding-top: 0;
  }

  .text-size-h2 {
    color: var(--dark-slate-grey);
    margin-top: 0;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 3.2em;
  }

  .card_text {
    font-size: 1.15em;
  }

  .card_text.heading-servicecard {
    margin-bottom: 0;
    font-size: 2.5rem;
  }

  .button-4 {
    background-color: var(--blue-violet);
  }

  .services-wrapper {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .button-38 {
    background-color: #94ee94;
  }

  .button-38.custom-cursor {
    background-color: #0000;
  }

  .section_contact {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .contact_flex {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .heading-style-h2-2.text-color-brand {
    color: var(--blue-violet);
    font-size: 4rem;
    font-weight: 700;
  }

  .text-span-5 {
    color: var(--blue-violet);
    font-weight: 700;
  }

  .buttone-text-block {
    margin: 10px;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1.4rem;
  }

  .buttone-text-block.main-text {
    font-size: 1.4rem;
  }

  .button-text-wrapper {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1em;
  }

  .work-button {
    border-width: 3px;
    border-color: var(--blue-violet);
  }

  .work-button.nav.cta {
    border-top-width: 4px;
    border-top-color: var(--blue-violet);
    border-right-width: 4px;
    border-right-color: var(--blue-violet);
    border-bottom-width: 4px;
    border-bottom-color: var(--blue-violet);
    border-left-width: 4px;
    border-left-color: var(--blue-violet);
    background-color: #0000;
  }

  .work-button.nav.cta.git {
    border-top-width: 0;
    border-top-color: var(--black);
    border-right-width: 0;
    border-right-color: var(--black);
    border-bottom-width: 0;
    border-bottom-color: var(--black);
    border-left-width: 0;
    border-left-color: var(--black);
    background-color: #ffda45;
  }

  .work-button.nav.cta.portfolio-button {
    border-width: 3px;
  }

  .work-button.main-button {
    border-width: 0;
    border-color: var(--black);
    background-color: var(--blue-violet);
    color: var(--white);
  }

  .button-divs {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    margin-top: 0;
    display: flex;
  }

  .button-46 {
    margin-top: 20px;
    padding: 2rem 2.4rem 2rem 2.5rem;
    font-size: 1.8rem;
  }

  .button-46:hover {
    color: #f9faf7;
    background-color: #0b0d01;
  }

  .learn-more {
    border-radius: 50px;
    width: 44%;
    margin-top: 0;
    padding: 22px 27px;
  }

  .menu-link.scribble-btn {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 700;
  }

  .menu-link.scribble-btn:hover {
    background-color: var(--blue-violet);
    color: var(--gainsboro);
  }

  .txt-sm {
    color: var(--gainsboro);
    text-transform: none;
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
  }

  .txt-sm:hover {
    color: var(--blue-violet);
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .txt-sm.letstalk-nav:hover {
    color: var(--blue-violet);
    font-style: italic;
  }

  .animated-svg-link {
    transform: scale(1.5);
  }

  .form-left-ctnr {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
  }

  .form-container {
    margin-left: 0%;
    padding-left: 15%;
    padding-right: 15%;
  }

  .divider {
    color: #d3ff33;
    background-color: #d3ff33;
  }

  .runningtext {
    color: var(--black);
  }

  .scroll-projects {
    background-color: #33353b;
  }

  .form-contact {
    width: 100%;
    max-width: none;
  }

  .os-footer-text {
    padding-top: 5px;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 28px;
    font-style: italic;
  }

  .os-btn-menu.back-home {
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    inset: 15% 15% auto auto;
  }

  .os-btn-text {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.1rem;
  }

  .text-block-123 {
    color: var(--gainsboro);
    font-size: 1rem;
  }

  .loading-lottie {
    width: 8vw;
    height: 10vw;
  }

  .text-block-124 {
    letter-spacing: .5px;
    margin-top: 10px;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .arrow-icon {
    text-align: left;
    -webkit-text-stroke-color: var(--blue-violet);
    color: #dcff7d;
    width: 8%;
    height: 8%;
  }

  .visit-site {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr auto;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    font-family: Googlesans, Tahoma, sans-serif;
    display: grid;
  }

  .button-wrapper {
    color: #dcff7d;
  }

  .button-background {
    color: #dcff7d;
    border-color: #dcff7d;
  }

  .button-text-5 {
    color: #dcff7d;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .button-arrow {
    color: #dcff7d;
    width: 21px;
  }

  .hero_title-4 {
    margin-top: 5%;
    font-size: 7cqw;
    font-weight: 400;
  }

  .form-block-2 {
    margin-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .contact-wrapper-2 {
    margin-top: 0%;
  }

  .contact-field-label {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 24px;
  }

  .contact-section {
    margin-top: 1%;
  }

  .contact-text-area.input-cursor {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.25rem;
  }

  .contact-paragraph.smaller {
    margin-top: 10px;
    margin-bottom: 100px;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 2rem;
  }

  .contact-paragraph.bigger {
    margin-top: 10px;
    font-size: 2rem;
  }

  .contact-form-button {
    background-color: var(--blue-violet);
    margin-top: 10px;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 20px;
  }

  .contact-form-button:hover {
    color: var(--black);
    background-color: #dcff7da1;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
  }

  .hero_title-5 {
    margin-top: 5%;
    font-family: Neokuratplakat, Georgia, sans-serif;
    font-size: 7cqw;
    font-weight: 400;
  }

  .heading-17 {
    margin-top: 55px;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .about__block-title-2 {
    font-size: 3.2rem;
  }

  .text-weight-semibold.card-text {
    font-size: 1.1em;
  }

  .top-card {
    padding-bottom: 0;
  }

  .text-block-126 {
    margin-bottom: 0%;
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 1.2em;
  }

  .text-span-11 {
    color: var(--blue-violet);
  }

  .card-text.check-list {
    font-size: .9em;
  }

  .section-5.languages {
    background-color: #0000;
  }

  .hero_title-6 {
    margin-top: 5%;
    font-size: 7cqw;
    font-weight: 400;
  }

  .grid-4 {
    margin-left: 10%;
    margin-right: 10%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .heading-18 {
    margin-bottom: 10px;
  }

  .normal {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15%;
    padding-right: 15%;
  }

  .tab-paragraph {
    color: var(--black);
    font-family: Generalsans, Tahoma, sans-serif;
    font-weight: 400;
  }

  .tab-title {
    font-family: Generalsans, Tahoma, sans-serif;
  }

  .banner-wrapper.is-orange {
    background-color: #e8e4ff;
    flex-flow: row;
  }

  .banner-wrapper.is-pink {
    background-color: #cec5ff;
    flex-flow: row;
  }

  .button-47 {
    background-color: #94ee94;
  }

  .text-block-131 {
    font-size: 1.2rem;
  }

  .navbar-link {
    width: 18%;
    font-size: 1.4rem;
  }

  .button-48 {
    background-color: #94ee94;
  }
}

@media screen and (max-width: 991px) {
  .grid-container.is--background {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 0;
  }

  .hero__title {
    font-size: 20vh;
  }

  .hero__heading.is--accent {
    height: auto;
    margin-top: 40px;
    margin-left: 10rem;
    margin-right: 10rem;
    line-height: 1;
  }

  .hero__heading.main {
    font-size: 12vh;
  }

  .button-row.is--flex {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-wrap: wrap;
  }

  .about__block-title {
    font-size: 2.5rem;
  }

  .about__meta-label {
    font-size: 7rem;
  }

  .marquee-section {
    margin-top: 5vh;
  }

  .teaser-section {
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }

  .teaser {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .footer {
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }

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

  .gallery-section {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery__head {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .gallery-wrapper.section {
    margin-top: 10vh;
    margin-bottom: 10vh;
  }

  .gallery__content {
    flex-direction: column;
  }

  .gallery__item {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    border-width: 0;
    flex-direction: column;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery__item-content {
    text-align: center;
    align-items: center;
  }

  .gallery__item-title.is--big {
    text-align: center;
  }

  .tutotrials-section.section {
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }

  .cursor-wrapper {
    display: none;
  }

  .footer__block {
    align-items: center;
  }

  .intro-section.section {
    margin-top: 15vh;
  }

  .intro-text {
    font-size: 2rem;
  }

  .menu-wrapper, .hero__deco.is--right, .hero__deco.is--left {
    display: none;
  }

  .kicker--hero {
    text-align: center;
    margin-left: 60px;
    margin-right: 60px;
    font-size: 1.2rem;
  }

  .gallery__lottie {
    height: 11rem;
  }

  .teaser__deco.is--right-top, .teaser__deco.is--right-bottom, .teaser__deco.is-left-bottom, .teaser__deco.is--left-top {
    display: none;
  }

  .sub-text-section {
    margin-top: 5vh;
  }

  .deco-wrapper {
    display: none;
  }

  .gallery__features {
    padding-top: 5vh;
  }

  .gallery__feature-item {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .gallery__feature-title {
    font-size: 2rem;
  }

  .spline-ui-01, .spline-ui-02, .spline-ui-03, .spline-ui-04 {
    max-width: 100vw;
  }

  .desktop-hint {
    z-index: 1005;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: var(--white);
    text-align: center;
    background-color: #000c;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 60ch;
    margin: auto;
    padding: 1rem;
    font-size: 1rem;
    display: flex;
    position: fixed;
    inset: auto 0% 4rem;
  }

  .hero-tag_text-2.now-booking {
    font-size: .9rem;
  }

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

  .project_wrapper {
    grid-template-rows: auto auto 100%;
    place-content: stretch;
    align-items: stretch;
  }

  .past-projects-titleblock {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .project_cta-new-webstie {
    height: 20rem;
  }

  .project_image-wrapper {
    border-top-left-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .project_image-wrapper.stvincents {
    background-color: #0000;
  }

  .project_image-wrapper.drivereach {
    background-color: #59b38e;
  }

  .project_image-wrapper.torontogaa {
    background-color: #e3e8ef;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .project_grid {
    grid-template-columns: 1fr;
    align-content: stretch;
    place-items: stretch stretch;
  }

  .project_content-wrapper {
    grid-row-gap: 2rem;
    border-radius: 0 0 10px 10px;
    height: auto;
    position: static;
  }

  .icon-embed-xlarge.absolute {
    position: absolute;
  }

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

  .grid-global {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .padding.footer {
    padding: 2em;
  }

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

  .nav-button {
    border-style: none;
  }

  .heading-3_big.second-heading.sub-text-smaller {
    margin-bottom: 0;
  }

  .padding-global.padding-vertical-lg, .padding-global.padding-vertical-rg {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .footer-logo-wrapper {
    max-width: none;
  }

  .heading-custom-h6 {
    flex-flow: wrap;
    display: flex;
  }

  .footer-menu-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: space-between;
  }

  .image-full-black {
    width: 100%;
    height: 100%;
  }

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

  .marquee-horizontal {
    height: 56px;
  }

  .marquee-text {
    font-size: 1rem;
  }

  .text-block-105 {
    font-size: 1.5rem;
  }

  .button-text-4 {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 14px;
    transform: rotate(-15deg);
  }

  .optimism-cta-2 {
    background-color: #0000;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .action-content {
    text-align: center;
    border-left-style: none;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 0;
  }

  .heading-4 {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .body-display {
    color: #484b50;
    width: auto;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .stacked-content {
    padding-left: 48px;
    padding-right: 48px;
  }

  .large-circle-link {
    width: 180px;
    height: 180px;
    position: relative;
    left: 0;
  }

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

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

  .portfolio {
    margin-top: 10%;
  }

  .padding-section-medium-2 {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .about-us-introtext {
    margin-left: 16%;
    margin-right: 16%;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.1rem;
  }

  .tip-wrapper {
    margin-top: 0;
  }

  .blending-group-wrapper {
    margin-left: -4em;
  }

  .ultra-gradient-wrapper-2 {
    font-size: 1.3vh;
  }

  .green-dot {
    width: 1.6vw;
    height: 1.6vw;
  }

  .shape-3 {
    width: 44em;
    height: 57em;
    position: absolute;
    inset: 23.2em -9.5em 0 auto;
  }

  .scramble-text {
    font-size: 2rem;
  }

  .top-tag {
    font-size: 1.2rem;
  }

  .shape-4 {
    top: 22em;
  }

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

  .is--display {
    width: 100%;
  }

  .container-2 {
    padding-left: 5vw;
    padding-right: 5vw;
  }

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

  .work_card-hover {
    padding: 1.25rem;
  }

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

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }

  .home-services_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-right: 0;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .text-size-h2 {
    margin-top: 0;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 3em;
  }

  .card_text {
    font-size: .9em;
  }

  .card_text.heading-servicecard {
    font-size: 1.7em;
    line-height: 1.1;
  }

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

  .button-38 {
    border-width: 4px;
    padding-top: .75em;
    padding-bottom: .75em;
    padding-right: .4em;
    font-size: 1.3em;
  }

  .button-38.custom-cursor {
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: .4em;
  }

  .button_text-2 {
    margin-top: .5em;
    font-size: 1em;
  }

  .container-large-fh {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
  }

  .form_input {
    padding-top: 1rem;
    font-size: 1.25rem;
  }

  .form_input::placeholder, .form_submit {
    font-size: 1.25rem;
  }

  .contact_separator {
    width: 100%;
    height: 1px;
  }

  .heading-style-h2-2 {
    font-size: 3.5rem;
    line-height: 2.8rem;
  }

  .buttone-text-block {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: .75em;
  }

  .button-divs {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .div-block-6 {
    justify-content: center;
    align-items: center;
    margin-top: -12px;
    display: flex;
  }

  .learn-more {
    border-radius: 50px;
    padding: 17px 0;
    font-size: .77em;
    line-height: 17px;
  }

  .menu-link.scribble-btn {
    position: relative;
  }

  .txt-sm {
    font-size: 18px;
    line-height: 22px;
  }

  .looping_image {
    width: 1em;
    height: 1em;
  }

  .form-cta {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .looping_text {
    font-size: .7em;
  }

  .looping_container {
    border-top-width: 4px;
    border-bottom-width: 4px;
    padding-top: 1em;
    padding-bottom: 2em;
    font-size: 1.5em;
    position: absolute;
  }

  .splash-container {
    bottom: -18%;
  }

  .sucessicon {
    margin-bottom: 16px;
  }

  .form-fields {
    grid-row-gap: 32px;
  }

  .btn-primary:hover {
    transform: none;
  }

  .formcombo {
    grid-column-gap: 0px;
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .sucessinfo {
    grid-row-gap: 24px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .form-container {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .h2-big {
    width: 70%;
    max-width: none;
  }

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

  .divider {
    width: 8px;
    height: 8px;
    margin-top: 8px;
  }

  .middle-strip {
    font-size: 24px;
  }

  .runningtext {
    font-size: 12vw;
  }

  .scroll-projects {
    padding-top: 140px;
    padding-bottom: 96px;
  }

  .block-misc.vertical {
    display: none;
  }

  .h2-big-2 {
    width: 70%;
    max-width: none;
  }

  .sucessinfo-2 {
    grid-row-gap: 24px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .btn-primary-2:hover {
    transform: none;
  }

  .os-btn-menu.back-home {
    display: block;
    top: 5%;
    right: 5%;
  }

  .os-btn-text {
    font-size: .9rem;
  }

  .text-block-123 {
    color: var(--gainsboro);
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: .9rem;
  }

  .contact-left {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0%;
  }

  .hero_title-4 {
    margin-top: 4%;
    font-size: 11cqw;
  }

  .form-block-2 {
    margin-top: 5%;
  }

  .contact-wrapper-2 {
    flex-direction: column;
    margin-bottom: 0%;
    margin-right: 0%;
  }

  .contact-field-label {
    margin-bottom: 10px;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 18px;
  }

  .heading-16 {
    font-size: 3rem;
  }

  .contact-section {
    margin-top: 10%;
    padding-top: 10px;
    padding-bottom: 60px;
    padding-right: 5vw;
  }

  .div-block-7 {
    justify-content: center;
    align-items: center;
  }

  .contact-paragraph.smaller {
    margin-top: 20px;
    margin-bottom: 60px;
    padding-left: 10%;
    padding-right: 10%;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    line-height: 1.3;
  }

  .contact-paragraph.bigger {
    margin-top: 0;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 10%;
    padding-right: 10%;
    font-size: 1.2rem;
  }

  .contact-form-button:hover {
    font-size: 14px;
  }

  .contact-text-field.input-cursor {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .contact-left-2 {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 0;
    margin-right: 0%;
  }

  .hero_title-5 {
    color: var(--black);
    margin-top: 5%;
    padding-left: 5%;
    padding-right: 5%;
    font-family: Neokuratplakat, Georgia, sans-serif;
    font-size: 11cqw;
  }

  .heading-17 {
    font-size: 3rem;
  }

  .div-block-8 {
    justify-content: center;
    align-items: center;
  }

  .about__block-title-2 {
    font-size: 2.5rem;
  }

  .about__meta-label-2 {
    font-size: 7rem;
  }

  .text-block-126 {
    margin-top: 5px;
    font-size: .8em;
    font-style: normal;
  }

  .stars-3 {
    width: 11em;
    top: 4%;
    bottom: auto;
    right: 9%;
  }

  .ur-so-cute {
    top: 13%;
    left: 59%;
  }

  .about {
    border-top-width: 4px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .grid_item.about_text_container {
    text-align: left;
    width: 100%;
    max-width: 64ch;
    margin-top: 64px;
    padding: 0 0;
  }

  .grid_item.about_picture {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .container-4 {
    max-width: 56em;
  }

  .about_animation {
    align-self: center;
    width: 45%;
  }

  .isnt-she-cute {
    width: 19em;
    inset: 36% 5% auto auto;
    transform: rotate(-30deg);
  }

  .stars-2 {
    width: 10em;
    top: 36%;
    left: 9%;
  }

  .pixelated-image-card {
    margin-right: 15%;
  }

  .contact-left-3 {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0%;
  }

  .contact-left-3.container {
    margin-bottom: 10px;
  }

  .hero_title-6 {
    margin-top: 4%;
    font-size: 11cqw;
  }

  .div-block-9.custom-text {
    padding-top: 20px;
  }

  .grid-4 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: left;
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-items: center;
    padding-right: 0%;
    display: grid;
  }

  .heading-18 {
    font-size: 2.2rem;
  }

  .div-block-10 {
    display: block;
  }

  .heading-style-h2-7.skills-header.background-header.custom-text {
    text-align: left;
    margin-top: 10px;
    padding-top: 20px;
  }

  .about-section-2 {
    margin-top: 20px;
  }

  .pixelated-image-card__pixels {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  .pixelated-image-card__pixels.custom-cursor {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    right: 0%;
  }

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

  .stacked-tabs-container {
    width: 100%;
    min-width: 100%;
  }

  .stacked-tabs-content-holder {
    justify-content: flex-start;
  }

  .center-text {
    margin-bottom: 0%;
  }

  .stacked-tabs-pane-holder {
    width: 80%;
  }

  .stacked-tabs-holder {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .grid-8-col {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .banner-wrapper.is-orange, .banner-wrapper.is-pink {
    flex-flow: row;
  }

  .button-47 {
    border-width: 4px;
    padding-top: .75em;
    padding-bottom: .75em;
    padding-right: .4em;
    font-size: 1.3em;
  }

  .button-47.custom-cursor {
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: .4em;
  }

  .button_text-3 {
    margin-top: .5em;
    font-size: 1em;
  }

  .navbar-link {
    width: 33%;
    font-size: 1rem;
  }

  .button-48 {
    border-width: 4px;
    padding-top: .75em;
    padding-bottom: .75em;
    padding-right: .4em;
    font-size: 1.3em;
  }
}

@media screen and (max-width: 767px) {
  .grid-container {
    grid-row-gap: 4rem;
  }

  .grid-container.is--background {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .hero__title {
    margin-top: 20px;
  }

  .hero__heading.is--accent {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .hero__heading.main {
    font-size: 10vh;
  }

  .button-row.is--flex {
    grid-row-gap: 2rem;
    flex-wrap: wrap;
    max-width: 80vw;
  }

  .about__block {
    grid-row-gap: 1rem;
  }

  .about__block-head {
    grid-row-gap: .25rem;
  }

  .teaser {
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    padding: 6rem 2rem;
  }

  .text-accent {
    text-align: center;
    max-width: 70vw;
    line-height: 1.25;
  }

  .footer__meta {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    display: flex;
  }

  .gallery-section {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery__item {
    max-width: 100vw;
    min-height: auto;
    padding-bottom: 8rem;
  }

  .gallery__embed {
    width: 100%;
    margin-left: -50%;
  }

  .gallery__item-content {
    width: 100%;
  }

  .footer__block {
    align-items: center;
  }

  .intro-section.section {
    grid-row-gap: 2rem;
  }

  .menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .menu__item {
    padding: 8px;
  }

  .menu__logo {
    margin-right: 0;
  }

  .hero__sub {
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__sub.is--left-aligned {
    margin-top: 2rem;
  }

  .gallery__lottie {
    width: 180px;
  }

  .gallery__feature-title {
    font-size: 1.25rem;
  }

  .spline-ui-01 {
    margin-left: 5%;
  }

  .spline-ui-02 {
    margin-left: 15%;
  }

  .spline-ui-03 {
    margin-left: 20%;
  }

  .spline-ui-04 {
    margin-left: 5%;
  }

  .hero-tag_text, .hero-tag_text-2 {
    font-size: 14px;
  }

  .hero-tag_text-2.now-booking {
    font-size: .9rem;
  }

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

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .project_cta-new-webstie {
    height: 22rem;
  }

  .heading-style-h2.custom-text {
    margin-left: 20px;
    margin-right: 10px;
  }

  .padding-section-medium {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .grid-global {
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    display: flex;
  }

  .section {
    padding: 2em;
  }

  .cta.section {
    padding-left: 1em;
    padding-right: 1em;
  }

  .nav-button_icon {
    width: 20px;
  }

  .contact_wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    padding: 40px;
  }

  .contact_review-wrap {
    padding: 32px;
  }

  .review_text {
    padding-right: 0;
  }

  .submit-button {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .form {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .padding-global.padding-vertical-rg.footer-top {
    padding-bottom: 20px;
  }

  .contact_left {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .form_field-wrap {
    flex-flow: column;
  }

  .footer-menu-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: wrap;
    justify-content: space-between;
  }

  .social_icon-overlay {
    width: 100%;
    height: 100%;
  }

  .footer-content-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .footer-menu-list-wrapper.footer-contact-manu-wrapper {
    max-width: 90%;
  }

  .marquee-horizontal {
    height: 57px;
  }

  .marquee-text {
    font-size: 1rem;
  }

  .button-text-4 {
    transform: rotate(-9deg);
  }

  .optimism-cta-2 {
    background-color: #0000;
  }

  .action-content {
    grid-row-gap: 33px;
  }

  .heading-4 {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 2rem;
  }

  .body-display {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 19px;
    line-height: 1.4em;
  }

  .stacked-content {
    padding-left: 36px;
    padding-right: 36px;
  }

  .large-circle-link {
    width: 160px;
    height: 160px;
  }

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

  .portfolio {
    margin-top: 15%;
  }

  .padding-section-medium-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .about-us-introtext {
    margin-top: 12%;
    margin-left: 15%;
    margin-right: 15%;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .text-span-4 {
    color: var(--blue-violet);
    font-weight: 700;
  }

  .text-wrapper {
    font-family: Inconsolata, monospace;
  }

  .tip-wrapper {
    width: 100%;
    margin-top: 0;
  }

  .title1 {
    font-size: 5em;
  }

  .blending-group-wrapper {
    filter: blur(80px);
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-tip {
    justify-content: center;
    align-items: center;
  }

  .shape-3 {
    width: 30em;
    height: 100em;
  }

  .main-shapes-wrapper {
    filter: blur(80px);
  }

  .scramble-text {
    font-size: 1.5rem;
  }

  .scramble-text.text-size-xl.text-weight-light {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1.4rem;
  }

  .top-tag {
    font-size: 3.3vw;
  }

  .header_left {
    padding: 1vw 3vw;
  }

  .header_left-contain {
    width: 100%;
    font-size: .8em;
  }

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

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

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .text-condensed-normal.text-color-yellow500 {
    font-size: 1.3rem;
  }

  .home-services_card {
    opacity: 1;
  }

  .home-services_component {
    grid-template-columns: 1fr;
    padding-bottom: 4rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .home-services_list {
    display: none;
  }

  .home-services_content {
    grid-column-gap: 3.5rem;
    grid-row-gap: 3.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .card {
    min-height: 21em;
    padding: 1em 2em;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .grid {
    grid-template-columns: 100%;
  }

  .button-38 {
    font-size: 16px;
  }

  .button-38.custom-cursor {
    z-index: 10;
    position: relative;
  }

  .contact_separator {
    width: 100%;
    height: 1px;
  }

  .heading-style-h2-2 {
    font-size: 2.75rem;
    line-height: 2.2rem;
  }

  .button-39 {
    align-self: auto;
  }

  .button-39.nav {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    background-color: #0f1c12;
    border-width: 1px;
    border-color: #0f1c12;
    padding-left: .5em;
  }

  .work-button {
    border-width: 2.6px;
    align-self: auto;
  }

  .work-button.nav {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    background-color: #0f1c12;
    border-width: 1px;
    border-color: #0f1c12;
    padding-left: .5em;
  }

  .button-divs {
    grid-column-gap: 1.4rem;
    grid-row-gap: 1.4rem;
  }

  .button-46 {
    padding: 1rem 1.5rem;
  }

  .learn-more {
    width: 44%;
  }

  .menu-link.scribble-btn {
    position: relative;
  }

  .animated-svg-link {
    width: 60px;
    height: 60px;
    bottom: -20px;
  }

  .looping_container {
    border-top-width: 4px;
    border-bottom-width: 4px;
  }

  .splash-container {
    width: 640px;
    height: 640px;
    bottom: 2%;
  }

  .splash-container.white {
    width: 720px;
    height: 720px;
  }

  .cta-motto {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 540px;
    margin-top: 0;
  }

  .form-fields {
    grid-row-gap: 24px;
  }

  .field {
    background-color: #3c39ec14;
    padding-left: 8px;
    font-size: 14px;
  }

  .field.msg {
    height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .btn-primary {
    font-size: 18px;
    line-height: 100%;
  }

  .formcombo {
    grid-row-gap: 8px;
  }

  .select-field {
    height: 48px;
    font-size: 12px;
  }

  .sucessinfo {
    grid-row-gap: 16px;
    padding: 24px;
    font-size: 24px;
  }

  .form-container {
    grid-column-gap: 0px;
    grid-row-gap: 24px;
  }

  .label {
    font-size: 14px;
  }

  .paragraph-3.small {
    font-size: 10px;
    line-height: 100%;
  }

  .h2-big {
    width: 90%;
    font-size: 48px;
  }

  .middle-strip {
    width: 80%;
    padding: 16px 24px;
  }

  .scroll-projects {
    padding-top: 120px;
    padding-bottom: 32px;
  }

  .block-misc.vertical {
    width: 200px;
    height: 420px;
  }

  .block-misc.horizontal {
    width: 540px;
    height: 220px;
    top: 34%;
    right: -8%;
  }

  .h2-big-2 {
    width: 90%;
    font-size: 48px;
  }

  .il_text {
    font-size: 24px;
  }

  .label-2 {
    font-size: 14px;
  }

  .infinitecontainer {
    height: 71px;
    top: -48px;
  }

  .field-2 {
    background-color: #3c39ec14;
    padding-left: 8px;
    font-size: 14px;
  }

  .field-2.msg {
    height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .sucessinfo-2 {
    grid-row-gap: 16px;
    padding: 24px;
    font-size: 24px;
  }

  .select-field-2 {
    height: 48px;
    font-size: 12px;
  }

  .btn-primary-2 {
    font-size: 18px;
    line-height: 100%;
  }

  .text-field-2020 {
    font-size: 14px;
  }

  .content {
    flex-direction: column;
    display: block;
  }

  .section-4 {
    padding-top: 32px;
    display: block;
  }

  .submit-button-2020 {
    font-size: 14px;
  }

  .hero_title-4 {
    margin-top: 6%;
    font-size: 16cqw;
  }

  .form-block-2 {
    padding-left: 3%;
    padding-right: 3%;
  }

  .contact-wrapper-2 {
    margin-top: 0%;
  }

  .contact-field-label {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 18px;
  }

  .heading-16 {
    font-size: 2.4rem;
  }

  .contact-text-area.input-cursor {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .contact-paragraph.smaller {
    margin-top: 0;
    padding-left: 2%;
    padding-right: 2%;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .contact-paragraph.bigger {
    margin-top: 20px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .contact-form-button {
    background-color: #3956f9;
  }

  .contact-text-field.input-cursor {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .hero_title-5 {
    color: var(--black);
    margin-top: 6%;
    padding-left: 5%;
    padding-right: 5%;
    font-family: Neokuratplakat, Georgia, sans-serif;
    font-size: 11cqw;
    line-height: 62px;
  }

  .heading-17 {
    font-size: 2.4rem;
  }

  .section-5 {
    padding: 2em;
  }

  .stars-3 {
    width: 9em;
    right: 5%;
  }

  .container-4 {
    max-width: 42em;
  }

  .isnt-she-cute {
    width: 15em;
    top: 30%;
  }

  .stars-2 {
    width: 9em;
  }

  .hero_title-6 {
    margin-top: 6%;
    font-size: 16cqw;
  }

  .div-block-10 {
    width: 100%;
    display: block;
  }

  .heading-style-h2-7.skills-header.background-header.custom-text {
    text-align: left;
    padding-top: 20px;
  }

  .browser {
    font-size: .7rem;
  }

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

  .tab-link {
    padding-right: 24px;
  }

  .grid-8-col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .tab-title {
    font-size: 1.1rem;
  }

  .heading-style-h2-10.custom-text {
    font-size: 2.6rem;
    line-height: 55px;
  }

  .heading-23.custom-text {
    font-size: 1.4rem;
  }

  .banner-wrapper.is-orange, .banner-wrapper.is-pink {
    flex-flow: row;
  }

  .button-47 {
    font-size: 16px;
  }

  .button-47.custom-cursor {
    z-index: 10;
    position: relative;
  }

  .button-48 {
    font-size: 16px;
  }

  .form-section-title-5 {
    font-size: 27px;
    line-height: 35px;
  }

  .paragraph-11 {
    line-height: 29px;
  }
}

@media screen and (max-width: 479px) {
  .grid-container {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .hero-section {
    flex-direction: column;
    min-height: auto;
    margin-top: 4vh;
    display: flex;
  }

  .text-heading {
    line-height: .8;
  }

  .container {
    width: 100%;
  }

  .hero__title {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .hero__heading {
    font-size: 10vh;
  }

  .hero__heading.is--accent {
    margin-top: 20px;
    margin-left: 40px;
    margin-right: 40px;
    font-size: 1.4rem;
  }

  .hero__heading.main {
    font-size: 7vh;
  }

  .hero {
    grid-row-gap: 4vh;
    justify-content: flex-start;
    align-items: center;
    margin-top: 62px;
    margin-bottom: 0;
    font-size: .7rem;
  }

  .button {
    text-align: center;
    flex: 0 auto;
    justify-content: center;
    width: 47%;
    padding-left: .125rem;
    padding-right: .125rem;
  }

  .button-row.is--flex {
    grid-row-gap: 1rem;
  }

  .about-section {
    max-width: 90vw;
    margin-bottom: 5vh;
    margin-left: auto;
    margin-right: auto;
  }

  .about__block, .about__block-head, .about__block-paragraph {
    width: 100%;
  }

  .marquee-section {
    margin-top: 5vh;
    margin-bottom: 10vh;
  }

  .marquee__text {
    font-size: 120px;
  }

  .teaser {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .gallery-section {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .gallery__head {
    width: 100%;
  }

  .section-title {
    line-height: .2;
  }

  .gallery__embed {
    margin-left: -160%;
  }

  .intro-section.section {
    flex-direction: column;
    margin-top: 3vh;
    margin-left: 2rem;
    margin-right: 2rem;
    display: flex;
  }

  .intro-text {
    width: 100%;
    font-size: 1.5rem;
  }

  .intro-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    margin-top: 0;
    margin-left: 30px;
    margin-right: 30px;
    padding-left: 0;
    padding-right: 40px;
    display: grid;
  }

  .menu {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 16px;
    padding-right: 16px;
  }

  .menu__item {
    width: 100%;
    padding: 4px 4px 4px 8px;
  }

  .hero__sub {
    text-align: left;
    justify-content: flex-start;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    display: none;
  }

  .hero__sub.is--left-aligned {
    justify-content: flex-start;
  }

  .kicker--hero {
    margin-left: 20px;
    margin-right: 40px;
    font-size: 1rem;
  }

  .gallery__lottie {
    width: 150px;
    height: 177px;
    margin-left: -30px;
    margin-right: 10px;
  }

  .sub-text-section.is--no-margin-top {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    place-items: center;
    max-width: 100vw;
  }

  .deco-link, .menu__divider {
    display: none;
  }

  .gallery__feature-title {
    margin-left: 20px;
    margin-right: 20px;
  }

  .body-2 {
    overflow: hidden;
  }

  .active-dotted-wrap {
    justify-content: center;
    align-items: center;
    width: 14px;
    min-width: 14px;
    height: 14px;
    min-height: 14px;
  }

  .active-wite-dott.d-1 {
    width: 9px;
    height: 9px;
  }

  .cercle {
    width: 14px;
    min-width: 14px;
    height: 14px;
    min-height: 14px;
  }

  .hero-tag_text {
    font-size: 12px;
  }

  .active-dotted-wrap-2 {
    justify-content: center;
    align-items: center;
    width: 14px;
    min-width: 14px;
    height: 14px;
    min-height: 14px;
  }

  .hero-tag_text-2 {
    font-size: 12px;
  }

  .hero-tag_text-2.now-booking {
    font-size: .9rem;
  }

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

  .project_description {
    max-width: 100%;
    font-size: .875rem;
  }

  .heading-7.custom-text {
    font-size: 1.3rem;
  }

  .past-projects-titleblock {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-left: 20px;
    margin-right: 0;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .past-projects-titleblock.how-we_help-titleblock {
    flex-flow: column;
    margin-left: 0;
  }

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .project_cta-new-webstie {
    height: 25rem;
  }

  .project_tag-group {
    grid-row-gap: .625rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .project_image-wrapper.stvincents {
    background-color: #0000;
  }

  .project_date-and-link {
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .paragraph {
    max-width: 100%;
  }

  .project_heading {
    font-size: 1.5rem;
  }

  .portfolio-section {
    max-width: 100%;
  }

  .heading-style-h2.custom-text {
    text-align: left;
    margin-bottom: 0;
    margin-right: 0;
    font-size: 3rem;
    line-height: 52px;
  }

  .padding-global-2 {
    padding-top: 10%;
  }

  .padding-section-medium {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .heading-medium {
    font-size: 3em;
  }

  .tag {
    font-size: .75em;
  }

  .section {
    padding-left: 1em;
    padding-right: 1em;
  }

  .color-gray {
    font-size: 14px;
  }

  .text-lg {
    font-size: 16px;
  }

  .contact_wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border-radius: 20px;
    padding: 32px 16px;
  }

  .contact_review-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding: 20px 16px;
  }

  .author-image {
    width: 42px;
    height: 42px;
  }

  .submit-button {
    padding-right: 16px;
    font-size: 14px;
  }

  .google-img._02 {
    width: 20px;
    height: 20px;
  }

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

  .form {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .form_button-wrap {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contact_heading-wrap {
    padding-right: 0;
  }

  .heading-3_big {
    font-size: 28px;
  }

  .padding-global.padding-vertical-lg {
    padding: 48px 16px;
  }

  .padding-global.padding-vertical-rg {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .padding-global.padding-vertical-rg.footer-top {
    padding-top: 10px;
  }

  .contact_left {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .text-xxlg {
    font-size: 18px;
  }

  .form_field-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .margin-y-medium._02 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .footer_link {
    font-size: 14px;
  }

  .bottom-margin-big._02 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .section-footer.bg-color-white {
    margin-top: 20px;
  }

  .footer_wrapper {
    color: var(--black);
    text-align: center;
  }

  .footer-logo-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    display: flex;
  }

  .heading-custom-h6.capital {
    justify-content: center;
    align-items: center;
    font-size: 16px;
  }

  .footer-bottom {
    padding-bottom: 24px;
  }

  .footer-menu-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 25px;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .footer-content-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: wrap;
  }

  .footer-menu-list-wrapper.footer-contact-manu-wrapper {
    max-width: 100%;
  }

  .heading-8 {
    margin-bottom: 2px;
    font-size: 2.3rem;
  }

  .marquee-horizontal {
    height: 44px;
    margin-top: 10%;
    font-size: 1.2rem;
  }

  .track-horizontal-alt {
    font-size: 1.2rem;
  }

  .marquee-text {
    font-family: Inconsolata, monospace;
    font-size: .98rem;
  }

  .heading-9 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .button-text-4 {
    font-family: Googlesans, Tahoma, sans-serif;
    transform: rotate(-9deg);
  }

  .optimism-cta-2 {
    background-color: #0000;
    padding-bottom: 20px;
  }

  .action-content {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .heading-4 {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .body-display {
    color: var(--black);
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .stacked-content {
    grid-row-gap: 36px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .sub-heading-services {
    margin-left: 40px;
    margin-right: 40px;
  }

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

  .project_description-2 {
    max-width: 100%;
    font-size: .875rem;
  }

  .heading-11.custom-text {
    font-size: 1.3rem;
  }

  .project_date-and-link-2 {
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio {
    margin-top: 15%;
  }

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

  .project_heading-2 {
    font-size: 1.5rem;
  }

  .padding-global-3 {
    padding-top: 10%;
  }

  .padding-section-medium-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .about-us-introtext {
    text-align: center;
    margin: 15% 12% 10%;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1.1rem;
  }

  .text-span-4 {
    color: var(--blue-violet);
    font-weight: 700;
  }

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

  .tip-wrapper {
    margin-top: 0;
  }

  .page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .green-dot {
    width: 3vw;
    height: 3vw;
  }

  .scramble-text {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .scramble-text.text-size-xl.text-weight-light {
    margin-bottom: 20px;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1.2rem;
    line-height: 111%;
  }

  .dot-wrapper {
    transform: scale(1.4);
  }

  .available-group {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    font-size: 18px;
  }

  .top-tag {
    max-width: 70vw;
    margin-top: 0;
    margin-bottom: 4vw;
    font-size: 1.2rem;
  }

  .shape-4 {
    top: 30.7em;
  }

  .header_left {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .work_scroll-wrapper {
    overflow: scroll;
  }

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

  .work_card-hover {
    background-color: var(--black);
    border-radius: 8px;
    padding: 1rem;
  }

  .work_card-content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .work_card-glow-background._4 {
    top: 200px;
  }

  .work_card-glow-background._3 {
    top: 140px;
  }

  .work_card-glow-background._2 {
    top: 80px;
  }

  .work_project-title {
    color: var(--white);
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .work_card-border_glow {
    border-radius: 8px;
  }

  .work_card-border_glow.float {
    width: 300px;
  }

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

  .button-3.is-icon.is-small {
    margin-top: 40px;
  }

  .padding-section-large {
    padding-top: 0;
  }

  .work_grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-flow: column;
    width: 400%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .work_thumbnail-img-wrapper {
    border-radius: 6px;
  }

  .text-condensed-normal.text-color-yellow500 {
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1rem;
  }

  .home-services_component {
    grid-template-columns: 1fr;
  }

  .container-3 {
    padding-left: .8em;
    padding-right: .8em;
  }

  .container-3.is-cards {
    padding-top: 1em;
    padding-bottom: 0;
  }

  .text-size-h2 {
    width: 100%;
    margin-left: 20px;
    margin-right: 0;
    font-size: 1.7em;
    position: static;
  }

  .card_content {
    padding-top: 2em;
  }

  .card {
    min-height: auto;
    padding: 1.45em;
  }

  .card.is-purple {
    min-height: 21em;
  }

  .card.is-purple.mid, .card.is-pink.sm {
    min-height: auto;
  }

  .card_text {
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-size: .9em;
  }

  .card_text.heading-servicecard {
    margin-bottom: .125em;
    font-size: 1.5em;
    line-height: 1.1;
  }

  .card_heading {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.3em;
    font-weight: 600;
  }

  .grid {
    grid-column-gap: .8em;
    grid-row-gap: .8em;
    padding-top: 0;
  }

  .button-38.custom-cursor {
    z-index: 20;
    margin-top: 0;
    margin-bottom: 55px;
    position: relative;
  }

  .button_text-2 {
    margin-bottom: .5em;
    padding-left: 10px;
    padding-right: 10px;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
  }

  .buttone-text-block {
    color: var(--black);
    padding: 10px;
    font-size: 1.1em;
    line-height: .9em;
  }

  .buttone-text-block.main-text {
    color: var(--gainsboro);
    padding: 10px;
    font-size: 1.2em;
    line-height: 100%;
  }

  .button-text-wrapper {
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: .8rem;
  }

  .work-button {
    color: var(--black);
    padding-top: 1em;
    padding-bottom: 1em;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .work-button.main-button {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .button-divs {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem;
  }

  .text-span-6 {
    color: var(--blue-violet);
    font-weight: 700;
  }

  .div-block-6 {
    flex-flow: row;
  }

  .button-46 {
    font-size: .9rem;
  }

  .button-item---brix {
    margin: 12px 0;
  }

  .learn-more {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .heading-14.custom-text {
    font-size: 1.3rem;
  }

  .menu-link.scribble-btn {
    display: none;
  }

  .looping_text {
    font-size: .6em;
  }

  .looping_container {
    padding-top: .8em;
    padding-bottom: 1.8em;
    font-size: 2em;
  }

  .field {
    height: 40px;
  }

  .select-field {
    height: 40px;
    font-size: 14px;
  }

  .field-2 {
    height: 40px;
  }

  .select-field-2 {
    height: 40px;
    font-size: 14px;
  }

  .email-input-combo {
    flex-direction: column;
  }

  .section-4 {
    border-width: 8px;
  }

  .os-footer-text {
    font-size: 19px;
  }

  .os-btn-menu {
    padding: 14px 26px;
    font-size: 10px;
  }

  .os-btn-menu.back-home {
    margin-top: 20px;
  }

  .os-footer-menu {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    text-align: left;
    flex-flow: wrap;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .os-footer-text-btm {
    font-size: .9rem;
  }

  .os-btn-text {
    padding-top: 2px;
    font-size: .9rem;
  }

  .showcase-footer {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .loading-lottie {
    width: 30vw;
    height: 30vw;
  }

  .button-text-5 {
    font-size: .8rem;
  }

  .contact-left {
    margin-top: 60px;
  }

  .hero_title-4 {
    text-align: left;
    margin-top: 10%;
    font-size: 19cqw;
  }

  .form-block-2 {
    text-align: left;
    padding-left: 10%;
    padding-right: 4%;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .contact-wrapper-2 {
    margin-top: 0%;
    margin-bottom: 0%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .contact-name-wrapper {
    margin-bottom: 20px;
  }

  .contact-field-label {
    margin-bottom: 10px;
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .heading-16 {
    text-align: left;
    font-size: 1.5rem;
  }

  .contact-section {
    margin-top: 0;
    padding-top: 20px;
  }

  .contact-text-area.input-cursor {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .contact-paragraph {
    width: auto;
  }

  .contact-paragraph.smaller {
    text-align: center;
    margin-top: 20px;
    padding-left: 2%;
    padding-right: 2%;
    font-family: "Googlesans 17 Pt", Tahoma, sans-serif;
    font-size: 1.1rem;
  }

  .contact-paragraph.bigger {
    margin-top: 20px;
  }

  .contact-form-button {
    background-color: #242425;
    font-size: 14px;
  }

  .contact-form-button:hover {
    font-size: 14px;
  }

  .contact-top-wrapper {
    flex-direction: column;
  }

  .contact-text-field.input-cursor {
    font-family: Googlesans, Tahoma, sans-serif;
  }

  .contact-left-2 {
    margin-top: 25%;
  }

  .hero_title-5 {
    color: var(--black);
    text-align: center;
    margin-top: 0%;
    font-family: Neokuratplakat, Georgia, sans-serif;
    font-size: 19cqw;
    line-height: 52px;
  }

  .heading-17 {
    text-align: left;
    padding-right: 20px;
    font-family: Googlesans, Tahoma, sans-serif;
    font-size: 1.5rem;
    line-height: 32px;
  }

  .div-block-8 {
    margin-left: 10%;
    margin-right: 10%;
  }

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

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

  .text-block-126 {
    padding-left: 0;
    font-family: Inconsolata, monospace;
    font-size: .8em;
  }

  .text-span-11 {
    color: var(--blue-violet);
  }

  .card-text.check-list {
    font-size: .8em;
  }

  .section-5 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .stars-3 {
    width: 7em;
    right: 6%;
  }

  .grid_item {
    width: 100%;
  }

  .grid_item.about_text_container {
    padding-left: 0;
    padding-right: 0;
  }

  .grid_item.about_picture:hover {
    transform: rotate(-8deg);
  }

  .container-4 {
    max-width: 45em;
  }

  .about_animation {
    width: 60%;
    max-width: 45em;
  }

  .isnt-she-cute {
    display: none;
  }

  .stars-2 {
    width: 9.1em;
    left: 4%;
  }

  .contact-left-3 {
    margin-top: 60px;
  }

  .hero_title-6 {
    text-align: left;
    margin-top: 10%;
    font-size: 19cqw;
  }

  .hero_title-6.custom-text {
    text-align: center;
    font-size: 18cqw;
  }

  .grid-4 {
    grid-template-rows: auto;
    padding-right: 0%;
  }

  .heading-18.custom-text {
    justify-content: center;
    align-items: flex-end;
    font-size: 1.6rem;
  }

  .normal.custom-text {
    text-align: left;
  }

  .heading-style-h2-7.skills-header.background-header.custom-text {
    text-align: left;
    padding-top: 20px;
  }

  .about-section-2 {
    text-align: left;
  }

  .browser {
    font-size: .6rem;
  }

  .image-50 {
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-style-h2-8.custom-text {
    font-size: 3rem;
    line-height: 44px;
  }

  .heading-19.custom-text {
    font-size: 1.3rem;
  }

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

  .paragraph-4 {
    max-width: 100%;
  }

  .mobile-link {
    z-index: 1;
    background-color: #fff0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0%;
  }

  .tab-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    align-items: flex-start;
  }

  .tab-link {
    padding: 10px;
    position: relative;
  }

  .tab-paragraph {
    font-size: 14px;
  }

  .stacked-gradient {
    display: none;
  }

  .stacked-tabs-pane-holder {
    width: 80%;
  }

  .stacked-tab-image {
    border-radius: 8px;
    box-shadow: 6px 6px 8px #56565626;
  }

  .container-5 {
    padding: 1em;
  }

  .stacked-tabs-holder {
    margin-top: 40px;
  }

  .tab-circle {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    box-shadow: 6px 6px 15px #65656542, inset -6px -6px 15px #7978781a;
  }

  .grid-8-col {
    grid-template-columns: 1fr 1fr;
  }

  .tab-title {
    font-size: 18px;
  }

  .tab-icon {
    width: 20px;
    height: 20px;
  }

  .grey-paragraph {
    font-size: 14px;
  }

  .div-block-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .heading-style-h2-9.custom-text {
    font-size: 3rem;
  }

  .div-block-11 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .heading-style-h2-10.custom-text {
    font-size: 3rem;
  }

  .heading-23.custom-text {
    font-size: 1.3rem;
  }

  .banner-wrapper.is-green {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .banner-wrapper.is-orange, .banner-wrapper.is-pink {
    flex-flow: row;
  }

  .heading-24.custom-text {
    font-size: 1.3rem;
  }

  .heading-24.custom-text.filter-heading {
    font-size: 1.6rem;
  }

  .button-47.custom-cursor {
    z-index: 20;
    background-color: var(--white);
    color: var(--black);
    margin-top: 0;
    font-family: Generalsans, Tahoma, sans-serif;
    position: relative;
  }

  .button_text-3 {
    margin-bottom: .5em;
  }

  .cta-2 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .text-block-131 {
    color: var(--black);
    padding-right: 10px;
    font-family: Generalsans, Tahoma, sans-serif;
  }

  .form-section-title-5 {
    text-align: center;
    font-size: 2.2em;
    line-height: 1.3em;
  }

  .success {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .paragraph-11 {
    font-size: 18px;
  }
}

#w-node-_12c61934-47b1-5606-bf5b-e6f1d44b9c27-37b750a4 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_32e6211e-9f6b-3129-4128-902e51db4cc7-37b750a4, #w-node-_9f902e87-933d-f496-c806-51f0472e45b3-37b750a4, #w-node-_043ad4d6-b7d5-d916-72c5-ee336f37fa1b-37b750a4, #w-node-c26646f0-42ca-f241-dbe0-8aa9087d0dd7-37b750a4, #w-node-_56c78e18-9465-20ec-c769-e89e26372da4-37b750a4, #w-node-_56c78e18-9465-20ec-c769-e89e26372dc8-37b750a4, #w-node-_56c78e18-9465-20ec-c769-e89e26372db6-37b750a4, #w-node-_56c78e18-9465-20ec-c769-e89e26372dd7-37b750a4, #w-node-_46c35414-ce90-6070-e19d-a42720677d0e-37b750a4, #w-node-_8543f9f7-f473-badf-e642-dcb0dc2df98a-37b750a4, #w-node-f4b191a3-c75d-efc7-26da-9ae54c14beec-37b750a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5c8760f6-ad58-a4d9-88db-d097d458d279-37b750a4 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_5c8760f6-ad58-a4d9-88db-d097d458d27b-37b750a4 {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-b0871316-0fed-3788-caae-8316b2932868-37b750a4, #w-node-f6c4793f-7140-ac35-4aae-80213cfe90ce-37b750a4, #w-node-e5cdbec7-454d-2d65-2474-c9998760bb92-37b750a4, #w-node-dbd599e1-e6ae-5b30-4465-d1a38006efcf-37b750a4, #w-node-_7dcd1286-6677-e5e2-cf0f-c23af71ea927-37b750a4, #w-node-eb7e8766-8626-3e27-21ca-541d2b61b969-37b750a4, #w-node-_8a44e633-b330-6986-69e8-96a733c0443d-37b750a4, #w-node-_5c13e8bf-6d08-0d95-ff33-c13752dc9af6-37b750a4, #w-node-e8eac77e-9c1b-d198-4678-659cc42aec98-37b750a4, #w-node-_865eceee-1d4e-51ca-fd1a-2e65281571a1-37b750a4, #w-node-_0509a20f-911f-a5fc-d050-3a9b18a6df72-37b750a4, #w-node-bfd67512-cb29-5ee6-6103-4901d3d8b29d-37b750a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_12c61934-47b1-5606-bf5b-e6f1d44b9c27-edaed33e {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_6da00cda-0f45-dd8e-8443-2262d64ae18d-5027cc44 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_12c61934-47b1-5606-bf5b-e6f1d44b9c27-f9de6c24 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

@media screen and (max-width: 991px) {
  #w-node-_12c61934-47b1-5606-bf5b-e6f1d44b9c27-37b750a4 {
    grid-column: span 6 / span 6;
  }

  #w-node-_5c8760f6-ad58-a4d9-88db-d097d458d27b-37b750a4 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_5c8760f6-ad58-a4d9-88db-d097d458d284-37b750a4 {
    justify-self: center;
  }

  #w-node-_12c61934-47b1-5606-bf5b-e6f1d44b9c27-edaed33e {
    grid-column: span 6 / span 6;
  }

  #w-node-_6da00cda-0f45-dd8e-8443-2262d64ae185-5027cc44 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_12c61934-47b1-5606-bf5b-e6f1d44b9c27-f9de6c24 {
    grid-column: span 6 / span 6;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_12c61934-47b1-5606-bf5b-e6f1d44b9c27-37b750a4, #w-node-_12c61934-47b1-5606-bf5b-e6f1d44b9c27-edaed33e, #w-node-_12c61934-47b1-5606-bf5b-e6f1d44b9c27-f9de6c24 {
    grid-column: span 4 / span 4;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_5c8760f6-ad58-a4d9-88db-d097d458d284-37b750a4 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Gridular';
  src: url('../fonts/Gridular-Regular.woff2') format('woff2'), url('../fonts/Gridular-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans 17 Pt';
  src: url('../fonts/GoogleSans_17pt-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans 17 Pt';
  src: url('../fonts/GoogleSans_17pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans 17 Pt';
  src: url('../fonts/GoogleSans_17pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans 17 Pt';
  src: url('../fonts/GoogleSans_17pt-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans 17 Pt';
  src: url('../fonts/GoogleSans_17pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans';
  src: url('../fonts/GoogleSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans';
  src: url('../fonts/GoogleSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans';
  src: url('../fonts/GoogleSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans 17 Pt';
  src: url('../fonts/GoogleSans_17pt-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans 17 Pt';
  src: url('../fonts/GoogleSans_17pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans';
  src: url('../fonts/GoogleSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans';
  src: url('../fonts/GoogleSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans 17 Pt';
  src: url('../fonts/GoogleSans_17pt-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans';
  src: url('../fonts/GoogleSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans';
  src: url('../fonts/GoogleSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans';
  src: url('../fonts/GoogleSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Big Zubo';
  src: url('../fonts/Big-Zubo.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pixelifysans Variablefont Wght';
  src: url('../fonts/PixelifySans-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neokuratplakat';
  src: url('../fonts/NeokuratPlakat.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}