
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}


html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-size:62.5%;
	background: #fff;
}

*{
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
}

/************************************************/
/* 				Testo							*/
/************************************************/
h1{
	position: relative;
	top: 0px;
	left: 0px;
	margin: 0px 0px 0px 0px;
	padding: 1.0rem 0rem 1.0rem 0rem;
	font-weight: bold;
	font-family: 'Manrope', sans-serif;
	font-size: 2.4rem;
	line-height: 2.8rem;
	color: #b64f98;
}

h2{
	position: relative;
	top: 0px;
	left: 0px;
	margin: 0px 0px 0px 0px;
	padding: 1.0rem 0rem 0.8rem 0rem;
	font-weight: bold;
	font-family: 'Manrope', sans-serif;
	font-size: 2rem;
}

h3{
	position: relative;
	top: 0px;
	left: 0px;
	margin: 0px 0px 0px 0px;
	padding: 0rem 0rem 0rem 0rem;
	font-size: 1.8rem;
	font-weight: bold;
	font-family: 'Open Sans', serif;
}

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	text-align: left;	
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 2rem;
}

a{
	text-decoration: none;
	color: #b64f98;
	font-weight: 700;
}

a:hover{
	text-decoration: none;
	color: #b64f98;
	font-weight: 700;
}

.fa-input {
	font-family: FontAwesome !important;
}

.text-center{
	text-align: center;
}

.text-right{
	text-align: right;
}

/********************************************************/
/* 				Form generica							*/
/********************************************************/
.campoForm{
	margin: 3rem 0;
}

form label{
	position: relative;
	width: 100%;
	padding: 0;
	font-weight: 500;
	padding: 1rem 0 0 0;
}

form input[type="text"], form input[type="password"], form textarea, form select{
	position: relative;
	width: 100%;
	border: 0.1rem solid #ccc;
	padding: 1rem 3%;
	border-radius: 4rem;
	margin: 0 0 1.6rem 0;
	font-size: 1.6rem;
}

form input[type="text"]:focus, form input[type="password"]:focus, form textarea:focus, form select:focus{
	border: 0.1rem solid #b64f98;
	box-shadow: 0.1rem 0.1rem 0.4rem #c8c8c8;
}

form textarea{
	min-height: 10rem;
	font-size: 1.2rem;
	color: #444444;
}

form select{
	color: #444444;
}

form input[type='radio'], input[type='checkbox'] {
	cursor: pointer;
	margin: 0 0;
}

.checkbox{
	position: relative;
	float: left;
	width: 8%;
	padding: 0.5rem 0.2rem 0 0;
	text-align: right;
}

.checkboxLabel{
	position: relative;
	float: left;
	width: 92%;
	padding-top: 0.5rem;
	font-weight: 400;
}

.checkboxLabel label{
	padding: 0;
	font-weight: 400;
}

form input[type="submit"], form input[type="reset"], .tasto{
	display: inline-block;
	margin: 1rem 1%;
	padding: 0.8rem 5%;
	border: 0.2rem solid #b64f98;
	border-radius: 4rem;
	color: #b64f98;
	background: #fff;
	cursor: pointer;
	transition: background 0.4s, color 0.4s;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	font-size: 1.6rem;
}

form input[type="submit"]:hover, form input[type="reset"]:hover, .tasto:hover{
	background: #b64f98;
	color: #ffffff;
}

.errore{
	color: #cf3838;
}

span.errore{
	font-size: 1.1rem; 
	color: #cf3838;
}

@media only screen and ( max-width: 767px){

	form input[type="text"], form input[type="password"], form textarea, form select{
		padding: 1.4rem 3%;
		font-size: 1.8rem;
	}

	form input[type="submit"], form input[type="reset"]{
		padding: 1rem 5%;
		font-size: 1.8rem;
	}
}

/************************************************/
/* 				Box principali					*/
/************************************************/
#container{
	position:relative;
	min-height:100%;
	width: 100%;
	left: 0px;
}

#contenitore{
	position:relative;
	width: 100%;
}

.contenuto{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}

#testata{
	position: relative;
	width: 100%;
	padding: 2rem 5% 1rem 5%;
	background: #b64f98;
}

#testataObbliquaExt{
	position: relative;
	width: 100%;
	height: 6rem;
	oveflow: hidden;
}

#testataObbliquaInt{
	width: 100%;
	height: 100%;
	background-color: #b64f98;
	clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

#logo{
	position: relative;
	float: left;
	width: 20%;
	padding-top: 2rem;
}

#logo img{
	width: 60%;
}

#info{
	position: relative;
	float: left;
	width: 80%;
	text-align: right;
	color: #fff;
	font-size: 3rem;
	font-weight: 500;
	line-height: 3rem;
}

span.dateInfo{
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 2.2rem;
}

.boxTitolo{
	position: relative;
	width: 90%;
	max-width: 80rem;
	margin: 4rem auto;
	color: #e8c1dc;
	font-size: 3rem;
	font-weight: 500;
	line-height: 3.6rem;
}

.boxTitolo{
	position: relative;
	width: 90%;
	max-width: 80rem;
	margin: 4rem auto;
	color: #e8c1dc;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 3rem;
	border: 0.1rem solid #ccc;
	border-radius: 1rem;
	padding: 2rem 5%;
	background: #fff;
}

span.titoloDate{
	font-size: 1.8rem;
	font-weight: 300;
}

.boxForm{
	position: relative;
	width: 90%;
	max-width: 80rem;
	margin: 4rem auto;
	border: 0.1rem solid #ccc;
	border-radius: 1rem;
	padding: 2rem 5%;
	background: #fff;
}

.corpoSx, .corpoDx{
	position: relative;
	float: left;
	width: 45%;
	margin: 2rem 0;
}

.corpoDx{
	text-align: center;
}

.corpoDx img{
	width: 90%;
}

.corpoSx{
	width: 55%;
	padding: 0 2%;
}

@media only screen and ( max-width: 767px){
	#logo{
		width: 30%;
	}

	#logo img{
		width: 100%;
	}

	#info{
		width: 70%;
		font-size: 1.6rem;
		line-height: 2.2rem;
	}

	span.dateInfo{
		font-size: 1.2rem;
	}

	#testataObbliquaExt{
		height: 4rem;
	}

	.corpoSx, .corpoDx{
		position: relative;
		float: none;
		width: 100%;
	}

	.corpoDx img{
		width: 100%;
	}
}

/************************************************/
/* 				box fine						*/
/************************************************/
#fineObbliquaExt{
	position: relative;
	width: 100%;
	height: 6rem;
	oveflow: hidden;
}

#fineObbliquaInt{
	width: 100%;
	height: 100%;
	background-color: #e8c1dc;
	clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
}

#fineInfo{
	background-color: #e8c1dc;
}

#fine{
	position:absolute;
	padding: 0rem;
	left: 0px;
	bottom: 0px; 
	width: 100%;
	text-align: left;
	z-index: 30;
	font-size: 1.2rem;
	font-weight: 300;
	text-align: right;
	color: #444;
}

@media (max-width: 767px) {

	#fineObbliquaExt{
		height: 4rem;
	}

}


/************************************************/
/* 				Utilità							*/
/************************************************/
.vuoto {
	clear:both;
}

.visible-mob{
	display: none;
}

@media (max-width: 767px) {
	.visible-mob{
		display: block;
	}
	
	.hidden-mob{
		display: none;
	}
}