* {
  margin: none;
  padding: none;
}

.Parent-1 {
  display: flex;
  justify-content: space-around;
  font-family: 'Nunito Sans', sans-serif;

  .box {
    height: 300px;
    width: 300px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5%;
    align-items: center;
    text-align: center;

    .b1 {
      height: 100%;
      width: 100%;
      border-radius: 5%;
      background-color: #cdc5b6;

      .Contant {
        display: flex;
        justify-content: space-around;
        margin-top: 15%;

        .icon {
          position: relative;
          top: 10px;
        }

        .Price {
          font-size: large;
        }

        .Price span {
          display: block;
          font-size: medium;
          color: red;
          text-decoration: line-through;
        }
      }
      
      .image {
        height: 170px;
        width: 300px;
        border-radius: 5%;
      }
    }


    .b2 {
      height: 100%;
      width: 100%;
      border-radius: 5%;
      background-color: #cdc5b6;

      .Contant {
        display: flex;
        justify-content: space-around;
        margin-top: 15%;

        .icon {
          position: relative;
          top: 10px;
        }

        .Price {
          font-size: large;
        }

        .Price span {
          display: block;
          font-size: medium;
          color: red;
          text-decoration: line-through;
        }
      }
    }

    .b2 .image {
      height: 170px;
      width: 300px;
      border-radius: 5%;
    }
  }

}