.section {
    padding: 80px 0 80px;
    position: relative;
    z-index: 20;
}

.section .container .section__body .container {
    padding: 0;
}

.section.section--white + .section.section--white { 
   padding-top: 0;
}

.section.section--half-background-image {
    padding: 0;
}

.above-heading-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--title-above-color);
    margin-bottom: 5px;
}

.wp-block-columns + .component { 
   margin-top: 50px;
}

h1 + .section {
    padding-top: 0;
}

.component + .wp-block-columns,
.wp-block-column + .component,
.component + .component,
.component + p,
.component + .gform_wrapper  { 
   margin-top: 40px;
}

.section-holder-title {
    padding-bottom: 30px;
}

.style-two-rows .section-holder-title {
    max-width: 850px;
}

.style-two-rows.text-align-center .section-holder-title {
    margin-left: auto;
    margin-right: auto;
}

.text-align-center .section-holder-title {
    text-align: center;
}

.text-align-align .section-holder-title {
    text-align: left;
}

.style-one-row .section-holder-title {
    display: flex;
    gap: 100px;
    margin-bottom: 30px;
    padding: 0;
}

.section-holder-title p.description {
    font-size: 18px;
}

.style-one-row .section-holder-title h2 {
    min-width: 50%;
}

.text-align-center.style-two-rows .section-holder-title h2:before {
    left: 50%;
    margin-left: -40px;
}

.text-align-center.style-two-rows .section-holder-title h2:after {
    left: 50%;
    margin-left: -88px;
}

.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 primary ***/
.section--primary,
.section--primary-content-width {
    color: var(--primary-section-color);
    position: relative;
}

.section--primary {
    background: var(--primary-section-background-color);
}

.section--primary-content-width .section__body {
    content: '';
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: var(--primary-section-background-color);
    padding: 60px 40px;
}

.section--primary h1,
.section--primary h2,
.section--primary h3,
.section--primary h4,
.section--primary h5,
.section--primary-content-width h1,
.section--primary-content-width h2,
.section--primary-content-width h3,
.section--primary-content-width h4,
.section--primary-content-width h5{
    color: var(--primary-section-title-color);
}

.section--primary .above-heading-title,
.section--primary-content-width .above-heading-title {
    color: var(--primary-section-title-above-color);
}

.section--primary a,
.section--primary-content-width a {
    color: var(--primary-section-link-color);
}

.section--primary a:hover, 
.section--primary a:focus, 
.section--primary a:active,
.section--primary-content-width a:hover, 
.section--primary-content-width a:focus, 
.section--primary-content-width a:active {
    color: var(--primary-section-link-color-hover);
}

/*** Section secondary ***/
.section--secondary {
    color: var(--secondary-section-color);
    position: relative;
}

.section--secondary h1,
.section--secondary h2,
.section--secondary h3,
.section--secondary h4,
.section--secondary h5 {
    color: var(--secondary-section-title-color);
}

.section--secondary .above-heading-title {
    color: var(--secondary-section-title-above-color);
}

.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 background ***/
.section--half-background-image .section-inner-holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: var(--half-background-image-color);
    position: relative;
}

.section--half-secondary {
    color: var(--half-background-image-color);
}

.section--half-background-image h1,
.section--half-background-image h2,
.section--half-background-image h3,
.section--half-background-image h4,
.section--half-background-image h5,
.section--half-secondary h1,
.section--half-secondary h2,
.section--half-secondary h3,
.section--half-secondary h4,
.section--half-secondary h5  {
    color: var(--half-background-image-title-color);
}

.section--half-background-image .above-heading-title,
.section--half-secondary.position-right .section__col--last .above-heading-title,
.section--half-secondary.position-left .section__col--first .above-heading-title {
    color: var(--half-background-image-title-above-color);
}

.section--half-background-image a,
.section--half-secondary.position-right .section__col--last a,
.section--half-secondary.position-left .section__col--first a {
    color: var(--half-background-image-link-color);
}

.section--half-background-image a:hover, 
.section--half-background-image a:focus, 
.section--half-background-image a:active,
.section--half-secondary.position-left .section__col--first a:hover, 
.section--half-secondary.position-left .section__col--first a:focus, 
.section--half-secondary.position-left .section__col--first a:active,
.section--half-secondary.position-right .section__col--last a:hover, 
.section--half-secondary.position-right .section__col--last a:focus, 
.section--half-secondary.position-right .section__col--last a:active {
    color: var(--half-background-image-link-color-hover);
}

.section--half-background-image.position-left .section-inner-holder .left-fluid {
    order: 1;
    margin-right: -50px;
}

.section--half-background-image .section-inner-holder .left-fluid {
    padding: 70px 0;
    position: relative;
    z-index: 5;
}

.section--half-background-image .section-inner-holder .left-fluid .section__body {
    max-width: 820px;
}

.section--half-background-image .section-inner-holder .left-fluid .left-fluid-inner {
    background-color: var(--half-background-image-background-color);
    padding: 80px;
}

.section--half-background-image .section-inner-holder .right-fluid {
    order: 2;
    position: relative;
}

.section--half-background-image.position-right .section-inner-holder .left-fluid {
    order: 2;
    margin-left: -50px;
}

.section--half-background-image.position-right .section-inner-holder .right-fluid {
    order: 1;
}

/* Half secondary */
.section--half-secondary {
    position: relative;
}

.section--half-secondary .container {
    position: relative;
    z-index: 100;
}

.section--half-secondary:before {
    content: '';
    width: 65%;
    height: 100%;
    z-index: 10;
    position: absolute;
    top: 0;
    background-color: var(--half-background-image-background-color);
}

.position-left.section--half-secondary:before {
    left: 0;
}

.position-right.section--half-secondary:before {
    right: 0;
}


@media only screen and (min-width: 992px) {
    .section--half-background-image .section-inner-holder .right-fluid img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 0 !important;
    }
    
}

@media only screen and (max-width: 1199px) {
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 991px) {
    .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__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;
	}

    .style-one-row .section-holder-title {
        display: block;
    }

    .style-one-row .section-holder-title h2 {
        min-width: auto;
    }

    /* section hald background */
    .section--half-background-image .section-inner-holder {
        grid-template-columns: 1fr;
    }

    .section--half-background-image.position-right .section-inner-holder .right-fluid,
    .section--half-background-image .section-inner-holder .right-fluid {
        width: 100%;
        height: 300px;
    }

    .section--half-background-image.position-right .section-inner-holder .right-fluid img,
    .section--half-background-image .section-inner-holder .right-fluid img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }

    .section--half-background-image .section-inner-holder .right-fluid {
        order: 1;
    }

    .section--half-background-image.position-left .section-inner-holder .left-fluid {
        order: 2;
    }

    .section--half-background-image .section-inner-holder .left-fluid {
        padding: 0;
    }

    .section--half-background-image.position-right .section-inner-holder .left-fluid,
    .section--half-background-image.position-left .section-inner-holder .left-fluid {
        width: 100%;
        margin: 0;
    }

    .section--half-secondary:before {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 40px 0;
    }

    .section--half-secondary:before {
        width: 100%;
    }

    .section-holder-title {
        width: 100%;
    }

    .section--half-background-image .section-inner-holder .left-fluid .left-fluid-inner {
        padding: 30px 0;
    }

    .section--primary-content-width .section__body {
        padding: 20px;
    }
}