:root {
  --background: #161719;
  --paragraphs: #d9d9d9;
  --main: #eee;
  --open-navbar: #101113;
  --border: #2e2f30;
}

.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(--background);
  color: var(--paragraphs);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7em;
}

h1 {
  color: var(--main);
  margin-top: 15px;
  margin-bottom: 26px;
  font-family: Open Sans, sans-serif;
  font-size: 57px;
  font-weight: 400;
  line-height: 1.28em;
}

h2 {
  color: var(--main);
  margin-top: 15px;
  margin-bottom: 24px;
  font-family: Open Sans, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.25em;
}

h3 {
  color: var(--main);
  margin-top: 15px;
  margin-bottom: 20px;
  font-family: Open Sans, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.28em;
}

h4 {
  color: var(--main);
  margin-top: 10px;
  margin-bottom: 18px;
  font-family: Open Sans, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.28em;
}

h5 {
  color: var(--main);
  margin-top: 10px;
  margin-bottom: 17px;
  font-family: Open Sans, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.28em;
}

h6 {
  color: var(--main);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: Open Sans, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6em;
}

p {
  margin-bottom: 20px;
  font-family: Open Sans, sans-serif;
}

a {
  color: var(--paragraphs);
  text-decoration: underline;
  transition: color .3s ease-out;
}

a:hover {
  color: var(--main);
}

ul, ol {
  color: var(--main);
  margin-top: 25px;
  margin-bottom: 25px;
  padding-left: 35px;
}

li {
  padding-left: 12px;
  font-family: Open Sans, sans-serif;
}

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

blockquote {
  border-left: 2px solid var(--main);
  color: var(--main);
  letter-spacing: .02em;
  margin-top: 22px;
  margin-bottom: 22px;
  padding: 10px 20px 10px 30px;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6em;
}

figure {
  margin-top: 40px;
  margin-bottom: 40px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 15px;
}

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

.subtitle {
  cursor: default;
  margin-top: 5px;
  margin-bottom: 0;
}

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

.title-project {
  float: left;
  margin-top: 4px;
  margin-bottom: 1px;
  position: static;
}

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

.block-project {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 53px;
  margin-bottom: 53px;
  display: flex;
}

.block-project.center {
  align-items: center;
}

.underline {
  background-color: var(--main);
  transform-origin: 0%;
  width: 100%;
  height: 2px;
}

