 /* Header (Hospital Name) */
    
.header {
  background-color: #FBF200; /* Yellow */
  text-align: center;
  font-family: "Dancing Script", cursive;
  font-size: 45px;
  font-weight: bold!important;
  color: #000;
}

.contact-section{
  background-color: #FBF200; /* Yellow */
  text-align: center;
  font-family: "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  color: #000;
}

/* Navbar */
.navbar-custom {
  background-color: black;
}
.navbar-custom .nav-item{
     padding: 8px 10px;
}
.navbar-custom .nav-link {
  font-family: "Georgia", serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff !important;
  padding: 10px 15px;
}
.navbar-custom .nav-link:hover {
  background-color: #444;
  border-radius: 5px;
}
.navbar-custom .nav-link.active {
    background-color: #444;
    border-radius: 5px;
}
.navbar-toggler {
  border-color: #fff;
}

/* Contact Heading */
.contact-section {
  background-color: #ffeb00;
  padding: 20px;
  text-align: center;
  font-family: "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  color: #000;
}
/* Contact Details */
.contact-details {
  padding: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  font-family: "Times New Roman", serif;
}

.navbar-toggle {
    background: #fff;
    width: 40px;
    height: 35px;
    border-radius: 5px;
    padding: 8px;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}
.navbar-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #3e3d3d;
    border-radius: 3px;
    transition: all .5s;
}
.navbar-toggle.closenav span:nth-of-type(1) {
    transform: rotate(43deg) translate(6px,6px);
}
.navbar-toggle.closenav span:nth-of-type(2) {
    display: none;
}
.navbar-toggle.closenav span:nth-of-type(3) {
    transform: rotate(-43deg) translate(5px,-5px);
}

.brand-logo{
    display:block;
}
.navbar-toggler{
    display:none;
}

.gallery_card .gallery-img {
    height: 300px;
    width: 350px;
    object-fit: fill;
    background: no-repeat;
    border-radius: 4px;
}

.custom_card {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    
    .gallery_card .gallery-img {
    height: 300px;
    width: 310px;
    object-fit: fill;
    background: no-repeat;
    border-radius: 4px;
    }

    .navbar-toggler{
        display:block;
    }
    .brand-logo{
        display:flex;
    }
    .header {
        font-size: 25px;
    }
}