/* ========================================
   afa – Dekorative Kreise
   ======================================== */

.main {
  position: relative;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: var(--color-yellow);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  contain: layout style;
}

.circle--1 {
  width: 600px;
  height: 600px;
  top: 5vh;
  right: 5vw;
}

.circle--2 {
  width: 520px;
  height: 520px;
  top: 220vh;
  left: 5vw;
}

.circle--3 {
  width: 560px;
  height: 560px;
  top: 420vh;
  right: 15vw;
}

.section,
.parallax {
  position: relative;
  z-index: 1;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .circle--1 {
    width: 350px;
    height: 350px;
    right: -50px;
  }

  .circle--2 {
    width: 300px;
    height: 300px;
    left: -60px;
  }

  .circle--3 {
    width: 320px;
    height: 320px;
    right: -30px;
  }
}
