.exhibition_index_page__title_cont {
  margin-top: 1rem;
  /*                                                     margins cancel
    50% of (100% - 6rem) of 100vh - 0.5em (selecta h1) + 1rem - 1rem
    = 50% of (100vh - 6rem) - 0.5em
    = 50vh - 3rem - 0.5em
    - 5rem of index margin
    = 50vh - 8rem - 0.5em
    To account for relative offsets of fonts in line:
      0.16em - 0.16h4em
      = 0.16em - 0.16 * 0.52 (0.77 on mobile) * 1em 
      = 0.0768em of deviation (0.0368 on mobile)
  */
  min-height: calc(50vh - 8rem - 0.5em + 0.0768em);
}

@media (max-width: 768px) {
  .exhibition_index_page__title_cont {
    min-height: calc(var(--1svh)*50 - 8rem - 0.5em + 0.0368em);
  }
}

.exhibition_index_page__title_cont h1 {
  margin: 0;
}


/*
 * Loader
 */

@keyframes exhibition_index_page_loader_spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.exhibition_index_page .exhibition_index_page__loader_cont {
  margin-top: 4rem;
  text-align: center;
}

@media (max-width: 768px) {
  .exhibition_index_page .exhibition_index_page__loader_cont {
    margin-top: 3rem;
  }
}

.exhibition_index_page .exhibition_index_page__loader_inner {
  width: 5rem;
  height: 5rem;
  margin: auto;
  background: url('./images/spinner.png') center/contain no-repeat;
  animation: exhibition_index_page_loader_spin 2000ms linear infinite;
}



/*
 * index
 */

.exhibition_index_page__index_cont {
  position: relative;
  margin-top: 5rem;
}

.exhibition_index_page__index {
  z-index: 0;
  background: #fff;
  margin-bottom: -3rem;
}

@media (max-width: 768px) {
  .exhibition_index_page__index {
    margin-bottom: -1.33rem;
  }
}
