/* https://www.shapedivider.app/ */
body {
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.817);
    color: white;
    overflow-x: hidden;
}



/* WAVE2 SUPPORT */
.curve{
    position: relative; 
    padding: 1px;
    font-size: small;
    background-color: teal;
    
}
.w {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.w svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 73px;
}

.w .shape-fill {
    fill: teal;
}


/* WAVE2 */
.wave2{
    position: relative;
    background-color: orange;
    padding: 2px;

}
.w2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.w2 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 73px;
}

.w2 .shape-fill {
    fill: orange;
}





/* WAVE1 */
.wave1{
    position: relative; 
    padding: 2px;
    font-size: small;
    background-color: crimson;
    position: relative;
}

/* wave opacity */
.wave-op{
    position: relative; 
    padding: 1px;
    font-size: small;
    background-color: skyblue;
    position: relative;  
}
.wave-opacity {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-opacity svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 201px;
    transform: rotateY(180deg);
}

.wave-opacity .shape-fill {
    fill: crimson;
}