/* ===========================================
   FLOATING ELEMENTS
   =========================================== */
.floating-image-about {
  position: absolute;
  z-index: -10;
}

.floating-1-about {
  top: 20%;
  left: 2%;
  animation: float1 6s ease-in-out infinite;
}

.floating-2-about {
  bottom: 30%;
  left: 80%;
  animation: float2 8s ease-in-out infinite;
}

.floating-3-about {
  top: 50%;
  left: 20%;
  animation: float2 4s ease-in-out infinite;
}

.floating-4-about {
  top: 20%;
  right: 10%;
  animation: float2 10s ease-in-out infinite;
}

.bg-circle-1-about {
  position: absolute;
  left: 0;
  top: 30%;
  z-index: -10;
}

.bg-circle-2-about {
  position: absolute;
  right: 0;
  bottom: 30%;
  z-index: -10;
}

/* ===========================================
   ABOUT - HERO SECTION
   =========================================== */
.about-heading {
  font-size: 120px;
  margin-block: 4rem;
  line-height: 1.1;
}

.patches-paint-about {
  color: #fff;
  background-image: url('/assets/images/patches-paint-about.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: fit-content;
  padding: 0 60px;
  display: inline-block;
}

.about-desc {
  max-width: 875px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

/* ===========================================
   ABOUT - PURPLE FORM SECTION
   =========================================== */
.p-form-section {}

.form-heading {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-d-blue);
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */

/* Large Screens (1200px and down) */
@media only screen and (max-width: 1200px) {
  .about-heading {
    font-size: 100px;
    margin-block: 3rem;
  }

  .patches-paint-about {
    padding: 0 50px;
  }
}

/* Tablets (992px and down) */
@media only screen and (max-width: 992px) {
  .about-heading {
    font-size: 80px;
    margin-block: 2.5rem;
  }

  .patches-paint-about {
    padding: 0 40px;
  }

  .about-desc {
    margin-bottom: 2.5rem;
  }
}

/* Mobile (768px and down) */
@media only screen and (max-width: 768px) {
  .about-heading {
    font-size: 60px;
    margin-block: 2rem;
  }

  .patches-paint-about {
    padding: 0 30px;
  }

  .about-desc {
    margin-bottom: 2rem;
    padding: 0 10px;
  }
}

/* Small Mobile (480px and down) */
@media only screen and (max-width: 480px) {
  .about-heading {
    font-size: 46px;
    margin-block: 1.5rem;
  }

  .patches-paint-about {
    padding: 0 22px;
  }

  .about-desc {
    margin-bottom: 1.5rem;
  }
}

/* Very Small Mobile (320px and down) */
@media only screen and (max-width: 320px) {
  .about-heading {
    font-size: 38px;
    margin-block: 1.25rem;
  }

  .patches-paint-about {
    padding: 0 18px;
  }
}