/* ==========================================================================
   STICKY FOOTER & BODY LAYOUT
   ========================================================================== */
html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.ep-layout-wrapper {
  flex: 1 0 auto;
}

.ep-footer {
  flex-shrink: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ep-footer {
  background: #042144;
  color: #c1d0e4;
  margin-top: 56px;
  padding: 70px 0 28px;
  position: relative;
  overflow: hidden;
}

.ep-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(12, 61, 130, .22), transparent 60%);
}

.ep-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.ep-footer h5 {
  margin: 0 0 16px;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

.ep-footer a {
  color: #c2d3e6;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .3px;
}

.ep-footer a:hover {
  color: #fff;
}

.ep-footer p {
  font-size: .8rem;
  line-height: 1.5;
  margin: 0;
  color: #b1c4d6;
}

.ep-footer-bottom {
  max-width: 1280px;
  margin: 46px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #7f95ae;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
} 

/* Footer enrichments */
.ep-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ep-footer-badges span {
  background: rgba(255, 255, 255, .08);
  color: #c2d3e6;
  font-size: .55rem;
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: .5px;
}

.ep-footer-badges span:hover {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.ep-social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.ep-social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 47, 102, .12);
  border: 1px solid rgba(7, 47, 102, .22);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: .18s;
}

.ep-social-links a:hover {
  background: rgba(7, 47, 102, .18);
  border-color: rgba(7, 47, 102, .32);
}

.ep-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .7rem;
  line-height: 1.5;
}

.ep-contact-list li+li {
  margin-top: 4px;
}

.ep-contact-list a {
  text-decoration: none;
  color: #b1c4d6;
}

.ep-contact-list a:hover {
  color: #fff;
}

.ep-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  margin-top: -16px;
}

.ep-footer-brand img {
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
}

.ep-footer-brand h5 {
  margin: 0 !important;
  font-size: .95rem;
  letter-spacing: .14em;
}
