.about-fund {
    margin-bottom: 6.4rem;
}
.about-fund__heading {
    margin-bottom: 3.2rem;
}
/*.about-fund__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [12];
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}*/
.about-fund__item {
    /*-ms-grid-column-span: 3;
    grid-column: 3 span;*/
    margin: 0 0 30px 0;
}
/*.about-fund__item:nth-child(3),
.about-fund__item:nth-child(6) {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
}*/
.about-fund__item p {
    font-weight: 500;
}
.about-fund__item a {
	color: var(--color-green);
}
.about-fund__item a:hover {
	text-decoration: underline;
}
.about-fund__item-heading {
    display: block;
    color: var(--color-grey3);
    /*margin-bottom: 12px;*/
    margin-bottom: 6px;
    font-size: 1.4rem;
}
@media screen and (max-width: 991px) {
    .about-fund__item {
        -ms-grid-column-span: 6 !important;
        grid-column: 6 span !important;
    }
    .about-fund__item:nth-child(1) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .about-fund__item:nth-child(2) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .about-fund__item:nth-child(3) {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .about-fund__item:nth-child(4) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .about-fund__item:nth-child(5) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .about-fund__item:nth-child(6) {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
}
@media screen and (max-width: 767px) {
    .about-fund__list {
        gap: 24px 0;
    }
    .about-fund__item p {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }
    .about-fund__item {
        -ms-grid-column-span: 12 !important;
        grid-column: 12 span !important;
    }
    .about-fund__item-heading {
        font-size: 1.4rem;
        line-height: 2.4rem;
        margin-bottom: 1rem;
    }
}
