/*
* ============================
*     ClicheCode Template
* ============================
* Auther : Saran
* https://www.clichecode.com
*
*/

#healthCarePakeges .container {
  box-shadow: 0 20px 30px -16px rgba(9, 9, 16, 0.2);
  padding: 40px 50px;
  min-height: 250px;
}

#healthCarePakeges .container ul {
  list-style: none;
  -moz-columns: 2;
  columns: 2;
  list-style-position: inside;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
}

#healthCarePakeges .container ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\F054";
  color: #DC5B3E;
  margin-right: 3px;
  font-size: 12px;
}

#healthCarePakeges .container img {
  padding-left: 20px;
}

#healthCarePakeges .b-btn {
  position: relative;
}

#healthCarePakeges .b-btn .pulse-button {
  background: #4e3e73;
  color: #fff !important;
  padding: 10px 20px;
  position: absolute;
  right: 15px;
  bottom: 0;
  border: none;
  box-shadow: 0 0 0 0 rgb(78, 62, 115);
  cursor: pointer;
  -webkit-animation: pulse 1.25s cubic-bezier(0.66, 0, 0, 1) infinite;
  animation: pulse 1.25s cubic-bezier(0.66, 0, 0, 1) infinite;
}

#healthCarePakeges .b-btn .pulse-button:hover {
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}

#healthCarePakeges .b-btn .floating-icon:hover {
  background-color: #000;
  right: 0;
}

@media screen and (max-width: 767px) {
  #healthCarePakeges .container {
    max-width: 95%;
  }

  #healthCarePakeges .container h1 {
    font-size: 24px;
  }

  #healthCarePakeges .container img {
    padding-left: 0;
    width: 100% !important;
    float: left !important;
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 480px) {
  #healthCarePakeges .container {
    padding: 0;
    padding-bottom: 20px;
  }
}

