html, body{
	height: 100%;
	width: 100%;
	display: flex;
	flex: 1;

}
.content{
	
	text-align: center;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: stretch; 
	display: flex;
	flex: 1;
}

.supertit{
	max-height: 16%;
	display: flex;
	text-align: center;
	background-color: #2A68AF;
}
.supertit img{
	height: 100%;
	margin: 0 auto;
}
.boxlist{
	display: flex;
	flex: 1;
	position: relative;
}
.footer{
	border-top: 1px solid lightgrey;
	text-align: center;
	padding: 0.2rem;
	background-color: #2A68AF;
	color: #FFF;
	font-size: 0.8rem;
}

.titolisez{
	border-top: 1px solid lightgrey;
	border-bottom: 1px solid lightgrey;
	padding: 0.5rem;
}
.titolisez h1{
	font-size: 2rem;
	font-weight: bold;
}

.slider{
	width: 100%;
	height: 100%;
	position: relative;
}
.slide{
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    opacity: 0;
    transition: all 1s 0s;
}

.show{
	opacity: 1;
}


.slide .textbox{
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	text-align: left;
	padding: 3rem;
	background-color: white;
}

.slide .imgbox{
	flex-direction: column;
    justify-content: center;
    /* justify-items: center; */
    flex: 1;
    max-width: 40%;
    overflow: hidden;
    display: flex;
    object-fit: cover;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.slide .imgbox.fullsize{
	flex-direction: column;
    justify-content: center;
    /* justify-items: center; */
    flex: 1;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    object-fit: cover;
    align-items: center;
}
.slide img{
	width: 100%;
}

.titolo{
	font-size: 4rem;
	font-weight: bold;
}
.sottotitolo{
	font-size: 2rem;
	font-weight: bold;
}
.descrizione{

}

body{
	line-height: auto;
}
p{
	margin: 0.4rem 0rem;
}
