.whatReceivewrap {
    display: flex;
    justify-content: space-between;
    max-width: 955px;
    flex-wrap: wrap;
    margin: 100px auto 0;
    gap: 63px;
    row-gap: 27px;
}

.whatRecivecard {
    position: relative;
    display: flex;
    gap: 15px;
    max-width: 375px;
    width: 100%;
}

.whatRecivecard::before {
    content: '';
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    background: url(./image/checkIcon.svg);
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}
.whatRecivecard:hover::before {
transform: scale(1.1);
}
.contentCardTitle {

    font-weight: 500;

    font-size: 16px;
    color: #464860;
    line-height: 100%;
    letter-spacing: 0%;
    padding-bottom: 8px;
}

.contentCard {
    max-width: 394px;
    width: 100%;
}

.contentCardDesc * {
    color: #3B5F8B;

    font-weight: 400;

    font-size: 13px;

    line-height: 180%;
    letter-spacing: 0.5%;

}
@media(max-width:575px){
    .whatReceivewrap{
      margin: 50px auto 0;
    }
    .whatRecivecard::before {
    content: '';
    width: 30px;
    height: 30px;
  
}
.whatRecivecard {
 
    gap: 6px;
}
.contentCardTitle {
    font-size: 15px;
}
}