 .numbered-cards__item-title {
     margin-bottom: 60px;
 }

 .numbered-cards__item-text {
     font-weight: 300;
     font-style: Light;
     font-size: clamp(0.875rem, 0.75rem + 0.625vw, 1.5rem);
     line-height: 34px;
 }

 .block-circle-text__container {
     display: flex;
 }

 .numbered-cards__list {
     display: flex;
     flex-direction: column;
     gap: 20px;
     margin-top: clamp(5rem, 4.5375rem + 2.3125vw, 7.3125rem);
 }

 .numbered-cards__item {
     display: flex;
     align-items: stretch;
     gap: 16px;
     justify-content: space-between;
 }

 .numbered-cards__circle {
     width: auto;
     aspect-ratio: 1 / 1;
     border-radius: 50%;
     display: flex;
     max-width: 447px;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     box-shadow: 0 2px 6px rgba(11, 104, 240, 0.12);
     flex: 0 0 30%;
     animation: spinAndPulse 6s infinite ease-in-out;
     transform-origin: center center;
 }

 .numbered-cards__content {
     flex: 0 0 60%;
     max-width: 930px;
 }

 .numbered-cards__num {
     -webkit-text-stroke: 2px #ffffff;
     text-stroke: 2px #ffffff;
     color: transparent;
     font-weight: 800;
     font-size: 60px;
     line-height: 130%;

 }

 /* Анимация вращения и “дыхания” */
 @keyframes spinAndPulse {
     0% {
         transform: rotate(0deg) scale(1);
     }

     50% {
         transform: rotate(180deg) scale(1.05);
         /* немного увеличивается */
     }

     100% {
         transform: rotate(360deg) scale(1);
     }
 }

 @media screen and (max-width: 800px) {
     .numbered-cards__item {
         flex-direction: column;
     }

     .numbered-cards__content {
         flex: 100%;
         padding-bottom: 150px; 
     }

     .numbered-cards__circle {
         position: absolute;
         bottom: 0;
         left: 0;
         right: 0;
         margin: auto;
         z-index: -1;
         align-items: flex-end;
         width: calc(100% - 40px);
     }

     .numbered-cards__num {
         margin-bottom: 25px;
     }

 }
 @media (min-width: 1921px) {
.numbered-cards__circle {
    max-width: 100%;
}
.numbered-cards__num {
    -webkit-text-stroke: 0.125vw #ffffff;
    text-stroke: 0.125vw #ffffff;
    font-size: 3.75vw;
}
.numbered-cards__content {
    max-width: 100%;
}
.numbered-cards__item-text {
    font-size: 1.5vw !important;
}
.arrow-br {
    --size: 2.1875vw;
    --th: 0.1875vw;
}
.cards-with-numbers-arrows-text__number {
    font-size: 5.5vw;
}
.cards-with-numbers-arrows-text__text {

    font-size: 1vw!important;
    line-height: 110%;
    padding-left: 2.25vw;
}
.cards-with-numbers-arrows-text__card {
    flex: 0 0 calc(25% - 0.9375vw);
    border-radius: 1.25vw;
    padding: 1.5625vw 1.125vw;
}
.cards-with-animation__cards {
    gap: 1.875vw;
}
.reviews-slide__quote {
    font-size: 0.7vw;
}
.reviews .section-title.section-title_reviews {
    font-size: 2.5vw!important;
}
}