:root {
  --color-primary: #1a1a1a;
  --color-secondary: #333;
  --color-accent: #E30613;
  --color-background: #fff;
  --color-text: #333;
  --color-text-light: #666;
  --color-border: #ddd;
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-strip-bg: rgba(0, 0, 0, 0.05);
  --color-bento-bg: #f8f9fa;
  --color-bento-hover: #f0f0f0;
  --color-bento-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --color-rosso:  #E30613;
  --color-grigio: #f0f0f1;
  --color-verde-chiaro: #aecb37;
  --color-oiler: #008bd2;
  --color-oiler-scuro: color-mix(in srgb, var(--color-oiler) 90%, #000);
  --color-evo: #009640;
  --color-evo-scuro: #007330;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --font-family-base: "Montreux Grotesk", sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;
  --line-height-base: 1.5;
  --line-height-tight: 1.2;
  --line-height-loose: 1.8;
  --container-width: 1200px;
  --container-padding: 1rem;
  --grid-gap: 1rem;
  --bento-gap: 1.5rem;
  --bento-padding: 1.5rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 16px;
  --radius-bento: var(--radius-md);
  --shadow-sm: 0 2px 4px var(--color-shadow);
  --shadow-md: 0 4px 6px var(--color-shadow);
  --shadow-lg: 0 8px 16px var(--color-shadow);
  --shadow-bento: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-bento-hover: 0 8px 12px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bento: 0.3s ease;
  --strip-height: 200px;
  --strip-gap: 1rem;
  --strip-padding: 1rem;
  --strip-margin: 2rem;
  --strip-animation-duration: 30s;
  --z-index-base: 1;
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --flusso-in-ingresso-speed: 8s;
}
@media (max-width: 767px) {
  :root {
    --strip-height: 120px;
    --strip-gap: 0.5rem;
  }
}
@font-face {
  font-family: "Montreux Grotesk";
  src: url("/fonts/MontreuxG-Rg.woff2");
  font-weight: normal;
}
@font-face {
  font-family: "Montreux Grotesk";
  src: url("/fonts/MontreuxG-RgIt.woff2");
  font-style: italic;
}
@font-face {
  font-family: "Montreux Grotesk";
  src: url("/fonts/MontreuxG-Bd.woff2");
  font-weight: bold;
}
@font-face {
  font-family: "Montreux Grotesk";
  src: url("/fonts/MontreuxG-BdIt.woff2");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Montreux Grotesk";
  src: url("/fonts/MontreuxG-Blk.woff2");
  font-weight: 900;
}
@font-face {
  font-family: "Montreux Grotesk";
  src: url("/fonts/MontreuxG-BlkIt.woff2");
  font-weight: 900;
  font-style: italic;
}
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  /* Remove default margin on everything */
  margin: 0;
  /* Remove default padding on everything */
  padding: 0;
  /* Calc `em` based line height, bigger line height for smaller font size and smaller line height for bigger font size: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
}
/* Use a more-intuitive box-sizing model on everything */
*, ::before, ::after {
  box-sizing: border-box;
}
/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}
html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}
/* Smooth scrolling for users that don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
  line-height: 1.25;
}
/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}
/* Remove built-in form typography styles */
:where(input, button, textarea, select), :where(input[type="file"])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}
/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}
@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role="list"] {
  list-style: none;
}
/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make it clear that interactive elements are interactive */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}
:where(input[type="file"]) {
  cursor: auto;
}
:where(input[type="file"])::-webkit-file-upload-button, :where(input[type="file"])::file-selector-button {
  cursor: pointer;
}
/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}
/* Make sure users can't select button text */
:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"]), :where(input[type="file"])::-webkit-file-upload-button, :where(input[type="file"])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  text-align: center;
}
/* Disabled cursor for disabled buttons */
:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"])[disabled] {
  cursor: not-allowed;
}
body {
  font-family: "Montreux Grotesk", system-ui, sans-serif;
  font-size: 17px;
  overflow-x: clip;
}
h1, h2 {
  line-height: 1;
}
section {
  padding-block: 2rem;
}
h3 {
  text-align: center;
}
.content {
  max-width: 65em;
  width: 100%;
  margin-inline: auto;
}
.classic {
  color: var(--color-accent);
}
.oiler {
  color: var(--color-oiler);
}
.evo {
  color: var(--color-evo);
}
sup {
  font-size: 0.6em;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .content {
    padding-inline: var(--spacing-lg);
  }
}
#sfondo {
  position: fixed;
  top: -10rem;
  left: 20rem;
  opacity: 0.6;
  animation: 30s oscillate ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}
