html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
}

a {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
}
a img {
  border: 0;
}

li {
  list-style: none;
}

fieldset {
  border: 0;
}

button {
  border: 0;
  text-align: left;
  background: transparent;
}

*:focus {
  outline: none;
}

button, input, textarea {
  font: inherit;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
html {
  overflow-y: scroll;
  font-size: 80%;
}
@media screen and (min-width: 750px) {
  html {
    font-size: 73%;
  }
}
@media screen and (min-width: 1150px) {
  html {
    font-size: 76%;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 80%;
  }
}
@media screen and (min-width: 1375px) {
  html {
    font-size: 85%;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 88%;
  }
}
@media screen and (min-width: 1750px) {
  html {
    font-size: 90%;
  }
}
@media screen and (min-width: 1900px) {
  html {
    font-size: 94%;
  }
}

body {
  font-family: "Sintony", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #616161;
  background-color: #1d1d1b;
  transition: background-color 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body.open-photobox {
  background-color: #fff;
}

* {
  outline: none;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-thumb {
  background: #fff;
}

::selection {
  background: #2a2a2a;
  color: #fff;
}

#wrapper {
  padding: 0.75rem;
  transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.25s, 0s;
}
@media screen and (min-width: 750px) {
  #wrapper {
    padding: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  body.full #wrapper {
    display: flex;
    min-height: 100vh;
  }
}
body.open-photobox #wrapper {
  opacity: 0;
  transition-delay: 0s;
  transform: translateY(-25vh) scale(0.95);
}
body.loading #wrapper {
  opacity: 0;
  transition-delay: 0s;
  transform: translateY(-10vh) scale(0.95);
}

#main-content {
  width: 100%;
  padding: 0 2.25rem;
  padding-bottom: 2.25rem;
  background-color: #fff;
  position: relative;
  min-height: 90vh;
}
@media screen and (min-width: 1024px) {
  #main-content {
    padding: 0 5.0625rem;
    padding-bottom: 10.125rem;
  }
  body.compact #main-content {
    padding-bottom: 5.0625rem;
  }
  body.full #main-content {
    display: flex;
    flex-direction: column;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.633);
  z-index: 10;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup__message {
  position: absolute;
  width: 80%;
  background-color: white;
  z-index: 11;
  padding: 2.25rem;
  padding-bottom: 6.75rem;
  -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.75);
}
@media screen and (min-width: 1024px) {
  .popup__message {
    width: 50%;
  }
}
.popup__message--close {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 2.25rem;
  top: 2.25rem;
}
.popup__message--close:before, .popup__message--close:after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 1px);
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #1d1d1b;
  transform-origin: center center;
  border-radius: 2px;
}
.popup__message--close:before {
  transform: rotate(45deg);
}
.popup__message--close:after {
  transform: rotate(-45deg);
}

.message__logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-top: 2.25rem;
}
@media screen and (min-width: 1024px) {
  .message__logo {
    padding-top: unset;
  }
}
.message__logo svg {
  margin: 0 1.125rem;
}
@media screen and (min-width: 1024px) {
  .message__logo svg {
    margin: 0 2.25rem;
  }
}
.message__logo svg:first-of-type {
  width: 100px;
}
.message__logo svg:nth-child(2) {
  width: 30px;
}
.message__logo svg:last-of-type {
  width: 150px;
}
.message__body {
  margin-top: 2.25rem;
  padding-top: 4.5rem;
  text-align: center;
}
.message__body > * {
  margin-bottom: 1.125rem;
}
.message__body--title {
  font-size: 1.5em;
}

.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  display: block;
  width: 15.75rem;
  height: 15.75rem;
  margin-top: -7.875rem;
  margin-left: -7.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.loading .loader .logo-animation--1 {
  opacity: 0;
  transform: translateY(50px);
  animation: fade-in 500ms forwards;
  animation-delay: calc(100ms * 1);
}
body.loading .loader .logo-animation--2 {
  opacity: 0;
  transform: translateY(50px);
  animation: fade-in 500ms forwards;
  animation-delay: calc(100ms * 2);
}
body.loading .loader .logo-animation--3 {
  opacity: 0;
  transform: translateY(50px);
  animation: fade-in 500ms forwards;
  animation-delay: calc(100ms * 3);
}
body.loading .loader .logo-animation--4 {
  opacity: 0;
  transform: translateY(50px);
  animation: fade-in 500ms forwards;
  animation-delay: calc(100ms * 4);
}
body.loading .loader .logo-animation--5 {
  opacity: 0;
  transform: translateY(50px);
  animation: fade-in 500ms forwards;
  animation-delay: calc(100ms * 5);
}
body.loading .loader .logo-animation--6 {
  opacity: 0;
  transform: translateY(50px);
  animation: fade-in 500ms forwards;
  animation-delay: calc(100ms * 6);
}
body.loading .loader .logo-animation--7 {
  opacity: 0;
  transform: translateY(50px);
  animation: fade-in 500ms forwards;
  animation-delay: calc(100ms * 7);
}
body.loading .loader .logo-animation--8 {
  opacity: 0;
  transform: translateY(50px);
  animation: fade-in 500ms forwards;
  animation-delay: calc(100ms * 8);
}
body.loading .loader .logo-animation--9 {
  opacity: 0;
  transform: translateY(50px);
  animation: fade-in 500ms forwards;
  animation-delay: calc(100ms * 9);
}
@keyframes fade-in {
  to {
    opacity: 1;
    transition: opacity 300ms ease-out;
    transform: translateY(0);
  }
}
body.loaded .loader svg {
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0s;
}

