* {
  padding: 0;
  margin: 0;
}
#ourProjects {
  padding: 10rem 0;
  width: 90%;
  margin: auto;
  position: relative;
}
h1 {
  margin-bottom: 5rem;
  z-index: 3;
}
#projects {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 3;
}
.project {
  width: 48%;
  margin-bottom: 2%;
}
.imgProjects {
  width: 100%;
  height: 400px;
  background-image: url("/files/index/project.png");
  background-size: cover;
  background-position: center;
}
.infoProject {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.colors-circle {
  width: 450px;
  height: 450px;
  position: absolute;
  z-index: -1;
  top: 0.1rem;
  left: 18rem;
  animation: rotate 20s infinite;
}

/*--------------------- RESPONSIVE ----------------------*/

@media screen and (max-width: 821px) {
  .colors-circle{
    width: 300px;
    height: 300px;
    top: 2rem;
    left: 0rem;
  }
  #ourProjects{
    overflow: hidden;
    padding: 6rem 0;
  }
  h1{
    margin-bottom: 3rem;
  }
  .project{
    width: 100%;
    margin-bottom: 10%;
  }
  .imgProjects{
    height: 250px;
  }
}