/*--------------------------------------------------------------
   Sticky Header
--------------------------------------------------------------*/

body .trawell-header-sticky {
	position: fixed;
	opacity: 0;
    padding: 0;
    z-index: -1;
    transform: translateY(-150px);
    top: 0;
    left: 0;
    width: 100%;
    transition: all .15s ease-in-out;
    will-change: transform;
    -webkit-backface-visibility: hidden;
}

.trawell-header-sticky .site-branding img{
    max-height: 34px;
    margin-top: 2px;
}

.trawell-header-sticky.active{
	opacity: 1;
	transform: translateY(0);
	z-index: 1001;
}