/*Version 1.0 - 13/06/2023*/
/* https://www.toptal.com/developers/cssminifier */
/* webfont */
/* https://gwfh.mranftl.com/fonts */
/* filter compute: https://codepen.io/sosuke/pen/Pjoqqp */

/*GOOGLE TEST MOBILE*/
/*412 x 823*/ 

/*GOOGLE TEST DESKTOP*/
/*800 x 600*/


/* <weight>: Use a value from 300 to 800 */
/* <uniquifier>: Use a unique and descriptive class name */

.open-sans {
	font-optical-sizing: auto;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
}
/*stili widget recensioni*/
.ti-widget-header {
	text-align: center;
}
.ti-header-write-btn {
	background-color: rgba(205, 186, 14, 1.0) !important;
}
.ti-widget-header {
	border: none !important;
}
/*stili particolari*/
.nomobile {
	display: none !important;
}
.nascosto {
	display: none !important;
}
.alluppercase {
	text-transform: uppercase;
}
.text-center {
	text-align: center !important;
}
.text-center h3, .text-center p {
	margin: auto;
}
.text-right {
	text-align: right !important;
}
.text-left {
	text-align: left !important;
}
.text-uppercase {
	text-transform: uppercase;
}
.has-padding-vert {
	padding-top: 1em !important;
	padding-bottom: 1em !important;
}
.has-padding-hor {
	padding-left: 1em !important;
	padding-right: 1em !important;
}
div.errore {
	width: 100%;
	padding: 1em;
	background: rgba(180, 0, 0, 1);
	color: #fff;
	font-weight: 700;
	display: none;
}
.rounded-circle {
		border-radius: 50% !important;
}

/*stili base*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
		margin: 0;
		padding: 0;
		overflow-x: hidden;
		/*height: 100%; /* Mantieni la compatibilità con layout basati su 100% */
}
body {
		margin: 0;
		padding: 0;
		font-size: 16px;
		/*font-family: 'Questrial', Arial, Helvetica, sans-serif;*/
		font-family: "Open Sans", sans-serif;
		font-optical-sizing: auto;
		font-weight: 400;
		font-style: normal;
		font-variation-settings:"wdth" 100;
		color: rgba(103, 101, 101, 1);
		line-height: 1.5em;
		height: auto; /* Permetti al body di espandersi oltre il viewport */
		min-height: 100%; /* Mantieni un'altezza minima */
}
a {
	color: rgba(0,0,0,1);
	text-decoration: none;
	position: relative;
}
a.nocolor {
	color: rgba(103,101,101,1);
}
a::before  {
	content: '';
	position: absolute;
	width: 100%;
	height: 0.1em;
	border-radius: 0.1em;
	background-color: rgba(219, 90, 50, 1);
	bottom: -0.2em;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform .3s ease-in-out;
}
a:hover::before, a:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}
a.nounderline::before  {
	 width: 0;
	 height: 0;
}
strong {
	font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2em;
	font-weight: 600;
	
}
p {
	line-height: 1.5em;
}
ul {
	margin: 0;
	padding: 0;
}
li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bggrey {
	background-color: #ececec !important;
}

.btn, .btn-default {
	background-color: rgba(76, 133, 197, 1);
	background-color: rgba(187, 37, 48, 1);
	color: rgba(255,255,255,1);
	margin: 1em auto;
	padding: 1em;
	word-wrap: break-word;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 1.5em;
	border: none;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	display: inline-block;
	border-radius: 0.25em;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Effetto hover animato con overlay */
.btn::before,
.btn-default::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: #ed1a2a;
	z-index: 0;
	transition: width 0.3s ease-in-out;
}

/* Espansione dell’overlay da sinistra a destra */
.btn:hover::before,
.btn-default:hover::before {
	width: 100%;
}

/* Fa in modo che il testo stia sopra l'overlay */
.btn, .btn-default > * {
	position: relative;
	z-index: 1;
}

/* Alternativa: se non hai figli nel bottone */
.btn span,
.btn-default span {
	position: relative;
	z-index: 1;
}

/* Forza il testo a diventare bianco quando l’overlay è visibile */
.btn:hover,
.btn-default:hover {
	color: white !important;
	background-color: #000;
}

.btn-square {
	border-radius: 0em;
}

/* Override underline di default se usi <a> */
a.btn::before, a.btn-default::before {
	width: 0;
	height: 0;
}
a.btn-default:link,
a.btn-default:visited {
	color: rgba(255,255,255,1);
}

