.white-banner {
    margin-top: 50px;
}

.white-banner__wrapper {
    border: 1px solid #BDBDBD;
    position: relative;
    background: #fbfbfb;
}

.white-banner__top-strip {
    background: #ffc91a;
    width: 100%;
    height: 24px;
}

.white-banner__decor {
    position: absolute;
}

.white-banner__decor-left-top {
    top: -1.5px;
    left: -1.5px;
}

.white-banner__decor-left-bottom {
    left: -1.5px;
    bottom: -1.5px;
}

.white-banner__decor-right-top {
    right: -1.5px;
    top: -1.5px;
}

.white-banner__decor-right-bottom {
    right: -1.5px;
    bottom: -1.5px;
}

.white-banner__inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    padding: 43px 41px 48px 48px;
}

.white-banner__left-side {
    flex-basis: 603px;
}

.white-banner__text {
    flex-basis: 617px;
    font-size: 20px;
    color: #7c7c7c;
}

.white-banner__heading {
    font-size: 32px;
}

.white-banner__icons {
    margin-bottom: 16px;
    gap: 12px;
    display: flex;
    flex-wrap: wrap;
}

.white-banner__icon-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.white-banner__icon-wrapper:not(:last-child)::after {
    content: '';
    display: block;
    width: 37px;
    height: 100%;
    background: url('/wp-content/themes/vesta/media/vectors/white-banner-arrow.svg') center / contain no-repeat;
}

.white-banner__icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

@media screen and (max-width: 1023.98px) {
.white-banner__inner-wrapper {
    flex-direction: column;
    gap: 27px;
    padding: 39px 46px 64px 53px;
    align-items: flex-start;
}

    .white-banner__left-side,
    .white-banner__text {
        flex-basis: fit-content;
    }

    .white-banner__text {
        font-size: 16px;
        color: #141414;
    }

    .white-banner__icons {
        margin-bottom: 31px;
    }

    .white-banner__heading {
        font-size: 20px;
    }
}

@media screen and (max-width: 599.98px) {
.white-banner__inner-wrapper {
    padding: 38px 10px 37px 17px;
}

    .white-banner__icons {
        margin-bottom: 35px;
    }

    .white-banner__text {
        padding-right: 8px;
    }

}