:root {
  --midnight-blue: #000026;
  --hyper-blue: #4830e6;
  --white: white;
  --black: black;
}

body {
  color: var(--midnight-blue);
  font-family: Inconsolata, monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

h1 {
  color: var(--midnight-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 400;
  line-height: 54px;
}

h2 {
  color: var(--midnight-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 400;
  line-height: 48px;
}

h3 {
  color: var(--midnight-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 400;
  line-height: 42px;
}

h4 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

h5 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

h6 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

p {
  margin-bottom: 16px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

a {
  color: var(--hyper-blue);
  font-weight: 700;
  text-decoration: none;
}

li {
  font-size: 16px;
  line-height: 22px;
}

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

blockquote {
  color: var(--hyper-blue);
  background-color: #4b32f01a;
  border-left: 0 #000;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

.container {
  flex: 1;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px 34px;
}

.container.numbers-flex {
  display: flex;
}

.section {
  background-color: var(--white);
  padding-top: 73px;
  padding-bottom: 120px;
  position: relative;
}

.section.light-blue {
  background-color: #fcfcfe;
  padding-top: 85px;
}

.section.no-margin {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.section.narrow {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.with-title {
  padding-top: 104px;
  padding-bottom: 0;
}

.section.section-bg-color {
  background-color: var(--midnight-blue);
  padding-top: 80px;
  padding-bottom: 80px;
}

.filled-btn {
  background-color: var(--hyper-blue);
  transform: ;
  color: #fff;
  letter-spacing: .4px;
  text-transform: capitalize;
  border-radius: 0;
  margin-top: 16px;
  margin-right: 16px;
  padding: 10px 32px;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
  transition: background-color .2s;
  position: relative;
  overflow: hidden;
}

.filled-btn.no-margin-top {
  margin-top: 0;
}

.filled-btn.no-margin-top.no-margin-right {
  background-color: var(--midnight-blue);
  margin-right: 0;
}

.filled-btn.submit {
  background-color: var(--midnight-blue);
}

.filled-btn.submit:hover {
  background-color: #3e2ac7;
}

.filled-btn.submit.no-margin-right {
  margin-right: 0;
}

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

.filled-btn-overlay {
  z-index: 0;
  background-color: var(--hyper-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.filled-btn-overlay.right {
  left: auto;
  right: 0;
}

.outlined-btn {
  border: 2px solid var(--hyper-blue);
  color: var(--hyper-blue);
  letter-spacing: .4px;
  text-transform: capitalize;
  background-color: #0000;
  margin-top: 16px;
  margin-right: 16px;
  padding: 10px 32px;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  position: relative;
}

.outlined-btn.no-margin-top {
  margin-top: 0;
}

.outlined-btn.no-margin-top.no-margin-right {
  border-color: var(--midnight-blue);
  color: var(--midnight-blue);
  margin-right: 0;
}

.outlined-btn.no-margin-top.no-margin-right.flex {
  align-items: center;
  display: flex;
}

.outlined-btn.no-margin-top.no-margin-right.flex.disabled {
  opacity: .5;
  cursor: not-allowed;
}

.nav-menu {
  background-color: var(--hyper-blue);
  flex-direction: row;
  width: 45vw;
  padding-top: 80px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: fixed;
}

.brand {
  flex: 1;
  align-items: center;
  display: flex;
}

.nav-link {
  color: #fff;
  padding: 0 8px;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  transition: color .3s;
  display: inline-block;
}

.nav-link.dark {
  color: var(--midnight-blue);
}

.nav-link.dark.footer-link {
  width: auto;
  margin-left: 8px;
  padding: 8px;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
}

.menu-button {
  z-index: 10000;
  background-color: #0000;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-right: -18px;
  position: relative;
}

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

.line-1 {
  transform-origin: 0%;
  background-color: #fff;
  width: 100%;
  height: 2px;
  margin-left: auto;
}

.line-1.dark {
  background-color: var(--midnight-blue);
}

.burger-menu {
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  display: flex;
  position: relative;
}

.navbar {
  z-index: 998;
  background-color: #fff;
  border-bottom: 1px solid #e2e3e7;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.navbar.transparent {
  background-color: #0000;
  border-bottom: 0 #0000;
  position: absolute;
}

.logo-line {
  background-color: var(--midnight-blue);
  transform-origin: 0%;
  color: var(--midnight-blue);
  width: 40px;
  height: 1px;
  margin-left: 8px;
  display: inline-block;
}

.hero-section {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.blue-shape-hero {
  background-color: var(--midnight-blue);
  transform-origin: 100%;
  color: var(--midnight-blue);
  width: 33.3334%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.line-2 {
  transform-origin: 100%;
  background-color: #fff;
  width: 50%;
  height: 2px;
  margin-left: auto;
}

.line-2.dark {
  background-color: var(--midnight-blue);
}

.line-3 {
  transform-origin: 0%;
  background-color: #fff;
  width: 75%;
  height: 2px;
  margin-left: auto;
}

.line-3.dark {
  background-color: var(--midnight-blue);
}

.hero-img-wrapper {
  position: relative;
}

.hero-img {
  z-index: 1;
  max-height: 640px;
  position: relative;
}

.hero-img-backdrop {
  z-index: 0;
  opacity: .15;
  background-image: url("https://cdn.prod.website-files.com/601a8db9ba5febd0bf9b17d3/601a8dbaf01ac03ad640da83_Pattern%20Dot.svg");
  background-position: 0 0;
  background-size: 20px;
  display: block;
  position: absolute;
  inset: 80px 80px -80px -80px;
}

.hero-title {
  color: var(--midnight-blue);
  margin-top: 0;
  font-family: Exo, sans-serif;
  font-size: 54px;
  line-height: 60px;
  display: inline;
}

.text-bg-accent {
  opacity: 1;
  transform-origin: 50% 100%;
  color: #4830e65c;
  background-color: #4830e61c;
  width: 100%;
  height: 38%;
  position: absolute;
  bottom: 0;
}

.text-bg-accent.white {
  background-color: #ffffff4d;
}

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

.bg-text-wrapper {
  display: inline-block;
  position: relative;
}

.hero-paragraph {
  max-width: 90%;
  margin-bottom: 80px;
}

.scroll-down-block {
  font-weight: 400;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.scroll-text {
  color: var(--midnight-blue);
  margin-right: 8px;
  display: inline-block;
}

.scroll-down-icon {
  margin-top: 0;
  margin-bottom: 10px;
  display: block;
}

.section-header {
  align-items: center;
  margin-bottom: 64px;
}

.section-header.narrow {
  margin-bottom: 32px;
}

.section-header.right {
  justify-content: flex-end;
  display: flex;
}

.section-title-wrapper {
  align-items: center;
  display: inline-block;
}

.section-title-line {
  background-color: var(--midnight-blue);
  transform-origin: 0%;
  width: 120px;
  height: 2px;
  margin-bottom: 10px;
  display: inline-block;
  position: static;
}

.section-title {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 24px;
  font-size: 36px;
  line-height: 42px;
  display: inline-block;
}

.section-title.no-margin {
  margin-left: 0;
}

.project-list-wrapper {
  z-index: 1;
  flex-wrap: wrap;
  display: flex;
  position: relative;
}

.project-wrapper {
  flex: 0 auto;
  width: 33.333%;
  padding: 16px;
}

.project-img {
  color: var(--midnight-blue);
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.project-img-overlay {
  background-color: var(--hyper-blue);
  width: 0%;
  display: none;
  position: absolute;
  inset: 0;
}

.project-title {
  color: var(--midnight-blue);
  font-size: 48px;
  line-height: 54px;
  text-decoration: none;
}

.project-title.listing {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  display: inline-block;
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.plus-icon {
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  top: 16px;
  right: 16px;
}

.plus-icon.no-margin {
  width: 10%;
  position: relative;
  top: 0;
  right: 0;
}

.button-container {
  padding: 56px 0 0;
}

.button-container.project-page {
  justify-content: space-between;
  padding-top: 0;
  display: flex;
}

.button-container.center {
  justify-content: center;
  display: flex;
}

.arrow-wrapper {
  flex-direction: column;
  align-items: center;
  height: 8px;
  display: inline-block;
  transform: translate(0, -24px);
}

.numbers-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25%;
  padding-left: 8px;
  padding-right: 8px;
}

.numbers-value {
  color: #fff;
  font-size: 48px;
  line-height: 54px;
}

.numbers-title {
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  font-size: 24px;
  line-height: 30px;
}

.numbers-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.company-logos-grid {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: ". ."
                 ". ."
                 ". ."
                 ". Area"
                 / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  position: relative;
}

.company-logo {
  opacity: .5;
  max-height: 80px;
  padding: 16px;
  transition: opacity .3s;
  transform: translate(0);
}

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

.contact-title {
  color: var(--midnight-blue);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 42px;
  line-height: 48px;
}

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

.text-field {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--midnight-blue);
  background-color: #0000;
  border-radius: 0;
  height: 48px;
  margin-bottom: 32px;
  padding-left: 0;
  padding-right: 0;
  transition: border-color .3s;
}

.text-field:focus {
  border-bottom-color: var(--hyper-blue);
}

.text-field::placeholder {
  color: #00002680;
}

.text-field.margin-top {
  margin-top: 32px;
}

.text-field.min-height {
  background-color: #0000;
  min-height: 120px;
}

.text-field-wrapper {
  display: flex;
}

.text-field-spacer {
  width: 48px;
}

.footer {
  border-top: 1px solid #e2e3e7;
  justify-content: space-between;
  align-items: center;
  padding: 16px 56px;
  display: flex;
}

.copyright-block {
  flex: 1;
  display: inline-block;
}

.footer-links {
  flex: 0 auto;
}

.hero-img-overlay-wrapper {
  z-index: 2;
  opacity: 0;
  display: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-col-left {
  max-width: 50%;
  margin-bottom: 0;
  padding-top: 0;
}

.hero-img-overlay {
  z-index: 2;
  opacity: 1;
  transform-origin: 100%;
  background-color: #eceafe;
  width: 100%;
  height: 100%;
  display: block;
}

.dotted-pattern {
  z-index: 0;
  opacity: .3;
  background-image: url("https://cdn.prod.website-files.com/601a8db9ba5febd0bf9b17d3/601a8dbaf01ac03ad640da83_Pattern%20Dot.svg");
  background-position: 0 0;
  background-size: 20px;
  position: absolute;
}

.dotted-pattern.testimonial-left {
  width: 12vw;
  height: 35vh;
  bottom: 0;
  left: 12vw;
}

.dotted-pattern.cta-left {
  width: 25vw;
  height: 25vh;
  top: 30vh;
}

.dotted-pattern.about-left {
  width: 20vw;
  height: 15vh;
  top: 60vh;
}

.dotted-pattern.about-right {
  width: 30vw;
  height: 30vh;
  bottom: 10vh;
  right: 0;
}

.dotted-pattern.latest-work-center-left {
  width: 25vw;
  height: 25vh;
  top: 40vh;
}

.dotted-pattern.latest-work-bottom-right {
  width: 25vw;
  height: 50vh;
  bottom: 0;
  right: 0;
}

.dotted-pattern.companies-bottom-right {
  width: 25vw;
  height: 18vh;
  bottom: 10vh;
  right: 0;
}

.dotted-pattern.contact-bottom-left {
  width: 25vw;
  height: 35vh;
  bottom: 17vh;
  left: 0;
}

.loading-page {
  z-index: 999;
  opacity: 0;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0;
}

.nav-link-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  margin: 8px 16px;
  font-weight: 400;
  display: block;
}

.nav-link-wrap.w--current {
  opacity: .7;
}

.hero-img-block {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.loading-circle {
  border-style: solid;
  border-width: 5px;
  border-color: var(--hyper-blue) #4b32f04d #4b32f04d;
  border-radius: 50%;
  padding: 24px;
}

.contact-grid {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
  position: relative;
}

.success-message {
  color: var(--hyper-blue);
  background-color: #4830e61a;
  font-weight: 700;
}

.hero-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 102px;
  padding-left: 48px;
  display: flex;
}

.hero-col-right {
  max-width: 41.667%;
}

.hero-spacer {
  width: 8.333%;
}

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

.image-2 {
  opacity: 1;
  text-align: left;
  object-fit: fill;
  max-width: 100%;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0;
  display: block;
  position: static;
  overflow: visible;
}

@media screen and (min-width: 1920px) {
  .section.section-bg-color, .filled-btn.submit {
    background-color: var(--midnight-blue);
    background-color: var(--midnight-blue);
  }

  .outlined-btn.no-margin-top.no-margin-right, .contact-title {
    color: var(--midnight-blue);
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 46px;
    line-height: 52px;
  }

  h2 {
    font-size: 40px;
    line-height: 46px;
  }

  h3 {
    font-size: 34px;
    line-height: 40px;
  }

  h4 {
    font-size: 28px;
    line-height: 34px;
  }

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

  h6 {
    font-size: 16px;
    line-height: 24px;
  }

  .container {
    padding-bottom: 23px;
  }

  .container.numbers-flex {
    flex-direction: column;
  }

  .heading-block {
    margin-bottom: 16px;
  }

  .color-block-wrapper {
    width: 25%;
    margin-left: 20px;
    margin-right: 20px;
  }

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

  .section.with-title {
    padding-top: 88px;
  }

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

  .style-guide-block-title {
    padding-left: 88px;
    padding-right: 88px;
  }

  .filled-btn-text {
    font-size: 18px;
    line-height: 24px;
  }

  .style-guide-block-wrapper {
    margin-bottom: 64px;
  }

  .color-title {
    font-size: 12px;
  }

  .colors-wrapper {
    align-items: flex-end;
  }

  .style-guide-title {
    font-size: 22px;
    line-height: 30px;
  }

  .outlined-btn {
    font-size: 18px;
    line-height: 24px;
  }

  .button-block-wrapper {
    margin-left: 8px;
    margin-right: 8px;
  }

  .style-guide-block {
    padding: 32px 48px;
  }

  .btn-text, .btn-text-effect {
    font-size: 18px;
    line-height: 22px;
  }

  .nav-menu {
    background-color: var(--hyper-blue);
    flex-direction: column;
    flex: none;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50vw;
    padding: 80px 16px 16px;
  }

  .menu-button {
    background-color: #0000;
    flex-direction: column;
    margin-right: 0;
    padding: 28px 24px;
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
  }

  .menu-button.bg-mobile {
    background-color: var(--midnight-blue);
    background-color: var(--midnight-blue);
  }

  .burger-menu {
    width: 32px;
  }

  .navbar {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-section {
    flex-direction: column;
    padding-left: 32px;
    padding-right: 32px;
  }

  .blue-shape-hero {
    display: none;
  }

  .hero-img-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .social-block {
    flex-direction: row;
    margin-top: 72px;
    position: static;
    left: auto;
  }

  .social-link {
    margin-bottom: 0;
    margin-left: 16px;
    margin-right: 16px;
    transform: rotate(0);
  }

  .project-wrapper {
    width: 50%;
  }

  .testimonial-slider {
    margin-top: 88px;
    margin-bottom: 104px;
  }

  .testimonial-text {
    max-width: 83.334%;
    margin-top: 40px;
  }

  .numbers-wrapper {
    width: 100%;
  }

  .numbers-block {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .text-field {
    border-radius: 0;
  }

  .hero-col-left {
    max-width: 100%;
    margin-bottom: 64px;
  }

  .page-header-shape {
    flex: 1;
    width: 100%;
  }

  .project-info-wrapper {
    margin-bottom: 56px;
    padding-right: 0;
  }

  .project-info-block {
    flex: 0 auto;
    margin-right: 56px;
  }

  .hero-img-block {
    justify-content: center;
    position: relative;
  }

  .utility-page-content {
    width: 50%;
  }

  ._404-wrapper {
    display: flex;
  }

  ._404 {
    flex-direction: row;
  }

  ._404-text {
    max-width: 83.334%;
    margin-top: 120px;
  }

  ._404-backdrop {
    font-size: 240px;
    line-height: 240px;
  }

  ._404-subtext {
    margin-bottom: 32px;
  }

  .contact-cta {
    margin-top: 88px;
    margin-bottom: 104px;
  }

  .about-img {
    max-width: 100%;
  }

  .hero-wrapper {
    flex-direction: column;
    align-items: center;
    padding-top: 160px;
    padding-left: 0;
  }

  .hero-col-right {
    max-width: 100%;
    margin-top: 48px;
    padding-left: 40px;
  }

  .hero-spacer {
    width: auto;
    display: none;
  }

  .project-header-left {
    flex: 1;
    width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .project-header-text {
    padding-right: 0;
  }

  .project-header-wrapper {
    flex-direction: column;
  }

  .changelog-text-container {
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 44px;
    line-height: 50px;
  }

  h2 {
    font-size: 38px;
    line-height: 44px;
  }

  h3 {
    font-size: 32px;
    line-height: 38px;
  }

  h4 {
    font-size: 26px;
    line-height: 32px;
  }

  h5 {
    font-size: 20px;
    line-height: 26px;
  }

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

  p {
    font-size: 14px;
    line-height: 20px;
  }

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

  .color-block-wrapper {
    width: 100%;
    margin: 16px 0;
  }

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

  .section.with-title {
    padding-top: 72px;
  }

  .section.section-bg-color {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .style-guide-block-title {
    padding: 16px 72px;
  }

  .filled-btn-text {
    flex: 1;
  }

  .style-guide-block-wrapper {
    margin-bottom: 48px;
  }

  .colors-wrapper, .buttons-wrapper {
    flex-direction: column;
  }

  .style-guide-title {
    font-size: 18px;
    line-height: 24px;
  }

  .outlined-btn.no-margin-top.no-margin-right.flex {
    margin-bottom: 32px;
  }

  .button-block-wrapper {
    width: 100%;
    margin-bottom: 32px;
  }

  .style-guide-block {
    padding: 48px;
  }

  .hero-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-img-backdrop {
    inset: 60px 60px -60px -60px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 54px;
  }

  .hero-paragraph {
    max-width: 100%;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title-line {
    width: 80px;
  }

  .section-title {
    font-size: 30px;
    line-height: 36px;
  }

  .project-wrapper {
    width: 100%;
  }

  .project-img {
    position: relative;
    left: auto;
  }

  .button-container.project-page {
    flex-direction: column;
  }

  .numbers-value {
    font-size: 42px;
    line-height: 48px;
  }

  .numbers-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .footer {
    flex-direction: column;
    padding-left: 32px;
    padding-right: 32px;
  }

  .copyright-block {
    margin-bottom: 8px;
  }

  .copyright-text {
    text-align: center;
    margin-bottom: 8px;
  }

  .hero-col-left {
    margin-bottom: 48px;
  }

  .dotted-pattern.latest-work-center-left {
    height: 15vh;
  }

  .dotted-pattern.cta-left, .dotted-pattern.about-left, .dotted-pattern.about-right, .dotted-pattern.latest-work-center-left {
    height: 15vh;
  }

  .dotted-pattern.latest-work-bottom-right {
    height: 25vh;
  }

  .dotted-pattern.testimonial-left {
    width: 20vw;
    height: 20vh;
  }

  .dotted-pattern.companies-bottom-right {
    width: 32vw;
    height: 14vh;
  }

  .dotted-pattern.contact-bottom-left {
    width: 32vw;
    height: 20vh;
  }

  .dotted-pattern.cta-left, .dotted-pattern.about-left, .dotted-pattern.about-right {
    height: 15vh;
  }

  .project-info-wrapper {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .project-info-block {
    width: 100%;
    margin-right: 0;
  }

  .project-info-title, .project-info-value {
    font-size: 16px;
    line-height: 22px;
  }

  .column-paragraph {
    column-count: 1;
  }

  .project-gallery-wrapper {
    flex-direction: column;
    display: flex;
  }

  .featured-gallery-img {
    width: 100%;
    padding-bottom: 100%;
  }

  .gallery-img-right-block {
    width: 100%;
  }

  .grid-btn {
    display: block;
  }

  .grid-btn-tooltip {
    opacity: 1;
    position: static;
    top: 2px;
    right: 32px;
  }

  .grid-button-wrapper {
    margin-bottom: 32px;
  }

  ._404-text {
    margin-top: 120px;
  }

  ._404-subtext {
    margin-top: 8px;
    margin-bottom: 24px;
  }

  .protected-icon {
    height: 40px;
  }

  .contact-grid {
    flex-direction: column;
    grid-template-rows: auto .25fr auto;
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-col-right {
    margin-top: 16px;
  }

  .changelog-text-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 42px;
    line-height: 48px;
  }

  h2 {
    font-size: 36px;
    line-height: 42px;
  }

  h3 {
    font-size: 30px;
    line-height: 36px;
  }

  h4 {
    font-size: 24px;
    line-height: 30px;
  }

  h5 {
    font-size: 18px;
    line-height: 24px;
  }

  .container {
    margin-bottom: 6px;
    padding: 0 16px 19px;
  }

  .container.numbers-flex {
    flex-direction: column;
  }

  .section.with-title {
    padding-top: 56px;
  }

  .section.section-bg-color {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .filled-btn.submit {
    white-space: normal;
    white-space: normal;
    width: 100%;
    margin-right: 0;
    display: inline-block;
    position: static;
    overflow: visible;
  }

  .filled-btn-text {
    font-size: 16px;
    line-height: 22px;
  }

  .filled-btn-text-wrapper {
    height: 23px;
  }

  .btn-text, .btn-text-effect {
    text-align: center;
    font-size: 16px;
    line-height: 22px;
  }

  .nav-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80vw;
    position: absolute;
  }

  .hero-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-img-backdrop {
    background-size: 16px;
    inset: 80px 40px -40px -40px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 42px;
  }

  .hero-paragraph {
    margin-bottom: 40px;
  }

  .social-block {
    margin-top: 64px;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-title-line {
    width: 64px;
    margin-bottom: 5px;
  }

  .section-title {
    margin-left: 16px;
    font-size: 24px;
    line-height: 30px;
  }

  .section-title.no-margin.project-page {
    font-size: 30px;
    line-height: 36px;
  }

  .project-wrapper {
    padding: 16px;
  }

  .testimonial-slider {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .testimonial-number {
    font-size: 120px;
    line-height: 126px;
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 24px;
  }

  .testimonial-author {
    font-size: 14px;
    line-height: 20px;
  }

  .numbers-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .company-logos-grid {
    grid-column-gap: 40px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .company-logo {
    padding: 16px 0;
    display: block;
  }

  .contact-title {
    margin-bottom: 32px;
    font-size: 30px;
    line-height: 36px;
  }

  .text-field-wrapper {
    flex-direction: column;
  }

  .text-field-spacer {
    display: none;
  }

  .copyright-link {
    font-weight: 400;
  }

  .hero-col-left {
    margin-bottom: 32px;
  }

  .dotted-pattern {
    background-size: 16px;
  }

  .project-info-block {
    margin-top: 16px;
  }

  .project-info-title, .project-info-value {
    font-size: 14px;
    line-height: 20px;
  }

  .nav-link-wrap {
    margin-bottom: 8px;
  }

  .hero-img-block {
    padding-top: 0;
  }

  .utility-page-content {
    width: 80%;
  }

  ._404-text {
    font-size: 30px;
    line-height: 36px;
  }

  ._404-backdrop {
    font-size: 168px;
    line-height: 126px;
  }

  ._404-subtext {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .protected-icon {
    height: 32px;
  }

  .contact-cta {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .contact-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-wrapper {
    padding-top: 120px;
  }

  .hero-col-right {
    margin-top: 0;
    padding-left: 40px;
  }
}

#w-node-_06bb5db3-b053-592a-e879-eaf5d8576dd4-7a40da59, #w-node-_37a595d0-23f5-dbdc-1cdd-91411a4d437a-7a40da59, #w-node-fdd50eb7-3ddf-40a9-1573-de1f81ea82ab-7a40da59, #w-node-ca718deb-3b53-afaa-aac5-fab3f21ed16b-7a40da59, #w-node-_33153cd6-6e32-550c-881a-dbd680a04956-7a40da59, #w-node-_100bc7ee-5371-1218-0d13-5be83fa626dd-7a40da59, #w-node-_14ab334a-9c53-d86f-00e7-059fe8f50863-7a40da59, #w-node-_97c7da5d-cf11-3e3d-f3a1-ac172b6c2b11-7a40da59, #w-node-_8416b89a-d98d-75bf-c37d-ec30f96afa75-7a40da59, #w-node-_06e36182-f8df-4ce3-d0ff-41a1ed0580dc-7a40da59 {
  place-self: center;
}

#w-node-_2cde9352-450e-9550-41f6-31d5f7bd3582-7a40da59 {
  grid-area: Area;
}

#w-node-fc4a449e-3984-c1b8-c4c1-561b14502a3a-7a40da59 {
  grid-area: 1 / 3 / 2 / 4;
}

@media screen and (min-width: 1920px) {
  #w-node-_37a595d0-23f5-dbdc-1cdd-91411a4d437a-7a40da59, #w-node-ca718deb-3b53-afaa-aac5-fab3f21ed16b-7a40da59, #w-node-_100bc7ee-5371-1218-0d13-5be83fa626dd-7a40da59 {
    place-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_37a595d0-23f5-dbdc-1cdd-91411a4d437a-7a40da59, #w-node-ca718deb-3b53-afaa-aac5-fab3f21ed16b-7a40da59, #w-node-_100bc7ee-5371-1218-0d13-5be83fa626dd-7a40da59 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-fc4a449e-3984-c1b8-c4c1-561b14502a3a-7a40da59 {
    grid-area: 3 / 1 / 4 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_06bb5db3-b053-592a-e879-eaf5d8576dd4-7a40da59 {
    place-self: center;
  }

  #w-node-_37a595d0-23f5-dbdc-1cdd-91411a4d437a-7a40da59 {
    grid-area: 3 / 1 / 4 / 2;
    place-self: center;
  }

  #w-node-fdd50eb7-3ddf-40a9-1573-de1f81ea82ab-7a40da59 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-ca718deb-3b53-afaa-aac5-fab3f21ed16b-7a40da59 {
    grid-area: 1 / 1 / 2 / 2;
    place-self: center;
  }

  #w-node-_33153cd6-6e32-550c-881a-dbd680a04956-7a40da59 {
    place-self: center;
  }

  #w-node-_100bc7ee-5371-1218-0d13-5be83fa626dd-7a40da59 {
    grid-area: 4 / 2 / 5 / 3;
    place-self: center;
  }

  #w-node-_14ab334a-9c53-d86f-00e7-059fe8f50863-7a40da59, #w-node-_97c7da5d-cf11-3e3d-f3a1-ac172b6c2b11-7a40da59 {
    place-self: center;
  }

  #w-node-_8416b89a-d98d-75bf-c37d-ec30f96afa75-7a40da59 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_06e36182-f8df-4ce3-d0ff-41a1ed0580dc-7a40da59 {
    place-self: center;
  }
}
