@font-face {
  font-family: Marcellus;
  src: url(./font/Marcellus/Marcellus-Regular.ttf);
}


html {
			
            animation: fadeInAnimation ease 1s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}


body{
    margin: 0;
	font-family: 'Marcellus', sans-serif;
    font-size: 20px;
    padding-top: 330px;
	    background-color: #ddd;
		background-image: url("./images/Do-tla2.jpg");
background-repeat: no-repeat;		
  /*  transition: padding-top .5s ease;
    -webkit-transition: padding-top .5s ease;
    -moz-transition: padding-top .5s ease;
    -ms-transition: padding-top .5s ease;
    -o-transition: padding-top .5s ease;
	*/

  animation: mymove 25s infinite;
   animation: mymove 25s infinite;  	
	
  margin-bottom: 20px;	
  background-attachment: fixed;
  
  
     background-position-y: top;
  background-position: center;
  

}


header{
    width: 100%;
    height: 300px;
    background-color: #000;
background-image: url("./images/Do-tla1.jpg");

background-repeat: no-repeat;
  
  animation: mymove 25s infinite;
   animation: mymove 25s infinite;

 margin: auto;  
  background-attachment: fixed;
   background-position-y: top;
  background-position: center;
    text-align: center;
    position: fixed;
	  z-index:9999;
    top:0;
/*
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
*/
}

@keyframes mymove {
  50% {background-position: top;}
}

header h1{
 /*   background-color: rgba(0,0,0,.2); */
    font-size: 60px;
    color: #fff;
	opacity:1;
    line-height: 95px;
    text-transform: uppercase;
    font-weight: 100;

    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
	
	/*	  text-shadow: 2px 2px 10px #000; */
	}
h2 {
	  text-align: center;
}
.cntr {
	  text-align: center;
}
	
nav-nav{
	margin:auto;

}

header nav-nav{
    position: absolute;
    bottom: 0;
   
    line-height: 50px;
    width: 100%;
    background-color: rgba(0,0,0,.3);
	
	display:flex;
	 justify-content: center; 

	 	  z-index:9999;
}

section{
    padding: 20px 60px 60px 60px;
    margin-bottom: 140px;
	min-height:840px;
	background-color: rgba(255,255,235,.3);
}

.wwrapper{
   max-width: 1200px;
    margin: 0 auto;

}

/*

    sticky header

*/


.sticky-header{
    padding-top: 300px;
}

.sticky-header header{
    height: 50px;

    transition: height 0.5s ease;
}


.sticky-header h1{
			opacity:0;
    transform: scaleY(0.5);
    background-color: rgba(0,0,0,0); 
}


/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    menu.css
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/

body::-webkit-scrollbar {
  display: none;
    -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none; 
}
#header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 50px;
  background: rgba(0,0,0,0.5);
  width: 100%;
  box-sizing: border-box;
  z-index:9999;
}

nav {
max-width:850px;

  margin: auto;
  z-index:9999;
}
nav ul {
  margin: auto;
  padding: 0px;
  display: flex;
  
z-index:9999;

 /*
 display: flex;
 justify-content: center; 
 */
}
nav ul li {
  list-style: none;
  position: relative;
    margin: auto;
}
nav ul li.sub-menu:before {
  content: '  ▾ ';
  position: absolute;
  color: #fff;
  line-height: 50px;
  right: 6px; 
}
nav ul li.active.sub-menu:before {
  content: '  ▴ '
}




nav ul li ul {
  position: absolute;
  left: 0px;
  background: rgba(0,0,0,0.8);
  display: none;
}
nav ul li.active ul {
  display: block;
  
  
  
  
  
  
}
nav ul li ul li {
  display: block;
  width: 200px;

}
nav ul li a {
  text-decoration: none;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  display: flex;
 justify-content: center;   
    border-bottom: 1px solid rgba(0,0,0, 0.2);
	
}

nav ul li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}


.menu-toggle {
  color: #fff;

  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}


   /* MENU MOBILNE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */ 
    
@media (max-width: 860px) {
#header {
    padding: 0 20px;
display:flex;	
	 justify-content: center; 
  }
  .menu-toggle {
    display: block;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */	
  }
  
header h1{
    font-size: 40px;
    color: #fff;
    line-height: 60px;
}
  
nav {
	display:block;
    position: absolute;
    width: 0px;

    background: #000;
    top: 50px;

	background: rgba(0,0,0,0.9);
visibility: hidden;	
opacity:0;
  -webkit-transition: all .2s linear 0s;
  transition: all .2s linear 0s;		

  }
nav.active {
    position: absolute;
	display: block;
    width: 350px;
	top:50px;
	background: rgba(0,0,0,0.8);
	visibility: visible;
	opacity:1;
	
	
	
	

	
	
  }
  nav ul {
    display: block;
    text-align: center;
  }
  nav ul li a {
    border-bottom: 1px solid rgba(0,0,0, 0.2);



  }
  nav ul li.active ul {

    position: relative;
  }

  nav ul li ul li {
    width: 100%;
  }
  
  
#footer {
	font-family: 'Marcellus', sans-serif;
    font-size: 10px;
}	
  
  
}



/* FOOTER xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

#footer {
	font-family: 'Marcellus', sans-serif;
    font-size: 20px;
    background-color: rgba(0,0,0,.6);
  color:#ddd;
  position: fixed;
  bottom: 0;
  padding: 0px;
  height: 40px;
  width: 100%;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* social media links xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

.fa {
  padding: 3px 5px 10px 5px;
  font-size: 10px;
  width: 14px;
  height: 10px;
  text-align: center;
  text-decoration: none;
  margin: 2px 2px;
}
.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
    width: 16px;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}  