:root {
  --black: #07020c;
  --white: white;
  --main-color: #9f23c2;
  --black-4: #fff;
  --black-3: #fff;
  --azure: #fff;
  --black-2: #fff;
  --azure-2: #fff;
  --dark-turquoise: #fff;
}

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

body {
  background-color: var(--black);
  color: #fff;
  font-family: Inter Tight, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

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

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

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

p {
  color: #fff9;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

ul {
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 40px;
}

li {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

blockquote {
  opacity: .8;
  border-left: 1px solid #fff;
  margin-bottom: 10px;
  padding: 0 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

figcaption {
  color: #e7fbfc99;
  text-align: center;
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: 500;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.social-icon {
  border-left: 1px solid #2c2e30;
  border-right: 1px solid #2c2e30;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 30px;
  margin-left: -1px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-overlay {
  cursor: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.logo-link {
  flex-direction: row;
  align-items: center;
  display: flex;
  position: relative;
}

.navigation-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center start;
  display: flex;
}

.remove {
  width: 28px;
}

.line-overlay-nav {
  background-color: var(--main-color);
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.hamburger-menu {
  grid-column-gap: 7px;
  grid-row-gap: 10px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #3b3b3b;
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 15px 8px 20px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  position: relative;
}

.navigation-wrapper {
  align-items: center;
  padding: 30px 5%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

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

.navlinks {
  z-index: 5;
  color: #fff;
  justify-content: center;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 80px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu {
  z-index: 9999;
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: none;
  position: fixed;
  inset: 0%;
}

.template-logo {
  width: 90px;
}

.menu-content {
  z-index: 2;
  background-color: var(--black);
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.remove-circle {
  cursor: none;
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  transform: none;
}

.container {
  z-index: 3;
  flex: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.navlinks-wrapper {
  margin-top: -1px;
  padding-top: .4vw;
  padding-bottom: .4vw;
  position: relative;
  overflow: hidden;
}

.sticky-nav {
  z-index: 900;
  position: sticky;
  top: 0;
}

.remove-circe-mobile {
  display: none;
}

.hero {
  justify-content: center;
  align-items: flex-start;
  min-height: 94vh;
  padding: 205px 5% 100px;
  display: flex;
  position: relative;
}

.hero.inner {
  min-height: auto;
  padding-bottom: 140px;
  position: relative;
}

.hero.inner.third {
  padding-top: 160px;
}

.section {
  padding: 100px 5%;
  position: relative;
}

.section.for-blog-page {
  padding-top: 50px;
}

.section.gray-light {
  background-image: linear-gradient(162deg, #ffffff24, var(--black) 62%, var(--black));
  border-radius: 50px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.margin-20px {
  margin-top: 20px;
}

.style-guide-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.style-guide-grid.for-buttons {
  place-items: center;
}

.sticky-left {
  position: sticky;
  top: 120px;
}

.color-block {
  background-color: var(--main-color);
  color: var(--white);
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  position: relative;
}

.color-block._3 {
  background-color: var(--black-4);
  color: #fff;
}

.paragraph-red {
  color: #dcf2f4;
}

.body-link {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
}

.body-link.small {
  font-size: 15px;
}

.body-link.big {
  font-size: 20px;
}

.margin-30px {
  margin-top: 30px;
}

.display-3 {
  margin-bottom: 15px;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
}

.yellow-background {
  background-color: var(--black-4);
  width: 100%;
  height: 100%;
  padding: 20px 20px 10px;
}

.components-grid-style {
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-bottom: 100px;
  display: grid;
}

.components-grid-style._0-bottom {
  margin-bottom: 0;
}

.display-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
}

.color-text {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}

.display-1 {
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 120px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}

.display-1.cta {
  font-size: 50px;
  line-height: 1.2;
}

.paragraph-big {
  font-size: 24px;
  line-height: 32px;
}

.paragraph-big.white {
  color: #fff;
}

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

.top-heading {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.top-heading.for-inner {
  padding-bottom: 50px;
}

.top-heading.for-inner.center {
  justify-content: center;
}

.contact-absolute {
  z-index: 1;
  flex: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.contact-absolute.absolute {
  z-index: 15;
  margin-bottom: 30px;
  position: absolute;
  inset: auto 0% 0%;
}

.contact-absolute.absolute.logouptopholder {
  padding-top: 50px;
  inset: 0% 0% auto;
}

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

.hero-grid.center {
  grid-row-gap: 30px;
  text-align: center;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.hero-display {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 74px;
  font-weight: 600;
  line-height: 1.1;
}

.hero-display.for-blog-page {
  margin-left: auto;
  margin-right: auto;
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
}

.scroll-center {
  justify-content: center;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.margin-50px {
  margin-top: 50px;
}

.margin-50px.margin50pxbottom {
  margin-top: 0;
  margin-bottom: 50px;
}

.margin-50px.marginmore {
  margin-top: 300px;
}

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

.blog-image {
  object-fit: cover;
  width: 100%;
  transition: all .3s;
}

.blog-image:hover {
  opacity: .7;
}

.blog-content {
  background-color: #ffffff1a;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 35px;
  display: flex;
}

.meta-tag {
  color: var(--black);
  border-radius: 5px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.data-created {
  margin-bottom: 0;
  font-size: 14px;
}

.flex-data {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}

.flex-data.center {
  justify-content: center;
}

.blog-title {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: all .3s;
}

.blog-title:hover {
  opacity: .6;
}

.gray-link {
  color: var(--white);
  text-decoration: none;
  display: inline;
}

.footer-logo-link {
  margin-bottom: 20px;
}

.footer-left-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.legal-wrapper {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.blog-page-wrapper {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-image {
  border-radius: 14px;
}

.gray-text-2 {
  color: #2c2c2c80;
}

.subhead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.subhead.field-text {
  max-width: 100%;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
}

.subhead._2 {
  margin-bottom: 15px;
}

.input {
  border: 1px none var(--black-3);
  background-color: #81818b33;
  border-radius: 6px;
  min-height: 60px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.input:focus {
  color: #555;
}

.input::placeholder {
  color: #fff9;
  font-size: 16px;
  font-weight: 500;
}

.input.add-bottom {
  margin-bottom: 5px;
}

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

.success-message {
  background-color: var(--black-3);
  color: #fff;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
}

.contact-form-left-side {
  justify-content: center;
  display: flex;
}

.margin-15px {
  margin-top: 15px;
}

.text-area {
  background-color: #81818b33;
  border: 1px #000;
  border-radius: 10px;
  min-height: 120px;
  margin-bottom: 5px;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 28px;
}

.text-area:focus {
  color: #211f54;
}

.text-area::placeholder {
  color: #dcf2f499;
  font-size: 16px;
  font-weight: 500;
}

.error-message {
  color: #fe0000;
  text-align: center;
  background-color: #ffeaea;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

.utility-page-content-2 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 420px;
  display: flex;
}

.project-line-divider {
  background-color: #fff;
  width: 100%;
  height: 2px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.changelog {
  text-align: left;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.dark-link {
  color: var(--white);
}

.components-grid {
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr minmax(200px, 1fr);
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 100px;
  display: grid;
}

.center-grid {
  grid-column-gap: 81px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-right: 20px;
  display: flex;
}

.photo-animation {
  max-width: 100%;
  transition: all .3s;
  position: relative;
}

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

.collection-item {
  flex: none;
  align-items: flex-end;
  width: 60%;
  padding-right: 30px;
  display: flex;
}

.work-content {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid-2-columns {
  grid-column-gap: 100px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.4fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.grid-2-columns.fun-facts-wrapper {
  grid-template-columns: 1.2fr 1fr;
}

.testimonials-wrapper {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-quote {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.testimonials-content {
  border-bottom: 1px solid #ffffff26;
  padding-bottom: 30px;
  display: flex;
}

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

.margin-60px {
  margin-top: 60px;
}

.max-w-width {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section-cta {
  padding: 100px 5%;
  position: relative;
}

.section-cta.cta {
  background-image: linear-gradient(to bottom, #ffffff24, var(--black));
  border-radius: 50px;
  max-width: 90%;
  margin: 150px auto 200px;
  padding-top: 110px;
  padding-bottom: 110px;
}

.subhead-center {
  opacity: 1;
  color: var(--white);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.4;
}

.subhead-center.main {
  margin-left: auto;
  margin-right: auto;
  font-size: 36px;
  line-height: 1.3;
}

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

.subhead-center.left.white._22px {
  font-size: 24px;
}

.subhead-center._90 {
  max-width: 496px;
}

.subhead-center.small {
  font-size: 23px;
}

.white-light {
  opacity: .5;
}

.scroll-down-lotties {
  width: 20px;
}

.social-wrapper-main {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.social-wrapper-main.left {
  justify-content: flex-start;
}

.social-icon-main {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: flex;
  position: relative;
}

.animation-image {
  z-index: 1;
  width: 20px;
  position: relative;
}

.social-circle {
  background-color: var(--main-color);
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.work-photo-first {
  opacity: .4;
  transform: scale3d(1none, 1none, 1none);
  object-fit: cover;
  transform-style: preserve-3d;
  width: 100%;
  min-height: 100%;
}

.vertical-flex {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.line-overlay {
  width: 100%;
  overflow: hidden;
}

.project-circle-text {
  z-index: 999;
  opacity: 1;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: absolute;
}

.category-top-2 {
  z-index: 1;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  inset: auto auto 15px 15px;
}

.circle-center {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.work-wrapper-first {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.work-title-first {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.line-title {
  background-color: var(--white);
  opacity: .38;
  width: 100%;
  height: 1px;
  margin-top: 7px;
}

.view-project-icon {
  background-color: var(--main-color);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #000;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  display: flex;
  position: relative;
}

.title-line-wrapper {
  color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.max-w-center {
  text-align: center;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-center.more {
  max-width: 570px;
}

.logo-strip {
  grid-column-gap: 100px;
  grid-row-gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.logo-strip.add-top {
  margin-top: 50px;
}

.button-left-flex {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-left-flex.make-horizontal.downloadsection {
  justify-content: center;
  align-items: center;
  margin-top: 5vh;
}

.social-icon-3 {
  background-color: var(--black-4);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.max-w-left {
  max-width: 74%;
  margin-right: auto;
}

.number {
  color: #fff;
  margin-bottom: 5px;
  font-size: 84px;
  font-weight: 500;
  line-height: 1.2;
}

.footer-main {
  min-height: 300px;
  padding: 100px 5% 40px;
}

.copyright-2 {
  opacity: .6;
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}

.circle-button {
  background-color: #fff;
  background-image: url('../images/arrow-black.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-right: 7px;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
}

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

.form-single {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.footer-main-grid-2 {
  grid-column-gap: 150px;
  grid-row-gap: 150px;
  grid-template-rows: auto;
  grid-template-columns: .5fr minmax(199px, .5fr);
  align-items: start;
}

.text-field-gray {
  z-index: 1;
  background-color: #81818b33;
  border: 1px #81818b33;
  border-radius: 40px 0 0 40px;
  width: 100%;
  min-width: auto;
  height: auto;
  min-height: 70px;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 25px;
  font-size: 16px;
  position: relative;
}

.text-field-gray::placeholder {
  color: #fff9;
  font-size: 16px;
  font-weight: 500;
}

.filter-color {
  width: 100px;
}

.subscribe-form {
  width: 100%;
  margin-bottom: 0;
}

.footer-grid-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.error-message-2 {
  color: #fff;
  text-align: center;
  background-color: #fa242a;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
}

.success-message-2 {
  color: #000;
  text-align: center;
  background-color: #c7c3cf;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
}

.margin-25px {
  margin-top: 25px;
}

.margin-25px.add-line-divider {
  border-top: 1px solid #fff3;
  width: 100%;
  margin-top: 30px;
  padding-top: 30px;
}

.footer-link-main {
  opacity: .6;
  color: #fff;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.footer-link-main:hover {
  opacity: 1;
  color: #ececec;
}

.footer-link-main.email {
  margin-top: 10px;
}

.circle-button-wrapper {
  z-index: 2;
  background-color: #81818b33;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  align-items: center;
  min-height: 70px;
  display: flex;
  position: relative;
}

.footer-title-main {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.foorer-list-main {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.local-link {
  opacity: .4;
  color: #fff;
  background-color: #3b3b3b;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.local-link.w--current:hover, .local-link.w--current:lang(en) {
  opacity: 1;
}

.locales-list {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  display: flex;
}

.background-video-wrapper {
  width: 60%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.background-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gradient-overlay {
  z-index: 2;
  background-image: linear-gradient(to right, var(--black), #0000);
  position: absolute;
  inset: 0%;
}

.color {
  color: var(--main-color);
}

.button {
  background-color: var(--main-color);
  border-radius: 5px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
  box-shadow: inset 0 800px 3px #ffffff1a;
}

.button:hover {
  box-shadow: none;
}

.button.gray {
  background-color: #fff3;
}

.small-icon {
  width: 31px;
}

.step-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
}

.button-line {
  color: #2c2c2c;
  white-space: nowrap;
  border-bottom: 1px solid #c5c5c5;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.button-line:hover {
  color: #b26cf1;
  border-bottom-color: #b26cf1;
  padding-right: 0;
}

.step-box {
  background-color: #ffffff26;
  border-radius: 9px;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  transition: all .2s;
  display: flex;
  box-shadow: inset 0 400px 3px #0003;
}

.step-box:hover {
  box-shadow: none;
}

.step-circle-icon {
  background-color: var(--main-color);
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 30px;
  display: flex;
}

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

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

.absolute-logo {
  mix-blend-mode: color-burn;
  width: 125px;
  position: absolute;
}

.image {
  filter: invert();
}

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

.app-grid.ucgrid {
  margin-bottom: 5vh;
}

.app-block {
  background-color: #ffffff1a;
  background-image: url('../images/65aaac1be12fe801f8eeb7ba_Mockup.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 350px;
  border-radius: 14px;
  min-height: 600px;
}

.app-block.uc_img {
  background-image: url('../images/65aaac1be12fe801f8eeb7ba_Mockup_marta_rustam.png');
}

.blog-radius {
  border-radius: 10px;
  overflow: hidden;
}

.tab-menu {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  display: flex;
}

.tab-logo {
  opacity: .37;
  text-align: center;
  background-color: #0000;
  background-image: url('../images/Oslo-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 80px;
  border: 1px solid #fff0;
  border-radius: 50px;
  width: 18%;
  min-height: 80px;
  padding-left: 12px;
  padding-right: 12px;
  transition: all .4s;
}

.tab-logo:hover {
  opacity: 1;
}

.tab-logo.w--current {
  opacity: 1;
  background-color: #0000;
  border-color: #fff;
}

.tab-logo.logo-4 {
  background-image: url('../images/italic-white.svg');
  background-size: 75px;
}

.tab-logo.logo-3 {
  background-image: url('../images/Tokyo-white.svg');
  background-size: 100px;
}

.tab-logo.logo-2 {
  background-image: url('../images/theo-white.svg');
  background-size: 90px;
}

.tab-logo.logo-2.w--current {
  background-color: #0000;
}

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

.testimonials-photo {
  opacity: .8;
  border-radius: 15px;
  width: 100%;
}

.plus {
  width: 19px;
}

.about-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #ffffff26;
  border-radius: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.photo-right {
  z-index: 15;
  background-image: url('../images/hero.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  min-height: 620px;
  display: flex;
  position: relative;
}

.photo-right.second {
  background-image: url('../images/work-3.jpg');
  background-position: 50%;
}

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

.maw-w-right {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 438px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.delete-me {
  z-index: 9999;
  background-color: #fff;
  background-image: url('../images/button.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  width: 140px;
  height: 30px;
  display: none;
  position: fixed;
  inset: auto 20px 20px auto;
}

.image-2 {
  mix-blend-mode: darken;
}

.me {
  margin-bottom: 20px;
}

.ilink {
  color: #fff9;
}

@media screen and (min-width: 1440px) {
  .contact-absolute.absolute {
    padding-left: 0%;
    padding-right: 0%;
  }

  .form-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .logo-strip {
    grid-column-gap: 46px;
  }
}

@media screen and (max-width: 991px) {
  .menu-overlay {
    cursor: auto;
  }

  .logo-link {
    height: auto;
  }

  .remove {
    filter: invert();
    width: 24px;
  }

  .navigation-wrapper {
    min-height: auto;
  }

  .menu-content {
    flex-direction: column;
    top: 0;
  }

  .nav-text {
    height: auto;
  }

  .remove-circe-mobile {
    background-color: var(--black-4);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    display: flex;
    position: absolute;
    inset: 20px 20px auto auto;
  }

  .hero {
    min-height: auto;
    padding-top: 145px;
    padding-bottom: 130px;
    position: relative;
  }

  .hero.inner {
    padding-top: 160px;
    padding-bottom: 130px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sticky-left {
    position: relative;
    top: 0;
  }

  .components-grid-style {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .display-2 {
    font-size: 50px;
  }

  .display-1.cta {
    max-width: 100%;
  }

  .contact-absolute.absolute {
    margin-bottom: 30px;
    padding-left: 5%;
    padding-right: 5%;
  }

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

  .hero-display.for-blog-page {
    font-size: 70px;
  }

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

  .blog-title {
    font-size: 23px;
  }

  .footer-left-wrapper {
    max-width: 70%;
  }

  .legal-wrapper {
    width: 100%;
  }

  .hero-line {
    background-position: -16% -3%;
    background-size: 500px;
  }

  .contact-form-left-side {
    padding-top: 50px;
  }

  .project-line-divider {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .components-grid {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .center-grid {
    grid-column-gap: 40px;
  }

  .collection-item {
    flex: 0 auto;
    width: 50%;
    padding-right: 0;
  }

  .work-content {
    height: auto;
  }

  .grid-2-columns {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .testimonials-wrapper {
    max-width: 100%;
  }

  .testimonials-quote {
    margin-top: 60px;
  }

  .vertical-flex {
    flex-direction: column;
    margin-top: 5px;
    padding-bottom: 25px;
  }

  .category-top-2 {
    top: 20px;
    left: 20px;
  }

  .work-title-first {
    font-size: 28px;
  }

  .view-project-icon {
    font-size: 14px;
    font-weight: 600;
  }

  .logo-strip {
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    justify-content: center;
  }

  .max-w-left {
    max-width: 550px;
  }

  .number {
    font-size: 82px;
  }

  .footer-main-grid-2 {
    grid-column-gap: 0px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .text-field-gray {
    min-width: auto;
  }

  .background-video-wrapper {
    width: 100%;
  }

  .step-box {
    padding-top: 30px;
    padding-bottom: 20px;
    padding-right: 20px;
  }

  .grid-3-columns {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr 1fr;
  }

  .app-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column-reverse;
    display: flex;
  }

  .app-block {
    width: 100%;
  }

  .tab-logo {
    width: 33.333%;
  }

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

  .left-part {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .image-3 {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .social-icon {
    width: 35px;
    height: 27px;
  }

  .navlinks {
    height: auto;
    margin-top: 2px;
    margin-bottom: 2px;
    font-size: 50px;
    line-height: 70px;
  }

  .remove-circle {
    top: 15px;
    right: 15px;
  }

  .hero.inner {
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .hero.inner.third {
    padding-top: 130px;
    padding-bottom: 115px;
  }

  .style-guide-grid {
    grid-template-columns: 1fr 1fr;
  }

  .display-3 {
    font-size: 40px;
  }

  .display-2 {
    font-size: 38px;
    line-height: 38px;
  }

  .display-1 {
    font-size: 70px;
  }

  .display-1.cta {
    font-size: 33px;
  }

  .hero-display {
    max-width: 100%;
    font-size: 60px;
  }

  .hero-display.for-blog-page {
    font-size: 50px;
  }

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

  .blog-title {
    font-size: 26px;
  }

  .footer-logo-link {
    margin-bottom: 1.5rem;
    padding-left: 0;
  }

  .footer-left-wrapper {
    max-width: 90%;
  }

  .hero-line {
    background-position: -34% -3%;
    background-size: 400px;
  }

  .subhead {
    max-width: 95%;
  }

  .form-grid {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    grid-template-columns: 1fr;
  }

  .contact-form-left-side {
    padding-left: 0;
    padding-right: 0;
  }

  .text-area {
    border-radius: 18px;
  }

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

  .collection-item {
    width: 100%;
  }

  .section-cta.cta {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .subhead-center.main {
    font-size: 29px;
    line-height: 1.3;
  }

  .vertical-flex {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .logo-strip {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
  }

  .logo-strip.add-top {
    margin-top: 30px;
  }

  .form-single {
    flex-direction: row;
  }

  .footer-main-grid-2 {
    flex-direction: column-reverse;
    align-items: stretch;
    display: flex;
  }

  .text-field-gray {
    text-align: left;
    margin-right: 0;
  }

  .footer-grid-2 {
    grid-column-gap: 1.5rem;
  }

  .footer-link-main:hover {
    color: #667085;
  }

  .step-title {
    margin-bottom: 15px;
  }

  .step-box {
    padding-bottom: 40px;
  }

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

  .tab-menu {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 40px;
  }

  .tab-logo {
    background-size: 60px;
    border-radius: 30px;
    width: 33.333%;
    min-height: 60px;
  }

  .tab-logo.logo-4 {
    background-size: 65px;
  }

  .tab-logo.logo-3 {
    background-size: 80px;
  }

  .tab-logo.logo-2 {
    background-size: 70px;
  }

  .testimonials-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column-reverse;
    display: flex;
  }

  .hide {
    display: none;
  }

  .photo-right {
    min-height: 450px;
  }

  .left-part {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 479px) {
  p {
    font-size: 16px;
  }

  .navigation-grid {
    justify-content: space-between;
    display: flex;
  }

  .remove {
    width: 20px;
  }

  .navigation-wrapper {
    padding-left: 3%;
    padding-right: 3%;
  }

  .template-logo {
    width: 90px;
  }

  .remove-circe-mobile {
    top: 10px;
    right: 10px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero.inner {
    padding-top: 105px;
  }

  .hero.inner.third {
    padding-top: 100px;
  }

  .section.gray-light {
    border-radius: 30px;
  }

  .style-guide-grid {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .display-3 {
    font-size: 29px;
  }

  .display-2 {
    font-size: 34px;
    line-height: 38px;
  }

  .display-1 {
    font-size: 56px;
    line-height: 1.1;
  }

  .display-1.cta {
    font-size: 26px;
  }

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

  .hero-grid {
    grid-row-gap: 0px;
  }

  .hero-grid.center {
    grid-row-gap: 20px;
  }

  .hero-display {
    font-size: 40px;
  }

  .hero-display.for-blog-page {
    font-size: 10vw;
    line-height: 1.2;
  }

  .margin-50px.make-15px {
    margin-top: 15px;
  }

  .blog-image {
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  .blog-content {
    padding-top: 30px;
    padding-left: 25px;
    padding-right: 15px;
  }

  .flex-data {
    grid-column-gap: 15px;
  }

  .blog-title {
    font-size: 22px;
  }

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

  .subhead {
    font-size: 22px;
    line-height: 28px;
  }

  .input {
    min-height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .input::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .contact-form-left-side {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text-area {
    padding-left: 18px;
    padding-right: 18px;
  }

  .text-area::placeholder {
    font-size: 16px;
    line-height: 24px;
  }

  .top-grid {
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: flex-start;
    display: flex;
  }

  .collection-item {
    width: 100%;
  }

  .work-content {
    height: 250px;
  }

  .testimonials-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .margin-150px {
    margin-top: 100px;
  }

  .section-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-cta.cta {
    border-radius: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .subhead-center {
    max-width: 100%;
    font-size: 22px;
  }

  .work-title-first {
    font-size: 23px;
  }

  .view-project-icon {
    font-size: 15px;
    line-height: 20px;
  }

  .view-project-icon.w--current {
    width: 60px;
    height: 60px;
  }

  .logo-strip {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: center;
  }

  .button-left-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-left-flex.make-horizontal {
    flex-direction: row;
  }

  .button-left-flex.center {
    justify-content: center;
    align-items: center;
  }

  .form-single {
    align-items: center;
  }

  .footer-main-grid-2 {
    grid-row-gap: 48px;
  }

  .text-field-gray {
    text-align: left;
    margin-bottom: 0;
    padding-left: 20px;
  }

  .subscribe-form {
    width: 100%;
  }

  .footer-grid-2 {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .small-icon {
    width: 38px;
    height: 38px;
  }

  .step-title {
    font-size: 1.8em;
  }

  .button-line {
    font-size: 16px;
  }

  .step-box {
    padding-left: 29px;
    padding-right: 29px;
  }

  .step-circle-icon {
    width: 80px;
    height: 80px;
  }

  .app-block {
    background-size: 230px;
    min-height: 400px;
  }

  .tab-menu {
    flex-wrap: wrap;
  }

  .tab-logo {
    width: 100%;
  }

  .about-grid {
    flex-direction: column;
  }

  .photo-right {
    min-height: 300px;
  }

  .left-part {
    padding: 25px 23px;
  }
}

#w-node-_01be8294-4bfb-d338-6c7e-cc5aafd9778e-f8eeb762 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_69e90c58-9b96-db39-8c1f-bdab4faa61b8-f8eeb762 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-a54c222e-d17d-0b7c-0384-69deb45c44c3-f8eeb762, #w-node-f2a295ed-4a67-c706-f148-4a5e49626b28-f8eeb762, #w-node-f6d60d03-7165-95f2-b382-bb64b0919c99-f8eeb762, #w-node-f6d60d03-7165-95f2-b382-bb64b0919ca6-f8eeb762, #w-node-f6d60d03-7165-95f2-b382-bb64b0919cb3-f8eeb762, #w-node-b071caec-aeb5-e864-2a84-217b3792e10f-f8eeb762, #w-node-_97f73ec8-d481-3882-3dc7-c66a18d87d2b-f8eeb762, #w-node-a5c0b090-10f3-6e4d-2244-f2eb07cebace-f8eeb762, #w-node-a5c0b090-10f3-6e4d-2244-f2eb07cebacf-f8eeb762, #w-node-d7b4e535-69d6-ce84-6814-8eb8b09fb32d-f8eeb762, #w-node-_2ff712b1-8f07-992e-b737-d11171bac460-f8eeb762, #w-node-_54e7226a-b03a-efdd-728a-0891547240f3-f8eeb762, #w-node-_54e7226a-b03a-efdd-728a-089154724100-f8eeb762, #w-node-_2b2e1fc1-00b0-63a2-2efd-c7c759407e2b-f8eeb762, #w-node-_2b2e1fc1-00b0-63a2-2efd-c7c759407e38-f8eeb762, #w-node-_36facace-1b22-b1b9-00e4-999c76d9af42-f8eeb762, #w-node-_36facace-1b22-b1b9-00e4-999c76d9af4f-f8eeb762 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6b42c4de-16d6-aa7c-9ff8-08cd916d87d6-d4752bf0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_4b129a61-61be-01bc-904e-8c37d4752bf7-d4752bf0 {
  justify-self: end;
}

#w-node-_6ca86d9a-54cc-f741-2c2f-30fc3600fa90-f8eeb768 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-ad3e5ed6-9b48-a73f-dc00-42c619dc6698-f8eeb768 {
  justify-self: end;
}

#w-node-e9ee70cc-c88a-7ea1-6a2b-cc8b454515e6-f8eeb769 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e9ee70cc-c88a-7ea1-6a2b-cc8b454515ed-f8eeb769 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_215bf2b1-8df5-4f96-87b8-840e16c6b91b-f8eeb76a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e85c6d04-9576-00aa-2bff-c6b80bac1dcb-f8eeb76a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6c786640-afe3-a7a1-a2b1-b7cd14cbff2d-f8eeb76d {
  align-self: center;
}

#w-node-_215bf2b1-8df5-4f96-87b8-840e16c6b91b-076c35bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e85c6d04-9576-00aa-2bff-c6b80bac1dcb-076c35bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


