/*==================   Tumbnail    ======================*/
.thumb {
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 3;
    border-radius: 0px;
    text-align: center;
    background: #ffffff;
    max-height: 310px;
    height: 310px;
    box-shadow: none;
    padding: 0px;
}

.thumb_overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -moz-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #ffffff;
  background: transparent;
  border-radius:5px;
}
.thumb_overlay:before {
  content: "\f0c1";
  font-family: FontAwesome;
  position: absolute;
  width: 100%;
  height: 70px;
  top:37%;
  right: 0;
  font-weight: 300;
  margin-top: -36px;
  margin-left: -36px;
  opacity: 0;
  text-align:center;
  font-size:35px;
    color:#b82019;
}

.thumb_overlay:after {
  content: "";
  font-family: FontAwesome;
  position: absolute;  
  width: 100%;
  height: 38px;
  top: 19%;
  right: 0;
  font-weight: 300;
  margin-top: -20px;
  margin-left: -20px;
  opacity: 0;
  text-align:center;
  font-size:35px;
  color:#b82019;
}

.item:hover .thumb .thumb_overlay {
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
}

.item:hover .thumb .thumb_overlay:before {
  opacity: 1;
}
.lt-ie9 .thumb:hover .thumb_overlay:before {
  display: block;
}
.item:hover .thumb i {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  color:#e2534b;
}
.thumb_overl1:hover .thumb_overlay:before {
  display: none;
}
.thumb_overl1:hover .thumb_overlay:after {
  opacity: 1;
}

.owl-theme .owl-nav [class*=owl-next] {
    background: #e2534b;
    box-shadow: none;
}
owl.theme.default.min.css:13
.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 20px;
    margin: 0px;
    padding: 8px 14px;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
    font-weight: 900;
}
