*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.main{
    height: 100vh;
    width: 100vw;
    /* border: 3px solid red; */
    display: flex;
    background-color: bisque;
    justify-content: center;
    align-items: center;
}
.card{
    height: 60%;
    width: 45%;
    /* border: 3px solid green; */
    background-color: white;
    border-radius: 10px 10px 10px 10px;
display: flex;
}
.part-1{
    height: 100%;
    width: 50%;
    /* border: 3px solid yellow; */
    background-image: url(image-product-desktop.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px 0 0 10px;
}
.part-2{
    height: 100%;
    width: 50%;
    /* border: 3px solid blue; */
    padding: 20px;
}
.p1{
    height: 10%;
    width: 40%;
    /* border: 2px solid greenyellow; */
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.p2{
    height: 20%;
    width: 70%;
    /* border: 2px solid red; */
    text-align: justify;
    font-size: 20px;
    margin-bottom: 10px;
}
.p3{
    height: 30%;
    width: 90%;
    font-size: 15px;
    /* border:3px solid red; */
    text-align: justify;
    margin-bottom: 10px;
}
.p4{
    height:10% ;
    width: 40%;
    /* border: 2px solid green; */
    display: flex;
    margin-top: 20px;
    font-size: 20px;
}
.b1{
    height: 10%;
    width: 95%;
    /* border: 2px solid yellow; */
color:white;
margin-top: 10px;
    background-color: green;
    border-radius: 9px;
}