:root {
  --black-section-s: #1a1a1a;
  --tomato: #f44;
}

.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 {
  color: #000;
  background-color: #fff;
  font-family: Clashgrotesk variable, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

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

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

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

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

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  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 {
  letter-spacing: .7px;
  margin-bottom: 10px;
}

a {
  color: #000;
  text-decoration: none;
  transition: color .35s;
}

a:hover {
  color: #2b2b2b;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 500;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 16px;
}

li {
  font-size: 16px;
}

label {
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}

blockquote {
  border-left: 5px #e2e2e2;
  margin-bottom: 10px;
  padding: 50px 32px;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.section {
  z-index: 1;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.8em 4em;
}

.container.nav-container {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

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

.navbar {
  z-index: 19;
  background-color: #fff;
  height: 70px;
  position: sticky;
  inset: 0% 0% auto;
}

.hero-section {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.nav-menu {
  z-index: 1;
  background-color: var(--black-section-s);
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.grid-6-col {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

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

.grid-4-col {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-2-col {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
}

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

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

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

.footer-link {
  z-index: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color .4s;
  position: relative;
  overflow: hidden;
}

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

.link-block-underline {
  background-color: #8d8d8d;
  width: 100%;
  height: 1px;
  margin-top: 2px;
}

.footer {
  color: #fff;
  background-color: #252525;
  align-items: flex-start;
  padding-top: 3em;
  padding-left: 0;
  padding-right: 0;
}

.footer-content {
  grid-column-gap: 160px;
  grid-row-gap: 2em;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-bottom: 3em;
  padding-top: 72px;
  display: grid;
}

.footer-heading {
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 500;
}

.made-by-section {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: space-between;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
  overflow: hidden;
}

.nav-link-holder {
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 10px;
  display: flex;
}

.body-white {
  background-color: #fff;
}

.grey-text {
  color: #6b6b6b;
}

.success-message {
  color: #000;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 32px;
  padding: 1em;
  font-size: 32px;
  font-weight: 500;
}

.error-message {
  background-color: var(--tomato);
  color: #fff;
  text-align: center;
  border: 1px solid #ffb5b580;
  border-radius: 8px;
  margin-top: 26px;
  margin-bottom: 26px;
  padding: 10px;
  font-size: 24px;
  font-weight: 500;
}

.instructions-image {
  border-radius: 12px;
  width: 100%;
}

.change-log-container {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  background-color: #f8f8fa;
  border-radius: 12px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2em;
  font-size: 16px;
  display: flex;
}

.menu-button {
  z-index: 18;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  padding: 5px;
}

.menu-button.w--open {
  z-index: 2;
  background-color: #fff0;
}

.copyright-text {
  color: #b8b8b8a1;
  font-size: 18px;
  line-height: 1.4;
}

.rich-text {
  color: #141414;
  max-width: 720px;
}

.rich-text h5 {
  color: #141414;
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.3;
}

.rich-text strong {
  color: #323232;
  font-weight: 600;
}

.rich-text a {
  color: #323232;
  border-bottom: 1px solid #323232;
  line-height: 1.6;
  text-decoration: none;
  transition-property: all;
}

.rich-text a:hover {
  color: #ff5e20;
  border-bottom-color: #32323200;
  text-decoration: none;
}

.rich-text figure {
  background-color: #eef0f3;
  border-radius: 3px;
  width: 100%;
  min-width: 100%;
  margin-top: 3em;
  margin-bottom: 4em;
  padding: 30px;
}

.rich-text blockquote {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 0;
  padding-right: 0;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.rich-text ul {
  margin-top: 30px;
  margin-bottom: 24px;
  padding-left: 32px;
}

.rich-text h3 {
  color: #141414;
  letter-spacing: .5px;
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.3;
}

.rich-text img {
  width: 100%;
  min-width: 100%;
}

.rich-text figcaption {
  color: #323232cc;
  letter-spacing: .2px;
  font-size: 14px;
  line-height: 24px;
}

.rich-text h1 {
  color: #141414;
  letter-spacing: .5px;
  margin-top: 3rem;
  margin-bottom: 1.3rem;
  font-size: 40px;
  font-weight: 600;
}

.rich-text p {
  color: #323232;
  letter-spacing: .2px;
  margin-top: 16px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
}

.rich-text h2 {
  color: #141414;
  letter-spacing: .5px;
  margin-top: 3rem;
  margin-bottom: 1.3rem;
  font-size: 36px;
  line-height: 1.3;
}

.rich-text ol {
  margin-top: 30px;
  margin-bottom: 24px;
  padding-left: 32px;
}

.rich-text h4 {
  color: #141414;
  letter-spacing: .5px;
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 21px;
  line-height: 1.3;
}

.rich-text h6 {
  color: #323232;
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.rich-text li {
  color: #323232;
  letter-spacing: .2px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.style-guide-tab-holder {
  color: #000;
  border-radius: 5px;
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 400;
  transition-property: background-color;
  transition-duration: .675s;
}

.style-guide-tab-holder:hover {
  color: #000;
  background-color: #00000012;
}

.style-guide-tab-holder.w--current {
  color: #fff;
  background-color: #000;
}

.style-guide-left-panel-holder {
  background-color: #f5f5f5;
  align-items: flex-start;
  width: 405px;
  display: flex;
}

.style-guide-title-holder {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero-text {
  margin-top: 0;
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
}

.paragraph-m {
  color: #000;
  font-size: 24px;
  line-height: 1.2;
}

.style-guide-gray-background {
  background-color: #f5f5f5;
  border-radius: 12px;
}

.style-guide-left-panel {
  grid-row-gap: 25px;
  flex-direction: column;
  width: 100%;
  padding: 2em;
  display: flex;
  position: sticky;
  top: 50px;
}

.subscribe-button {
  color: #fff;
  background-color: #000;
  border: 0 solid #000;
  border-radius: 0 8px 8px 0;
  width: 100px;
  height: 100%;
  padding: 5px;
  font-weight: 500;
  transition: background-color .35s;
  position: absolute;
  inset: auto 0% 0% auto;
}

.subscribe-button:hover {
  background-color: #4d6bfa;
}

.headings-container {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}

.link-block-2 {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: color .4s;
}

.link-block-2:hover {
  color: #000;
}

.link-block-2.animation-03 {
  overflow: hidden;
}

.grid-holder {
  grid-row-gap: 30px;
  background-color: #f5f5f5;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
  display: flex;
}

.colors-container {
  background-color: #fafafa;
}

.subscribe-form-holder {
  width: 100%;
  max-width: 340px;
  margin-bottom: 0;
}

.style-guide-small-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.paragraph-container {
  width: 80%;
  margin-top: 10px;
}

.colors-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 30px;
  display: flex;
}

.button-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2em;
  display: grid;
}

.font-details-holder {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.aa-font {
  color: #000;
  font-size: 130px;
}

.style-guide-empty-container {
  padding: 2em 2em 2em 1em;
}

.font-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #f5f5f5;
  border-radius: 12px;
  justify-content: space-between;
  margin-top: 2em;
  padding: 2em;
  display: flex;
}

.button {
  color: #000;
  text-transform: none;
  background-color: #fff;
  background-image: url('../images/Arrow-Right.svg');
  background-position: 83%;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 18px 55px 18px 36px;
  font-size: 18px;
  font-weight: 500;
  transition: background-color .3s, transform .5s cubic-bezier(.175, .885, .32, 1.275);
}

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

.button.black {
  color: #fff;
  background-color: #000;
  background-image: url('../images/White-Arrow-Right.svg');
}

.button.black:hover {
  background-color: #242424;
}

.borders {
  opacity: 1;
  border: 1px solid #c5c5c5;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
}

.borders.center {
  height: 100px;
}

.button-holder {
  grid-row-gap: 30px;
  background-color: #c0c0c099;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2em;
  display: flex;
}

.subscribe-form {
  z-index: 1;
  width: 100%;
  position: relative;
}

.style-guide-main-panel {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding-top: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

.headings-holder {
  background-color: #f5f5f5;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
  display: flex;
}

.subscribe-email {
  color: #000;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 8px;
  width: 100%;
  height: 50px;
  margin-bottom: 0;
  padding: 10px 109px 10px 12px;
  font-weight: 500;
  line-height: 1;
  transition: background-color .35s, border-color .35s;
}

.subscribe-email:hover {
  background-color: #00000005;
}

.subscribe-email:focus {
  background-color: #fff;
  border-color: #4d6bfa;
}

.subscribe-email::placeholder {
  color: #0000004d;
}

.sg---color-primary {
  background-color: var(--tomato);
  width: 235px;
  height: 150px;
}

.sg---color-primary.secondary-color {
  background-color: var(--black-section-s);
}

.style-guide-container {
  display: flex;
}

.style-guide-panel-title {
  color: #000;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}

.font-light {
  font-size: 24px;
  font-weight: 300;
}

.font-light.bold-text {
  font-weight: 700;
}

.sg---color-description {
  grid-row-gap: 2px;
  background-color: #f5f5f5;
  flex-direction: column;
  padding: 15px;
  display: flex;
}

.style-guide-hero-holder {
  grid-row-gap: 20px;
  flex-direction: column;
  padding: 2em;
  display: flex;
}

._404-content {
  margin-bottom: 20px;
}

.brand-logo {
  width: 100%;
}

.brand-logo.white {
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.brand-link {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 80px;
  margin-left: 0;
  padding-left: 0;
  transition-property: opacity;
  display: flex;
  position: relative;
}

.brand-link:hover {
  opacity: .9;
}

.nav-link {
  z-index: 1;
  color: #404040;
  font-variation-settings: "wght" 540;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px 15px;
  font-size: 180px;
  font-weight: 600;
  line-height: 1;
  transition: transform .675s, font-variation-settings .45s, color .45s;
  display: flex;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  font-variation-settings: "wght" 700;
  transform: translate(50px);
}

.nav-link.w--current {
  text-decoration: underline;
}

.link-background {
  z-index: -1;
  background-color: #f1f1f1;
  border-radius: 8px;
  position: absolute;
  inset: 0%;
}

.menu-icon {
  width: 100%;
}

.hero-section-secondary {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 300px;
  padding-top: 70px;
  display: flex;
  position: relative;
}

.hero-text-secondary {
  margin-top: 0;
}

.hero-description-short-container {
  max-width: 60%;
}

.social-media-link {
  z-index: 1;
  border-radius: 6px;
  padding: 5px;
  position: relative;
}

.input-field {
  color: #000;
  -webkit-text-fill-color: inherit;
  background-color: #0000000a;
  background-clip: border-box;
  border: 1px solid #00000005;
  border-radius: 8px;
  height: 40px;
  margin-bottom: 0;
  padding: 10px;
  line-height: 1;
  transition: border-color .35s, background-color .35s;
}

.input-field:hover {
  background-color: #00000005;
}

.input-field:focus {
  background-color: #ffffff0a;
  border-color: #4d6bfa;
}

.input-field::placeholder {
  color: #0006;
}

.link {
  z-index: 1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  position: relative;
}

.link:hover, .link.w--current {
  color: #000;
}

.link-with-line {
  z-index: 1;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color .4s;
  position: relative;
  overflow: hidden;
}

.link-with-line:hover {
  color: #000;
}

.link-color:hover {
  color: #4d6bfa;
}

.link-content {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.external-icon {
  width: 16px;
}

.license-box {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  background-color: #f8f8fa;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2em;
  padding: 2em;
  display: flex;
}

.license-box-top {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-grey-content {
  background-color: #fff;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  padding: 1em;
  display: flex;
}

.client-logo {
  object-fit: contain;
  width: 100%;
  max-width: 140px;
  height: 100%;
  max-height: 25px;
}

.feather-icons-image {
  width: 100%;
  max-width: 400px;
}

.instruction-item {
  background-color: #f8f8fa;
  border-radius: 12px;
  padding: 2em;
}

.instructions-list {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.section-background {
  z-index: -1;
  background-color: #f8f8fa;
  position: absolute;
  inset: 0%;
}

.footer-grid-content {
  grid-row-gap: 6px;
  border-top: 1px solid #484848;
  flex-direction: column;
  width: 100%;
  padding-top: 18px;
  display: flex;
}

.protected-input-holder {
  margin-bottom: 10px;
}

.nav-menu-wrapper {
  grid-column-gap: 24px;
  align-items: center;
  display: flex;
}

.nav-menu-static {
  grid-column-gap: 26px;
  display: flex;
}

.nav-menu-static-links {
  font-size: 20px;
  font-weight: 500;
}

.nav-menu-static-links:hover, .nav-menu-static-links.w--current {
  color: var(--tomato);
}

.home-hero-section {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  background-image: linear-gradient(#fffc, #fff0), url('../images/r-architecture-TRCJ-87Yoh0-unsplash-Large.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.home-hero-container {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  position: relative;
}

.hero-tags-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-tags-container {
  grid-column-gap: 40px;
  perspective: 1500px;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero-tags {
  color: #fff;
  background-color: #000;
  border: 10px solid #000;
  border-radius: 220px;
  padding-left: 90px;
  padding-right: 90px;
}

.hero-tags._01 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #000;
  background-color: #fff3;
  border-width: 6px;
}

.hero-tags._02 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0009;
  border-width: 6px;
  border-color: #0006;
  padding-left: 48px;
  padding-right: 48px;
}

.hero-tags._03 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #000;
  background-color: #fff6;
  border-width: 6px;
}

.hero-tag-text {
  font-size: 80px;
  font-weight: 600;
}

.hero-grid-holder {
  padding-top: 60px;
}

.hero-grid {
  justify-content: space-between;
  display: flex;
}

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

.paragraph-xl {
  font-size: 24px;
  font-weight: 500;
}

.scroll-down-holder {
  background-color: #fdb241;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
  position: relative;
  box-shadow: inset 0 16px 20px #bb353566;
}

.scroll-down-text {
  width: 100%;
  padding: 12px;
  position: absolute;
  inset: 0%;
}

.dark-section {
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

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

.top-project-title-holder {
  grid-row-gap: 12px;
  color: #fff;
  flex-direction: column;
  display: flex;
}

.top-project-tag {
  font-size: 18px;
}

.top-project-title {
  font-size: 48px;
  font-weight: 500;
}

.top-project-title-wrapper {
  max-width: 1280px;
  line-height: 1.1;
}

.top-projects-wrapper {
  grid-row-gap: 100px;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.project-list-wrapper {
  z-index: 0;
  perspective: 1500px;
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
  display: flex;
  position: relative;
}

.project-title {
  opacity: .15;
  color: #fff;
  font-size: 62px;
  font-weight: 600;
  position: relative;
}

.project-thumbnail-holder {
  z-index: -2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  right: 80px;
}

.project-title-holder {
  z-index: 11;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  display: flex;
  position: relative;
}

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

.project-thumbnail-container {
  width: 420px;
  position: static;
}

.title-holder {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.title-holder.white {
  color: #fff;
  position: relative;
}

.sub-heading {
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 500;
}

.sub-heading.grey-text {
  font-weight: 400;
}

._52-heading {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
}

.services-title-holder {
  max-width: 730px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.services-grid-holder {
  padding-bottom: 62px;
}

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

.services {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 32px;
  height: 470px;
}

.services-container {
  grid-row-gap: 16px;
  border-radius: 32px;
  flex-direction: column;
  padding: 35px;
  transition: background-color .35s;
  display: flex;
}

.services-icon-holder {
  align-items: flex-start;
  height: 42px;
  display: flex;
  overflow: hidden;
}

.services-icon {
  object-fit: fill;
  height: 100%;
}

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

.services-paragraph {
  margin-bottom: 0;
  font-size: 18px;
  overflow: hidden;
}

.services-arrow-holder {
  flex-direction: column;
  align-items: flex-end;
  margin-top: 48px;
  display: flex;
}

.service-arrow-image {
  width: 100%;
}

.service-arrow-image.gold {
  position: absolute;
  top: -100%;
  left: -100%;
}

.services-arrow-wrapper {
  justify-content: center;
  align-items: center;
  width: 22px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.black-section {
  background-color: #000;
  display: none;
}

.timeliness-title-holder {
  max-width: 980px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.job-position-holder {
  grid-row-gap: 60px;
  flex-direction: column;
  padding-top: 130px;
  padding-bottom: 60px;
  display: flex;
}

.job-position-container {
  color: #fff;
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 200px;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 80px;
  transition: filter .35s;
  display: flex;
}

.job-position-container:hover {
  filter: invert();
  color: #fff;
}

.job-title {
  width: 330px;
  margin-right: 120px;
  font-size: 42px;
  font-weight: 500;
}

.job-description {
  max-width: 290px;
  font-size: 18px;
}

.arrow-holder {
  flex: 1;
  justify-content: flex-end;
  width: 100%;
  display: flex;
}

.job-arrow {
  justify-content: center;
  align-items: center;
  width: 42px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.left-title-container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.left-title-container.white-text {
  grid-row-gap: 12px;
  color: #fff;
  flex-direction: column;
  display: flex;
}

.left-title-wrapper {
  max-width: 610px;
}

.stars-wrapper {
  grid-column-gap: 24px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
}

.stars-holder {
  width: 165px;
}

.stars-image {
  width: 100%;
}

.stars-text {
  font-size: 16px;
  font-weight: 500;
}

.review-slider-holder {
  padding-bottom: 60px;
  position: relative;
}

.hide {
  display: none;
}

.slider {
  background-color: #ddd0;
  height: auto;
  padding-left: 150px;
}

.mask {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 32px;
  width: 100%;
  height: auto;
}

.slide {
  width: 100%;
  height: auto;
  padding: 31px;
}

.grey-section {
  background-color: #fafbff;
  display: none;
}

.slider-content-holder {
  grid-column-gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.slider-content-wrapper {
  grid-row-gap: 35px;
  flex-direction: column;
  max-width: 430px;
  display: flex;
}

.slider-logo-holder {
  width: 155px;
}

.slider-logo {
  width: 100%;
}

.slider-paragraph-holder {
  font-size: 18px;
}

.slider-image-holder {
  width: 100%;
  max-height: 500px;
}

.slider-image {
  border-radius: 28px;
  width: 100%;
}

.left-arrow {
  inset: 0% auto auto 0%;
}

.right-arrow {
  inset: 0% auto auto 60px;
}

.arrow-wrapper {
  border: 2px solid #000;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.arrow-image {
  width: 17px;
}

.arrow-image.rotated {
  transform: rotate(-180deg);
}

.question-holder {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 32px;
  height: 100%;
  margin-bottom: 30px;
  transition: transform .45s;
}

.question-holder:hover {
  transform: translate(0, -20px)scale(.95);
}

.faq-arrow-holder {
  flex-direction: column;
  align-items: flex-end;
  margin-top: 6px;
  display: flex;
}

.questions-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  column-count: 3;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.blog-holder {
  background-color: #000;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: none;
  position: relative;
  overflow: hidden;
}

.blog-grid-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.blog-link-holder {
  grid-row-gap: 24px;
  flex-direction: column;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}

.blog-link-holder:hover {
  transform: scale(.94);
}

.blog-thumbnail-holder {
  height: 360px;
}

.blog-thumbnail {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-category {
  color: var(--tomato);
  font-size: 18px;
}

.blog-title {
  color: #fff;
  font-size: 22px;
}

.blog-content-holder {
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.button-center-holder {
  flex-direction: column;
  align-items: center;
  padding-top: 31px;
  padding-bottom: 31px;
  display: flex;
}

.hero-tags-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.about-hero-section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.about-hero-container {
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.about-illustation-image-holder {
  perspective: 1500px;
  width: 100%;
}

.about-illustation-image {
  width: 100%;
}

.hero-text-02 {
  font-size: 140px;
  font-weight: 600;
  line-height: .9;
}

.about-paragraph {
  max-width: 680px;
  font-size: 24px;
  font-weight: 500;
}

.about-hero-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.about-images-holder {
  margin-top: 108px;
  margin-bottom: 108px;
  padding-top: 63px;
  padding-bottom: 63px;
  overflow: hidden;
}

.about-images-container {
  grid-column-gap: 30px;
  justify-content: center;
  display: flex;
}

.about-image-holder {
  flex: none;
  width: 50%;
  height: 740px;
}

.about-image-holder._02 {
  width: 40%;
  margin-top: -60px;
}

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

.story-images-holder {
  margin-top: 120px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.story-grid {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.story-images-wrapper {
  grid-row-gap: 80px;
  flex-direction: column;
  display: flex;
}

.story-images-wrapper._02 {
  margin-top: -100px;
}

.story-image-holder {
  width: 100%;
  height: 380px;
}

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

.story-paragraph-holder {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 90px;
  margin-bottom: 90px;
  display: flex;
}

.story-paragraph {
  max-width: 1040px;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 500;
}

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

.team-thumbnail-holder {
  border: 1px solid #e6e6e6;
  border-radius: 32px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.team-thumbnail-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 380px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.normal-profile-image {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.illustation-profile-image {
  opacity: .5;
  object-fit: cover;
  width: 100%;
  height: 110%;
  position: absolute;
  inset: 0%;
}

.team-content {
  padding: 20px 30px 30px;
}

.team-name {
  font-size: 36px;
  font-weight: 500;
}

.team-job-position {
  font-size: 18px;
}

.team-icons-holder {
  grid-column-gap: 18px;
  grid-row-gap: 12px;
  opacity: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  display: flex;
  position: absolute;
  inset: 25px 0% auto 30px;
}

.team-info {
  position: relative;
}

.team-icons-link {
  width: 32px;
  transition-property: opacity;
}

.team-icons-link:hover {
  opacity: .5;
}

.team-icons-link.smaller {
  width: 24px;
}

.team-icons {
  width: 100%;
}

.team-cta-holder {
  margin-top: 60px;
  margin-bottom: 60px;
}

.team-cta {
  grid-column-gap: 8px;
  color: #fff;
  background-color: #000;
  border-radius: 100px;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  font-size: 42px;
  font-weight: 500;
  transition: background-color .375s;
  display: flex;
}

.team-cta:hover {
  color: #fff;
  background-color: #1a1a1a;
}

.heart-icon-holder {
  width: 48px;
}

.heart-icon {
  width: 100%;
}

.team-cta-content {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}

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

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

.statistic {
  color: #fff;
}

.statistic-number {
  font-size: 62px;
  font-weight: 700;
}

.statistic-subtitle {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 400;
}

.statistic-line {
  background-color: #343434;
  width: 100%;
  height: 2px;
  margin-top: 26px;
  margin-bottom: 18px;
}

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

.services-hero {
  background-color: var(--black-section-s);
  margin-top: -80px;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}

.services-hero-holder {
  position: relative;
}

.services-text-container {
  grid-row-gap: 18px;
  flex-direction: column;
  display: flex;
}

.services-hero-text {
  color: #fff;
  font-size: 140px;
  font-weight: 600;
  line-height: .9;
}

.services-text-wrapper {
  max-width: 830px;
}

.services-short-text {
  max-width: 600px;
}

.services-hero-paragraph {
  color: #fff;
  max-width: 680px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.services-image {
  width: 35%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.brand-strategy-title-holder {
  padding-top: 89px;
  padding-bottom: 89px;
}

.brand-strategy-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
}

.black-line {
  background-color: #000;
  width: 100%;
  height: 1px;
}

.brand-strategy-grid-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.brand-strategy-grid {
  grid-column-gap: 140px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.brand-strategy-text-holder.white-text {
  color: #fff;
}

.brand-strategy-small-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
}

.list-holder {
  padding-top: 40px;
}

.list-item {
  font-size: 18px;
}

.no-padding-list {
  padding-left: 15px;
}

.services-list-item {
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-strategy-button-holder {
  padding-top: 32px;
  padding-bottom: 32px;
}

.black-grey-section {
  background-color: var(--black-section-s);
}

.left-title-container-no-padding {
  min-width: 380px;
  padding-top: 0;
  padding-bottom: 0;
}

.left-title-container-no-padding.white-text {
  grid-row-gap: 12px;
  color: #fff;
  flex-direction: column;
  display: flex;
}

.qoute-holder {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.qoute-container {
  width: 100%;
  height: 100%;
  padding: 90px 40px 20px;
}

.qoute-icon-holder {
  width: 130px;
  position: absolute;
  top: -40px;
}

.qoute-icon {
  width: 100%;
}

.qoute-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
}

.qoute-person-holder {
  flex-direction: column;
  align-items: center;
  margin-top: 110px;
  display: flex;
}

.qoute-person {
  font-size: 18px;
  font-weight: 600;
}

.qoute-person-job-position {
  font-size: 18px;
}

.featured-blog-holder {
  grid-column-gap: 80px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.featured-blog-content-holder {
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  max-width: 470px;
  display: flex;
}

.featured-text {
  font-size: 16px;
  font-weight: 400;
}

.featured-blog-title {
  margin-top: 20px;
  font-size: 36px;
  font-weight: 500;
}

.featured-blog-paragraph {
  font-size: 18px;
  font-weight: 300;
}

.featured-blog-button-holder {
  margin-top: 50px;
}

.featured-blog-thumbnail-image-holder {
  width: 100%;
  height: 420px;
}

.featured-blog-thumbnail-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.featured-blog-item {
  max-width: 90%;
  transition: transform .425s;
}

.featured-blog-item:hover {
  transform: scale(1.05);
}

.featured-blog-item-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.featured-blog-wrapper {
  padding-top: 70px;
  padding-bottom: 70px;
}

.category-list {
  grid-column-gap: 25px;
  display: flex;
}

.category-list-text-holder {
  color: #fff;
}

.category-list-text-holder.w--current {
  color: var(--tomato);
}

.category-list-text {
  font-size: 18px;
  font-weight: 500;
  transition: color .425s;
}

.category-list-text:hover {
  color: #acacac;
}

.category-item-holder {
  grid-column-gap: 25px;
  display: flex;
}

.light-grey {
  background-color: #fafbff;
  margin-top: -80px;
  padding-top: 80px;
  position: relative;
}

.text-field-holder {
  grid-column-gap: 20px;
  width: 100%;
  display: flex;
}

.contact-field-label {
  white-space: nowrap;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 500;
}

.contact-text-field {
  color: #000;
  background-color: #fff0;
  border: 1px #000;
  border-bottom-style: solid;
  border-radius: 0;
  margin-top: 8px;
  margin-bottom: 0;
  padding: 0 0 11px;
  font-size: 36px;
  font-weight: 400;
  transition: border-color .425s;
}

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

.contact-text-field::placeholder {
  color: #bdbdbd;
}

.contact-form-block {
  margin-top: 90px;
  margin-bottom: 90px;
}

.form {
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.contact-button-holder {
  margin-top: 30px;
}

.blog-post-main-image-holder {
  width: 100%;
  height: 60vh;
  margin-bottom: 60px;
}

.blog-post-main-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-post-info-holder {
  grid-column-gap: 30px;
  align-items: center;
  display: flex;
}

.blog-date {
  white-space: nowrap;
  font-size: 16px;
}

.blog-post-share-holder {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.blog-post-icons {
  grid-column-gap: 18px;
  opacity: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  display: flex;
}

.blog-rich-text-holder {
  padding-top: 0;
  padding-bottom: 61px;
}

.projects-hero-holder {
  justify-content: center;
  align-items: center;
  height: 90vh;
  margin-top: -80px;
  padding-top: 80px;
  display: flex;
}

.projects-title-holder {
  z-index: 2;
  position: relative;
}

.project-main-title {
  color: #fff;
  text-align: center;
  font-size: 140px;
  font-weight: 600;
}

.project-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.overlay {
  z-index: 1;
  opacity: .3;
  background-color: #000;
  position: absolute;
  inset: 0%;
}

.project-rich-text-grid {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

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

.projects-details {
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.project-details-title {
  color: #1d423e80;
  font-size: 16px;
  font-weight: 500;
}

.project-detail {
  color: #1d423e;
  font-size: 16px;
  font-weight: 500;
}

.nav-link-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav-link-container {
  text-align: left;
  min-width: 70%;
}

.menu-info-holder {
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  display: flex;
}

.menu-info-wrapper {
  grid-row-gap: 80px;
  flex-direction: column;
  align-items: flex-start;
  width: 380px;
  display: flex;
}

.menu-info {
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 270px;
  display: flex;
}

.menu-info-text {
  color: #fff;
  text-align: left;
  font-size: 16px;
}

.menu-link-holder {
  grid-column-gap: 30px;
  display: flex;
}

.menu-link-small {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.menu-link-text:hover {
  color: var(--tomato);
}

.fire-lottie {
  width: 150px;
  position: relative;
  top: -16px;
}

.perspective {
  perspective: 1500px;
}

.blog-title-wrapper {
  grid-row-gap: 12px;
  flex-direction: column;
  padding-top: 32px;
  padding-bottom: 62px;
  display: flex;
}

.blog-title-big {
  font-size: 64px;
  font-weight: 500;
}

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

.projects-hero-wrapper {
  flex-direction: column;
  padding-top: 90px;
  padding-bottom: 200px;
  display: flex;
  position: relative;
}

.projects-text-holder {
  z-index: 2;
  grid-column-gap: 30px;
  color: #f0f0f0;
  flex-direction: row;
  align-items: center;
  width: 90%;
  display: flex;
  position: relative;
}

.project-secondary-text {
  color: #1a1a1a00;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  white-space: nowrap;
  font-family: Clashgrotesk Medium, sans-serif;
  font-size: 15vw;
  font-weight: 500;
  line-height: 1;
}

.project-secondary-text.filled {
  color: #fff;
  text-shadow: none;
  font-family: Clashgrotesk Medium, sans-serif;
}

.favorite-project-holder {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0%;
}

.favorite-project {
  width: 500px;
}

.favorite-image {
  width: 100%;
}

.footer-header {
  justify-content: space-between;
  display: flex;
}

.footer-heading-text {
  max-width: 730px;
  font-size: 52px;
  font-weight: 500;
}

.footer-logo-holder {
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.footer-logo {
  width: 80px;
}

.contact-us-button {
  grid-column-gap: 12px;
  color: var(--tomato);
  align-items: center;
  font-size: 36px;
  font-weight: 500;
  transition-property: opacity;
  display: flex;
}

.contact-us-button:hover {
  opacity: .7;
  color: var(--tomato);
}

.white-link {
  color: #fff;
}

.white-link:hover {
  color: var(--tomato);
}

.footer-logo-wrapper {
  transition-property: opacity;
}

.footer-logo-wrapper:hover {
  opacity: .8;
}

.hero-illustation {
  z-index: 2;
  width: 380px;
  display: none;
  position: absolute;
  inset: 23% 8% auto auto;
}

.project-person {
  width: 230px;
  position: absolute;
  inset: auto 3% -2% auto;
}

.timeless-person {
  width: 250px;
  position: absolute;
  inset: auto auto -18% -8%;
}

.review-person {
  width: 260px;
  position: absolute;
  inset: -293px 0% auto auto;
}

.blog-person {
  width: 160px;
  position: absolute;
  inset: auto 0% -2% auto;
}

.contact-person {
  width: 320px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.team-icon-wrapper {
  grid-column-gap: 16px;
  flex-direction: row;
  display: flex;
}

.buy-template-holder {
  z-index: 20;
  grid-column-gap: 10px;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.buy-template-link {
  grid-column-gap: 10px;
  opacity: .8;
  border: 1px solid #0003;
  border-radius: 6px;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .4s, opacity .4s, box-shadow .475s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.buy-template-link:hover {
  opacity: 1;
  color: #000;
  border-color: #4253ff;
  text-decoration: none;
  box-shadow: 0 6px 20px #0000003b;
}

.buy-this-template-button-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #fff;
  border-radius: 6px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
  display: flex;
}

.buy-this-template-content {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.buy-this-template-text {
  color: #000;
  font-weight: 400;
}

.buy-webflow-template-content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.webflow-icon {
  background-image: url('../images/webflow-blue-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  display: block;
}

.buy-template-price {
  font-weight: 700;
}

.div-block, .div-block-2 {
  display: none;
}

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

  .hero-tags._01 {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #0000;
  }

  .hero-tags._02 {
    background-color: #0000;
    border-width: 6px;
    border-color: #000;
  }

  .hero-tags._03 {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #0000;
  }

  .hero-tag-text {
    color: #000;
  }

  .top-project-title {
    font-size: 48px;
    line-height: 1.2;
  }

  .top-project-title-wrapper {
    max-width: 1280px;
  }

  .project-list-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .project-title {
    line-height: 1;
  }

  .project-thumbnail-holder {
    right: 120px;
  }

  .project-title-holder {
    flex-flow: column;
    max-width: 800px;
  }

  .services-container {
    padding: 60px 40px;
  }

  .blog-thumbnail-holder {
    height: 420px;
  }

  .services-image {
    width: 40%;
  }

  .qoute-container {
    padding-left: 120px;
    padding-right: 120px;
  }

  .featured-blog-content-holder {
    min-width: 490px;
  }

  .nav-link-wrapper {
    max-width: 1250px;
  }

  .projects-text-holder {
    color: #aaa;
  }

  .project-secondary-text {
    line-height: 1.1;
  }

  .timeless-person {
    left: -1%;
  }

  .bold-text-2 {
    font-weight: 600;
  }
}

@media screen and (max-width: 991px) {
  .container {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }

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

  .footer-link {
    padding-top: 0;
    padding-bottom: 2px;
    font-size: 16px;
    font-weight: 400;
  }

  .link-block-underline {
    display: none;
  }

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

  .made-by-section {
    flex-direction: column;
  }

  .nav-link-holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px 0;
    display: flex;
  }

  .menu-button {
    transition: background-color .35s;
    display: flex;
  }

  .copyright-text {
    color: #dadada;
  }

  .style-guide-tab-holder {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .style-guide-left-panel-holder {
    width: 100%;
  }

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

  .style-guide-left-panel {
    grid-column-gap: 16px;
    grid-row-gap: 50px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 1em;
    display: grid;
  }

  .link-block-2 {
    padding-top: 0;
    padding-bottom: 2px;
  }

  .style-guide-empty-container {
    padding: 17px 0;
  }

  .button {
    font-weight: 500;
  }

  .style-guide-main-panel {
    padding: 16px;
  }

  .style-guide-container {
    flex-direction: column;
  }

  .style-guide-hero-holder {
    padding: 1em;
  }

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

  .link-with-line {
    padding-top: 0;
    padding-bottom: 2px;
  }

  .home-hero-section {
    grid-row-gap: 0px;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-tags-container {
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-tags._01, .hero-tags._03 {
    border-width: 5px;
  }

  .hero-tag-text {
    font-size: 50px;
  }

  .hero-grid {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .hero-paragraph-holder {
    width: 100%;
    max-width: none;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-right: 200px;
  }

  .project-list-wrapper {
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .project-title {
    opacity: 1;
  }

  .project-thumbnail-holder {
    position: relative;
    right: auto;
  }

  .project-item-holder {
    grid-row-gap: 120px;
  }

  .sub-heading {
    font-weight: 400;
  }

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

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

  .job-position-container {
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 31px;
    position: relative;
  }

  .job-title {
    width: auto;
    margin-right: 0;
  }

  .job-description {
    max-width: none;
  }

  .arrow-holder {
    justify-content: flex-end;
    width: 90%;
    position: absolute;
  }

  .left-title-container {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .slider {
    padding-top: 54px;
    padding-left: 0;
  }

  .slider-content-holder {
    grid-column-gap: 40px;
  }

  .slider-content-wrapper {
    grid-row-gap: 16px;
    max-width: 320px;
  }

  .slider-image-holder {
    max-height: 510px;
  }

  .slider-image {
    border-radius: 12px;
  }

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

  .blog-holder {
    border-top-left-radius: 42px;
    border-top-right-radius: 42px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .blog-grid-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

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

  .about-hero-section {
    grid-row-gap: 50px;
    text-align: center;
    flex-direction: column-reverse;
    display: flex;
  }

  .about-illustation-image-holder {
    width: 40%;
  }

  .hero-text-02 {
    font-size: 60px;
    font-weight: 500;
  }

  .about-paragraph {
    font-size: 18px;
    font-weight: 400;
  }

  .about-image-holder {
    height: 340px;
  }

  .story-grid {
    grid-column-gap: 30px;
    grid-row-gap: 120px;
  }

  .story-image-holder {
    height: 260px;
  }

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

  .statistics-grid {
    grid-column-gap: 80px;
  }

  .statistic-grid-holder {
    grid-row-gap: 30px;
  }

  .statistic-number {
    font-size: 50px;
    font-weight: 600;
  }

  .statistic-subtitle {
    font-size: 28px;
  }

  .statistic-paragraph {
    font-size: 16px;
    font-weight: 300;
  }

  .services-hero-text {
    font-size: 100px;
  }

  .services-hero-paragraph {
    max-width: 420px;
  }

  .services-image {
    width: 40%;
    bottom: 6%;
  }

  .brand-strategy-title-holder {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .brand-strategy-title {
    font-size: 42px;
  }

  .brand-strategy-grid-holder {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .brand-strategy-small-title {
    font-size: 24px;
  }

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

  .services-list-item {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .left-title-container-no-padding {
    min-width: 0;
  }

  .featured-blog-holder {
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-blog-paragraph {
    color: #ffffffa3;
  }

  .featured-blog-item {
    max-width: 100%;
  }

  .featured-blog-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .category-list {
    margin-top: 120px;
  }

  .text-field-holder {
    grid-column-gap: 12px;
  }

  .contact-field-label {
    font-size: 26px;
  }

  .contact-text-field {
    margin-top: -3px;
  }

  .form {
    grid-row-gap: 24px;
  }

  .project-main-title {
    font-size: 80px;
  }

  .overlay {
    opacity: .59;
  }

  .project-rich-text-grid {
    grid-row-gap: 60px;
    flex-direction: column;
    display: flex;
  }

  .menu-info-wrapper {
    grid-row-gap: 30px;
  }

  .projects-hero-wrapper {
    justify-content: center;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .project-secondary-text {
    -webkit-text-stroke-width: 1px;
    font-size: 100px;
  }

  .favorite-project-holder {
    align-items: center;
  }

  .favorite-project {
    width: 350px;
  }

  .footer-header {
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo-holder {
    align-items: flex-start;
  }

  .white-link {
    font-weight: 500;
  }

  .hero-illustation {
    width: 210px;
    display: none;
    inset: 0% 0% auto auto;
  }

  .timeless-person, .review-person {
    display: none;
  }
}

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

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 30px;
  }

  .container {
    padding: 1.5em 1em;
  }

  .hero-section {
    height: auto;
  }

  .nav-menu {
    padding-left: 1em;
    padding-right: 1em;
  }

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

  .footer {
    padding-top: 2em;
  }

  .change-log-container {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2em 1em;
  }

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

  .style-guide-left-panel {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr 1fr;
  }

  .colors-holder {
    flex-direction: column;
    align-items: flex-start;
  }

  .style-guide-empty-container {
    padding-left: 0;
    padding-right: 0;
  }

  .font-holder {
    flex-direction: column;
    padding: 16px;
  }

  .hero-section-secondary {
    height: auto;
  }

  .hero-description-short-container {
    max-width: 100%;
  }

  .nav-menu-wrapper {
    grid-column-gap: 0px;
  }

  .nav-menu-static-links {
    font-size: 18px;
  }

  .hero-tags {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .hero-paragraph-holder {
    padding-right: 90px;
  }

  .top-project-tag {
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
  }

  .top-project-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
  }

  .title-holder {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .services-title-holder {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .services-grid {
    flex-direction: column;
    display: flex;
  }

  .services {
    height: auto;
  }

  .services-container {
    padding: 25px;
  }

  .services-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
  }

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

  .job-position-container {
    padding-right: 70px;
  }

  .left-title-container.white-text {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mask {
    border-radius: 24px;
  }

  .slide {
    padding: 24px;
  }

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

  .slider-logo-holder {
    width: 120px;
  }

  .question-holder {
    margin-bottom: 0;
  }

  .questions-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .blog-holder {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-illustation-image-holder {
    width: 70%;
  }

  .story-paragraph-holder {
    margin-top: 26px;
    margin-bottom: 26px;
  }

  .story-paragraph {
    font-size: 24px;
  }

  .team-grid {
    flex-direction: column;
    display: flex;
  }

  .team-cta {
    border-radius: 20px;
    padding: 37px 16px;
  }

  .heart-icon-holder {
    width: 40px;
  }

  .team-cta-content {
    font-size: 28px;
  }

  .statistics-grid {
    grid-row-gap: 30px;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
  }

  .statistic-grid-holder {
    grid-column-gap: 30px;
  }

  .services-hero-holder {
    grid-row-gap: 30px;
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
  }

  .services-hero-text {
    font-size: 60px;
    font-weight: 500;
  }

  .services-hero-paragraph {
    max-width: none;
    font-size: 18px;
    font-weight: 300;
  }

  .services-image {
    width: 60%;
    position: relative;
  }

  .qoute-container {
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .qoute-heading {
    font-size: 28px;
  }

  .qoute-person-holder {
    margin-top: 60px;
  }

  .text-field-holder {
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .contact-text-field {
    width: auto;
    font-size: 20px;
  }

  .form {
    flex-wrap: wrap;
  }

  .nav-link-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .nav-link-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .menu-info-holder {
    padding: 0;
  }

  .blog-title-big {
    font-size: 32px;
    font-weight: 600;
  }

  .project-secondary-text {
    font-size: 70px;
  }

  .favorite-project {
    opacity: .7;
    width: 250px;
  }

  .review-person {
    display: none;
  }

  .contact-person {
    width: 200px;
  }
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
    font-weight: 600;
  }

  h4 {
    font-size: 24px;
    font-weight: 600;
  }

  h5 {
    font-size: 20px;
    font-weight: 500;
  }

  h6 {
    font-weight: 500;
  }

  .section {
    overflow: hidden;
  }

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

  .navbar {
    height: 60px;
  }

  .hero-section {
    min-height: 80vh;
  }

  .grid-6-col {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr 1fr;
  }

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

  .utility-page-content {
    padding: 29px;
  }

  .utility-page-form {
    justify-content: space-between;
    height: 420px;
    padding: 30px;
  }

  .footer {
    text-align: left;
  }

  .footer-content {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .made-by-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link-holder {
    padding-top: 0;
    padding-bottom: 0;
  }

  .rich-text h5 {
    font-size: 17px;
    line-height: 1.4;
  }

  .rich-text figure {
    background-color: #eef0f3;
    margin-top: 2em;
    margin-bottom: 3em;
    padding: 15px;
  }

  .rich-text blockquote {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 40px 0;
    font-size: 20px;
  }

  .rich-text ul {
    padding-left: 20px;
  }

  .rich-text h3 {
    font-size: 19px;
    line-height: 1.4;
  }

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

  .rich-text h1 {
    font-size: 26px;
    font-weight: 500;
  }

  .rich-text p {
    font-size: 15px;
  }

  .rich-text h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .rich-text ol {
    padding-left: 20px;
  }

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

  .rich-text h6 {
    font-size: 17px;
    line-height: 1.4;
  }

  .rich-text li {
    font-size: 15px;
  }

  .style-guide-title-holder {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }

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

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

  .style-guide-left-panel {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    display: flex;
  }

  .headings-container {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .grid-holder {
    padding: 1em;
  }

  .paragraph-container {
    width: 100%;
  }

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

  .aa-font {
    font-size: 80px;
  }

  .button {
    padding: 12px 55px 12px 28px;
  }

  .button-holder, .headings-holder {
    padding: 1em;
  }

  .brand-link {
    width: 80px;
  }

  .nav-link {
    padding: 0;
    font-size: 47px;
  }

  .nav-link:hover {
    margin-left: 0;
  }

  .hero-section-secondary {
    min-height: 40vh;
  }

  .license-box {
    padding-left: 1em;
    padding-right: 1em;
  }

  .client-logo {
    max-width: 90px;
    max-height: 20px;
  }

  .instruction-item {
    padding-left: 1em;
    padding-right: 1em;
  }

  .nav-menu-static {
    display: none;
  }

  .nav-menu-static-links {
    font-size: 14px;
  }

  .home-hero-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero-tags-holder, .hero-tags-container {
    width: 100%;
  }

  .hero-tag-text {
    font-size: 40px;
  }

  .hero-paragraph-holder {
    padding-right: 0;
  }

  .scroll-down-holder {
    width: 150px;
    height: 150px;
  }

  .top-project-title {
    font-size: 32px;
  }

  .top-projects-wrapper {
    padding-bottom: 200px;
  }

  .project-title {
    font-size: 40px;
    font-weight: 500;
  }

  .project-thumbnail-container {
    width: 100%;
  }

  .title-holder {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .services {
    border-radius: 11px;
  }

  .job-position-holder {
    grid-row-gap: 30px;
    padding-bottom: 30px;
  }

  .job-position-container {
    grid-row-gap: 4px;
    padding: 20px 51px 20px 20px;
  }

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

  .job-description {
    font-size: 14px;
  }

  .review-slider-holder {
    padding-top: 91px;
  }

  .slider-content-wrapper {
    grid-row-gap: 30px;
  }

  .questions-grid {
    flex-direction: column;
    display: flex;
  }

  .blog-holder {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  .blog-grid-wrapper {
    margin-top: 14px;
    margin-bottom: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .blog-grid {
    flex-direction: column;
    display: flex;
  }

  .hero-tags-wrapper {
    width: 100%;
  }

  .about-hero-section, .about-hero-container {
    grid-row-gap: 30px;
  }

  .about-illustation-image-holder {
    width: 100%;
  }

  .hero-text-02 {
    font-size: 40px;
    line-height: 1.1;
  }

  .about-images-holder {
    margin-top: 44px;
    margin-bottom: 44px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .about-image-holder {
    height: 200px;
  }

  .about-image-holder._02 {
    margin-top: -30px;
  }

  .story-grid {
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .story-images-wrapper {
    grid-row-gap: 30px;
  }

  .statistic-grid-holder {
    grid-row-gap: 60px;
    flex-direction: column;
    display: flex;
  }

  .services-hero-text {
    font-size: 36px;
  }

  .services-image {
    width: 90%;
    bottom: 0%;
  }

  .brand-strategy-title-holder {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .brand-strategy-title {
    font-size: 32px;
  }

  .brand-strategy-grid {
    grid-row-gap: 60px;
    flex-direction: column;
    display: flex;
  }

  .brand-strategy-small-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
  }

  .list-item {
    font-size: 16px;
    font-weight: 400;
  }

  .qoute-holder {
    border-radius: 24px;
  }

  .qoute-container {
    padding: 80px 18px 18px;
  }

  .qoute-heading {
    text-align: left;
    font-size: 20px;
  }

  .qoute-person-holder {
    align-items: flex-start;
    margin-top: 30px;
  }

  .featured-blog-content-holder {
    padding-top: 30px;
  }

  .featured-blog-title {
    margin-bottom: 10px;
    line-height: 1.1;
  }

  .contact-text-field {
    padding-bottom: 0;
  }

  .contact-text-field::placeholder {
    color: #afafaf;
  }

  .form {
    grid-row-gap: 2px;
  }

  .blog-post-main-image-holder {
    height: 40vh;
  }

  .blog-post-info-holder {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .project-main-title {
    font-size: 50px;
    font-weight: 500;
  }

  .nav-link-wrapper {
    grid-row-gap: 40px;
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: 70px;
  }

  .nav-link-container {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    height: auto;
  }

  .menu-info-holder {
    height: auto;
  }

  .menu-info-wrapper {
    grid-row-gap: 10px;
    width: 100%;
  }

  .menu-info {
    grid-row-gap: 10px;
  }

  .menu-link-holder {
    grid-column-gap: 30px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fire-lottie {
    width: 110px;
  }

  .perspective {
    width: 100%;
  }

  .projects-hero-wrapper {
    height: 60vh;
  }

  .footer-heading-text {
    font-size: 32px;
    line-height: 1.1;
  }

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

  .footer-logo {
    width: 70px;
  }

  .project-person {
    width: 120px;
    bottom: -1%;
  }

  .timeless-person {
    width: 120px;
    bottom: -35%;
  }

  .review-person {
    width: 140px;
    inset: -10px 0% auto auto;
  }

  .contact-person {
    width: 150px;
  }

  .buy-template-holder {
    margin-bottom: 1em;
    margin-left: 1em;
    margin-right: 1em;
  }
}

#w-node-_21e7731c-4bc1-6ef6-4041-677291902d68-e524b82a, #w-node-_3920074c-e385-2449-b888-eda14c5c8570-e524b82a, #w-node-_7dd8b774-f668-0afa-2879-aa17031fb700-e524b82a, #w-node-_7a264b9b-f78d-f5df-5278-a72db78114df-e524b82a, #w-node-cf2973de-9edc-837c-9341-f8a2ec12c488-e524b82a, #w-node-_2074d206-195f-8eb0-1b4b-24091e2e1853-e524b82a, #w-node-a4dc9d2f-0ac2-9ad8-a010-85fcc681120b-e524b82a, #w-node-_8b8ea9d5-e345-b2f7-64c5-02f62c52af16-e524b82a, #w-node-_78854d4a-9126-b80f-c177-a70fac40025a-e524b82a, #w-node-_5d2f07af-e5c5-ce40-a136-3c6018afc6ed-e524b82a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_335cb525-acbc-cbaa-f74e-d983edac55be-245b60b9 {
  justify-self: start;
}

#w-node-_622a45c8-103c-30e3-5783-4d46ad938c14-e524b88a, #w-node-b1078083-528c-8a78-9451-10023c5ce546-e524b88a, #w-node-_2d0a1bf9-b5f4-adf1-c02a-5eac1e935d88-e524b88a, #w-node-_7eb1222e-9580-c875-bb4c-680b609efc47-e524b88a, #w-node-c36b843d-59da-f500-5277-867ccfc46c3b-e524b88a, #w-node-_4863c51c-4368-cf5e-69b5-d0addca86478-e524b88a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459e6e-e524b8a2, #w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459eb6-e524b8a2, #w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459ebc-e524b8a2, #w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459ec1-e524b8a2, #w-node-_38b8173a-6c33-0dcc-71f2-1b6aad459ec6-e524b8a2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8b4bf5f8-f8e8-4053-c2f1-94fc26520fa3-e524b8a4, #w-node-_1296d003-d1d8-ef52-1114-3d9bb39a55fa-e524b8a4, #w-node-_6214d12f-bf68-4148-2a61-c103d7f5919e-e524b8a7, #w-node-e1cb55b1-2a67-f347-1512-183ce732bf95-e524b8a7, #w-node-dfea00b7-9290-7f72-2fb0-724d4f47d168-e524b8a7, #w-node-_0ea46059-e3f5-5f96-3007-37b7a26df57f-e524b8a7, #w-node-b52596c3-da86-d379-e7f8-fc9a313196dd-313196dd, #w-node-_37dfbae0-d613-66fd-cbef-2ff37cb3188b-e524b8a8, #w-node-_37dfbae0-d613-66fd-cbef-2ff37cb31897-e524b8a8, #w-node-_37dfbae0-d613-66fd-cbef-2ff37cb318a3-e524b8a8, #w-node-_37dfbae0-d613-66fd-cbef-2ff37cb318af-e524b8a8, #w-node-_37dfbae0-d613-66fd-cbef-2ff37cb318bb-e524b8a8, #w-node-_37dfbae0-d613-66fd-cbef-2ff37cb318c7-e524b8a8, #w-node-_7c51ccf0-6930-991a-4477-1b4f5dcf0471-e524b8aa, #w-node-_7c51ccf0-6930-991a-4477-1b4f5dcf047b-e524b8aa, #w-node-_7c51ccf0-6930-991a-4477-1b4f5dcf0485-e524b8aa, #w-node-_7c51ccf0-6930-991a-4477-1b4f5dcf048f-e524b8aa, #w-node-_7c51ccf0-6930-991a-4477-1b4f5dcf0499-e524b8aa, #w-node-_7c51ccf0-6930-991a-4477-1b4f5dcf04a3-e524b8aa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-dfea00b7-9290-7f72-2fb0-724d4f47d168-e524b8a7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Clashgrotesk Medium';
  src: url('../fonts/ClashGrotesk-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashgrotesk Regular';
  src: url('../fonts/ClashGrotesk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clashgrotesk variable';
  src: url('../fonts/ClashGrotesk-Variable.ttf') format('truetype');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}