/*
 This quick example demonstrates the potentially drastic effects of simply
 toggling a class on an element.
 */
.honey-element .honey_title{
	font-size: 13px;
	color: #444;
	font-weight: 800;
	line-height: 45px;
	margin:0;
}
.honey-element .honey_desc{
	color:#737373;
	font-size:12px;
	margin:0;
}
.honey-element .honey_image_wrap{position:relative}
.honey-element .honey_image_wrap:hover img {
	opacity: 0.8;
	box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
	transition: all .2s ease-in-out;
}

.honey-element .honey_button_wrap{
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	width: 100%;
	height: 100%;
}
.honey-element .honey_button_wrap a{
	position: relative;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: none;
	margin-top: -50%;
	font-size:12px;
	line-height:24px;
	color:#737373;
	background-color:#fff;
	padding:0 20px;
	border-radius:5px;
	border:1px solid #737373;
	transition: all .2s ease-in-out;
}
.honey-element .honey_button_wrap:hover a{
	display:block;
	display:inline-block;
}
