.degradation img {border: 25px;-webkit-transition: all 1s ease;-moz-transition: all 1s ease;-o-transition: all 1s ease;-ms-transition: all 1s ease;transition: all 1s ease;}
.degradation img:hover {-webkit-filter: blur(5px);}
.sliderimgradius {
   border: 2px;
   border-radius: 25px;
}
.matimg2 img {
   height: 200px;
}




.divfloatleft {
       float: left;
}

.backul1 {
   background-color: #76B533;
   color: white;
}
.backul2 {
   background-color: #E44A42;
   color: white;
}
.divcol1 {
    overflow: hidden;
}
.divcol2 {
    float: right;
  margin-left: 3px;
}
.receptimg {
    height: 200px;
    width: 200px;
    border-radius: 20px;
    margin: 10px 10px 10px 10px;
}
.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;  /* подробнее про line-height */
  text-align: center;  /* выравнять текст по середине по горизонтали */
  background: #E44A42;
  color: white;
}

 /* Вращение перца при наведении */
.rotatimg img {
 /*   border-radius: 50%; */
    position: absolute; /* Абсолютное позиционирование */
    top: 200px; /* Положение от нижнего края */
    right: 100px;
  -webkit-transition: -webkit-transform .8s ease-in-out;
          transition:         transform .8s ease-in-out;
}
.rotatimg img:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}