.cursor-pointer{
	cursor: pointer;
}

.bg-gray-lightly{
	background-color: #E8E7E7;
}

.bg-primary{
	background-color: #0088e8;
}
.btn-primary{
	background-color: #0088e8;
}
.text-primary{
	color: #0088e8;
}

.btn-outline-primary{
	background: transparent;
    color: #0088e8;
	border: 1px solid #0088e8;
	color: #0088e8 !important;
}
.btn-outline-primary:hover{
	background: #0088e8;
    color: white;
	border: 1px solid #0088e8;
	color: white !important;
}

header .header-main{
	position: fixed;
	top: 0;
	left: 0;
	min-width:80px;
	padding:10px;
	height:100vh;
	z-index: 999999;
}

header .header-main .menu{
	margin-top: 40px;
}

header .header-main .name-title{
	color: white;
	font-size: 42px;
	font-weight: bold;
	transform: rotate(270deg);
	position: absolute;
	top: 260px;
	left: -105px;
}

header .open-menu {
	position: fixed;
	top: 0;
	left: -300px; /* partenza fuori vista a sinistra */
	background-color: black;
	padding: 10px;
	height: 100vh;
	color: white;
	transition: left 0.5s ease;
	z-index: 9999;
  }
  
  /* Menu visibile (entra fino a 80px da sinistra) */
  header .open-menu.slide-in {
	left: 80px;
  }
  
  /* Menu invisibile (torna fuori a sinistra) */
  header .open-menu.slide-out {
	left: -300px;
  }
  
header .open-menu .list{
	margin-top: 40px;
}

@media screen and (min-width:992px){
	.content-page{
		margin-left: 80px; /* dimensione del menu side */
	}	
}
.lista-3-col {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media screen and (max-width:991px){
	.lista-3-col li {
		width: 50%;
		box-sizing: border-box;
		padding-right: 15px;
		padding-bottom: 15px;
	}
}
@media screen and (min-width:992px){
	.lista-3-col li {
		width: 33.3333%;
		box-sizing: border-box;
		padding-right: 15px;
		padding-bottom: 15px;
	}
}


@media screen and (min-width:992px){
	footer{
		margin-left: 80px; 
	}
}

footer{
	margin-top:15px;
	border-top: 12px solid #E30221;
	padding-top: 10px;
}