.collab-wrap {
  position: relative;
  padding: 0 20px 25px;
  margin-bottom: -25px;
  z-index: 1;
}
.collab-wrap::before {
  content: '';
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4dbdc7;
  z-index: -1;
  border-radius: 0 0 70px 70px;
}
.collab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.collab-card {
  background-color: #f7f7f7;
  border-radius: 70px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.collab-header {
  background-color: #143770;
  color: #ffffff;
  padding: 30px 10px;
  text-align: center;
}
.collab-header .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collab-header .icon img {
  max-width: 100%;
  height: auto;
  color: transparent;
}
.collab-header .icon img[src=''] {
  display: none;
}
.con-p {
  font-size: 20px;
  color: #ffffff;
  padding: 0;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}
.collab-body {
  padding: 35px 20px 50px;
  flex: 1;
}

@media screen and (max-width: 1024px) {
  .collab-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .collab-wrap {
    padding: 0 15px 45px;
    margin-bottom: -45px;
  }
  .collab-wrap::before {
    top: 70px;
    bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .collab-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .collab-card {
    border-radius: 70px;
  }
  .collab-wrap::before {
    top: 50px;
    bottom: 45px;
  }
  .con-p {
    font-size: 18px;
  }
  .collab-wrap {
    padding: 0 15px 60px;
    margin-bottom: -60px;
  }
}