#header {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  color: #1d1d1b;
}
@media screen and (min-width: 1024px) {
  #header {
    padding-top: 3.375rem;
    padding-bottom: 3.9375rem;
  }
}

.header-wrap {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .header-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

#logo {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  #logo {
    position: static;
    width: 20%;
  }
}

#logo h2 a {
  display: block;
  width: 15.75rem;
  height: auto;
}
#logo h2 a .block {
  fill: #1d1d1b;
  transform: scaleX(1);
  transform-origin: 0 0;
  transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.5s;
}
body.loading #logo h2 a .block {
  transform: scaleX(0);
}
#logo h2 a .text {
  fill: #fff;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.5s;
}
body.loading #logo h2 a .text {
  opacity: 0;
}

#logo h1 {
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  height: 15.75rem;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 1.5s;
}
body.loading #logo h1 {
  opacity: 0;
}

#hamburger-icon {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.15rem;
  height: 3.15rem;
  background-color: #1d1d1b;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.2;
  font-size: 0.8rem;
}
body.open-nav #hamburger-icon {
  border: 1px solid #fff;
}
#hamburger-icon {
  z-index: 9999;
}
@media screen and (min-width: 1024px) {
  #hamburger-icon {
    display: none;
  }
}

#header-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4.5rem;
}
@media screen and (min-width: 1024px) {
  #header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    padding-top: 0;
  }
}

.header-content-col {
  width: 100%;
  margin-top: 2.25rem;
}
@media screen and (min-width: 1024px) {
  .header-content-col {
    width: 50%;
    margin-top: 0;
    padding-right: 1.125rem;
  }
}

#content-title {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #content-title {
    text-align: left;
  }
}
#content-title h1 {
  font-size: 1.3rem;
  text-transform: uppercase;
  line-height: 1.35;
}
@media screen and (min-width: 1024px) {
  #content-title h1 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1024px) {
  #content-title h1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
#content-title h1 span {
  margin-left: 0.75rem;
}
@media screen and (min-width: 1024px) {
  #content-title h1 span {
    margin-left: 2.25rem;
  }
}
#content-title h3 {
  font-size: 1.3rem;
  line-height: 1.5;
  display: none;
}
@media screen and (min-width: 1024px) {
  #content-title h3 {
    display: block;
  }
}

.header-nav {
  margin-top: 2.25rem;
}
@media screen and (min-width: 1024px) {
  .header-nav {
    margin-top: 0;
  }
}
.header-nav .fullscreen {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header-nav .fullscreen {
    display: block;
  }
}
.header-nav ul {
  display: flex;
  flex-direction: row;
}
.header-nav ul li {
  margin: 0 1.125rem;
}
@media screen and (min-width: 1024px) {
  .header-nav ul li {
    margin: 0;
    margin-left: 1.8rem;
  }
}
.header-nav ul li.disabled {
  opacity: 0.25;
}
.header-nav ul li.disabled a {
  cursor: default;
}
.header-nav ul li.disabled a svg * {
  fill: #616161;
}
.header-nav a {
  display: block;
  fill: #1d1d1b;
  width: 1.5rem;
  height: 1.5rem;
}
.header-nav a svg * {
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header-nav a:hover svg * {
  fill: #2a2a2a;
}

#side {
  color: #616161;
}
@media screen and (min-width: 1024px) {
  #side {
    position: relative;
    width: 20%;
    padding-right: 2.25rem;
  }
  body.full #side {
    display: flex;
    align-items: center;
    padding-top: 2.25rem;
    padding-bottom: 20vh;
  }
}

