@charset "UTF-8";
/*
Theme Name: Picture This
Author: Mr.M Ideas Studio
*/
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2"), url("assets/fonts/Inter-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-SemiBold.woff2") format("woff2"), url("assets/fonts/Inter-SemiBold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
}
:root {
  --gap: 1.75rem;
  --pad: 1.33rem;
}
@media (max-width: 767px) {
  :root {
    --gap: 1.33rem;
    --pad: 1rem;
  }
}

html {
  font: 400 18px/1.4 "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}
a:hover {
  color: #fff;
}

.project-thumb__view-link,
.wysiwyg a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  display: inline-block;
  line-height: 1.7;
  text-wrap: pretty;
}

.project-thumb__view-link {
  font-size: 0.8rem;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  font-size: 1rem;
  margin: 1rem 0;
  text-wrap: pretty;
  font-weight: 400;
}

.fz-s,
.fz-s * {
  font-size: 0.8rem;
}

ul.fz-s li {
  margin: 0 !important;
}

.fz-m {
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.05;
  font-weight: 400;
}

.fz-l {
  font-size: clamp(24px, 4.5vw, 60px);
  line-height: 1.05;
  font-weight: 400;
}

.block > .fz-l:first-child {
  margin: -0.1em 0 calc(var(--pad) - 0.2em);
}

.content-wrap ul {
  list-style-type: none;
  padding: 0;
}
.content-wrap ul:not(.no-marker) li {
  padding-left: 1.2em;
  margin: 0.5em 0 0;
  position: relative;
}
.content-wrap ul:not(.no-marker) li:before {
  content: "→";
  position: absolute;
  top: 0;
  left: 0;
}

blockquote {
  padding: 0;
  margin: 2rem 0;
}
blockquote:before {
  content: "";
  display: block;
  font-size: 2rem;
  height: 1em;
  width: 3.1875em;
  background: url("assets/img/icons/quote-marks.svg") center/contain no-repeat;
  margin-bottom: 1rem;
}
blockquote cite {
  font: inherit;
  font-style: normal;
  display: block;
}

@media (min-width: 900px) {
  .block > p,
  .block > ul,
  .block > blockquote,
  .single-podcast__overview > p,
  .single-podcast__overview > ul,
  .single-podcast__overview > blockquote,
  main > p,
  main > ul,
  main > blockquote {
    max-width: calc((100% - var(--pad) * 5) * 0.6667 + var(--pad) * 3);
  }
}
.header-main a,
.footer-main a {
  text-decoration: none;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 0 0 #000;
  z-index: 99;
  height: 2rem;
}
.header-main .home-link {
  flex: 0 0 2rem;
  width: 2rem;
  position: relative;
}
.header-main .home-link:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-indent: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url("assets/img/icons/icon-home.svg") center/auto 75% no-repeat;
}
.header-main {
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .header-main {
    box-shadow: 0 1px 0 0 #000;
  }
  .header-main a:before, .header-main li:before {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center top;
  }
  .header-main.is-hidden {
    transform: translateY(-100%);
  }
  .header-main.is-hidden a:before, .header-main.is-hidden li:before {
    transform: translateX(-50%) scale(0) !important;
    opacity: 0;
  }
}

.menu-main {
  display: flex;
}
.menu-main ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  text-transform: uppercase;
}
.menu-main a {
  display: block;
  text-align: center;
  padding: 0.5em;
  height: 2rem;
  line-height: 1;
}
.menu-main a:hover {
  background: #000;
  color: #fff;
}
.menu-main a:hover:after {
  filter: brightness(0) invert(1);
}
.menu-main .current-menu-item a,
.menu-main .current_page_parent a {
  background: #ede939 !important;
  color: #000 !important;
}
.home .menu-main .home-link {
  background: #ede939 !important;
  color: #000 !important;
}
.home .menu-main .home-link:hover:after {
  filter: unset;
}
.menu-main .menu-toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  flex: 1;
  text-indent: 110%;
  overflow: hidden;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
}
.menu-main .menu-toggle:before, .menu-main .menu-toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.67rem;
  width: 1rem;
  height: 2px;
  background: currentColor;
  margin-top: -1px;
  transition: transform 0.3s ease;
  border-radius: 1px;
}
.menu-main .menu-toggle:before {
  transform: translateY(-0.2rem);
}
.menu-main .menu-toggle:after {
  transform: translateY(0.2rem);
}
.menu-main .menu-toggle {
  display: none;
}
@media (min-width: 768px) {
  .menu-main ul {
    flex: 1;
  }
  .menu-main ul li {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .menu-main ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100% !important;
    border: 1px solid;
    border-width: 1px 0;
    flex-direction: column;
  }
  .menu-main ul li {
    border: none;
  }
  .menu-main ul li a {
    font-size: clamp(25px, 4.5vw, 90px);
    height: auto;
  }
  .menu-main ul li:not(:last-child) {
    border-bottom: 1px solid #000;
  }
  .menu-main ul {
    display: none;
  }
  .menu-main.is-open ul {
    display: flex;
  }
  .menu-main.is-open .menu-toggle:before {
    transform: rotate(45deg);
  }
  .menu-main.is-open .menu-toggle:after {
    transform: rotate(-45deg);
  }
  .menu-main .menu-toggle {
    display: block;
  }
}

