@font-face {
font-family: Montserrat-Light;
src:  url("../fonts/Montserrat-Light.ttf" ) format( "truetype" );
font-weight: 400;
font-style: normal;
} 


@font-face {
font-family: Montserrat-SemiBold;
src:  url("../fonts/Montserrat-SemiBold.ttf" ) format( "truetype" );
font-weight: 400;
font-style: normal;
} 


header {
  background-color: white;
  color: #fff; /*
  display: flex;
  justify-content: space-between;
  align-items: center; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* border-bottom: solid 1px #c6cdd5; */
  /* box-shadow: 0 1px 20px rgba(1,1,1,0.1);  *7
  /* box-shadow: 0 0.1px 5px rgba(1,1,1,0.1);  */
  /* box-shadow: 0 0.1px 5px rgba(1,1,1,0.3);  */
  box-shadow: 1px 1px 1px rgba(1,1,1,0.1);
  z-index: 1000;
}


.nav_ext {
 display: flex; 
 justify-content: space-between; 
 align-items: center;
 width: 100%;
}

/*
@media (min-width: 1920px) {
  header {
   width: 95%;
   margin: 0 auto;
  }
}
*/

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  outline:none;
}

.logo img {
  margin-left: 44px;
}

.logo h1 {
 font-family: 'Montserrat-SemiBold', sans-serif;
 font-size: 20px;
 color: #0f2b46;
 font-weight: 500;
 letter-spacing: -0.4px;
 margin: 0;
 margin-top: -2px;
 margin-left: 9px;
 white-space: nowrap; 

}

nav {
 margin-left: 60px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 7px;
  display: flex;
  gap: 30px;
}

nav li {
 
}

nav a {
  font-family: 'Montserrat-Light', sans-serif;  
  font-size: 19px;
  font-weight: 200;
  color: #0f2b46;
  text-decoration: none;
}

nav a:hover {
  padding-bottom:14px;
  color: #3785ab;
  text-decoration: none;
  border-bottom: solid 3px #006494;
}


/* Stili per il menu a tendina */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown svg {
  margin-left: -2px; /* Spazio tra il testo e la freccia */
  fill: none;
  stroke: #000; /* Colore della freccia */
  stroke-width: 2; /* Spessore della linea della freccia */
  width: 20px; /* Larghezza della freccia */
  height: 20px; /* Altezza della freccia */
  vertical-align: top;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 50px;
	white-space: nowrap; /* Evita che il testo vada a capo */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
	border-radius: 5px;
	margin-top: 8px;
	padding-bottom: 1px; 
}

.dropdown-content a {
    color: black;
    padding: 12px; 
    /* text-decoration: none; */
    display: block;
	width: auto; /* Imposta la larghezza automatica per adattarsi al contenuto */
	font-size: 17px;
	
}

.dropdown-content a:hover {

}


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

.dropdown:hover .dropbtn {  /* voce principale */
   /* background-color: #006494;
	border-radius: 5px; 
	padding: 4px 8px;
	color: white;
	font-weight: bold;
	border-bottom: 0px;*/
}



.login {
  margin-left: auto;
  margin-right:33px;
}

.login ul {
  list-style: none;
  margin: 0;
  padding-top: 15px;
  display: flex;
  gap: 7px;
}

.login li {
  font-family: 'Montserrat-Light', sans-serif;  
  font-size: 19px;
  font-weight: 200;
  color: #0f2b46
}

.login a {
  font-family: 'Montserrat-Light', sans-serif;  
  font-size: 17px;
  font-weight: 200;
  color: #0f2b46;
  text-decoration: none;
}

.login a:hover {
  color: #3785ab;
  text-decoration: none;
}

