.uc-d-none {
    display: none;
}

img.uc-st-img {
    float: right;
    border-radius: 0px;
    width: 350px;
    margin: 50px 0 50px 50px;
}
img.uc-st-img.w-auto {
    width: auto;
    max-width: 100%;
}

img.uc-st-img.mt-0 {
    margin-top: 0;
}

@media screen and (max-width: 960px) {
    img.uc-st-img {
        float: right;
        width: 100%;
        margin: 0 0 25px 0;
    }
}

.uc-text-b {
    color: #777777;
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    font-weight: 400; 
    counter-reset: myCounter; /* Инициализация счетчика */
}

.uc-text-b p + * {
    margin-top: 20px;
}

.uc-text-b h2 {
    font-size: 42px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    margin: 40px 0 20px;
    color: #42515A;
}

.uc-text-b h3 {
    font-size: 28px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    margin: 30px 0 10px;
    color: #42515A;
}

.uc-text-b ol {
    counter-reset: myCounter; /* Сброс счетчика при начале нового блока */
    padding-left: 0 !important;
    margin-left: 0;
}

.uc-text-b ul {
    padding-left: 0 !important;
    margin-left: 0;
}

.uc-text-b ol li,
.uc-text-b ul li {
    list-style: none;
    padding-left: 35px; /* Или бОльшее значение, если маркеры шире */
    position: relative;
    margin-bottom: 20px; /* Указать отступы между элементами списка, если надо */
}

.uc-text-b ol li:before {
    counter-increment: myCounter;
    content: counter(myCounter);
    font-family: 'Inter', Arial, sans-serif;
    color: white;
    display: inline-block;
    text-align: center;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background-color: #0a91d1;
    line-height: 24px;
    position:absolute;
    top:0;
    left: 0; /* Смещаем маркеры влево от текста */
}

.uc-text-b ul li:before {
    content: "";
    position: absolute;
    top: 0px; 
    width: 26px; 
    height: 26px; 
    background-image: url('https://static.tildacdn.com/tild3935-6537-4636-b838-323765616363/free-icon-check-3472.svg'); 
    background-size: cover;
    left: 0; /* Смещаем маркеры влево от текста */
}

@media (max-width: 960px) {
    .uc-text-b .t-col {
        max-width: 375px;
        margin: 0 auto;
    }

    .uc-text-b h2 {
    font-size: 26px;
    }
    .uc-text-b h3 {
    font-size: 22px;
    }
}