:root {
  --accent-color: #0881c8;
  --heading-font: "Manrope", sans-serif;
}

.footer {
  color: #ffffff;
  background: #222222;
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
  width: min(100% - 32px, 1140px);
  margin: 0 auto;
}

.footer .row {
  display: grid;
  gap: 40px;
}

.footer .gy-5 {
  row-gap: 40px;
}

.footer .d-flex {
  display: flex;
}

.footer .align-items-center {
  align-items: center;
}

.footer .mb-4 {
  margin-bottom: 1.5rem;
}

.footer .px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.footer .logo {
  text-decoration: none;
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

.footer h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: #ffffff;
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  color: #ffffff;
  width: 40px;
  height: 40px;
  background-color: rgba(8, 129, 200, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: #ffffff;
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: #000000;
  border-top: 1px solid rgba(8, 129, 200, 0.1);
}

.footer .footer-bottom .row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .footer .row {
    grid-template-columns: 2fr 1fr;
  }
}

@media (min-width: 992px) {
  .footer .row {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }

  .footer .footer-bottom .row {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-content .logo {
    justify-content: center;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }

  .footer .footer-bottom .copyright p {
    text-align: center;
  }
}
