body {
    margin: 0;
    padding: 0;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("../img/bgc.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*
.content {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
*/

.left,
.right {
    width: 50%;
    float: left;
    position: relative;
    height: 100%;
}

.content .left {
    text-align: right;
}

.left img {
    width: 320px;
}

.left-content {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
}

.right img {
    width: 374px;
}

.right-content {
    top: 50%;
    width: 374px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.ed {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    display: block;
    text-align: right;
    margin-top: 180px;
}

@media only screen and (max-width: 800px) {
    .wrapper {
        background-image: none;
    }

    .left,
    .right {
        width: 100%;
        display: block;
        height: auto;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        float: none;
    }

    .left {
        background-image: url("../img/bgc-mobile-top.jpg");
    }

    .right {
        background-image: url("../img/bgc-mobile-bottom.jpg");
    }

    .left-content {
        width: 100%;
        position: relative;
        top: 0;
        transform: none;
        right: 0;
        padding-top: 35px;
        padding-bottom: 35px;
        text-align: center;
    }

    .right-content {
        top: 0;
        width: 100%;
    }

    .left img {
        width: 250px;
    }

    .right img {
        width: 230px;
    }

    .right-content {
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 80px;
        padding-bottom: 80px;
        text-align: center;
        box-sizing: border-box;
    }

    .ed {
        margin-top: 50px;
    }
}