html,
body {
	overflow-x: hidden;
	padding-right: 0 !important;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: normal;
	text-rendering: geometricPrecision;
	background-color: #FFE40E;
	border-left: 1rem solid #FFE40E;
	border-right: 1rem solid #FFE40E;
	z-index: 10;
	position: relative;
}

.background_cielo {
	background-image: url(../images/background_cielo.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: absolute;
	top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.onda_trasparente {
	background-image: url(../images/onda_trasparente.webp);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  height: 100vh;
  position: absolute;
  right: -5%;
  z-index: -1;
  width: 50%;
}

.bg_meccaniche {
	background-image: url(../images/bg_meccaniche.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	padding: 5rem 0;
}

.onda {
	background-image: url(../images/onda.webp);
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	padding: 3rem 0;
}

.zoom-07 {
	zoom: 0.7;
}

.bg-blue {
	background-color: #293359;
}

.bg-blue2 {
	background-color: #214285;
}

.bg-blue3 {
	background-color: #012b5c;
}

.letter-spacing {
	letter-spacing: 1px;
}

section {
	position: relative;
}

.sea-section {
	position: relative;
	padding: 0;
	overflow: hidden;
	isolation: isolate;
}

.barlow {
	font-family: "barlow";
}

.trash-hand {
	font-family: 'TrashHand';
}

.text-yellow {
	color: #FFE40E;
}

a.text-yellow {
	color: #FFE40E;
	text-decoration: underline;
}

a.text-yellow:hover, a.text-yellow:focus, a.text-yellow:active {
	color: #FFE40E;
	text-decoration: none;
}

.text-blue {
	color: #1F305B;
}
a.text-blue {
	color: #1F305B;
	text-decoration: underline;
}

a.text-blue:hover,
a.text-blue:focus,
a.text-blue:active {
	color: #1F305B;
	text-decoration: none;
}

:root {
	--yellow: #FFD829;
	--yellow2: #FFD72C;
	--blue: #202F5A;
	--h: 70px;
	--padX: 25px;
	--gap: 50px;
	--panelW: 86vw;
	--panelMaxW: 260px;
	--spacing: .25rem;
}

.side-menu {
	position: fixed;
	right: 0;
	top: 24px;
	height: var(--h);
	background: var(--yellow);
	border-radius: 999px 0 0 999px;
	overflow: hidden;
	z-index: 9999999999;
	display: flex;
	align-items: center;
	padding: 0 var(--padX);
	padding-left: calc(var(--padX) + 5px);
}

.side-menu::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 70%;
	height: 100%;
	background: rgba(243, 109, 40, 0.2);
	clip-path: polygon(11% 0, 100% 0, 100% 100%, 0% 100%);
	pointer-events: none;
}

.side-menu nav {
	position: relative;
}

.menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	white-space: nowrap;
}

.menu-link {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	font-weight: 900;
	letter-spacing: .5px;
	text-transform: uppercase;
	font-size: 1.6rem;
	line-height: 2;
	-webkit-text-stroke: 5px var(--blue);
	paint-order: stroke fill;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, .06);
	z-index: 1;
	position: relative;
}

.menu-link:focus-visible {
	outline: 4px solid rgba(32, 47, 90, .55);
	outline-offset: 6px;
	border-radius: 14px;
}

@media (max-width: 1024px) {
	:root {
		--h: 60px;
		--padX: 9px;
		--gap: 40px;
	}

	.menu-link {
		font-size: 1.5rem;
		-webkit-text-stroke: 5px var(--blue);
	}

	.side-menu {
		top: 16px;
	}

	.side-menu::before {
		clip-path: polygon(0 0, 55% 0, 43% 100%, 0 100%);
	}
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999999;
	pointer-events: none;
}

.mobile-nav__bar {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 10px 14px;
	pointer-events: auto;
}

#menuToggle {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.burger {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: var(--yellow);
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.burger::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--yellow2);
	clip-path: polygon(0 0, 60% 0, 46% 100%, 0 100%);
	opacity: .95;
	pointer-events: none;
}

.burger__icon {
	position: relative;
	width: 22px;
	height: 16px;
}

.burger__icon span {
	position: absolute;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 999px;
	background: var(--blue);
	transition: transform .22s ease, top .22s ease, opacity .18s ease;
}

.burger__icon span:nth-child(1) {
	top: 0;
}

.burger__icon span:nth-child(2) {
	top: 6px;
}

.burger__icon span:nth-child(3) {
	top: 12px;
}

.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .35);
	opacity: 0;
	pointer-events: none;
	transition: opacity .22s ease;
	z-index: 99999;
}

.panel {
	position: fixed;
	top: 0;
	right: 0;
	height: auto;
	width: min(var(--panelW), var(--panelMaxW));
	background: var(--yellow);
	transform: translateX(105%);
	transition: transform .25s ease;
	z-index: 99999;
	overflow: hidden;
	padding: 18px 16px 22px 16px;
	box-shadow: -18px 0 40px rgba(0, 0, 0, .18);
	border-bottom-left-radius: 1rem;
}

.panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--yellow2);
	clip-path: polygon(0 0, 72% 0, 52% 100%, 0 100%);
	opacity: .95;
	pointer-events: none;
}