input, button, select, optgroup, textarea, input[type="date"] {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin-bottom:  0.5em;
}
input:focus, textarea:focus, select:focus { 
	/*box-shadow: 0 0 0.8em rgba(86,179,187,1);
	border-color: rgba(86,179,187,1);*/
	box-shadow: 0 0 0.8em rgba(247,173,0,1);
	border-color: rgba(247,173,0,1);

	outline: none; 
} 
input.error, textarea.error, div.error, div.errore, select.error  {
	box-shadow: 0 0 0.8em rgba(180,0,0,1) !important;
	border-color: rgba(180,0,0,1) !important;
	outline: none; 
}
input.warning, textarea.warning, div.warning, select.warning {
	box-shadow: 0 0 0.8em rgba(255,131,0,1) !important;
	border-color: rgba(255,131,0,1) !important;
	outline: none; 
}
input.perfect, textarea.perfect, div.perfect, select.perfect {
	box-shadow: 0 0 0.8em rgba(55, 144, 55, 1) !important; /* Ombreggiatura verde */
		border-color: rgba(71, 150, 71, 1) !important; /* Bordo verde */
		outline: none; 
}
select:required:invalid {
	color: #666;
}
option[value=""][disabled] {
	display: none;
}
option {
	color: #000;
}
.checkbox label {
	display: inline-block !important; 
	font-size: 0.8em;
}
/*SCROLLBAR*/
/* width */
::-webkit-scrollbar {
	width: 0.001em;
}
/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
	background: rgba(0,0,0,0);
}
/* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
	background: rgba(0,0,0,0);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
	background: rgba(0,0,0,0);
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

.brandname {
	font-weight: 600;
	color: #4f4f4f; /* colore di default */
	text-transform: uppercase;
	font-size: 1em;
	font-style: italic;
}
.brandname span.l1{
	color: #000000;
	font-size: 1.2em;
}
.brandname span.l2{
	color: #ed1a2a;
	font-size: 1.2em;
}

.inline-logo-svg {
	height: 1em;
	/*vertical-align: middle;*/
	max-width: 100%;
}

/* HEADER STYLES MOBILE-FIRST AKRA-LIKE */
header {
	width: 100%;
	background-color: #fff;
	background-color: rgba(11, 63, 95, 1.0);
	position: fixed;
	bottom: 0;
	z-index: 1000;
	padding: 0 0 1.5em 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	border-top: 0.5em rgba(236, 236, 236, 1) solid;
	border-top: 0.5em rgba(11, 63, 95, 1.0) solid;
	color: #fff;
}

header a:link, header a:visited {
	color: #fff;
}

.header-container {
	width: 100%;
	/*max-width: 1345px;*/
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	position: relative;
	margin: auto;
}

.header-column {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
}

.logo-col {
	width: auto;
	padding-right: 0.5em;
	flex-shrink: 0;
	display: flex;
	align-items: flex-end;
	border-top: 1em solid rgba(255, 255, 255, 1);
	border-top: 1em solid rgba(11, 63, 95, 1.0);
	height: 5em;
}

.logo-col picture img.logo {
	width: 7.26em;
	height: auto;
			padding-left: 0.7em;
			margin-top: 1em;
			filter: brightness(0) invert(1);
}

.center-col {
	flex-grow: 1;
	position: relative;
	background-color: rgba(255, 255, 255, 1);
	background-color: rgba(11, 63, 95, 1.0);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.mobile-wave {
	width: auto;
	height: 1.2em;
	background: transparent;
	overflow: hidden;
	display: flex;
	justify-content: flex-start;
	background: rgba(236, 236, 236, 1);
	background:rgba(11, 63, 95, 1.0);
	width: 100%;
}

.mobile-wave svg {
	width: 4em;
	height: auto;
	display: block;
	transform: scale(-1, -1); /* Flip orizzontale + verticale */
	filter: invert(86%) sepia(100%) saturate(1%) hue-rotate(2deg) brightness(103%) contrast(101%);
	visibility: hidden;
}

.nav-mobile-center {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-size: 0.75em;
	line-height: 1.2em;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
	background-color: white;
	margin-top: 0.8em;
	background-color: rgba(11, 63, 95, 1.0)
}

.nav-mobile-center .nav-title {
	font-size: 0.65em;
	font-weight: 500;
	letter-spacing: 0.05em;
	opacity: 0.75;
}

.nav-mobile-center .nav-links {
	display: flex;
	gap: 0.3em;
	font-weight: 800;
	font-size: 0.95em;
	white-space: nowrap;
}

.nav-mobile-center .sep {
	opacity: 0.6;
}



.menu-col {
	width: auto;
	padding-left: 0.5em;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	border-top: 1.2em solid #ececec;
	border-top: 1.2em solid rgba(11, 63, 95, 1.0);
	height: 5em;
	padding-right: 0.7em;
}

.menu-toggle {
	display: flex;
	align-items: center;
	gap: 0.3em;
	font-weight: 600;
	font-size: 0.85em;
	color: #aaa;
	padding-top: 0.8em;
	text-decoration: none;
}

.menu-toggle:hover {
	color: #ececec; /* o altro effetto */
}

.menu-toggle:hover .menu-label,
.menu-toggle:hover img {
	opacity: 0.8;
}

.menu-toggle img {
	filter: brightness(0) invert(1);
}



#main-menu {
	position: fixed;
	top: 0;
	right: -100%; /* era left: -100% */
	left: auto;
	height: calc(100vh - 7em);
	width: 100%;
	background-color: #ffffff;
	z-index: 1500;
	display: flex;
	flex-direction: column;
	padding: 2em;
	gap: 2em;
	transition: right 0.3s ease-in-out; /* cambia da left a right */
	overflow: scroll;

}

#main-menu.active {
	right: 0; /* attiva entrando da destra */
}



