.bannerLeoService {
    width: 100%;
    background-image: url("/zapchasti/static/banners/leo-service/assets/bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #D6E9FF;
    background-position: right 100%;
    border-radius: 24px;
    margin: 12px 0;
    padding: 16px 20px;
    box-sizing: border-box;
}

.bannerLeoService__title {
    font-size: 20px;
    font-weight: bold;
    line-height: 32px;
    margin: 8px 0;
}

.bannerLeoService__list {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.bannerLeoService__item {
    all: unset;
    position: relative;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.bannerLeoService__img {
    width: 100%;
    background: #fff;
    border-radius: 5px;
    padding: 10px 50px;
    box-sizing: border-box;
}

.bannerLeoService__item:after {
    content: '';
    position: absolute;
    top: -14px;
    right: -18px;
    width: 40px;
    height: 40px;
    background-image: url("/zapchasti/static/banners/leo-service/assets/img-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.bannerLeoService__text {
    font-size: 14px;
    line-height: 14px;
    color: #1A1C1F;
    width: 50%;
    margin: 16px 0 0 0;
    text-align: center;
}

@media screen and (max-width: 1100px) {
    .bannerLeoService {
        width: 90%;
        padding: 12px 14px;
        background-image: none;
    }

    .bannerLeoService__title {
        font-size: 16px;
        line-height: 24px;
    }

    .bannerLeoService__item {
        width: 33%;
    }

    .bannerLeoService__img {
        width: 50%;
        padding: 10px;
    }

    .bannerLeoService__text {
        width: 100%;
        font-size: 11px;
        line-height: 14px;
        margin: 8px 0 0 0;
    }

    .bannerLeoService__item:after {
        background-image: none;
    }
}