﻿
.circle-1 {
  width:200px;
  height:200px;
  border-radius: 50%;
  border:20px solid #FF3300;
  float:left;
}

.circle-1 img {
  width:170px;
  height:160px;
  border-radius: 50%;
  cursor:pointer;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
.circle-1:hover img {
 transform: scale(1.1);
-ms-transform: scale(1.1); 
-webkit-transform: scale(1.1);
  box-shadow: 2px 2px 2px #4b4b4b;
  
}


.circle-2 {
  width:200px;
  height:200px;
  border-radius: 50%;
  border:20px solid #baacc6;
  float:left;
}

.circle-2 img {
  width:170px;
  height:160px;
  border-radius: 50%;
  cursor:pointer;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
.circle-2:hover img {
 transform: scale(1.1);
-ms-transform: scale(1.1); 
-webkit-transform: scale(1.1);
  box-shadow: 2px 2px 2px #4b4b4b;
  
}


.circle-3 {
  width:200px;
  height:200px;
  border-radius: 50%;
  border:20px solid #73a5b9;
  float:left;
}

.circle-3 img {
  width:170px;
  height:160px;
  border-radius: 50%;
  cursor:pointer;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
.circle-3:hover img {
 transform: scale(1.1);
-ms-transform: scale(1.1); 
-webkit-transform: scale(1.1);
  box-shadow: 2px 2px 2px #4b4b4b;
  
}
