.parallax_two_circle_container {
  position: absolute;
  left: -100px;
  bottom: 30px;
  width: 200px;
  height: 430px;
  /* border: 1px solid rgb(193, 97, 212); */

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: space-between;
}

.parallax_circle {
  width: 200px;
  height: 200px;
  border: 1px solid black;
  border-radius: 50%;
  background: transparent;
}

@media (min-width: 577px) and (max-width: 991px) {
  .parallax_two_circle_container {
    left: -75px;
    bottom: 20px;
    width: 150px;
    height: 320px;
  }

  .parallax_circle {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .parallax_two_circle_container {
    position: absolute;
    left: -55px;
    bottom: 15px;
    width: 110px;
    height: 240px;
  }

  .parallax_circle {
    width: 110px;
    height: 110px;
  }
}
