.lineBanners {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    .banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        transition: .2s linear;
        .benefits__picture {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            width: 134px;
            height: 134px;
            background-color: #e1e2e2;
            border-radius: 50%;
            border: 3px solid #ec008c;
            overflow: hidden;
            img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: contain;
                object-position: center;
            }
        }
        .benefits__title {
            font-size: 29px;
            line-height: 1.2;
            text-transform: none;
            color: #112A46;
        }
    }
}

@media screen and (hover: hover) {
    .lineBanners {
        .banner:hover {
            opacity: 0.7;
        }
    }
}