.section {
    padding: 70px 0;
    overflow: hidden;
    position: relative;
}

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

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

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

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

.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__col {
    width: 100%;
    padding: 0 15px;
    position: relative;
    /* overflow: hidden; */
}

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

/* Section background classes */
.section--black {
    background: #101028;
}

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

.section--primary h2,
.section--black h2,
.section--black, 
.section--primary {
    color: #fff;
}

.section--primary table,
.section--black table {
    color: #285B72
}

.section--primary > .container {
    position: relative;
}

.section--primary > .container:before,
.section--primary > .container:after {
    content: '';
    display: block;
    position: absolute;
    transform: rotate(45deg);
}
 
.section--primary > .container:before {
    width: 195px;
    height: 195px;
    top: 50px;
    left: -150px;
    border: 10px solid rgba(255, 255, 255, .1);
}
 
.section--primary > .container:after {
    width: 109px;
    height: 109px;
    top: 140px;
    right: -120px;
    border: 7px solid rgba(255, 255, 255, .1);
}

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


.section__col .wp-block-group__inner-container {
    width: 100%;
    height: 100%;
}

@media (min-width: 991.98px) {
    .section__row {
        grid-auto-rows: 1fr;
    }

    .section-holder-title {
        padding-bottom: 20px;
        max-width: 720px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .section__row{
        grid-template-columns: 100%;
    }

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

/* Medium devices (tablets, less than 992px) */
@media (max-width: 767px) {
    .section__row.section__row--4-8 {
        grid-template-columns: 100%;
    }
    .section {
        padding: 40px 0;
    }

    .section.section--white + .section.section--white { 
        padding-top: 0;
    }
    
    .section__row--reverse .section__col--first {
        grid-column-start: 1;
        grid-row-start: 1;
    }

    .section-holder-title p {
        font-size: 16px;
    }

    .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: 335px;
		padding-bottom: 10px;
	}

    .section--primary > .container:before {
        top: -50px;
        left: -60px;
    }
     
    .section--primary > .container:after {
        top: 140px;
        right: -70px;
    }
}