.banner {
    display: flex;
    align-items: flex-end;
    justify-content: start;
    position: relative;
}

.banner .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    filter: brightness(0.5);
    z-index: 0;
}

.banner h2 {
    color: #FF0000;
    font-weight: 400;
    line-height: 100%;
    z-index: 1;
}

.banner h2::after,
.banner h2::before {
    content: "/";
    color: #fff;
}

@media (max-width:761px) {
    .banner {
        display: none;
    }
}

@media (min-width:1480px) {
    .banner {
        height: 446px;
        padding: 60px;
    }
    .banner h2 {
        font-size: 5vw;
    }
}

@media (max-width:1479px) {
    .banner {
        padding: 40px;
        height: 300px;
    }
    .banner h2 {
        font-size: 52px;
    }
}