﻿.beauty-rotate {
  width: 300px;
  height: 297px;
  border: 1px #bd6c46; /* Рамка */
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
          transition: all 5.5s ease;
} 
.beauty-rotate:hover {
  border-radius: 33%;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
     

