.wheel_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0 0;
    background-color: white;
    border-radius: 1000px 1000px 0 0;
}
  
.wheel-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: none;
    position: relative;
    max-width: 1300px;
    height: 1050px;
    width: 100%;
    border-radius: 100%;
    padding: 6rem 1rem 3rem;
}
  
.wheel {
    display: inherit;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    text-align: center;
    top: 330px;
    background-color: var(--green);
    color: white;
    border-radius: 50%;
    box-sizing: border-box;
    height: 420px;
    width: 420px;
    h5 {font-weight: 300;}
    p {
      font-weight: 300;
      max-width: 316px;
    }
}
  
.wheel-mid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2rem;
  /* .wheel-item {
    width: 270px;
  } */
} 

.wheel-bot {
  display: flex;
  flex-direction: row;
  justify-content: center;
  /* gap: 4rem; */
  width: 100%;
  /* .wheel-item {
    width: 400px;
  } */
} 

.wheel-item {
  /* display: flex;
  flex-direction: column;
    text-align: center;
    gap: 1rem;
    width: 450px;
    max-height: 490px; */
    img {
      height: 80px;
      width: 80px;
      background-color: var(--green);
      border-radius: 100px;
      margin: 0 auto;
      padding: 0.5rem;
    }
    h5 {color: var(--green);}
}

@media (max-width: 1024px) {

  .wheel_wrapper {
    margin-top: 1rem;
  }

  .wheel-container {
    max-width: 800px;
    height: 820px;
    width: 100%;
    padding: 4rem 1rem;
  }

  .wheel {
    top: 270px;
    height: 350px;
    width: 350px;
  }

  /* .wheel-bot {
    .wheel-item {
        width: 260px;
    }
  }

  .wheel-mid {
    .wheel-item {
        width: 260px;
    }
  } */

  .space {
    min-width: 350px;
  }

}

@media (max-width: 767px) {
  .wheel-container {
    width: auto;
    height: auto;
    padding: 3rem 0;
    gap: 1rem;
  }

  .wheel-item {
    width: clamp(300px, 80vw, 450px);
    gap: 0.5rem;
  }

  .wheel-mid, .wheel-bot {
    .wheel-item {
      width: clamp(300px, 80vw, 450px);
    }
  }

  .space {
    width: 0px;
  }

  .wheel {
    position: unset;
    background-color: transparent;
    border-radius: unset;
    height: auto;
    h5, h3 {
      color: var(--green);
    }
    p {
      color: var(--green);
      padding: 1rem;
      max-width: none;
    }
  }

  .wheel .line1 {
    background-color: var(--green);
  }

  .wheel-mid, .wheel-bot {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    gap: 1rem
  }

}

@media (max-width: 546px) {
  .wheel-item {
    img {
        height: 60px;
        width: 60px;
    }
  }
}