.box .ch-info {
	position:absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0;
	
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	
	-webkit-backface-visibility: hidden; /*for a smooth font */

}

.box .ch-info h3 {
	color: #fff;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 2px;
	font-size: 18px;
	margin: 0 15px;
	padding: 40px 0 0 0;
	height: 110px;
	font-family: 'Open Sans', Arial, sans-serif;
	text-shadow: 
		0 0 1px #fff, 
		0 1px 2px rgba(0,0,0,0.5);
}

.box .ch-info p {
	color: #fff;
	padding: 10px 5px;
	font-style: italic;
	margin: 0 30px;
	font-size: 11px;
	border-top: 1px solid rgba(255,255,255,0.5);
}

.box .ch-info p a {
	display: block;
	color: #fff;
	color: rgba(255,255,255,0.9);
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 9px;
	letter-spacing: 1px;
	padding-top: 4px;
	font-family: 'Open Sans', Arial, sans-serif;
}

.box .ch-info p a:hover {
	color: #DE5F60;
	color: rgba(222,95,96, 1);
}
/*
.ch-item:after {
    content: "";
	border: 10%;
    display: block;
    height: 100%;
    width: 100%;
    opacity: 0;
    background: rgba(0,0,0,0.5);
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.box:hover:after {
	opacity: 1;
}
.ch-item:hover {
	 box-shadow: 
		inset 0 0 0 110px rgba(40,40,40, 0.7),
		inset 0 0 0 0px rgba(255,255,255,0.8),
		0 1px 2px rgba(0,0,0,0.1);
}*/
.box:hover .ch-info h3,
.box:focus .ch-info h3 {
	opacity: 1;
}

.box:hover .ch-info p,
.box:focus .ch-info p {
	opacity: 1;
}

.box:hover .ch-info,
.box:focus .ch-info {
	opacity: 1;
	
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);	
}
/*=====================================
		BOX HOVER DIM TEST
  =====================================*/
  
  .box {
  cursor: default;
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.box img {
	display: block;
  position: absolute;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.box:hover img {
	-webkit-transform: scale(1.2);
  -moz-transition: scale(1.2);
  -o-transition: scale(1.2);
  -ms-transition: scale(1.2);
  transition: scale(1.2);

}

.box .overbox {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  width: 270px;
  height: 220px;
}

.box:hover .overbox { opacity: 0.8;}

.box .overtext {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  transform: translateY(40px);
  -webkit-transform: translateY(40px);
}

.box .title {
  font-size: 2.5em;
  text-transform: uppercase;
  opacity: 0;
  transition-delay: 0.1s;
  transition-duration: 0.2s;
}

.box:hover .title,
.box:focus .title {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.box .tagline {
  font-size: 0.8em;
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 0.2s;
}

.box:hover .tagline,
.box:focus .tagline {
  opacity: 1;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}