.panel__inner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.panel__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 4px;
}

.panel__title {
	margin: 0;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #fff;
	font-size: 22px;
	-webkit-text-stroke: 6px var(--blue);
	paint-order: stroke fill;
}

.panel__links {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: end;
}

.panel__link {
	display: block;
	padding: 14px 10px;
	border-radius: 18px;
	text-decoration: none;
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .5px;
	font-size: 34px;
	line-height: 1;
	-webkit-text-stroke: 8px var(--blue);
	paint-order: stroke fill;
}

.panel__link:active {
	transform: translateY(1px);
}

#menuToggle:checked ~ .overlay {
	opacity: 1;
	pointer-events: auto;
}

#menuToggle:checked ~ .panel {
	transform: translateX(0);
}

#menuToggle:checked + .mobile-nav .burger__icon span:nth-child(1) {
	top: 6px;
	transform: rotate(45deg);
}

#menuToggle:checked + .mobile-nav .burger__icon span:nth-child(2) {
	opacity: 0;
}

#menuToggle:checked + .mobile-nav .burger__icon span:nth-child(3) {
	top: 6px;
	transform: rotate(-45deg);
}

@media (max-width: 991px) {
	.side-menu {
		display: none;
		right: 0;
	}

	.mobile-nav {
		display: flex;
		justify-content: end;
	}

	body {
		padding-top: var(--mobileBarH);
	}

	.panel {
		padding: 70px 16px 22px 16px;
	}
}

footer {
	color: #fff;
}

footer .footer-below {
	padding: 0;
	color: var(--blue);
}

footer .footer-below a {
	color: var(--blue);
}

.menu-footer {
	display: inline-block;
	list-style-type: none;
	font-weight: 500;
	color: var(--blue);
	text-transform: none;
	font-size: 1rem;
}

.menu-footer a {
	color: var(--blue);
	text-decoration: none;
}

.menu-footer a:hover {
	text-decoration: underline;
}

.fill-white {
	fill: #fff;
	opacity: 0.7;
}

.w-6 {
	width: calc(var(--spacing) * 6);
}

.aspect-square {
	aspect-ratio: 1;
}

.logo-nostromo-footer {
	max-width: 25%;
}

.font-weight-100 {
	font-weight: 100;
}

.font-weight-200 {
	font-weight: 200;
}

.font-weight-300 {
	font-weight: 300;
}

.font-weight-400 {
	font-weight: 400;
}

.font-weight-500 {
	font-weight: 500;
}

.font-weight-600 {
	font-weight: 600;
}

.font-weight-800 {
	font-weight: 700;
}

.font-weight-800 {
	font-weight: 800;
}

.font-weight-900 {
	font-weight: 900;
}

.line-height-xxs {
	line-height: 0.5rem;
}

.line-height-xs {
	line-height: 1rem;
}

.line-height-sm {
	line-height: 1.2rem;
}

.line-height-md {
	line-height: 1.4rem;
}

.line-height-lg {
	line-height: 1.6rem;
}

.line-height-xl {
	line-height: 1.8rem;
}

.line-height-xxl {
	line-height: 2rem;
}

.line-height-xxxl {
	line-height: 2.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase;
	font-weight: normal;
	margin-bottom: 0;
	line-height: 1;
}

p {
	font-size: 1rem;
	margin-bottom: 0;
}

.text-transform-none {
	text-transform: none;
}

a {
	color: #ffffff;
	text-decoration: underline;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	outline: 0;
	color: #ffffff;
	text-decoration: none;
}

a:not([href]):not([class]) {
	text-decoration: underline;
}

a:not([href]):not([class]):hover {
	text-decoration: none;
}

button:focus {
	outline: none;
}

.pulsanti {
	--yellow-main: #FFE033;
	--yellow-accent: #FFD000;
	--shadow-color: #002d59;
	position: relative;
	padding: 0rem 2rem;
	border: none;
	border-radius: 15px;
	background: var(--yellow-main);
	font-size: 3.5rem;
	font-weight: 700;
	color: #002d59;
	text-shadow: -3px -3px #ffffff;
	cursor: pointer;
	overflow: hidden;
	text-transform: uppercase;
	box-shadow: 10px 9px 0 var(--shadow-color);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	transform: skew(-10deg, 0);
	z-index: 2;
}

.pulsanti-noskew {
	transform: skew(10deg, 0);
}

.pulsanti-noskew:hover {
	transform: skew(0);
}

.pulsanti::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -20%;
  width: 71%;
  height: 83%;
  background: var(--yellow-accent);
  transform: skewX(-22deg) rotate(-3deg);
  border-top-left-radius: 8px;
  z-index: -1
}

a.pulsanti, a.w-button {
	text-decoration: none;
}

.pulsanti:hover {
	transform: translate(6px, 6px);
	box-shadow: 8px 6px 0 var(--shadow-color);
}

.pulsanti:active {
	transform: translate(10px, 10px);
	box-shadow: 4px 3px 0 var(--shadow-color);
}

.section-sea {
	position: relative;
	aspect-ratio: 1943.62 / 4646.37;
	width: 100%;
	min-height: 100vh;
	overflow: visible;
}

