/**
 * Easy Sidebar Featured Post Widget CSS
 */

.featured-post-container{
	  height: 395px;
		width: 100%;
    position: relative;
}
.featured-post-container img {
    display: block;
    height: 395px;
	  object-fit: cover;
		overflow:hidden;
    width:100%;
}

.widget.widget_easy_featured_sidebar_posts h3.widget-title {
  font-size:18px;
    padding: 30px 20px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    width: 200px;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(251,248,243,.65);
}
.overlay:hover {
    opacity:1 ;
}

@media only screen and (max-width: 960px){
  .featured-post-container {
    margin-bottom: 97px;
}
.widget.widget_easy_featured_sidebar_posts h3.widget-title {
    padding: 0;
    background-color: #fff;
    position: relative;
    top: 112%;
    bottom: 0;
    width: 300px;
    height: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}
.overlay {
    opacity: 1;
    background-color: transparent;
}
}
