.section__text_section {
    padding-left: var(--content-padding);
    padding-right: var(--content-padding);
}

.section__short-description {
    text-align: center;
}

.text-section__heading {
    text-align: center;
}

.text-section__wrapper {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

.text_section__wrapper--no-points .text-section__text-content {
    text-align: center;
    max-width: 850px;
	list-style-position: inside;
}

.text_section__wrapper--points .text-section__text-content {
    padding-bottom: 40px;
    max-width: 66%;
}

.text_section__wrapper--no-points .text-section__highlight-text {
    padding: 30px 0;
}

.text-section__highlight-text {
    font-weight: bold;
    margin-bottom: 25px;
}

.text-section__main-text {
    color: var(--pmg-grey);
    white-space: break-spaces;
}

.text-section__bulletpoints {
    width: 33%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
}

.text-section__icon {
    display: inline-block;
    margin-top: 4px;
    padding-right: 15px;
    color: var(--pmg-gold);
}

@media only screen and (max-width: 767px) {
    .text_section__wrapper--points {
        flex-flow: column;
        align-items: center;
        text-align: center;
    }

    .text-section__bulletpoints {
        width: 100%;
    }

}