/*-------------------------- LOGO E MENU----------------------------------- */
.header {
  overflow: hidden;
  background-color:#eee;
  padding: 20px 10px;
}

.header a {
  float: left;
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 1vw; 
  line-height: 25px;
  border-radius: 4px;
}

.header a:hover {
  background-color: black;
  color: lightyellow;
}

.header a.active {
 /* background-color:black ;*/
  color: gold;
}
/*--menu--*/
.header-right {
  
  float: right;
  padding-top:95px;
  }
  
.header-rightuk {
  
  float: right;
  padding-top:95px;
  }
  /* Media Queries */
  
 
@media screen and (max-width: 1200px) {
	
.header-right {
	
	padding-top:0px;
	}

  
	} 
@media screen and (max-width: 1200px) {
	
.header-rightuk {
	
	padding-top:0px;
	}

  
	} 
 
@media screen and (max-width: 1024px) {
	
.header-right {
	
	}
} 
 
@media screen and (max-width: 767px) {
	
.header-right {
	
	}
}



/*-------------------------- MENU e Botão DropDown------------------------- */

.topnav {
  overflow: hidden;
  
 /* background-color: #333; */
}

.topnav a {
  float: left;
  display: block;
  color: #00adef;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.05vw;
  border-radius: 5px;
  /*background-color: white;
  border: 2px solid #00adef;*/
  cursor: pointer;
  margin-right:5px;
}

.topnav a.active {
 /* background-color: #4CAF50;*/
  border: 1px solid #00adef;
  color: #00adef;
  
}

.topnav .icon {
  display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}
.dropdown .active {
	
  background-color: transparent;
  border-radius: 5px;
  border: 1px solid #00adef;
  /*border:none;*/
  color: #00adef;
  padding: 17px 28px;
  font-size: 1.05vw;
  cursor: pointer;
  margin-right:5px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}
.dropdown .dropbtn {
  background-color: transparent;
  border-radius: 5px;
  /*border: 1px solid #00adef;*/
  border:none;
  color: #00adef;
  padding: 17px 28px;
  font-size: 1.05vw;
  cursor: pointer;
  margin-right:5px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100px;
	border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #00adef;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
 /* background-color: #555;*/
  color: white;
  background-color: #00adef;
}

.dropdown-content a:hover {
   /* background-color: #ddd;*/
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 1200px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .topnav.responsive {position: relative;background-color:rgba(255,255,255,0.8);}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
	
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
	font-size:15px;
	
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
	font-size:15px;
  }
}
@media screen and (max-width: 1200px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
  .header-rightuk {
    float: none;
  }
}


