#footer {
  background-color: #002d65;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* NADPIS */

.footerHeader {
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footerHeader h2 {
  color: #fff;
  font-weight: 700;
}

.footerHeader p {
  color: #fff;
  margin-top: 2%;
}

/* SEKCE A LEGAL */
/* Nastavení zobrazení odkazů je v css/main.css (řádek 44-53) */

.sectionsLegalWrapper {
  margin-top: 3%;
  display: flex;
  justify-content: center;
  color: #fff;
}

.footerLinks {
  width: 20%;
  text-align: center;
}

/* ALL RIGHTS RESERVED */

.footerInfo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 2%;
  margin-bottom: 1%;
  color: #fff;
  font-size: 9rem;
}

.footerInfo p {
  font-weight: 200;
}

.footerInfo a {
  text-decoration: underline;
}

/* RESPONZIVITA */

@media only screen and (max-width: 850px) {
  /* NADPIS */
  .footerHeader {
    margin-top: 5%;
    padding: 10% 10%;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  /* SEKCE A LEGAL */
  .sectionsLegalWrapper {
    margin-top: 1%;
    padding: 0 10%;
    justify-content: left;
    flex-direction: column;
  }

  .footerLinks {
    margin-top: 10%;
    width: 100%;
  }

  .footerLinks h6 {
    margin-bottom: 5%;
  }

  /* FOOTER INFO */
  .footerInfo {
    margin-top: 5%;
    margin-bottom: 3%;
  }

  .footerInfo p {
    font-size: 0.8rem;
  }
}
