/**
 * @file
 * Section styles
 */

.section--alternate-background {
    background-color: white;
    position: relative;
}


.section--skewed::before{
    margin:0;
    height: 50px;
    top: -50px;
}
.section--skewed::after {
    margin:0;
    height: 50px;
    bottom: -50px;
}

.section--skewed::before {
    display: block;
    content: "";
    position: absolute;

    width: 100%;
    clip-path: polygon(100% 0%,100% 100%,0% 100%);
    background-color: white;
  }
.section--skewed::after{
    display: block;
    content: "";
    position: absolute;

    width: 100%;
    clip-path: polygon(0% 0%,100% 0%,0% 100%);
    background-color: white;
}

@media all and (min-width: 1000px) {
    .section--skewed::before{
        height: 75px;
        top: -75px;
    }
    .section--skewed::after {
        height: 75px;
        bottom: -75px;
    }
}