#collections{
    
}
#exhibitions > header{
    
}
#collections > header > h1{
    display: none;
}
#collections > header{
    -webkit-animation: colorchange 16s infinite;
    background-color:#F2F2F2;
    min-height: 40vh;
    animation: colorchange 16s infinite;
}
#collections > header{
    align-items: center;
    justify-content: center;
    display: grid;
}
#collectionList{
    grid-template-columns: 1fr;
    grid-gap: 0;
}
#collectionList > .collection{
    display: grid;
    position: relative;
    overflow: hidden;
}
#collectionList > .collection > header{
    background: rgba(255,255,255,.8);
    left: 0;
    padding: 1.6rem 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}
#collectionList > .collection > header > h1{
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 100%;
    margin: 0 auto .8rem auto;
    max-width: 96rem;
    padding: 0 1.6rem;
    text-transform: uppercase;
}
#collectionList > .collection > header > h2{
    font-size:1.2rem;
    font-weight: 300;
    line-height: 144%;
    text-transform: uppercase;
    margin: 0 auto;
    max-width: 96rem;
    padding: 0 1.6rem;
}
#collectionList > .collection > figure{
    display: block;
}
#collectionList > .collection > figure a{
    display: flex;
}
#collectionList > .collection > figure img{
    height: auto;
    max-height:48vh;
    display:block;
    line-height:0;
    object-fit: cover;
    transition: filter 0.3s ease-in;
    width: 100%;
}
#collectionList > .collection:hover > figure img{
    
}
