body > hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    display: block;
    overflow: hidden;
}

body > hero > content {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 32px;
}

body > hero > content > textwrap {
    position: relative;
    display: inline-block;
    padding: 42px;
    background: var(--accent-color);
    z-index: 1;
    margin: 0 0 52px 0;
}

body > hero > content > textwrap > p {
    position: relative;
    color: #ffffff;
    padding: 0;
    margin: 12px 0 0 0;
}

body > hero > content > textwrap > a {
    position: relative;
    color: #ffffff;
    padding: 0;
    margin: 24px 0 0 0;
}


body > hero > content > img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    pointer-events: none;
}