.card-wrap{
  width: 100%;
  background: #fff;
  border-radius: 20px;
  border: 5px solid #fff;
  overflow: hidden;
  color: var(--color-text);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
              rgba(0, 0, 0, 0.23) 0px 6px 6px;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.card-wrap:hover{
  transform: scale(1.1);
}
.card-headerr{
  height: 200px;
  width: 100%;
  background: #0d6efd;
  border-radius:100% 0% 100% 0% / 0% 50% 50% 100%;
  display: grid;
  place-items: center;
}

.card-headerr .imgicon{
  color: #fff;
  width: 100px;
}
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 8px auto;
  text-align: justify;
  padding: 10px;
  height: 220px;
}
.card-title{
  text-align: center;
  font-size: 21px;
  margin-top: 10px;
  margin-bottom: 14px !important;
  font-weight: 700;
}
.card-text{
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: justify;
}
