.headroom {
    will-change: transform;
    transition: all 200ms linear;
    position: fixed !important;
}
.headroom--pinned {
    transform: translateY(0%);

    transition: all 200ms linear;
}
.headroom--unpinned {
    transform: translateY(-100%);
    transition: all 200ms linear;
}

.headroom--not-bottom.headroom--not-top.headroom--pinned{
    background-color: #2c2c2c !important;
}