﻿/*
* Home Section - Special Services
*/
.custom-section-shape-background {
    position: relative;
    overflow: hidden;
}

    .custom-section-shape-background:before, .custom-section-shape-background:after {
        content: '';
        position: absolute;
        top: 0;
        left: 47.5%;
        width: 50vw;
        height: 100%;
        background: var(--light);
        transform: skewX(21deg);
        z-index: 0;
    }

    .custom-section-shape-background:after {
        left: 49.5%;
        transform: skewX(-21deg);
    }

    .custom-section-shape-background .custom-shape-divider {
        position: relative;
    }

        .custom-section-shape-background .custom-shape-divider:before {
            content: '';
            position: absolute;
            top: -150px;
            left: 0;
            width: 100%;
            height: 150%;
            background: var(--grey-100);
            transform: skewY(-4deg);
            z-index: 0;
        }

    .custom-section-shape-background.custom-section-shape-background-reverse:before {
        left: auto;
        right: 49.5%;
        transform: skewX(21deg) rotate(180deg);
    }

    .custom-section-shape-background.custom-section-shape-background-reverse:after {
        left: auto;
        right: 50.5%;
        transform: skewX(-21deg) rotate(180deg);
    }

@media (max-width: 991px) {
    .custom-section-shape-background:before, .custom-section-shape-background:after {
        width: 100vw;
    }
}
