.grid-manage-container {
  display: flex; /* Use flex layout */
  flex-wrap: wrap; /* Allow wrapping for small screens */
  margin: -10px; /* Negative margin to offset child margins */
}

/* Each card in the container */
.card-service {
  flex: 0 0 calc(25% - 20px); /* Set width to 25% minus margin */
  margin: 10px; /* Add margin around each card */
  box-sizing: border-box; /* Include padding and border in width */

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.card__btn {
  border: none;
  padding: 10px 25px;
  background-color: #fb80c6;
  border-radius: 3px;
  color: #fff;
  font-weight: 500;
  width: 100%;
  margin-top: 16px;
}

.card__content .adv-heading-grid {
  margin-top: 15px;
}

.card__content {
  display: flex;
  flex-direction: column;
  height: -webkit-fill-available;
  justify-content: space-between;
}

.adv-heading-grid {
  color: #3f3f3f;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limiting the text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Initial styles for the button and span */
.card__btn {
  transition: background-color 0.3s ease;
}

.card__btn:hover {
  background-color: #e94ba4; /* Darker shade of blue on hover */
}

/* Initial styles for the span */
.card__btn span {
  display: inline-block;
  margin-left: 5px; /* Add spacing between text and arrow */
  transition: transform 0.3s ease;
}

/* Animation on hover */
.card__btn:hover span {
  transform: translateX(5px); /* Move span to the right by 5px */
}

/* .grid-wrap{
    position: relative;
    top: 117px;
  } */

.text-normal-wrapper .text-normal {
  font-size: 14px;
  /* height: 50px;
    overflow: hidden; */
}

.text-normal-wrapper {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limiting the text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grid-wrap .advantages-container .offerings-header {
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .grid-manage-container {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1400px) {
  .card-service {
    flex: 0 0 calc(30% - 0px);
    margin: 10px;
    box-sizing: border-box;
  }
}
