.fifty-hero {
    position: relative;
    overflow: hidden;
    height: 656px;
}

.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: 656px;   
    object-fit: cover;
}

.fifty-hero-content {
    width: 60%;
    padding-right: 60px;
}

.fifty-hero-description a {
    font-style: italic;
    font-weight: 600;
    line-height: var(--Lineheight-Body-1, 24px);
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 10%;
    text-underline-offset: auto;
    text-underline-position: from-font;
    color: var(--bs-black);
}

@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;
    }
}