.zoomable {
  position: relative;
  cursor: zoom-in;
  width: fit-content;
  margin-inline: auto;
  display: block;
  transition: transform 0.2s ease-in-out;
}
.zoomable:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2em;
  height: 2em;
  opacity: 0.33;
  background-image: url(../img/zoom-in.webp);
  background-size: cover;
  background-position: center;
  transition: opacity 0.2s ease-in-out;
}
.zoomable:hover {
  transform: scale(1.05);
}
.zoomable:hover::after {
  opacity: 1;
}
#zoom {
  margin: auto;
  border-radius: var(--radius-md);
}
#zoom::backdrop {
  background-color: rgba(0, 0, 0, 0.33);
}
#zoom button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 1em;
  transition: bacakground-color 0.125s ease-in-out;
}
#zoom button:hover {
  background-color: var(--color-accent);
}
#zoom button svg {
  height: 1.5em;
  width: auto;
}
#zoom button:hover svg {
  fill: var(--color-background);
}
#zoomed_image {
  max-height: 90vh;
}
@keyframes oscillate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(15deg);
  }
}
header {
  z-index: 101;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  padding-block: 1em;
}
header .content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  header .content {
    padding-inline: var(--spacing-md);
  }
}
header .home {
  text-decoration: none;
  color: inherit;
}
@media (min-width: 768px) {
  header .home {
    font-size: 1.5em;
  }
}
header .home h1 {
  color: var(--color-accent);
  font-weight: 900;
  font-size: 1em;
}
header .home h1 svg {
  height: 1.5em;
  width: auto;
  margin-top: 0.125em;
}
header .home h1 sup {
  font-size: 0.3em;
  color: black;
  vertical-align: top;
  display: inline-block;
  margin-top: 0.4em;
  margin-left: 0.1em;
  font-weight: normal;
}
header nav {
  z-index: -1 !important;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.125s ease-out;
  position: absolute;
  top: 2.5rem;
  right: 0;
  background-color: var(--color-accent);
  color: var(--color-background);
  border-radius: var(--radius-md);
}
@media (max-width: 767px) {
  header nav {
    right: 1rem;
  }
}
header ul {
  list-style: none;
  padding: var(--spacing-sm) 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
header ul li {
  padding: 0;
}
header ul li a, header ul li a:visited {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: inherit;
  text-decoration: none;
}
header ul li a:hover, header ul li a:visited:hover {
  background-color: color-mix(in srgb, var(--color-accent) 80%, #000);
  color: var(--color-background);
}
header ul li a svg {
  height: 1em;
  display: inline-block;
}
header .lang-choices {
  margin-left: 1rem;
  border-left: 1px solid;
  padding-left: 1rem;
}
#show_menu {
  display: none;
}
#lang_menu {
  margin-top: 1em !important;
}
label[for="show_menu"] {
  margin-left: auto;
  margin-top: 0.33em;
  display: flex;
  align-items: center;
  border-radius: 100%;
  width: 1.5rem;
  text-align: center;
  align-self: flex-start;
}
label[for="show_menu"] svg {
  width: 100%;
}
label[for="show_menu"] svg line {
  stroke: currentColor;
  stroke-width: 2;
}
#show_menu:checked + nav {
  z-index: 105 !important;
  opacity: 1;
  pointer-events: all;
}
.splash {
  min-height: 100svh;
  background: radial-gradient(50% 50% at 50% 50%, rgba(217, 217, 217, 0.22) 0%, rgba(155, 155, 155, 0.22) 100%);
  display: flex;
  align-items: center;
  padding: 0;
  margin-top: -7em;
}
@media (max-width: 767px) {
  .splash {
    font-size: 0.8em;
  }
}
.splash .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .splash .content {
    flex-direction: column;
    margin-top: auto;
    height: 88svh;
    justify-content: normal;
  }
}
.splash .content > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .splash .hero-text {
    margin-top: 1rem;
    margin-right: auto;
  }
  .splash .hero-text .claim {
    display: none;
  }
}
.splash .main-features {
  position: absolute;
  bottom: var(--spacing-lg);
  width: 100%;
  left: 0;
  display: flex;
  gap: 1em;
  font-size: 0.9em;
}
@media (max-width: 767px) {
  .splash .main-features {
    flex-direction: column !important;
    padding-inline: var(--spacing-lg);
    font-size: 0.75em;
  }
}
.splash .main-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5em;
  max-width: 33ch;
}
@media (max-width: 767px) {
  .splash .main-features .feature {
    max-width: 19ch;
    flex-direction: column;
    align-items: self-start;
  }
}
.splash .main-features .feature img {
  height: 4em;
  width: auto;
}
@media (max-width: 767px) {
  .splash .main-features .feature img {
    height: 3em;
  }
}
.splash #made-in-italy {
  position: absolute;
  bottom: var(--spacing-lg);
  right: 0;
  font-size: 0.75em;
  font-weight: bold;
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 0.5em;
}
.splash #made-in-italy img, .splash #made-in-italy svg {
  height: 1.5em;
  width: auto;
}
@media (max-width: 767px) {
  .splash #made-in-italy {
    right: var(--spacing-lg);
    flex-direction: column !important;
    align-items: end;
  }
  .splash #made-in-italy img, .splash #made-in-italy svg {
    order: 0;
  }
  .splash #made-in-italy span {
    order: 1;
  }
}
.splash h2 {
  width: min-content;
  text-align: left;
  font-size: 2em;
  letter-spacing: -0.025em;
}
@media (max-width: 767px) {
  .splash h2 {
    width: auto;
    font-size: 1.5em;
  }
}
.splash p {
  max-width: 35ch;
}
.splash figure {
  position: relative;
  margin-right: 2vw;
  mix-blend-mode: multiply;
}
@media (max-width: 767px) {
  .splash figure {
    margin-top: -3rem;
  }
}
.splash figure #slot {
  position: absolute;
  width: 28%;
  height: 38.75%;
  left: 34%;
}
.splash figure #defaultCanvas0, .splash figure #defaultCanvas1, .splash figure #defaultCanvas2 {
  position: absolute;
  left: 34%;
  top: 21%;
  mix-blend-mode: multiply;
}
.splash figure[data-formato="220"] #slot {
  top: 21%;
  height: 38.75%;
}
.splash figure[data-formato="220"] #defaultCanvas0 {
  top: 21%;
}
.splash figure[data-formato="100"] #slot {
  top: 43%;
  height: 16.25%;
}
.splash figure[data-formato="100"] #defaultCanvas0 {
  top: 43%;
}
.splash figure .hero {
  max-height: 100svh;
  width: auto;
  mix-blend-mode: multiply;
}
.splash figure .riflesso, .splash figure .scritta {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.8;
}
.splash figure .riflesso {
  mix-blend-mode: normal !important;
}
.splash figure .scritta {
  mix-blend-mode: multiply;
}
.splash figure #fill_sotto {
  position: absolute;
  width: 28%;
  height: 11%;
  bottom: 22%;
  left: 34%;
  mix-blend-mode: multiply;
  clip-path: polygon(0 0, 100% 0, 77% 50%, 77% 97%, 72% 100%, 29% 100%, 27% 95%, 27% 50%);
}
.splash figure #fill_sotto > span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: #FF9900;
}
.splash figure #fill_sotto.animato > span {
  animation: flow_fill_sotto 40s ease-out;
  animation-fill-mode: forwards;
}
.splash figure #flusso {
  position: absolute;
  width: 3%;
  height: 0;
  top: 90.25%;
  left: 47%;
  background: #FF9900;
  border-left: 1px solid #99a;
  border-right: 1px solid #99a;
  mix-blend-mode: multiply;
}
.splash figure #flusso.animato {
  animation: flow-flusso 100s ease-out infinite;
  animation-fill-mode: forwards;
}
.splash figure #flusso_in_ingresso {
  position: absolute;
  width: 1px;
  height: 1.5%;
  top: 68%;
  right: 75.5%;
  border-block: 1px solid #99a;
  mix-blend-mode: multiply;
  transition: opacity 0.5s ease-out 0.5s;
}
.splash figure #flusso_in_ingresso:not(.vuoto) > span {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #FF9900;
  animation: flow_flusso_in_ingresso var(--flusso-in-ingresso-speed) ease-out;
  animation-fill-mode: forwards;
  animation-delay: 0.33s;
}
.splash figure #flusso_in_ingresso.vuoto {
  opacity: 0;
}
.splash figure .feature {
  position: absolute;
  font-size: 0.75em;
  max-width: 12ch;
}
.splash figure .feature img {
  height: 3em;
  width: auto;
  margin-bottom: 0.5em;
  user-select: none;
}
.splash figure .feature[data-feature="trasparente"] {
  top: 23%;
  right: 71%;
  text-align: right;
}
@media (max-width: 767px) {
  .splash figure .feature[data-feature="trasparente"] {
    top: 16%;
  }
}
.splash figure .feature[data-feature="trasparente"] img {
  margin-left: auto;
}
.splash figure .feature[data-feature="formati"] {
  top: 27%;
  left: 68%;
}
.splash figure .feature[data-feature="formati"] ul {
  margin-top: 0.25em;
}
.splash figure .feature[data-feature="formati"] ul label {
  display: flex;
  gap: 0.25em;
  align-items: center;
}
.splash figure .feature[data-feature="ingrassatore"] {
  top: 54%;
  right: 80%;
  text-align: right;
}
@media (max-width: 767px) {
  .splash figure .feature[data-feature="ingrassatore"] {
    top: 51%;
    right: 82%;
  }
}
.splash figure .feature[data-feature="ingrassatore"]:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 7em;
  height: 5em;
  top: 100%;
  background: url("data:image/svg+xml,%3Csvg width='90' height='64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0,3 L 55,3 L 85,60' stroke='black' stroke-width='1' fill='none' %3E%3C/path%3E%3Ccircle cx='85' cy='60' r='3' fill='black' %3E%3C/circle%3E%3C/svg%3E");
}
@media (max-width: 767px) {
  .splash figure .feature[data-feature="ingrassatore"]:after {
    left: 10%;
  }
}
.splash figure .feature[data-feature="durata"] {
  top: 75%;
  left: 63%;
}
@media (max-width: 767px) {
  .splash figure .feature[data-feature="durata"] {
    left: 69%;
    top: 70%;
  }
}
.splash figure .feature[data-feature="durata"]:after {
  content: "";
  position: absolute;
  left: -45%;
  width: 9em;
  height: 2em;
  top: 102%;
  background: url("data:image/svg+xml,%3Csvg width='115' height='26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 110,3 L 50,3 L 3,22' stroke='black' stroke-width='1' fill='none' %3E%3C/path%3E%3Ccircle cx='3' cy='22' r='3' fill='black' %3E%3C/circle%3E%3C/svg%3E");
}
.splash figure .feature[data-feature="grasso"] {
  top: 50%;
  left: 68%;
}
.splash figure #replay_button {
  position: absolute;
  top: 77%;
  left: 17%;
  padding: 0.5em;
  font-size: 0.8em;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  display: flex;
  gap: 0.5em;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 767px) {
  .splash figure #replay_button {
    left: 11%;
  }
}
.splash figure #replay_button.show {
  visibility: visible;
  pointer-events: all;
}
.splash figure #replay_button svg {
  height: 1.5em;
  width: auto;
}
.splash figure #replay_button:hover {
  outline: 1px solid #FF9900;
  outline-offset: -1px;
  background-color: rgba(255, 153, 0, 0.1);
  transition: background-color 0.3s ease-in-out;
}
[data-formato="100"] .for-220 {
  display: none !important;
}
[data-formato="220"] .for-100 {
  display: none !important;
}
input[type="range"] {
  z-index: 2000;
}
#claim_mobile {
  display: none;
}
@media (max-width: 767px) {
  #claim_mobile {
    display: block;
  }
}
#modelli .preambolo {
  text-align: center;
  margin-top: var(--spacing-lg);
  margin-bottom: calc(-1 * var(--spacing-lg));
}
@keyframes flow_fill_sotto {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
@keyframes flow_flusso_in_ingresso {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes flow-flusso {
  0% {
    height: 0;
  }
  100% {
    height: 80vh;
  }
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: var(--bento-gap);
  margin-top: var(--spacing-xl);
  font-size: 0.9rem;
}
.bento-item {
  background: var(--color-bento-bg);
  border-radius: var(--radius-bento);
  padding: var(--bento-padding);
  transition: all var(--transition-bento);
}
.bento-item h4 {
  text-transform: uppercase;
  font-weight: 900;
}
.bento-item.m-classic {
  border: 2px solid var(--color-rosso);
}
.bento-item.m-classic h4 {
  color: var(--color-rosso);
}
.bento-item.m-classic img {
  margin-inline: auto;
  height: 12rem;
  width: auto;
  mix-blend-mode: multiply;
}
.bento-item.m-oiler {
  border: 2px solid var(--color-oiler);
}
.bento-item.m-oiler h4 {
  color: var(--color-oiler);
}
.bento-item.m-oiler img {
  float: right;
  width: auto;
  height: 10em;
  margin-top: -3em;
  mix-blend-mode: multiply;
  shape-outside: polygon(65.04% 0%, 100% 0%, 100% 98.59%, 27.7% 82.81%, 38.06% 60.8%, 36.44% 21.58%);
}
.bento-item.m-evo {
  border: 2px solid var(--color-evo);
}
.bento-item.m-evo h4 {
  color: var(--color-evo);
}
.bento-item.m-evo img {
  float: right;
  width: 9rem;
  border-radius: 100%;
  border: 2px solid var(--color-evo);
  shape-outside: circle(43%);
  margin-top: -6rem;
  margin-left: 1rem;
  margin-right: -3rem;
  margin-bottom: 1rem;
}
.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-bento-hover);
  background: var(--color-bento-hover);
}
.bento-item:first-child {
  grid-row: span 2;
  background: var(--color-bento-gradient);
}
.bento-item:has(.comparison-table) {
  grid-column: span 2;
  padding: 0.25rem;
  border: 2px solid;
}
.bento-item-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.bento-item h4 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.25rem;
}
.bento-item p {
  margin: 0;
}
.comparison-table {
  width: 100%;
  margin-block: auto;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.comparison-table th, .comparison-table td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid;
  border-right: 1px solid;
}
.comparison-table th {
  font-weight: bold;
  white-space: nowrap;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table th:last-child, .comparison-table td:last-child {
  border-right: none;
}
.comparison-table td:first-child {
  font-weight: bold;
  color: #2c3e50;
}
.comparison-table th:not(:first-child), .comparison-table td:not(:first-child) {
  text-align: center;
  text-wrap-style: balance;
}
@media (max-width: 767px) {
  .bento {
    display: flex;
    flex-direction: column;
  }
  .bento-item:first-child {
    grid-row: auto;
  }
  .bento-item:last-child {
    grid-column: auto;
  }
  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
#applicazioni {
  background: radial-gradient(50% 50% at 50% 50%, rgba(217, 217, 217, 0.22) 0%, rgba(155, 155, 155, 0.22) 100%);
}
#applicazioni .content .applications {
  column-gap: 3rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  #applicazioni .content .applications {
    column-count: 3;
  }
}
#applicazioni .content .applications * + * {
  margin-top: 1em;
}
#applicazioni .content .applications ul > li {
  margin-top: 0.5em;
}
.photo-strip {
  width: 100%;
  overflow: hidden;
  margin: var(--strip-margin) 0;
  padding: 0;
}
.photo-strip.top {
  margin-top: 0;
}
.photo-strip.bottom {
  margin-bottom: 0;
}
.strip-container {
  display: flex;
  gap: var(--strip-gap);
  animation: scroll var(--strip-animation-duration) linear infinite;
  padding: 0 var(--strip-padding);
  width: fit-content;
}
.strip-container:hover {
  animation-play-state: paused;
}
.strip-container.reverse {
  animation: scroll-reverse var(--strip-animation-duration) linear infinite;
}
.strip-container.reverse:hover {
  animation-play-state: paused;
}
.strip-container img {
  width: var(--strip-height);
  height: var(--strip-height);
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}
.strip-container img:hover {
  transform: scale(1.05);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (var(--strip-height) * 8 + var(--strip-gap) * 8)));
  }
}
@keyframes scroll-reverse {
  0% {
    transform: translateX(calc(-1 * (var(--strip-height) * 8 + var(--strip-gap) * 8)));
  }
  100% {
    transform: translateX(0);
  }
}
#accessori .content {
  max-width: 60ch;
}
#accessori .content ol {
  margin-top: 1rem;
  display: flex;
  gap: 2em;
  justify-content: center;
  list-style: none;
  font-size: 0.85em;
  width: fit-content;
}
@media (max-width: 767px) {
  #accessori .content ol {
    display: block;
    column-count: 2;
    gap: 2em;
    margin-inline: auto;
  }
}
#accessori .content ol li {
  width: fit-content;
}
#accessori .content ol li span {
  font-size: 1.25em;
  margin-right: 0.25em;
  font-weight: bold;
  color: #e40715;
}
#azienda .content {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 60ch;
}
#azienda .content b {
  color: var(--color-accent);
}
#mondo {
  padding-top: 0;
}
#mondo #cartina {
  position: relative;
}
#mondo #cartina > img {
  mix-blend-mode: multiply;
}
#mondo #cartina #destinazioni {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #mondo .content {
    padding-inline: 0;
    overflow: hidden;
  }
  #mondo #cartina {
    width: 130vw;
    margin-left: -15vw;
  }
}
footer {
  background-color: var(--color-accent);
  color: #fff;
  padding: 2rem 0;
}
footer .scritta-slot-grease {
  width: calc(406.5 / 38.5 * 1rem);
  height: 1rem;
}
footer .scritta-slot-grease path {
  fill: #fff;
}
footer a {
  color: inherit;
}
footer .content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
footer .credits {
  font-size: 0.8em;
  margin-top: 3rem;
}
footer .note {
  font-size: 0.7em;
}
