.section-bannerbreit {
    width: 100%;
    position: relative;
    padding: 80px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.bannerbreit-inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.bannerbreit-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bannerbreit-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bannerbreit-background-darker {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    opacity: 0.5;
}

.bannerbreit-header {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 25px;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
}

.section-bannerbreit p {
    color: #fff;
}

.section-bannerbreit .btn {
    display: inline-block;
    margin-top: 15px;
}

@media (max-width: 620px) {
    .section-bannerbreit {
        padding: 40px;
    }
}