.category-grid-wrapper {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.5764705882);
  border-radius: 30px;
  position: relative;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 640px) {
  .category-grid-wrapper {
    padding: 55px;
  }
}
@media screen and (min-width: 992px) {
  .category-grid-wrapper {
    top: -125px;
  }
}

.rounded-card {
  padding: 45px 55px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(56, 40, 40, 0.1490196078);
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
  height: 100%;
}
.rounded-card .animated-circle {
  position: absolute;
  border-radius: 50%;
  background: #0077C6;
  width: 425px;
  height: 425px;
  right: -50%;
  bottom: -50%;
  z-index: 1;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.3s ease-out;
}
.rounded-card .rounded-card__content {
  position: relative;
  z-index: 2;
}
.rounded-card .rounded-card__image {
  margin-bottom: 45px;
}
.rounded-card .rounded-card__linkwrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 1.875rem;
}
.rounded-card .rounded-card__linkwrapper h3 {
  color: #000000;
}
.rounded-card .rounded-card__icon {
  color: #FFFFFF;
}
.rounded-card:hover .animated-circle {
  transform: scale(5);
}
.rounded-card:hover .rounded-card__link {
  color: #ffffff;
  transition: 0.3s;
}
