.text-tiles-column + .text-tiles-column {
    margin-top: 30px;
}

.text-tiles-item {
    background: #FFFFFF;
    border: 2px solid transparent;
    box-shadow: 0 5px 25px rgba(12, 35, 64, 0.10);
    border-radius: 35px;
    color: #5A5D69;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.text-tiles-item__top {
    flex: 1;
    padding: 40px 30px;
}

.text-tiles-item__icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: rgb(12, 35, 64);
    background: linear-gradient(129deg, rgba(12, 35, 64, 1) 0%, rgba(130, 64, 136, 1) 52%, rgba(173, 98, 99, 1) 80%, rgba(250, 158, 32, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-tiles-item__icon i {
    font-size: 33px;
    color: #fff;
}

.text-tiles-item__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-tiles-item__heading h3 {
    font-size: 24px;
    color: #0C2340;
    font-family: "Jost", sans-serif;
    margin: 0;
    padding: 0;
}

.text-tiles-item__heading h3::after {
    display: none;
}

.text-tiles-item__subheading {
    font-size: 20px;
    padding-top: 15px;
}

.text-tiles-item__content {
    border-top: 1px solid #DFE2EF;
    margin-top: 15px;
    padding-top: 15px;
}

.text-tiles-item__content-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.text-tiles-item__content-item + .text-tiles-item__content-item {
    margin-top: 15px;
}

.text-tiles-item__price {
    color: #000;
    font-weight: 500;
}

.text-tiles-item__text-content {
    flex-grow: 1;
    width: 100%;
}

.text-tiles-item__text-content :where(p) {
    color: #9AA0AD;
    font-size: 16px;
    font-style: italic;
}

.text-tiles-item__bottom {
    background: linear-gradient(135deg,#0c2340 0%,#824088 100%);
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    padding: 20px 30px;
    width: 100%;
}

@media (min-width: 1200px) {
    .text-tiles-item__bottom {
        min-height: 325px;
    }
}

.text-tiles-item__features :where(h2,h3,h4,h5,h6,p, ul li, ol li) {
    color: #fff;
}

.text-tiles-item__features ul  {
    padding-left: 25px;
}

.text-tiles-item__features ul li {
    padding-left: 25px;
}

.text-tiles-item__features ul li:before {
    background: none;
    content: "\e91f";
    font-family: "alcor" !important;
    width: auto;
    height: auto;
    top: 0;
}

@media ( min-width: 768px ) {
    .text-tiles--center {
        justify-content: center;
    }

    .text-tiles-column + .text-tiles-column {
        margin-top: 0;
    }

    .text-tiles-column:nth-child(n+3) {
        margin-top: 35px;
    }
} 

@media ( min-width: 1200px ) {
    .text-tiles-column:nth-child(n+3) {
        margin-top: 0;
    }
}