*{
  margin: 0;
  padding: 0;
}
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}
.flex_div{
    display:flex;
    align-items:center;
    padding:0px 16px;
    margin-top:5px;
}
.flex_div h6{
    margin:0;
    margin-left:2px;
    text-align:left;
    text-align:justify;

}
.flex_div div{
    text-align:justify;
}
.column {
  float: left;
  width: 100%px;
  margin-bottom: 16px;
  padding: 0 8px;
}
.hospital_row{
    display:grid!important;
    grid-template-columns:1fr 1fr 1fr!important;
}
.details_div p{
    padding:0;
    margin:0;
    text-align:left!important;
    font-weight:bold;
}
.details_div{
    padding-top:10px;
}


.card {
  height: auto;
  width: 100%;
  margin: auto;
  box-shadow: 0 4px 10px 0 #b3b5b4;
  background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(238,241,244,1) 100%);
border-radius: 10px!important;
}

.contain-card {
  padding: 0 16px;
  margin-bottom: 10px;
}
.container{
  margin-bottom: 80px;
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: #000;
}
.card img {
  background: #fff;
  border-radius: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  /*margin-top: 20px;*/
}
/*.container p {*/
/*  text-align: center;*/
/*  color: #000;*/
  /*font-family: 'Molengo', sans-serif;*/
/*}*/
.contain-card h4 {
  text-align: center;
  margin-top: 15px;
  font-size: 20px;
  color: #000;
  font-family: 'Molengo', sans-serif;
  margin-bottom: 5px;
  color: #5d5dde;
  font-weight: bold;
}

.contain-card table{
  margin-left: 40px;
  /* width: 200px; */
}
.contain-card table tr td{
  font-size: 13px;

}
.contain-card table tr td:nth-child(1){
  font-size: 14px;
}
.contain-card table tr td:nth-child(2){
  color: #0c64f2;
  font-weight: bold;
  padding-left: 40px;
}
@media screen and (max-width: 800px) {
  .column {
    width: 100%;
    display: block;
  }
  .hospital_row{
    display:grid!important;
    grid-template-columns:1fr!important;
}
}

.button-4 {
  background-color: transparent;
  border: 0px solid #ff0251;
  background:rgb(241,114,35);
  color: #fff;
  cursor:pointer;
  margin:16px;
  padding:10px;
  text-align:center;
  font-weight:bold;
  transition: .3s;
}
.button-4:hover {
  animation: pulse 1s infinite;
  transition: .3s;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(.9);
  }
    100% {
    transform: scale(1);
  }
}
