.section {
    padding: 80px 0 80px;
    position: relative;
    z-index: 10;
}

.section.background-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
}

.section.background-image h1,
.section.background-image h2,
.section.background-image h3,
.section.background-image h5,
.section.background-image h4,
.section.background-image h5 {
    color: #fff;
}

.section.background-image .above-heading-title {
    color: var(--title-above-color-on-image);
}

.section.background-image  a {
    color: var(--section-image-link-color);
}

.section.background-image  a:hover {
    color: var(--section-image-link-color-hover);
}

.section.background-image > .container {
    position: relative;
    z-index: 9;
}

.section.background-image:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    background-color: var(--section-image-background-color);
}

.section.section--white + .section.section--white { 
    padding-top: 0;
}

.component + .component { 
   margin-top: 30px;
}

.section__head {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.section__head.section-holder-title h2 {
    margin-bottom: 20px;
}

.section-holder-title {
	max-width: 80%;
	margin: 0 auto;
	padding-bottom: 30px;
	text-align: center;
}

.section-holder-title .section-above-title {
    font-weight: 500;
    line-height: 1.5;
    color: var(--title-above-color);
    margin-bottom: 10px;
}

.section-holder-title p.description {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 500;
}

.section__body {
    margin: 0;
}

.section__body>*:last-child,
.section__body .section__row .section__col *:last-child {
    margin-bottom: 0;
}

.section__body>*:first-child,
.section__body .section__row .section__col *:first-child {
    margin-top: 0;
}

.section__row {
    display: grid;
    grid-template-columns: 50% 50%;
    margin: 0 -15px 0px;
    grid-auto-rows: auto;
}

.section__row.section__row--4-8 {
    grid-template-columns: 33.33333333% 66.66666667%;
}

.section__row.section__row--25-50-25 {
    grid-template-columns: 25% 50% 25%;
}

.section__row.section__row--3-9 {
    grid-template-columns: 25% 75%;
}

.image-position-left .section__col--first {
    order: 2;
}

.image-position-left .section__col--last {
    order: 1;
}

.section__col {
    width: 100%;
    padding: 0 15px;
    position: relative;
}

.section__col-inner>*:last-child {
    margin-bottom: 0;
}

.section--primary {
    background: var(--primary-section-background-color);
    color: var(--primary-section-color);
}

.section--primary h2,
.section--primary h3,
.section--primary h4,
.section--primary h5 {
    color: var(--primary-section-title-color);
}

.section--primary a {
    color: var(--primary-section-link-color);
}

.section--primary a:hover, 
.section--primary a:focus, 
.section--primary a:active {
    color: var(--primary-section-link-color-hover);
}

@media (max-width: 991.98px) {
    .section {
        padding: 60px 0;
    }

    .section__row.section__row--3-9,
    .section__row, 
    .section__row.section__row--25-50-25,
    .section__row.section__row--4-8 {
        grid-template-columns: 100%;
    }

    .section__col--last,
    .section__col--center {
        margin-top: 30px;
    }

    section.section--primary:after,
    section.section--secondary:after,
    section.section--white:after {
        height: 40px;
        bottom: -39px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 767px) {
    .section {
        padding: 40px 0;
    }

    .section__row--reverse .section__col--first {
        grid-column-start: 1;
        grid-row-start: 1;
    }

    .section__row {
        margin-right: -12px;
        margin-left: -12px;
    }

    .section__head {
        text-align: left;
    }

    .section__head.section-holder-title {
        max-width: initial;
    }

    .section-holder-title {
		max-width: 90%;
		padding-bottom: 10px;
	}
}