#news_banner
{
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

#news_banner .foreground
{
    z-index: 200;
    width: inherit;
    height: inherit;
    text-align: center;
    position: relative;
}

#news_banner .foreground img
{
    height: inherit;
    width: 100%;
    object-fit: contain;
}

#news_banner .background
{
    position: absolute;
    top: -60px;
    left: -60px;
    right: -60px;
    bottom: -60px;
    z-index: 100;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(60px) brightness(80%);
    -webkit-filter: blur(60px) brightness(80%);
    -moz-filter: blur(60px) brightness(80%);
}



@media(max-width: 500px)
{
    #news_banner
    {
        height: auto;
        position: static;
    }

    #news_banner .background
    {
        display: none;
    }
}
