.custom-card-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.custom-card {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 2rem 0.5rem 0.5rem 0.5rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.custom-card .icon-wrapper {
  width: 117px;
  height: 117px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-card img {
  width: 74px;
  height: 74px;
}

.custom-card .down-arrow {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}
.grey-back {
  background-color: #C6E9F6;
  width: 100%;
  height: 100px;
  border-radius: 12px;
  display: grid;
  align-items: center;
  align-content: center;
}

}

.down-arrow img{
  width: 45px;
  height: 45px;
  border: 5px solid #ffff;
  position: absolute;
  margin-top: -20px;
  margin-left: -19px;
  border-radius: 50%;
}

@media (max-width: 1327px){
  .custom-card-group{
    gap: 0.5rem;
  }
  .custom-card-group{
    flex-wrap: nowrap;
  
  }

}

@media (max-width: 768px) {
  .custom-card-group {
    flex-direction: column;
    align-items: center;
  }

  .custom-card {
    max-width: 90%;
  }
    .custom-card-group{
    gap: 1rem;
  }
.grey-back p {
 padding-bottom: 0px;
}
}
