:root {
  --colors--bg-color: #f2f2f2;
  --fonts--headings: Anton, sans-serif;
  --fonts--paragraph: "IBM Plex Sans", sans-serif;
  --colors--paragraph-color: #000c;
  --colors--accent-color: #1e4b64;
  --colors--element-color-02: #b3cdeb;
  --colors--line-color: #000;
  --colors--element-color: #c3dbf7;
  --colors--font-color: #000;
}

.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(--colors--bg-color);
  font-family: var(--fonts--headings);
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 59px;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 55px;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

p {
  font-family: var(--fonts--paragraph);
  color: var(--colors--paragraph-color);
  letter-spacing: .3px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

a {
  font-family: var(--fonts--paragraph);
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

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

li {
  padding-top: 4px;
  padding-bottom: 4px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

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

blockquote {
  text-transform: none;
  background-image: url('../images/Qoute-Right.svg'), url('../images/Qoute-Left.svg');
  background-position: 100% 100%, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  border: 1px #000;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px 114px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
}

figure {
  margin-bottom: 10px;
}

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

.white-colors-show-case {
  background-color: #fff;
  border-radius: 300px;
  width: 54px;
  height: 54px;
  box-shadow: 0 0 9px #00000047;
}

.yellow-color-show-case {
  background-color: #7878ec;
  border-radius: 300px;
  width: 54px;
  height: 54px;
}

.yellow-color-show-case.orange {
  background-color: #141414;
}

.color-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

.black-background {
  background-color: #f1f1f1;
}

.color-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

._4-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.black-background-padding {
  padding: 40px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 3em 2em;
  position: relative;
}

.container.navbar-container {
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.container.no-paddings {
  padding-top: 0;
  padding-bottom: 0;
}

.container.hero-container {
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

._100width {
  width: 100%;
}

.border-box {
  border: 1px solid #cdcdcd;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.button {
  background-color: var(--colors--accent-color);
  font-family: var(--fonts--paragraph);
  color: #fff;
  border-radius: 200px;
  padding: 12px 32px;
  font-size: 17px;
  font-weight: 400;
  transition: transform .325s cubic-bezier(.175, .885, .32, 1.275), background-position .25s, background-color .45s;
}

.button:hover {
  color: #fff;
  background-color: #222;
  transform: scale(1.05);
}

.button.outline {
  color: #000;
  text-align: center;
  background-color: #fff0;
  border: 2px solid #000;
  transition: color .375s, transform .325s cubic-bezier(.175, .885, .32, 1.275), background-position .25s, background-color .45s;
}

.button.outline:hover {
  color: #fff;
  background-color: #000;
}

.button.white {
  color: #000;
  background-color: #fff;
}

.button.outline-white {
  color: #fff;
  text-transform: uppercase;
  background-color: #fff0;
  border: 1px solid #fff;
  font-size: 20px;
  font-weight: 300;
  transition: color .375s, transform .325s cubic-bezier(.175, .885, .32, 1.275), background-position .25s, background-color .45s;
}

.button.outline-white:hover {
  color: #000;
  background-color: #fff;
}

.button.with-arrow {
  background-image: url('../images/Arrrow.svg');
  background-position: 89%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 64px;
}

.style-guide-box-holder {
  background-color: #dfdfdf;
  padding: 20px;
}

.style-guide-box-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.colors-buttons {
  grid-column-gap: 90px;
  align-items: center;
  display: flex;
}

.section {
  margin-top: -4px;
  position: relative;
}

.section.hero-section {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  margin-top: -70px;
  display: flex;
}

.section.footer {
  background-color: var(--colors--element-color-02);
}

.section.overflow-hidden {
  overflow: hidden;
}

.section.sticky-section {
  width: 100%;
  position: sticky;
  top: 0;
}

.section.accent-color {
  background-color: var(--colors--accent-color);
  margin-top: -80px;
}

.button-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: #ddd;
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

._8-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._6-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cols-text {
  font-size: 15px;
  font-weight: 400;
}

.paragraph-xl {
  font-family: Switzer variable;
  font-size: 24px;
  line-height: 1.5;
}

.navbar {
  z-index: 20;
  border-bottom: 2px solid var(--colors--line-color);
  background-color: var(--colors--bg-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  display: flex;
  position: sticky;
  inset: 0% 0% auto;
}

.navbar-holder {
  width: 100%;
  height: 100%;
}

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

.title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.black-text {
  color: #000;
  font-weight: 600;
}

.featured-logo-wrapper {
  width: 110px;
}

.title-container {
  max-width: 762px;
}

.paragraph-holder {
  max-width: 400px;
}

.early-access-tag-holder {
  grid-column-gap: 10px;
  align-items: center;
  font-family: IBM Plex Sans Hebrew;
  font-size: 18px;
  display: flex;
}

.early-access-title-holder {
  max-width: 349px;
}

.power-feature-heading {
  font-size: 20px;
}

.hide {
  display: none;
}

.pricing-tag {
  text-transform: uppercase;
  border: 1px solid #fff3;
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 18px;
}

.pricing-header {
  font-size: 42px;
  font-weight: 500;
}

.pricing-list-holder {
  border-top: 1px solid #414142;
  border-bottom: 1px solid #414142;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 55px;
  padding-bottom: 55px;
}

.checked-list-holder {
  grid-column-gap: 18px;
  align-items: center;
  display: flex;
}

.pricing-footer-holder {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cta-form-holder {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 32px;
  display: flex;
  position: relative;
}

.cta-form-holder.no-paddings {
  grid-column-gap: 30px;
  flex-direction: row;
  padding-top: 13px;
  padding-bottom: 13px;
}

.error-message {
  background-color: var(--colors--element-color);
  font-family: var(--fonts--paragraph);
  color: var(--colors--font-color);
  text-align: center;
  border: 2px solid #ff5b5b;
  border-radius: 0;
  width: 100%;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}

.error-message::placeholder {
  color: #7d7d7d;
  font-family: IBM Plex Sans Hebrew;
  font-size: 15px;
}

.help-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.help-container {
  border-right: 1px solid #e7e7e7;
  min-width: 270px;
  padding-top: 80px;
  position: relative;
}

.help-content-holder {
  grid-row-gap: 30px;
  flex-direction: column;
  padding-top: 80px;
  display: flex;
}

.help-back-link-holder {
  grid-column-gap: 8px;
  color: var(--colors--font-color);
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  transition: color .4s;
  display: flex;
}

.help-back-link-holder:hover {
  color: #c7482c;
}

.help-icon-holder {
  width: 8px;
}

.help-icon {
  width: 100%;
}

.help-link-holder {
  grid-row-gap: 20px;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.help-link-container {
  z-index: 3;
  grid-column-gap: 16px;
  opacity: .71;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
  left: 2px;
}

.help-link-container.w--current {
  opacity: 1;
  border-right: 3px solid #c7482c;
}

.help-link-icon-holder {
  width: 26px;
}

.help-link-icon {
  filter: invert();
  width: 100%;
}

.help-center-pragraph-holder {
  max-width: 570px;
}

.figma-file-holder {
  margin-top: 40px;
  margin-bottom: 40px;
}

.figma-file-container {
  grid-column-gap: 32px;
  opacity: 1;
  background-color: #fff;
  border: 1px solid #000;
  align-items: flex-start;
  padding: 26px;
  display: flex;
  overflow: hidden;
}

.figma-file-container.center {
  white-space: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.figma-file-icon-holder {
  width: 41px;
  min-width: 41px;
  height: 41px;
}

.figla-file-icon {
  filter: invert();
  width: 100%;
}

.figma-file-content-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.figma-header {
  font-size: 24px;
}

.full-width-image-holder {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

.full-width-image {
  border-radius: 0;
  width: 100%;
}

.sticky {
  position: sticky;
  top: 85px;
}

.link {
  text-decoration: underline;
  transition: color .375s;
}

.link:hover {
  color: #afafaf;
}

.change-log-block-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  margin-top: -70px;
  padding-top: 70px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 600px;
  display: flex;
}

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

._404 {
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  color: #fff;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.menu-button {
  justify-content: center;
  align-items: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
}

.menu-button.w--open {
  z-index: 20;
  background-color: #c8c8c800;
}

.reviews-logos-holder {
  align-items: center;
  padding-bottom: 8em;
  display: flex;
  overflow: hidden;
}

.deploying-app-title-holder {
  max-width: 440px;
  margin-bottom: 20px;
}

.deploying-app-link-holder {
  grid-column-gap: 8px;
  align-items: center;
  margin-top: 32px;
  font-family: Inter;
  font-size: 16px;
  display: flex;
}

.deploying-app-paragraph-holder {
  max-width: 530px;
}

.gradient-line {
  opacity: .5;
  background-image: linear-gradient(to right, #ebebeb00, #ebebeb 17% 81%, #ebebeb00);
  width: 100%;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.data-collection-tab-holder {
  padding-top: 58px;
  padding-bottom: 58px;
}

.hero-card {
  perspective: 1500px;
}

.contact-text-field {
  font-family: var(--fonts--paragraph);
  color: var(--colors--font-color);
  background-color: #fff0;
  border: 1px #000;
  border-bottom-style: solid;
  height: 60px;
  margin-bottom: 0;
  padding: 0;
  font-size: 17px;
  font-weight: 400;
  transition: border-color .375s;
}

.contact-text-field:hover {
  border-bottom-color: #595550;
}

.contact-text-field:focus {
  border-bottom-color: #c7482c;
}

.contact-text-field::placeholder {
  color: var(--colors--paragraph-color);
}

.submit-button-simple {
  border: 2px solid var(--colors--font-color);
  background-color: var(--colors--element-color);
  color: #595550;
  letter-spacing: 1px;
  background-image: url('../images/Black-Arrow_1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 0;
  width: 100px;
  min-width: 100px;
  height: 60px;
  min-height: 60px;
  padding: 25px 7px 0 4px;
  font-family: Switzer variable;
  font-size: 24px;
  font-weight: 600;
  transition: background-color .3s;
}

.submit-button-simple:hover {
  background-color: #b9b9b9;
}

.nav-menu-link-holder {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.nav-links {
  z-index: 3;
  grid-column-gap: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: font-variation-settings .8s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
  position: relative;
}

.nav-link-big {
  opacity: .7;
  font-family: var(--fonts--paragraph);
  color: var(--colors--font-color);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
}

.nav-link-big:hover {
  opacity: 100;
  color: var(--colors--accent-color);
}

.nav-link-big.w--current {
  opacity: 100;
  color: var(--colors--font-color);
  margin-top: 12px;
  padding-bottom: 12px;
}

.nav-menu-wrapper {
  z-index: 2;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  display: flex;
  overflow: hidden;
}

.menu-holder {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.nav-wrapper {
  z-index: 2;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.black-line-text-container {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.menu-text {
  font-family: var(--fonts--paragraph);
  font-size: 18px;
  font-weight: 500;
}

.horizontal-scrolling-wrapper {
  height: 250vh;
}

.section-title {
  justify-content: space-between;
  align-items: center;
  font-size: 40px;
  font-weight: 700;
}

.footer-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  align-items: stretch;
  padding-top: 80px;
  padding-bottom: 30px;
  display: flex;
}

.footer-gird {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 95%;
  display: flex;
  position: relative;
}

.drop-a-line-text {
  width: 100%;
}

.footer-info-holder {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.footer-title {
  z-index: 1;
  font-family: var(--fonts--headings);
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  position: relative;
}

.footer-link {
  z-index: 1;
  font-size: 20px;
  font-weight: 500;
  transition: color .45s;
  position: relative;
}

.footer-link:hover {
  color: var(--colors--accent-color);
}

.featured-work-link {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.project-template-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  padding-bottom: 30px;
  display: flex;
}

.project-template-image-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.project-details-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 0;
  display: flex;
}

.project-details-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.rich-text-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.rich-text {
  max-width: 60%;
}

.offer-title {
  font-size: 24px;
  font-weight: 600;
}

.offer-description {
  color: #5e5e5e;
  font-size: 16px;
}

.offer-image {
  object-fit: cover;
  width: 100%;
  height: 270px;
}

.offer-button-holder {
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}

.divider-up {
  background-color: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 40px 0% auto;
}

.hero-section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
  display: flex;
}

.divider {
  background-color: #000;
  width: 100%;
  height: 2px;
  margin: 60px auto;
}

.about-me-title {
  color: var(--colors--accent-color);
  letter-spacing: -6px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 100px;
  font-weight: 700;
  line-height: .9;
  position: relative;
}

.about-me-title._02 {
  position: absolute;
  inset: auto auto -64% 0%;
}

.project-image-holder {
  width: 100%;
  position: relative;
}

.project-title {
  font-family: var(--fonts--headings);
  text-transform: uppercase;
  font-size: 27px;
  font-weight: 400;
}

.animate-on-load-03 {
  width: 100%;
}

.project-title-red {
  color: var(--colors--font-color);
  text-align: left;
  text-transform: uppercase;
  font-size: 60px;
}

.back-button-icon {
  transform: rotate(-180deg);
}

.project-summery-holder {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.project-summery-text {
  text-align: left;
}

.project-summery-wrapper {
  max-width: 80%;
}

.nav-logo {
  font-family: var(--fonts--headings);
  color: var(--colors--font-color);
  text-transform: uppercase;
  padding: 0;
  font-size: 30px;
  font-weight: 400;
}

.nav-logo.w--current {
  color: var(--colors--font-color);
}

.hero-section-content {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: end center;
  display: grid;
}

.title-caps {
  font-family: var(--fonts--headings);
  text-transform: uppercase;
  margin-top: 0;
  font-size: 64px;
  font-style: normal;
}

.hero-image {
  width: 90%;
}

.hero-section-wrapper {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-top: -70px;
  padding-top: 69px;
  display: flex;
  overflow: hidden;
}

.infinite-scroll-holder {
  background-color: var(--colors--element-color);
  border-bottom: 2px solid #000;
  flex: none;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
}

.infinite-scroll-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: none;
  width: auto;
  display: flex;
}

.infinite-scroll {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.infinite-text {
  text-transform: uppercase;
  font-size: 29px;
}

.section-spacing {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
}

.center-text {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-holder.small-width {
  max-width: 600px;
}

.paragraph-holder-section {
  max-width: 560px;
}

.paragraph-holder-section.smaller {
  max-width: 430px;
}

.grid-3x {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.card {
  border: 2px solid var(--colors--font-color);
  background-color: var(--colors--element-color);
}

.card-container {
  grid-column-gap: 140px;
  grid-row-gap: 140px;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.card-image {
  object-fit: contain;
  width: 120px;
  height: 100px;
}

.card-image._03 {
  position: relative;
  left: -12px;
}

.card-content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.card-title {
  font-size: 32px;
}

.card-title.large {
  font-size: 67px;
}

.line {
  background-color: var(--colors--line-color);
  width: 100%;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
}

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

.project-grid-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  padding-left: 40px;
  display: flex;
  position: relative;
}

.project-box {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.project-image {
  width: 100%;
}

.project-info {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.black-arrow {
  width: 32px;
}

.project-collection, .project-list, .project-item-cms {
  width: 100%;
}

.project-grid {
  grid-column-gap: 16px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.project-text-container {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 120px;
}

.short-testimonial-logo {
  object-fit: cover;
  border-radius: 200px;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
}

.short-testimonial-content-holder {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.short-testimonial-text {
  font-family: var(--fonts--paragraph);
  color: var(--colors--paragraph-color);
  font-size: 18px;
}

.short-testimonial-person {
  font-family: var(--fonts--paragraph);
  color: var(--colors--font-color);
}

.testimonial-info {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial {
  border: 2px solid var(--colors--line-color);
  background-color: var(--colors--element-color-02);
  border-radius: 0;
  margin-bottom: 30px;
  display: inline-block;
  box-shadow: inset 0 1px 1px 1px #c7d3ea1f, inset 0 -20px 99px #c7d3ea0d;
}

.testimonial-container {
  column-count: 3;
  column-gap: 30px;
}

.slider-testimonial-holder-normal {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 23px;
  display: flex;
}

.footer-credints {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  text-align: center;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 18px;
  display: flex;
  position: relative;
}

.links-wrapper {
  justify-content: space-between;
  display: flex;
}

.footer-logo {
  font-family: var(--fonts--headings);
  text-transform: uppercase;
  font-size: 54px;
  font-weight: 400;
}

.home-line {
  background-color: var(--colors--line-color);
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.home-line._02 {
  z-index: 3;
  width: 100%;
  height: 2px;
  top: 0%;
  bottom: auto;
  left: auto;
}

.infnite-scroll-wrappe {
  z-index: 2;
  background-color: var(--colors--bg-color);
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  top: -80px;
  overflow: hidden;
}

.vertical-line {
  background-color: var(--colors--line-color);
  width: 2px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.footer-credits {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  margin-top: 120px;
  display: flex;
}

.infinite-scroll-anim {
  flex: none;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.button-holder {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-about {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.about-image-holder {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 3em;
  display: flex;
  position: relative;
}

.about-image {
  width: 100%;
}

.dot {
  background-color: #202131;
  border-radius: 20px;
  width: 9px;
  min-width: 9px;
  height: 9px;
  min-height: 9px;
}

.infnite-text {
  color: var(--colors--font-color);
  font-size: 32px;
}

.infnite-text.grey {
  opacity: .5;
}

.infnite-text-wrapper {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex: none;
  align-items: center;
  padding-right: 30px;
  display: flex;
}

.infnite-text-container {
  border: 2px solid var(--colors--line-color);
  background-color: var(--colors--element-color);
  flex-direction: row;
  width: 100%;
  min-width: 110vw;
  padding-top: 21px;
  padding-bottom: 21px;
  display: flex;
  overflow: hidden;
  transform: rotate(5deg);
}

.infnite-text-container._01 {
  position: relative;
  left: 0;
}

.infnite-text-container._02 {
  z-index: -1;
  position: absolute;
  transform: rotate(-6deg);
}

.infnite-text-holder {
  justify-content: center;
  align-items: center;
  width: 102%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.animate-on-load-04 {
  width: 100%;
}

.animate-on-load-04.h-100 {
  height: 100%;
}

.card-container-center {
  grid-column-gap: 140px;
  grid-row-gap: 140px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 65px 24px;
  display: flex;
}

.awards-holder {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.awards-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 30px;
  display: grid;
}

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

.heading-02.white-text {
  font-family: var(--fonts--headings);
  color: var(--colors--element-color);
  font-weight: 400;
}

.project-details-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-details {
  padding: 32px;
  position: relative;
}

.project-details-container {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  flex-flow: column;
  display: flex;
}

.project-detail-text {
  font-size: 32px;
}

.project-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
  position: sticky;
  top: 110px;
}

.social-links {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  transition: all .375s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}

.social-links:hover {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.no-margins {
  margin-bottom: 0;
}

.progress-bar {
  z-index: 10;
  background-color: var(--colors--element-color);
  height: 10px;
  position: fixed;
  inset: 70px 0% auto;
}

.progress-bar-fill {
  background-color: var(--colors--accent-color);
  opacity: .94;
  width: 50%;
  height: 100%;
}

.contact-form-block {
  width: 100%;
}

.contact-form-block.top-margins {
  margin-bottom: 0;
}

.card-shadows {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border: 2px solid var(--colors--line-color);
  background-color: var(--colors--element-color);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 43px;
  overflow: hidden;
}

.text-field {
  border: 2px solid var(--colors--line-color);
  background-color: var(--colors--bg-color);
  font-family: var(--fonts--paragraph);
  color: var(--colors--paragraph-color);
  border-radius: 0;
  width: 100%;
  height: 51px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  transition: border-color .45s, background-color .425s;
}

.text-field:hover {
  border-color: #777;
}

.text-field:focus {
  background-color: var(--colors--element-color);
  border-color: #000;
  box-shadow: 0 4px 18px #a8a8a824, 0 0 14px #7e7e7e1a, 0 21px 90px #635bff12;
}

.text-field::placeholder {
  color: var(--colors--paragraph-color);
  font-size: 15px;
}

.text-field.message {
  min-width: 100%;
  max-width: 100%;
  height: 250px;
  min-height: 250px;
  max-height: 450px;
}

.form-fields-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.contact-v1 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-message {
  border: 2px solid var(--colors--font-color);
  background-color: var(--colors--accent-color);
  font-family: var(--fonts--paragraph);
  color: #fff;
  border-radius: 0;
  width: 100%;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.thank-you-message::placeholder {
  color: #7d7d7d;
  font-size: 15px;
}

.contact-us-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.question-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  margin-bottom: 30px;
  display: grid;
}

.questions-container {
  cursor: pointer;
  flex-direction: column;
  padding: 24px;
  display: flex;
}

.question {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.question-text {
  font-family: var(--fonts--paragraph);
  font-size: 20px;
  font-weight: 500;
}

.question-icon {
  filter: invert();
  width: 24px;
  min-width: 24px;
}

.answer-holder {
  justify-content: flex-start;
  max-width: 750px;
  display: flex;
  overflow: hidden;
}

.answer-text {
  font-family: var(--fonts--paragraph);
  color: var(--colors--paragraph-color);
  padding-top: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.faq-card {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border: 2px solid var(--colors--line-color);
  background-color: var(--colors--element-color);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 7px;
  overflow: hidden;
}

.project-grid-work-page {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  display: flex;
  position: relative;
}

.hide-mobile {
  display: block;
}

.show-mobile {
  display: none;
}

.hero-content {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.hero-images-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: .85fr .75fr 1.25fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  width: 100%;
  display: grid;
}

.hero-image-holder {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.hero-text-tag {
  position: absolute;
  inset: auto -42px -10px auto;
  transform: rotate(-18deg);
}

.hero-text-tag._02 {
  top: -17px;
  bottom: auto;
  right: auto;
  transform: rotate(1deg);
}

.hero-text {
  background-color: var(--colors--accent-color);
  color: var(--colors--bg-color);
  text-transform: uppercase;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 24px;
}

.wrapper {
  z-index: 1;
  background-color: var(--colors--bg-color);
  position: relative;
}

.black-line-text-holder {
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 73px;
  padding-bottom: 73px;
  display: flex;
}

.black-line-block {
  z-index: 6;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.black-line-text {
  z-index: 5;
  color: var(--colors--bg-color);
  text-transform: uppercase;
  white-space: nowrap;
  word-break: normal;
  font-size: 70px;
}

.grey-text {
  z-index: 5;
  color: #648394;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 70px;
}

.paragraph-holder-hero {
  max-width: 400px;
}

.paragraph {
  font-family: var(--fonts--headings);
  letter-spacing: 1px;
  font-size: 32px;
}

.paragraph-2 {
  font-family: var(--fonts--headings);
  letter-spacing: 1px;
  font-size: 16px;
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1300px;
  }

  .featured-logo-wrapper {
    width: 130px;
  }

  .section-spacing {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .projects-wrapper {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
  }

  .project-grid-holder, .project-grid-work-page {
    padding-left: 4em;
  }

  .black-line-text, .grey-text {
    font-size: 80px;
  }
}

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

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  blockquote {
    padding: 57px 0;
  }

  .container {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .container.hero-container {
    height: 100%;
  }

  ._8-col-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .navbar {
    z-index: 30;
  }

  .navbar-container {
    justify-content: space-between;
  }

  .featured-logo-wrapper {
    width: 150px;
  }

  .help-holder {
    flex-direction: column;
    display: flex;
  }

  .help-container {
    border-right-style: none;
  }

  .help-link-holder {
    grid-column-gap: 30px;
    flex-direction: row;
  }

  .help-link-container.w--current {
    border-right-style: none;
  }

  .menu-button {
    background-color: #000;
    width: 120px;
    height: 29px;
    min-height: 30px;
    padding: 0 10px;
    transition: background-color .4s;
  }

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

  .nav-menu-link-holder {
    flex-flow: column;
  }

  .nav-link-big {
    opacity: 100;
    font-family: var(--fonts--headings);
    color: var(--colors--font-color);
    margin-top: 0;
    font-size: 30px;
    font-weight: 400;
  }

  .nav-menu-wrapper {
    background-color: var(--colors--element-color-02);
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    display: flex;
  }

  .nav-wrapper {
    flex-flow: column;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .menu-text {
    color: #fff;
  }

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

  .footer-gird {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 100%;
  }

  .footer-info-holder {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-title {
    font-size: 23px;
  }

  .footer-link {
    font-size: 18px;
  }

  .rich-text-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
  }

  .offer-title {
    font-size: 20px;
  }

  .offer-description {
    font-size: 15px;
  }

  .hero-section {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: flex-start;
  }

  .about-me-title._02 {
    bottom: -73%;
  }

  .project-image-holder {
    flex-direction: column;
    display: flex;
  }

  .project-title {
    font-size: 28px;
  }

  .project-title-red {
    font-size: 60px;
  }

  .hero-section-content {
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .hero-section-wrapper {
    justify-content: flex-start;
    align-items: center;
    padding-top: 84px;
  }

  .infinite-scroll-holder {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .infinite-scroll-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .infinite-scroll {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .infinite-text {
    font-size: 30px;
  }

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

  .testimonial-container {
    column-count: 2;
  }

  .infnite-scroll-wrappe {
    top: -70px;
  }

  .card-shadows {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .contact-v1 {
    width: 90%;
  }

  .faq-card {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .hero-images-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: .85fr 1fr 1fr;
  }

  .hero-text-tag {
    bottom: 16px;
    right: 27px;
  }

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

  .black-line-text, .grey-text {
    font-size: 50px;
  }
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  p {
    font-size: 16px;
  }

  blockquote {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 60px 0;
  }

  .container.hero-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .border-box {
    padding: 2px;
  }

  .section.grey-section-copy {
    padding-top: 0;
  }

  ._6-col-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .paragraph-xl {
    font-size: 18px;
  }

  .help-content-holder {
    padding-top: 25px;
  }

  .help-link-holder {
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .figma-file-holder {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .change-log-block-holder {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    display: flex;
  }

  .utility-page-form {
    padding: 26px;
  }

  .footer-gird {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-info-holder {
    border-right-style: none;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .featured-work-link {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .project-details-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-details-grid {
    width: 100%;
  }

  .rich-text {
    max-width: 100%;
  }

  .about-me-title {
    font-size: 70px;
  }

  .about-me-title._02 {
    bottom: -173px;
  }

  .project-title-red, .project-summery-text {
    text-align: left;
  }

  .project-summery-wrapper {
    margin-left: 0;
  }

  .hero-section-content {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .title-caps {
    font-size: 40px;
  }

  .hero-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .card-container {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .projects-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    display: flex;
  }

  .project-grid-holder {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 0;
    padding-left: 0;
  }

  .testimonial {
    margin-bottom: 15px;
  }

  .testimonial-container {
    column-gap: 15px;
  }

  .slider-testimonial-holder-normal {
    padding: 16px;
  }

  .footer-credints {
    border-right-style: none;
  }

  .links-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .question-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .hide-mobile {
    display: none;
  }

  .show-mobile {
    display: block;
  }

  .hero-content {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .hero-images-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: .85fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    place-items: flex-start start;
    display: grid;
  }

  .hero-image-holder._01 {
    justify-content: flex-start;
    align-items: flex-start;
    height: 190px;
  }

  .hero-image-holder._02 {
    justify-content: center;
    align-items: flex-start;
    height: 190px;
  }

  .hero-image-holder._03 {
    width: 100%;
    height: 210px;
    display: flex;
  }

  .hero-text-tag._02 {
    top: 20px;
    left: 19px;
  }

  .black-line-text, .grey-text {
    font-size: 37px;
  }
}

@media screen and (max-width: 479px) {
  p {
    text-transform: uppercase;
    font-size: 15px;
  }

  blockquote {
    padding-top: 43px;
    padding-bottom: 43px;
  }

  ._4-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .black-background-padding {
    padding: 7px;
  }

  .container {
    padding: 2em 1em;
  }

  .container.navbar-container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .container.hero-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .style-guide-box-holder {
    padding: 4px;
  }

  .style-guide-box-container {
    grid-row-gap: 7px;
  }

  .colors-buttons {
    flex-direction: column;
    padding-top: 29px;
    padding-bottom: 29px;
  }

  ._8-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  ._6-col-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .navbar-container {
    grid-column-gap: 12px;
  }

  .featured-logo-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .pricing-list-holder {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .pricing-footer-holder {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-form-holder.no-paddings {
    grid-row-gap: 12px;
    flex-flow: column;
  }

  .figma-file-container {
    grid-row-gap: 32px;
    flex-direction: column;
  }

  .full-width-image {
    border-radius: 7px;
  }

  .utility-page-form {
    padding: 21px;
  }

  .menu-button {
    width: 90px;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-text-field {
    border-bottom-color: #707070;
  }

  .submit-button-simple {
    width: 100%;
  }

  .nav-link-big {
    z-index: 2;
  }

  .nav-menu-wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-wrapper {
    padding-bottom: 30px;
  }

  .black-line-text-container {
    flex-wrap: wrap;
  }

  .menu-text {
    font-family: var(--fonts--headings);
    font-size: 16px;
    font-weight: 300;
  }

  .section-title {
    font-size: 24px;
  }

  .footer-gird {
    flex-flow: column;
  }

  .footer-info-holder {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-link {
    font-size: 16px;
  }

  .project-details-grid {
    flex-direction: column;
    padding-top: 0;
    display: flex;
  }

  .rich-text-wrapper {
    flex-direction: column;
    padding-top: 24px;
  }

  .rich-text {
    max-width: 100%;
  }

  .divider {
    margin-bottom: 0;
  }

  .about-me-title {
    letter-spacing: 0;
    font-size: 32px;
  }

  .about-me-title._02 {
    bottom: -101px;
  }

  .project-title {
    font-size: 22px;
  }

  .project-title-red {
    font-size: 45px;
  }

  .back-button-holder.w--current {
    display: none;
  }

  .title-caps {
    font-size: 30px;
  }

  .hero-image {
    object-fit: cover;
    height: 100%;
  }

  .hero-section-wrapper {
    height: 100vh;
  }

  .grid-3x {
    flex-flow: column;
    display: flex;
  }

  .project-grid {
    grid-row-gap: 30px;
    flex-flow: column;
    display: flex;
  }

  .short-testimonial-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .testimonial {
    margin-bottom: 7px;
  }

  .testimonial-container {
    flex-flow: column;
    display: flex;
  }

  .slider-testimonial-holder-normal {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 13px;
  }

  .footer-credints {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px 0;
  }

  .footer-credits {
    margin-top: 40px;
  }

  .infnite-text {
    font-size: 20px;
  }

  .infnite-text-container {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .awards-grid {
    flex-flow: column;
    display: flex;
  }

  .project-details-holder {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column-reverse;
    display: flex;
  }

  .project-details {
    padding: 0;
  }

  .project-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 37px;
    padding-bottom: 37px;
    display: grid;
  }

  .contact-form-block.top-margins {
    margin-top: 0;
  }

  .card-shadows {
    padding: 13px;
  }

  .form-fields-holder {
    flex-direction: column;
  }

  .contact-v1 {
    width: 100%;
  }

  .question-wrapper {
    flex-flow: column;
    display: flex;
  }

  .questions-container {
    padding: 7px;
  }

  .hero-images-wrapper {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    grid-template-rows: auto;
    grid-template-columns: .85fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .hero-image-holder._01, .hero-image-holder._02 {
    width: 100%;
    height: 100px;
  }

  .hero-image-holder._03 {
    width: 100%;
    height: 190px;
    display: flex;
  }

  .hero-text-tag {
    bottom: 24px;
  }

  .hero-text-tag._02 {
    top: 7px;
    left: 19px;
  }

  .hero-text-tag._01 {
    bottom: 19px;
    right: 5px;
  }

  .hero-text._01 {
    font-size: 13px;
  }

  .hero-text._02 {
    font-size: 15px;
  }

  .black-line-text, .grey-text {
    font-size: 9vw;
  }
}

#w-node-d33d90f6-6426-ed6d-a810-580cf8123305-70471096 {
  justify-self: end;
}

#w-node-ba369faa-20d8-5d9a-5731-426b8ffb9467-468af7d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_473308f8-f183-11e7-6d75-25a6d5f7133b-70471096 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


