@media screen and (max-width: 768px) {

 .mobile-show {
    display: block !important;
 }
  .mobile-hide {
  display:none!important;
    
  }
}

@media screen and (min-width: 769px) {
.mobile-hide {
    display: block !important;
  margin: -41px;
  padding:-10px;
  
 }
  .mobile-show {
  display: none !important; 
 }
.rotate img{
  transition: all .2s ease-in-out; 
  border-radius: 0px;
}

  .rotate img:hover {
  transform: rotate(-5deg);
    transition: all 0.3s ease-in-out 0s;

}