/* =========================================================
   FOOTER
   ========================================================= */
#colophon {
  background: var(--cp-navy-dark);
  padding: 52px 0;
}

.cp-footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}

.cp-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  transition: var(--cp-ease);
}

.cp-footer-brand:hover {
  opacity: 0.5;
}

.cp-footer-brand img {
  height: 52px;
}

.cp-footer-brand svg {
  height: 132px;
  width: auto;
  display: block;
}

.cp-footer-brand-text {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.cp-footer-meta {
  font-size: 0.78rem;
  color: var(--cp-white);
  line-height: 1;
}

.cp-footer-meta svg path {
  fill: currentColor;
  color: inherit;
}

.cp-footer-meta a {
  color: var(--cp-white);
}

.cp-footer-meta a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.cp-footer-credit {
  width: fit-content;
}

.cp-footer-credit svg {
  width: auto;
  height: 20px;
  display: block;
}

.cp-footer-nav {
  display: flex;
  gap: 48px;
}

.cp-footer-col h4 {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.cp-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cp-footer-col li {
  margin-bottom: 9px;
}

.cp-footer-col a {
  font-size: 0.82rem;
  color: #fff;
}

.cp-footer-col a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.cp-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cp-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--cp-ease);
}

.cp-social a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.cp-social svg {
  width: 16px;
  height: 16px;
}

.footer-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0rem 1rem 0rem;
}
.footer-images-2 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1040px) {
  .footer-images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0rem 1rem 0rem;
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (max-width: 400px) {
  .footer-images-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
