.footer {
  background: #f4f7fb;
  color: #1d2d3b;
  padding: 50px 0 30px;

  border-top: 1px solid rgba(0,0,0,0.04);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 26px;
}

.footer-logo img {
  margin-bottom: 12px;
}

.footer-text {
  font-size: 13px;
  color: #4a5f73;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b2233;
}

.footer-list {
  list-style: none;
  font-size: 13px;
  color: #4a5f73;
}

.footer-list li + li {
  margin-top: 6px;
}

.footer-list a {
  color: #4a5f73;
}

.footer-list a:hover {
  color: #003C71;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #4a5f73;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 12px;
  margin-top: 8px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  stroke: #667789;
  fill: none;
  stroke-width: 1.6;
  transition: 0.25s;
}

.footer-socials a:hover svg {
  stroke: #003C71;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
