 =========================
   WootRise Custom Styles
   ========================= 

 Сброс отступов 
 {
    box-sizing border-box;
    margin 0;
    padding 0;
}

 Баннер WootRise сверху сайта 
.wootrise-hero {
    width 100%;
    min-height 420px;

    background-image url(wootrise_site_banner.jpg);
    background-repeat no-repeat;
    background-position center center;
    background-size contain;

    display flex;
    align-items center;
    justify-content center;
}

 Адаптация под мобильные 
@media (max-width 768px) {
    .wootrise-hero {
        min-height 260px;
        background-size cover;
    }
}

 Если нужно немного отступа под баннером 
.wootrise-hero +  {
    margin-top 30px;
}