/* =========================================================
   footer.css
   Footer and copyright bar - every page.
   Split out of the old monolithic style.css. Rule order is
   unchanged from the original file.
   ========================================================= */

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}
.footer {
  background: #01253f;
}
.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}
.footer .footer-item p {
  line-height: 25px;
}
.footer .footer-item a:hover {
  color: var(--bs-primary);
}
.footer .footer-item-post a {
  transition: 0.5s;
}
.footer .footer-item-post a:hover {
  color: var(--bs-primary) !important;
}
.footer .footer-item-post .footer-btn a {
  transition: 0.5s;
}
.footer .footer-item-post .footer-btn a:hover {
  color: var(--bs-dark);
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #01253f  !important;
  color: #fff;
}
.footer-text {
  color: #fff !important;
}
.footer-text:hover {
  color: #cbcaca !important;
}
