.acbw-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    isolation: isolate;
}

.acbw-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.acbw-banner__inner {
    min-height: inherit;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.acbw-banner__left,
.acbw-banner__right {
    position: relative;
    z-index: 1;
}

.acbw-banner__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.acbw-banner__line {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .18em;
}

.acbw-banner__accent {
    display: inline-block;
}

.acbw-banner__right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.acbw-banner__right-title {
    margin-bottom: 8px;
    line-height: 1;
}

.acbw-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    line-height: 1.2;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.acbw-banner__button:hover,
.acbw-banner__button:focus {
    text-decoration: none;
    transform: translateY(-1px);
}

.acbw-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.acbw-banner__icon svg {
    fill: currentColor;
}

@media (max-width: 767px) {
    .acbw-banner__inner {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .acbw-banner__left {
        flex-basis: auto !important;
        width: 100%;
        align-items: center;
    }

    .acbw-banner__line {
        justify-content: center;
    }

    .acbw-banner__right {
        width: 100%;
    }
}
