.hero-wrapper .hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    padding-left: 5%;
}

.hero .overlay {
    width: 100%;
    height: calc(100vh - 100px);
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    opacity: .15;
}

.hero-wrapper .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-wrapper .icon-keyline {
    position: absolute;
    top: 0;
    right: 0;
    max-height: 85%;
    transform: translate(20%, -4%);
}

.hero-wrapper h1, .hero-wrapper h2, .hero-wrapper .hero-logo {
    z-index: 9;
}

.hero-wrapper .hero-logo {
    width: 170px;
}

.hero-wrapper h1, .hero-wrapper h2 {
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
}

.hero-wrapper h1 {
    font-size: 78px;
    line-height: 82px;
    font-weight: 400;
    margin: 15px 0 5px;
}

.hero-wrapper h2 {
    font-size: 50px;
    line-height: 54px;
    font-weight: 300;
    margin: 0 0 15px;
}

.hero-wrapper .button {
    z-index: 9;
}

.scroll-downs {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;

    width :34px;
    height: 55px;
}
.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}
.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
}
@keyframes scroll {
    0% { opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0;}
}

@media (max-width: 1100px) {

    .hero-wrapper .hero {
        align-items: center;
        padding: 0;
    }

    .hero-wrapper h1 {
        font-size: 64px;
        line-height: 68px;
    }

    .hero-wrapper h2 {
        font-size: 42px;
        line-height: 46px;
    }

    .hero-wrapper .icon-keyline {
        display: none;
    }
}

@media (max-width: 680px) {
    .hero-wrapper h1 {
        font-size: 44px;
        line-height: 48px;
    }

    .hero-wrapper h2 {
        font-size: 30px;
        line-height: 34px;
    }
}