.going {
    background: linear-gradient(135deg, #004733 0%, #0b785f 100%);
    padding: 100px 0;
}

.going .container {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.going__head {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 28px;
    line-height: 119%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
    color: var(--neutral-white);
}

.going__body {
    display: grid;
    gap: 20px;
}

.going__item {
    display: flex;
    gap: 16px;
    position: relative;

    &:after {
        content: '';
        position: absolute;
        top: 60px;
        left: 25px;
        width: 1px;
        height: calc(100% - 60px);
        background: url("./../../img/svg/stroke.svg")no-repeat center top/cover;
    }
}

.going__number {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-300);
    border-radius: 100px;
    min-width: 52px;
    max-width: 52px;
    min-height: 52px;
    max-height: 52px;

    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 117%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
    color: var(--neutral-white);
}

.going__content {
    border: 1px solid var(--white-300);
    border-radius: 20px;
    padding: 16px;
    width: 100%;
    height: 100%;
}

.going__title {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: var(--neutral-white);
    text-align: center;

}

.going__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.02em;
    color: var(--neutral-white);
    text-align: center;
    opacity: .7;
    margin-top: 8px;
}

@media(min-width: 768px) {
    .going__head {
        font-size: 32px;
    }

    .going__body {
        grid-template-columns: repeat(2, 1fr);
        position: relative;
    }

    .going__item {
        flex-direction: column;
    }

    .going__item:nth-child(odd)::after {
        content: '';
        position: absolute;
        top: 24px;
        right: -12px;
        transform: translateX(50%);
        left: auto;
        width: 190px;
        height: 1px;

        background: url("./../../img/svg/stroke2.svg") repeat-y center / contain;
        pointer-events: none;
    }

    .going__item:nth-child(even):after {
        display: none;
    }

    .going__number {
        margin: 0 auto;
    }
}

@media(min-width: 1024px) {
    .going {
        padding: 150px 0;
    }

    .going__head {
        font-size: 38px;
    }

    .going__body {
        grid-template-columns: repeat(4, 1fr);
    }

    .going__item:nth-child(even):after,
    .going__item:after {
        content: '';
        position: absolute;
        top: 24px;
        right: -12px;
        transform: translateX(50%);
        left: auto;
        width: 190px;
        height: 1px;
        background: url("./../../img/svg/stroke2.svg") repeat-y center / contain;
        pointer-events: none;
    }

    .going__item:nth-child(even):after {
        display: block;
    }

    .going__item:last-child:after {
        display: none;
    }

    .going .container {
        gap: 64px;
    }
}

@media(min-width: 1240px) {
    .going__head {
        font-size: 42px;
    }

    .going__title {
        font-size: 28px;
    }
    .going__text {
        font-size: 20px;
        margin-top: 20px;
    }

}