/* gereral */

#links,
#policy {
  scroll-margin-top: 150px;
}
#commitment,
#policy-contact {
  scroll-margin-top: 220px;
}

/* banner section starts here */

.banner {
  animation: changeBg 30s infinite;
}

@keyframes changeBg {
  0% {
    background-image: url("../images/privacy-html/sera-2018.jpg");
  }
  50% {
    background-image: url("../images/privacy-html/sera-2017.jpg");
  }
  100% {
    background-image: url("../images/privacy-html/sera-2018.jpg");
  }
}

/* banner section ends here */

/* footer banner starts here */
.footer-banner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/privacy-html/sera-2017.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin: 60px auto;
  border-radius: 12px;
}

.footer-banner h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.footer-banner p {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}
/* footer banner ends here */

/* privacy policy contact starts here */

.policy-contact {
  display: flex;
  justify-content: space-between;
  gap: 40px;

  padding: 15px 40px;
  margin: 60px auto;
  border: 1px solid #f05f40;
  border-radius: 12px;

  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 280px;
}

.contact-left p,
.contact-right p {
  line-height: 1.8;
}

.contact-right {
  text-align: center;
}

.facebook-link {
  display: inline-block;

  margin-top: 15px;
  margin-bottom: 20px;

  font-size: 50px;
  color: #1877f2;

  transition: 0.3s;
}

.facebook-link:hover {
  transform: scale(1.1);
}

.hospital-logo {
  width: 110px;
  height: 110px;

  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .policy-contact {
    flex-direction: column;
  }

  .contact-right {
    margin-top: 30px;
  }
}

/* privacy policy contact ends here */
