/* Header x Navbar*/

header{
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.750);
  transition: background-color 1.0s ease-in-out;
  z-index: 10;
  text-decoration: none;
  animation: fade-up 1.5s;
}

.logo{
  float: left;
  margin-left: 20px;
  width: 50px; 
  height: auto;
}  
  
.menu-toggle{
  display: none;
  cursor: pointer;
  padding: 10px;
}
  
.menu-toggle span{
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: transform 0.4s ease-in-out;
}
  
.menu-toggle.open span:nth-child(1){
  transform: rotate(-45deg) translate(-5px, 6px);
}
  
.menu-toggle.open span:nth-child(2){
  opacity: 0;
}
  
.menu-toggle.open span:nth-child(3){
  transform: rotate(45deg) translate(-5px, -6px);
}
  
nav{
  padding: 0.25%;
  font-size: 20px;
  margin: 5px;
  width: auto;
}
  
ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  float: right;
}
  
li{
  display: inline-block;
  margin-right: 20px;
}
  
li a{
  display: block;
  color: #fff !important;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none !important;
}

  /* Telefonní velikost navbaru */

@media only screen and (max-width: 768px) {
  .menu-toggle{
    display: block;
    }
  
  nav{
    display: none;
    }
  
  nav.active{
    display: block;
    width: 100%; 
    }
  
  ul{
    float: none;
    text-align: center; 
    background-color: black; 
    padding: 0% !important;
    }
  
  li{
    display: block;
    margin: 10px 0;
    }
    
  .logo{
    display: none;
    }
}
  
  header.scroll {
    background-color: black !important;
  }

img{
  max-width: 120%;
  height: auto;
}

/* Footer */

.footer{
background:#000;
padding:30px 0px;
margin-top: 20%;
}

.footer .row{
width:100%;
margin:1% 0%;
padding:0.6% 0%;
color:gray;
font-size:0.8em;
display: block;
}

.footer .row a{
text-decoration:none;
color:gray;
transition:0.5s;
}

.footer .row a:hover{
color:#fff;
}

.footer .row ul{
width:100%;
}

.footer .row ul li{
display:inline-block;
margin:0px 30px;
}

.footer .row a i{
font-size:2em;
margin:0% 1%;
}

/* Footer ikony */

.fa-brands{
  margin-left: 1.8%;
  margin-right: 1.8%;
  margin-top: 1.8%;
}

.ikony{
  font-size: 250%;
  color: #FF8C24;
  text-decoration: none;
}

.footer a{
  color: #FF8C24;
}

.footer a:hover{
  color: #fff;
}

.spoluprace{
  color: #FF8C24;
}

.spoluprace:hover{
  color: #fff;
}

/* Mobilní velikost footeru */

@media (max-width:720px){
.footer{
padding:5%;
}
.footer .row ul li{
display:block;
margin:10px 0px;
}
.footer .row a i{
margin:0% 3%;
}
}