

.shape-1{
    position: relative;
    overflow: hidden;
}

.shape-1::before {
    content: '';
    display: block;
    position: absolute;
    right: -5%;
    bottom: 5%;
    background: url(../images/shapes/1.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 240px;
    height: 240px;
    animation: roundrotate 8s infinite linear;
    animation-direction: alternate;
    z-index: -5;
}

@keyframes roundrotate{
	from{
		transform: translateY(0) rotate(0);
	  }
	to{
		transform: translateY(100px) rotate(360deg);
	}
}



.shape-2{
    position: relative;
    overflow: hidden;
}

.shape-2::before {
    content: '';
    display: block;
    position: absolute;
    right: -5%;
    bottom: 5%;
    background: url(../images/shapes/2.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 240px;
    height: 240px;
    animation: roundrotate 8s infinite linear;
    animation-direction: alternate;
    z-index: -5;
}

@keyframes roundrotate{
	from{
		transform: translateY(0) rotate(0);
	  }
	to{
		transform: translateY(100px) rotate(360deg);
	}
}




.shape-5{
    position: relative
}

.shape-5::before {
    content: '';
    display: block;
    position: absolute;
    left: -8%;
    top: 50%;
    background: url(../images/shapes/5.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 70%;
    width: 306px;
    height: 304px;
    animation: circlerotate 20s infinite linear;
    z-index: -1;
}

@keyframes circlerotate{
	from{
        transform: rotate(0deg);
	  }
	to{
        transform: rotate(360deg);
	}
}