@font-face {
  font-family: Rethink Sans;
  src: url('../fonts/RethinkSans-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rethink Sans;
  src: url('../fonts/RethinkSans-SemiBoldItalic.woff2') format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Rethink Sans;
  src: url('../fonts/RethinkSans-BoldItalic.woff2') format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Rethink Sans;
  src: url('../fonts/RethinkSans-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rethink Sans;
  src: url('../fonts/RethinkSans-SemiBold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rethink Sans;
  src: url('../fonts/RethinkSans-MediumItalic.woff2') format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Rethink Sans;
  src: url('../fonts/RethinkSans-Italic.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Rethink Sans;
  src: url('../fonts/RethinkSans-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Special Gothic;
  src: url('../fonts/SpecialGothic-ExtendedBold.woff2') format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rl Madena;
  src: url('../fonts/RL-Madena.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rl Madena;
  src: url('../fonts/RL-Madena-Oblique.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --background: #000;
  --main-font: "Rethink Sans", sans-serif;
  --paragraphs: #ede2e299;
  --heading-font: "Special Gothic", sans-serif;
  --heading: #fff;
  --border: #ede2e226;
  --border-radius: .75em;
  --accent-bg: #21212199;
  --border-link: #ede2e24d;
  --flex-gap: .75em;
  --accent-logo: "Rl Madena", sans-serif;
}

.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(--background);
  font-family: var(--main-font);
  color: var(--paragraphs);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
  display: flex;
}

h1 {
  font-family: var(--heading-font);
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.37em;
  font-weight: 800;
  line-height: 96%;
}

h2 {
  font-family: var(--heading-font);
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5em;
  font-weight: 800;
  line-height: 100%;
}

h3 {
  font-family: var(--heading-font);
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5em;
  font-weight: 800;
  line-height: 108%;
}

h4 {
  font-family: var(--heading-font);
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.87em;
  font-weight: 800;
  line-height: 116%;
}

h5 {
  font-family: var(--heading-font);
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 800;
  line-height: 120%;
}

h6 {
  font-family: var(--heading-font);
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.12em;
  font-weight: 800;
  line-height: 124%;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.12em;
  line-height: 145%;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  padding-left: 2.2em;
  font-size: 1.12em;
  line-height: 145%;
}

li {
  padding: .3em .5em;
}

strong {
  color: var(--heading);
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 1px solid var(--border);
  color: var(--heading);
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  margin-left: 1em;
  padding: .1em 0 .1em 1.2em;
  font-size: 1.37em;
  font-style: italic;
  font-weight: 400;
  line-height: 155%;
}

figure {
  border-radius: var(--border-radius);
  margin-top: 2.7em;
  margin-bottom: 2.7em;
  overflow: hidden;
}

figcaption {
  background-color: var(--accent-bg);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 1.2em 7%;
  font-size: 1em;
  line-height: 145%;
}

.rich-text-block h1, .rich-text-block h2, .rich-text-block h3, .rich-text-block h4, .rich-text-block h5, .rich-text-block h6 {
  margin-top: 1em;
  margin-bottom: .4em;
}

.rich-text-block p {
  margin-bottom: 1.4em;
}

.rich-text-block a {
  box-shadow: inset 0 -1px 0 0 var(--heading);
  color: var(--heading);
  text-decoration: none;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94);
}

.rich-text-block a:hover {
  box-shadow: inset 0 -24px 0 0 var(--heading);
  color: var(--background);
}

.link {
  box-shadow: inset 0 -1px 0 0 var(--heading);
  color: var(--heading);
  text-decoration: none;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94);
}

.link:hover {
  box-shadow: inset 0 -24px 0 0 var(--heading);
  color: var(--background);
}

.navbar {
  z-index: 999;
  position: fixed;
  inset: auto auto 1.6em;
}

.nav {
  background-color: var(--accent-bg);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 2.2em;
  justify-content: center;
  align-items: center;
  padding: .5em;
  display: flex;
}

.menu-button {
  background-color: #ede2e21a;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2.8em;
  height: 2.8em;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-line {
  background-color: var(--heading);
  width: 2px;
  height: 1em;
}

.nav-line-absolute {
  background-color: var(--heading);
  width: 2px;
  height: 1em;
  position: absolute;
}

.nav-menu {
  display: flex;
  overflow: hidden;
}

.nav-link {
  color: var(--heading);
  border-radius: 50em;
  flex: none;
  padding: .9em 1.2em;
  font-size: .94em;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.nav-link:hover {
  background-color: #ede2e21a;
}

.navbar-top {
  z-index: 900;
  mix-blend-mode: difference;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.4em 3vw 0;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.brand {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: .7em;
  display: flex;
}

.block-top {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: row;
  flex: 1;
  align-items: center;
  display: flex;
}

.block-top.right {
  justify-content: flex-end;
}

.text-top {
  color: var(--heading);
  padding-top: .3em;
  padding-bottom: .3em;
  font-size: .94em;
  line-height: 120%;
}

.link-top {
  border: 1px solid #ede2e200;
  border-radius: 10em;
  justify-content: flex-start;
  align-items: center;
  padding: .2em 0;
  text-decoration: none;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94), padding .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.link-top:hover {
  border-color: var(--border-link);
  padding-left: .4em;
  padding-right: .9em;
}

.icon-arrow {
  width: 1.5em;
  height: 1.5em;
}

.section-hero {
  width: 100%;
  min-height: 300vh;
  display: none;
  position: relative;
}

.hero-sticky {
  perspective: 1200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.hero-img-a {
  grid-column-gap: var(--flex-gap);
  grid-row-gap: var(--flex-gap);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.group-img-hero-1a {
  grid-column-gap: var(--flex-gap);
  grid-row-gap: var(--flex-gap);
  flex-direction: column;
  display: flex;
}

.block-img-hero-a {
  border-radius: var(--border-radius);
  flex: none;
  width: 96vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.group-img-hero-2a, .group-img-hero-3a {
  grid-column-gap: var(--flex-gap);
  grid-row-gap: var(--flex-gap);
  flex-direction: column;
  display: flex;
}

.hero {
  z-index: 10;
  grid-column-gap: 1.4em;
  grid-row-gap: 1.4em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 8em;
  margin-bottom: 8em;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.heading-hero {
  max-width: 10em;
  font-family: var(--heading-font);
  font-size: 5vw;
  line-height: 92%;
}

.accent-span {
  font-family: var(--accent-logo);
  text-transform: none;
  font-style: italic;
  font-weight: 400;
}

.paragraph-hero {
  max-width: 24em;
  font-family: var(--main-font);
  color: var(--heading);
  font-size: 1rem;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
}

.project-link {
  border-radius: var(--border-radius);
  perspective: 1000px;
  width: 100%;
  height: 32vw;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.project-link.large {
  height: 54vw;
}

.project-link.work-a {
  height: 20vw;
}

.project-link.work-b {
  height: 32vw;
}

.block-project {
  z-index: 10;
  border-radius: var(--border-radius);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-right: .6em;
  padding: 1.2em 2.8em 1.2em 1.5em;
  display: flex;
  position: absolute;
  inset: auto auto .6em .6em;
  overflow: hidden;
}

.block-project.small {
  font-size: .85em;
}

.overflow {
  z-index: 5;
  position: relative;
  overflow: hidden;
}

.heading-project {
  font-size: 1.2em;
}

.subheading-project {
  font-family: var(--accent-logo);
  color: var(--heading);
  font-size: 1.2em;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
}

.empty-state {
  background-color: #0000;
  padding: 1em;
}

.empty-state.none {
  display: none;
}

.text-empty {
  font-size: 1em;
  line-height: 145%;
}

.filling-project {
  z-index: 0;
  border-radius: var(--border-radius);
  background-color: var(--accent-bg);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  height: 100%;
  margin-top: auto;
  position: absolute;
  inset: 0%;
}

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

.collection-list {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

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

.collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 1vw;
  display: grid;
}

.collection-item {
  width: 100%;
}

.footer {
  grid-column-gap: 7em;
  grid-row-gap: 7em;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding: 2.2em 1em;
  display: flex;
}

.block-footer {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  text-align: center;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.block-footer.right {
  justify-content: flex-end;
  align-items: center;
}

.section-contact {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 80vh;
  margin-top: 25px;
  display: flex;
}

.section-contact.small {
  min-height: auto;
}

.contact {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding: 8em 2vw 11em;
  display: flex;
}

.heading-contact {
  max-width: 13em;
  font-size: 4.6vw;
  line-height: 100%;
}

.heading-contact.small {
  font-size: 3.6vw;
}

.heading-contact.page {
  font-size: 2.8vw;
}

.button {
  box-shadow: inset 0 0 0 2px var(--heading);
  color: var(--heading);
  background-color: #0000;
  border-radius: 10em;
  padding: 1.2em 2.2em;
  font-size: .94em;
  font-weight: 600;
  line-height: 120%;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1), box-shadow .5s cubic-bezier(.19, 1, .22, 1), color .5s cubic-bezier(.19, 1, .22, 1);
}

.button:hover {
  box-shadow: inset 0 0 0 30px var(--heading);
  color: var(--background);
  transform: scale(1.14);
}

.button.small {
  padding: .8em 1.8em;
}

.hero-img-b {
  grid-column-gap: var(--flex-gap);
  grid-row-gap: var(--flex-gap);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  transform: rotate(-10deg);
}

.group-img-hero-1b, .group-img-hero-2b, .group-img-hero-3b, .group-img-hero-4b {
  grid-column-gap: var(--flex-gap);
  grid-row-gap: var(--flex-gap);
  flex-direction: column;
  display: flex;
}

.block-img-hero-b {
  border-radius: var(--border-radius);
  flex: none;
  width: 33vw;
  height: 33vh;
  position: relative;
  overflow: hidden;
}

.hero-img-c {
  grid-column-gap: var(--flex-gap);
  grid-row-gap: var(--flex-gap);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.group-img-hero-1c {
  grid-column-gap: var(--flex-gap);
  grid-row-gap: var(--flex-gap);
  flex-direction: column;
  display: flex;
}

.group-img-hero-2c {
  grid-column-gap: var(--flex-gap);
  grid-row-gap: var(--flex-gap);
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.group-img-hero-3c {
  grid-column-gap: var(--flex-gap);
  grid-row-gap: var(--flex-gap);
  flex-direction: column;
  display: flex;
}

.block-img-hero-c {
  border-radius: var(--border-radius);
  flex: none;
  width: 96vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.collection-list-wrapper---work-a {
  width: 100%;
  margin-top: 5.8em;
}

.collection-list---work-a {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-list---work-b {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-list-wrapper---work-b {
  width: 100%;
}

.section-top {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 6em 2vw 0;
  display: flex;
}

.top {
  grid-column-gap: 1.4em;
  grid-row-gap: 1.4em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.collection-list-wrapper---work-c {
  width: 100%;
  margin-top: 5.8em;
  margin-bottom: 7em;
}

.collection-list---work-c {
  grid-column-gap: 1vw;
  grid-row-gap: 2.5vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.block-project-c {
  z-index: 10;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 1.2em;
  font-size: .85em;
  display: flex;
  overflow: hidden;
}

.project-img-c {
  border-radius: var(--border-radius);
  perspective: 1000px;
  width: 100%;
  height: 14vw;
  display: block;
  overflow: hidden;
}

.project-link-c {
  width: 100%;
  text-decoration: none;
  display: block;
}

.heading-project-top {
  max-width: 12em;
  font-size: 5vw;
  line-height: 92%;
}

.subheading-project-top {
  width: 70%;
  font-family: var(--accent-logo);
  color: var(--heading);
  margin-top: .2em;
  font-size: 1.6em;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
}

.content {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 79em;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.content.project {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
}

.content.single {
  margin-bottom: 4em;
}

.content-narrow {
  width: 100%;
  max-width: 75em;
  margin: 100px auto;
}

.main-project-image {
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 100%;
  margin-bottom: 0;
}

.info {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: center;
  width: 100%;
  margin-bottom: 1vw;
  display: flex;
}

.block-info {
  border-radius: var(--border-radius);
  background-color: var(--accent-bg);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 2.2em 2em;
  display: flex;
}

.text-sabtitle {
  opacity: .63;
  color: var(--heading);
  font-size: 1em;
  line-height: 145%;
}

.text-info {
  color: var(--heading);
  font-size: 1em;
  font-weight: 600;
  line-height: 145%;
}

.section-full {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding-top: 5.8em;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  position: relative;
}

.section-full.padding {
  padding-top: 12.8em;
  padding-bottom: 7em;
}

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

.heading-top {
  max-width: 10em;
  font-size: 3vw;
  line-height: 80%;
}

.heading-top.small {
  font-size: 4.5vw;
}

.paragraph-top {
  max-width: 29em;
  color: var(--heading);
}

.form-block {
  width: 100%;
  max-width: 40em;
  margin-top: 1em;
  margin-bottom: 0;
}

.text-field {
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  height: 3.8em;
  color: var(--heading);
  background-color: #0000;
  margin-bottom: 1em;
  padding: 1.2em;
  font-size: 1em;
  line-height: 130%;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  border-color: var(--border-link);
}

.text-field::placeholder {
  color: var(--paragraphs);
}

.block-field {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.textarea {
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  min-width: 100%;
  max-width: 100%;
  min-height: 10em;
  max-height: 20em;
  color: var(--heading);
  background-color: #0000;
  margin-bottom: 1.6em;
  padding: 1.2em;
  font-size: 1em;
  line-height: 130%;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.textarea:focus {
  border-color: var(--border-link);
}

.textarea::placeholder {
  color: var(--paragraphs);
}

.success-message {
  border-radius: var(--border-radius);
  background-color: #00b36526;
  padding: 1.2em;
}

.text-success {
  color: #00b365;
  font-size: 1em;
  line-height: 145%;
}

.error-message {
  border-radius: var(--border-radius);
  background-color: #ee080826;
  margin-top: 1.6em;
  padding: 1.2em;
}

.text-error {
  color: #ee0808;
  font-size: 1em;
  line-height: 145%;
}

.grid-contact-b {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
  width: 100%;
}

.block-contact-2b {
  grid-column-gap: 1.4em;
  grid-row-gap: 1.4em;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5.5em 7%;
  display: flex;
}

.block-contact-1b {
  border-radius: var(--border-radius);
  background-image: url('../images/contact_4contact_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 3em;
  display: flex;
}

.grid-contact-c {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
  grid-template-columns: 3.2fr 1fr;
  width: 100%;
}

.contact-1c {
  grid-column-gap: 1.4em;
  grid-row-gap: 1.4em;
  border-radius: var(--border-radius);
  background-color: var(--background);
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 5.5em 7%;
  display: flex;
}

.block-contact-1c {
  border-radius: var(--border-radius);
  background-image: url('../images/contact_3contact_2.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 1.4vw;
  display: flex;
}

.block-contact-2c {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  flex-direction: column;
  display: flex;
}

.block-contact-link {
  border-radius: var(--border-radius);
  background-image: url('../images/contact_3contact_2.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 2em;
  text-decoration: none;
  transition: padding .5s cubic-bezier(.25, .46, .45, .94), margin .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.block-contact-link:hover {
  margin-right: 2em;
  padding-top: 4em;
  padding-bottom: 4em;
}

.heading-contact-link {
  font-size: 1.2em;
}

.subheading-contact-link {
  font-family: var(--accent-logo);
  color: var(--heading);
  font-size: 1.2em;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
}

.subheading {
  font-family: var(--accent-logo);
  color: var(--heading);
  margin-bottom: .4em;
  font-size: 1.2em;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
  display: none;
}

.content-separator {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 3.4em;
  display: flex;
}

.grid {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
}

.block-grid {
  border-radius: var(--border-radius);
  background-color: var(--accent-bg);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5em 15%;
  display: flex;
}

.image-grid {
  border-radius: var(--border-radius);
  object-fit: cover;
  background-image: linear-gradient(#40f, #fff);
  width: 100%;
}

.heading {
  text-align: center;
  margin-bottom: .7em;
  font-size: 2.1em;
}

.link-social {
  border-radius: var(--border-radius);
  background-color: var(--accent-bg);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  min-height: 18em;
  padding: 2em;
  text-decoration: none;
  transition: width .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.link-social:hover {
  width: 130%;
}

.icon-contact-link {
  z-index: 10;
  background-color: var(--accent-bg);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3.75em;
  height: 3.75em;
  margin-bottom: 1.2em;
  display: flex;
}

.icon-contact {
  width: 1.5em;
  height: 1.5em;
}

.social {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  align-items: stretch;
  display: flex;
}

.client {
  border-radius: var(--border-radius);
  background-color: var(--accent-bg);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 10.1em;
  margin-bottom: 10px;
  padding: 2.2em 2em;
  display: flex;
}

.image-client {
  flex: 0 auto;
  width: 160px;
  max-width: 100%;
  height: 70%;
  margin-bottom: 20px;
}

.image-client.prova {
  width: 160px;
  max-width: 100%;
  height: 14%;
}

.image-client.prova-copy {
  width: 160px;
  max-width: 100%;
  height: 9%;
}

.subheading-template {
  font-family: var(--accent-logo);
  color: var(--heading);
  margin-bottom: 2em;
  font-size: 1.2em;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
}

.spacer {
  background-color: var(--border);
  width: 100%;
  height: 1px;
  margin-top: 5em;
  margin-bottom: 5em;
}

.buttons {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fonts {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 2.4em;
  display: flex;
}

.rethink-sans {
  font-family: var(--main-font);
  text-transform: none;
  font-weight: 400;
}

.rl-madena {
  font-family: var(--accent-logo);
  text-transform: none;
  font-style: italic;
  font-weight: 400;
}

.grid-template {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  grid-template-rows: auto;
  margin-top: 2.4em;
}

.image-template {
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 100%;
}

.grid-lightbox {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 1vw;
}

.grid-lightbox.large {
  grid-template-columns: 1fr;
}

.lightbox-link {
  border-radius: var(--border-radius);
  perspective: 1000px;
  width: 100%;
  height: 32vw;
  position: relative;
  overflow: hidden;
}

.lightbox-link.large {
  height: 54vw;
}

.lightbox-link.work-d {
  height: 20vw;
}

.background-video {
  width: 100%;
  height: 100%;
}

.grid-lightbox---work-d {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 5.8em;
}

.utility-page-wrap {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 9em 1.5em 5em;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 25em;
  margin-bottom: 0;
  display: flex;
}

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

.field-label {
  color: var(--heading);
  margin-top: 1.5em;
  margin-bottom: .6em;
  font-size: 1em;
  font-weight: 400;
  line-height: 120%;
}

.grid-splash {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
  width: 100%;
  margin-bottom: 9em;
}

.grid-splash._3-columns {
  grid-template-columns: 1fr 1fr 1fr;
}

.subheading-splash {
  font-family: var(--accent-logo);
  color: var(--heading);
  margin-bottom: 1.5em;
  font-size: 1.2em;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
}

.link-splash {
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  color: var(--paragraphs);
  text-align: center;
  padding: 9% 12% 8%;
  text-decoration: none;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94);
  position: relative;
}

.link-splash:hover {
  background-color: var(--accent-bg);
  color: var(--heading);
  border-color: #ede2e200;
}

.heading-splash {
  margin-top: 2em;
  font-size: .94em;
  line-height: 120%;
}

.background-video-splash {
  z-index: 5;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  width: 100%;
  height: 22.6vw;
}

.image-splash {
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 100%;
}

.logo-text {
  max-width: 10em;
  font-size: 3vw;
  line-height: 80%;
}

.heading-3 {
  font-family: var(--main-font);
  color: var(--paragraphs);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.gird {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 40px;
}

.heading-centrato {
  text-align: center;
  margin-top: 1em;
  margin-bottom: .7em;
  font-size: 4.6vw;
}

.content-separator-home {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 100em;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3.4em;
  display: flex;
}

.button-copy {
  z-index: 5;
  background-color: #0000;
  background-image: linear-gradient(to bottom, var(--heading), var(--heading));
  box-shadow: inset 0 0 0 2px var(--heading);
  color: var(--background);
  border-radius: 10em;
  margin-top: 0;
  padding: 1.2em 2.2em;
  font-size: .7em;
  font-weight: 600;
  line-height: 120%;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1), box-shadow .5s cubic-bezier(.19, 1, .22, 1), color .5s cubic-bezier(.19, 1, .22, 1);
  position: static;
  top: 756px;
  left: auto;
}

.button-copy:hover {
  box-shadow: inset 0 0 0 30px var(--heading);
  color: var(--background);
  transform: scale(1.14);
}

.bold-text {
  font-family: var(--heading-font);
  color: var(--background);
  font-weight: 700;
}

.heading-3-copy {
  font-family: var(--main-font);
  color: var(--paragraphs);
  text-align: left;
  font-size: 20px;
  font-weight: 500;
}

.bold-text-2 {
  font-size: 1.4em;
}

.text-span {
  color: var(--paragraphs);
  font-weight: 700;
}

.contact-copy {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  padding: .25em 2vw 11em;
  display: flex;
}

.heading-3-small {
  text-align: center;
  margin-bottom: .5em;
  font-size: 1.3em;
}

.main-container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.bg-image-main-2 {
  z-index: -1;
  background-image: linear-gradient(#000000bf, #000000bf), url('../images/contact_4contact_1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0 0% 0%;
}

.hero-images-stack-outer-wrapper {
  z-index: 1;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.home-section {
  justify-content: center;
  align-items: center;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.div-block-2 {
  z-index: 2;
  background-image: linear-gradient(#0000, #090909);
  min-height: 350px;
  position: absolute;
  inset: auto 0% 0%;
}

.name-title {
  z-index: 50;
  font-family: var(--heading-font);
  color: var(--heading);
  text-align: center;
  letter-spacing: -6px;
  text-transform: uppercase;
  text-shadow: 8px 8px 15px #00000040;
  margin-left: -15px;
  font-size: 6vw;
  font-weight: 600;
  line-height: 100%;
  position: absolute;
  inset: 51% 0% auto;
  transform: translate(0, -40%);
}

.portfolio-thumbnail-image {
  max-width: 20vw;
  position: relative;
  box-shadow: 4px 4px 20px 15px #00000040;
}

.portfolio-thumbnail-image._2 {
  z-index: 2;
  max-width: 40vw;
  box-shadow: none;
  font-size: 40px;
  top: 75px;
  left: -73px;
}

.portfolio-thumbnail-image._1 {
  z-index: 1;
  top: 300px;
}

.portfolio-thumbnail-image._3 {
  z-index: 4;
  box-shadow: none;
  top: 500px;
}

.portfolio-thumbnail-image._4 {
  z-index: 5;
  max-width: 50vw;
  box-shadow: none;
  top: 220px;
  left: -176px;
}

.portfolio-thumbnail-image._6 {
  z-index: 1;
  box-shadow: none;
  position: absolute;
  inset: 50% 0% 0% auto;
}

.hero-images-stack-wrapper {
  z-index: 1;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  display: flex;
}

.section-2 {
  background-color: #090909;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-block-wrapper {
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.button-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.circle-to-pill-button {
  z-index: 99;
  color: #f5f5f5;
  flex: none;
  align-items: center;
  height: 45px;
  padding-left: 1.18em;
  padding-right: 1.18em;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  position: relative;
}

.bg-round {
  background-color: #353535;
  border-radius: 100px;
  width: 2.8em;
  max-width: none;
  height: 2.8em;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.button-text {
  z-index: 2;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
}

.emphasis-button-img {
  z-index: 2;
  width: .85rem;
  position: relative;
}

.text-block {
  position: absolute;
}

.portfolio-thumbnail-image-copy {
  max-width: 20vw;
  position: relative;
  box-shadow: 4px 4px 20px 15px #00000040;
}

.portfolio-thumbnail-image-copy._2 {
  z-index: 2;
  box-shadow: none;
  top: 75px;
}

.portfolio-thumbnail-image-copy._1 {
  z-index: 1;
  top: 300px;
}

.portfolio-thumbnail-image-copy._3 {
  z-index: 1;
  max-width: 40vw;
  box-shadow: none;
  line-height: 140%;
  top: 632px;
  right: 180px;
}

.portfolio-thumbnail-image-copy._4 {
  z-index: 5;
  box-shadow: none;
}

.code-embed {
  width: 100%;
  margin-top: 40px;
}

.div-block-3 {
  width: 100%;
}

.section-2-copy {
  background-color: #090909;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-copy-copy {
  z-index: 5;
  background-color: #0000;
  background-image: linear-gradient(to bottom, var(--heading), var(--heading));
  box-shadow: inset 0 0 0 2px var(--heading);
  color: var(--background);
  border-radius: 10em;
  padding: 1.2em 2.2em;
  font-size: .94em;
  font-weight: 600;
  line-height: 120%;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1), box-shadow .5s cubic-bezier(.19, 1, .22, 1), color .5s cubic-bezier(.19, 1, .22, 1);
  position: static;
  top: 500px;
  left: auto;
}

.button-copy-copy:hover {
  box-shadow: inset 0 0 0 30px var(--heading);
  color: var(--background);
  transform: scale(1.14);
}

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

.image-client-copy {
  width: 20%;
  max-width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

.image-client-copy-copy {
  width: 60px;
  max-width: 80%;
  height: 20%;
  margin-bottom: 20px;
}

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

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

  h2 {
    font-size: 2.7em;
  }

  h3 {
    font-size: 2.1em;
  }

  h4 {
    font-size: 1.7em;
  }

  h5 {
    font-size: 1.4em;
  }

  h6 {
    font-size: 1.1em;
  }

  .heading-hero {
    font-size: 9vw;
  }

  .project-link.work-a, .project-link.work-b {
    height: 30vw;
  }

  .heading-project, .subheading-project {
    font-size: 1em;
  }

  .footer {
    grid-column-gap: 5em;
    grid-row-gap: 5em;
  }

  .block-footer {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
  }

  .heading-contact {
    font-size: 6vw;
  }

  .heading-contact.small {
    font-size: 5vw;
  }

  .collection-list---work-a {
    grid-template-columns: 1fr 1fr;
  }

  .section-top {
    padding-top: 8em;
  }

  .top {
    padding-bottom: 20px;
  }

  .collection-list---work-c {
    grid-row-gap: 4vw;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .project-img-c {
    height: 20vw;
  }

  .heading-project-top {
    font-size: 5vw;
  }

  .subheading-project-top {
    font-size: 1.4em;
  }

  .content {
    justify-content: center;
    align-items: stretch;
  }

  .content-narrow {
    padding-left: 60px;
    padding-right: 60px;
  }

  .heading-top {
    font-size: 8vw;
  }

  .heading-top.small {
    font-size: 6vw;
  }

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

  .block-contact-1b {
    padding-top: 6em;
  }

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

  .block-contact-2c {
    flex-direction: row;
  }

  .block-contact-link:hover {
    margin-right: 0;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .subheading {
    display: none;
  }

  .link-social {
    min-height: 16em;
  }

  .client {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: .5fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    place-items: center;
    display: grid;
  }

  .lightbox-link.work-d {
    height: 30vw;
  }

  .grid-lightbox---work-d {
    grid-template-columns: 1fr 1fr;
  }

  .grid-splash {
    margin-bottom: 7em;
  }

  .logo-text {
    max-width: 9em;
    font-size: 4vw;
  }

  .heading-3 {
    font-family: var(--main-font);
    color: var(--paragraphs);
    text-align: left;
    text-transform: none;
    font-size: 1em;
    font-weight: 400;
  }

  .paragraph-2 {
    font-weight: 400;
  }

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

  .content-separator-home {
    display: block;
  }

  .button-copy {
    margin-top: 0;
    font-size: 10px;
    position: static;
    top: 447px;
    left: auto;
  }

  .heading-3-copy {
    font-family: var(--main-font);
    color: var(--paragraphs);
    text-align: left;
    text-transform: none;
    font-size: 1em;
    font-weight: 400;
  }

  .home-section {
    min-height: 90vh;
  }

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

  .name-title {
    letter-spacing: -3px;
    font-size: 8vw;
    top: 55%;
  }

  .portfolio-thumbnail-image._2 {
    max-width: 50vw;
  }

  .portfolio-thumbnail-image._4 {
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .circle-to-pill-button {
    z-index: 30;
  }

  .portfolio-thumbnail-image-copy._3 {
    max-width: 20vw;
    top: 470px;
    left: -273px;
  }

  .button-copy-copy {
    position: static;
    top: 447px;
    left: auto;
  }
}

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

  h2 {
    font-size: 2.1em;
  }

  h3 {
    font-size: 1.7em;
  }

  h4 {
    font-size: 1.4em;
  }

  h5 {
    font-size: 1.2em;
  }

  .nav {
    flex-direction: column;
  }

  .menu-button {
    cursor: pointer;
    order: 1;
  }

  .menu-button:hover {
    box-shadow: inset 0 0 0 1px var(--border-link);
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .paragraph-hero {
    font-size: 1em;
  }

  .project-link, .project-link.work-a, .project-link.work-b {
    height: 54vw;
  }

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

  .footer {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    flex-direction: column;
    margin-bottom: 4.4em;
  }

  .block-footer {
    flex-direction: column;
  }

  .contact {
    padding-top: 11em;
    padding-bottom: 7em;
  }

  .heading-contact.page {
    font-size: 4vw;
  }

  .collection-list---work-a, .collection-list---work-b {
    grid-template-columns: 1fr;
  }

  .section-top {
    padding-top: 8em;
    padding-bottom: 0;
  }

  .collection-list---work-c {
    grid-row-gap: 5vw;
    grid-template-columns: 1fr 1fr;
  }

  .project-img-c {
    height: 30vw;
  }

  .content {
    grid-column-gap: 6em;
    grid-row-gap: 6em;
  }

  .content.project {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
  }

  .main-project-image {
    margin-bottom: 4em;
  }

  .info {
    flex-direction: column;
  }

  .block-info {
    padding: 1.6em;
  }

  .section-full.padding {
    padding-top: 9.8em;
    padding-bottom: 4em;
  }

  .paragraph-top {
    font-size: 1em;
  }

  .block-contact-1b {
    padding-bottom: 2em;
    padding-left: 2em;
    padding-right: 2em;
  }

  .block-contact-2c {
    flex-direction: column;
  }

  .heading-contact-link, .subheading-contact-link {
    font-size: 1em;
  }

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

  .block-grid {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .link-social {
    text-align: center;
    align-items: center;
    min-height: 10em;
  }

  .social {
    flex-direction: column;
  }

  .client {
    grid-template-columns: .5fr;
    grid-auto-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.6em;
    display: flex;
  }

  .image-client {
    width: 99px;
  }

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

  .lightbox-link, .lightbox-link.work-d {
    height: 54vw;
  }

  .grid-lightbox---work-d, .grid-splash {
    grid-template-columns: 1fr;
  }

  .grid-splash._3-columns {
    grid-template-columns: 1fr 1fr;
  }

  .subheading-splash {
    margin-bottom: 1em;
    font-size: 1.1em;
  }

  .heading-splash {
    margin-top: 1.5em;
  }

  .background-video-splash {
    height: 46vw;
  }

  .button-copy {
    margin-top: 0;
    left: 74px;
  }

  .contact-copy {
    padding-top: 11em;
    padding-bottom: 7em;
  }

  .heading-3-small {
    margin-bottom: 0;
  }

  .name-title {
    font-size: 10vw;
    inset: 41% 5% 350px;
  }

  .portfolio-thumbnail-image {
    max-width: 175px;
    position: absolute;
  }

  .portfolio-thumbnail-image._2 {
    max-width: 100vw;
    left: 86px;
  }

  .portfolio-thumbnail-image._3 {
    right: 100px;
  }

  .portfolio-thumbnail-image._4 {
    inset: 0% 0% 0% auto;
  }

  .portfolio-thumbnail-image._6 {
    right: 2.5vw;
  }

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

  .button-block-wrapper {
    padding-bottom: 0;
  }

  .circle-to-pill-button {
    height: 60px;
  }

  .portfolio-thumbnail-image-copy {
    max-width: 175px;
    position: absolute;
  }

  .portfolio-thumbnail-image-copy._2 {
    left: 150px;
  }

  .portfolio-thumbnail-image-copy._3 {
    max-width: 25vw;
    inset: auto 0% 0% 40%;
  }

  .portfolio-thumbnail-image-copy._4 {
    right: 2.5vw;
  }

  .section-2-copy {
    justify-content: center;
    align-items: flex-start;
  }

  .button-copy-copy {
    position: static;
    left: 74px;
  }

  .image-client-copy, .image-client-copy-copy {
    width: 99px;
  }
}

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

  h2 {
    font-size: 1.7em;
  }

  h3 {
    font-size: 1.4em;
  }

  h4 {
    font-size: 1.3em;
  }

  .block-top {
    display: none;
  }

  .hero {
    width: 100%;
    margin-top: .125em;
  }

  .section {
    margin-top: 20px;
  }

  .heading-project, .subheading-project {
    font-size: .9em;
  }

  .filling-project {
    height: 40%;
  }

  .image-project {
    height: 120%;
  }

  .section-contact {
    min-height: 100vh;
    margin-top: 0;
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .contact {
    width: 100%;
    padding: 0 2vw;
  }

  .heading-contact {
    margin-top: 2em;
    padding-left: 0;
    padding-right: 0;
    font-size: 8vw;
  }

  .section-top {
    padding-top: 4em;
    padding-bottom: 0;
  }

  .top {
    padding: 20px 0;
  }

  .collection-list---work-c {
    grid-row-gap: 8vw;
    grid-template-columns: 1fr;
  }

  .project-img-c {
    height: 54vw;
  }

  .heading-project-top {
    font-size: 8vw;
  }

  .content {
    grid-column-gap: 5em;
    grid-row-gap: 5em;
  }

  .content.project {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    justify-content: flex-start;
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
  }

  .content-narrow {
    max-width: 100em;
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-project-image {
    margin-bottom: 3em;
  }

  .block-field {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    flex-direction: column;
  }

  .subheading {
    font-size: 1.1em;
  }

  .content-separator {
    padding-bottom: 2.6em;
  }

  .block-grid {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }

  .heading {
    text-align: center;
    font-size: 1em;
  }

  .client {
    grid-auto-flow: column;
    place-items: center stretch;
    min-height: 8em;
    display: flex;
  }

  .image-client {
    width: 90px;
  }

  .image-client.prova {
    width: 120px;
  }

  .image-client.prova-copy {
    width: 43%;
  }

  .buttons {
    flex-direction: column;
  }

  .grid-lightbox---work-d {
    grid-column-gap: 7vw;
    grid-row-gap: 7vw;
    flex-flow: column;
    grid-auto-flow: column;
    display: flex;
  }

  .grid-splash {
    margin-bottom: 6em;
  }

  .logo-text {
    font-size: 6vw;
  }

  .heading-centrato {
    font-size: 1.7em;
  }

  .content-separator-home {
    padding-bottom: 2.6em;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-copy {
    margin-top: 0;
    padding-left: 1.2em;
    padding-right: 1.2em;
    top: 357px;
    left: auto;
  }

  .bold-text {
    font-size: .8em;
  }

  .bold-text-2 {
    font-size: 1.1em;
  }

  .contact-copy {
    width: 100%;
    height: 100%;
    padding: 0 0 4em;
  }

  .heading-3-small {
    font-size: 1.1em;
  }

  .main-container {
    width: 100%;
  }

  .hero-images-stack-outer-wrapper {
    max-width: 100%;
  }

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

  .div-block-2 {
    min-height: 270px;
  }

  .name-title {
    height: 18%;
    margin-left: auto;
    font-size: 9vw;
    line-height: 100%;
    top: 46%;
    left: 5%;
    right: 5%;
  }

  .portfolio-thumbnail-image {
    max-width: 125px;
  }

  .portfolio-thumbnail-image._2 {
    opacity: .48;
    max-width: 34vw;
    top: 73px;
    left: 35px;
  }

  .portfolio-thumbnail-image._1 {
    opacity: .79;
    top: 400px;
  }

  .portfolio-thumbnail-image._3 {
    top: 450px;
    right: 35px;
  }

  .portfolio-thumbnail-image._4 {
    opacity: .57;
    inset: 0% 0% 0% auto;
  }

  .portfolio-thumbnail-image._6 {
    opacity: .64;
  }

  .section-2 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .button-block-wrapper {
    margin-bottom: 60px;
  }

  .circle-to-pill-button {
    justify-content: center;
  }

  .button-text {
    margin-bottom: 0;
  }

  .text-block {
    position: absolute;
    inset: auto 0% 0%;
  }

  .portfolio-thumbnail-image-copy {
    max-width: 125px;
  }

  .portfolio-thumbnail-image-copy._2 {
    top: 100px;
    left: 35px;
  }

  .portfolio-thumbnail-image-copy._1 {
    top: 400px;
  }

  .portfolio-thumbnail-image-copy._3 {
    inset: auto 0% 0% 50%;
  }

  .section-2-copy {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .button-copy-copy {
    padding-left: 1.2em;
    padding-right: 1.2em;
    position: static;
    top: 357px;
    left: auto;
  }

  .image-client-copy {
    width: 17%;
    height: 98%;
  }

  .div-block-5, .div-block-6 {
    flex-flow: column;
    display: flex;
  }
}

#w-node-bde0a57c-6451-5111-b504-4c59aa7f8b4f-11f23454 {
  align-self: stretch;
}

#w-node-_1e5c329e-fc04-d994-b3a7-333693b8b4a8-11f23458, #w-node-_133c2407-2c33-6626-c65d-3769a0881bdb-11f23458 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ab93a6e6-763f-a149-58ae-1c4c9f1db7bf-11f2345d {
  justify-self: center;
}

#w-node-_88a7fefd-7164-e87f-ebbc-6188d3f0a063-11f2345d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_67e85276-4814-a92a-8ea9-171657634261-11f2345d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e2408f3a-d05a-e8c1-e329-a59bf094dedb-11f23466 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_0cd5f05d-945a-92d7-a03f-f516c5bfaeab-11f23466 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_1d252b7f-7d94-825e-d34c-b605af8d2a5b-11f2345d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-_1d252b7f-7d94-825e-d34c-b605af8d2a68-11f2345d, #w-node-_1d252b7f-7d94-825e-d34c-b605af8d2a77-11f2345d, #w-node-_3aa04ffa-ac2a-64ac-f7ac-6fe6bcb6d683-11f2345d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3aa04ffa-ac2a-64ac-f7ac-6fe6bcb6d684-11f2345d {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_3aa04ffa-ac2a-64ac-f7ac-6fe6bcb6d68c-11f2345d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3aa04ffa-ac2a-64ac-f7ac-6fe6bcb6d68d-11f2345d {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_3aa04ffa-ac2a-64ac-f7ac-6fe6bcb6d695-11f2345d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3aa04ffa-ac2a-64ac-f7ac-6fe6bcb6d696-11f2345d {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_3aa04ffa-ac2a-64ac-f7ac-6fe6bcb6d69e-11f2345d, #w-node-_3aa04ffa-ac2a-64ac-f7ac-6fe6bcb6d6a7-11f2345d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3aa04ffa-ac2a-64ac-f7ac-6fe6bcb6d6a8-11f2345d {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_3aa04ffa-ac2a-64ac-f7ac-6fe6bcb6d6b0-11f2345d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_19e78f42-054e-1890-3e8c-91b93258e4c0-11f23460 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_58681aa7-7116-e05a-5e83-202948ee314a-11f23466 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_58681aa7-7116-e05a-5e83-202948ee314b-11f23466 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_58681aa7-7116-e05a-5e83-202948ee3153-11f23466 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_58681aa7-7116-e05a-5e83-202948ee3154-11f23466 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_58681aa7-7116-e05a-5e83-202948ee315c-11f23466 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_58681aa7-7116-e05a-5e83-202948ee315d-11f23466 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_58681aa7-7116-e05a-5e83-202948ee3165-11f23466, #w-node-_58681aa7-7116-e05a-5e83-202948ee316e-11f23466 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_58681aa7-7116-e05a-5e83-202948ee316f-11f23466 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_58681aa7-7116-e05a-5e83-202948ee3177-11f23466 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_177a08e5-688e-f947-a4a2-074bd4f1f64a-325f603e, #w-node-c77f5ee3-db13-48a9-2297-36a09aa23562-4d89bd1f {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }
}


@font-face {
  font-family: 'Rethink Sans';
  src: url('../fonts/RethinkSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rethink Sans';
  src: url('../fonts/RethinkSans-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Rethink Sans';
  src: url('../fonts/RethinkSans-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Rethink Sans';
  src: url('../fonts/RethinkSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rethink Sans';
  src: url('../fonts/RethinkSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rethink Sans';
  src: url('../fonts/RethinkSans-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Rethink Sans';
  src: url('../fonts/RethinkSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Rethink Sans';
  src: url('../fonts/RethinkSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Special Gothic';
  src: url('../fonts/SpecialGothic-ExtendedBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rl Madena';
  src: url('../fonts/RL-Madena.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rl Madena';
  src: url('../fonts/RL-Madena-Oblique.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}