#banner {
    height: 260px;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
}
#banner > * {
    position: absolute;
    height: 100%;
    width: 100%;
}

#banner > img {
    object-fit: cover;
}

#banner > .d-flex {
    padding: 1.5rem 3rem;
    flex-direction: column;
    gap: 0.5rem;
}

#banner .banner-title {
    white-space: nowrap;
}

@media (min-width: 768px) {
    #banner {
        height: 190px;
    }

    #banner > img {
        object-position: right;
    }
}

@media (min-width: 992px) {
    #banner {
        height: 130px;
    }

    #banner > .d-flex {
        padding: 1.5rem 6rem;
    }
}