/* ---------------------FOOTER--------------------- */
footer {
  background-color: var(--grey-main-color);
  box-sizing: border-box;
  left: 0;
  bottom: 0;
  padding: 10px 15px;
  margin-top: 10px;
  width: 100%;
  min-height: 50px;
  overflow: auto; /* cause of floats' sons */
}
footer div {
  border-top: 1px solid var(--grey-medium-color);
  padding: 10px 15px 10px;
}
footer p {
  font-size: 12px;
  color: var(--grey-ulight-color);
  line-height: 20px;
}
footer p,
footer p:last-child {
  float: none;
  clear: both;
  text-align: center;
}
footer p:nth-child(1)::after {
  content: attr(data-year);
}
footer p:nth-child(2)::before {
  content: "";
}

/* Gracias por confiar en nosotros */
footer p:last-child::before {
  content: "• ";
}
footer p:last-child::after {
  content: " •";
}

/* ----------Desktop---------- */
@media (min-width: 380px) {
  footer p {
    clear: none;
    float: left;
  }
  footer p:last-child {
    clear: none;
    float: right;
  }
  footer p:nth-child(2)::before {
    content: attr(data-splitter);
  }
}
