.body{
    background-color: #eef6ff;
    width: 100%;
}
.gift{
   font-family: Arial, Helvetica, sans-serif;
   text-align: center;
   margin-top: 20px; 
}

.gift h{
    padding: 10px;
    color: yellow;
    font-size: 20px;
    background: blue;
}

.pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

.pro{
    width: 18%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

.pro:hover{
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.07);
}

.pro .image{
    width: 90%;
    height: 50%;
    border-radius: 20px;
}

.pro .description{
    text-align: start;
    padding: 10px 0;
}

.pro .description p2{
    padding-top: 7px;
    color: blue;
    font-size: 14px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.pro .description p{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.pro .description img{
    font-size: 12px;
    color: rgb(243, 181, 25);
}

.pro .description p1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    padding-top: 7px;
    font-weight: bold;
    color: #088178;
}

@media all and (max-width: 1000px){
    .gift h{
        line-height: 40px;
    }

    .pro-container{
        margin-left: 40px;
    }
}