.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

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

.hero-section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0f0f14;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 78vh;
  font-weight: 700;
  display: flex;
}

.hero-container {
  flex-flow: column;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.hero-heading {
  color: #f5f5f7;
  text-align: center;
  max-width: 900px;
  font-size: 64px;
  line-height: 1.1em;
}

.hero-paragraph {
  color: #a7a7b2;
  text-align: center;
  width: 100%;
  max-width: 650px;
  margin-top: 24px;
  font-size: 18px;
}

.hero-button {
  color: #fff;
  background-color: #7c3aed;
  border-radius: 8px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 28px;
  font-size: 16px;
  transition: transform .2s, opacity .2s;
}

.hero-button:hover {
  background-color: #6d28d9;
  transform: translate(0, -2px);
}

.projects-section {
  background-color: #17171f;
  padding-top: 80px;
  padding-bottom: 80px;
}

.projects-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.projects-heading {
  color: #f5f5f7;
  text-align: center;
  margin-bottom: 48px;
  font-size: 48px;
}

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

.project-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #22222c;
  border-radius: 12px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  min-height: 300px;
  transition: transform .3s;
  display: flex;
  overflow: hidden;
}

.project-card:hover {
  transform: translate(0, -6px);
  box-shadow: 0 18px 45px #7c3aed38;
}

.project-image {
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: 210px;
}

.project-title {
  color: #f5f5f7;
  margin-top: 16px;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 24px;
  line-height: 30px;
}

