footer {
  background-color: var(--color-3);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;

  /* align-items: center; */
  width: 100%;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.footer-block,
.footer-block a {
  color: white;
  margin-bottom: 2rem;
  /*font-size: 0.9rem;*/
  line-height: 150%;
}

.footer-block h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: white;
}

.footer-block li,
.footer-block p {
  line-height: 170%;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.1rem;
}

.footer-block ul {
  margin-left: 0;
  padding-left: 0;
}

.footer-block ul li {
  list-style-type: none;
  margin-bottom: 0.5rem;
}

.footer-block ul.footer-nav {
  border-right: 5px solid var(--color-7);
  max-width: 250px;
}

.footer-block ul.footer-nav li {
  display: flex;
  align-items: center;
}

.footer-block ul.footer-nav li a {
  color: white;
  display: block;
  padding: 0.3rem;
  margin: 0;
  font-size: 1.2rem;

  /* background-color: var(--color-7); */
  border-radius: 5px;
  text-decoration: none;
}

/*
.footer-block ul.footer-nav li a::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--color-1);
  content: "";
  margin-right: 0.7rem;
}
*/

.footer-block ul.footer-nav li a:hover {
  background-color: var(--color-7);
  padding: 0.3rem 0 0.3rem 1rem;
}

.footer-block p.zivnost {
  font-size: 0.8rem !important;
  margin-top: 2rem;
}

@media screen and (min-width: 700px) {
  footer {
    padding: 2rem;
  }
}

@media screen and (min-width: 1000px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  footer .footer-block {
    flex: 0 1 33%;
    font-size: 1rem;
  }
}