.sea-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: none;
	z-index: -1;
}

.sea-content {
	position: relative;
	z-index: 1;
}

:root {
	--navy: #293359;
	--yellow: #f2d734;
	--bg: #f3f4f7;
	--cardRadius: 28px;
}

.left-rail {
	width: 100%;
	text-transform: uppercase;
}

.main {
	flex: 1;
	padding: 8px 0;
}

.club-card {
	background: #fff;
	border-radius: var(--cardRadius);
	padding: 26px 22px 18px;
	box-shadow: 0 0 10px 0 #1e315a;
	justify-content: center;
  display: flex;
  flex-direction: column;
}

.brand {
	display: flex;
	align-items: flex-end;
	justify-content: center !important;
	gap: 0;
	margin-top: 2px;
	margin-bottom: 18px;
	line-height: 1;
}

.word {
	font-weight: 900;
	font-size: 54px;
	letter-spacing: .5px;
	transform: skewX(-10deg);
	text-transform: uppercase;
	white-space: nowrap;
}

.word--nostro {
	color: #fff;
	-webkit-text-stroke: 8px var(--navy);
	text-shadow: 0 2px 0 var(--navy);
}

.word--club {
	color: var(--yellow);
	-webkit-text-stroke: 8px var(--navy);
	margin-left: -6px;
}

.wheel {
	width: 54px;
	height: 54px;
	margin: 0 -6px 2px -6px;
	flex: 0 0 auto;
}

.q {
	color: var(--navy);
	font-weight: bold;
	font-size: 2rem;
	margin: 0;
	letter-spacing: -.9px;
}

.login-row {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 10px;
	margin: 0;
}

.login {
	font-weight: 900;
	font-size: 2rem;
	color: var(--yellow);
	-webkit-text-stroke: 2px var(--navy);
	letter-spacing: -1px;
	line-height: 1;
}

a.login {
	color: var(--yellow);
	text-decoration: none;
}

.go {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	display: grid;
	place-items: center;
}

.go svg {
	width: 36px;
	height: 36px;
	fill: none;
	stroke: var(--navy);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cta-top {
	color: var(--navy);
	font-weight: bold;
	font-size: 2rem;
	margin: 15px 0 0;
	letter-spacing: -.9px;
}

.cta-btn {
	width: 100%;
	display: flex;
	justify-content: start;
	margin: 0 0 14px;
}

.pill {
	background: radial-gradient(ellipse at center,
	#fff8b8 0%,
	#fde84f 50%,
	#f1d62a 85%),
	linear-gradient(90deg,
	#f1d62a,
	#fde84f,
	#f1d62a);
	background-blend-mode: soft-light;
  color: var(--navy);
  border: none;
  border-radius: 999px;
  padding: 8px 0;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.6px;
  font-size: 1.8rem;
  cursor: pointer;
  min-width: 260px;
	text-align: center;
}

a.pill {
	text-decoration: none;
}

a:hover.pill {
	color: var(--navy);
}

.pill:active {
	transform: translateY(1px)
}

.foot {
	color: var(--navy);
	text-align: left;
	font-size: 1rem;
	font-weight: bold;
	letter-spacing: -0.4px;
	text-transform: uppercase;
	margin-top: 2rem;
	line-height: 1.2;
}

.foot .link {
	color: var(--yellow);
	text-decoration: none;
}

a:hover .foot .link {
	text-decoration: underline;
}

.bi-file-person {
	color: var(--navy);
}

.bi-file-person:hover {
	color: var(--navy);
}

@media (max-width: 900px) {
	.site {
		flex-direction: column
	}

	.left-rail {
		width: 100%;
		flex: auto;
	}
}

.nc-hamburger {
	display: none;
}

.nc-login-card {
	position: static;
	transform: none;
}

.nc-overlay {
	display: none;
}

.nc-hamburger {
	position: fixed;
  top: 10px;
  left: 16px;
  z-index: 10002;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  backdrop-filter: blur(6px);
  cursor: pointer;
  padding: 0.8rem;
  background-color: #293359;
}

.nc-hamburger span {
	display: block;
	height: 2px;
	margin: 7px 10px;
	background: #fff;
	border-radius: 2px;
}

 .yellow-wave{
	background-image: url(../images/onda_footer.webp);
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	padding-top: 7rem;
}

#tratteggio1 {
	position: absolute;
	top: 7rem;
	left: 0;
	right: 0;
	width: 100%;
	height: auto;
	z-index: -1;
}

#tratteggio2 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: auto;
	z-index: -1;
}

#tratteggio3 {
	position: absolute;
	top: 8rem;
	left: 0;
	right: 0;
	width: 100%;
	height: auto;
	z-index: -1;
}

@media (max-width: 1024px) {

	.brand {
		margin-top: 35px;
		justify-content: center !important;
	}

	.nc-hamburger {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		z-index: 99999;
	}

	.nc-login-card {
		position: fixed;
		top: 0;
		left: 0;
		height: auto;
		width: 100%;
		z-index: 9999;
		transform: translateX(-105%);
		transition: transform .25s ease;
		overflow: auto;
		background: transparent;
		color: #fff;
		padding: 0;
		border-bottom-left-radius: 1rem;
		border-bottom-right-radius: 1rem;
	}

	.nc-login-card.is-open {
		transform: translateX(0);
	}
}

