/* ===== FOOTER ===== */
.footer {
  background: #f5f5f8;
  padding: 40px 0 15px;
  /* padding-top: 40px; */
}

/* Title */
.footer__title {
  font-size: 16px;
  font-weight: bold;
  color: #222222;
  margin-bottom: 14px;
  padding-bottom: 10px;
  position: relative;
}

.footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: #d8d8df;
}

/* Text */
.footer__text {
  font-size: 16px;
  color: var(--text-black);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer__text i {
  font-size: 14px;
  color: #777777;
}

.footer__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* gap: 20px; */
}

.footer__list li {
  display: flex;
  align-items: center;
}

/* Link */
.footer__link {
  padding: 10px 0;
  color: #222222;
  transition: all 0.2s ease;
}

.footer__text .footer__link {
  color: #0094ff;
}

.footer__link:hover {
  color: var(--primary-color);
}


/* Icon */
.footer__icon {
  margin-right: 6px;
}

/* Bottom */
.footer__bottom {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 14px;
}
/* ===== RESPONSIVE ===== */

@media (max-width: 767px) {
  .footer__inner .footer__col:nth-child(3),
  .footer__inner .footer__col:nth-child(4) {
    padding-top: 20px;
  }
}
