*{
padding:0;
margin:0;
}


nav{
 display: flex;
 justify-content: space-around;
 width:100%;
 height:85px;
 position: sticky;
 top:0;
 z-index: 999;
 padding: 10px 0 0;
 background: #00539CFF;
}

nav ul{
  display: flex;
}

nav ul li {
  list-style: none;
}

nav ul li a{
   display: block;
   color: #fff;
   padding: 0 20px 0;
   text-decoration: none;
   font-weight: bold;
   line-height: 80px; 
   font-size: 15px;
}

nav ul li a:hover,
nav ul li.active a{
 color: #FFD662FF;
}

.title{
 display: flex;
}

.title img{
 padding:0 30px 0;
}

.title h1{
 font-size: 1.5em;
 color: #fff;
 line-height: 80px;
}

#Logo{
 height: 60px;
 width: 70px;
}

#menu{
 display: none;
}

footer{
 width: 100%;
 background: #00539CFF;
 color: #fff;

}

.footer_Info{
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding-top: 20px;
}

.footer_Info img{
 width: 25px;
 height: 25px;
}

#Contacts{
 padding-right: 100px;
}

#Contacts, #Quick_Links, #Quick_Links a{
  color: #fff;
}

#Quick_Links{
 text-align:center;
}

#footer_logo{
 width: 300px;
 height: 150px;
 padding-left: 100px;
}

@media only screen and (max-width:1300px){
	.title h1{
    font-size: 1.2em;
  }
}


@media only screen and (max-width:1200px){
   
   
   nav{
     display: block;
	 padding-top: 30px;
	 height: 90px;
   }
   
   #menu {
     display: block;
	 cursor:pointer;
	 float: right;
	 height: 60px;
	 width: 60px;
	 padding:10px 40px 0;
   }
  
  
   #Logo{
    height: 60px;
    width: 70px;
  }


   nav ul {
    display: block;
	width:100%;
	overflow: hidden;
	transition: max-height 0.5s;
	background: #00539CFF;
   }
   
   nav ul li {
	 padding: 25px 50px 25px;
	 text-align:center;
   }
   
   nav ul li a{
    font-size: 30px;
   }
   
   #MenuItems{
    width:100%;
    overflow: hidden;
	transition: max-height 0.5s;
   }

  .title h1{
    font-size: 1.7em;
	line-height: 85px;
  }
  
  .title img{
    padding:0 40px 0;
  }
  
  .footer_Info img{
    width: 25px;
    height: 25px;
  }
  

  #Contacts{
    padding-right: 10px;
  } 

  #Quick_Links{
   text-align:left;
  }

  #footer_logo{
   width: 200px;
   height: 100px;
   padding-left: 20px;
  }


}