.section-cards {
    padding: 0 0 120px;
}
.cards--small {
    padding-bottom: 42px;
}
.cards-text__container {
    max-width: 1170px;
}
.section-cards h2.title, .section-cards h3.title {
    color: #FFF;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 114%;
}
.section-cards h2.title {
    font-size: 48px;
}
.section-cards h3.title {
    font-size: 36px;
}
.cards-content__text {
    margin: 32px auto 0;
    max-width: 822px;
    text-align: center;
}
.cards-text__container-full .section-cards .title {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.cards__items {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    margin-top: 42px;
    justify-content: center;
}
.cards__items.cards__items-short {
    display: grid;
    gap: 24px;
    margin-top: 42px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    justify-content: center;
}
.cards__items.cards__items-long {
    flex-wrap: wrap;
}
.cards__items-def .cards__item, .cards__items-color .cards__item {
    flex: 0 0 auto;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 32px;
    align-items: start;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
}
.cards__items-short .cards__item {
    flex: 1;
}
.cards__items-long .cards__item {
    flex-basis: 100%;
}
.cards__items-color .cards__item {
    background: rgba(66, 19, 143, 0.30);
}
.cards__item-name {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; 
    margin-bottom: 8px;
}
.cards__item-desc {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 126%;
    letter-spacing: 0.14px;
}
.cards__item svg {
    flex-shrink: 0;
}
.cards__item-info {
    flex-shrink: 1;
}
.cards__items-long .cards__item {
    flex-wrap: nowrap;
    gap: 24px
}
.cards__items-short .cards__item .cards__item-info {
    text-align: center;
}
.cards__items-short .cards__item svg {
    margin: 0 auto 12px;
}
.cards__item-desc ul {
    list-style: none;
    padding-left: 0;
}
.cards__item-desc ul li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}
.cards__item-desc ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: #27F5D1;
    border-radius: 50%;
}
.cards__item-desc ol {
    list-style: none;
    padding-left: 0;
}
.cards__item-desc ol li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}
.cards__item-desc ol li::before {
    content: counter(custom-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #27F5D1;
    font-weight: bold;
    font-size: 16px;
}
.cards__item-desc ul > br, .cards__item-desc ol > br {
    display: none;
}
.cards__item-desc ul:not(:first-child), .cards__item-desc ol:not(:first-child) {
    margin-top: 12px;
}
.cards__item-desc li:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 1300px) {
    .cards__items.cards__items-short {
        grid-template-columns: repeat(3, minmax(230px, 1fr));
    }
}
@media screen and (max-width: 1180px) {
    .cards__items.cards__items-short {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }
}
@media screen and (max-width: 1024px) {
    .section-cards {
        padding: 0 0 80px;
    }
}
@media screen and (max-width: 767px) {
    .cards__items-short .cards__item {
        flex: 0 0 100%
    }
}
@media screen and (max-width: 460px) {
    .section-cards {
        padding: 0 0 60px;
    }
    .cards--small {
        padding-bottom: 32px;
    }
    .cards__items-long .cards__item {
        flex-wrap: wrap;
        gap: 16px;
    }
    .cards__item-info {
        flex-basis: 100%;
        max-width: 100%;
    }

}