.intro{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

h2 {
  font-weight: 500;
}

.intro * {
  /* transition: .2s all; */
}

.intro h2{
  text-transform: uppercase;
  font-family: 'Sequel Sans', Arial, Helvetica, sans-serif;
  font-size: var(--large);
  /* max-width: calc(((100vw - 17.6rem - 6rem) / 12) * 8) ; */
  text-align: center;
  line-height: 0.9;
  font-weight: 500;
}

.intro img{
  object-fit: contain;
  max-width: calc(((100vw - 17.6rem - 6rem) / 12) * 8) ;
  max-height: 60%;
  margin: 3rem 0;
}

h1{
  font-family: 'Sequel Sans', Arial, Helvetica, sans-serif;
  font-size: var(--large);
  text-transform: uppercase;
  position: sticky;
  top: 3rem;
}

.intro{
  padding: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro img{
  max-height: 60%;
  margin: 3rem 0;
}

.gap{
  height: calc(100vh - 3rem);
}

main{
  min-height: 100vh;
  width: 100vw;
  margin-left: -3rem;
  padding: 3rem;
  background: var(--offwhite);
}

.archive .block{
  width: 100%;
  height:1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 60%;
  overflow:hidden;
  position: relative;
  z-index: 1;
}

.block-image img{
  position: absolute;
  z-index: 2;
opacity: 0;
object-fit: cover;
object-position: 50% 50%;
filter: grayscale();
mix-blend-mode: multiply;
top: 50%;
transform: translateY(-50%);
}

.archive a:hover .block-image img {
opacity: 1;
}

.mentor-button {
  z-index:10000;
  background: var(--pink1);
  padding: 2rem;
  border-radius: 200px;
  position:fixed;
  bottom: 2rem;
  left: 2rem;
  transform: translateX(-100%);
  opacity: 0;
  transition: .4s all ease-out;
}

.mentor-button.show {
  transform: translateX(0);
  opacity: 1; 
}

.btn-arrow{
  content: '';
  display: inline-block;
  height: var(--small);
  width: var(--small);
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  background-image: url(/assets/graphics/fullarrow.svg);
  }