.reusable-hero {
    position: relative;
    background-size: cover;
    background-position: center;
}

.reusable-hero .hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.4)
    );
    width: 100%;
    height: 100%;
}

.reusable-hero h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,.5);
    text-transform: uppercase;
    font-size: 3.5rem;
}

.reusable-hero .hero-subtitle {
    color: #fff;
    opacity: 0.9;
}
.reusable-hero>.uk-panel.uk-width-1-1>div img, .reusable-hero>.uk-panel.uk-width-1-1>div{
    height: 100%;
}

.reusable-hero>.uk-panel.uk-width-1-1:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 58, 102, 0.0) 0%, rgba(11, 58, 102, 0.0) 55%, rgba(11, 58, 102, 0.35) 75%, rgba(11, 58, 102, 0.75) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.reusable-hero .uk-panel.uk-width-1-1 {
    height: stretch;
}
@media (max-width: 767px) {
    .reusable-hero .hero-title{
        font-size: 20px;
        top: 55% !important;
    }
    .reusable-hero hr{
        top: 60% !important;
    }    
    .reusable-hero #hero-subtitle{
        font-size: 20px !important;
        margin-top: 0px;
    }
}