.side-logo {
  position: absolute;
  z-index: 1;
  right: -7.875rem;
  display: none;
  width: 15.75rem;
  height: 15.75rem;
}
@media screen and (min-width: 1024px) {
  .side-logo {
    display: block;
  }
}
.side-logo .block {
  fill: #1d1d1b;
  transform: scaleX(1);
  transform-origin: 0 0;
  transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.5s;
}
body.loading .side-logo .block {
  transform: scaleX(0);
}
.side-logo .text {
  fill: #fff;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.5s;
}
body.loading .side-logo .text {
  opacity: 0;
}

#main-nav {
  position: fixed;
  z-index: 9000;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1d1d1b;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s;
}
body.open-nav #main-nav {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 1024px) {
  #main-nav {
    position: static;
    display: block;
    height: initial;
    opacity: 1;
    background-color: transparent;
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-delay: 1.5s;
    transform: translateY(0);
  }
  body.loading.full #main-nav {
    opacity: 0;
  }
}
#main-nav li {
  display: block;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #main-nav li {
    text-align: left;
  }
}
#main-nav a {
  color: #fff;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
}
#main-nav a:after {
  content: "";
  width: 0;
  left: 0;
  top: 100%;
  height: 1px;
  background-color: #1d1d1b;
  position: absolute;
  transition: width 300ms ease-in-out;
}
@media screen and (min-width: 1024px) {
  #main-nav a {
    color: #616161;
  }
  #main-nav a:hover:after {
    width: 100%;
  }
}
#main-nav > ul {
  font-size: 1.75rem;
  text-transform: uppercase;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  #main-nav > ul {
    font-size: 1.1rem;
    text-transform: uppercase;
    line-height: 1.2;
  }
}
#main-nav > ul > li {
  margin-bottom: 1.125rem;
}
#main-nav > ul > li > ul {
  margin: 2.25rem 0;
  font-size: 1.25rem;
  text-transform: none;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  #main-nav > ul > li > ul {
    font-size: 1rem;
    text-transform: none;
    line-height: 1.75;
  }
}
#main-nav > ul > li > ul li {
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 1024px) {
  #main-nav > ul > li > ul li {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  #main-nav > ul > li > ul {
    padding-left: 2.25rem;
  }
}
#main-nav .active > a:after {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  #main {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  body.full #main {
    flex-grow: 1;
  }
}

#content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  #content {
    width: 80%;
  }
}

#footer {
  color: #1d1d1b;
  padding: 2.25rem;
  padding-bottom: 0;
}
@media screen and (min-width: 1024px) {
  #footer {
    padding: 5.0625rem;
    padding-bottom: 0;
  }
}
#footer h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.125rem;
}

#footer-cols {
  margin-bottom: 2.25rem;
  color: #fff;
}
@media screen and (min-width: 750px) {
  #footer-cols {
    display: flex;
    justify-content: space-between;
    padding-left: 20%;
    margin-bottom: 4.5rem;
  }
}

#footer-cols address {
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 750px) {
  #footer-cols address {
    margin-bottom: 0;
  }
}

.footer-contact a {
  text-transform: lowercase;
}
.footer-contact a svg {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 1.125rem;
  fill: #fff;
}

.footer-social {
  display: flex;
  margin-bottom: 2.25rem;
  gap: 1.125rem;
}
@media screen and (min-width: 750px) {
  .footer-social {
    margin-bottom: 0;
  }
}
.footer-social li a {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
.footer-social li a svg path {
  fill: #fff;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer-social li a:hover svg * {
  fill: #616161;
}

#footer-bottom {
  font-size: 0.8rem;
  color: #616161;
}
@media screen and (min-width: 750px) {
  #footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-left: 20%;
  }
}

@media screen and (min-width: 1024px) {
  .footer-copyright {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-copyright a {
  margin-left: 1.125rem;
}
@media screen and (min-width: 1024px) {
  .footer-copyright a {
    margin-left: 4.5rem;
  }
}

#credit {
  margin-top: 2.25rem;
}
@media screen and (min-width: 750px) {
  #credit {
    margin-top: 0;
  }
}
#credit a {
  display: block;
}
#credit a svg {
  display: block;
  fill: #616161;
}

