:root {
  --color--background-color: #160d11;
  --font--headings: Oswald, sans-serif;
  --color--font-color: #fdfcfa;
  --font--paragraph: Inter, sans-serif;
  --color--accent-color: #41926a;
}

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

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

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 40px;
  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(--font--paragraph);
  color: var(--color--font-color);
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
}

a {
  font-family: var(--font--paragraph);
  color: var(--color--font-color);
  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: #313131;
}

.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: 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.footer-section {
  padding-top: 8em;
}

._100width {
  width: 100%;
}

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

.button {
  font-family: var(--font--headings);
  color: #fff;
  text-transform: uppercase;
  background-color: #000;
  border-radius: 0;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 500;
  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;
}

.style-guide-box-holder {
  background-color: #222;
  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 {
  position: relative;
}

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

.button-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: #2c2c2c;
  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;
  mix-blend-mode: difference;
  background-color: #ddd0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  min-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;
}

.white-text {
  color: #fff;
  font-weight: 600;
}

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

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

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

.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 {
  color: #fff;
  text-align: center;
  background-color: #333;
  border: 1px solid #aa5252;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
  box-shadow: 0 4px 4px #0000003d, 0 0 14px #0000003d, 0 21px 36px #ff00041f;
}

.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 #5e5e5e;
  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: #7d7d7d;
  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: 36px;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.help-link-container {
  z-index: 3;
  grid-column-gap: 16px;
  opacity: .5;
  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: none;
  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: #2e2e2e;
  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: none;
  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, sans-serif;
  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 {
  color: #fff;
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #fff;
  height: 51px;
  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;
}

.submit-button-simple {
  color: #595550;
  letter-spacing: 1px;
  background-color: #fff;
  background-image: url('../images/Up-Arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 200px;
  width: 60px;
  min-width: 60px;
  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;
}

.fade-in-overflow---content {
  height: 100%;
}

.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: .6;
  color: #fff;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 12px;
}

.nav-link-big:hover {
  color: #fff;
}

.nav-link-big.w--current {
  opacity: 1;
  color: #fff;
  background-image: url('../images/Elipse.svg');
  background-position: 50% 90%;
  background-repeat: no-repeat;
  background-size: 7px;
  margin-top: 12px;
  padding-bottom: 12px;
  font-weight: 600;
}

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

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

.number-2 {
  font-size: 18px;
}

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

.work-item {
  z-index: 3;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 360px;
  min-width: 360px;
  margin-right: 100px;
}

.footer-up-button {
  border: 2px solid #000;
  border-radius: 200px;
  justify-content: center;
  align-items: flex-end;
  width: 80px;
  height: 180px;
  transition: background-color .45s;
  display: flex;
}

.footer-up-button:hover {
  background-color: #cecece;
}

.menu-text {
  font-family: var(--font--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-direction: column;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 20px;
  display: flex;
}

.footer-gird {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 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;
  align-items: center;
  display: flex;
  position: relative;
}

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

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

.footer-link:hover {
  color: #9e9e9e;
}

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

.about-title-wrapper {
  display: flex;
}

.category-dropdown {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.project-template-holder {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  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;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  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;
  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%;
}

.project-item {
  width: 100%;
  overflow: hidden;
}

.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-text-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-section-small-text {
  z-index: 1;
  font-family: var(--font--paragraph);
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  position: relative;
}

.hero-section-small-text.right-align {
  text-align: right;
}

.hero-text {
  color: var(--color--accent-color);
  letter-spacing: -13px;
  font-size: 33.1em;
  font-weight: 700;
  line-height: .9;
}

.hero-text-wrapper {
  justify-content: space-between;
  width: 100%;
  padding-top: 20px;
  display: flex;
}

.hero-section-images-wrapper {
  margin-top: 32px;
}

.hero-section-images-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
}

.hero-section-images-holder {
  border: 2px solid #000;
  width: 100%;
  overflow: hidden;
}

.hero-section-images-holder._01 {
  background-color: #e4e4d8;
}

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

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

.about-me-section {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 150px;
  display: flex;
}

.about-me-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.about-me-image-holder {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.about-me-image-holder._02 {
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.about-me-title {
  color: var(--color--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%;
}

.about-me-image-wrapper {
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  display: flex;
}

.about-me-image-wrapper._01 {
  width: 71%;
}

.about-me-image-wrapper._02, .about-me-image, .about-me-image._01 {
  width: 100%;
}

.color-palette-holder {
  margin-bottom: 24px;
  display: flex;
}

.color-palette {
  background-color: #d3b73a;
  width: 23px;
  height: 23px;
}

.color-palette._02 {
  background-color: #41926a;
}

.color-palette._03 {
  background-color: #d2e3cd;
}

.color-palette._04 {
  background-color: #fdfcfa;
}

.color-palette._01 {
  background-color: #1e3023;
}

.color-palette._05 {
  background-color: #cb5432;
}

.project-grid-wrapper {
  flex: none;
}

.project-grid-list {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  width: 100%;
  display: flex;
}

.project-grid-item {
  flex: none;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}

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

.project-content-wrapper {
  flex-direction: column;
  justify-content: space-between;
  max-width: 430px;
  height: 80%;
  padding: 30px;
  display: flex;
  position: absolute;
  inset: auto 30px 30px auto;
}

.project-title {
  font-family: var(--font--headings);
  color: var(--color--background-color);
  text-transform: uppercase;
  font-size: 55px;
}

.project-client {
  color: var(--color--background-color);
}

.project-short-description {
  color: var(--color--background-color);
  font-size: 16px;
  font-weight: 400;
}

.project-arrow {
  width: 40px;
}

.project-thumbnail {
  z-index: -2;
  width: 100%;
  position: relative;
}

.project-bg {
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.project-hoizontal-scroll {
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0%;
  overflow: hidden;
}

.project-hoizontal-scroll-holder {
  justify-content: flex-start;
  height: 300vh;
  display: flex;
}

.footer-title-big {
  color: var(--color--accent-color);
  text-align: center;
  letter-spacing: -13px;
  font-size: 24em;
  font-weight: 700;
  line-height: .9;
}

.footer-text-wrapper {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  display: flex;
}

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

.perspective {
  perspective: 1500px;
}

.project-title-red {
  color: var(--color--accent-color);
  text-align: center;
  text-transform: uppercase;
  font-size: 160px;
  font-weight: 700;
}

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

.project-summery-holder {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-direction: column;
  display: flex;
}

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

.project-summery-wrapper {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.noise-wrap {
  z-index: 20;
  opacity: .27;
  pointer-events: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.noise-texture {
  filter: invert(33%);
  background-image: url('../images/Noise-Texture.png');
  background-position: 0 0;
  background-size: 200px;
  width: 140vw;
  height: 140vh;
  position: absolute;
  transform: translate(0, 11px);
}

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

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

  .color-palette._02 {
    background-color: #d25209;
  }

  .color-palette._03 {
    background-color: #41926a;
  }

  .color-palette._04 {
    background-color: #d2e3cd;
  }

  .color-palette._01 {
    background-color: #1e3023;
  }

  .color-palette._05 {
    background-color: #fdfcfa;
  }
}

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

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

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

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

  .navbar {
    z-index: 30;
    mix-blend-mode: normal;
  }

  .navbar-container {
    grid-column-gap: 80px;
    justify-content: flex-end;
  }

  .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 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .nav-links {
    grid-row-gap: 20px;
    flex-direction: row;
    height: auto;
  }

  .nav-link-big {
    color: #fff;
    margin-top: 0;
  }

  .nav-menu-wrapper {
    z-index: 0;
    background-color: #000;
    justify-content: center;
    align-items: center;
    margin-top: -70px;
    padding-top: 70px;
  }

  .nav-wrapper {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
    mix-blend-mode: difference;
    background-color: #000;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .work-item {
    flex-direction: column;
    align-items: center;
    margin-right: 50px;
  }

  .menu-text {
    font-family: var(--font--headings);
    color: #fff;
    font-weight: 300;
  }

  .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-template-columns: 1fr 1fr 1fr;
    max-width: 100%;
  }

  .footer-info-holder {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .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-text {
    font-size: 21.9em;
  }

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

  .project-grid-wrapper {
    flex-direction: column;
    flex: 0 auto;
    display: flex;
  }

  .project-grid-list {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: end;
    padding-left: 7px;
    padding-right: 7px;
    display: grid;
  }

  .project-grid-item {
    max-width: none;
  }

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

  .project-content-wrapper {
    width: 100%;
    max-width: none;
    height: auto;
    position: relative;
    bottom: auto;
    right: auto;
  }

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

  .project-client {
    font-size: 15px;
  }

  .project-arrow {
    margin-top: 32px;
  }

  .project-thumbnail {
    width: 100%;
  }

  .project-hoizontal-scroll, .project-hoizontal-scroll-holder {
    height: auto;
  }

  .footer-title-big {
    font-size: 15em;
  }

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

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

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

  .border-box {
    padding: 2px;
  }

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

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

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

  .work-item {
    width: 300px;
    min-width: 300px;
  }

  .footer-gird {
    grid-template-columns: 1fr 1fr;
  }

  .footer-info-holder {
    border-right-style: none;
  }

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

  .section-paddings {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-section-small-text {
    font-size: 18px;
  }

  .hero-text {
    font-size: 16.9em;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .work-item {
    border-style: none;
    border-color: #000;
  }

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

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

  .footer-gird {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
  }

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

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

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

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

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

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

  .hero-section-small-text {
    font-size: 14px;
  }

  .hero-text {
    font-size: 10em;
  }

  .hero-section-images-grid {
    grid-template-columns: 1fr;
  }

  .divider {
    margin-bottom: 0;
  }

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

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

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

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

  .footer-title-big {
    letter-spacing: -3px;
    font-size: 10em;
  }

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

#w-node-_445acc9d-798b-5db8-1249-2213d0b231a4-506d4bfe, #w-node-_2dab3384-dd98-398c-f2cc-81c4b6d15620-506d4bfe, #w-node-c4202f28-5ed6-a9ca-f71b-df8fc3ca4d38-506d4bfe, #w-node-f5d81280-8520-7c9d-5b7a-502a1f785d1e-506d4bfe, #w-node-_4de0da75-96b1-f8bf-402b-60842aa8c5d2-506d4bfe, #w-node-_9ab8c166-1564-036f-d0f9-e1bd14808bef-468af7d9, #w-node-_76a9dc2d-cfb9-869f-ba2f-6d27b167483b-468af7d9, #w-node-_1a28ebeb-9162-d3cb-8468-7300a05229ba-506d4c01, #w-node-_8595b4cc-f73c-3ac7-f9ab-37cddb2978a1-506d4c03, #w-node-_63c7100f-9342-3d29-c1e8-a026ad70c2f3-506d4c04, #w-node-_50d429f7-a276-3f83-9b9a-bc93d36794c4-506d4c05 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b894a5fe-f86c-a319-2754-9c68f095fdc2-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdc5-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdc8-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdcb-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdce-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd1-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd4-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd7-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fddc-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fddf-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde2-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde5-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde8-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdeb-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf0-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf3-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf6-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf9-506d4c05 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-b894a5fe-f86c-a319-2754-9c68f095fdfe-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fe02-506d4c05 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

@media screen and (max-width: 479px) {
  #w-node-b894a5fe-f86c-a319-2754-9c68f095fdfe-506d4c05, #w-node-b894a5fe-f86c-a319-2754-9c68f095fe02-506d4c05 {
    grid-column: span 2 / span 2;
  }
}


@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}