section {
    margin: 120px 5% !important;
    margin-bottom: 30px !important;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #003543;
}

.gospit-stages__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gospit-stages__item {
    background: #F7FBFC;
    border: 1px solid #ECF3F5;
    border-radius: 10px;
}

.gospit-stages__top {
    display: flex;
    padding: 24px;
    gap: 16px;
    background: #fff;
    justify-content: flex-start;
}

.gospit-stages__stage {
    font-size: 50px;
    font-weight: 800;
    color: #e8f1f3;
    margin-bottom: 0px !important;
}

.gospit-stages__title {
    font-size: 22px;
    font-weight: 500;
    color: #0196BB;
    width: 70%;
    margin: auto 0;
}

.gospit-stages__list {
    padding: 24px;
    list-style: none;
}

.gospit-stages__list-item {
    color: #577B84;
    margin-bottom: 8px;
    display: flex;
    font-size: 14px;
}

.gospit-stages__list-item:last-child {
    margin-bottom: 0;
}

.gospit-stages__list-item::before {
    content: "";
    background: #0196BB;
    min-width: 6px;
    width: 6px;
    height: 6px;
    border-radius: 100px;
    display: block;
    margin-top: 7px;
    margin-right: 11px;
    margin-left: 7px;
}

.gospit-stages__text {
    padding: 24px;
    font-size: 14px;
    color: #577B84;
}

.gospit-stages__text.no-marker::before {
    content: none;
    display: none;
}

@media screen and (max-width: 968px) {
    .gospit-stages__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 23px;
    }

    .gospit-stages__cards {
        grid-template-columns: 1fr;
    }

    .gospit-stages__stage {
        font-size: 46px;
    }

    .gospit-stages__title {
        font-size: 18px;
    }

    .gospit-stages__list-item {
        font-size: 14px;
    }

    .gospit-stages__list,
    .gospit-stages__top {
        padding: 16px;
    }
}

@media screen and (max-width: 768px) {
    section {
        margin: 80px 5% !important;
    }
}