.cookie-notice {
  position: fixed;
  z-index: 9999;
  background-color: #fff;
  padding: 2.25rem;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .cookie-notice {
    left: unset;
    bottom: 2.25rem;
    right: 2.25rem;
  }
}
.cookie-notice__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.cookie-notice__wrapper > * {
  margin-bottom: 2.25rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .cookie-notice__wrapper > * {
    text-align: left;
  }
}
.cookie-notice__wrapper > *:last-child {
  margin-bottom: unset;
}
.cookie-notice__footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.125rem;
}
@media screen and (min-width: 650px) {
  .cookie-notice__footer {
    gap: 2.25rem;
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .cookie-notice__footer {
    justify-content: flex-start;
  }
}
.cookie-notice__link {
  display: inline-flex;
  align-items: center;
}
.cookie-notice__link:after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg width='24' xmlns='http://www.w3.org/2000/svg' height='24' fill='none' viewBox='0 0 24 24'><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9.25 4.75H6.75C5.64543 4.75 4.75 5.64543 4.75 6.75V17.25C4.75 18.3546 5.64543 19.25 6.75 19.25H17.25C18.3546 19.25 19.25 18.3546 19.25 17.25V14.75'/><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19.25 9.25V4.75H14.75'/><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19 5L11.75 12.25'/></svg>");
  background-size: cover;
  width: 16px;
  height: 16px;
  margin-left: 0.25em;
}
.cookie-notice__button--essential, .cookie-notice__button--agree {
  text-align: center;
  cursor: pointer;
  border: 1px solid green;
  color: green;
  transform: scale(1);
  transition: transform 300ms ease-in-out;
  padding: 0.75rem 1.125rem;
}
.cookie-notice__button--essential:hover, .cookie-notice__button--agree:hover {
  transform: scale(1.03);
}
.cookie-notice__button--agree {
  background-color: green;
  color: white;
}

.intro-photo {
  position: relative;
  flex-grow: 1;
  background-color: #1d1d1b;
  background-position: center center;
  background-size: cover;
}
.intro-photo a {
  display: block;
}
@media screen and (min-width: 1024px) {
  .intro-photo a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.intro-photo img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .intro-photo img {
    display: none;
  }
}

.textblock {
  padding-bottom: 2.25rem;
}
@media screen and (min-width: 1024px) {
  .textblock {
    margin-left: 50%;
    padding-left: 1.125rem;
    padding-bottom: 3.375rem;
  }
}

.photo-grid {
  margin-bottom: 4.5rem;
}

@media screen and (min-width: 750px) {
  .photo-grid-row {
    margin-bottom: 2.25rem;
    display: flex;
    justify-content: space-between;
  }
  .photo-grid-row:last-child {
    margin-bottom: 0;
  }
  .photo-grid-row.alt > .photo-grid-item:nth-child(2) img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .photo-grid-row.alt-reverse > .photo-grid-item:nth-child(1) img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

.photo-grid-item {
  width: 100%;
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 750px) {
  .photo-grid-item {
    display: flex;
    justify-content: space-between;
    width: 50%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .photo-grid-item:nth-child(1) {
    padding-right: 1.125rem;
  }
  .photo-grid-item:nth-child(2) {
    padding-left: 1.125rem;
  }
}
.photo-grid-item a {
  position: relative;
  display: block;
  width: 100%;
}
.photo-grid-item img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .projects-index {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.projects-index-project {
  padding-bottom: 2.25rem;
}
.projects-index-project:last-child {
  padding-bottom: 0;
}
@media screen and (min-width: 750px) {
  .projects-index-project:last-child {
    padding-bottom: 2.25rem;
  }
}
@media screen and (min-width: 750px) {
  .projects-index-project {
    width: 50%;
  }
  .projects-index-project:nth-child(even) {
    padding-left: 1.125rem;
  }
  .projects-index-project:nth-child(odd) {
    padding-right: 1.125rem;
  }
}

.projects-index-project-content img {
  display: block;
  transform: translateZ(0);
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .projects-index-project-content img {
    transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-delay: 0.2s;
  }
}
.projects-index-project-content a {
  position: relative;
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .projects-index-project-content a:hover img {
    opacity: 0;
    transition-duration: 0.5s;
    transition-delay: 0s;
  }
  .projects-index-project-content a:hover .projects-index-project-data {
    transform: translateY(0);
    transition-duration: 0.5s;
    transition-delay: 0s;
  }
}

.projects-index-project-data {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1.125rem;
  flex-shrink: 0;
  color: #1d1d1b;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .projects-index-project-data {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin-top: 1px;
    padding: 2.25rem;
    color: #fff;
    background-color: #1d1d1b;
    transform: translateY(100%);
    transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-delay: 0.2s;
  }
}

.projects-index-project-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.2;
  display: block;
}

.projects-index-project-year {
  display: flex;
  align-items: center;
}
.projects-index-project-year:before {
  content: "";
  display: block;
  height: 1px;
  width: 1em;
  margin-right: 0.5em;
  background-color: #1d1d1b;
}
@media screen and (min-width: 1024px) {
  .projects-index-project-year:before {
    background-color: #fff;
  }
}

.project-photo {
  margin-bottom: 2.25rem;
}
.project-photo img {
  display: block;
  width: 100%;
}

.contact-header {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contact-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.3;
  }
}

