.banner {
    border: 1px solid #efefef;
}

.banner img {
    display: block;
    max-width: 450px;
    max-height: 250px;
}

.banner-txt {
    margin-left: 30px;
}

.banner-txt p {
    line-height: 1;
    margin-bottom: 5px;
    font-size: 20px;
}

@media (max-width: 576px) {
    .banner {
        margin-bottom: 10px;
    }

    .banner img {
        width: 100%;
    }
}

.banner-title {
    position: relative;
    color: #666666;
    font-weight: 700;
    margin: 5rem 2rem 2.5rem;
}


.banner-title::after {
    content: "";
    display: inline-block;
    background: var(--C4);
    position: absolute;
    bottom: 0;
    left: -2rem;
    width: 5px;
    height: 100%;
}