.cards{
    background:  #28345F;
    text-align: center;
  padding: 50px;
}
.cards h2{
  color:#ffffff;
  font-size: 2rem;
}

.cards::before{
     background: #28345f;
    /* bottom: 29px; */
    content: " ";
    height: 150vh;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    overflow: hidden;
  
}
.card-wrapper{
        display: flex;
        background-color: #FFF;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        padding: 20px;
        border-radius: 40px;
  height: 100%;
}
.inner-wrapper{
border-radius: 40px;
background:linear-gradient(271deg, #D5E6FD 0.48%, #DEF5FF 71.47%);
display: flex;
padding: 20px;

}
.img-wrapper {
    display: flex;
}
.inner-wrapper img{
  width: 60px;
    height: 60px;
    border-radius: 160px;
}
.outer {
    margin: 20px 0;
}
@media only screen and (max-width: 768px) {
  .cards h2{
  font-size: 1.5rem;
}
  .cards::before{
    height:200vh;
  }
@media(min-width:2000px) and (max-width: 2560px) {
  
  .cards::before {
    height: 100vh;
  }
}
