.footer {
  background: #0f172a;

  color: #ddd;

  padding: 90px 0 30px;
}

.footer-logo {
  height: 65px;

  margin-bottom: 30px;
}

.footer-about {
  line-height: 1.9;

  margin-bottom: 30px;

  color: #bbb;
}

.footer h5 {
  color: #fff;

  margin-bottom: 25px;

  font-weight: 700;
}

.footer ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer ul li {
  margin-bottom: 15px;
}

.footer ul li a {
  color: #bbb;

  text-decoration: none;

  transition: 0.3s;
}

.footer ul li a:hover {
  color: #ba1515;

  padding-left: 6px;
}

.footer-contact p {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-bottom: 20px;

  line-height: 1.8;
}

.footer-contact i {
  color: #ba1515;

  margin-top: 4px;
}

.footer-social {
  display: flex;

  gap: 15px;
}

.footer-social a {
  width: 45px;

  height: 45px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #222;

  color: #fff;

  text-decoration: none;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #ba1515;

  transform: translateY(-4px);
}

.footer hr {
  border-color: #333;

  margin: 60px 0 30px;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;
}

.footer-links {
  display: flex;

  gap: 30px;

  flex-wrap: wrap;
}

.footer-links a {
  color: #bbb;

  text-decoration: none;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #ba1515;
}

.copyright {
  color: #888;
}

/*=========================
Responsive
=========================*/

@media (max-width: 991px) {
  .footer {
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    justify-content: center;
  }
}
