@charset "utf-8";
/* CSS Document */

/* ============================
	GENERALI
   ============================ */

 :root {
   --primary: #0C3553;
   --secondary: #aa2a14;
   --tertiary: #ff0000;
   --font: "Neue Frutiger World";
   --wNormal: normal;
   --wBold: bold;
   --wBlack: 900;
   --wLight: 300;
 }

 .color1 {
	color: var(--primary);
 }

  .color2 {
  	color: var(--secondary);
  }

  .color3 {
	color: var(--tertiary);
  }

 .bg-color1 {
	background-color: var(--primary);
 }

 html {
 	scroll-behavior: smooth;
 }

body {
	font-family: "Neue Frutiger World Book", sans-serif;
	font-style: normal;
	font-size: 14px;
	color: white;
	background: rgb(196,214,0);
	background: -webkit-linear-gradient(bottom, rgba(196,214,0,1) 0%, rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(bottom, rgba(196,214,0,1) 0%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to top, rgba(196,214,0,1) 0%, rgba(255,255,255,1) 100%);
}

.row {
	margin-left:0px;
	margin-right:0px;
}

h1, h2, h3, h4, p, a {
	font-family: var(--font), sans-serif;
	font-weight: var(--wBold);
	font-style: normal;
	color: var(--primary);
}

p {
	font-family: var(--font), sans-serif;
  	font-weight: var(--wNormal);
}

a {
  	text-decoration: underline;
}

a:hover, a:focus, a:active {
  	color: var(--primary);
}

.navbar-toggler:focus { /* rimuove l'ombra di selezione del bottone di Bootstrap */
  	box-shadow: 0 0 0 0px !important;
}

.btn-violet {
	color: var(--primary);
	display: block;
	margin: 20px auto;
	background-color: white;
	border-width: 0px;
	border-bottom-right-radius: 20px;
	padding: 10px 35px;
	text-decoration: none;
	border: 1px solid white;
}

.button {
	color: white;
	background: rgb(63, 158, 234);
	background: linear-gradient(180deg, rgba(63, 158, 234, 1) 0%, rgba(14, 48, 109, 1) 100%);
	border: 0px solid transparent;
	outline: none;
	font-family: var(--font), sans-serif;
	font-weight: var(--wBold);
	font-size: 2.2rem;
	padding: .5rem 5.5rem;
	max-width: 550px;
  	text-decoration: none;
	text-align: center;
}

@media (max-width: 768px) {
	.button {
		font-size: 1.2rem;
		max-width: auto;
	}
}


#partecipa_body_2 {
	background: var(--primary);
	border-bottom-right-radius: 20px;
	text-align: center;

}

#partecipa_body_1:hover,
.button:hover {
	color: white;
	background: var(--primary) ;
}

@media (max-width:375px) {
	#partecipa_body_1,
	.button {
		font-size: 1rem;
		padding: .5rem 1.8rem;
		max-width: 250px;
	}
}

@media(max-width:1400px) {
  	#partecipa_body_1 {
    	font-size: 1.6rem;
  	}	
}

.list {
	margin-bottom: 1rem;
	padding-left: 1rem;
}

.page {
	background: white;
	max-width: 1440px;
	display: flex;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.page-corner {
	border-bottom-right-radius: 30px;
}

/* ============================
	MENU
   ============================ */

.skip-to-main-content-link {
	position: absolute;
	left: -9999px;
	z-index: 999;
	padding: 1em;
	background-color: black;
	color: white;
	opacity: 0;
}

.skip-to-main-content-link:focus {
	left: 50%;
	transform: translateX(-50%);
	opacity: 1;
}

#attiva_menu {
	max-width: 50px;
	margin:20px auto;
	cursor: pointer;
}

.bi-list {
	font-size: 3rem;
	color: white;
}

#logo {
	margin-top: 0px;
	margin-bottom: -25px;
	margin-left: 3px;
}

@media screen and (max-width: 768px) {
	#logo {
		height: 100px !important;
		display: block;
		margin-top: 0px;
		margin-bottom: -25px;
		margin-left: 0px;
	}
}

#menu {
	background-color: var(--primary);
	position: relative;
	z-index: 2000;
	height: 80px;
}

#menu_list {
	padding-top: 10px;
	background: var(--primary);
}

#menu_list li {
	float: left;
	list-style-type: none;
	padding-top: 20px;
}

#menu_list li a {
	display: block;
	margin-left: 10px;
	padding-right: 10px;
	text-decoration: none;
	color: white;
	font-weight: var(--wNormal);
	font-size: 15px;
	border-right: 1px solid white;
}

@media (max-width: 991px) {
	#menu_list li {
		float: none;
		clear: both;
		margin-bottom: 25px;
		border-bottom: 1px solid white;
	}
	#menu_list li a {
		border-right: 0px solid white;
	}
	#menu {
		margin-bottom: 0px;
	}
}

#menu_list li a:hover, #menu_list li a.active {
	font-weight: var(--wBlack);
}

.modal-body {
	background-color: white;
}

/* ============================
	FORM
   ============================ */

#errore {
	color: #ac182d;
	font-weight: var(--wBold);
	text-align: center;
	font-size: 24px;
}

#errore_ocr {
	color: #ac182d;
	font-weight: var(--wBold);
	text-align: center;
	font-size: 24px;
}

label, input, select {
  	color: var(--primary);
}

p.col-1 {
	width: 1%;
}

.form-group {
	margin-bottom: 15px;
}

small.small {
	font-size: 10px;
	line-height: 9px;
}

@media (max-width: 575px) {
	label {
		font-size: .80rem;
	}
}

.bi-info-circle-fill:hover {
  	color: var(--secondary);
}

/* ============================
	FOOTER
   ============================ */

 footer {
 	background-color: var(--primary);
	padding: 25px 15px;
	font-size: 12px;
 }

 footer p {
 	color: white;
 	font-family: var(--font), sans-serif;
 	font-weight: var(--wNormal);
 	font-style: normal;
 	text-align: center;
 }

 footer p a {
 	color: white;
 	text-decoration: underline;
 	font-weight: var(--wBold);
 }

 footer p a:hover, footer p a:active, footer p a:focus {
   	color: white;
 }

 @media(max-width:576px) {
   	.mail_info {
     	word-break: break-all;
   	}
 }

/* =========================
	COOKIE BAR
	======================= */

.cc-window {
	font-size: .85rem !important;
	line-height: 1.2em !important;
}

@media (max-width:767px) {
	.cc-window {
		font-size: .75rem !important;
		line-height: 1.1em !important;
	}
}
