@font-face {
  font-family: Supreme;
  src: url('../fonts/Supreme-Bold.otf') format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Messapia;
  src: url('../fonts/Messapia-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Messapia;
  src: url('../fonts/Messapia-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --main-black: #121010;
  --sand-color: #e4c180;
  --green-yellow: #c8ff54;
  --main-gray: #e7e7e7;
  --blue: #5200ff;
}

.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(--main-black);
  color: #fff;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Space Grotesk, sans-serif;
  font-size: 120px;
  font-weight: 500;
  line-height: 1.2;
}

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

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

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

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

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

p {
  color: #ebebeb;
  letter-spacing: 1.3px;
  margin-bottom: 10px;
  line-height: 1.7;
}

a {
  color: #b8b7b7;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

blockquote {
  color: var(--sand-color);
  text-align: center;
  background-image: url('../images/Qoute-Image.svg'), url('../images/Qoute-Image2.svg');
  background-position: 100% 100%, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: 150px 150px, 150px 150px;
  background-attachment: scroll, scroll;
  border: 1px #000;
  margin-bottom: 10px;
  padding: 30px 49px;
  font-size: 42px;
  line-height: 1.2;
}

.link-animation {
  color: #fff;
  border-radius: 4px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.link-animation:hover {
  text-decoration: none;
}

.link-animation:visited, .link-animation.w--current {
  font-weight: 600;
}

.container {
  justify-content: center;
  align-items: center;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 3em;
}

.container.nav-container {
  width: auto;
  padding: 0 3em;
}

.container.no-padding {
  padding: 0;
}

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

.container.large-padding {
  padding-top: 9em;
  padding-bottom: 9em;
}

.container.large-padding.yellow {
  background-color: var(--green-yellow);
  height: auto;
}

.container.large-padding.immune {
  background-image: none;
  background-position: 0 0;
  background-size: auto;
}

.container.large-padding.treatments {
  background-image: url('../images/treatments.png');
  background-position: 0 0;
  background-size: auto;
}

.container.no-padding-bot {
  padding-bottom: 0;
}

.container.top-border {
  border-top: 1px solid var(--main-gray);
}

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

.navbar {
  z-index: 10000;
  background-color: #0000;
  position: fixed;
  inset: 0% 0% auto;
}

.contact-me-button {
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 75px;
  display: flex;
  position: relative;
}

.nav-menu {
  background-color: #0000;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  position: relative;
}

.center-arrow {
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  display: flex;
  position: static;
}

.nav-avatar {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  transition: transform .5s, border-color .35s;
  overflow: hidden;
}

.nav-avatar:hover {
  border: 1px solid var(--main-gray);
  transform: scale(.89);
}

.brand {
  width: 70px;
  height: 70px;
}

.section.white-background {
  background-color: var(--main-gray);
}

.section.white-background.overflow-hidden, .section.overflow-hidden {
  overflow: hidden;
}

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

.section.yellow {
  background-color: var(--green-yellow);
  height: 100vh;
}

.section.immune {
  background-image: url('../images/immune-1.png');
  background-position: 0 0;
  background-size: cover;
}

.heading-text-holder {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

._24px {
  color: var(--main-gray);
  letter-spacing: 1.4px;
  font-size: 24px;
  line-height: 1.2;
}

.line-container {
  align-items: center;
  margin-left: 9em;
  display: flex;
  position: absolute;
  inset: 0%;
}

.line {
  background-color: var(--sand-color);
  width: 100%;
  height: 1px;
}

.small-top-margin {
  margin-top: 24px;
}

.a---vertical-left {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.button {
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 15px 60px;
  font-size: 24px;
  transition: border-color .2s;
}

.button:hover {
  border-color: var(--sand-color);
}

.button.arrow {
  color: var(--main-gray);
  letter-spacing: .8px;
  background-color: #0000;
  background-image: url('../images/White-Arrow-Right.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  border-width: 0;
  padding-right: 30px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s, padding .2s;
}

.button.arrow:hover {
  color: #b8b8b8;
  padding-right: 40px;
}

.button.arrow.no-padding-left {
  padding-left: 0;
}

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

.hero-text.outline {
  color: var(--main-black);
  text-shadow: -1px 0 #fff, 1px 0 #fff, 0 1px #fff, 0 -1px #fff;
  line-height: .8;
}

.hero-text.outline.small {
  text-shadow: -1px 0 #fff, 1px 0 #fff, 0 1px #fff, 0 -1px #fff;
  font-size: 160px;
}

.hero-text.outline.small._01 {
  display: block;
}

.hero-text.outline._01 {
  color: var(--main-black);
  text-align: center;
  display: none;
  position: absolute;
}

.hero-text.outline._01.yellow-text {
  color: var(--green-yellow);
  display: block;
  position: absolute;
}

.hero-container {
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  height: 400vh;
  display: flex;
}

.hero-vertical {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.project-list {
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80%;
  display: flex;
}

.background-name-container {
  z-index: -19;
  opacity: .1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.project-container {
  border-radius: 25px;
  width: 360px;
  height: 500px;
  position: relative;
}

.project-container._01 {
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-end;
  width: 600px;
  height: 600px;
  display: flex;
}

.project-container._02, .project-container._03, .project-container._04 {
  width: 600px;
}

.project-main-image {
  object-fit: cover;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-main-image._01, .project-main-image._02, .project-main-image._03, .project-main-image._04 {
  object-fit: contain;
}

.project-title-container {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 180%;
  display: flex;
  position: absolute;
  inset: 5% 0% 0% -40%;
}

.yellow-color-text {
  color: var(--green-yellow);
  font-family: Messapia, sans-serif;
  font-weight: 700;
}

.yellow-color-text.email {
  color: var(--blue);
}

.no-padding-top {
  margin-top: 0;
}

.slide {
  perspective: 1000px;
}

.l-margin-space {
  margin-top: 70px;
}

.l-margin-space.callout {
  margin-top: 120px;
  margin-bottom: 120px;
}

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

.text-center.z-index {
  z-index: 3;
  position: relative;
}

.text-center.about-me {
  flex-direction: row;
  position: relative;
}

.hero-text-holder-right, .hero-text-holder-left {
  display: flex;
  overflow: visible;
}

.hero-text-holder {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 30000px;
  display: flex;
  transform: scale(1);
}

.hero-text-holder.right-to-left-text {
  text-align: left;
  transform: none;
}

.full-text-view-container {
  background-color: #5200ff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.heading-title-container {
  font-size: 14px;
  overflow: hidden;
}

.margins {
  margin-left: 32px;
  margin-right: 32px;
  font-size: 24px;
}

.profile-image-container {
  flex: 0 auto;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: block;
  position: relative;
}

.profile-image {
  opacity: 1;
  object-fit: cover;
  object-position: 50% 50%;
  background-color: #0000;
  border-radius: 42px;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: 50%;
  display: block;
}

.profile-image.basics {
  opacity: .2;
  width: auto;
  height: 80vh;
  max-height: none;
  display: inline-block;
}

.full-name-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: auto 0% 10%;
}

.full-name-container.calllout {
  bottom: 0;
}

.full-name-holder {
  text-align: center;
  width: 90%;
  padding-left: 0;
}

.bio-text-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 320px;
  display: flex;
  position: relative;
}

.bio-text-holder.summary {
  padding-top: 200px;
  padding-bottom: 200px;
}

.bio-text-holder.small-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.div-block {
  width: 60%;
}

.arrow-animation-holder {
  z-index: -8;
  height: 70%;
  position: absolute;
  inset: 0%;
}

.lottie-animation {
  height: 100%;
  position: relative;
  bottom: 20%;
}

.creative-process-left-side-container {
  padding-right: 40px;
  position: static;
}

.black-text {
  color: var(--main-black);
  text-transform: uppercase;
  font-family: Messapia, sans-serif;
  font-size: 70px;
  font-weight: 700;
}

.black-text.about-me-text {
  z-index: 3;
  line-height: 1.4;
  position: relative;
}

.semi-bold {
  font-family: Exo, sans-serif;
  font-size: 50px;
  font-weight: 500;
}

.semi-bold.right-aligned {
  text-align: right;
}

.gray-text {
  color: #8d8d8d;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: Exo, sans-serif;
  font-size: 16px;
}

.creative-process-right-side {
  padding-right: 40px;
}

.card-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 65vh;
  margin-bottom: 85px;
  display: flex;
}

.card-holder.last {
  margin-bottom: 0;
}

.card-holder.blank {
  opacity: 1;
  padding-top: 0;
  display: block;
}

.stroke-cricle {
  border: 2px solid #1a2623;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 4px;
  display: flex;
}

.stroke-cricle.white {
  border-color: var(--main-gray);
}

.l-paragraph {
  color: #1a2623;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 1.5;
}

.l-paragraph.white-text {
  font-family: Exo, sans-serif;
}

.sticky-content {
  margin-top: 0;
  margin-bottom: 0;
  position: sticky;
  top: 15%;
}

.contact-footer {
  padding-bottom: 70px;
  overflow: hidden;
}

.email-contact-button {
  align-items: center;
  margin-top: 100px;
  display: flex;
  position: relative;
}

.arrow-button-containr {
  border: 4px solid #454444;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
}

.email-holder {
  z-index: 8;
  perspective: 1000px;
  justify-content: flex-start;
  align-items: center;
  padding-left: 170px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.footer {
  text-align: center;
  align-items: flex-start;
}

.footer-grid-content {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 15%;
  height: 100%;
  display: flex;
}

.white-text {
  color: #fff;
}

.footer-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-bottom: 0;
  padding-top: 20px;
  display: grid;
}

.footer-logo-link-2 {
  max-width: 140px;
  margin-bottom: 20px;
}

.social-media-icon-link {
  font-size: 18px;
  font-weight: 400;
  transition: opacity .2s;
}

.social-media-icon-link:hover {
  opacity: .7;
}

.copyright {
  color: #e0e0e0;
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.section-copyright {
  border-top: 2px solid #454444;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 3em;
  padding-top: 24px;
  display: flex;
}

.link {
  color: #e0e0e0;
  flex: 0 auto;
  margin-right: 5px;
  padding-bottom: 2px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.link:hover {
  text-decoration: none;
}

.footer-heading-2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

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

.perspective {
  z-index: 1;
  perspective: 1000px;
  object-fit: fill;
  position: relative;
}

.animate-in-view.bones {
  padding-bottom: 140px;
}

.full-screen {
  z-index: 1;
  background-color: var(--main-black);
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: relative;
}

.xl-margin-space {
  margin-top: 120px;
}

.xl-margin-space.both {
  margin-top: 150px;
  margin-bottom: 150px;
}

.full-width-line {
  background-color: #b4b4b4;
  width: 100%;
  height: 1px;
  position: absolute;
}

.full-width-line.white {
  background-color: #c4c4c4;
  position: absolute;
}

.full-project-list {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  display: flex;
  position: relative;
}

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

._16px-text.black-text {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
}

._16px-text.caps {
  color: #979797;
  text-transform: uppercase;
}

.full-project-images {
  z-index: -1;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0%;
  overflow: hidden;
  transform: scale(0);
}

.project-grid-container {
  grid-template-rows: auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: block;
}

._18px {
  letter-spacing: 1px;
  font-size: 18px;
}

._18px._100 {
  height: 100%;
}

.animate-in-view-delay {
  flex-direction: column;
  display: flex;
}

.about-me-picutre-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
  display: flex;
  position: relative;
  top: -88px;
}

.about-me-image {
  border-radius: 30px;
  width: 100%;
}

.grey-text {
  color: #828282;
}

.grey-text.regular-text {
  font-weight: 300;
}

.font-card {
  backface-visibility: hidden;
  border: 1.54px solid #5b5b5b;
  border-radius: 20px;
  height: 370px;
  padding: 20px;
  position: relative;
}

.xbutton {
  width: 30px;
  height: 30px;
  position: absolute;
  inset: 10% 5% auto auto;
}

.xbutton.rotate {
  transform: rotate(45deg);
}

.facts-card-container {
  perspective: 1000px;
  cursor: pointer;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.facts-card-openned {
  background-color: var(--main-black);
  border: 1.54px solid #5b5b5b;
  border-radius: 20px;
  height: 100%;
  position: relative;
  inset: 0%;
}

.facts-cared-openned-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 20px 20px;
  display: flex;
}

.back-card {
  background-color: var(--main-black);
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.full-card-holder {
  width: 100%;
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(1deg)rotateZ(0);
}

.blog-card {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: inline-block;
}

.blog-details-holder {
  z-index: 3;
  position: relative;
}

.collection-list {
  column-count: 3;
  column-gap: 40px;
}

.blog-card-image {
  border-radius: 14px;
}

.regular-text {
  font-weight: 300;
}

.project-full-screen-container {
  width: 100%;
}

.project-full-screen-image {
  object-fit: scale-down;
  width: 100%;
}

.invert {
  filter: invert();
}

.arrow-contact {
  position: absolute;
}

.contact-text-image {
  width: 75px;
  height: 75px;
}

.black-gradient {
  z-index: -3;
  background-image: linear-gradient(#000, #0000);
  position: absolute;
  inset: 0%;
}

.white-gradient {
  z-index: -3;
  opacity: 0;
  background-image: linear-gradient(#fff, #fff0);
  position: absolute;
  inset: 0%;
}

.project-item {
  perspective: 1000px;
  width: 290px;
  position: relative;
  inset: 0;
}

.project-item:nth-child(odd) {
  top: 6.6em;
  left: -12em;
}

.project-item:nth-child(2n) {
  top: 2.1em;
  left: 11.6em;
}

.project-item:first-child {
  width: 310px;
  top: 16.9em;
  left: -21.6em;
}

.project-item:last-child {
  width: 240px;
  top: -28.2em;
  left: 26.9em;
}

.project-images {
  width: 100%;
  height: 100%;
}

.project-images-collection {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.project-name {
  z-index: 1;
  color: var(--main-black);
  position: relative;
}

.project-name.z-index {
  z-index: 12;
  opacity: 0;
  color: var(--sand-color);
  position: absolute;
  inset: 0%;
}

.project-name.defualt {
  z-index: -2;
}

.name-holder {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.work-item {
  position: relative;
}

.link-line {
  background-color: #fff;
  width: 100%;
  height: 2px;
  position: static;
  inset: auto 0% 0%;
}

.link-line._01 {
  width: 100%;
  inset: auto 0% 0% 50%;
}

.link-line._02 {
  width: 50%;
}

.link-line-holder {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.footer-link {
  border-radius: 4px;
  padding-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.project-number-holder {
  flex-direction: row;
  width: 60%;
  padding-top: 15px;
  padding-left: 34px;
  display: flex;
  position: relative;
}

.blog-main-image {
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 100%;
}

.hero-secondary-text-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.project-cateogry {
  z-index: 3;
  max-width: 360px;
  font-weight: 400;
  position: absolute;
  inset: auto 5% 5% auto;
}

._14px-text {
  font-size: 14px;
}

._14px-text.semi-bold.white-text {
  font-size: 20px;
  font-weight: 500;
}

.contact-form-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 0;
  display: grid;
}

.field-label {
  font-size: 24px;
  font-weight: 200;
}

.text-field {
  color: #fff;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #fff;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 400;
  transition: transform .2s, border-color .2s;
}

.text-field:focus {
  border-bottom-color: var(--sand-color);
  transform: translate(0, 4px);
}

.form-block {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.form {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  display: flex;
}

.message-form-container {
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-top: 94px;
  display: flex;
}

.contact-form-header {
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.textarea {
  color: #fff;
  background-color: #0000;
  border-top: 2px #000;
  border-bottom: 1px solid #fff;
  border-left: 1px #000;
  border-right: 2px #000;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 140px;
  min-height: 140px;
  max-height: 270px;
  margin-bottom: 24px;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  transition: transform .2s, border-color .2s;
}

.textarea:focus {
  border-bottom-color: var(--sand-color);
  color: #fff;
  font-size: 16px;
  transform: translate(0, 4px);
}

.textarea::placeholder {
  color: #ffffff69;
  font-size: 16px;
  font-weight: 400;
}

.success-message {
  color: var(--sand-color);
  letter-spacing: 1.2px;
  background-color: #0000;
  border: 2px solid #8f8f8f;
  border-radius: 10px;
  font-size: 24px;
}

.error-message {
  background-color: var(--sand-color);
  border: 2px solid #977a44;
  border-radius: 11px;
  width: 100%;
  padding: 29px;
  font-size: 24px;
}

.full-width-line-holder {
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 70px;
  display: flex;
  position: relative;
}

.line-text-holder {
  z-index: 3;
  background-color: var(--main-black);
  padding-left: 23px;
  padding-right: 23px;
  position: relative;
}

.line-text-holder.white {
  background-color: var(--main-gray);
}

.hero-text-2 {
  font-size: 150px;
}

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

.hover-text {
  color: #7b7b7b;
  cursor: default;
  border-bottom: 4px solid #c4c4c4;
}

.about-me-images {
  border-radius: 20px;
  width: 310px;
}

.about-me-images._01 {
  position: relative;
  left: -15.5vw;
}

.about-me-images._02 {
  position: relative;
  top: 36.2vh;
}

.about-me-images._03 {
  position: relative;
  top: -25.6vh;
  left: 105px;
}

.about-me-images-container {
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.message-form {
  width: 100%;
  margin-bottom: 24px;
}

.project-arrow {
  position: absolute;
  inset: 0% auto auto 2%;
}

.change-log-container {
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.change-log-container.licensing {
  text-align: center;
  flex-direction: column;
  padding-top: 0;
}

.change-log-block {
  border-bottom: 3px solid var(--sand-color);
  margin-top: 25px;
  margin-bottom: 25px;
}

._100 {
  width: 100%;
  height: 100%;
}

.extra-small-top-margin {
  margin-top: 8px;
}

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

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 189px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  display: flex;
}

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

.half-div {
  width: 70%;
}

.instruction-images {
  border-radius: 12px;
}

.div-block-2 {
  flex-wrap: nowrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: none;
  height: 75vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image {
  max-width: 100%;
  height: auto;
  display: block;
  position: absolute;
}

.image-2, .fluid, .image-4, .image-5 {
  display: block;
  position: absolute;
}

.image-6, .image-7, .image-8 {
  max-width: none;
  position: absolute;
}

.div-block-4 {
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

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

.hero-center-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

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

.hero-title {
  color: var(--green-yellow);
  text-align: center;
  letter-spacing: 5px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Messapia, sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}

.hero-title.outlined {
  z-index: auto;
  color: var(--main-black);
  text-shadow: 1px 0 #fffc, 0 -1px #fffc, -1px 0 #fffc, 0 1px #fffc, 0 0 1px #fffc;
  display: inline-block;
  position: absolute;
}

.hero-title.outlined._01 {
  z-index: -1;
  transform: scale(.95);
}

.hero-title.outlined._02 {
  z-index: -2;
  text-shadow: 1px 0 #fff9, 0 -1px #fff9, -1px 0 #fff9, 0 1px #fff9, 0 0 1px #fff9;
  transform: scale(.9);
}

.hero-title.outlined._03 {
  z-index: -3;
  text-shadow: 1px 0 #fff6, 0 -1px #fff6, -1px 0 #fff6, 0 1px #fff6, 0 0 1px #fff6;
  transform: scale(.85);
}

.hero-title.outlined._04 {
  z-index: -4;
  text-shadow: 1px 0 #fff3, 0 -1px #fff3, -1px 0 #fff3, 0 1px #fff3, 0 0 1px #fff3;
  transform: scale(.8);
}

.hero-description {
  font-family: Exo, sans-serif;
  font-size: 16px;
}

.image-9 {
  color: #fff;
}

.heading-2 {
  font-family: Exo, sans-serif;
  font-weight: 400;
}

.div-block-5 {
  position: relative;
}

.grid {
  grid-template-rows: 25vh 25vh 25vh 25vh;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  position: absolute;
}

.div-block-6 {
  margin-top: 0;
  margin-left: 0;
}

.div-block-7 {
  margin-top: 10%;
  margin-left: 25%;
}

.div-block-8 {
  margin-top: 0%;
  margin-left: 0%;
  overflow: hidden;
}

.div-block-9 {
  margin-top: 50%;
  margin-left: 20%;
}

.lottie-animation-2 {
  object-fit: fill;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

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

.image-10, .image-11, .image-12, .image-13 {
  display: none;
}

.heading-3 {
  font-family: Messapia, sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
}

.heading-4, .heading-6, .heading-7, .heading-8, .heading-9, .heading-10 {
  font-family: Exo, sans-serif;
}

.number {
  font-family: Messapia, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.text-block-2, .text-block-3, .text-block-4 {
  font-family: Exo, sans-serif;
}

@media screen and (min-width: 1280px) {
  .section.white-background.overflow-hidden, .project-full-screen-container {
    overflow: hidden;
  }
}

@media screen and (min-width: 1440px) {
  .about-me-images._01 {
    top: -98px;
    left: -7.2vw;
  }

  .about-me-images._02 {
    top: 27vh;
  }

  .about-me-images._03 {
    top: -15.2vh;
    left: 82px;
  }
}

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

  h2 {
    font-size: 90px;
  }

  h3 {
    font-size: 72px;
  }

  h4 {
    font-size: 32px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  .link-animation.margin-mobile, .contact-me-button {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .nav-menu {
    background-color: var(--main-black);
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    display: flex;
  }

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

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

  .footer-grid {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .menu-button {
    background-color: #fff;
    border-radius: 12px;
  }

  .hero-content-holder {
    min-height: 150vh;
  }

  .hero-center-container {
    height: 90vh;
  }

  .hero-title {
    font-size: 150px;
  }
}

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

  h2 {
    font-size: 70px;
  }

  h3 {
    font-size: 60px;
  }

  .container {
    padding: 2em;
  }

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

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

  .project-title-container {
    width: 100%;
    left: 0%;
  }

  .yellow-color-text.email {
    font-size: 50px;
  }

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

  .bio-text {
    width: 100%;
  }

  .creative-process-left-side-container {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .email-contact-button {
    flex-direction: column;
    align-items: flex-start;
  }

  .arrow-button-containr {
    width: 110px;
    height: 110px;
    position: relative;
    top: -5.5em;
  }

  .email-holder {
    padding-left: 0;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-grid {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 2.5fr;
    padding-top: 0;
  }

  .copyright {
    text-align: left;
    font-size: 18px;
  }

  .section-copyright {
    text-align: left;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 2em;
    padding-top: 1em;
  }

  .fancy-arrow {
    width: 60%;
    transform: rotate(90deg);
  }

  .collection-list {
    column-count: 2;
  }

  .hero-text-2 {
    font-size: 110px;
  }

  .hero-title {
    font-size: 120px;
  }
}

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

  h2 {
    font-size: 55px;
  }

  h3 {
    font-size: 40px;
  }

  blockquote {
    background-size: 50px, 50px;
    padding: 22px 0;
    font-size: 31px;
  }

  .container {
    padding: 3em 1em;
  }

  .container.nav-container {
    padding: .2em 1em;
  }

  .container.no-padding-mobile {
    padding-top: 1em;
  }

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

  .hero-text.outline.small {
    font-size: 70px;
  }

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

  .project-list._01 {
    height: 100%;
  }

  .project-container {
    border-radius: 13px;
    width: 210px;
    height: 300px;
  }

  .project-title-container {
    justify-content: center;
  }

  .yellow-color-text.email {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 28px;
  }

  .profile-image-container {
    height: 390px;
  }

  .full-name-holder {
    width: 100%;
  }

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

  .creative-process-left-side-container {
    display: none;
    overflow: visible;
  }

  .black-text {
    font-size: 45px;
  }

  .semi-bold {
    font-size: 35px;
  }

  .card-holder.last {
    height: 100vh;
  }

  .card-holder.blank {
    height: auto;
  }

  .card-holder.bones, .card-holder.cartilage, .card-holder.joint {
    height: 100vh;
  }

  .contact-footer {
    padding-bottom: 0;
  }

  .email-contact-button {
    margin-top: 158px;
  }

  .arrow-button-containr {
    border-width: 2px;
    width: 90px;
    height: 90px;
  }

  .footer {
    text-align: left;
    padding: 0;
  }

  .footer-grid {
    flex-direction: column;
    margin-top: 0;
  }

  .footer-logo-link-2 {
    height: 60px;
  }

  .social-media-icon-link {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .copyright, .section-copyright {
    text-align: left;
  }

  .footer-heading-2 {
    margin-top: 20px;
  }

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

  .perspective {
    overflow: hidden;
  }

  .perspective.fulll {
    width: 100%;
    height: 100%;
  }

  .perspective.blank {
    display: none;
  }

  .animate-in-view.full {
    width: 100%;
    height: 100%;
  }

  .about-me-picutre-container {
    width: 90%;
  }

  .about-me-image {
    object-fit: cover;
    height: 400px;
  }

  .font-card {
    height: 450px;
  }

  .blog-card-image-holder {
    width: 100%;
  }

  .collection-list {
    column-count: 1;
  }

  .blog-card-image {
    width: 100%;
    height: 100%;
  }

  .project-cateogry {
    top: 65%;
    bottom: auto;
    right: 7%;
  }

  .form {
    width: 100%;
  }

  .hero-text-2 {
    font-size: 65px;
  }

  .image {
    overflow: visible;
  }

  .hero-content-holder {
    height: 80vh;
    min-height: 120vh;
  }

  .hero-center-container {
    height: 80vh;
  }

  .hero-title {
    font-size: 60px;
    line-height: 1.2;
  }

  .heading-2 {
    font-size: 28px;
    font-weight: 400;
  }

  .div-block-6, .div-block-7 {
    margin-left: 20%;
  }

  .div-block-8 {
    margin-right: 15%;
  }

  .div-block-9 {
    margin-top: 30%;
    margin-right: 15%;
  }

  .lottie-animation-2 {
    object-fit: fill;
  }

  .image-10, .image-11, .image-12, .image-13 {
    object-fit: scale-down;
    height: 60vh;
    margin-top: 40px;
    display: block;
  }

  .heading-3 {
    font-size: 50px;
  }

  .number {
    font-family: Exo, sans-serif;
    font-weight: 500;
  }
}

#w-node-_7da9a899-1d95-3a92-e1c1-eaaf76cbd637-c55cfac4, #w-node-_304d77dc-e0a7-6c0e-ea2e-44fbec33e065-c55cfac4 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_59d3e8e5-ae5a-ca10-4a53-c29e7f163aaf-c55cfac4 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-a714240a-42bb-d47d-634c-5eb34b397360-c55cfac4 {
  grid-area: 2 / 4 / 3 / 6;
  justify-self: start;
}

#w-node-_3476202a-932c-18d3-340b-401a87a69f1c-c55cfac4 {
  grid-area: 3 / 1 / 4 / 3;
  justify-self: auto;
}

#w-node-_4cce8b8b-2f7e-262d-806d-c1aa6adf81e1-c55cfac4 {
  grid-area: 3 / 4 / 4 / 5;
}

#w-node-_6d19aa32-2302-5b04-9465-db26297d236d-c55cfac4, #w-node-_6d19aa32-2302-5b04-9465-db26297d2373-c55cfac4 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-b6842ce8-b75f-443f-98af-83047d2b78ca-7d2b78c7, #w-node-b6842ce8-b75f-443f-98af-83047d2b78da-7d2b78c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-b6842ce8-b75f-443f-98af-83047d2b78de-7d2b78c7, #w-node-b6842ce8-b75f-443f-98af-83047d2b78e1-7d2b78c7, #w-node-b6842ce8-b75f-443f-98af-83047d2b78e4-7d2b78c7, #w-node-b6842ce8-b75f-443f-98af-83047d2b78e7-7d2b78c7 {
  justify-self: start;
}

#w-node-b6842ce8-b75f-443f-98af-83047d2b78ea-7d2b78c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-b6842ce8-b75f-443f-98af-83047d2b78f1-7d2b78c7, #w-node-b6842ce8-b75f-443f-98af-83047d2b78f7-7d2b78c7 {
  justify-self: start;
}

#w-node-_59e23253-642e-0f22-f555-9f6dcbd4e632-d65cfac7 {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-e3bfa7e6-9a0a-2ab9-4656-c631b8038d0d-b8038d0d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#wf-form-Contact-Form.w-node-b2f858d3-2da3-a3e2-c342-d02ed3203c5b-7b5cfaca {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b2f858d3-2da3-a3e2-c342-d02ed3203c5d-7b5cfaca, #w-node-_651665f0-b001-06b7-cf83-03a42f65a477-7b5cfaca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b2f858d3-2da3-a3e2-c342-d02ed3203c72-7b5cfaca {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7297d584-1da9-c2bd-f1f3-7c79f1d091a7-615cfacc {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-_711a394e-9467-a284-daa2-8ac0fbbc9ef6-b35cface {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

@media screen and (max-width: 767px) {
  #w-node-_59e23253-642e-0f22-f555-9f6dcbd4e632-d65cfac7 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-b2f858d3-2da3-a3e2-c342-d02ed3203c5d-7b5cfaca, #w-node-_651665f0-b001-06b7-cf83-03a42f65a477-7b5cfaca {
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7da9a899-1d95-3a92-e1c1-eaaf76cbd637-c55cfac4, #w-node-_304d77dc-e0a7-6c0e-ea2e-44fbec33e065-c55cfac4 {
    grid-column: span 1 / span 1;
  }

  #w-node-_59d3e8e5-ae5a-ca10-4a53-c29e7f163aaf-c55cfac4 {
    grid-row: 1 / 2;
    grid-column-start: 1;
  }

  #w-node-a714240a-42bb-d47d-634c-5eb34b397360-c55cfac4 {
    grid-area: 1 / 3 / 2 / 6;
  }

  #w-node-_3476202a-932c-18d3-340b-401a87a69f1c-c55cfac4 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_4cce8b8b-2f7e-262d-806d-c1aa6adf81e1-c55cfac4 {
    grid-area: 2 / 3 / 3 / 6;
  }

  #w-node-_6d19aa32-2302-5b04-9465-db26297d236d-c55cfac4, #w-node-_6d19aa32-2302-5b04-9465-db26297d2373-c55cfac4 {
    grid-column: span 1 / span 1;
  }

  #w-node-b6842ce8-b75f-443f-98af-83047d2b78ca-7d2b78c7, #w-node-b6842ce8-b75f-443f-98af-83047d2b78da-7d2b78c7, #w-node-b6842ce8-b75f-443f-98af-83047d2b78ea-7d2b78c7 {
    grid-column: span 2 / span 2;
  }

  #w-node-_59e23253-642e-0f22-f555-9f6dcbd4e632-d65cfac7 {
    grid-column: span 1 / span 1;
  }

  #w-node-b2f858d3-2da3-a3e2-c342-d02ed3203c5d-7b5cfaca, #w-node-_651665f0-b001-06b7-cf83-03a42f65a477-7b5cfaca {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7297d584-1da9-c2bd-f1f3-7c79f1d091a7-615cfacc {
    grid-area: 1 / 1 / 2 / 6;
  }
}


@font-face {
  font-family: 'Supreme';
  src: url('../fonts/Supreme-Bold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Messapia';
  src: url('../fonts/Messapia-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Messapia';
  src: url('../fonts/Messapia-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}