* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color: #456;
    color: #EEE;
}

h1 {
    position: absolute; top: 160px; right: 20px; 
    font-size: 14pt;
    font-weight: normal;
    color: #89A;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


section {
    min-height:500px;
    background-color: #222;
    margin: 8px;
}

section h2, section h2 + p {
    text-align: center;
    color: pink;
}

.content_frame {
    border: 4px solid yellow;
    min-height: 400px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    padding: 12px;
}

.content_frame > div {
    border: 4px solid skyblue;
    flex: 0 0 45%;
}

section:nth-child(odd) {
    background-color: transparent;
}

section:nth-child(odd) .text {
    border: 0px solid red;
    background-color: orange 
}


section:nth-child(odd) .hero {
    background-image: url(ocean.webp);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    border: 0;
    position: relative;
    right: -10%;
}

section:nth-child(even) {
    background-color: transparent;
}


section:nth-child(even) .text {
    border: 0px solid red;
    background-color: orange 
}


section:nth-child(even) .hero {
    background-image: url(ocean.webp);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    border: 0;
    position: relative;
    left: -10%;
    order: 2;
}

@media screen and (max-width: 750px) {

    .content_frame > div {
        flex: 0 0 96%;
        order: 1;
    }

    section:nth-child(odd) .hero {
        right: 0;
        margin-top: 20px;
    }

    section:nth-child(even) .hero {
        left: 0;
        margin-bottom: 20px;
    }
}
