#container .image {
    padding-left: 200px;
}

#container .caption {
    text-align: center;
}
#container .caption h1 {
    margin:0;
    padding:0;
    color:#fff;
    font-size: 4em;
    text-shadow: 0 0 16px rgb(7, 31, 61);
}
#container .caption p {
    color:#fff;
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.4em;
    text-shadow: 0 0 8px rgb(7, 31, 61);
}
#container .arrow {
    position: absolute;
    z-index: 700;
    width: 50px;
    height: 50px;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
    overflow: hidden;
}
#container .arrow:hover {
    opacity:.6;
}
#container .arrow.left {
    left: 205px;
}
#container .arrow.right {
    right: 15px;
}
#container .arrow > svg {
    width: 100%;
    height: auto;
    margin-top: -50px;
}
#container .arrow > svg use {
    fill: #fff
}

@media (min-width: 801px) and (max-width: 1024px) {
    #container .arrow.left {
        left: 15px;
    }
}

@media(max-width: 800px) {
    #container .arrow {
        display: none;
    }
}