.support__main-title {
    text-align: center;
    margin-bottom: 14px;
}
.support__main-text {
    text-align: center;
    margin-bottom: 24px;
}
.support__row {
    display: flex;
    flex-wrap: wrap;
}
.support__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}
.support__item-icon {
    margin-bottom: 10px;
}

.support__item-icon img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.support__item-title {
    color: #FFFFFF;
    font-weight: 700;
    text-align: center;
}
.support__item-body {
    margin-top: 6px;
    text-align: center;
    max-width: 391px;
}

.support__item-body p{
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.support__item-body p:last-child{
    margin-bottom: 0px;
}

.support__item-body p a {
    text-align: center;
    color: #26BDFE;
    font-size: 16px;
    line-height: 1.25;
}

.support__item-btn {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    max-width: fit-content;
    font-size: 16px;
    color: #05060E;
    font-weight: 600;
    border-radius: 60px;
}
.support__after-text {
    text-align: center;
}

@media screen and (min-width: 992px){
    .support__row {
        gap: 20px;
    }

    .support__item {
        flex-basis: calc((100% - 50px) / 3);
    }

    .support__after-text {
        margin-top: 25px;
    }

    .support__item-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 991.98px){
    .support__row {
        gap: 10px;
        flex-direction: column;
    }

    .support__after-text {
        margin-top: 20px;
    }

    .support__item-title {
        font-size: 18px;
    }
}