.fifty-hero {
    position: relative;
    overflow: hidden;
}

.fifty-hero-inner {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}

.fifty-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40vw;
    overflow: hidden;
    z-index: 1;
}

.fifty-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fifty-hero-content {
    width: 60%;
    padding-right: 60px;
}

@media (max-width: 992px) {
    .fifty-hero-image {
        position: relative;
        width: 100vw;
    }

    .fifty-hero-image img {
        max-height: 320px;
    }

    .fifty-hero-content {
        width: 100%;
        padding-right: 0;
    }

    .fifty-hero-inner {
        padding-top: 24px;
        padding-bottom: 32px;
    }
}