@import url("./variables.css");

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: var(--font-primary);
  color: #111;
  line-height: var(--lh-normal);
}


/* FOOTER */
.footer {
  background-color: #003B73;
  width: 100%;
}

/* SECTION */
.footer-section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;              /*important*/
  padding: 48px 108px;     /* spacing */
  box-sizing: border-box;  /* prevents overflow issues */
}

footer {
  background-color: #003B73 !important;
}

footer * {
  background: transparent !important;
}