.footer-main {
  background: #000;
}
.footer-main .container {
  padding: var(--pad);
  color: #ede939;
  flex-direction: row;
}
.footer-main .container .col > :first-child {
  margin-top: 0;
}
.footer-main .container .col > :last-child {
  margin-bottom: 0;
}
.footer-main .container .col:last-child {
  flex: 0 0 3rem;
}
.footer-main .container a[href^=https]:hover {
  color: #fff;
}
.footer-main .container .scroll-to-top {
  display: block;
  width: 3rem;
  height: 100%;
  cursor: pointer;
  text-indent: 110%;
  overflow: hidden;
  white-space: nowrap;
  background: url("assets/img/icons/scroll-top.svg") right bottom/contain no-repeat;
}
.footer-main .container .scroll-to-top:hover {
  filter: brightness(0) invert(1);
}
@media (max-width: 919px) {
  .footer-main .container strong {
    display: block;
  }
}

body, html {
  margin: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #ede939;
}

.content-wrap {
  flex: 1;
  padding-top: calc(3rem - var(--gap));
}

img, svg {
  max-width: 100%;
  height: auto;
}

.container,
.content-wrap {
  width: 95%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .container,
  .content-wrap {
    width: 90%;
  }
}
@media (min-width: 768px) {
  .container,
  .content-wrap {
    width: 85%;
  }
}

.row {
  display: flex;
  flex-direction: column;
  gap: var(--pad);
}
.row .col > :first-child {
  margin-top: 0;
}
.row .col > :last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .row {
    flex-direction: row;
  }
  .row .col {
    flex: 1;
  }
}

.block {
  margin: var(--gap) 0;
  padding: var(--pad);
  background: #ede939;
}
.block > :first-child {
  margin-top: 0;
}
.block > :last-child {
  margin-bottom: 0;
}
.block {
  position: relative;
}
.block:before {
  content: "";
  position: absolute;
  bottom: calc(100% + var(--gap) / 2);
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}
.content-wrap > .block:first-child:before {
  display: none;
}

.image-container {
  position: relative;
}
.image-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.image-container figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 90%;
  padding: 0.5em;
  background: #000;
  color: #fff;
}

.aspect--3-2 {
  aspect-ratio: 3/2;
}

.aspect--16-9 {
  aspect-ratio: 16/9;
}

.two-col-images {
  margin: var(--pad) 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--pad);
}
@media (min-width: 600px) {
  .two-col-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

.full-width-image {
  margin: var(--pad) 0;
}
.full-width-image img {
  width: 100%;
  max-width: none;
  aspect-ratio: 16/9;
}

.sharing {
  margin-top: var(--pad);
}
.sharing h2 {
  margin-bottom: 0;
  text-transform: uppercase;
}
.sharing ul {
  display: flex;
  gap: 1rem;
  margin: 0.5em 0 0;
}
.sharing ul li {
  margin: 0;
}

#cursor {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100vw);
  pointer-events: none;
  z-index: 999;
  width: 8vw;
  height: auto;
  display: none;
}
@media (hover: none) {
  #cursor {
    display: none !important;
  }
}
#cursor.hide {
  display: none !important;
}

