.textwithicon__main-title {
    margin-bottom: 16px;
    text-align: center;
}

.textwithicon__main-text {
    text-align: center;
}

.textwithicon__text p:last-child {
    margin-bottom: 0;
}

.textwithicon__row {
    display: flex;
    flex-wrap: wrap;
}

.textwithicon__item {
    background: #1F2836;
    border-radius: 20px;
    position: relative;
    flex-grow: 1;
}
.textwithicon__title {
    margin-bottom: 12px;
}

.textwithicon__icon {
    position: absolute;
    right: 24px;
    top: 14px;
}

.textwithicon__icon img{
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.textwithicon__pay-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.textwithicon__pay-icons img{
    max-width: 48px;
}

.textwithicon__text {
    max-width: 1090px;
}

.textwithicon__text ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}


.textwithicon__text ul li{
    list-style: none;
    display: flex;
    gap: 6px;
}

.textwithicon__text ul li::before{
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

@media screen and (min-width: 992px){
    .textwithicon__row {
        row-gap: 24px;
        column-gap: 20px;
        margin-top: 42px;
    }

    .textwithicon__row-columns .textwithicon__item {
        flex-basis: calc((100% - 20px) / 2);
    }

    .textwithicon__row-columns .textwithicon__text {
        max-width: 493px;
    }

    .textwithicon__row-columns .textwithicon__item-odd:last-child .textwithicon__text {
        max-width: 100%;
    }
}

@media screen and (max-width: 991.98px){

    .textwithicon__icon img{
        width: 50px;
        height: 50px;
    }

    .textwithicon__icon {
        right: 16px;
        top: 10px;
    }

    .textwithicon__row {
        gap: 20px;
        margin-top: 24px;
    }

    .textwithicon__pay-icons {
        gap: 8px;
    }

    .textwithicon__title {
        max-width: 238px;
    }
}