.project-description {
  color: #a7a7b2;
  margin: 8px 20px 20px;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.about-section {
  background-color: #0f0f14;
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-content {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-text, .about-image {
  width: 50%;
}

.about-heading {
  color: #f5f5f7;
  font-size: 48px;
  line-height: 53px;
}

.about-paragraph {
  color: #d1d1d8;
  margin-top: 24px;
  font-size: 18px;
  line-height: 28px;
}

.about-photo {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 400px;
}

.about-paragraph-secondary {
  color: #a7a7b2;
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
}

.contact-section {
  background-color: #17171f;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-container {
  max-width: 800px;
}

.contact-heading {
  color: #f5f5f7;
  text-align: center;
  font-size: 48px;
  line-height: 53px;
}

.contact-paragraph {
  color: #a7a7b2;
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  line-height: 28px;
}

.v {
  margin-top: 40px;
}

.contact-form-block {
  width: 100%;
  max-width: 700px;
  margin-top: 36px;
  margin-left: auto;
  margin-right: auto;
}

.contact-button {
  color: #fff;
  background-color: #7c3aed;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
}

.contact-button:hover {
  background-color: #6d28d9;
  transition: transform .2s, background-color .2s;
  transform: translate(0, -2px);
}

.contact-message {
  color: #f5f5f7;
  background-color: #22222c;
  border-radius: 8px;
  min-height: 140px;
  margin-bottom: 20px;
  padding-top: 14px;
  padding-left: 16px;
}

.contact-field {
  color: #f5f5f7;
  background-color: #22222c;
  border-radius: 8px;
  height: 50px;
  margin-bottom: 16px;
  padding-left: 16px;
}

.footer-section {
  background-color: #111827;
  padding-top: 32px;
  padding-bottom: 32px;
}

.footer-text {
  color: #a7a7b2;
  text-align: center;
  font-size: 14px;
}

.project-link, .link-block, .link-block-2 {
  text-decoration: none;
}

.site-nav {
  z-index: 50;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background-color: #0f0f14e0;
  border-bottom: 1px solid #ffffff0f;
  position: sticky;
  top: 0;
}

.site-nav-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
}

.site-brand {
  color: #a78bfa;
  letter-spacing: .08em;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav-links {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  align-items: center;
  display: flex;
}

.site-nav-link {
  color: #a7a7b2;
  font-size: 15px;
  text-decoration: none;
  transition: color .2s;
}

.site-nav-cta {
  color: #fff;
  background-color: #7c3aed;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 15px;
  text-decoration: none;
  transition: background-color .2s;
}

.developer-card {
  background-image: linear-gradient(145deg, #22222c, #17171f);
  border: 1px solid #7c3aed59;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 400px;
  padding: 28px;
  display: flex;
  box-shadow: 0 24px 70px #00000047;
}

.developer-card-top {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-bottom: 36px;
  display: flex;
}

.developer-dot {
  background-color: #7c3aed;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.developer-dot-two {
  opacity: .65;
  background-color: #7c3aed;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.developer-dot-three {
  opacity: .35;
  background-color: #7c3aed;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.developer-code {
  color: #d1d1d8;
  font-family: monospace;
  font-size: 16px;
  line-height: 1.9;
}

.developer-line {
  color: #8b8b98;
  margin: 0;
}

.developer-line-accent {
  color: #a78bfa;
  margin: 0;
}

.developer-badge {
  color: #c4b5fd;
  letter-spacing: .08em;
  background-color: #7c3aed24;
  border-radius: 999px;
  align-self: flex-start;
  margin-top: 34px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 700;
}

.hero-eyebrow {
  color: #c4b5fd;
  text-align: center;
  letter-spacing: 1.4px;
  background-color: #7c3aed14;
  border: 1px solid #7c3aed59;
  border-radius: 999px;
  margin-bottom: 18px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
}

.process-section {
  background-color: #0f0f14;
  padding: 96px 24px;
}

.process-container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.process-kicker {
  color: #a78bfa;
  text-align: center;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
}

.process-heading {
  color: #f5f5f7;
  text-align: center;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.15;
}

.process-intro {
  color: #a7a7b2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 28px;
}

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

.process-card {
  background-color: #17171f;
  border: 1px solid #2f2f3a;
  border-radius: 16px;
  padding: 28px;
}

.process-number {
  color: #8b5cf6;
  letter-spacing: 1px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 800;
}

.process-title {
  color: #f5f5f7;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 28px;
}

.process-text {
  color: #a7a7b2;
  margin: 0;
  font-size: 16px;
  line-height: 25px;
}

.phone-menu {
  margin-left: auto;
  display: none;
  position: relative;
}

.phone-menu-button {
  color: #fff;
  cursor: pointer;
  background-color: #17171f;
  border: 1px solid #353542;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  list-style: none;
  display: flex;
}

.phone-menu-icon {
  font-size: 24px;
  line-height: 1;
}

.phone-menu-dropdown {
  z-index: 1000;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #17171f;
  border: 1px solid #30303b;
  border-radius: 14px;
  flex-direction: column;
  width: 200px;
  padding: 10px;
  display: flex;
  position: absolute;
  top: 52px;
  right: 0;
  box-shadow: 0 20px 50px #00000073;
}

.phone-menu-item {
  color: #e5e5eb;
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

.phone-menu-item:hover {
  color: #fff;
  background-color: #252530;
}

.phone-menu-item-contact {
  color: #fff;
  background-color: #7c3aed;
}

.mobile-left-nav {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: none;
}

.mobile-home-link {
  color: #f5f5f7;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-left-menu {
  position: relative;
}

.mobile-left-trigger {
  color: #fff;
  cursor: pointer;
  background-color: #17171f;
  border: 1px solid #343442;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  list-style: none;
  display: flex;
}

.mobile-left-icon {
  font-size: 22px;
  line-height: 1;
}

.mobile-left-panel {
  z-index: 1000;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: #17171f;
  border: 1px solid #30303b;
  border-radius: 12px;
  flex-direction: column;
  width: 190px;
  padding: 10px;
  display: flex;
  position: absolute;
  top: 48px;
  left: 0;
  box-shadow: 0 18px 45px #0006;
}

.mobile-left-item {
  color: #e5e5eb;
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  text-decoration: none;
}

.mobile-left-item:hover {
  color: #fff;
  background-color: #24242e;
}

.mobile-left-contact {
  color: #fff;
  background-color: #7c3aed;
}

@media screen and (max-width: 991px) {
  .hero-heading {
    font-size: 52px;
  }

  .projects-heading {
    font-size: 40px;
  }

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

  .about-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .about-text, .about-image {
    width: 100%;
  }

  .about-heading, .contact-heading, .process-heading {
    font-size: 40px;
  }

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

@media screen and (max-width: 767px) {
  .hero-heading {
    font-size: 42px;
    line-height: 1.08em;
  }

  .about-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .site-nav-inner {
    padding: 14px 20px;
  }

  .site-nav-links {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
  }

  .site-nav-link {
    display: none;
  }

  .site-nav-cta {
    padding: 9px 14px;
  }

  .developer-card {
    min-height: 320px;
    padding: 22px;
  }

  .developer-code {
    font-size: 14px;
  }

  .phone-menu {
    display: block;
  }

  .site-nav-links-1 {
    display: none;
  }

  .mobile-left-nav {
    display: flex;
  }

  .site-brand-1, .site-nav-links-1-2, .phone-menu-1 {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    min-height: 72vh;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-heading {
    font-size: 36px;
  }

  .hero-paragraph {
    font-size: 16px;
  }

  .projects-section {
    padding-top: 64px;
    padding-bottom: 64px;
    display: block;
  }

  .projects-heading {
    margin-bottom: 32px;
    font-size: 32px;
  }

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

  .project-image {
    height: 190px;
  }

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

  .about-content {
    align-items: center;
  }

  .about-text {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-image {
    width: 100%;
  }

  .about-heading {
    font-size: 32px;
    line-height: 38px;
  }

  .about-photo {
    vertical-align: baseline;
    height: 280px;
  }

  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-heading {
    font-size: 32px;
  }

  .contact-paragraph {
    font-size: 16px;
  }

  .hero-eyebrow {
    letter-spacing: 1px;
    margin-bottom: 14px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .process-section {
    padding: 64px 20px;
  }

  .process-heading {
    font-size: 32px;
  }

  .process-intro {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 25px;
  }

  .process-card {
    padding: 22px;
  }
}