#main-menu .menu-section {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5em 0;
}

#main-menu .menu-title {
	font-weight: 700;
	font-size: 1.2em;
	text-transform: uppercase;
	margin-bottom: 0.4em;
}

#main-menu li a {
	color: #111;
	display: block;
	padding: 0.3em 0;
	font-size: 1em;
	text-decoration: none;
}

#main-menu li a:hover {
	/*text-decoration: underline;*/
}

#main-menu .btn {
	margin-top: auto;
	align-self: flex-start;
	padding: 0.6em 1.2em;
	font-size: 1em;
}

#main-menu .menu-section.social-links,
#main-menu .menu-section.language-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6em;
	margin-top: 0.5em;
}

#main-menu .menu-section.social-links .menu-title,
#main-menu .menu-section.language-links .menu-title {
	width: 100%;
	margin-bottom: 0.3em;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1em;
	color: rgba(103, 101, 101, 1);
}

#main-menu .menu-section.social-links li,
#main-menu .menu-section.language-links li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.maintitle {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.5em;
}

.review-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  /*height: 100px; /* Altezza desiderata dello scroller */
}

.reviews {
  display: flex;
  width: max-content; /* Settiamo la larghezza al doppio per permettere lo scorrimento continuo */
  animation: scroll 60s linear infinite; /* Regola la durata dell'animazione */
}

.review {
  flex: 0 0 25%; /* Visualizziamo tre recensioni alla volta */
  flex: 0 0 75%;
  box-sizing: border-box;
  padding: 0.85em;
  margin-right: 1.7em;
  background-color: #f0f0f0;

  flex: 0 0 2%;
  height: 6em;
  text-align: center;
}

.review h5 {
	font-size: 1.7em;
	margin-bottom: 0.5em;
	color: rgba(76,133,197,1);
}

.imgreview {
	height: 4em;
	width: auto;
}

/*FOOTER*/

footer {
	text-align: center;
	padding: 1em;
	padding-bottom: 8em;
	border-bottom: 0.0625em solid transparent;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
	background-repeat: no-repeat;
	background-size: 100% 0.5em;
	background-position: top;
}
.privacylink {
	text-transform: uppercase;
	font-size: 0.9em;
	margin-bottom: 1em;
}
.copyrightbox {
	font-size: 0.8em;
	text-align: justify;
}

/*MAIN CONTENT*/
main {
	min-height: calc(100vh - 17em);
}
h1 {
	text-align: center;
	color: rgba(89,89,89,1);
	font-size: 4em;
	line-height: 1.5em;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.07em;
	padding: 0.3em 0;
}

/*VIDEO HERO*/
.mainvideobox {
	position: relative;
	width: 100vw;
	height: 70vh; /* 70% dell'altezza del viewport */
	overflow: hidden;
	background-color: #000;
}
.mainvideo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: calc(100vw / (16 / 9)); /* Mantiene rapporto 16:9 */
	min-height: 100%; /* Garantisce copertura verticale */
	border: none;
}


.blackveil {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.4);
	z-index: 1;
}
/*IMG HERO*/
.mainimagebox {
	position: relative;
	width: 100vw;
	height: 80vh;
	overflow: hidden;
	background-color: #000;
}

