.header-unpin {
    position: fixed;
    transform: translate3d(0, -100%, 0);
    transition: all 0.3s ease-in-out;
}

.header-pin {
    position: fixed;
    transform: translate3d(0, 0%, 0);
    transition: all 0.6s ease-in-out;
}