:root {
	--blue-dark: #5aa6cf;
	--blue-soft: #b9d9ea;
	--ribbon: #f5d24d;
	--text: #ffffff;
	--ink: #1f2a33;
}

.wrap {
	max-width: 1200px;
	margin: clamp(16px, 3vw, 32px) auto;
	padding: 0 clamp(12px, 3vw, 24px);
	display: flex;
	flex-direction: column;
	gap: clamp(18px, 2.6vw, 28px);
}

.item {
	display: flex;
	align-items: center;
}

.step {
	position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 20px);
  height: 200px;
  border-radius: 2rem;
  background: rgba(66, 93, 129, 1);
  overflow: visible;
  margin-bottom: 5rem;
}

.step::before {
	content: "";
	position: absolute;
	left: clamp(30px, 1.6vw, 16px);
	top: clamp(10px, 1.6vw, 5px);
	bottom: clamp(10px, 1.6vw, 5px);
	width: min(100%, 94%);
	border-radius: 2rem;
	background: rgba(88, 120, 155, 1);
	pointer-events: none;
}

#step2 {
	background: rgba(82, 128, 170, 1);
}

#step2::before {
	background: rgba(103, 151, 188, 1);
}

#step3 {
	background: rgba(98, 161, 205, 1);
}

#step3::before {
	background: rgba(117, 178, 216, 1);
}

#step4 {
	background: rgba(99, 167, 215, 1);
}

#step4::before {
	background: rgba(136, 198, 232, 1);
}

.step__text {
	position: relative;
	flex: 1 1 auto;
	text-align: center;
	padding-inline: clamp(6px, 1.4vw, 18px);
}

.step__text .big {
	margin: 0;
	color: var(--text);
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
	font-size: clamp(25px, 2.2vw, 35px);
	line-height: 1.25;
	width: 70%;
  margin: 0 auto;
}

.step__icon {
	flex: 0 0 auto;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: #fff;
	border: clamp(4px, .7vw, 6px) solid var(--blue-dark);
	display: flex;
	align-items: center;
	place-items: center;
	box-shadow: 0 2px 0 rgba(0, 0, 0, .06);
	position: absolute;
	top: 7%;
	right: 0;
}

.step__icon#icon-bussola {
	padding: 30px;
}

.step__icon#icon-timone {
	padding: 10px;
}

.step__icon#icon-mappa {
	padding: 15px;
}

.step__icon#icon-forziere {
	padding: 35px;
}

.ribbon {
	position: absolute;
  left: clamp(-30px, -1.8vw, 16px);
  top: calc(-1 * clamp(32px, 2vw, 18px));
  width: 300px;
}

.white-row {
	background-color: #ffffff;
  height: 6px;
  width: 360px;
  margin: 0 auto;
}

:root {
	--navy: #1f2f55;
	--blue3: #64a0d4;
	--blue4: #64a0d4;
}

.hero {
	width: 100%;
	aspect-ratio: 2559 / 859;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: clamp(18px, 6vw, 60px);
}

.hero.hero-profilo {
	margin-bottom: 4rem;
	aspect-ratio: auto;
}

.hero_bollo1prodotto {
	width: 100%;
  position: relative;
  display: block;
  padding-bottom: clamp(18px, 6vw, 60px);
  padding-top: clamp(18px, 6vw, 30px);
}

.hero_bollo1prodotto.hero-saldopunti {
	aspect-ratio: auto;
	display: block;
	align-items: end;
}

.card2 {
	width: 100%;
	height: 55%;
	border-radius: clamp(14px, 2.3vw, 26px);
	background: #fff;
	position: relative;
	box-shadow: 0 12px 22px rgba(0, 0, 0, .18);
	overflow: hidden;
}

.card2.card2-servicepage {
	height: auto;
	padding: 5rem 0;
}

.card2.card2-profilo {
	height: auto;
	padding: 4rem 0;
}

.card2::before,
.card2::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 17%;
	background: linear-gradient(0deg, var(--blue3), var(--blue4));
}

.card2::before {
	top: 0;
	height: 20%;
}

.card2::after {
	bottom: 0;
	height: 8%;
}

.card_bollo {
	width: 100%;
	height: 70%;
	border-radius: clamp(14px, 2.3vw, 26px);
	background: #fff;
	position: relative;
	box-shadow: 0 12px 22px rgba(0, 0, 0, .18);
	overflow: hidden;
	padding: 3rem 0;
}

.card_bollo::before,
.card_bollo::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 17%;
	background: linear-gradient(0deg, var(--blue3), var(--blue4));
}

.card_bollo::before {
	top: 0;
	height: 15%;
}

.card_bollo::after {
	bottom: 0;
	height: 15%;
}

.card__text {
	position: absolute;
	inset: 0;
	display: flex;
	place-items: center;
	padding: 0 clamp(14px, 4vw, 72px);
	text-align: center;
	color: var(--navy);
	font-weight: 500;
	font-size: clamp(18px, 3.3vw, 54px);
	line-height: 1.05;
	text-wrap: balance;
	justify-content: center;
	align-items: center;
	gap: 0.15em;
}

