.uc-d-none {
   display: none;
}
img.uc-st-img {
   float: right;
   border-radius: 10px;
   width: 400px;
   height: 260px;
   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: #424552;
   font-size: 16px;
   font-family: 'Rubik', 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: 'Rubik', Arial, sans-serif;
   font-weight: 700;
   line-height: 1.4;
   margin: 40px 0 20px;
   color: #0C163B;
}
.uc-text-b h3 {
   font-size: 24px;
   font-family: 'Rubik', Arial, sans-serif;
   font-weight: 700;
   margin: 30px 0 10px;
   color: #0C163B;
}
.uc-text-b ol,
.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 {counter-reset: myCounter; /* Сброс счетчика при начале нового блока */
}
.uc-text-b ol > li {
   counter-increment: myCounter;
}
.uc-text-b ol > li:before {
   content: counter(myCounter);
   font-family: 'Rubik', Arial, sans-serif;
   color: white;
   display: inline-block;
   text-align: center;
   width: 24px;
   height: 24px;
   border-radius: 4px;
   background-color: #194FB9;
   line-height: 24px;
   position: absolute;
   top: 0;
   left: 0; /* Смещаем маркеры влево от текста */
}
.uc-text-b ul > li:before {
   content: "";
   position: absolute;
   top: 0;
   width: 26px;
   height: 26px;
   background-image: url('https://static.tildacdn.com/tild6136-3831-4337-a332-326138383863/free-icon-verify-813.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;
   }
}