body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.Home {
    display: block;
}

.Home-wrapper {
    display: block;
    width: 100%;
    height: 100%;
}

.Side-left {
    background-color: #00a8a4;
    height: 100%;
    left: -100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform: skew(-45deg);
    width: 150%;
    z-index: 5;
}

.Side-right {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #1F2B52;
}

@media screen and (max-width: 768px) {
    .Side-left {top: -65%;left: 0;transform: skewY(-35deg);width: 100%;}
}