@media only screen and (min-width: 993px) {


.headroom {
    will-change: transform;
     transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
	-webkit-transition: all 0.4s linear;
	
}

.headroom--pinned, .headroom--bottom  {
    transform: translateY(0%);
	box-shadow:var(--shadow);
	
 
}
.headroom--unpinned {
    transform: translateY(-100%)!important;
     
	
}


.headroom--top {
	
	
	box-shadow:none;
}

.headroom--bottom {
	transform: translateY(0%)!important;
	
	box-shadow:none;
}


.headroom--not-top {
	
	background-color:white;
}




}


@media only screen and (max-width: 992px) {
	
	.headroom {
		background-color:white;
		/*height:75px!important;*/
		box-shadow:var(--shadow);
	}
	
	.logo__img {
		max-height:32px;
		width:auto;
		
	}
	

}