: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.with-title {
  padding-top: 104px;
  padding-bottom: 0;
}

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

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

.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.submit {
  background-color: var(--midnight-blue);
}

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

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

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

.filled-btn.no-margin-top.no-margin-right {
  background-color: var(--midnight-blue);
  background-color: var(--midnight-blue);
  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;
  opacity: .5;
  cursor: not-allowed;
}

.filled-btn-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 32px;
  padding-bottom: 22px;
  line-height: 24px;
  display: flex;
  position: static;
  overflow: hidden;
}

.btn-text {
  text-align: center;
  position: relative;
}

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

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

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

.line-2.dark {
  background-color: var(--midnight-blue);
  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);
  background-color: var(--midnight-blue);
}

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

.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.right {
  justify-content: flex-end;
  display: flex;
}

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

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

.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.center {
  justify-content: center;
  display: flex;
}

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

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

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

.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.companies-bottom-right {
  width: 25vw;
  height: 18vh;
  bottom: 10vh;
  right: 0;
}

.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.contact-bottom-left {
  width: 25vw;
  height: 35vh;
  bottom: 17vh;
  left: 0;
}

.page-header-shape {
  transform-origin: 100%;
  flex: none;
}

.header-img {
  width: 100%;
}

.project-info-wrapper {
  flex: none;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
  padding-right: 40px;
  display: flex;
}

.project-info-block {
  flex: 0 auto;
  margin-top: 24px;
  margin-right: 80px;
}

.project-info-title {
  color: var(--midnight-blue);
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}

.project-info-value {
  color: var(--midnight-blue);
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.column-paragraph {
  z-index: 2;
  column-count: 2;
  column-rule-style: none;
  column-rule-width: 0px;
  column-gap: 56px;
  margin-bottom: 16px;
}

.project-gallery-wrapper {
  z-index: 1;
  align-items: center;
  display: flex;
  position: relative;
}

.featured-gallery-img {
  grid-column-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 50%;
  padding-bottom: 50%;
  position: relative;
}

.gallery-img-right-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 50% 50%;
  grid-auto-columns: 1fr;
  width: 50%;
  display: flex;
  position: relative;
}

.small-gallery-img-block {
  width: 50%;
  padding-bottom: 50%;
  position: relative;
}

.gallery-square-content {
  background-color: #ddd;
  justify-content: center;
  align-items: center;
  width: 96%;
  height: 96%;
  display: flex;
  position: relative;
}

.gallery-square-content.small {
  width: 92%;
  height: 92%;
  overflow: hidden;
}

.gallery-square-content-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.gallery-img {
  width: auto;
  max-width: none;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 50%;
  transform: translate(-50%);
}

.gallery-img-link {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-img-overlay {
  background-color: var(--hyper-blue);
  justify-content: center;
  align-items: center;
  width: 0%;
  display: none;
  position: absolute;
  inset: 0;
}

.grid-btn {
  color: var(--midnight-blue);
  background-image: url("https://cdn.prod.website-files.com/601a8db9ba5febd0bf9b17d3/601a8dbaf01ac0f15940da8e_Grid.svg");
  background-position: 50%;
  background-size: cover;
  width: 40px;
  height: 40px;
  position: static;
}

.grid-btn-tooltip {
  opacity: 0;
  color: var(--hyper-blue);
  background-color: #4b32f01a;
  padding: 8px 12px;
  font-weight: 700;
  text-decoration: none;
  display: none;
  position: absolute;
  top: -48px;
}

.grid-button-wrapper {
  flex: 1;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

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

.project-header-left {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.project-header-text {
  flex: none;
  margin-top: 24px;
  padding-right: 40px;
}

.project-header-wrapper {
  flex-direction: column;
  height: 100%;
  display: flex;
}

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

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