.mainimagebox picture,
.mainimagebox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
/*SLOGAN HERO*/
.sloganhero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%); /* leggermente più in basso */
  z-index: 2;
  color: white;
  font-size: 1em;
  text-align: center;
  padding: 1em 1em;
  opacity: 0;
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.5s; /* opzionale */
}
@keyframes fadeUp {
  0% {
    transform: translate(-50%, -30%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
.sloganhero .btn {
	line-height: 1em;
	min-width: 6em;
	background-color: #fff;
	color: #000 !important;
	font-size: 1em;
}
.sloganhero .btn:hover  {
	background-color: #ed1a2a;
	color: #fff !important;
}
.sloganhero .maintext {
	text-transform: uppercase;
	font-size: 2.5em;
	line-height: 1.2em;
	font-weight: 700;
}
.main-container {
	padding: 1em;
	font-size: 1.4em;
}
.main-container .mainimage {
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
}
.row {
	width: 100%;
	/*padding: 0 1em 2em 1em;*/
	/*flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	row-gap: 2em; /* spazio verticale */
}
/* Se c'è anche la classe .gapped, aggiungi spazio orizzontale */
.row.gapped {
	column-gap: 2em;
}
.row-narrow {
	width: 100%;
	margin: 0 auto;
}
.row-block {
	position: relative;
	/*padding: 1em 0 1em 0;*/
	padding: 0;
	text-align: left;
	width: 100%;
}
.row .row-block {
	order: 0; /* Ordine naturale */
}
.row-block .maintext {
		font-size: 1.5em;
}
.main-container h3 {
	text-transform: uppercase;
	padding: 0.5em 0;
	color: rgba(0, 0, 0, 1);
}

.row-block.linked picture {
	overflow: hidden;
	display: block;
	position: relative;
}

.row-block.linked picture img {
	transition: transform 0.6s ease;
	will-change: transform;
}

.row-block.linked:hover picture img {
	transform: scale(1.1);
}

.textblock_stretto {
	padding-top: 1em;
}
.textblock_stretto {
		line-height: 1.4em;
		/*padding: 1.5em 0;*/
	}
.textblock_stretto p {
		padding: 1.5em 0;
	}
.textblock_stretto ul {
    list-style-type: square !important;
    list-style-position: outside;
    padding-left: 1.6em;
    margin-left: 0;
    padding-bottom: 1em;
}

.textblock_stretto ul li {
    display: list-item;
    list-style-type: square !important;
    margin-bottom: 0.3em;
}

h1, h2 {
	margin: auto;
	max-width: 70%;
	text-align: center;
	font-size: 1em;
}

h2 {
	font-style: italic;
}

.boxlogoufficiale .row-block{
	text-align: center !important;
}
.boxlogoufficiale img {
	max-width: 70%;
	height: auto;
	margin: 1em 0;
}

.image-section img {
	max-width: 100%;
}

/*caratteristiche principali  auto*/
/* --- SEZIONE DATI AUTO --- */
* --- SEZIONE DATI AUTO --- */
.mainfeature {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr)); /* MOBILE: 2 colonne */
  gap: 1.2rem 1.6rem; /* spaziatura verticale/orizzontale */
  justify-content: center;
  align-items: start;
  text-align: left;
  margin: 2em 0;
}

/* Struttura interna: icona + testo */
.mainfeature > div {
  display: grid;
  grid-template-columns: auto 1fr; /* icona + testo */
  grid-template-rows: auto auto;   /* 2 righe di testo */
  align-items: center;
  column-gap: 0.6rem;
  row-gap: 0.2rem;
}

.mainfeature img {
  grid-row: span 2;        /* lâ€™icona occupa due righe */
  width: 28px;
  height: 28px;
  align-self: start;
}

.mainfeature strong {
  font-weight: 600;
  display: block;
}

.mainfeature div {
  font-size: 0.95rem;
  color: #222;
  border: 1px solid #ccc;
  padding: 1em;
}

/* --- MAINFEATURE: forza a GRID anche se .row Ã¨ flex --- */
.row.mainfeature {
  display: grid !important;            /* sovrascrive .row { display:flex } */
  grid-template-columns: repeat(2, 1fr); /* MOBILE: 2 colonne */
  gap: 1.2rem 1.6rem;
  align-items: start;
  justify-items: stretch;
  margin-bottom: 1em;
    margin-top: 1em;
}

/* Evita che regole globali allarghino i figli a tutta riga */
.row.mainfeature > div {
  width: auto !important;
  min-width: 0 !important;             /* annulla eventuali min-width ereditati */
  display: grid;
  grid-template-columns: auto 1fr;     /* icona + testo */
  grid-template-rows: auto auto;       /* icona â€œ2 righeâ€ */
  column-gap: .6rem;
  row-gap: .2rem;
}

.row.mainfeature img {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  align-self: start;
}

.row.mainfeature strong { font-weight: 600; display: block; }

/* --- COLORAZIONE BLOCCO PREZZO --- */
.mainfeature .price-green {
    background: rgb(57 134 181);
    border: 1px solid #769be4;
    color: #ffffff;
}
.mainfeature .price-green img {
  filter: brightness(0) invert(1);
}

.mainfeature .price-amber {
  background: #fff7e0;
  border: 1px solid #e6c974;
  color: #b67a00;
}

.mainfeature .price-red {
  background: #f8e9e9;
  border: 1px solid #e0a3a3;
  color: #9d1c1c;
}

.titolo {
	text-align: center;
}
.titolosezione {
	text-transform: uppercase;
	color: #000;
	
}
/* ==========================================================
   CALL CONTATTI
   ========================================================== */

.callcontattaci {
	width: 100%;
	margin-top: 60px;
	padding: 55px 20px;

	background: rgba(11, 63, 95, 1);
	color: #fff;
}

.callcontattaci-inner {
	width: min(1200px, 100%);
	margin: 0 auto;
}


/* TESTO */

.callcontattaci-text {
	max-width: 760px;
	margin: 0 auto 32px;
	text-align: center;
}

.callcontattaci-eyebrow {
	display: block;
	margin-bottom: 8px;

	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;

	opacity: .7;
}

.callcontattaci h2 {
	max-width: none;
	margin: 0 0 12px;

	color: #fff;

	font-size: 30px;
	line-height: 1.2;

	font-style: normal;
	font-weight: 700;
}

.callcontattaci p {
	margin: 0;

	font-size: 16px;
	line-height: 1.6;

	color: rgba(255,255,255,.8);
}


/* AZIONI */

.callcontattaci-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 12px;

	max-width: 950px;
	margin: 0 auto;
}


/* SINGOLA AZIONE */

.contact-action {
	display: flex;
	align-items: center;
	gap: 13px;

	min-height: 76px;
	padding: 15px 17px;

	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.18);

	color: #fff;

	text-align: left;
	text-decoration: none;

	transition:
		background .2s ease,
		transform .2s ease,
		border-color .2s ease;
}

.contact-action::before {
	display: none;
}

.contact-action:hover {
	background: rgba(255,255,255,.15);
	border-color: rgba(255,255,255,.35);

	transform: translateY(-2px);
}