.card__text_bollo1prodotto {
	position: relative;
	inset: 0;
	display: block;
	place-items: center;
	padding: 0 clamp(14px, 4vw, 72px);
	text-align: center;
	color: var(--navy);
	font-weight: 500;
	font-size: clamp(18px, 3.3vw, 54px);
	line-height: 1;
	text-wrap: balance;
	top: 0;
	display: block;
}

.card__text.card__text__servicepage {
	font-size: clamp(22px, 4.2vw, 35px);
}

.card__text_bollo1prodotto.card__text_saldopunti {
	position: relative;
	line-height: 4;
	top: 0;
	padding: 0
}

.card__text strong {
	white-space: nowrap;
}

.ticket {
	position: absolute;
	top: clamp(10px, 2.6vw, 34px);
	left: 50%;
	transform: translateX(-50%) rotate(-2deg);
	width: min(78%, 860px);
	height: 34%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 clamp(14px, 4.5vw, 64px);
	overflow: visible;
	z-index: 2;
}

.bollo1prodotto {
	position: absolute;
	left: 0;
	transform: translateX(-50%) translateY(50%) rotate(0);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	overflow: visible;
	z-index: 2;
	top: 0;
}

.bollo1prodotto img {
	max-width: 25%;
}

#levelbadge {
	max-width: 50%;
}

.flare {
	position: absolute;
	inset: -20% -10% -30% -10%;
	pointer-events: none;
	background:
	radial-gradient(140px 140px at 18% 55%, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 70%),
	radial-gradient(260px 260px at 90% 35%, rgba(255, 255, 255, .30), rgba(255, 255, 255, 0) 65%),
	linear-gradient(120deg, rgba(255, 255, 255, 0) 0 35%, rgba(255, 255, 255, .14) 45%, rgba(255, 255, 255, 0) 58%);
	mix-blend-mode: screen;
	border-radius: inherit;
}

.shine {
	position: absolute;
	right: 3%;
	top: 14%;
	width: 22%;
	height: 72%;
	border-radius: inherit;
	background: radial-gradient(80% 70% at 70% 30%, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 65%);
	opacity: .65;
	pointer-events: none;
}

.ticket__left {
	display: flex;
	align-items: center;
	gap: clamp(10px, 2.2vw, 26px);
	flex: 1;
	min-width: 0;
}

.big {
	font-size: clamp(44px, 10vw, 140px);
	font-weight: 1000;
	letter-spacing: -0.06em;
	color: #fff;
	paint-order: stroke fill;
	line-height: 1;
	flex: 0 0 auto;
}

.stack {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .12em;
	min-width: 0;
}

.stack span {
	font-size: clamp(16px, 4.1vw, 64px);
	font-weight: 1000;
	letter-spacing: -0.04em;
	color: #fff;
	-webkit-text-stroke: clamp(6px, .85vw, 10px) var(--navy);
	paint-order: stroke fill;
	line-height: 0.92;
	text-transform: uppercase;
	filter: drop-shadow(0 6px 0 rgba(0, 0, 0, .12));
	white-space: nowrap;
}

.disabled-meccaniche {
	opacity: 0.4;
	pointer-events: none;
	filter: grayscale(100%);
}

@media (max-width: 560px) {
	.hero {
		width: 100%;
		padding-bottom: clamp(16px, 7vw, 44px);
		margin-bottom: 2rem;
	}

	.ticket {
		width: min(90%, 520px);
		height: 33%;
		transform: translateX(-50%) rotate(-1deg);
		justify-content: center;
		top: -20px;
	}

	.ticket::after {
		right: -12%;
		top: -38%;
		width: 36%;
	}

	.card__text {
		font-size: clamp(22px, 4.2vw, 28px);
	}
	
	.card2 {
		height: 100%;
	}
}

@media (max-width: 380px) {
	.stack span {
		white-space: normal
	}

	.ticket__left {
		gap: 10px
	}

	.big {
		font-size: clamp(40px, 14vw, 90px)
	}
}

.club {
	position: relative;
	display: flex;
	padding: 0.5rem;
	background-color: white;
	gap: 40px;
	border-radius: 1rem;
	align-items: center;
	justify-content: center;
	zoom: 0.9;
}

.club-logo {
	max-width: 35%;
}

.club-text .row {
	display: flex;
	align-items: flex-end;
	gap: 8px;
}

.club-text .nostro {
	font-size: 38px;
	line-height: 1;
}

.club-text .club {
	font-size: 38px;
	line-height: 1;
	color: var(--yellow);
	-webkit-text-stroke: 3px var(--stroke);
	paint-order: stroke fill;
}

.gear {
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	transform: translateY(6px);
	filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .06));
}

.pill2 {
	background: var(--navy);
	border-radius: 18px;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 2px 0 rgba(0, 0, 0, .06);
}

.pill2-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.name {
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	color: #f2d734;
	font-size: 2rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1;
}

.role {
	font-family: 'TrashHand';
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	color: #ffffff;
	font-size: 1.8rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-top: 0.5rem;
}

@media (max-width: 767px) {
	.name {
    font-size: 2rem;
  }

  .role {
    font-size: 1.5rem;
  }
}

