/* HERO SECTION */
.hero-banner {
    height: 100vh;
    min-height: 42em;
    width: 100%;
    min-width: 22em;
    position: relative;
    overflow: hidden;
    display: flex;
}

.hero-image {
    background-image: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwzNjUyOXwwfDF8c2VhcmNofDF8fGZpcnN0JTIwY29sb3J8ZW58MHx8fHwxNjY0NTY5NTY0&ixlib=rb-1.2.1&q=80&w=1080');
    background-size: cover;
    background-position: center;
    height: 100%;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
    overflow: hidden;
    transition: all 0.5s;
}

.hero-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    max-width: 22em;
    padding: 4em;
    transform: translate(75%, 0);
    border-radius: 0.5em;
    background-color: rgba(255, 255, 255, 0.95);
}

.hero-content > :last-child {
    margin-bottom: 0;
}

.hero-slideshow-control {
    position: absolute;
    display:flex;
    justify-content: center;
    top: calc(100% - 4.5em);
    left: calc(50% - 0em);
    min-width: 8em;
    transform: translate(-50%, -50%);
    font-weight: 900;
    z-index: 2;
    filter: drop-shadow(0 0 0.5em rgba(0, 0, 0, .5));
    transition: all 0.25s;
}
.hero-slideshow-button {
    cursor: pointer;
    color: #222;
    background-color: #ffffff99;
}
.hero-slideshow-button:hover {
    background-color: #f0f0f0;
}
.hero-slideshow-prev {
    border-radius: 2em 0 0 2em;
}
.hero-slideshow-next {
    border-radius: 0 2em 2em 0;
}
.hero-button-divider {
    width: 0.25em;
    height: 2.2em;
    background-color: #ffffff99;
    text-align: center;
    line-height: 2.2em;
}

/* RESPONSIVE HERO */
@media screen and (max-width: 76em) {
    .hero-content {
        margin: 2em;
        transform: translate(0, 0);
    }
    .hero-slideshow-control {
        left: calc(100% - 6em);
        width: 6em;
    }
}

@media screen and (max-width: 46em) {
    .hero-content {
        padding: 2em;
        max-width:32em;
        text-align: center;
    }
    .hero-content p {
        margin: 1.5em 0em;
    }
        .hero-slideshow-control {
        display: none;
    }
}