.contact-email {
  font-weight: bold;
}

#map {
  position: relative;
  background-color: #1d1d1b;
  height: 60vh;
}

.btn-zoom-in,
.btn-zoom-out {
  position: absolute;
  top: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: #fff;
  color: #1d1d1b;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.btn-zoom-in:hover,
.btn-zoom-out:hover {
  color: #fff;
  background-color: #1d1d1b;
}

.btn-zoom-in {
  right: 0.75rem;
}

.btn-zoom-out {
  right: 3.375rem;
}

.page-block {
  margin-bottom: 2.25rem;
}
.page-block:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 750px) {
  .page-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6.75rem;
  }
  .page-block:nth-child(even) {
    flex-direction: column;
    align-items: flex-end;
  }
  .page-block:nth-child(even) .page-block-content {
    margin-top: 2.25rem;
  }
  .page-block:nth-child(even) .page-block-photo {
    padding-left: 1.125rem;
    padding-right: 0;
  }
}

.page-block-photo {
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 750px) {
  .page-block-photo {
    width: 50%;
    margin-bottom: 0;
    padding-right: 1.125rem;
  }
}
.page-block-photo img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .page-block-content {
    width: 50%;
    padding-left: 1.125rem;
  }
}
.page-block-content h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.125rem;
  color: #1d1d1b;
}

.wysiwyg strong {
  font-weight: bold;
}
.wysiwyg em {
  font-style: italic;
}
.wysiwyg p, .wysiwyg ul, .wysiwyg ol {
  margin-bottom: 2.25rem;
  vertical-align: middle;
}
.wysiwyg p:last-child, .wysiwyg ul:last-child, .wysiwyg ol:last-child {
  margin-bottom: 0;
}
.wysiwyg a {
  position: relative;
  border-bottom: 1px solid #2a2a2a;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.wysiwyg a:hover {
  color: #1d1d1b;
  border-bottom: 1px solid #1d1d1b;
}
.wysiwyg li {
  margin-left: 2rem;
  list-style: square;
}

.tnt-photobox-overlay {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation-fill-mode: both;
  background-color: #1d1d1b;
  transition: transform 0.5s;
  transform: translateY(0);
}
.tnt-photobox-overlay.hidden {
  transform: translateY(100%);
  margin-bottom: -0.75rem;
  pointer-events: none;
}
@media screen and (min-width: 750px) {
  .tnt-photobox-overlay.hidden {
    margin-bottom: -1.8rem;
  }
}
@media screen and (min-width: 750px) {
  .tnt-photobox-overlay {
    top: 1.8rem;
    right: 1.8rem;
    bottom: 1.8rem;
    left: 1.8rem;
  }
}
body.loading .tnt-photobox-overlay {
  opacity: 0;
  transition-delay: 700ms;
}
.tnt-photobox-overlay.loading > div:after {
  animation: none;
}
.tnt-photobox-overlay.loading:after {
  opacity: 1;
}
.tnt-photobox-overlay > div {
  position: relative;
  width: 22.5rem;
  height: 22.5rem;
}
.tnt-photobox-overlay > div .img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  animation: fadein 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tnt-photobox-next,
.tnt-photobox-prev,
.tnt-photobox-close {
  position: absolute;
  z-index: 9999;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}

.tnt-photobox-prev {
  z-index: 9998;
}

.tnt-photobox-next,
.tnt-photobox-prev {
  top: 50%;
  margin-top: -1.125rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.tnt-photobox-next.hide:after,
.tnt-photobox-prev.hide:after {
  opacity: 0.2;
}
.tnt-photobox-next.hide,
.tnt-photobox-prev.hide {
  cursor: default;
}

.tnt-photobox-next {
  right: 2.25rem;
  background-image: url("img/next.svg");
}

.tnt-photobox-prev {
  left: 2.25rem;
  background-image: url("img/previous.svg");
}

.tnt-photobox-close {
  top: 2.25rem;
  right: 2.25rem;
}
.tnt-photobox-close:after, .tnt-photobox-close:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  height: 2px;
  background-color: #fff;
}
.tnt-photobox-close:before {
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
}
.tnt-photobox-close:after {
  transform: rotate(45deg);
  transform-origin: 50% 50%;
}

@view-transition {
  navigation: auto;
}