:root {
  --breakpoint-sm: 360px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1280px;
  --grid-columns-sm: 4;
  --grid-columns-md: 8;
  --grid-columns-lg: 12;
}

.grid-container {
  display: grid;
}
@media (min-width: 360px) {
  .grid-container {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .grid-container {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .grid-container {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}

.grid-item {
  width: auto;
}

.wp-site-blocks {
  overflow: visible;
}

.common__grid-layout {
  display: grid;
}
@media (min-width: 360px) {
  .common__grid-layout {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .common__grid-layout {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .common__grid-layout {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .common__grid-layout {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}
.common__page-title {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  color: #ff0909;
  display: grid;
  justify-items: center;
  text-align: center;
  text-transform: lowercase;
}
@media (max-width: 767px) {
  .common__page-title {
    grid-column: span 4;
    margin: 56px 0;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .common__page-title {
    grid-column: span 8;
    margin: 56px 0;
  }
}
@media (min-width: 1280px) {
  .common__page-title {
    grid-column: span 12;
    margin: 56px 0;
  }
}
.common__grid-layout-inherit {
  display: contents;
}

.grecaptcha-badge {
  display: none;
}

@media (max-width: 767px) {
  .page-header__content {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .page-header__content {
    grid-column: span 8;
  }
}
@media (min-width: 1280px) {
  .page-header__content {
    grid-column: span 2;
  }
}
@media (max-width: 1279px) {
  .page-header__content {
    align-items: center;
    display: flex;
    height: 32px;
    justify-content: space-between;
  }
}
.page-header__container {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 20.38%, rgba(0, 0, 0, 0) 100%);
  height: 75px;
  padding-top: 30px !important;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.page-header__container--disabled {
  overflow: hidden;
}
.page-header__container--enabled {
  overflow: auto;
}
.page-header__title {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.header--hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.header--visible {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.navigation-bar {
  text-transform: lowercase;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}
.navigation-bar::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
@media (max-width: 1279px) {
  .navigation-bar {
    font-family: "Grenze";
    font-size: 28px;
    font-style: normal;
    font-weight: 200;
    line-height: 40px;
    display: none;
    height: calc(100vh - 114px * 2);
    overflow: auto;
    padding: 0 0 52px;
    text-transform: lowercase;
  }
}
@media (max-width: 767px) {
  .navigation-bar {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .navigation-bar {
    grid-column: span 8;
  }
}
@media (min-width: 1280px) {
  .navigation-bar {
    grid-column: span 10;
  }
}
@media (max-width: 1279px) {
  .navigation-bar__list {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }
}
@media (max-width: 1279px) {
  .navigation-bar__mobile-view--active {
    background-color: #000;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 9999;
  }
  .navigation-bar__mobile-view--active nav {
    display: flex;
  }
  .navigation-bar__mobile-view--inactive {
    overflow-y: hidden;
  }
}
@media (min-width: 1280px) {
  .navigation-bar__item:nth-last-child(2) {
    margin-left: auto;
  }
}
@media (max-width: 1279px) {
  .navigation-bar__button {
    grid-column: span 2;
    justify-content: flex-end;
  }
}
@media (min-width: 1280px) {
  .navigation-bar__button {
    display: none;
  }
}
.navigation-bar__button--inactive {
  display: none;
}

.video {
  height: 100vh;
  left: 0;
  object-fit: cover;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: -1;
  background: #000;
}
.video--hidden {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.video--visible {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.video__control {
  bottom: 0;
  margin: 20px;
  position: fixed;
  right: 0;
  z-index: 9999;
}
.video__button {
  background-color: #afafaf;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
}

.wp-site-blocks {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: 120px;
  display: grid;
}
@media (min-width: 360px) {
  footer {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  footer {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  footer {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  footer {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}

.footer__newsletter-text-container {
  padding-top: 8px;
}
@media (max-width: 767px) {
  .footer__newsletter-text-container {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .footer__newsletter-text-container {
    grid-column: span 4;
  }
}
@media (min-width: 1280px) {
  .footer__newsletter-text-container {
    grid-column: span 6;
  }
}
.footer__newsletter-heading {
  text-transform: uppercase;
  font-family: "Buljirya";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
}
.footer__newsletter-text {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}
@media (max-width: 767px) {
  .footer__newsletter-form-container {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .footer__newsletter-form-container {
    grid-column: span 4;
  }
}
@media (min-width: 1280px) {
  .footer__newsletter-form-container {
    grid-column: span 6;
  }
}
@media (max-width: 767px) {
  .footer__navigation {
    grid-column: span 4;
    display: grid;
    justify-content: center;
    margin: 48px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .footer__navigation {
    grid-column: span 4;
  }
}
@media (min-width: 768px) {
  .footer__navigation {
    align-items: center;
    display: grid;
    margin: 72px 0 32px;
  }
}
@media (min-width: 1280px) {
  .footer__navigation {
    grid-column: span 6;
  }
}
.footer__navigation li {
  text-transform: lowercase;
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}
.footer__navigation li:not(:last-child) {
  margin-right: 24px;
}
.footer__watermark-container {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
  mix-blend-mode: lighten;
  opacity: 0.4;
}
@media (max-width: 767px) {
  .footer__watermark-container {
    grid-column: span 4;
    display: grid;
    justify-content: center;
    margin: 48px 0 60px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .footer__watermark-container {
    grid-column: span 4;
  }
}
@media (min-width: 768px) {
  .footer__watermark-container {
    display: grid;
    justify-content: end;
    margin: 72px 0 32px;
  }
}
@media (min-width: 1280px) {
  .footer__watermark-container {
    grid-column: span 6;
  }
}
.footer__watermark {
  margin: 0;
}

.newsletter-form {
  color: #afafaf;
}
@media (max-width: 767px) {
  .newsletter-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .newsletter-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 18px;
  }
}
@media (min-width: 1280px) {
  .newsletter-form {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 0;
    column-gap: 20px;
  }
}
.newsletter-form__label {
  display: none;
}
.newsletter-form__input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: #fff;
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}
@media (max-width: 767px) {
  .newsletter-form__input {
    grid-column: span 4;
    margin-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .newsletter-form__input {
    grid-column: span 4;
  }
  .newsletter-form__input:last-of-type {
    margin-top: 40px;
  }
}
@media (min-width: 1280px) {
  .newsletter-form__input {
    grid-column: span 3;
  }
}
@media (max-width: 767px) {
  .newsletter-form__button-wrapper {
    grid-column: span 4;
    margin-top: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .newsletter-form__button-wrapper {
    grid-column: span 4;
    margin-top: 32px;
  }
}
@media (min-width: 1280px) {
  .newsletter-form__button-wrapper {
    grid-column: span 6;
    margin-top: 36px;
  }
}
.newsletter-form__button-submit {
  background: transparent;
  border: none;
  color: #ff0909;
  cursor: pointer;
  display: grid;
  justify-items: end;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  width: min-content;
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.newsletter-form__button-submit--disabled {
  display: none;
}
.newsletter-form__response {
  display: none;
  justify-content: end;
}
@media (max-width: 767px) {
  .newsletter-form__response {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .newsletter-form__response {
    grid-column: span 6;
  }
}
@media (min-width: 1280px) {
  .newsletter-form__response {
    grid-column: span 6;
  }
}
.newsletter-form__response--success {
  display: grid;
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}
.newsletter-form__response--error {
  color: #ff0909;
  display: grid;
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}

.smooth-scroll {
  transition: scrolltop 0.3s ease-out;
}

.pattern-artwork {
  display: grid;
}
@media (min-width: 360px) {
  .pattern-artwork {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .pattern-artwork {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .pattern-artwork {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .pattern-artwork {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}
@media (max-width: 767px) {
  .pattern-artwork__page-title-container {
    grid-area: 1/1/1/5;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .pattern-artwork__page-title-container {
    grid-column: span 8;
  }
}
@media (min-width: 1280px) {
  .pattern-artwork__page-title-container {
    grid-column: span 12;
  }
}
.pattern-artwork__page-title {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  color: #ff0909;
  text-align: center;
  text-transform: lowercase;
}
@media (max-width: 767px) {
  .pattern-artwork__page-title {
    margin: 56px 0;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .pattern-artwork__page-title {
    margin: 56px 0;
  }
}
@media (min-width: 1280px) {
  .pattern-artwork__page-title {
    margin: 56px 0;
  }
}
.pattern-artwork__introduction-container {
  z-index: 1;
}
@media (max-width: 767px) {
  .pattern-artwork__introduction-container {
    display: contents;
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .pattern-artwork__introduction-container {
    grid-column: span 4;
  }
}
@media (min-width: 1280px) {
  .pattern-artwork__introduction-container {
    grid-column: span 6;
  }
}
.pattern-artwork__heading {
  position: static;
  text-transform: uppercase;
  z-index: 1;
}
@media (max-width: 767px) {
  .pattern-artwork__heading {
    font-family: "Buljirya";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    align-items: center;
    display: grid;
    grid-area: 2/1/2/5;
    margin: 0;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .pattern-artwork__heading {
    font-family: "Buljirya";
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 74px;
    margin: 64px 0 40px;
  }
}
@media (min-width: 1280px) {
  .pattern-artwork__heading {
    font-family: "Buljirya";
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 96px;
    margin: 96px 0 56px;
  }
}
@media (max-width: 767px) {
  .pattern-artwork__introduction-text {
    font-family: "Grenze";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    grid-area: 3/1/3/5;
    margin: 56px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .pattern-artwork__introduction-text {
    font-family: "Grenze";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
  }
}
@media (min-width: 1280px) {
  .pattern-artwork__introduction-text {
    font-family: "Grenze";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    width: 83.3333333333%;
  }
}
@media (max-width: 767px) {
  .pattern-artwork__content-container {
    display: contents;
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .pattern-artwork__content-container {
    grid-column: span 4;
  }
}
@media (min-width: 1280px) {
  .pattern-artwork__content-container {
    grid-column: span 6;
  }
}
@media (min-width: 768px) {
  .pattern-artwork__content-container {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    height: calc(100vh - 249px);
    overflow-y: scroll;
  }
  .pattern-artwork__content-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
}
.pattern-artwork__image {
  margin: 0;
}
@media (max-width: 767px) {
  .pattern-artwork__image {
    display: grid;
    grid-area: 2/2/2/4;
    justify-items: center;
  }
}
.pattern-artwork__image img {
  aspect-ratio: 3/4;
  max-height: 600px;
  max-width: 75%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}
.pattern-artwork__content-text-wrapper {
  margin: 0;
}
@media (max-width: 767px) {
  .pattern-artwork__content-text-wrapper {
    grid-area: 4/1/4/5;
    margin: 56px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .pattern-artwork__content-text-wrapper {
    margin: 64px 0 40px;
  }
}
@media (min-width: 1280px) {
  .pattern-artwork__content-text-wrapper {
    margin: 88px 0 48px;
  }
}
.pattern-artwork__content-text {
  margin: 0;
}
@media (max-width: 767px) {
  .pattern-artwork__content-text {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .pattern-artwork__content-text {
    font-family: "Grenze";
    font-size: 26px;
    font-style: normal;
    font-weight: 200;
    line-height: 34px;
  }
}
@media (min-width: 1280px) {
  .pattern-artwork__content-text {
    font-family: "Grenze";
    font-size: 28px;
    font-style: normal;
    font-weight: 200;
    line-height: 36px;
  }
}
.pattern-artwork__content-text a {
  color: #fff;
}

.custom-blocks__gallery {
  width: fit-content;
}
@media (max-width: 767px) {
  .custom-blocks__gallery {
    grid-column: span 4;
    padding-top: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__gallery {
    grid-column: span 8;
    padding-top: 72px;
    column-count: 2;
    column-gap: 48px;
    column-width: auto;
    -moz-column-count: 2;
    -moz-column-gap: 48px;
    -moz-column-width: auto;
    -webkit-column-count: 2;
    -webkit-column-gap: 48px;
    -webkit-column-width: auto;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__gallery {
    grid-column: span 12;
    padding-top: 96px;
    column-count: 3;
    column-gap: 64px;
    column-width: auto;
    -moz-column-count: 3;
    -moz-column-gap: 64px;
    -moz-column-width: auto;
    -webkit-column-count: 3;
    -webkit-column-gap: 64px;
    -webkit-column-width: auto;
  }
}
.custom-blocks__gallery-image {
  width: 100%;
}
@media (max-width: 767px) {
  .custom-blocks__gallery-image {
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__gallery-image {
    margin-bottom: 48px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__gallery-image {
    margin-bottom: 64px;
  }
}

.front-page__header {
  color: #ff0909;
  font-family: "Buljirya";
  margin: 96px 0 0;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .front-page__header {
    gap: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .front-page__header {
    gap: 18px;
  }
}
@media (min-width: 1280px) {
  .front-page__header {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .front-page__first-name {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .front-page__first-name {
    grid-column: span 8;
  }
}
@media (min-width: 1280px) {
  .front-page__first-name {
    grid-column: span 12;
  }
}
.front-page__last-name {
  display: grid;
  justify-items: end;
}
@media (max-width: 767px) {
  .front-page__last-name {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .front-page__last-name {
    grid-column: span 8;
  }
}
@media (min-width: 1280px) {
  .front-page__last-name {
    grid-column: span 12;
  }
}
@media (max-width: 767px) {
  .front-page__news {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .front-page__news {
    grid-column: span 4;
    margin-top: -96px;
  }
}
@media (min-width: 1280px) {
  .front-page__news {
    grid-column: span 6;
    margin-top: -140px;
  }
}
@media (max-width: 767px) {
  .front-page__outnow {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .front-page__outnow {
    grid-column: span 4;
  }
}
@media (min-width: 1280px) {
  .front-page__outnow {
    grid-column: span 6;
  }
}

.custom-blocks__list-header {
  font-family: "Buljirya";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.custom-blocks__list-element-description {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.custom-blocks__list-element-details {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}

.custom-blocks__calendar-year {
  display: grid;
  font-family: "Grenze";
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  margin: 0 0 16px;
}
@media (min-width: 360px) {
  .custom-blocks__calendar-year {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .custom-blocks__calendar-year {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__calendar-year {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .custom-blocks__calendar-year {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}
@media (max-width: 767px) {
  .custom-blocks__calendar-year {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__calendar-year {
    grid-column: span 8;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__calendar-year {
    grid-column: span 12;
  }
}
.custom-blocks__calendar-element {
  display: grid;
  margin: 0 0 20px;
}
@media (min-width: 360px) {
  .custom-blocks__calendar-element {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .custom-blocks__calendar-element {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__calendar-element {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .custom-blocks__calendar-element {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}
@media (max-width: 767px) {
  .custom-blocks__calendar-element {
    gap: 6px;
  }
}
.custom-blocks__calendar-date {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}
@media (max-width: 767px) {
  .custom-blocks__calendar-date {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__calendar-date {
    grid-column: span 2;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__calendar-date {
    grid-column: span 2;
  }
}
.custom-blocks__calendar-title {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
@media (max-width: 767px) {
  .custom-blocks__calendar-title {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__calendar-title {
    grid-column: span 4;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__calendar-title {
    grid-column: span 6;
  }
}
.custom-blocks__calendar-title-icon {
  margin-right: 10px;
  width: 26px;
}
.custom-blocks__calendar-details {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}
@media (max-width: 767px) {
  .custom-blocks__calendar-details {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__calendar-details {
    grid-column: span 2;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__calendar-details {
    grid-column: span 4;
  }
}

.custom-blocks__press-curatorial {
  display: grid;
}
@media (min-width: 360px) {
  .custom-blocks__press-curatorial {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .custom-blocks__press-curatorial {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__press-curatorial {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .custom-blocks__press-curatorial {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}
.custom-blocks__press-curatorial-header {
  color: #ff0909;
  margin: 56px 0 92px;
  text-align: center;
}
@media (max-width: 767px) {
  .custom-blocks__press-curatorial-header {
    grid-column: span 4;
    font-family: "Grenze";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__press-curatorial-header {
    grid-column: span 8;
    font-family: "Grenze";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__press-curatorial-header {
    grid-column: span 12;
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
  }
}
.custom-blocks__press-curatorial-element {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .custom-blocks__press-curatorial-element {
    grid-column: span 4;
    font-family: "Grenze";
    font-size: 20px;
    font-style: normal;
    font-weight: 200;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__press-curatorial-element {
    grid-column: span 8;
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: 32px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__press-curatorial-element {
    grid-column: span 12;
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: 32px;
  }
}
.custom-blocks__press-curatorial-element:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .custom-blocks__press-curatorial-reference {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__press-curatorial-reference {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: 32px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__press-curatorial-reference {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: 32px;
  }
}
.custom-blocks__press-curatorial-reference a {
  color: #fff;
  text-decoration-line: underline;
}
@media (max-width: 767px) {
  .custom-blocks__press-curatorial-reference a {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__press-curatorial-reference a {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__press-curatorial-reference a {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
  }
}

.custom-blocks__literature {
  display: grid;
}
@media (min-width: 360px) {
  .custom-blocks__literature {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .custom-blocks__literature {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__literature {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .custom-blocks__literature {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}
@media (max-width: 767px) {
  .custom-blocks__literature {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__literature {
    grid-column: span 8;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__literature {
    grid-column: span 12;
  }
}
.custom-blocks__literature-header {
  color: #ff0909;
  margin: 56px 0 92px;
  text-align: center;
}
@media (max-width: 767px) {
  .custom-blocks__literature-header {
    grid-column: span 4;
    font-family: "Grenze";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__literature-header {
    grid-column: span 8;
    font-family: "Grenze";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__literature-header {
    grid-column: span 12;
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .custom-blocks__literature-container {
    grid-column: span 4;
    font-family: "Grenze";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__literature-container {
    grid-column: span 8;
    font-family: "Grenze";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__literature-container {
    grid-column: span 12;
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
  }
}
.custom-blocks__literature-element {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .custom-blocks__literature-element--active .custom-blocks__literature-title,
  .custom-blocks__literature-element--active .custom-blocks__literature-reference {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .custom-blocks__literature-element:hover .custom-blocks__literature-title,
  .custom-blocks__literature-element:hover .custom-blocks__literature-reference {
    opacity: 1;
  }
}
.custom-blocks__literature-title {
  font-family: "Grenze";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
}
.custom-blocks__literature-reference {
  font-family: "Grenze";
  font-size: 40px;
  font-style: normal;
  font-weight: 200;
  line-height: 56px;
}
.custom-blocks__literature-divider {
  font-family: "Grenze";
  font-size: 40px;
  font-style: normal;
  font-weight: 200;
  line-height: 56px;
}
.custom-blocks__literature-divider:last-child {
  display: none;
}
.custom-blocks__literature-title, .custom-blocks__literature-reference, .custom-blocks__literature-divider {
  margin-right: 10px;
  mix-blend-mode: lighten;
  opacity: 0.2;
}

@media (max-width: 767px) {
  .about__page-title-container {
    grid-area: 1/1/1/5;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .about__page-title-container {
    grid-column: span 8;
  }
}
@media (min-width: 1280px) {
  .about__page-title-container {
    grid-column: span 12;
  }
}
.about__page-title {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  color: #ff0909;
  text-align: center;
  text-transform: lowercase;
}
@media (max-width: 767px) {
  .about__page-title {
    margin: 56px 0;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .about__page-title {
    margin: 56px 0;
  }
}
@media (min-width: 1280px) {
  .about__page-title {
    margin: 56px 0;
  }
}
@media (max-width: 767px) {
  .about__introduction-container {
    display: contents;
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .about__introduction-container {
    grid-column: span 4;
  }
}
@media (min-width: 1280px) {
  .about__introduction-container {
    grid-column: span 6;
  }
}
.about__heading {
  position: relative;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .about__heading {
    font-family: "Buljirya";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    align-items: center;
    display: grid;
    grid-area: 2/1/2/5;
    margin: 0;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .about__heading {
    font-family: "Buljirya";
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 80px;
    margin: 64px 0 40px;
    padding-top: 26px;
  }
}
@media (min-width: 1280px) {
  .about__heading {
    font-family: "Buljirya";
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 104px;
    margin: 96px 0 56px;
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .about__introduction-text {
    font-family: "Grenze";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    grid-area: 3/1/3/5;
    margin: 56px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .about__introduction-text {
    font-family: "Grenze";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
  }
}
@media (min-width: 1280px) {
  .about__introduction-text {
    font-family: "Grenze";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    width: 83.3333333333%;
  }
}
@media (max-width: 767px) {
  .about__content-container {
    display: contents;
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .about__content-container {
    grid-column: span 4;
  }
}
@media (min-width: 1280px) {
  .about__content-container {
    grid-column: span 6;
  }
}
.about__image {
  margin: 0;
}
@media (max-width: 767px) {
  .about__image {
    grid-area: 2/2/2/4;
  }
}
.about__image img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}
.about__content-text {
  margin: 0;
}
@media (max-width: 767px) {
  .about__content-text {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: 32px;
    grid-area: 4/1/4/5;
    margin: 56px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .about__content-text {
    font-family: "Grenze";
    font-size: 26px;
    font-style: normal;
    font-weight: 200;
    line-height: 34px;
    margin: 64px 0 0;
  }
}
@media (min-width: 1280px) {
  .about__content-text {
    font-family: "Grenze";
    font-size: 28px;
    font-style: normal;
    font-weight: 200;
    line-height: 36px;
    margin: 88px 0 0;
  }
}

@media (max-width: 767px) {
  .custom-blocks__list {
    grid-column: span 4;
  }
}
@media (max-width: 767px) {
  .custom-blocks__list-header {
    font-family: "Buljirya";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    margin: 56px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__list-header {
    font-family: "Buljirya";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    margin: 64px 0 0;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__list-header {
    font-family: "Buljirya";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    margin: 80px 0 0;
  }
}
.custom-blocks__list-education-year {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}
.custom-blocks__list-education-course {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.custom-blocks__list-education-university {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}
.custom-blocks__list-awards-year {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.custom-blocks__list-awards-details {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}

@keyframes colorImage {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.custom-blocks__video-container {
  display: grid;
}
@media (min-width: 360px) {
  .custom-blocks__video-container {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .custom-blocks__video-container {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__video-container {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .custom-blocks__video-container {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}
@media (max-width: 767px) {
  .custom-blocks__video-container {
    row-gap: 56px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__video-container {
    row-gap: 96px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__video-container {
    row-gap: 120px;
  }
}
@media (max-width: 767px) {
  .custom-blocks__video-item {
    align-items: end;
    grid-column: span 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__video-item {
    grid-column: span 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 18px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__video-item {
    grid-column: span 6;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 0;
    column-gap: 20px;
  }
}
.custom-blocks__video-title {
  padding-top: 6px;
  cursor: pointer;
  height: min-content;
  text-transform: uppercase;
  width: min-content;
  z-index: 2;
}
@media (max-width: 767px) {
  .custom-blocks__video-title {
    font-family: "Buljirya";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    grid-area: 1/1/1/span 4;
    position: relative;
    top: 25px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__video-title {
    font-family: "Buljirya";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    grid-area: 1/2/1/span 3;
    position: relative;
    top: 20px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__video-title {
    font-family: "Buljirya";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    grid-area: 1/2/1/span 5;
    position: relative;
    top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__video-title--active {
    transform: translateX(15px);
  }
}
@media (min-width: 1280px) {
  .custom-blocks__video-title--active {
    transform: translateX(60px);
  }
}
@media (min-width: 768px) {
  .custom-blocks__video-title--active {
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  }
}
.custom-blocks__video-image {
  aspect-ratio: 3/2;
  cursor: pointer;
  filter: grayscale(1);
  height: auto;
  object-fit: cover;
  opacity: 0.8;
  width: 100%;
}
@media (max-width: 767px) {
  .custom-blocks__video-image {
    grid-area: 1/1/1/span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__video-image {
    grid-area: 1/1/1/span 3;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__video-image {
    grid-area: 1/1/1/span 3;
  }
}
.custom-blocks__video-image--active {
  animation: colorImage 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  filter: grayscale(0);
  z-index: 1;
}
.custom-blocks__video-image--inactive {
  display: none;
}
.custom-blocks__video-iframe {
  aspect-ratio: 16/9;
  border: none;
  height: auto;
}
@media (max-width: 767px) {
  .custom-blocks__video-iframe {
    width: 90vw;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__video-iframe {
    width: 720px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__video-iframe {
    width: 1080px;
  }
}
.custom-blocks__modal-video {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  z-index: 1000;
}
.custom-blocks__modal-video-content {
  max-width: fit-content;
}
.custom-blocks__modal-video-button {
  background: none;
  border: none;
  position: absolute;
  right: 25px;
  top: 5px;
  height: 40px;
  width: 40px;
}
@media (max-width: 767px) {
  .custom-blocks__modal-video-button {
    display: none;
  }
}

.contact__container {
  display: grid;
}
@media (min-width: 360px) {
  .contact__container {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .contact__container {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .contact__container {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .contact__container {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}
.contact__info-text {
  margin: 0;
}
@media (max-width: 767px) {
  .contact__info-text {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: 32px;
    grid-column: span 4;
    margin: 0 0 56px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .contact__info-text {
    font-family: "Grenze";
    font-size: 26px;
    font-style: normal;
    font-weight: 200;
    line-height: 34px;
    grid-column: span 4;
  }
}
@media (min-width: 1280px) {
  .contact__info-text {
    font-family: "Grenze";
    font-size: 28px;
    font-style: normal;
    font-weight: 200;
    line-height: 36px;
    grid-column: span 5;
  }
}
.contact__mail {
  color: #ff0909;
}

.contact-form {
  color: #afafaf;
  display: grid;
}
@media (max-width: 767px) {
  .contact-form {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .contact-form {
    grid-column: span 4;
  }
}
@media (min-width: 1280px) {
  .contact-form {
    grid-area: 1/7/1/span 6;
  }
}
.contact-form__label {
  display: none;
}
.contact-form__input {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
  margin: 0 0 40px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.contact-form___textarea {
  height: 200px;
}
.contact-form__button-submit {
  font-family: "Buljirya";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
  width: fit-content;
}
.contact-form__button-submit--disabled {
  display: none;
}
.contact-form__response--success {
  font-family: "Buljirya";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.contact-form__response--error {
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
  color: #ff0909;
}

@keyframes rollIn {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
.no-scroll {
  overflow: hidden;
}

@keyframes scaleDown {
  0% {
    transform: translate(-50%, 0) scale(5);
  }
  100% {
    transform: translate(-50%, 0) scale(1);
  }
}
.artwork__selection {
  gap: 10px;
  margin: 24px 0;
  color: #afafaf;
  text-align: center;
  text-transform: lowercase;
  font-family: "Grenze";
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
}
@media (max-width: 767px) {
  .artwork__selection {
    display: flex;
    grid-column: span 4;
    justify-content: flex-start;
    overflow-x: auto;
    padding-right: 50vw;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .artwork__selection::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .artwork__selection {
    grid-column: span 8;
  }
}
@media (min-width: 1280px) {
  .artwork__selection {
    grid-column: span 12;
  }
}
.artwork__selection-type {
  white-space: nowrap;
}
.artwork__selection-type:hover {
  cursor: pointer;
}
.artwork__selection-type--active {
  color: #ff0909;
  font-weight: 500;
}
.artwork__item--inactive {
  display: none !important;
}

.custom-blocks__artwork-container {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  min-height: 500px;
  overflow-y: scroll;
}
.custom-blocks__artwork-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
@media (max-width: 767px) {
  .custom-blocks__artwork-container {
    height: calc(100vh - 185px);
  }
}
@media (min-width: 768px) {
  .custom-blocks__artwork-container {
    height: calc(100vh - 185px);
  }
}
.custom-blocks__artwork-item {
  display: grid;
}
@media (min-width: 360px) {
  .custom-blocks__artwork-item {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .custom-blocks__artwork-item {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__artwork-item {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .custom-blocks__artwork-item {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}
.custom-blocks__artwork-link {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .custom-blocks__artwork-link {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__artwork-link {
    grid-column: span 8;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__artwork-link {
    grid-column: span 12;
  }
}
.custom-blocks__artwork-title {
  opacity: 0.5;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .custom-blocks__artwork-title {
    margin: 12px 0;
    padding-top: 4px;
    font-family: "Buljirya";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .custom-blocks__artwork-title {
    margin: 18px 0;
    padding-top: 26px;
    font-family: "Buljirya";
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 80px;
  }
}
@media (min-width: 1280px) {
  .custom-blocks__artwork-title {
    margin: 24px 0;
    padding-top: 36px;
    font-family: "Buljirya";
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 104px;
  }
}
.custom-blocks__artwork-title--active {
  opacity: 1;
}
.custom-blocks__artwork-image {
  width: 100%;
  border: none;
  display: none;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  z-index: -1;
  aspect-ratio: 5/6;
  max-width: 360px;
  object-fit: cover;
  object-position: center;
  width: 75%;
}
.custom-blocks__artwork-image::before {
  content: "";
  display: block;
  padding-top: 83.3333333333%;
}
.custom-blocks__artwork-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .custom-blocks__artwork-image {
    top: 217px;
  }
}
@media (min-width: 768px) {
  .custom-blocks__artwork-image {
    top: 249px;
  }
}
.custom-blocks__artwork-image--active {
  display: grid;
  opacity: 0.8;
}
.custom-blocks__artwork-image--roll-in {
  animation: rollIn 1s forwards;
}

.imprint__container {
  display: grid;
}
@media (min-width: 360px) {
  .imprint__container {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 16px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .imprint__container {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 18px;
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .imprint__container {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    column-gap: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .imprint__container {
    padding: 0 calc((100vw - 1520px) / 2);
  }
}
@media (max-width: 767px) {
  .imprint__tmg-details {
    grid-column: span 4;
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .imprint__tmg-details {
    grid-column: 2/span 6;
  }
}
@media (min-width: 1280px) {
  .imprint__tmg-details {
    grid-column: span 6;
  }
}
@media (max-width: 767px) {
  .imprint__main-content {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .imprint__main-content {
    grid-column: 2/span 6;
  }
}
@media (min-width: 1280px) {
  .imprint__main-content {
    grid-column: span 6;
  }
}
.imprint__block {
  margin-bottom: 96px;
}
.imprint__block:last-child {
  margin-bottom: 0;
}
.imprint__heading {
  text-transform: uppercase;
  margin-bottom: 46px;
}
@media (max-width: 767px) {
  .imprint__heading {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .imprint__heading {
    font-family: "Grenze";
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
  }
}
@media (min-width: 1280px) {
  .imprint__heading {
    font-family: "Grenze";
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
  }
}
.imprint__subheading {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .imprint__subheading {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .imprint__subheading {
    font-family: "Grenze";
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
  }
}
@media (min-width: 1280px) {
  .imprint__subheading {
    font-family: "Grenze";
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
  }
}
.imprint__text {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .imprint__text {
    font-family: "Grenze";
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .imprint__text {
    font-family: "Grenze";
    font-size: 26px;
    font-style: normal;
    font-weight: 200;
    line-height: 34px;
  }
}
@media (min-width: 1280px) {
  .imprint__text {
    font-family: "Grenze";
    font-size: 28px;
    font-style: normal;
    font-weight: 200;
    line-height: 36px;
  }
}
.imprint__text a {
  color: #fff;
}

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