body {
    margin: 0;
    font: normal 20px / 1.4 Arial;
    background: #25292f;
    color: #fff;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    border-bottom: 1px solid;
    padding-bottom: 2px;
    color: #faa433;
    white-space: nowrap;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.spacer {
    background: #ddd;
    opacity: 0.5;
    width: 80%;
    height: 1px;
    margin: 15px auto;
    box-shadow: 0px 3px 30px -1px #fff;
}

/* container */
.container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.left {
    flex: 1;
    background: #fff;
    vertical-align: middle;
    box-sizing: border-box;
}

.right {
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner {
    z-index: 1;
    position: relative;
    display: table;
    height: 100%;
    width: 100%;
    padding: 0 10%;
}

.inner-inner {
    display: table-cell;
    vertical-align: middle;
}

.right-before {
    position: absolute;

    display: none;
    background: #faa433;
    width: 100%;
    height: 70px;
    top: 0;
    left: -30%;
    transform: rotate(-45deg);
    box-shadow: 0px 0px 50px -5px rgba(0,0,0,0.5);
}

.right-after {
    position: absolute;

    display: none;
    background: #faa433;
    width: 100%;
    height: 70px;
    bottom: 0;
    left: -30%;
    transform: rotate(45deg);
    box-shadow: 0px 0px 50px -5px rgba(0,0,0,0.5);
}


@media only screen and (max-width: 760px) {
    .container {
        display: block;
    }
    .left {
        padding: 5%;
    }
    .right {
        padding: 5%;
    }
    .left .inner {
        padding: 0;
    }
    .right .inner {
        padding: 5%;
        display: block;
    }
    .right .inner-inner {
        display: block;
    }
}