.carousel-control-prev,
.carousel-control-next {
	z-index: 9999999;
	width: 35%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 4rem;
	height: 4rem;
}

.tappe {
	position: absolute;
	left: 0;
	transform: translateX(-40%) rotate(0);
	width: min(40%, 860px);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 clamp(14px, 4.5vw, 80px);
	overflow: visible;
	z-index: 2;
	top: 2rem;
}

.text-meccanica1 {
	font-size: clamp(20px, 4.5vw, 40px);
	color: #ffffff;
	text-transform: uppercase;
	font-weight: bold;
	text-shadow: 2px 2px 0 #000000;
}

.carousel-inner {
	transition: height .35s ease;
}

.menu-item.has-dropdown {
	position: relative;
	z-index: 10000;
}

.menu-item .chevron {
	margin-left: 6px;
	font-size: 0.8em;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--yellow);
	border-radius: 1rem;
	padding: 1.2rem;
	min-width: 200px;
	opacity: 0;
	transform: translateY(5px);
	pointer-events: none;
	transition: all .2s ease;
	z-index: 999;
}

.dropdown-menu::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 70%;
	height: 100%;
	background: rgba(243, 109, 40, 0.2);
	clip-path: polygon(11% 0, 100% 0, 100% 100%, 0% 100%);
	pointer-events: none;
}

.dropdown-menu a {
	padding-bottom: 1rem;
}

.menu-item.has-dropdown:hover .dropdown-menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.menu-item.has-dropdown:hover .dropdown-menu,
.menu-item.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
	opacity: 1;
	transform: translateY(10px);
	pointer-events: auto;
}

.dropdown-menu {
	z-index: 10001;
}

.side-menu,
.side-menu nav,
.menu-list {
	overflow: visible !important;
}

.dropcheck {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.drop-label {
	cursor: pointer;
	user-select: none;
}

.dropcheck:checked ~ .dropdown-menu {
	display: block;
}

@media (hover: hover) {

	.nav-item.dropdown {
		position: relative;
	}

	.nav-item.dropdown > .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(0);
	}

	.nav-item.dropdown:hover > .dropdown-menu,
	.nav-item.dropdown > .dropdown-menu:hover {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
}

@media (hover: hover) {
	.nav-item.dropdown > .dropdown-menu {
		transform: translateY(5px);
	}

	.nav-item.dropdown:hover > .dropdown-menu,
	.nav-item.dropdown > .dropdown-menu:hover {
		transform: translateY(0);
	}
}

@media (hover: hover) {

	header,
	nav,
	.navbar,
	.navbar-nav {
		overflow: visible !important;
	}
}

.boat-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.boat {
	width: 100%;
	height: auto;
	display: block;
	transform-origin: 50% 70%;
	animation: boat-bob 3.6s ease-in-out infinite;
	will-change: transform;
}

@keyframes boat-bob {
	0% {
		transform: translateY(0px) rotate(-1.1deg);
	}

	20% {
		transform: translateY(-4px) rotate(0.9deg);
	}

	50% {
		transform: translateY(1px) rotate(-0.6deg);
	}

	80% {
		transform: translateY(3px) rotate(1.0deg);
	}

	100% {
		transform: translateY(0px) rotate(-1.1deg);
	}
}

.boat-overlay {
	position: fixed;
	left: 50%;
	top: 56%;
	width: clamp(180px, 28vw, 460px);
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 3;
}

@media (max-width: 767px) {
	.boat-overlay {
		top: 60%;
		width: clamp(160px, 55vw, 320px);
	}
}

.promo-banner {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 2.5rem 0rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	max-width: 1000px;
	margin: 0 auto;
	position: absolute;
	bottom: 2rem;
	left: 0;
	right: 0;
	z-index: 2;
}

.promo-banner::before,
.promo-banner::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 17%;
	background: linear-gradient(0deg, #f2d245, #f2d245);
}

.promo-banner::before {
	top: 0;
	height: 15%;
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
}

.promo-banner::after {
	bottom: 0;
	height: 15%;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
}

.promo-left {
	background-color: #293359;
	color: #ffffff;
	padding: 18px 26px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
}

.promo-right {
	color: #293359;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.3;
	text-transform: uppercase;
}

.top-left-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 9999;
	transform: scale(var(--scale));
	transform-origin: top left;
}

.badge-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	line-height: 1;
	user-select: none;
}

.club-logo {
	max-width: 35%;
}

.club-text .row {
	display: flex;
	align-items: flex-end;
	gap: 8px;
}

.club-text .nostro {
	font-size: 38px;
	line-height: 1;
}

.club-text .club {
	font-size: 38px;
	line-height: 1;
	color: var(--yellow);
	-webkit-text-stroke: 3px var(--stroke);
	paint-order: stroke fill;
}

.gear {
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	transform: translateY(6px);
	filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .06));
}