/* AZIONE PRINCIPALE: FORM */

.contact-action-primary {
	background: #fff;
	border-color: #fff;

	color: rgba(11,63,95,1);
}

.contact-action-primary:hover {
	background: #f3f3f3;
	border-color: #f3f3f3;
}


/* ICONA */

.contact-action-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 38px;
	width: 38px;
	height: 38px;
}

.contact-action-icon svg {
	width: 27px;
	height: 27px;

	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* TESTI */

.contact-action strong {
	display: block;

	font-size: 15px;
	line-height: 1.25;
	font-weight: 700;
}

.contact-action small {
	display: block;
	margin-top: 3px;

	font-size: 12px;
	line-height: 1.3;

	color: inherit;
	opacity: .72;
}


/* MOBILE */

@media (max-width: 750px) {

	.callcontattaci {
		margin-top: 40px;
		padding: 42px 18px;
	}

	.callcontattaci-text {
		margin-bottom: 25px;
	}

	.callcontattaci h2 {
		font-size: 25px;
	}

	.callcontattaci p {
		font-size: 14px;
	}

	.callcontattaci-actions {
		grid-template-columns: 1fr;
		max-width: 500px;
	}

	.contact-action {
		min-height: 70px;
	}

}

/* ==========================================================
   HERO CONTACT ACTIONS
   ========================================================== */

.hero-contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
    margin-top: 22px;
}

.hero-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 42px;
    padding: 9px 16px;

    border: 1px solid rgba(255,255,255,.65);
    background: rgba(0,0,0,.18);

    color: #fff;
    text-decoration: none;

    font-size: 13px;
    line-height: 1;
    font-weight: 700;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.hero-contact-btn::before {
    display: none;
}

.hero-contact-btn:hover {
    background: rgba(255,255,255,.18);
    border-color: #fff;

    transform: translateY(-2px);
}

.hero-contact-btn svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* CTA principale */

.hero-contact-primary {
    background: #fff;
    border-color: #fff;

    color: rgba(11,63,95,1);
}

.hero-contact-primary:hover {
    background: rgba(255,255,255,.90);
    color: rgba(11,63,95,1);
}

/* ==========================================================
   SERP LOCATION
   ========================================================== */

.locations-serp {
    width: 100%;
    padding: 30px 0 60px;
}

.locations-serp-inner {
    width: min(1300px, calc(100% - 40px));
    margin: 0 auto;
}

.locations-serp-heading {
    max-width: 800px;
    margin: 0 auto 28px;
    text-align: center;
}

.locations-serp-heading h3 {
    margin: 0 0 8px;
    padding: 0;

    font-size: 24px;
    line-height: 1.25;

    text-transform: none;
    color: #222;
}

.locations-serp-heading p {
    margin: 0;

    font-size: 15px;
    line-height: 1.55;

    color: #666;
}


/* MAPPA */

.locations-map {
    width: 100%;
    height: 560px;

    border-radius: 10px;
    overflow: hidden;

    background: #eee;

    box-shadow: 0 8px 28px rgba(0,0,0,.08);
}


/* POPUP */

.locations-map-popup {
    min-width: 180px;
}

.locations-map-popup strong {
    display: block;

    margin-bottom: 3px;

    color: #222;

    font-size: 14px;
    line-height: 1.3;
}

.locations-map-popup small {
    display: block;

    margin-bottom: 9px;

    color: #777;
    font-size: 11px;
}

.locations-map-popup a {
    display: inline-block;

    color: #0b3f5f;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.locations-map-popup a::before {
    display: none;
}


/* ELENCO LOCATION */

.locations-list-section {
    padding-top: 42px;
}

.locations-list-title {
    margin: 0 0 24px;
    padding: 0;

    text-align: center;

    font-size: 22px;

    color: #222;

    text-transform: none;
}

.locations-area-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 30px;
}

.location-area-group {
    border-top: 2px solid #0b3f5f;
    padding-top: 14px;
}

.location-area-group h3 {
    margin: 0 0 12px;
    padding: 0;

    color: #222;

    font-size: 15px;
    line-height: 1.3;

    text-transform: uppercase;
    letter-spacing: .04em;
}

.location-area-group ul {
    margin: 0;
    padding: 0;
}

.location-area-group li {
    padding: 7px 0;

    border-bottom:
        1px solid rgba(0,0,0,.08);

    list-style: none;
}

.location-area-group a,
.location-area-group span {
    font-size: 14px;
    line-height: 1.4;
}

.location-area-group a {
    color: #333;
    text-decoration: none;
}

.location-area-group a:hover {
    color: #0b3f5f;
}


/* TABLET */

@media(max-width:900px) {

    .locations-map {
        height: 470px;
    }

    .locations-area-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}


/* MOBILE */

@media(max-width:600px) {

    .locations-serp {
        padding: 20px 0 40px;
    }

    .locations-serp-inner {
        width: calc(100% - 28px);
    }

    .locations-map {
        height: 420px;
        border-radius: 6px;
    }

    .locations-area-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .locations-list-section {
        padding-top: 32px;
    }

}


