/* content below the dividers */

	.divider-content {
		padding-top: 10px;
		padding-bottom: 20px;	
	}

/* ------------- CODE HERE --------------- */

.SVG-curve-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.SVG-curve-shape svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	/* [disabled]height: 353px; */
}

.SVG-curve-shape .shape-fill {
    fill: #fff;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
    .SVG-curve-shape svg {
	width: calc(100% + 1.3px);
	/* [disabled]height: 302px; */
    }
}

/** For mobile devices **/
@media (max-width: 767px) {
    .SVG-curve-shape svg {
        width: calc(100% + 1.3px);
        height: 139px;
    }
}
