/*****CIRCLE BOX STYLES*******/
.circle-box {
  width: 210px;
  height: 210px;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 114px;
  overflow: hidden;
  border: 8px solid white;
  margin: 13px 13px 29px;
  float: left;
  -webkit-box-shadow: 0px 3px 3px #cfcac2, 0px -1px 6px #cfcac2;
  -moz-box-shadow: 0px 3px 3px #cfcac2, 0px -1px 6px #cfcac2;
  box-shadow: 0px 3px 3px #cfcac2, 0px -1px 6px #cfcac2;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  text-align:left;
}
.circle-box:hover {
  background-position: top right;
  border-radius: 330px;
  -webkit-box-shadow: 0 2px 0 #cfcac2, 0 2px 10px #cfcac2, 0 0 0 10px rgba(217, 223, 223, 0.3);
  -moz-box-shadow: 0 2px 0 #cfcac2, 0 2px 10px #cfcac2, 0 0 0 10px rgba(217, 223, 223, 0.3);
  box-shadow: 0 2px 0 #cfcac2, 0 2px 10px #cfcac2, 0 0 0 10px rgba(217, 223, 223, 0.3);
}
.circle-box img {
  width: 212px;
  height: 212px;
  border-radius: 114px;
  position: absolute;
}
.circle-box .left {
  width: 214px;
  height: 214px;
  border-radius: 116px;
  position: absolute;
  background: url(../img/left.png) 0px 0px no-repeat transparent;
  background-position: 0 -238px;
  z-index: 1;
}
.circle-box .right {
  width: 214px;
  height: 214px;
  border-radius: 116px;
  position: absolute;
  background: url(../img/right.png) 0px 0px no-repeat transparent;
  background-position: 0 238px;
  z-index: 1;
}
.circle-box .info {
  width: 214px;
  position: absolute;
  z-index: 10;
  text-align: center;
  top: 20%;
  margin: -10px 0 0 0;
  display: none;
  color: #ffffff;
}
.circle-box .shadow {
  width: 212px;
  height: 212px;
  border-radius: 114px;
  position: absolute;
  display: none;
  background: url(../img/circle_shadow.png) 0px 0px no-repeat transparent;
  z-index: 4;
}
.ch-grid {
	list-style: none;
	text-align:center;
	padding-bottom:30px;
}
.ch-grid2 {
	margin-top:-57px;
}

.ch-grid li {
	width: 260px;
	height: 225px;
	display: inline-block;
	margin: 20px 0;
}


.info h3 {
	color: #353535;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 20px;
	margin: 0 15px;
	padding: 20px 0 0 0;
	height: 70px;
	font-family: 'Lato Light';
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.info p {
	font-family: 'Lato Light';
	font-size: 13px;
	margin-top:1px;
	color: #fff4cc;
}

.info p a {
	color:#353535;
	display: block;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 1px;
	padding-top: 10px;
	margin-bottom:-20px;
	font-family: 'Lato Light';
}

.info p a:hover {
	color: #fff222;
	color: rgba(255,242,34, 0.8);
}

.item:hover .info-front {
	-webkit-transform: translate3d(0,280px,0) rotate3d(1,0,0,-90deg);
	-moz-transform: translate3d(0,280px,0) rotate3d(1,0,0,-90deg);
	-o-transform: translate3d(0,280px,0) rotate3d(1,0,0,-90deg);
	-ms-transform: translate3d(0,280px,0) rotate3d(1,0,0,-90deg);
	transform: translate3d(0,280px,0) rotate3d(1,0,0,-90deg);
	opacity: 0;
}

.ch-item:hover .ch-info-back {
	-webkit-transform: rotate3d(1,0,0,0deg);
	-moz-transform: rotate3d(1,0,0,0deg);
	-o-transform: rotate3d(1,0,0,0deg);
	-ms-transform: rotate3d(1,0,0,0deg);
	transform: rotate3d(1,0,0,0deg);
	opacity: 1;
}