.name {
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	color: #f2d734;
	font-size: 2.5rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.role {
	font-family: 'TrashHand';
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	color: #ffffff;
	font-size: 1.8rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-top: 0.5rem;
}

@media screen and (min-width: 575px) {

	html, body {
		border-left: 0.5rem solid #f3d245;
		border-right: 0.5rem solid #f3d245;
	}

	li.nav-item {
		display: inline-flex;
		justify-content: center;
	}

	.mw-10 {
		max-width: 10%;
	}

	.mw-20 {
		max-width: 20%;
	}

	.mw-30 {
		max-width: 30%;
	}

	.mw-40 {
		max-width: 40%;
	}

	.mw-50 {
		max-width: 50%;
	}

	.mw-60 {
		max-width: 60%;
	}

	.mw-70 {
		max-width: 70%;
	}

	.mw-80 {
		max-width: 80%;
	}

	.mw-90 {
		max-width: 90%;
	}

	.white-row {
		width: 160px;
	}

	.hero_bollo1prodotto {
    width: 100%;
    margin: 0 auto;
	}

	.card_bollo {
		height: 100%;
	}

	.step {
		height: auto;
	}

	.yellow-wave{
		padding-top: 3rem;
	}

	.pulsanti {
		font-size: 2rem;
		width: 50%;
		margin: 0 auto;
	}
	
	.carousel-control-prev,
	.carousel-control-next {
		width: 15%;
	}

	.bollo1prodotto {
    position: relative;
    left: 0;
    transform: translateX(0) rotate(0);
    width: min(70%, 860px);
    height: auto;
    display: block;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    z-index: 2;
    margin: 0 auto;
	}
}

@media screen and (min-width: 768px) {
	.modal-dialog {
		max-width: 720px;
	}

	.mw-10 {
		max-width: 100%;
	}

	.mw-20 {
		max-width: 100%;
	}

	.mw-30 {
		max-width: 100%;
	}

	.mw-40 {
		max-width: 100%;
	}

	.mw-50 {
		max-width: 100%;
	}

	.mw-60 {
		max-width: 100%;
	}

	.mw-70 {
		max-width: 100%;
	}

	.mw-80 {
		max-width: 100%;
	}

	.mw-90 {
		max-width: 100%;
	}

	.ribbon {
		width: 230px;
	}

	.step__icon {
		width: 110px;
		height: 110px;
		bottom: -65px;
	}

	.step__icon#icon-bussola, .step__icon#icon-forziere {
    padding: 20px;
	}

	.white-row {
		width: 220px;
	}

	.ticket {
		width: min(56%, 860px);
	}

	.hero_bollo1prodotto {
    width: 85%;
	}

	.bollo1prodotto {
		position: absolute;
		transform: translateX(-50%) translateY(45%) rotate(0);
		width: auto;
	}

	.card_bollo {
		height: 100%;
	}

	.step {
		height: 200px;
	}

	.panel__link {
    font-size: 24px;
    -webkit-text-stroke: 3px var(--blue);
	}

	.pulsanti {
		font-size: 2.5rem;
	}

	.yellow-wave{
		padding-top: 4rem;
	}

	.tappe {
    width: min(35%, 860px);
    top: 1rem;
	}

	.carousel-control-prev,
	.carousel-control-next {
		width: 35%;
	}

	#user_levelbadge {
    max-width: 25%;
	}

	.pulsanti { 
		width: 100%;
	}

	#levelbadge {
		max-width: 30%;
	}
}

@media screen and (min-width: 992px) {

	.site {
		zoom: 0.7;
	}

	.panel {
		display: none;
	}

	.side-menu {
    zoom: 0.8;
  }

	.ribbon {
		width: 300px;
	}

	.step__icon {
		width: 170px;
		height: 170px;
		bottom: 0;
	}

	.step__icon#icon-bussola {
    padding: 30px;
	}

	.step__icon#icon-forziere {
    padding: 35px;
	}

	.hero_bollo1prodotto {
    width: 80%;
	}

	.card_bollo {
    height: 100%;
  }

	#levelbadge {
		max-width: 30%;
	}

	.panel__link {
    font-size: 34px;
    -webkit-text-stroke: 8px var(--blue);
	}

	.pulsanti {
		font-size: 3rem;
	}

	.yellow-wave{
		padding-top: 7rem;
	}

	.tappe {
    width: min(40%, 860px);
    top: 2rem;
	}

	#user_levelbadge {
    max-width: 30%;
	}

	.site {
		position: fixed;
		display: flex;
		align-items: flex-start;
		gap: 28px;
		padding: 24px;
		z-index: 99999999;
	}
}

@media screen and (min-width: 1200px) {
	
	html, body {
  	border-left: 1rem solid #f3d245;
    border-right: 1rem solid #f3d245;
  }

	.side-menu {
		zoom: 0.8;
	}

	.white-row {
		width: 360px;
	}

	.hero_bollo1prodotto {
    width: 75%;
	}

	#user_levelbadge {
    max-width: 50%;
	}
	
	#levelbadge {
		max-width: 50%;
	}
}

@media screen and (max-width: 1366px) {
	body {
		zoom: 0.9;
	}
}

@media screen and (min-width: 1400px) {
	
	.site {
		zoom: 0.7;
	}

	.side-menu {
		zoom: 1;
	}

	.ticket {
		width: min(65%, 860px);
    height: 45%;
	}

	.hero_bollo1prodotto {
    width: 75%;
	}

	.card_bollo {
    height: 90%;
  }

	.pulsanti {
		font-size: 3.5rem;
	}
}

