/*
 Theme Name:   Moove Team
 Theme URI:    https://mooveteam.com
 Description:  Default Moove Team child theme
 Author:       The Rootsons
 Author URI:   https://therootsons.com
 Template:     generatepress
 Version:      0.1
*/
.mg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 100% 0%, rgba(59, 180, 153, .25), transparent), radial-gradient(ellipse 50% 60% at 0% 100%, rgba(232, 168, 58, .12), transparent);
    pointer-events: none;
}
.mg-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(59, 180, 153, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 180, 153, .06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
   .mg-step {
      position: relative;
      counter-increment: step;
    }
.mg-step::before {
      content: counter(step);
      position: absolute;
      left: 32px;
      top: 32px;
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: var(--dark);
      color: var(--gold-mid);
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 800;
      display: grid;
      place-items: center;
}