.js-cursor {
  cursor: none !important;
}
.js-cursor * {
  cursor: none !important;
}
.js-cursor #cursor {
  display: block;
}
.js-cursor #cursor .outer {
  fill: #ede939 !important;
}
.js-cursor #cursor .inner {
  fill: #1a1a1a !important;
}
.js-cursor #cursor .inner, .js-cursor #cursor .outer {
  transition: fill 0.2s;
}
.js-cursor .invert-cursor #cursor .outer {
  fill: #1a1a1a !important;
}
.js-cursor .invert-cursor #cursor .inner {
  fill: #ede939 !important;
}

.embla {
  overflow: hidden;
  position: relative;
  margin: 0 calc(var(--pad) * -1);
}
.embla__container {
  display: flex;
}
.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 var(--pad);
}
.embla__slide__image {
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
}
.embla__slide__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: scale 0.2s;
}
.embla__slide {
  position: relative;
}
.embla__slide a {
  text-decoration: none;
}
.embla__slide a:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.embla__slide a:hover {
  color: #fff;
}
.embla__slide:hover {
  color: #fff;
}
.embla__slide:hover .embla__slide__image img {
  scale: 1.05;
  transition: scale 1s;
}
.embla__slide h3 {
  margin-top: calc(var(--pad) - 0.2em);
  line-height: 1;
  margin-bottom: 0;
}
.embla__prev, .embla__next {
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2rem;
  background: #ede939 url("assets/img/icons/arr-menu-indicator.svg") center/33% no-repeat;
  border-radius: 50%;
  padding: 0;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-indent: 110%;
  overflow: hidden;
  white-space: nowrap;
  transition: background-color 0.3s;
}
.embla__prev:hover, .embla__next:hover {
  background-color: #fff;
}
.embla__prev {
  left: var(--pad);
  transform: translate(-50%, -50%) rotate(-90deg);
}
.embla__next {
  right: var(--pad);
  transform: translate(50%, -50%) rotate(90deg);
}
.embla__dots {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  margin-top: -1rem;
  pointer-events: none;
}
.embla__dot {
  pointer-events: initial;
  width: 1.5rem;
  height: 1.5rem;
  background: #fff;
  border-radius: 50%;
  padding: 0;
  border: 0.75em solid transparent;
  background-clip: padding-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.embla__dot:hover {
  background-color: #000;
}
.embla__dot--selected {
  background-color: #ede939;
}

.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20%;
}
.page-header > * {
  flex: 1;
  max-width: 40%;
  margin: 0;
}
.page-header {
  position: relative;
  z-index: 1;
}
.page-header .arrow {
  position: absolute;
  top: 37%;
  left: 36%;
  width: 22.5%;
  height: auto;
  pointer-events: none;
}
.page-header .arrow-contact {
  top: 40%;
  left: 40%;
  width: 21%;
  animation: point 1s infinite;
  transform-origin: 12.5% 63%;
}
@media (max-width: 600px) {
  .page-header img[src*="logo.svg"] {
    flex: 0 0 33%;
    max-width: 33%;
  }
  .page-header img[src*="logo.svg"] + .fz-l {
    max-width: 60%;
    flex: 0;
  }
  .page-header .arrow {
    top: 30%;
    left: 30%;
  }
  .page-header .arrow-contact {
    left: 40%;
  }
}

@keyframes point {
  0%, 100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0deg);
  }
}
.home-banner .strapline,
.home-banner .strapline-sub {
  max-width: 100%;
}
.home-banner .strapline {
  font-size: clamp(36px, 11.5vw, 205px);
  line-height: 1.1;
  margin: 0 0 1rem;
}
.home-banner .strapline-sub {
  margin: 1.75em 0 1em;
  max-width: 22em;
  font-size: clamp(27px, 4.5vw, 60px);
}
@media (max-width: 599px) {
  .home-banner .strapline-sub {
    margin: 1em 0 0;
  }
}
.home-banner {
  padding-bottom: 2rem;
}

.home-block__header {
  display: flex;
  gap: var(--pad);
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--pad);
}
.home-block__header > * {
  margin: 0;
}
.home-block__header h2 {
  margin: -0.1em 0 -0.2em;
}
.home-block__header a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.home-block__header a:after {
  content: "";
  display: block;
  width: 5rem;
  height: 4rem;
  background: url("assets/img/icons/arr-all.svg") center/contain no-repeat;
  margin: calc(var(--pad) * -1) 0;
  transform: translateY(-0.15em);
  transition: transform 0.3s;
}
@media (max-width: 575px) {
  .home-block__header a:after {
    width: 3rem;
    height: 2rem;
  }
}
.home-block__header a:hover:after {
  filter: invert(1);
  transform: translateY(-0.15em) translateX(0.5rem);
}