.location-list-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.location-name {
    margin-bottom: 7px;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 700;
    color: #333;
}

.location-experiences {
    margin: 0;
    padding: 0;
}

.location-experiences li {
    margin: 0;
    padding: 0;

    border: 0;
    list-style: none;
}

.location-experiences a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;

    padding: 4px 0;

    color: #666;
    text-decoration: none;

    font-size: 12px;
    line-height: 1.4;
}

.location-experiences a::before {
    display: none;
}

.location-experiences a:hover {
    color: #0b3f5f;
}

.location-experience-arrow {
    flex-shrink: 0;

    color: #0b3f5f;
    font-size: 15px;

    transition: transform .2s ease;
}

.location-experiences a:hover .location-experience-arrow {
    transform: translateX(4px);
}
.locations-map-popup {
    min-width: 220px;
}

.locations-map-popup strong {
    display: block;
    margin-bottom: 2px;

    font-size: 15px;
    line-height: 1.3;

    color: #222;
}

.locations-map-popup small {
    display: block;
    margin-bottom: 10px;

    font-size: 11px;

    color: #777;
}

.locations-map-experiences {
    padding-top: 9px;
    border-top: 1px solid rgba(0,0,0,.1);
}

.locations-map-experiences-title {
    display: block;
    margin-bottom: 6px;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;

    color: #0b3f5f;
}

.locations-map-experiences a {
    display: block;

    padding: 4px 0;

    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;

    color: #333;
    text-decoration: none;
}

.locations-map-experiences a::before {
    display: none;
}

.locations-map-experiences a:hover {
    color: #0b3f5f;
}

/* ==========================================================
   SERP EVENTI
   ========================================================== */

.events-list {
    width: 100%;
    padding: 30px 0 60px;
}

.events-list-inner {
    width: min(1300px, calc(100% - 40px));
    margin: 0 auto;
}

.events-list-title {
    margin: 0 0 28px;
    padding: 0;

    text-align: center;

    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;

    color: #222;
    text-transform: none;
}


/* ==========================================================
   GRID
   ========================================================== */

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* ==========================================================
   CARD
   ========================================================== */

.event-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;

    border: 1px solid rgba(0,0,0,.06);

    box-shadow:
        0 3px 10px rgba(0,0,0,.04),
        0 10px 25px rgba(0,0,0,.04);

    display: flex;
    flex-direction: column;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.event-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 6px 16px rgba(0,0,0,.06),
        0 16px 35px rgba(0,0,0,.08);
}


/* ==========================================================
   IMMAGINE
   ========================================================== */

.event-card-image {
    display: block;
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;
    background: #eee;
}

.event-card-image::before {
    display: none;
}

.event-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.045);
}

.event-card-image-empty {
    width: 100%;
    height: 100%;

    background: #eee;
}


/* ==========================================================
   DATA EVENTO
   ========================================================== */

.event-card-date {
    position: absolute;
    left: 14px;
    bottom: 14px;

    display: inline-block;

    padding: 7px 10px;

    background: rgba(11,63,95,.95);
    color: #fff;

    border-radius: 4px;

    font-size: 12px;
    line-height: 1.2;

    font-weight: 700;

    box-shadow: 0 3px 10px rgba(0,0,0,.18);
}


/* ==========================================================
   CONTENUTO
   ========================================================== */

.event-card-content {
    padding: 18px 20px 20px;

    display: flex;
    flex-direction: column;
    flex: 1;
}


/* location */

.event-card-location {
    margin-bottom: 8px;

    color: #777;

    font-size: 11px;
    line-height: 1.3;

    font-weight: 700;
    text-transform: uppercase;

    letter-spacing: .06em;
}


/* titolo */

.event-card-title {
    margin: 0 0 12px;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 700;

    text-transform: none;
}

.event-card-title a {
    color: #222;
    text-decoration: none;
}

.event-card-title a::before {
    display: none;
}


/* descrizione */

.event-card-description {
    margin: 0 0 18px;

    color: #666;

    font-size: 14px;
    line-height: 1.55;
}


/* link finale */

.event-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    width: fit-content;

    margin-top: auto;

    color: #222;

    font-size: 13px;
    line-height: 1.3;

    font-weight: 700;

    text-decoration: none;
}

.event-card-link::before {
    display: none;
}

.event-card-link span {
    font-size: 17px;

    transition: transform .2s ease;
}

.event-card-link:hover {
    color: #0b3f5f;
}

.event-card-link:hover span {
    transform: translateX(5px);
}


/* ==========================================================
   EMPTY
   ========================================================== */

.events-empty {
    padding: 35px 0;

    text-align: center;

    color: #777;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

    .event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}
.lang-no

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

    .events-list {
        padding: 20px 0 40px;
    }

    .events-list-inner {
        width: calc(100% - 28px);
    }

    .event-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .event-card-content {
        padding: 17px 18px 19px;
    }

    .event-card-title {
        font-size: 18px;
    }

    .event-card-date {
        left: 12px;
        bottom: 12px;

        padding: 6px 9px;

        font-size: 11px;
    }

}

/* MOBILE */

