@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
	--color-chiaro: #FFFFFF;
	--color-scuro: #000000;
	--color-primario: #d83423;
	--color-neutro: #888;
}
html {
	scroll-behavior: smooth;
}
body, html, input, textarea, select, button {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
	line-height: 1.5em;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	box-sizing: border-box;
}
body {
	overflow-x: hidden;
	background: var(--color-chiaro);
	color: var(--color-scuro);
}
header, section, footer {
	/*border:1px dashed var(--color-neutro);*/
	padding: 1%;
	margin: 50px 1%;
}
section img {
	border-radius: 10px;
}
.btn-img {
	display: inline-block;
	width: 200px;
	height: 200px;
	border: none;
	background-image: url("images/btn_green.png");
	background-size: cover;
	cursor: pointer;
	margin: 0 auto;
}
/* HOVER */
.btn-img:hover {
	background-image: url("images/btn_yellow.png");
}
/* CLICK */
.btn-img:active {
	background-image: url("images/btn_target.png");
}
header .grid { align-items: center; }

.move {
  animation: move 10s linear infinite;
}

@keyframes move {
  0% {
    transform: translateX(0) scaleX(1);
  }
  50% {
    transform: translateX(400%) scaleX(1);
  }
  50.01% {
    transform: translateX(400%) scaleX(-1);
  }
  100% {
    transform: translateX(0) scaleX(-1);
  }
}

.grid {
	display: grid;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: space-between;
	column-gap: 30px; /* gap solo tra le colonne */
}
.grid.vam {
	align-items: center;
}
.grid.c50 {
	grid-template-columns: 1fr 1fr; /* 50% / 50% */
}
.grid.c30 {
	grid-template-columns: 1fr 1fr 1fr; /* 33% / 33% / 33% */
}
.grid.c6040 {
	grid-template-columns: 3fr 2fr; /* 60% / 40% */
}
.grid.c4060 {
	grid-template-columns: 2fr 3fr; /* 40% / 60% */
}
.border {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	padding: 10px;
	border-radius: 10px;
}
.grid.card > div {
	text-align: center;
	border: 3px solid var(--color-primario);
	padding: 10px;
	border-radius: 10px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.grid.card.noborder > div {
	border: none;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.grid.card > div:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
a {
	color: var(--color-primario);
	outline: none;
	text-decoration: none;
}
.img_responsive { width:1200px; max-width:100%; background:#fff; }

.pulsante {
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	color: var(--color-chiaro);
	background: var(--color-primario);
	padding: 10px 15px;
	border-radius: 15px;
	font-weight: bold;
	text-transform: uppercase;
	border: none;
	margin: 10px 0;
	font-size: 1.2rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
}
.pulsante:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.material-symbols-rounded {
	font-size: 2em !important;
	vertical-align: middle !important;
}
h1, h2, h3, h4, h5, h6, p, ol, ul {
	margin: 0 0 1rem 0;
	padding: 0;
	text-wrap: balance;
	line-height: 1.5em;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	line-height: initial;
	text-align: center;
	margin: 4vh 0;
}
.sottotitolo {
	color: var(--color-neutro);
}
ol, ul {
	list-style-type: none;
}
p {
	margin: 1rem 0;
}
h1 {
	font-size: 5rem;
	margin: 0 auto 4.5vh;
	color: var(--color-accento);
}
h2 {
	font-size: 4em;
	color: var(--color-primario);
	font-weight: bold;
	line-height:1.3em;
	text-shadow:0 0 10px rgba(0,0,0,.4);
}
h3 {
	font-size: 2.5rem;
	color: var(--color-primario);
	font-weight: normal;
	text-shadow:0 0 10px rgba(0,0,0,.4);
}
h4 {
	font-size: 1rem;
}
h5 {
	font-size: 0.8rem;
}
h6 {
	font-size: 0.6rem;
}
.br20 {
	border-radius: 20px;
}
table {
	width: 100%;
	border: none;
	margin: 30px auto;
}
th, td {
	padding: 2px 5px;
	border-bottom: 1px dotted var(--color-primario);
}
th {
	background: 1px dotted var(--color-scuro);
	color: var(--color-chiaro);
}
.col50.nopadd {
	padding: 0 !important;
	margin-right: 1%;
	width: 49%
}
input[type="text"], input[type="password"], input[type="email"], input[type="number"], select, textarea {
	background: var(--color-chiaro);
	padding: 7px;
	border-radius: 5px;
	width: 100%;
	margin-bottom: 10px;
	font-size: 1rem;
	border: 1px solid #ccc;
}
select {
	padding: 9px 5px 10px;
}
select:invalid {
	color: var(--color-neutro);
}
select option {
	font-size: 1rem;
}
label {
	display: inline-block;
	margin: 15px 0 5px;
}
label:hover {
	color: #772650;
}
.cx {
	text-align: center;
}
.sx {
	text-align: left;
}
.dx {
	text-align: right;
}
img.w100 {
	width: 100%;
	height: auto;
}
.jx {
	text-align: justify;
}
.flsx {
	float: left;
}
.fldx {
	float: right;
}
.mrgl {
	margin-left: 20px;
}
.mrgr {
	margin-right: 20px;
}
hr {
	margin: 30px auto;
	border: none;
	height: 2px;
	background: var(--color-primario);
}
.hide {
	display: none;
}
.vaml {
	align-self: middle;
}
.bg-primario {
	background: var(--color-primario);
	color: var(--color-chiaro);
}
.boxed {
	margin: 0 auto;
	width: 80vw;
}
.boxed_small {
	margin: 0 auto;
	width: 800px;
	max-width: 100%;
}
.highlight {
	margin: 0 auto;
	width: 600px;
	max-width: 60%;
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.4em;
	font-style: italic;
	color: var(--color-primario);
}
.margt {
	margin-top: 40px;
}
.margb {
	margin-bottom: 40px;
}
.margt_x2 {
	margin-top: 80px;
}
.margb_x2 {
	margin-bottom: 80px;
}
.padt {
	padding-top: 40px !important;
}
.padb {
	padding-bottom: 40px !important;
}
.mobile {
	display: none;
}
.avviso {
	padding: 10px;
	background: #F90;
	color: #fff;
	text-align: center;
	border-radius: 5px;
	margin-bottom: 20px;
}
.iub-p { /* per il paragrafo iubenda imposto no balanced */
  text-wrap: auto;
}
.js .animate {
	overflow: hidden;
}
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.animate > * {
	opacity: 0;
}
.animate.is-visible > * {
	animation: fadeUp 0.7s ease-out forwards;
}
.animate.is-visible > *:nth-child(1) {
	animation-delay: 0.05s;
}
.animate.is-visible > *:nth-child(2) {
	animation-delay: 0.15s;
}
.animate.is-visible > *:nth-child(3) {
	animation-delay: 0.25s;
}
.animate.is-visible > *:nth-child(4) {
	animation-delay: 0.35s;
}
@media (max-width: 1200px) {
	.grid.c50, .grid.c30, .grid.c6040, .grid.c4060 {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
@media (max-width: 768px) {
	.grid.c50, .grid.c30, .grid.c6040, .grid.c4060 {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	h1 {font-size:3rem;}
	h2 {font-size:2.5rem;}
	h3 {font-size:1.5rem;}
}
@media (prefers-reduced-motion: reduce) {
	.animate > * {
		animation: none !important;
		opacity: 1;
		transform: none;
		transition: none;
	}
}