.headroom{

    -webkit-animation-name:fadeInDown;
    animation-name:fadeInDown;
    -webkit-animation-iteration-count:1;
    -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
    -o-animation-iteration-count:1;
    animation-iteration-count:1;
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    -ms-animation-duration:1s;
    -o-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-delay:0s;
    -moz-animation-delay:0s;
    -ms-animation-delay:0s;
    -o-animation-delay:0s;
    animation-delay:0s;
    -webkit-animation-timing-function:ease;
    -moz-animation-timing-function:ease;
    -ms-animation-timing-function:ease;
    -o-animation-timing-function:ease;
    animation-timing-function:ease;
    -webkit-animation-fill-mode:both;
    -moz-animation-fill-mode:both;
    -ms-animation-fill-mode:both;
    -o-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-backface-visibility:hidden;
    -moz-backface-visibility:hidden;
    -ms-backface-visibility:hidden;
    -o-backface-visibility:hidden;
    backface-visibility:hidden;
    -webkit-transition:all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition:all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition:all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-backface-visibility:hidden;
    -moz-backface-visibility:hidden;
    backface-visibility:hidden;
    position:fixed;
    top:0;
    z-index:1039;
    width: 100%;

}
.headroom.headroom-pinned {
    top: 0;
    padding-top: 0;
}

.headroom--not-top{
    background: #fff;
    margin-top: 0px;
}


header.headroom--not-top{
    height: 160px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
header.headroom--not-top .block-header{
    padding: 30px 0;
}
header.headroom--not-top .block-header .logo{
    width: 130px;
    height: 100px;
}
.headroom--not-top{
    background: #fff;
}
.headroom.headroom--unpinned {
    top: -160px;

}
@media only screen and (max-width: 500px) {
    header.headroom{
        width: 100vw;
    }
}