.acca-roadmap-section {
    padding: 80px 0;
    background: #fff;
}

.acca-roadmap-section__title {
    margin: 0 0 16px;
    color: #7473c0;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.375;
    text-align: center;
    text-transform: uppercase;
}

.acca-roadmap-section__description {
    max-width: 1280px;
    margin: 0 auto 48px;
    color: #222222;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
}

.acca-roadmap-section__description p:last-child {
    margin-bottom: 0;
}

.acca-roadmap-section__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 252px));
    justify-content: center;
    column-gap: 24px;
    row-gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.acca-roadmap-section__steps::before {
    content: "";
    position: absolute;
    top: 121px;
    left: 0;
    right: 0;
    height: 1px;
    background: #eaebf5;
}

.acca-roadmap-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 178px;
    text-align: center;
}

.acca-roadmap-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid #7473c0;
    border-radius: 50%;
    background: #fff;
}

.acca-roadmap-step__icon img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.acca-roadmap-step__icon--empty::before {
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(116, 115, 192, 0.12);
}

.acca-roadmap-step__title {
    width: 100%;
    margin: 12px 0 12px;
    color: #f7313f;
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
}

.acca-roadmap-step__dot {
    width: 12px;
    height: 12px;
    margin: 0 0 12px;
    border-radius: 50%;
    background: #f7313f;
}

.acca-roadmap-step__description {
    width: 100%;
    color: #4e2a84;
    font-size: 14px;
    line-height: 1.35;
}

@media (max-width: 1279px) and (min-width: 850px) {
    .acca-roadmap-section__steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 849px) {
    .acca-roadmap-section {
        padding: 40px 0;
    }

    .acca-roadmap-section__container {
        padding: 0 16px;
    }

    .acca-roadmap-section__title {
        margin-bottom: 16px;
        font-size: 20px;
        line-height: 28px;
    }

    .acca-roadmap-section__description {
        max-width: 343px;
        margin-bottom: 24px;
    }

    .acca-roadmap-section__steps {
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 24px;
        max-width: 343px;
    }

    .acca-roadmap-section__steps::before {
        top: 32px;
        bottom: 40px;
        left: 21px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .acca-roadmap-step {
        display: grid;
        grid-template-columns: 12px 64px minmax(0, 203px);
        column-gap: 16px;
        align-items: start;
        min-height: 64px;
        text-align: left;
    }

    .acca-roadmap-step__icon {
        grid-column: 2;
        grid-row: 1 / span 3;
    }

    .acca-roadmap-step__title {
        grid-column: 3;
        margin: 0 0 8px;
        font-size: 16px;
        line-height: 1;
    }

    .acca-roadmap-step__dot {
        grid-column: 1;
        grid-row: 1 / span 3;
        margin: 26px 0 0;
    }

    .acca-roadmap-step__description {
        grid-column: 3;
        color: #222222;
    }
}
