.banner-large {
    padding-bottom: 7.5rem;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.banner-large .container > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1rem;
    width: 50%;
}
.banner-large-intro * {
    margin: 0;
}
.banner-large-intro {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
.banner-large-button {
    display: inline-flex;
    padding: 0.5rem 1rem;
    color: #000;
    background-color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
    margin-top: 1rem;
}
.banner-large-button:hover, .banner-large-button:focus {
    color: #fff;
    background-color: #000;
}
@media (max-width: 48em) {
    .banner-large .container > div {
        width: 100%;
    }
}