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

/* 📦 Body container */
.bodi {
  display: flex;
  flex-direction: column;
  min-height: 120vh;
  padding: 0;
  overflow-y: scroll;              
}


.bodi::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  background: transparent;

}

/* 🌐 Navigation */
.navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  background: gray;
  border-bottom: 1px solid gray;
  /*box-shadow: 0px 10px 5px #EEE;*/
  min-height: 6vh;
}

.navigation a {
  text-decoration: none;
  display: block;
  padding: clamp(0.5em, 1vw, 1.2em);
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  line-height: 1.2;
  color: white;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.navigation a:hover {
  background: #1565C0;
}

/* 🖼️ Logo */
.brand {
  position: fixed;
  left: 0.3vh;
  top: 0.3vh;
  z-index: 9999;
  min-height:10px !important;
}
.brand input[type="image"] {
  width: clamp(80px, 10vw, 160px);
  height: auto;
}
/* 📱 Responsive Nav */
.navigation .bar {
  display: none;
}

@media screen and (max-width: 800px) {
  .navigation {
    justify-content: space-around;
  }
  .brand {
    display: none;
  }
  .navigation a {
    display: none;
  }
  .navigation .bar {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .navigation {
    flex-direction: column;
    padding: 0;
  }
  .navigation a {
    text-align: left;
    padding-left: 3rem;
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .navigation li {
    width: 100% !important;
  }
}

/* 📝 Medium content area */
.medium {
  max-width: clamp(300px, 60vw, 600px);
  margin: 0 auto;
}

.medium p {
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  margin-top: 1rem;
}

.medium button {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

/* ✅ Cookie modal */
#modalCookie1 .modal-dialog {
  width: clamp(300px, 55%, 800px) !important;
}

#modalCookie1 .modal-content {
  padding: 10px;
  font-size: 1.2em;
}

/* 📦 Checkbox custom */
.containerCK {
  position: relative;
  cursor: pointer;
  user-select: none;
  display: inline-block;
}

.containerCK input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.checkmark {
  background-color: #eee;
  border-radius: 5px;
  border: 2px solid silver;
  width: clamp(20px, 2vw, 30px);
  height: clamp(20px, 2vw, 30px);
}

/* Checked state */
.containerCK input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Indicator */
.containerCK input:checked ~ .checkmark:after {
  display: block;
  content: '';
  position: absolute;
  left: 6px;
  top: 4px;
  width: 10px;
  height: 5px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* 🦶 Footer */
.footer {
  width: 100%;
  background-color: gray;
  color: #EDEDED;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

/* 🎯 Media queries desktop optimization */
@media screen and (min-width: 1024px) {
  .titolo {
    font-size: 4rem;
  }

  .medium p {
    font-size: 2rem;
  }

  .logo-intestazione {
    width: 180px;
    height: 180px;
  }
}
/*********************************************************************/
.footer-flex > div{ border:0px solid red 
}	

.footer-flex {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: gray;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2px 12px;
  font-size: 1.4rem;
  z-index: 999;
  min-height: 6vh;
  border:0px solid yellow;
}

.footer-flex a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.3rem;
  display: inline-block;
}

.footer-flex a:hover {
  text-decoration: underline;
}

.footer-flex .col-footer {
  flex: 1 1 30%;
  min-width: 200px;
  padding: 5px;
  box-sizing: border-box;
}

.footer-flex .centro {
  text-align: center;
}


.footer-flex .sinistra {
  text-align: left;
}
.footer-flex .sinistra a{
  
  color:white
}

.footer-flex .destra {
  text-align: right;
}

.link-set {
  display: flex;
  gap: 1rem;            /* Spazio tra i link */
  flex-wrap: wrap;      /* Permette il ritorno a capo su schermi piccoli */
  justify-content: flex-end;
}

.link-set a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;  /* Evita che i link vadano a capo internamente */
  font-size: 1.3rem;
}

.link-set a:hover {
  text-decoration: underline;
}
/* 🎯 Mobile: impilamento */
@media screen and (max-width: 600px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-flex .col-footer {
    width: 100%;
    text-align: center;
  }
}


/*******************************************************/
/* Contenitore generale */
.container{
	min-width:30vw;
	margin-top:5vh; 
	background:#d4ffE9;
	height:900px;	
	
	
}
.row-1{

	height:100%;
	border:10px soldi red;
}
.colonna{
	position:relative;
	
	padding-top:3%; 
	height:100%;
	
	
	margin:0px;
	padding:0px;
}
.colonna-1{
	padding-top:3vh;
	background-color: #009999;
	background-image: url(img/bg.png);
	}
	
.colonna-2{
	padding-top:3vh;
	position:relative;
	
	}	


.row-91 {
	position:relative;
	left:15px; top:0;
	height:20%; 
	border:0px solid blue; 
	width:100%;
	
}
.row-91 div:nth-child(1){	
	position:absolute; 
	left:5px;
	padding:0;						
	margin:0; 
	height:100%;				
	background:url(img/intestazioneautovalutazione.png);
	background-position:09% center;
	background-size:cover;
	background-repeat:no-repeat;
	border:0px solid red;	
	width:170px;
}
.row-91 div:nth-child(2){
	position:absolute; 
	top:0px; left: 22%; 
	font-family: myLabster; 
	font-size: clamp(1rem, 1.52vw, 4rem);
}
.row-91 div:nth-child(3){   
	position:absolute; 
	top:40%; 
	left:22%; 
	font-size: clamp(0.8rem, 1.2vw, 2.3rem);
}

.row-92 {
	position:relative;
	top:0;
	left:15px; 
	border:0px solid blue; 
	width:100%;
	height:80%;
	overflow-y:hidden;
	
}

.classe-sfondo{
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100vw;
	height:150vh;
	background: url(img/informatica.jpg) center top repeat-x;		
}
/******************************************************************/
	.display-numeri{
		
		font-family: myLabster; 
		font-size: clamp(1rem, 1.52vw, 3rem);
		
	}

	.flex-container {
		display: flex;
		flex-direction: row;
		flex-flow: row wrap;
		justify-content: space-around;
		height:300px  ;
		padding: 0;
		margin: 0;
		list-style: none;
		padding-top:50px;
		background: #009999;		
		background-image: url(img/bg.png);
	}
		   
	.flex-item {
		width: 200px;
		height: 250px;
		font-weight: bold;
		font-size: 1.8em;
		text-align: center;
		color:black;
	}
	.flex-item span {
		display:block;
		margin-left:auto;
		margin-right:auto;
		font-family:arial;
		border:6px solid #009999;
		width:180px;
		height:180px;
		border-radius:50%;
		text-align:center;
		line-height:17.5rem;
		font-size:4rem !important;
		background:#6D8891;
		
		/*line-height:12rem;*/
			box-shadow: 		inset 0px 0px 8px #000;
			-webkit-box-shadow: inset 0px 0px 8px #000;
			-moz-box-shadow: 	inset 0px 0px 8px #000;
			-o-box-shadow: 		inset 0px 0px 8px #000;
		color:#E9E9E9;
	}	
		