.background-image {
  z-index: -50;
  opacity: 0;
  filter: brightness(65%);
  background-image: url('../images/usbank-bento-hero.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 4px;
  width: 80vw;
  height: 80vh;
  margin: auto;
  position: fixed;
  inset: 0%;
}

.background-image.project-one {
  background-image: url('../images/twilio-bento-hero.png');
}

.background-image.project-two {
  background-image: url('../images/zenni-bento-hero.png');
}

.background-image.project-three {
  background-image: url('../images/workos-bento-hero.png');
  min-height: 100%;
}

.background-image.project-four {
  min-height: 100%;
}

.empty-state {
  background-color: #0000;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.empty-text {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.link-block-project {
  width: 100%;
  text-decoration: none;
  overflow: hidden;
}

.background-video {
  z-index: -100;
  filter: saturate(80%) brightness(40%);
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  inset: 0%;
}

.section-hero {
  padding-top: 180px;
  padding-bottom: 180px;
  font-family: Open Sans, sans-serif;
}

.nav-menu {
  z-index: 100;
  background-color: var(--open-navbar);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Open Sans, sans-serif;
  position: fixed;
  inset: 0%;
}

.menu-button {
  z-index: 500;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 13px;
  display: flex;
}

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

.navbar {
  z-index: 50;
  background-color: #0000;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  inset: 0% 0% auto;
}

.block-links {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.nav-link {
  color: var(--main);
  padding: 0 0 6px;
  font-size: 57px;
  line-height: 1em;
}

.nav-link.w--current {
  color: var(--main);
}

.block-nav-link {
  margin-top: 22px;
  margin-bottom: 22px;
}

.underline-nav-link {
  background-color: var(--main);
  transform-origin: 0%;
  width: 100%;
  height: 2px;
}

.brand {
  padding: 10px 13px;
}

.block-navbar {
  justify-content: space-between;
  align-items: center;
  padding-top: 27px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.icon-menu {
  display: block;
  position: absolute;
}

.body {
  background-color: var(--background);
}

.block-subtitle {
  overflow: hidden;
}

.icon-close {
  opacity: 0;
  position: absolute;
}

.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;
  margin-left: 21px;
  margin-right: 21px;
  display: flex;
}

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

.section-page {
  transform-origin: 50% 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 110px 40px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  perspective: 1000px;
  transform: ;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1300px;
}

.about-image {
  filter: none;
  background-image: url('../images/headshot.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 718px;
}

.block-about-image {
  position: relative;
}

.block-name {
  z-index: 10;
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
  position: absolute;
  inset: 326px 0% 0% 124px;
  transform: translate3d(0, 0, 80px);
}

.name {
  color: var(--main);
  flex: none;
  font-size: 130px;
  font-weight: 200;
  line-height: 1em;
  transform: rotate(-90deg);
}

.right-block {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 20%;
  display: flex;
}

.border-space {
  background-color: var(--border);
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.info-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-auto-flow: column;
  width: 100%;
}

.secondary-info-block {
  border-left: 1px solid var(--border);
  padding-left: 45px;
}

.link-info {
  font-size: 15px;
  text-decoration: none;
  display: block;
}

.first-info-block {
  padding-right: 45px;
}

.paragraph {
  max-width: 470px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.main-heading {
  margin-top: 0;
  margin-bottom: 22px;
}

.title-info {
  margin-top: 0;
  margin-bottom: 12px;
}

.paragraph-info {
  margin-bottom: 0;
  font-size: 15px;
}

.left-block {
  border-right: 1px solid var(--border);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 20%;
  display: flex;
}

.title-contact {
  color: var(--main);
  margin-top: 0;
  margin-bottom: 0;
}

.subtitle-contact {
  color: var(--paragraphs);
  margin-top: 0;
  margin-bottom: 8px;
}

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

.form-block {
  width: 100%;
  margin-top: 25px;
}

.text-field {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--paragraphs);
  color: var(--main);
  background-color: #0000;
  border-radius: 0;
  height: 44px;
  margin-bottom: 0;
  padding: 10px 0;
  font-size: 15px;
  transition: border-color .3s ease-out;
}

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

.textarea {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--paragraphs);
  color: var(--main);
  background-color: #0000;
  border-radius: 0;
  min-width: 100%;
  max-width: 100%;
  min-height: 44px;
  max-height: 300px;
  margin-bottom: 0;
  padding: 10px 0;
  font-size: 15px;
  transition: border-color .3s ease-out;
}

.textarea:focus {
  border-bottom-color: var(--main);
}

.submit-button {
  border: 2px solid var(--main);
  text-align: center;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background-color: #0000;
  margin-top: 20px;
  padding: 15px 40px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6em;
  transition: color .3s ease-out, background-color .3s ease-out;
}

.submit-button:hover {
  background-color: var(--main);
  color: var(--background);
}

.success-message {
  border: 2px solid var(--main);
  background-color: #0000;
}

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

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

.text-error {
  color: #cc3131;
}

.content {
  width: 100%;
  max-width: 900px;
  margin-top: 60px;
}

.image-project {
  width: 100%;
  max-width: 1500px;
}

.single-title {
  margin-top: 0;
  margin-bottom: 0;
}

.info-grid-project {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-flow: column;
  width: 100%;
}

.footer {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.logo-footer {
  opacity: .5;
  margin-right: 18px;
}

.link-footer {
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6em;
  text-decoration: none;
}

.grid-style-color {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 25px;
}

.main-color {
  background-color: var(--main);
  height: 80px;
  margin-bottom: 12px;
}

.paragraphs-color {
  background-color: var(--paragraphs);
  height: 80px;
  margin-bottom: 12px;
}

.border-color {
  background-color: var(--border);
  height: 80px;
  margin-bottom: 12px;
}

.background-color {
  border: 1px solid var(--border);
  background-color: var(--background);
  height: 80px;
  margin-bottom: 12px;
}

.open-navbar-color {
  border: 1px solid var(--border);
  background-color: var(--open-navbar);
  height: 80px;
  margin-bottom: 12px;
}

.button {
  border: 2px solid var(--main);
  color: var(--main);
  text-align: center;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background-color: #0000;
  padding: 15px 40px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6em;
  transition: color .3s ease-out, background-color .3s ease-out;
}

.button:hover {
  background-color: var(--main);
  color: var(--background);
}

.button.small {
  padding: 10px 30px;
}

.button-fill {
  border: 2px solid var(--main);
  background-color: var(--main);
  color: var(--background);
  text-align: center;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 15px 40px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6em;
  transition: color .3s ease-out, background-color .3s ease-out;
}

.button-fill:hover {
  color: var(--main);
  background-color: #0000;
}

.button-fill.small {
  padding: 10px 30px;
}

.column {
  padding-top: 10px;
  padding-bottom: 10px;
}

.grid-license {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.text-not-found {
  margin-bottom: 30px;
}

.background-for-color {
  z-index: -50;
  opacity: 0;
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  inset: 0%;
}

.background-image-color {
  filter: brightness(85%);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 90vw;
  max-width: 1400px;
  height: 80vh;
  max-height: 800px;
}

.block-center-image-color {
  z-index: -30;
  perspective: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.link-block-splash {
  opacity: .8;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: transform .3s ease-out, opacity .3s ease-out;
}

.link-block-splash:hover {
  opacity: 1;
  transform: scale(1.03);
}

.background-image-follow {
  z-index: -50;
  opacity: 0;
  filter: brightness(85%);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 60vw;
  height: 60vh;
  position: fixed;
  inset: 0%;
}

.background-image-follow.project-one {
  background-image: url('../images/twilio-bento-hero.png');
  background-size: contain;
}

.background-image-follow.project-two {
  background-image: url('../images/zenni-bento-hero.png');
  background-size: contain;
}

.background-image-follow.project-three {
  background-image: url('../images/workos-bento-hero.png');
  background-size: contain;
}

.background-image-follow.project-four {
  background-image: url('../images/usbank-bento-hero.png');
  background-size: contain;
}

.title-project-follow {
  float: left;
  height: auto;
  margin-top: 4px;
  margin-bottom: 1px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 30px;
  line-height: 2.5em;
  position: static;
}

.title-project-follow.center {
  text-align: center;
}

.link-footer-icon {
  padding-right: 1em;
}

@media screen and (max-width: 991px) {
  h1 {
    margin-top: 13px;
    margin-bottom: 22px;
    font-size: 52px;
  }

  h2 {
    margin-top: 13px;
    margin-bottom: 20px;
    font-size: 45px;
  }

  h3 {
    margin-top: 13px;
    margin-bottom: 16px;
    font-size: 34px;
  }

  h4 {
    margin-top: 8px;
    margin-bottom: 14px;
    font-size: 28px;
  }

  h5 {
    margin-bottom: 15px;
    font-size: 21px;
  }

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

  .section-hero {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .nav-link {
    font-size: 48px;
  }

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

  .about-image {
    height: 662px;
  }

  .block-name {
    top: 295px;
    left: 55px;
  }

  .name {
    font-size: 104px;
  }

  .right-block {
    padding-left: 14%;
  }

  .secondary-info-block {
    padding-left: 35px;
  }

  .first-info-block {
    padding-right: 35px;
  }

  .paragraph-info {
    line-height: 1.6em;
  }

  .left-block {
    padding-right: 14%;
  }

  .content {
    margin-top: 37px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 20px;
  }

  ul, ol {
    padding-left: 25px;
  }

  blockquote {
    padding-left: 22px;
    font-size: 18px;
  }

  .block-project {
    margin-top: 43px;
    margin-bottom: 43px;
  }

  .section-hero {
    padding-top: 125px;
    padding-bottom: 125px;
  }

  .nav-link {
    font-size: 40px;
  }

  .block-nav-link {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .block-navbar {
    padding-top: 17px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo {
    max-width: 85%;
  }

  .section-page {
    padding: 85px 30px 42px;
  }

  .grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .about-image {
    height: 610px;
  }

  .block-name {
    top: 319px;
    left: 33px;
  }

  .name {
    font-size: 70px;
  }

  .right-block {
    padding-left: 0;
  }

  .border-space {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .secondary-info-block {
    padding-left: 20px;
  }

  .first-info-block {
    padding-right: 20px;
  }

  .title-info {
    margin-bottom: 8px;
  }

  .left-block {
    border-right-style: none;
    padding-right: 0;
  }

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

  .footer {
    flex-direction: column;
  }

  .logo-footer {
    margin-bottom: 10px;
    margin-right: 0;
  }

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

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

@media screen and (max-width: 479px) {
  h1 {
    margin-bottom: 18px;
    font-size: 40px;
  }

  h2 {
    margin-bottom: 16px;
    font-size: 32px;
  }

  h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  h4 {
    font-size: 23px;
  }

  h5 {
    font-size: 18px;
  }

  .block-project {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .section-hero {
    padding-top: 115px;
    padding-bottom: 115px;
  }

  .nav-link {
    font-size: 38px;
  }

  .block-nav-link {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .brand {
    justify-content: center;
    align-items: center;
  }

  .block-navbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-page {
    padding-bottom: 34px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-image {
    height: 460px;
  }

  .block-name {
    top: 243px;
    left: 6px;
  }

  .name {
    font-size: 60px;
  }

  .border-space {
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .secondary-info-block {
    border-top: 1px solid var(--border);
    border-left-style: none;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0;
  }

  .first-info-block {
    padding-top: 0;
    padding-bottom: 20px;
    padding-right: 0;
  }

  .title-info {
    margin-bottom: 6px;
  }

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

  .form-block {
    margin-top: 16px;
  }

  .content {
    margin-top: 30px;
  }

  .info-grid-project {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
}

#w-node-_2570bc05-1ca5-3188-c1e6-693b6f83935b-1542df43, #w-node-_2a6dde5a-06e8-5294-5a4a-4c7fa72cc355-1542df43, #w-node-_4eb46507-fb9e-f317-5084-9979a4226cda-1542df43, #w-node-a87ced5f-b3de-ae8c-d0c3-c382fc70e4e2-1542df43 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6829b3e3-c4a5-4b2a-4e29-e9eba41cf655-1542df45, #w-node-_78d93fdd-e4fc-f15f-f177-eeb3ffdcc618-1542df45, #w-node-_89637ac1-e392-7884-35e7-3b3b79b2e0b7-1542df47 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#Message.w-node-be578f69-274d-20d5-77a4-ee8e22238b28-1542df47 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_78d93fdd-e4fc-f15f-f177-eeb3ffdcc618-1542df47 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3418172b-23e7-6985-fe0c-79eb03955d1b-1542df4b, #w-node-_3418172b-23e7-6985-fe0c-79eb03955d1b-1542df4c, #w-node-_3418172b-23e7-6985-fe0c-79eb03955d1b-aee3c219, #w-node-_2570bc05-1ca5-3188-c1e6-693b6f83935b-f6e5eb49, #w-node-_7f3cd8ba-3f50-64e5-edb2-ddacbaa1dba2-f6e5eb49, #w-node-_5d6650ff-d57f-afd5-491e-ac23a439fe8e-f6e5eb49, #w-node-_961ee603-678a-964f-66ff-1d7c322bd941-f6e5eb49 {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (max-width: 479px) {
  #Message.w-node-be578f69-274d-20d5-77a4-ee8e22238b28-1542df47 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


