@font-face {
  font-family: "PP Monument Extended";
  src: url("assets/fonts/PPMonument/PP Monument Extended.woff2") format("woff2"), url("assets/fonts/PPMonument/PP Monument Extended.woff") format("woff"), url("assets/fonts/PPMonument/PP Monument Extended.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PP Monument Extended Light";
  src: url("assets/fonts/PPMonument/PP Monument Extended Light.woff2") format("woff2"), url("assets/fonts/PPMonument/PP Monument Extended Light.woff") format("woff"), url("assets/fonts/PPMonument/PP Monument Extended Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("assets/fonts/PPNeueMontreal/NeueMontreal-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PP Neue Montreal Book";
  src: url("assets/fonts/PPNeueMontreal/NeueMontreal-Book.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "PP Neue Montreal Bold";
  src: url("assets/fonts/PPNeueMontreal/NeueMontreal-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "PP Neue Montreal Italic";
  src: url("assets/fonts/PPNeueMontreal/NeueMontreal-Italic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}
html {
  width: 100%;
  scroll-behavior: smooth;
  font-size: 10px;
}
@media (max-width: 480px) {
  html {
    /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    font-size: 7px;
  }
}
@media (max-width: 680px) {
  html {
    /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    font-size: 8px;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 12px;
  }
}

body {
  font-family: "PP Monument Extended", Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #625893;
  background-color: #f8f8f8;
  cursor: none;
}
body div.overview {
  min-height: 100vh;
  background-color: #625893;
  color: #f8f8f8;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #e9c78c;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.2s ease;
  z-index: 9999;
}
.custom-cursor.hidden {
  opacity: 0;
}
.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 576px) {
  .custom-cursor {
    display: none;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.496rem 2.112rem;
  font-size: 1.6rem;
  color: var(--headercolor);
  background-color: var(--headerbg, transparent);
}
header .logo > path {
  fill: var(--headercolor);
}
header nav a {
  margin: 0 1.1616rem;
  text-decoration: none;
  color: var(--headercolor);
  padding: 2px 0;
}
header nav a.active {
  border-bottom: 1px solid var(--headercolor);
}
header nav a:hover {
  cursor: none;
  border-bottom: 1px solid var(--headercolor);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2.496rem 2.112rem;
  font-size: 1.2rem;
  color: var(--headercolor);
  background-color: var(--footerbg, transparent);
}
footer .social-media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  display: flex;
  gap: 2.9568rem;
}
footer .social-media a {
  transition: transform 0.3s ease;
}
footer .social-media a svg > path {
  fill: var(--headercolor);
}
footer .social-media a:hover {
  transform: scale(1.2);
}
@media (max-width: 576px) {
  footer .name,
  footer .description {
    display: none;
  }
  footer .social-media {
    position: relative;
    top: initial;
    left: inherit;
    transform: none;
  }
}

main {
  min-height: calc(100vh - 37.5rem);
}
main.overview {
  padding-top: 20vh;
}
@media (max-width: 576px) {
  main.overview {
    padding-top: 6vh;
  }
}
main.overview .description {
  padding: 0 1.6896rem;
  font-size: 1.92rem;
}
main.overview .areas-of-expertise {
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2.112rem;
}
main.overview .areas-of-expertise::-webkit-scrollbar {
  display: none;
}
main.overview .areas-of-expertise .block {
  position: relative;
  height: 150px;
  padding: 1.9968rem 3.4848rem;
  flex: 0 0 200px;
  background-color: #625893;
  border: 2px solid #f8f8f8;
  font-size: 1.52rem;
}
main.overview .areas-of-expertise .block .illustration {
  position: absolute;
  bottom: 1.9968rem;
  right: 3.4848rem;
}
main.overview .areas-of-expertise .block p {
  margin: 0;
}
main.overview .areas-of-expertise .block:nth-of-type(1) {
  border-radius: 5px;
}
main.overview .areas-of-expertise .block:nth-of-type(2) {
  border-radius: 25px;
}
main.overview .areas-of-expertise .block:nth-of-type(3) {
  border-radius: 45px;
}
main.overview .areas-of-expertise .block:nth-of-type(4) {
  border-radius: 70px;
}
main.overview .marquee {
  position: relative;
  overflow: hidden;
}
main.overview .marquee .marquee-content {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 50px;
  gap: 50px;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 20s linear infinite;
}
main.overview .marquee .marquee-content span {
  font-size: max(180px, 12vw);
}
@media (max-width: 576px) {
  main.overview .marquee .marquee-content span {
    font-size: 100px;
  }
}
main.overview .marquee .marquee-content .marquee-image {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  transition: border-radius 0.3s ease;
}
main.overview .marquee .marquee-content .marquee-image:hover {
  cursor: pointer;
  border-radius: 25px;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  main.overview .marquee-content {
    animation-play-state: paused !important;
  }
}
main.work .projects-grid {
  max-width: 100vw;
  display: grid;
  grid-template-areas: "item1 item2" "item3 item3" "item4 item5";
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  padding: 1.9968rem;
}
main.work .projects-grid .project {
  position: relative;
  text-decoration: none;
  color: #625893;
}
main.work .projects-grid .project:nth-of-type(1) {
  grid-area: item1;
}
main.work .projects-grid .project:nth-of-type(2) {
  grid-area: item2;
}
main.work .projects-grid .project:nth-of-type(3) {
  grid-area: item3;
}
main.work .projects-grid .project:nth-of-type(4) {
  grid-area: item4;
}
main.work .projects-grid .project:nth-of-type(5) {
  grid-area: item5;
}
main.work .projects-grid .project .image-container {
  position: relative;
}
main.work .projects-grid .project .image-container .project-image {
  min-height: 495px;
  width: 100%;
  height: auto;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
  transition: opacity 0.3s ease;
}
main.work .projects-grid .project .image-container .project-image.normal {
  position: absolute;
}
main.work .projects-grid .project .image-container .project-image.overlay {
  background-color: #f8f8f8;
}
main.work .projects-grid .project .image-container:hover .project-image.overlay {
  opacity: 0;
}
main.work .projects-grid .project .text-content {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
main.work .projects-grid .project .text-content h2 {
  font-size: 1.6rem;
}
main.work .projects-grid .project .text-content p {
  flex: 0px;
  text-align: right;
  font-family: "PP Monument Extended Light";
  font-size: 1.4rem;
}
@media (max-width: 576px) {
  main.work .projects-grid {
    grid-template-areas: "item1" "item2" "item3" "item4" "item5";
    grid-template-columns: 1fr;
  }
  main.work .projects-grid .project .text-content {
    font-size: 1.4rem;
  }
  main.work .projects-grid .project .text-content p {
    display: none;
  }
}
main.project {
  padding: 6.24rem 1.9008rem 0;
  max-width: 80vw;
  margin: auto;
  left: 0;
  right: 0;
  font-size: 16px;
}
main.project .featured-image {
  width: 100%;
  margin: 1.9968rem 0 2.9952rem;
}
main.project .featured-image + img {
  width: 100%;
  margin-bottom: 2.496rem;
}
main.project .project-description {
  margin-bottom: 7.488rem;
  max-width: 685px;
}
main.project .project-description a {
  font-weight: normal;
  font-family: "PP Neue Montreal Bold";
}
main.project .project-media {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap, 20px);
}
main.project .project-media .media-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
main.project .project-media .media-row.triple {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 576px) {
  main.project .project-media .media-row {
    grid-template-columns: 1fr;
  }
}
main.project .project-media .demo {
  padding: 10vw 12vw;
  background-color: var(--spotColor);
}
main.project .project-media img,
main.project .project-media video {
  width: 100%;
}
main.project .project-text {
  font-family: "PP Neue Montreal";
  max-width: min(60%, 685px);
  align-self: flex-start;
}
@media (max-width: 576px) {
  main.project .project-text {
    max-width: 100%;
  }
}
main.project .project-text.right {
  align-self: flex-end;
  text-align: right;
}
main.project .project-text h4 {
  font-family: "PP Neue Montreal Bold";
  font-size: 2.88rem;
  margin: 0 0 2.112rem;
}
main.project .project-text p {
  font-family: "PP Neue Montreal Book";
}
main.project .full-width-container {
  width: 100vw;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap, 20px);
  background-color: var(--spotColor);
}
main.project .full-width-container.without-padding {
  padding: 0;
}
main.project .full-width-container * {
  max-width: 80vw;
}
main.project .project-footer {
  width: 100%;
  margin: 7.488rem 0 9.984rem;
  text-align: center;
}
main.project .project-footer h4 {
  font-family: "PP Neue Montreal Bold";
  font-size: 3.2rem;
  margin: 0 0 1.872rem;
}
main.project .project-footer a {
  display: block;
  font-size: 1.6rem;
}
main.project .project-footer a.go-back {
  margin-top: 4.992rem;
}
main.project .note {
  font-family: "PP Neue Montreal Book";
  margin-bottom: 0;
}
main.project p {
  font-family: "PP Neue Montreal";
}
main.project em {
  font-family: "PP Neue Montreal Italic";
}
main.project strong {
  font-weight: normal;
  font-family: "PP Neue Montreal Bold";
}
main.project a {
  font-family: "PP Neue Montreal";
}
main.project.the-typo .media-row {
  grid-template-columns: 4.4fr 1fr !important;
}
main.project.the-typo .row-desktop,
main.project.the-typo .row-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main.project.the-typo .row-desktop img,
main.project.the-typo .row-mobile img {
  border-radius: 10px;
}
main.project.izabela-todorova .media-custom-row {
  display: grid;
  gap: 20px;
}
main.project.izabela-todorova .media-custom-row.homepage {
  grid-template-columns: 5.323fr 2.704fr 1.585fr;
}
main.project.izabela-todorova .media-custom-row.projects, main.project.izabela-todorova .media-custom-row.blog {
  grid-template-columns: 5.323fr 2.704fr 1.75fr;
}
main.project.izabela-todorova .media-custom-row.photographs {
  grid-template-columns: 5.5fr 2.74fr 1.81fr;
}
main.project.izabela-todorova .media-custom-row.blog-overview {
  grid-template-columns: 5.5fr 2.79fr 1.83fr;
}

.dwell-and-thrift-custom-footer {
  width: 100%;
  padding: 0 0 4rem;
  text-align: center;
  background-color: #e1ddd3 !important;
}
.dwell-and-thrift-custom-footer h4 {
  font-family: "PP Neue Montreal Bold";
  font-size: 2.88rem;
  margin: 0 0 10px;
}
.dwell-and-thrift-custom-footer a {
  display: block;
  font-size: 1.2rem;
}
.dwell-and-thrift-custom-footer a.go-back {
  margin-top: 50px;
}

a,
p,
em,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--headercolor);
}

a:hover {
  cursor: none;
}