.roundcircle-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px;
}

.rich-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 32px;
    padding-right: 10px;
    padding-left: 10px;
    line-height: 38px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}


.rich-circle:hover {
  transform: scale(1.05);
}

/* @media screen and (min-width: 768px) and (max-width: 1029px){
  .roundcircle-container {
    gap: 20px!important;
}
} */
@media screen and (max-width: 1029px) {
    .roundcircle-container {
    gap: 20px!important;
}
  .roundcircle-container  .rich-circle {
    font-size: 23px;
    line-height: 28px;
      width: 200px;
  height: 200px;
}