@media (max-width: 600px) {

    .hero-contact-actions {
        gap: 6px;
        margin-top: 18px;
    }

    .hero-contact-btn {
        min-height: 40px;
        padding: 8px 12px;

        font-size: 12px;
    }

    .hero-contact-btn svg {
        width: 16px;
        height: 16px;
    }

}

.experience-features {
    padding: 55px 0;
}

.experience-features + .experience-features {
    padding-top: 0;
}

.experience-features h2 {
    margin: 0 0 12px;
}

.experience-features-intro {
    max-width: 760px;
    margin: 0 0 28px;
}

.experience-feature-categories {
    display: grid;
    gap: 28px;
}

.experience-feature-category h3 {
    margin: 0 0 14px;
    font-size: 17px;
}

.experience-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
}

.experience-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.experience-feature-icon {
    display: flex;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
}

.experience-feature-icon svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.7;
}

.experience-feature-title {
    line-height: 1.45;
}

.experience-map-section {
    padding: 55px 0;
}

.experience-map-section .titolo {
    margin-bottom: 12px;
}

.experience-map-intro {
    max-width: 760px;
    margin: 0 0 25px;
}

.experience-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(240px, .8fr);
    gap: 24px;
    align-items: stretch;
}

.experience-map {
    width: 100%;
    min-height: 470px;
    border-radius: 4px;
    overflow: hidden;
    background: #eee;
}

.experience-map-places {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, .12);
}

.experience-map-place {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    line-height: 1.4;
}

.experience-map-place small {
    display: block;
    margin-top: 3px;
    color: #777;
    font-size: 12px;
}

.experience-map-number {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    border: 1px solid currentColor;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-size: 12px;
    font-weight: 700;
}

.experience-map-place.main-location {
    font-weight: 700;
}

.activities-list{
    width:100%;
    padding:40px 0 70px;
}

.activity-grid{
    width:min(1400px, calc(100% - 40px));
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:28px;
}

.activity-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 26px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.activity-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 34px rgba(0,0,0,.13);
}

.activity-card-image{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    overflow:hidden;
    background:#eee;
}

.activity-card-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform .4s ease;
}

.activity-card:hover .activity-card-image img{
    transform:scale(1.035);
}

.activity-card-image-empty{
    width:100%;
    height:100%;
    background:#eee;
}

.activity-card-content{
    padding:22px 22px 24px;

    display:flex;
    flex-direction:column;
    flex:1;
}

.activity-card-location{
    margin-bottom:7px;

    font-size:13px;
    line-height:1.3;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.03em;

    color:#777;
}

.activity-card-title{
    margin:0 0 12px;

    font-size:18px;
    line-height:1.2;
}

.activity-card-title a{
    color:#222;
    text-decoration:none;
}

.activity-card-description{
    margin-bottom:18px;

    font-size:15px;
    line-height:1.55;
    color:#555;
}

.activity-card-link{
    display:inline-flex;
    align-items:center;
    gap:7px;

    margin-top:auto;

    color:#222;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
}

.activity-card-link span{
    transition:transform .2s ease;
}

.activity-card-link:hover span{
    transform:translateX(4px);
}

.activities-empty{
    padding:30px 0;
    text-align:center;
    color:#777;
}


@media(max-width:1000px){

    .activity-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}


@media(max-width:650px){

    .activities-list{
        padding:25px 0 45px;
    }

    .activity-grid{
        width:calc(100% - 28px);
        grid-template-columns:1fr;
        gap:20px;
    }

    .activity-card-content{
        padding:18px 18px 20px;
    }

    .activity-card-title{
        font-size:20px;
    }

}

/* ==========================================================
   SERP ESCURSIONI
   ========================================================== */

.activities-list {
    width: 100%;
    padding: 25px 0 60px;
}


/* griglia */

.activity-grid {
    width: min(1300px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* card */

.activity-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;

    border: 1px solid rgba(0,0,0,.06);

    box-shadow:
        0 3px 10px rgba(0,0,0,.04),
        0 10px 25px rgba(0,0,0,.04);

    display: flex;
    flex-direction: column;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.activity-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 6px 16px rgba(0,0,0,.06),
        0 16px 35px rgba(0,0,0,.08);
}


/* immagine */

.activity-card-image {
    display: block;
    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;
    background: #eee;
}

.activity-card-image::before {
    display: none;
}

.activity-card-image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.activity-card:hover .activity-card-image img {
    transform: scale(1.045);
}


/* contenuto */

.activity-card-content {
    padding: 18px 20px 20px;

    display: flex;
    flex-direction: column;
    flex: 1;
}


/* località */

.activity-card-location {
    margin-bottom: 8px;

    color: #777;

    font-size: 11px;
    line-height: 1.3;

    font-weight: 700;
    text-transform: uppercase;

    letter-spacing: .06em;
}


/* titolo */

.activity-card-title {
    margin: 0 0 12px;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 700;

    text-transform: none;
}

.activity-card-title a {
    color: #222;
    text-decoration: none;
}

.activity-card-title a::before {
    display: none;
}


/* descrizione */

.activity-card-description {
    margin: 0 0 18px;

    color: #666;

    font-size: 14px;
    line-height: 1.55;
}


/* link */

.activity-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    width: fit-content;

    margin-top: auto;

    color: #222;

    font-size: 13px;
    line-height: 1.3;

    font-weight: 700;

    text-decoration: none;
}

