
/* *{
    padding: 0px;
    box-sizing: border-box;
} */

/* body{
    margin: 0;
} */

.design-container .top{
    height: 40px;
    width: 100%;
    background-color: #303440;
}

.design-container .cuts{
    /* position: relative; */
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.design-container .cuts .cut-left{
    width: 0;
    height: 0;
    display: inline-block;
	/* border-left: 25px solid transparent; */
	border-right: calc(25vw - 4px) solid transparent;
    border-top: 100px solid #303440;
    /* -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; */
    padding: 0px;
    /* position: absolute;
    left: 0px; */
}

.design-container .cuts .cut-middle{
    width: 0;
    height: 0;
    display: inline-block;
	border-left: calc(25vw - 4px) solid transparent;
	border-right: calc(25vw - 4px) solid transparent;
    border-top: 100px solid #303440;
    /* -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; */
    padding: 0px;
}

.design-container .cuts .cut-right{
    width: 0;
    height: 0;
    display: inline-block;
	border-left: calc(25vw - 4px) solid transparent;
	/* border-right: 200px solid transparent; */
    border-top: 100px solid #303440;
    /* -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; */
    padding: 0px;
    /* position: absolute;
    right: 0px; */
}

svg{
    width: 50vw;
    fill: yellow;
}

.design-img img{
    width: 100%;
    height: auto;
    z-index: 1;
}

.design-content{
    width: 100%;
    height: 200px;
    background-color: #303440;
    z-index: 1;
    margin: 0px;
    padding: 0px;
}

/* .cuts{
    position: relative;
    z-index: 0;
    width: 100%;
}

.cuts .cut-middle{
    padding: 0px;
    position: relative;
    z-index: 0;
    border-left: 290px solid transparent;
    border-right: 290px solid transparent;
    border-top: 100px solid #303440;
}

.cuts .cut-middle:after{
    position: absolute;
    top: -100px;
    left: -290px;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 290px 290px 0 0;
    border-color: #303440 transparent transparent  transparent;
    z-index: -1;
}

.cuts .cut-middle:before{
    position: absolute;
    top: -100px;
    right: -290px;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 290px 290px;
    border-color: transparent transparent #303440 transparent;
    z-index: -1;
} */