/* ==============INTRODUCTION OF THE HOSPITAL================ */
.box-container{
    /* width: auto; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 20px;
}
/* for laptop */
@media (min-width:824px) and (max-width:1440px){
    .box-container{
    gap: 40px;
    }
}
.box{
    width: 380px;
    box-shadow: 0 4px 8px #555;
    border-radius: 4px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 
   height: 550px;
}

.box img{
    width: 380px;
    height: 300px;
}
.box h3, p{
    padding-left: 20px;
    padding-right: 20px;
   
}
.box h3{
    margin-bottom: 20px;
    font-size: 30px;
    /* color: #000000; */
}
.box p{
    margin-bottom: 30px;
    line-height: 20px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align:left;
    font-size: 14px;
}

/* Service-container in home page*/
.service-container{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 6px;
  gap: 20px;
  justify-content: center;
  box-shadow: 0 4px 8px #555;
}

.service-container h2{
  width: 100%;
  text-align: center;
  font-weight: bolder;
}

.servies-div{
  box-shadow: 0 4px 8px #555;
  padding: 5px 10px;
  font-size: 18px;
  width: 150px;
  text-align: center;
  border-radius: 5px;
}

.servies-div-b{
  box-shadow: 0 4px 8px #555;
  padding: 5px 10px;
  font-size: 18px;
  width: 320px;
  text-align: center;
  border-radius: 5px;
}

.btn-wrapper{
  width: 100%;
  /* height: 40px; */
  display: flex;
  justify-content: center;
}
/* .service-container a{
  display: inline-block;
  padding: 10px 60px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  background-color: blue;
  color: white;
} */