:root {
  --black: #021b29;
  --white: white;
  --orange: #f2a70c;
  --black-2: #01141f;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
}

h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 700;
  line-height: 60px;
}

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

h4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

h5 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

h6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 0;
  line-height: 1.788;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
}

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

blockquote {
  border-left: 5px solid var(--orange);
  background-color: var(--black);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-bottom: 0;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

figure {
  margin-bottom: 0;
}

figcaption {
  text-align: center;
  margin-top: 10px;
}

.page-wrapper {
  overflow: hidden;
}

.hero-section {
  background-color: #5e1010;
}

.hero-container {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding: 119px 5% 120px;
  display: flex;
  position: relative;
}

.hero-image {
  opacity: .8;
  max-height: 90%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.hero-content {
  z-index: 20;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  display: flex;
  position: relative;
}

.h1 {
  text-align: center;
  font-size: 54px;
}

.h1.paratext {
  font-family: Spectral SC, sans-serif;
}

.hero-subtitle {
  color: rgba(255, 255, 255, .5);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
}

.hero-subtitle.paratext {
  font-family: PT Serif, serif;
  font-size: 22px;
}

.button-wrapper {
  margin-top: 40px;
}

.button {
  background-color: var(--orange);
  color: var(--black-2);
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.section {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.dark-bg {
  background-color: var(--black-2);
}

.section.about-bg {
  background-color: #161212;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}

.navigation {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  position: fixed;
  top: 40px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.logo-wrapper {
  background-color: var(--orange);
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  width: 130px;
  height: 60px;
  transition: width .2s;
  display: flex;
  overflow: hidden;
}

.logo-wrapper.w--current {
  width: 200px;
}

.nav-menu {
  background-color: var(--orange);
  color: var(--black-2);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 4px;
  min-width: 160px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  top: 60px;
  bottom: auto;
  left: auto;
  right: 40px;
}

.menu-button {
  background-color: var(--orange);
  color: var(--black-2);
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 4px;
  align-items: center;
  width: 160px;
  height: 60px;
  padding: 0;
  font-size: 14px;
  font-weight: 800;
  transition: border-radius .4s cubic-bezier(.678, .009, .25, 1);
  display: flex;
}

.menu-button.w--open {
  background-color: var(--orange);
  color: var(--black-2);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.menu-button-container {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.burger-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 6px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  display: grid;
}

.burger-line {
  background-color: var(--black-2);
  width: 24px;
  height: 2px;
}

.nav-link {
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-link.w--current {
  color: var(--black-2);
  text-decoration: line-through;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.logo {
  width: 30px;
  margin-left: 15px;
}

.nav-center-wrapper {
  align-items: center;
  height: auto;
  text-decoration: none;
  transition: opacity .2s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.nav-dot {
  background-color: var(--orange);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  display: flex;
  position: relative;
}

.nav-center-text {
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
}

.portfolio-item-list {
  grid-column-gap: 0px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.portfolio-image-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  overflow: hidden;
}

.portfolio-image {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 240px;
  display: block;
}

.lightbox-link {
  border-radius: 4px;
  position: relative;
}

.portfolio-item {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.h3 {
  margin-bottom: 0;
}

.portfolio-title-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.tag {
  background-color: var(--black);
  color: rgba(255, 255, 255, .5);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 600;
}

.tags-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  display: grid;
}

.portfolio-image-overlay {
  z-index: 50;
  opacity: 0;
  -webkit-text-fill-color: inherit;
  background-color: rgba(242, 167, 12, .8);
  background-clip: border-box;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.view-text {
  background-color: var(--black-2);
  color: var(--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
}

.button-arrow-down {
  margin: -1px 0 0 8px;
  font-weight: 800;
  position: static;
}

.portfolio-button {
  background-color: var(--orange);
  color: var(--black-2);
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 4px;
  justify-content: space-between;
  align-self: flex-end;
  align-items: center;
  margin-top: 20px;
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.h3-number-span {
  color: var(--orange);
  font-size: 18px;
}

.title-wrapper {
  margin-bottom: 60px;
}

.large-text {
  color: rgba(255, 255, 255, .5);
  max-width: 600px;
  font-size: 18px;
  font-weight: 500;
}

.about-wrapper {
  grid-column-gap: 120px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 440px 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: center;
  justify-content: start;
  align-items: center;
  justify-items: start;
  display: grid;
}

.about-image {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  max-width: 440px;
}

.about-text {
  color: rgba(255, 255, 255, .5);
  margin-top: 20px;
}

.orange-span {
  color: var(--orange);
}

.about-right-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.logo-showcase-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.client-logo-block {
  background-color: var(--black);
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  display: flex;
}

.client-logo {
  opacity: .5;
  width: 140px;
}

.testimonial-wrapper {
  max-width: 800px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.testimonial-slide-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.testimonial-text {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-style: italic;
}

.testimonee-wrapper {
  align-items: center;
  display: flex;
}

.testimonee-image-mask {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  position: relative;
  overflow: hidden;
}

.testimonee-image {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: relative;
}

.testimonee-name {
  margin-bottom: 2px;
  font-weight: 500;
}

.testimonee-job {
  color: rgba(255, 255, 255, .5);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}

.quote-icon {
  opacity: .15;
  width: 60px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.testimonial-slider {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  padding-bottom: 80px;
}

.slide-nav {
  display: none;
}

.right-arrow {
  background-color: var(--orange);
  color: var(--black-2);
  border-radius: 50px;
  width: 80px;
  height: 32px;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 50%;
  transform: translate(90px);
}

.left-arrow {
  background-color: var(--orange);
  color: var(--black-2);
  border-radius: 50px;
  width: 80px;
  height: 32px;
  top: auto;
  bottom: 0%;
  left: 50%;
  right: auto;
  transform: translate(-90px);
}

.slide-arrow-icon {
  font-size: 16px;
  font-weight: 800;
}

.contact-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: center;
  display: grid;
}

.form-wrapper {
  background-color: var(--orange);
  color: var(--black-2);
  border-radius: 4px;
  padding: 40px;
}

.field {
  color: var(--black-2);
  border: 1px solid #fff;
  height: 50px;
  margin-bottom: 0;
  padding: 16px;
}

.field:active, .field:focus {
  border-color: var(--white);
}

.field-wrap {
  position: relative;
}

.error-message {
  background-color: var(--black-2);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.submit-button {
  float: right;
  background-color: var(--black-2);
  color: var(--white);
  border-radius: 4px;
  margin-top: 40px;
  padding: 16px 40px;
  font-weight: 700;
  transition: transform .2s;
}

.submit-button:hover {
  transform: translate(0, -4px);
}

.field-name {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
}

.textarea {
  border: 1px solid var(--white);
  color: var(--black-2);
  min-height: 160px;
  margin-bottom: 0;
  padding: 16px;
}

.textarea:active, .textarea:focus {
  border-width: 1px;
  border-color: var(--white);
}

.success-message {
  background-color: var(--black-2);
  color: var(--white);
  font-weight: 500;
}

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

.form-block {
  margin-bottom: 0;
}

.checkbox-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}

.checkbox-label {
  font-size: 14px;
}

.checkbox {
  border-color: var(--black-2);
  overflow: visible;
  box-shadow: 0 0 rgba(0, 0, 0, 0);
}

.checkbox.w--redirected-checked {
  border-color: var(--black-2);
  background-color: var(--black-2);
  box-shadow: 0 0 rgba(0, 0, 0, 0);
}

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

.contact-image {
  border: 2px solid var(--orange);
  border-radius: 50%;
  width: 120px;
  margin-bottom: 20px;
}

.footer {
  background-color: var(--orange);
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.social-circle-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  display: grid;
}

.social-circle {
  background-color: var(--black-2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: transform .2s;
  display: flex;
}

.social-circle:hover {
  transform: translate(0, -4px);
}

.social-icon {
  width: 16px;
}

.footer-link-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-link {
  color: var(--black-2);
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  text-decoration: underline;
}

.slash {
  color: var(--black-2);
  margin-left: 10px;
  margin-right: 10px;
}

.button-icon {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 800;
}

.text-logo {
  width: 130px;
  transition: opacity .2s;
  display: block;
  position: absolute;
  left: 55px;
}

.about-image-top {
  position: relative;
  transform: rotate(15deg);
}

.about-image-bottom {
  position: relative;
  transform: rotate(-15deg);
}

.about-image-overlay-bottom {
  z-index: 50;
  background-color: var(--black);
  height: 102%;
  position: absolute;
  top: -1%;
  bottom: 0%;
  left: -1%;
  right: auto;
}

.about-image-overlay-top {
  z-index: 50;
  background-color: var(--black);
  height: 102%;
  position: absolute;
  top: -1%;
  bottom: 0%;
  left: auto;
  right: -1%;
}

.nav-dot-expand {
  background-color: var(--orange);
  opacity: 1;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  margin-bottom: 0;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.utility-page-form {
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.password-field {
  color: var(--black-2);
  border: 1px solid #fff;
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  padding: 16px;
}

.password-field:active, .password-field:focus {
  border-color: var(--white);
}

._404-text {
  z-index: -1;
  color: rgba(255, 255, 255, .1);
  margin-bottom: 0;
  font-size: 280px;
  line-height: 1;
  position: absolute;
  transform: translate(0, 32.5px);
}

.licenses-list {
  grid-column-gap: 0px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  display: grid;
}

.license-block {
  grid-column-gap: 80px;
  grid-row-gap: 40px;
  background-color: var(--black);
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  justify-items: start;
  width: 100%;
  min-height: 120px;
  padding: 40px 80px;
  display: grid;
}

.license-left-wrapper {
  align-items: center;
  display: flex;
}

.license-image {
  object-fit: cover;
  width: 60px;
  margin-right: 40px;
  display: block;
}

.license-image.logoipsum {
  width: 120px;
}

.license-image.flaticon {
  width: 50px;
}

.license-image.unsplash {
  width: 120px;
}

.license-title {
  margin-bottom: 0;
  font-size: 24px;
}

.color-title {
  margin-bottom: 4px;
  font-weight: 700;
}

.color-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.color-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.color {
  background-color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.color.light-black {
  background-color: var(--black);
}

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

.color.dark-black {
  border: 1px solid var(--white);
  background-color: var(--black-2);
}

.color-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: start;
  align-items: center;
  justify-items: start;
  display: grid;
}

.typography-info-block {
  border: 1px solid rgba(255, 255, 255, .5);
  margin-top: 16px;
  padding: 12px 16px;
}

.rich-text {
  font-size: 18px;
  line-height: 1.6;
}

.rich-text blockquote {
  margin-top: 40px;
  margin-bottom: 40px;
}

.rich-text h2 {
  margin-top: 20px;
}

.rich-text p {
  margin-bottom: 20px;
}

.rich-text h3 {
  margin-top: 20px;
}

.rich-text figure {
  margin-top: 40px;
  margin-bottom: 40px;
}

.rich-text h6, .rich-text h5, .rich-text h4 {
  margin-top: 20px;
}

.rich-text ol, .rich-text ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

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

.typography-list {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: end;
  display: grid;
}

.typography-title {
  margin-bottom: 2px;
  font-weight: 700;
}

.butternut {
  padding-bottom: 20px;
}

.profile {
  border: 5px solid var(--orange);
  border-radius: 8px;
  margin-bottom: 15px;
}

.html-embed {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .hero-container {
    padding: 40px;
  }

  .hero-image {
    margin-top: 40px;
    position: relative;
  }

  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }

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

  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .portfolio-item-list {
    grid-row-gap: 80px;
  }

  .portfolio-image-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .logo-showcase-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-container, .utility-page-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .license-block {
    grid-template-columns: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .typography-list {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }
}

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

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

  .logo-wrapper {
    padding-left: 0;
  }

  .nav-center-wrapper {
    display: none;
  }

  .portfolio-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .tags-wrapper {
    margin-top: 10px;
  }

  .logo-showcase-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-container {
    flex-direction: column;
    justify-content: center;
  }

  .social-circle-wrapper {
    margin-bottom: 20px;
  }

  ._404-text {
    font-size: 240px;
  }

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

  .license-image {
    margin-bottom: 20px;
    margin-right: 0;
  }

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

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

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

  .hero-container {
    padding-top: 41px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .h1 {
    font-size: 34px;
  }

  .hero-subtitle {
    margin-top: .75em;
    font-size: 1em;
  }

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

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

  .navigation {
    padding-left: 20px;
    padding-right: 20px;
    top: 20px;
  }

  .nav-menu {
    min-width: 140px;
    right: 20px;
  }

  .menu-button {
    width: 140px;
  }

  .portfolio-image {
    height: 110px;
  }

  .tag {
    font-size: 12px;
  }

  .h2 {
    max-width: 320px;
    font-size: 32px;
  }

  .about-text {
    text-align: left;
    object-fit: fill;
    flex: 0 auto;
    width: 100%;
    max-width: 320px;
    display: block;
    position: static;
    overflow: visible;
  }

  .about-right-wrapper {
    flex-wrap: nowrap;
    align-content: flex-end;
    width: 320px;
    position: static;
    overflow: visible;
  }

  .client-logo-block {
    height: 100px;
  }

  .client-logo {
    width: 100px;
  }

  .testimonial-wrapper {
    margin-top: 80px;
  }

  .form-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .footer-container, .utility-page-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._404-text {
    font-size: 160px;
  }

  .license-block {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 991px) {
  #w-node-bfd49f03-754c-3a9c-d277-452e387eb0e7-f1cff0b7 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bfd49f03-754c-3a9c-d277-452e387eb0e7-f1cff0b7 {
    justify-self: auto;
  }
}


