
#nav, #nav.alt {
    background: #ffd4d9;
}

ul.icons li a:hover {
    background: #ffd4d9 !important;
}

img.rotate {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
 
img.rotate:hover {
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}



img.grayscale {
    -webkit-filter: grayscale(0);
	filter: grayscale(0);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

img.grayscale:hover {
    -webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}



img.opacity {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

img.opacity:hover {
	opacity: .5;
}



@media screen and (max-width: 736px) {
  .hiddenmobile { display: none !important; }
}