#filters {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}
#filters li {
    display: inline-block;
    margin: 0 10px;
}
#filters li a {
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    padding: 5px 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}
#filters li a:hover, #filters li a.selected {
    color: #712137;
    border-bottom-color: #BD8E68;
}

.de-image-hover {
    position: relative;
    overflow: hidden;
    background: #000;
}
.de-image-hover img {
    transition: all 0.5s ease;
    opacity: 1;
}
.de-image-hover:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}
.de-image-hover .d-text {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 2;
    text-align: left;
}
.de-image-hover:hover .d-text {
    bottom: 0;
}
.de-image-hover .d-text h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.de-image-hover .d-text p {
    font-size: 13px;
    margin-bottom: 0;
    opacity: 0.8;
    line-height: 1.4;
}
.d-hover-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(113, 33, 55, 0.9) 0%, rgba(113, 33, 55, 0) 60%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}
.de-image-hover:hover .d-hover-1 {
    opacity: 1;
}
