.text-block__title {
    margin-bottom: 1.6rem;
}
.text-block__hedaing-text {
    max-width: 66rem;
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 6.4rem;
}
.text-block__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [12];
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 9.6rem;
}
.text-block__item {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
}
.text-block__item-heading {
    display: block;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    font-family: var(--second-ff);
    margin-bottom: 3.2rem;
    color: var(--color-green);
}
.text-block__item-text {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.5rem;
    max-width: 35.1rem;
}
.text-block__item-text a{
	color: var(--color-green);
}
@media screen and (max-width: 991px) {
    .text-block__hedaing-text {
        margin-bottom: 4.8rem;
        max-width: 48.5rem;
    }
    .text-block__list {
        row-gap: 5.6rem;
        -webkit-column-gap: 16px;
        -moz-column-gap: 16px;
        column-gap: 16px;
    }
    .text-block__item {
        -ms-grid-column-span: 6;
        grid-column: 6 span;
    }
    .text-block__item-text {
        font-size: 1.6rem;
        line-height: 2.1rem;
    }
}
@media screen and (max-width: 767px) {
    .text-block__title {
        font-size: 1.6rem;
        line-height: 2.4rem;
        margin-bottom: 1.2rem;
    }
    .text-block__hedaing-text {
        font-size: 1.4rem;
        line-height: 2.4rem;
        margin-bottom: 2.4rem;
    }
    .text-block__list {
        -ms-grid-columns: (1fr) [4];
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .text-block__item {
        -ms-grid-column-span: 4;
        grid-column: 4 span;
    }
    .text-block__item-heading {
        font-size: 3.2rem;
        line-height: 4rem;
        margin-bottom: 1.6rem;
    }
    .text-block__item-text {
        font-size: 1.4rem;
        line-height: 2.3rem;
    }
}
