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

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

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

.wp-block-columns + .component { 
   margin-top: 40px;
}

.section-holder-title h2 span {
    position: relative;
    padding-left: 70px; 
    display: inline-block;
}

.section-holder-title h2 span:before {
    content: '';
    display: block;
    width: 55px;
    height: 6px;
    background: var(--title-before-color);
    position: absolute;
    left: 0;
    top: 15px;
}

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

.style-one-row .section-holder-title {
    display: flex;
    gap: 100px;
    margin-bottom: 30px;
}

.style-one-row .section-holder-title h2 {
    min-width: 50%;
}

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

.style-two-rows .section-holder-title h2 {
    margin-bottom: 20px;
}

.style-two-rows .section-holder-title h2 {
    margin-bottom: 20px;
}

.style-two-rows .section-holder-title p.description {
    margin: 0 0 20px;
}

.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%;
}

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

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

.section.section--white .show-section-separator {
    background: var(--white-section-separator);
    height: 100px;
    position: relative;
    margin-bottom: 60px;
}

.section.section--white .show-section-separator:before {
    content: '';
    width: 95px;
    height: 100%;
    display: block;
    background: #fff;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    position: absolute;
    top: -1px;
    left: -1px;
}

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

.section--primary,
.section--secondary {
    background-repeat: no-repeat;
    background-size: cover;
}

.section--primary .container,
.section--secondary > .container {
    position: relative;
    z-index: 20;
}

.section--primary::before,
.section--secondary::before { 
    content:'';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
} 

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

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

.section--primary a, 
.section--primary a, 
.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);
}

.section--primary .section-holder-title h2 span:before {
    background: var(--primary-section-title-before-color);
}

.section-secondary-shape {
    background-color: linear-gradient(90deg,rgba(248, 195, 37, 1) 0%, rgba(250, 168, 23, 1) 100%);
    width: 10%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 10%;
}

.section-secondary-shape:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    clip-path: polygon(42% 0, 14% 0, 55% 100%, 84% 100%);
}

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

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

.section--secondary h1,
.section--secondary h2,
.section--secondary h3,
.section--secondary h4,
.section--secondary h5 {
    color: var(--secondary-section-title-color);
    text-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
}

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

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

.section--secondary .section-holder-title h2 span:before {
    background: var( --secondary-section-title-before-color);
}

.section--grey {
    background: url(../../images/blocks/section/grey-pattern.png) no-repeat center center;
    background-size: cover;
    color: var(--grey-section-color)

}


@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;
    }

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991px) {
    .section--secondary-paper,
    .section--primary-paper {
        margin: 30px 0;
    }

    .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-holder-title {
		max-width: 90%;
        text-align: left;
		padding-bottom: 0;
	}

    .section-holder-title h2 span {
        padding: 25px 0 0;
        display: block;
    }

    .section-holder-title h2 span:before {
        top: 0;
        left: 50%;
        width: 80px;
        margin-left: -40px;
    }

    .style-one-row .section-holder-title {
        display: block;
    }

    .style-one-row .section-holder-title h2 {
        min-width: auto;
    }
}

@media (max-width: 767px) {
    .section.section--white .show-section-separator {
        height: 60px;
        margin-bottom: 40px;
        margin-right: -12px;
    }

}