/*
 * Sorbet Featured Gallery Widget
*/
.featured-imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.featured-imgs > div {
  background-size: cover;
    background-position: left;
    background-color: #000;
    position: relative;
    height: 640px;
    background-repeat: no-repeat;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    background-attachment: fixed;
}

.featured-gallery-wrap {
    position: relative;
    z-index: 1;
    display: block;
}

.featured-content {
    position: absolute;
    bottom: 0;
    z-index: 2;
    color: #fff;
    padding: 60px;
    width: 50%;
}

.featured-content a {
    color: #fff;
}

.featured-imgs > div:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: #000;
    z-index: 1;
    opacity: .3;
}

.featured-content h6 {
    font-family: 'graphik';
    font-size: 20px;
    font-weight: 400;
    margin: 0;}

.featured-content h1 {
    font-family: 'graphik';
    font-size: 45px;
    font-weight: 500;}

.featured-gallery-wrap:hover .featured-content h1 {
    color: #FE7B57;
}