
.container {
    width: 90%;
}
.content-wrapper .container {
    width: 100%;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
}
.hero .hero-caption {
    left: 50%;
    width: 40%;
    max-width: 500px;
}
.hero .hero-caption {
    position: absolute;
    margin: 50px auto 0 auto;
    z-index: 10;
}
.hero .hero-image:before {
    content: " ";
    display: block;
    position: absolute;
    z-index: 1;
    background-image: url("/images/hero-mask.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    top: 20%;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero .hero-image:after {
    content: " ";
    display: block;
    position: absolute;
    z-index: 2;
    background-image: url("/images/hero-caption-background.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 50%;
    max-width: 700px;
    min-width: 500px;
    height: 100%;
    top: 10%;
    left: 45%;
}