@media (max-width: 767px) {
  body.home .embla__slide__image {
    padding-bottom: 100%;
  }
  body.home article:not(:first-child) {
    display: none;
  }
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem 1rem;
}
@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-thumb {
  position: relative;
}
.post-thumb a {
  text-decoration: none;
}
.post-thumb a:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.post-thumb:hover {
  color: #fff;
}
.post-thumb:hover .post-thumb__image img {
  scale: 1.05;
  transition: scale 1s;
}
.post-thumb__image {
  padding-bottom: 66.67%;
  position: relative;
  overflow: hidden;
  margin: 0 0 var(--pad);
}
.post-thumb__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: scale 0.2s;
}
.post-thumb h3, .post-thumb span {
  margin: -0.2em 0 0;
  line-height: 1.2;
  display: block;
}
.post-thumb h3 + h3,
.post-thumb h3 + span, .post-thumb span + h3,
.post-thumb span + span {
  margin-top: 0;
}
.post-thumb.podcast .post-thumb__image {
  outline: 2px solid #000;
}
.post-thumb.podcast .post-thumb__image img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}

.project-thumb {
  position: relative;
}
.project-thumb a {
  text-decoration: none;
}
.project-thumb a:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.project-thumb a:hover ~ .project-thumb__image img {
  scale: 1.05;
  transition: scale 1s;
}
.project-thumb:hover {
  color: #fff;
}
.project-thumb__image {
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
  margin: var(--pad) 0;
}
.project-thumb__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: scale 0.2s;
}
.project-thumb__title {
  margin: -0.1em 0 -0.2em;
}
.project-thumb span {
  display: block;
  text-wrap: pretty;
}
.project-thumb__view-link {
  display: block;
  margin-top: 0.5em;
  text-align: right;
  text-transform: uppercase;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .project-thumb__view-link {
    display: none !important;
  }
}
.project-thumb__text {
  display: block;
}
.project-thumb__text span {
  display: block;
  line-height: 1.1;
  margin-top: -0.2em;
}
.project-thumb__text span + span {
  margin-top: 0.2em;
}
@media (min-width: 600px) {
  .project-thumb__text {
    padding-right: 9rem;
    position: relative;
  }
  .project-thumb__view-link {
    position: absolute;
    right: 0;
    bottom: 0.2em;
  }
}

.project-thumb a:hover ~ .project-thumb__text .project-thumb__view-link,
.embla__slide a:hover ~ .project-thumb__text .project-thumb__view-link {
  color: #fff;
}

.single-projects__partners h2, .single-projects__overview h2 {
  margin-bottom: 0.5rem;
}
.single-projects__partners p, .single-projects__partners ul, .single-projects__overview p, .single-projects__overview ul {
  margin-top: 0;
}
.single-projects__overview h3 {
  margin: 0;
}
@media (min-width: 768px) {
  .single-projects__overview {
    flex: 0 0 calc((100% - var(--pad) * 5) * 0.3333 + var(--pad)) !important;
  }
}
@media (min-width: 768px) {
  .single-projects main {
    margin-top: -2.25rem;
  }
  .single-projects__partners {
    padding-bottom: 2.5rem;
  }
}

.other-projects .embla__slide {
  padding: 0;
}

.podcast-player {
  border: 2px solid;
  margin: 1rem 0;
  padding: 0;
  background: #f6f6f6;
}
.podcast-player iframe {
  display: block;
  margin: -2px;
  width: calc(100% + 4px);
  padding: 0;
  border: none;
  -webkit-clip-path: inset(3px);
          clip-path: inset(3px);
}

.podcast__hero img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}

.founders {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--pad) * 2) var(--pad);
}
@media (min-width: 768px) {
  .founders {
    grid-template-columns: repeat(2, 1fr);
  }
}

.founder__image {
  width: 100%;
  height: auto;
  aspect-ratio: 6/5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.founder__image + h3 {
  margin: 1rem 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.logo-grid__item {
  aspect-ratio: 3/2;
  position: relative;
}
.logo-grid__item img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 75%;
  max-height: 80%;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
}
@media (min-width: 640px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 800px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.contact-map {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  min-height: 325px;
}
.contact-map img {
  max-width: inherit !important;
}

/*# sourceMappingURL=style.css.map */