header {
  background-color: var(--color-main);
  position: fixed;
  width: 100%;
  z-index: 100;
}

.header-in {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: relative;
}

.site-brand {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  font-size: 1.5rem;
  /*font-family: 'Roboto Condensed', sans-serif;*/
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 900;
}

.site-brand a {
  color: white;
  text-decoration: none;
}

.site-brand a:hover {
  text-decoration: underline;
  color: black;
}

.site-brand span {
  display: block;
}

.site-brand .logo {
  /*font-family: var(--font-roboto), serif;*/
  font-family: var(--font-montserrat), sans-serif;

   font-weight: 900;
  /*font-weight: bold;*/
  line-height: 150%;
  display: block;
  margin-top: 7px;
  font-size: 1rem;
}

.site-brand .name {
  /*font-family: var(--font-roboto), serif;*/
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 900;
  line-height: 150%;
}

/* Navigace */
ul.nav {
  justify-content: flex-end;
  align-items: center;
  list-style-type: none;
  display: none;
  margin: 0;
  padding: 0;
}

ul.nav li {
  margin: 0 1rem;
  font-weight: bold;
  /*font-family: 'Roboto Condensed', sans-serif;*/
  font-family: var(--font-montserrat), sans-serif;
  font-size: 1.2rem;
  color: white;
}

ul.nav li::before {
  content: none;
}

ul.nav li a {
  display: block;
  color: white;
  text-decoration: none;

  /* padding: 7px 15px 10px 15px; */
  line-height: 100%;

  /* border-radius: 5px; */

  /* background-color: var(--color-11); */
}

ul.nav li a:hover {
  color: black;
  text-decoration: underline;
}

ul.nav.mobil {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
}

ul.nav.mobil ul {
  padding-left: 0;
  margin-bottom: 0;
}

ul.nav.mobil li {
  text-align: left;
  width: 100%;
  border-bottom: 1px solid var(--color-2);
  /*font-family: 'Roboto Condensed', sans-serif;*/
  font-family: var(--font-montserrat), sans-serif;
  list-style: none;
}

ul.nav.mobil li.home {
  display: block;
}

ul.nav.mobil li.sub-nav {
  padding: 0.5rem 0 0 1rem;
}

ul.nav.mobil li:last-child {
  border-bottom: none;
}

ul.nav.mobil li a {
  padding: 1rem 1rem !important;
  font-size: 1.1rem;
}

ul.nav.mobil li a:hover {
  color: var(--color-main);
  text-decoration: none;
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 27px;
  height: 23px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  margin: 0;
  padding: 0;
}

.burger:hover span {
  background-color: black;
}

/* Speed contact */

/* **************************** */

/* TODO - Promyslet */

/*
.speed-contact {
  padding: 10px;
  margin: 110px 0 30px 0;
  background-color: var(--color-9);
  border-radius: 10px;
}

.speed-contact li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.speed-contact a {
  font-size: 1.1rem;
  font-weight: bold;
  color: black;
  text-decoration: none;
  padding: 5px 0;
}

.speed-contact a:hover {
  color: var(--color-1);
}
*/

@media screen and (min-width: 420px) {
  .site-brand .logo {
    margin-top: 0;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1045px) {
  .burger {
    display: none;
  }

  ul.nav li ul {
    display: none;
    position: absolute;
    top: 50px;
    background-color: var(--color-main);
    padding: 0.5rem;
    list-style: none;
  }

  ul.nav li.home {
    display: none;
  }

  ul.nav li ul.show {
    display: block;
  }

  ul.nav {
    display: flex;
  }

  ul.nav.mobil {
    display: flex;
  }

  .speed-contact {
  }
}

@media screen and (min-width: 1100px) {
  .burger {
    display: none;
  }

  ul.nav li {
    font-size: 1.3rem;
  }
}

