/* CSS Document */

@import url("https://fonts.googleapis.com/css?family=Dosis:400,700");

/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  font: 16px/1.5 "Dosis", sans-serif;
  display: flex;
  flex-direction: column-reverse;
  background: var(--main-white-color);
  padding: 5px;
}

.page-footer ul {
  display: flex;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.page-footer ul li:not(:last-child) {
  margin-right: 20px;
}


/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 550px) {


  .page-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	padding: 20px;
  }

  .page-footer ul {
    margin-bottom: 0;
  }
}