.activity-card-link::before {
    display: none;
}

.activity-card-link span {
    font-size: 17px;

    transition: transform .2s ease;
}

.activity-card-link:hover span {
    transform: translateX(5px);
}


/* stato vuoto */

.activities-empty {
    padding: 35px 0;

    text-align: center;

    color: #777;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

    .activity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

    .activities-list {
        padding: 20px 0 40px;
    }

    .activity-grid {
        width: calc(100% - 28px);

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .activity-card-image {
        aspect-ratio: 16 / 9;
    }

    .activity-card-content {
        padding: 17px 18px 19px;
    }

    .activity-card-title {
        font-size: 18px;
    }

}

@media (max-width: 800px) {

    .experience-map-section {
        padding: 38px 0;
    }

    .experience-map-layout {
        grid-template-columns: 1fr;
    }

    .experience-map {
        min-height: 390px;
    }

}

@media (max-width: 700px) {

    .experience-features {
        padding: 38px 0;
    }

    .experience-feature-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

@media (min-width:600px) { /* tablet, landscape iPad, lo-res laptops ands desktops */ 
	.nodesktop {
		display: none !important;
	}
	.nomobile {
		display: inline-block !important;
	}
	.sloganhero .maintext {
		font-size: 3.5em;
		line-height: 1.2em;
	}
	.row {
		display: flex;
	}
	.row-block .maintext {
		font-size: 1.2em;
	}
	
	.row-narrow {
		max-width: 85%;
	}
	

}

@media (min-width:1025px) { /* hi-res laptops and desktops */ 
	/*VIDEO HERO*/
	.mainvideo {
		/*max-height: calc(60vh);	*/
		width: 100%;
		height: auto;
	}
	
	
	.row-narrow {
		max-width: 75%;
	}

	.textblock_stretto {
		max-width: 1024px;
		margin: auto;
	}

	.row.mainfeature {
  	margin: 1em auto;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-content: center;
  }
	
}

@media (min-width:1100px) { /* hi-res laptops and desktops */ 
	/* HEADER STYLES */
	header {
		bottom: auto;
		top: 0;
		border-bottom: 0.0625em solid transparent;
		background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
		background-repeat: no-repeat;
		background-size: 100% 0.5em;
		background-position: bottom;
	}
	.logo-col {
		margin-top: 0.6em;
		margin-left: 5em;
	}
	.logo-col picture img.logo {
		width: 18.26em;
	}
	.nav-mobile-center {
		align-items: flex-start;
		padding-left: 2em;
		font-size: 1em;
	}
	.nav-mobile-center .nav-links {
		font-weight: 400;
		font-size: 1.2em;
	}
	.menu-col {
		padding-right: 6.7em;
		height: auto;
		padding-top: 1.2em;
	}
	#main-menu {
		width: auto;
		/*max-width: 320px;*/
		border-left: 1px solid #ddd;
		height: calc(100vh - 7.5em);
		top: 7.5em;
		padding-right: 7em;
	}
	
	main {
		min-height: calc(100vh - 13em);
		margin-top: 7em;
	}
	.row-block {
		width: calc(25% - 1em);
	}
	.main-container {
		padding: 0;
	}
	footer {
		padding-bottom: 1em;
	}
	.copyrightbox {
		text-align: center;
	}

	.row.invert-desktop {
		flex-direction: row-reverse; /* Inverti la direzione dei box */
	}

	.row.invert-desktop .box:first-child {
		order: 0; /* Assicura che il primo box sia ancora il primo in row-reverse */
	}

	.row.invert-desktop .box:last-child {
		order: 0; /* Assicura che il secondo box sia ancora il secondo */
	}
	

	.row-block {
	  width: 50%;
	  box-sizing: border-box;
	  text-align: left;
	  display: flex; /* Aggiunto per centrare verticalmente il contenuto */
	  flex-direction: column; /* Aggiunto per centrare verticalmente il contenuto */
	  position: relative;
	}
	.row-block-gapped {
		width: calc(50% - 1.25em);
	  margin: 0.625em;
	  padding: 1em;
	}
	.boxcentrato {
		/*position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);*/
		width: 100%;
		align-items: center;
		justify-content: center;	
	}
	.boxcentravert {
		align-items: center;
  	justify-content: center;
	}

	.reviews {
	  display: flex;
	  width: calc(100%); /* Settiamo la larghezza al doppio per permettere lo scorrimento continuo */
	  animation: scroll 20s linear infinite; /* Regola la durata dell'animazione */
	}
	.review {
		flex: 0 0 25%; /* Visualizziamo tre recensioni alla volta */
		flex: 0 0 5%;
		height: 6em;
		text-align: center;
	}
	
	.maintitle {
		font-size: 2.5em;
	}

	h1 {
		font-size: 2em;
	}
}

@media (min-width:1600px) { /* hi-res laptops and desktops */ 
	.row-block .maintext {
		font-size: 2.5em;
	}
	.textblock_stretto {
		max-width: 1300px;
		margin: auto;
	}
}