.ChoosePlan {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  > div {
    width: 280px;
    height: 510px;
    cursor: pointer;
    margin-top: 50px;
    text-align: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    box-shadow: 0px 5px 50px 0px #0000001a;
    > img {
      padding-bottom: 15px;
    }
    > p:first-child {
      font-size: 22px;
      color: #51565e;
      margin-top: 30px;
      font-weight: 500;
    }
    > h4 {
      font-size: 30px;
    }
    .hour {
      margin-top: 30px;
      font-size: 20px;
      font-weight: 550;
      color: #010101;
    }
    > ul {
      margin-bottom: 50px;
      margin-top: -10px;
    }
    > ul > li {
      list-style-type: none;
      font-size: 16px;
      font-weight: 400;
      line-height: 25.6px;
      text-align: center;
      color: #51565e;
      padding-top: 8px;
    }
    > button {
      padding: 15px 30px 15px 30px;
      gap: 10px;
      font-weight: 500;
      border-radius: 5px;
      color: #007465;
      border: none;
      margin-top: 30px;
      background-color: #0074651a;
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
    }
  }
  > div:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    box-shadow: rgba(103, 97, 105, 0.2) 0px 7px 29px 0px;
    > button {
      color: #fff;
      background-color: #007465;
    }
  }
  .online {
    color: white;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background: linear-gradient(180deg, #00a691 0%, #007465 100%);
    overflow: hidden;
    > p:first-child {
      color: #ffffff;
    }

    .line {
      > p {
        background-color: #ffffff;
      }
      > div {
        background-color: #ffffff;
      }
    }
    .hour {
      color: #ffffff;
    }
    > ul > li {
      color: #ffffff;
    }
    > button {
      color: #007465;
      background-color: #ffffff;
    }
    .special {
      position: absolute;
      transform: rotate(318deg);
      left: -39px;
      top: 18px;
      background: Red;
      padding: 6px;
      font-size: 17px;
      width: 10rem;
    }
  }
}

.comment {
  margin: 100px 0 100px 0;
  textarea {
    width: 100%;
    height: 370px;
    border: none;
    padding: 10px;
    color: #505056;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
}

/* ======== responsive section start ========= */
@media (max-width: 1160px) {
  .ChoosePlan {
    gap: 20px;
    justify-content: center;
  }
}
@media (max-width: 780px) {
  .top-content {
    text-align: center;
  }
}
/* ======== responsive section end ========= */
