/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 12, 2020, 1:15:04 PM
    Author     : moh
*/

  .img-hover{
                      border-radius: 50%;
                       transition: 0.4s all linear;
                       opacity: 0.7;
                  }
                  .img-hover:hover{
                   transform: scale(1.5,1.5); /* Standard syntax */
                   opacity: 1;
                  
                   }
               