.business-plan-item {
    background-color: hsl(var(--white));
    padding: 45px 25px;
    border: 1px solid hsl(var(--base-two)/0.07);
    box-shadow: 0px 0px 20px rgba(0, 135, 255, 0.05);
    border-radius: 15px;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 1399px) {
    .business-plan-item {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 767px) {
    .business-plan-item {
        padding: 25px 15px;
    }
}

@media screen and (max-width: 575px) {
    .business-plan-item {
        padding: 20px 15px;
    }
}

.business-plan-item__header {
    text-align: center;
    margin-bottom: 35px;
}

@media screen and (max-width: 1199px) {
    .business-plan-item__header {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {
    .business-plan-item__header {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 575px) {
    .business-plan-item__header {
        margin-bottom: 20px;
    }
}

.business-plan-item__package {
    color: hsl(var(--black)/0.4);
    margin-bottom: 5px;
}

.business-plan-item__price {
    margin-bottom: 0;
}

.business-plan-item__body {
    margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
    .business-plan-item__body {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {
    .business-plan-item__body {
        margin-bottom: 25px;
    }
}

.business-plan-item__footer {
    margin-top: auto;
}

/* ============================= Display Flex Css Start ============================= */
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-align {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-center, .how-to-deal::before {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* ============================= Display Flex Css End ============================= */

/* ================================= Social Icon Css End =========================== */
/* ================================= Text List Css Start =========================== */
.text-list {
  /* Big Font Start */
  /* Big Font End */
  /* Underlined */
  /* Dotted */
  /* More Margin For Blog Single */
  /* Tags */
}

.text-list__item {
    margin-bottom: 10px;
    color: hsl(var(--body-color));
    display: flex;
}

.text-list__item:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
    .text-list__item {
        font-size: 0.9375rem;
    }
}

.text-list__item .icon {
    color: hsl(var(--base));
    margin-right: 15px;
}

@media screen and (max-width: 767px) {
    .text-list__item .icon {
        margin-right: 10px;
    }
}

@media screen and (max-width: 575px) {
    .text-list__item .icon {
        margin-right: 8px;
    }
}

.text-list.big-font .text-list__item .icon {
    color: hsl(var(--base));
}

.text-list.big-font .text-list__item .text {
    font-weight: 600;
}

.text-list.underlined .text-list__item {
    padding-bottom: 10px;
    border-bottom: 1px dashed hsl(var(--black)/0.2);
}

@media screen and (max-width: 767px) {
    .text-list.underlined .text-list__item {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 575px) {
    .text-list.underlined .text-list__item {
        font-size: 0.875rem;
    }
}

.text-list.underlined .text-list__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.text-list.underlined .text-list__item .icon {
    color: hsl(var(--body-color));
}

.text-list.dotted .text-list__item {
    display: block;
    position: relative;
    padding-left: 17px;
    margin-bottom: 18px;
}

.text-list.dotted .text-list__item:last-child {
    margin-bottom: 0;
}

.text-list.dotted .text-list__item::before {
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    background-color: hsl(var(--base));
    border-radius: 50%;
}

.text-list.more-margin .text-list__item {
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .text-list.more-margin .text-list__item {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .text-list.more-margin .text-list__item {
        margin-bottom: 12px;
        font-size: 0.9375rem;
    }
}

.text-list.more-margin .text-list__item:last-child {
    margin-bottom: 0;
}

.text-list.more-margin .text-list__item .icon {
    margin-right: 8px;
}

.text-list.style-tag {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.text-list.style-tag .text-list__item {
    margin-bottom: 0;
}

.text-list.style-tag .text-list__link {
    color: hsl(var(--body-color));
    background-color: hsl(var(--black)/0.08);
    padding: 6px 15px;
    font-weight: 600;
    border-radius: 3px;
}

.text-list.style-tag .text-list__link:hover {
    background-color: hsl(var(--black)/0.2);
    border-color: hsl(var(--black)/0.2);
}

.text-list.style-tag .text-list__link:active {
    position: relative;
    top: 2px;
}