#hero-outer {
    background-image: url("/assets/templates/main/images/hero/hero.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#hero-outer > .width-limiter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#hero-outer .hero-left {
    width: 50%;
    text-align: center;
}
#hero-outer .hero-right {
    width: 50%;
    background-color: rgba(65, 65, 65, 0.6);
}
#hero-outer .hero-left ul {
    list-style-position: inside;
    padding-left: 0;
}

@media all and (max-width: 800px) {
    #hero-outer > .width-limiter {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #hero-outer .hero-left,
    #hero-outer .hero-right {
        width: 100%;
    }
    #hero-outer .hero-right {
        margin-top: 20px;
    }
}

@media all and (max-width: 570px) {
    #hero-outer {
        position: relative;
        background-image: none;
        background-color: #a1e2a8;
        padding-top: 200px;
    }
    #hero-outer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background-image: url("/assets/templates/main/images/hero/hero.jpg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }
}