﻿@font-face { 
	font-family: "BodyFont";
	src: url('fonts/fontmedium.ttf'), url('fonts/fontmedium.ttf');
}

@media screen and (min-width: 0px) and (max-width: 640px) {
  .NavMobile{ display: true; }  /* show it on smaller screen */
}
@media screen and (min-width: 641px) and (max-width: 6000px) {
  .NavMobile{ display: none; }   /* hide it larger screens */
}

@media screen and (min-width: 0px) and (max-width: 640px) {
  .NavMain{ display: none; }  /* show it on larger screen */
}
@media screen and (min-width: 641px) and (max-width: 6000px) {
  .NavMain{ display: true; }   /* hide it smaller screens */
}



.NavBackground {

background-color: rgba(0,0,0, 0.55);
-webkit-backdrop-filter: blur(4px) !important;
backdrop-filter: blur(4px) !important;


}

.fade {
   opacity: 1;
   transition: opacity .2s ease-in-out;
   -moz-transition: opacity .2s ease-in-out;
   -webkit-transition: opacity .2s ease-in-out;
   }

.fade:hover {
   opacity: 0.5;
}

.MenuSpacer {

height: 18px;
width: 1%;

}