#terms {
  scroll-margin-top: 150px;
}

#policy-contact {
  scroll-margin-top: 220px;
}
/* banner section starts here */

.banner {
  animation: changeBg 30s infinite;
  height: 600px;
}

@keyframes changeBg {
  0% {
    background-image: url("../images/terms-html/blood-donation.jpg");
  }
  50% {
    background-image: url("../images/terms-html/suliman-belete.jpg");
  }
  100% {
    background-image: url("../images/terms-html/blood-donation.jpg");
  }
}

/* banner section 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 */
