.footer-section {
  font-family: 'Poppins', sans-serif;
  background:
    linear-gradient(to left, rgba(11, 35, 90, 0.9), rgba(11, 35, 90, 0.9)),
    url('../images/footer-image.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
}

.footer-section h5 {
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
  color: white;
}

.footer-section h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: white;
  margin-top: 6px;
}

.footer-section li {
  color: white;
}

.footer-section a {
  text-decoration: none;
  color: white;
  display: block;
  padding: 4px 0;
  transition: all 0.3s ease;
  font-size: 18px;
  line-height: 34px;
  cursor: pointer;
}

.footer-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}



.social-icons a {
  font-size: 22px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #00050a;
  transform: scale(1.2);
}

.footer-section p {
  color: white !important;
  font-size: 18px;
}

.footer-section hr {
  color: white;
  border: 2px solid white;
}

@media screen and (max-width: 1399px) {
  .footer-section h5 {
    font-size: 26px;
  }

  .footer-section a {
    font-size: 16px;
    line-height: 28px;
  }
}

@media screen and (max-width: 1199px) {
  .footer-section a {
    font-size: 16px;
    line-height: 28px;
  }

  .footer-section h5 {
    font-size: 22px;
  }

  .footer-section p {
    font-size: 16px;
  }
}