.price-box {
    margin-bottom: 80px;
}
.price-box .item {
    max-width: 800px;
    margin: auto;
}
.price-box .item ul {
    display: flex;
    justify-content: space-between;
}
.price-box .item ul li{
    width: 25%;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: gray;
    font-weight: bold;
    padding: 30px;
    margin: 10px;
    border-radius: 10px;
}
.price-box .item ul .title{
    /* background: linear-gradient(-145deg, rgba(219, 138, 222, 1) 0%, rgba(246, 191, 159, 1) 100%); */
    color: white;
}
@media screen and (max-width: 770px) {
    .price-box .item ul li{
        width: 25%;
        padding: 20px 0px;
        font-size: 10px;
        margin: 4px;
    }
  }
  .service-box {
    margin-bottom: 80px;
  }
  .service-box .item-box{
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .service-box .item{
    display: flex;
    align-items: end;
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .service-box .item h5{
    font-size: 13.5px;
    width: 100%;
    text-align: center;
    background: linear-gradient(-145deg, rgba(219, 138, 222, 1) 0%, rgba(246, 191, 159, 1) 100%);
    color: white;
    padding: 2px 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;

  }
  .option-box .item-box{
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .option-box .item{
    display: flex;
    align-items: end;
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .option-box .item h5{
    font-size: 13.5px;
    width: 100%;
    text-align: center;
    background: linear-gradient(-145deg, rgba(219, 138, 222, 1) 0%, rgba(246, 191, 159, 1) 100%);
    color: white;
    padding: 2px 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;

  }
  @media screen and (max-width: 500px) {
    .service-box .item{
        width: 150px;
        height: 150px;
        margin: 5px;
       
      }
      .option-box .item{
        width: 150px;
        height: 150px;
        margin: 5px;
      }
      .service-box .item h5{
        font-size: 15px;
      }
      .option-box .item h5{
        font-size: 15px;
      }
  }
