
/*  style 2 */

.hover-style-2{
	position: relative;
	margin-bottom: 30px;
}

.hover-style-2  .inner-image {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.hover-style-2 .inner-image.gray img{
	filter: grayscale(100%);
}
.hover-style-2 .inner-image img {
	position: relative;
	width: 100%;
	display: block;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.hover-style-2:hover .inner-image img {
	opacity: 0.90;
	transform: scale(1.05,1.05);
  }

  .hover-style-2  .inner-content {
	position: relative;
	margin-left: 15px;
	margin-right: 15px;
	padding: 30px 25px;
	margin-top: -80px;
	background-color: #fff;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.06);
	z-index: 1;
	border-radius: 10px;
	overflow: hidden;
}

.hover-style-2 .inner-content::before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	transform: scale(0.3,1);
	background-color: rgb(255, 74, 23);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: -1;
}


.hover-style-2:hover .inner-content::before {
	opacity: 1;
	transform: scale(1,1);
}
.hover-style-2 .inner-content h3{
	margin-bottom: 15px;
	font-size: 20px;
}
.hover-style-2 .inner-content .category{
	margin-bottom: 10px;
	transition: all .4s ease 0s;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	
}
.hover-style-2 .inner-content .btn-icon{
	color:rgb(255, 74, 23);
	font-weight: 600;
	font-size: 15px;
}
.hover-style-2 .inner-content .btn-icon i{
	margin-left: 10px;
}

.hover-style-2:hover .inner-content h3 a,
.hover-style-2:hover .inner-content p,
.hover-style-2:hover .inner-content .btn-icon {
	color: #fff;
}

.hover-style-2:hover .inner-image.gray img{
	filter: grayscale(0%);
}


