section.content {
    position: relative;
    width: 100%;
    height: 100%;
    height: clamp(600px, 80vw, 1000px);
    display: flex;
}

section.content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 0;
    height: 100%;
    width: 100%;
}

section.content .wrap {
    z-index: 1;
    position: relative;
    height: 100%;
}

.content-wrapper-1 {
    margin: auto;
}

.content-wrapper-2 {
    margin: auto;
}

.content-option-1 a.button, .content-option-2 a.button {
    background: var(--white);
    display: flex;
    color: var(--black);
    border: solid 6px var(--border-green);
}

section.content:before {
    background: var(--white);
    content: '';
    width: 1px;
    height: 80%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: 1;
}

@media (max-width: 800px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    section.content:before {
        width: 80%;
        height: 1px;
    }
}