@media screen and (min-width: 1600px) {
	
	.site {
		zoom: 0.8;
	}
}

@media screen and (min-width: 1900px) {

	.hero_bollo1prodotto {
    width: 100%;
	}

	.card_bollo {
    height: 70%;
  }

	.site {
		zoom: 0.9;
	}
}

@media screen and (min-width: 2500px) {

	.col-xxxl {
    width: 60%;
  }

	.site {
		zoom: 1;
	}
}

@media (max-width: 767px) {
	.step {
		border-radius: 28px;
		flex-direction: column;
		align-items: stretch;
		padding-top: 28px;
		margin-bottom: 1rem;
	}

	.step::before {
		width: 95%;
		margin: 0 auto;
		right: 0;
		left: 0;
	}

	.step__text {
		text-align: center;
	}

	.step__icon {
		margin-inline: auto;
		position: relative;
		width: 130px;
		height: 130px;
	}

	.ribbon {
		top: 0;
		position: relative;
		width: 250px;
		left: 0;
		margin: 0 auto;
	}

	.step__icon#icon-bussola,
	.step__icon#icon-forziere {
		padding: 25px;
	}

	.promo-banner {
		padding: 2rem 1rem;
		display: block;
		text-align: center;
		bottom: 0;
		position: relative;
		pointer-events: none;
	}

	.promo-left,
	.promo-right {
		font-size: 1.2rem;
	}

	.promo-banner::before {
		height: 8%;
	}

	.promo-banner::after {
		height: 8%;
	}
}

.modal-content {
	background-color: transparent;
	border: none;
}

.modal-prodottipromozionati {
	background-color: #214285;
	border: 1rem solid #fed435;
	border-radius: 1rem;
}

.modal-prodottipromozionati {
	padding: 2rem;
}

.modal-prodottipromozionati ul {
	display: block;
	margin: 0;
	padding: 0;
}

.modal-prodottipromozionati li {
	color: #ffffff;
	font-weight: bold;
	font-size: 1.2rem;
	line-height: 1.25;
	text-transform: uppercase;
	margin-bottom: 1rem;
	text-align: start;
}

.btn-close {
	background-color: #FFE40E;
	opacity: 1;
	--bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23214285'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
}

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

	#mainNav .navbar-nav li.nav-item a.nav-link {
		font-size: 1.2rem;
	}

	li.nav-item {
		display: inline-flex;
		justify-content: center;
	}

	.hide_mobile {
		display: none;
	}

	footer .menu-footer {
		display: inline-block;
	}

	.mw-10 {
		max-width: 10%;
	}

	.mw-20 {
		max-width: 20%;
	}

	.mw-30 {
		max-width: 30%;
	}

	.mw-40 {
		max-width: 40%;
	}

	.mw-50 {
		max-width: 50%;
	}

	.mw-60 {
		max-width: 60%;
	}

	.mw-70 {
		max-width: 70%;
	}

	.mw-80 {
		max-width: 80%;
	}

	.mw-90 {
		max-width: 90%;
	}

	.q {
		font-size: 1.8rem;
	}

	.pill {
		font-size: 1.5rem;
		min-width: 100%;
	}

	.cta-top {
		font-size: 1.2rem;
	}

	.login {
		font-size: 2rem;
	}

	.go svg {
		width: 25px;
    height: 25px;
	}

	html, body {
		border-left: 0.5rem solid #f3d245;
		border-right: 0.5rem solid #f3d245;
	}

	.panel__link {
		font-size: 1.5rem;
    -webkit-text-stroke: 5px var(--blue);
		padding: 14px 5px 0;
	}

	.white-row {
		width: 300px;
    margin-bottom: 1rem;
	}

	.card_bollo {
		height: 100%;
	}

	.hero_bollo1prodotto {
		display: block;
		height: 100%;
		aspect-ratio: auto;
	}

	.bollo1prodotto {
    position: relative;
    left: 0;
    transform: translateX(0) rotate(0);
    width: min(70%, 860px);
    height: auto;
    display: block;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    z-index: 2;
    margin: 0 auto;
	}

	.card__text_bollo1prodotto {
    position: relative;
		padding: 0;
		font-size: clamp(23px, 3.3vw, 54px);
	}

	.pulsanti {
		font-size: 2rem;
		width: 80%;
		margin: 0 auto;
	}

	.step {
		height: auto;
	}

	.step__text .big {
		width: 100%;
	}

	.hero_bollo1prodotto.hero-saldopunti {
		display: block;
	}

	#tratteggio1, #tratteggio2, #tratteggio3 {
		display: none;
	}

	.display-2 {
		font-size: calc(1.575rem + 2vw); 
	}

	.tappe {
		transform: translateX(-25%) rotate(0);
	}

	.bg_meccaniche {
		padding: 2rem 0;
	}

	.onda {
		padding: 0rem 0 3rem;
	}

	.carousel-control-prev,
	.carousel-control-next {
		z-index: 1000;
		width: auto;
	}

	.club {
		display: block;
    position: relative;
    padding: 4rem 0 0;
    gap: 0;
    zoom: 0.9;
	}
	
	.name {
		font-size: 1.5rem;
	}

	.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
	}
}