@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:wght@900&display=swap');

/* ========================================
   RESET / BASE
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*::selection {
  color: var(--color-light);
  background: var(--color-code-magenta) !important;
}

*::-moz-selection {
  color: var(--color-light);
  background: var(--color-code-magenta) !important;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-hover: rgba(0, 0, 0, 0.5);
  --color-light-hover: rgba(0, 0, 0, 0.2);

  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);

  --color-code-light-grey: #cacbd1;
  --color-code-comment: #a9aaad;
  --color-code-white: #c5c9c6;
  --color-code-magenta: #f0f;
  --color-code-yellow: #ff0;
  --color-code-cyan: #0ff;

  --font-family-main: 'Tinos', Georgia, Times, "Times New Roman", serif;
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  --font-family-safe: 'Roboto', sans-serif;
}

html {
  height: 100%;
  margin: 0;
  font-family: var(--font-family-main);
  color: var(--color-text);
  background: var(--color-background);
}

body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  float: left;
  overflow-x: hidden;
}

figure {
  float: left;
  width: 100%;
}

img {
  width: 100%;
  float: left;
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

hr {
  width: 1.5rem;
  height: 2px;
  margin: 3rem auto;
  border: 0;
  background: currentColor;
}

/* ========================================
   UTILITY
======================================== */

.mob-only {
  display: flex !important;
}

.desk-only {
  display: none !important;
}

.bg-light {
  background-color: var(--color-light);
}

.color-grey {
  color: var(--color-text-grey);
}

.underline {
  text-decoration: underline;
}

.align-center {
  text-align: center;
}

.t-center {
  text-align: left;
}

.t-italic {
  font-style: italic;
}

.reverse {
  flex-wrap: wrap-reverse;
}

.relative {
  position: relative;
}

.default-box-vcenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   MEDIA / VIDEO
======================================== */

.video {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.video-block {
  width: 100%;
  float: left;
}

.img-caption,
.video-caption {
  padding-top: 0.75rem;
  line-height: 1.5em;
}

/* ========================================
   CUSTOM CURSORS
======================================== */

/* shape-rendering='crispEdges'  shape-rendering='geometricPrecision'  */
.custom-cursor {
  cursor: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='c' data-name='Livello 1'%3E%3Cpath fill='%2300ffff' d='M0,10a10,10 0 1,0 20,0a10,10 0 1,0 -20,0' shape-rendering='optimizeSpeed' /%3E%3C/g%3E%3C/svg%3E") 10 10, pointer;
}

.custom-cursor label:hover,
.custom-cursor a:hover,
.custom-cursor button:hover,
.custom-cursor .gallery__Image:hover {
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.92 19.03'%3E%3Cg%3E%3Cg%3E%3Cpath fill='%23ff00ff' d='m0,8.48l4.15,2.19V1.61C1.81,3.18.29,5.68,0,8.48Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%23ff00ff' d='m4,17.29l3.74-2.54L0,10.66c.33,2.66,1.77,5.07,4,6.63Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%23ff00ff' d='m12.35.46c-2.03-.67-4.24-.61-6.25.17v5.09L12.35.46Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%23ff00ff' d='m5.91,18.33c2.42.99,5.17.92,7.58-.21l-.49-4.57-7.09,4.78Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%23ff00ff' d='m14.31,1.33l-3.89,3.24,8.42,3.38c-.43-2.75-2.08-5.16-4.53-6.62Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%23ff00ff' d='m18.92,10.13l-4.5-1.85.91,8.71c2.11-1.65,3.42-4.15,3.59-6.86Z' shape-rendering='geometricPrecision' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 12 12, pointer;
}

.custom-cursor:active {
  cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.38 22.38'%3E%3Cg%3E%3Cg%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,7.95c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,2.98c-.41,0-.75-.33-.75-.75V.75c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,22.38c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,17.42c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m16.67,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m21.64,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m7.21,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m2.24,11.94H.75c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m13.3,9.83c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l1.06-1.1c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.16-.33.25-.54.25Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m17.52,5.61c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m3.81,19.4c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06h0l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m8.03,15.1c-.41,0-.75-.33-.75-.75,0-.19.05-.38.18-.52l1.06-1.06c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-.52.52h0l-.51.57c-.14.12-.33.19-.52.18Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m14.36,15.1c-.19,0-.38-.05-.52-.18l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v-.03Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m18.58,19.33c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h-.01Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m9.09,9.83c-.2,0-.38-.08-.52-.22l-1.1-1.06c-.3-.3-.3-.79,0-1.09s.79-.3,1.09,0l.52.52h0l.52.52c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v.06Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m4.86,5.61c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.25-.33-.18-.8.15-1.04.27-.2.63-.2.9,0l.52.52h0l.52.54c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h.01Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 16 16, pointer;
}

.custom-cursor a:active,
.custom-cursor .gallery__Image:active {
  cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.38 22.38'%3E%3Cg%3E%3Cg%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,7.95c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,2.98c-.41,0-.75-.33-.75-.75V.75c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,22.38c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,17.42c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m16.67,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m21.64,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m7.21,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m2.24,11.94H.75c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m13.3,9.83c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l1.06-1.1c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.16-.33.25-.54.25Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m17.52,5.61c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m3.81,19.4c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06h0l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m8.03,15.1c-.41,0-.75-.33-.75-.75,0-.19.05-.38.18-.52l1.06-1.06c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-.52.52h0l-.51.57c-.14.12-.33.19-.52.18Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m14.36,15.1c-.19,0-.38-.05-.52-.18l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v-.03Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m18.58,19.33c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h-.01Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m9.09,9.83c-.2,0-.38-.08-.52-.22l-1.1-1.06c-.3-.3-.3-.79,0-1.09s.79-.3,1.09,0l.52.52h0l.52.52c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v.06Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m4.86,5.61c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.25-.33-.18-.8.15-1.04.27-.2.63-.2.9,0l.52.52h0l.52.54c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h.01Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 16 16, pointer;
}

/* ========================================
   THEME CUSTOM 1
======================================== */

.custom1 .sidebarMenu {
  background-color: var(--color-code-cyan);
  cursor: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='c' data-name='Livello 1'%3E%3Cpath fill='%23ff00ff' d='M0,10a10,10 0 1,0 20,0a10,10 0 1,0 -20,0' shape-rendering='optimizeSpeed' /%3E%3C/g%3E%3C/svg%3E") 10 10, pointer;
}

.custom1 .sidebarMenu label:hover,
.custom1 .sidebarMenu a:hover,
.custom1 .sidebarMenu button:hover,
.custom1 label.sidebarIconToggle:hover {
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.92 19.03'%3E%3Cg%3E%3Cg%3E%3Cpath fill='%23ffff00' d='m0,8.48l4.15,2.19V1.61C1.81,3.18.29,5.68,0,8.48Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%23ffff00' d='m4,17.29l3.74-2.54L0,10.66c.33,2.66,1.77,5.07,4,6.63Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%23ffff00' d='m12.35.46c-2.03-.67-4.24-.61-6.25.17v5.09L12.35.46Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%23ffff00' d='m5.91,18.33c2.42.99,5.17.92,7.58-.21l-.49-4.57-7.09,4.78Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%23ffff00' d='m14.31,1.33l-3.89,3.24,8.42,3.38c-.43-2.75-2.08-5.16-4.53-6.62Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%23ffff00' d='m18.92,10.13l-4.5-1.85.91,8.71c2.11-1.65,3.42-4.15,3.59-6.86Z' shape-rendering='geometricPrecision' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 12 12, pointer;
}

.custom1 .sidebarMenu:active {
  cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.38 22.38'%3E%3Cg%3E%3Cg%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,7.95c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,2.98c-.41,0-.75-.33-.75-.75V.75c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,22.38c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,17.42c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m16.67,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m21.64,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m7.21,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m2.24,11.94H.75c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m13.3,9.83c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l1.06-1.1c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.16-.33.25-.54.25Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m17.52,5.61c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m3.81,19.4c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06h0l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m8.03,15.1c-.41,0-.75-.33-.75-.75,0-.19.05-.38.18-.52l1.06-1.06c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-.52.52h0l-.51.57c-.14.12-.33.19-.52.18Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m14.36,15.1c-.19,0-.38-.05-.52-.18l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v-.03Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m18.58,19.33c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h-.01Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m9.09,9.83c-.2,0-.38-.08-.52-.22l-1.1-1.06c-.3-.3-.3-.79,0-1.09s.79-.3,1.09,0l.52.52h0l.52.52c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v.06Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m4.86,5.61c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.25-.33-.18-.8.15-1.04.27-.2.63-.2.9,0l.52.52h0l.52.54c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h.01Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 16 16, pointer;
}

.custom1 .sidebarMenu a:active {
  cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.38 22.38'%3E%3Cg%3E%3Cg%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,7.95c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,2.98c-.41,0-.75-.33-.75-.75V.75c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,22.38c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m11.19,17.42c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m16.67,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m21.64,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m7.21,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m2.24,11.94H.75c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m13.3,9.83c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l1.06-1.1c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.16-.33.25-.54.25Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m17.52,5.61c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m3.81,19.4c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06h0l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m8.03,15.1c-.41,0-.75-.33-.75-.75,0-.19.05-.38.18-.52l1.06-1.06c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-.52.52h0l-.51.57c-.14.12-.33.19-.52.18Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m14.36,15.1c-.19,0-.38-.05-.52-.18l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v-.03Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m18.58,19.33c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h-.01Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m9.09,9.83c-.2,0-.38-.08-.52-.22l-1.1-1.06c-.3-.3-.3-.79,0-1.09s.79-.3,1.09,0l.52.52h0l.52.52c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v.06Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ffff00' d='m4.86,5.61c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.25-.33-.18-.8.15-1.04.27-.2.63-.2.9,0l.52.52h0l.52.54c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h.01Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 16 16, pointer;
}

/* ========================================
   THEME CUSTOM 2
======================================== */

.custom2 .sidebarMenu {
  background-color: var(--color-code-magenta);
  cursor: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='c' data-name='Livello 1'%3E%3Cpath fill='%23ffff00' d='M0,10a10,10 0 1,0 20,0a10,10 0 1,0 -20,0' shape-rendering='optimizeSpeed' /%3E%3C/g%3E%3C/svg%3E") 10 10, pointer;
}

.custom2 .sidebarMenu label:hover,
.custom2 .sidebarMenu a:hover,
.custom2 .sidebarMenu button:hover,
.custom2 label.sidebarIconToggle:hover {
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.92 19.03'%3E%3Cg%3E%3Cg%3E%3Cpath fill='%2300ffff' d='m0,8.48l4.15,2.19V1.61C1.81,3.18.29,5.68,0,8.48Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%2300ffff' d='m4,17.29l3.74-2.54L0,10.66c.33,2.66,1.77,5.07,4,6.63Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%2300ffff' d='m12.35.46c-2.03-.67-4.24-.61-6.25.17v5.09L12.35.46Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%2300ffff' d='m5.91,18.33c2.42.99,5.17.92,7.58-.21l-.49-4.57-7.09,4.78Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%2300ffff' d='m14.31,1.33l-3.89,3.24,8.42,3.38c-.43-2.75-2.08-5.16-4.53-6.62Z' shape-rendering='geometricPrecision' /%3E%3Cpath fill='%2300ffff' d='m18.92,10.13l-4.5-1.85.91,8.71c2.11-1.65,3.42-4.15,3.59-6.86Z' shape-rendering='geometricPrecision' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 12 12, pointer;
}

.custom2 .sidebarMenu:active {
  cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.38 22.38'%3E%3Cg%3E%3Cg%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m11.19,7.95c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m11.19,2.98c-.41,0-.75-.33-.75-.75V.75c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m11.19,22.38c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m11.19,17.42c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m16.67,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m21.64,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m7.21,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m2.24,11.94H.75c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m13.3,9.83c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l1.06-1.1c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.16-.33.25-.54.25Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m17.52,5.61c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m3.81,19.4c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06h0l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m8.03,15.1c-.41,0-.75-.33-.75-.75,0-.19.05-.38.18-.52l1.06-1.06c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-.52.52h0l-.51.57c-.14.12-.33.19-.52.18Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m14.36,15.1c-.19,0-.38-.05-.52-.18l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v-.03Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m18.58,19.33c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h-.01Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m9.09,9.83c-.2,0-.38-.08-.52-.22l-1.1-1.06c-.3-.3-.3-.79,0-1.09s.79-.3,1.09,0l.52.52h0l.52.52c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v.06Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m4.86,5.61c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.25-.33-.18-.8.15-1.04.27-.2.63-.2.9,0l.52.52h0l.52.54c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h.01Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 16 16, pointer;
}

.custom2 .sidebarMenu a:active {
  cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.38 22.38'%3E%3Cg%3E%3Cg%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m11.19,7.95c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m11.19,2.98c-.41,0-.75-.33-.75-.75V.75c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m11.19,22.38c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m11.19,17.42c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m16.67,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m21.64,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m7.21,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m2.24,11.94H.75c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m13.3,9.83c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l1.06-1.1c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.16-.33.25-.54.25Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m17.52,5.61c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m3.81,19.4c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06h0l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m8.03,15.1c-.41,0-.75-.33-.75-.75,0-.19.05-.38.18-.52l1.06-1.06c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-.52.52h0l-.51.57c-.14.12-.33.19-.52.18Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m14.36,15.1c-.19,0-.38-.05-.52-.18l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v-.03Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m18.58,19.33c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h-.01Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m9.09,9.83c-.2,0-.38-.08-.52-.22l-1.1-1.06c-.3-.3-.3-.79,0-1.09s.79-.3,1.09,0l.52.52h0l.52.52c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v.06Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%2300ffff' d='m4.86,5.61c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.25-.33-.18-.8.15-1.04.27-.2.63-.2.9,0l.52.52h0l.52.54c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h.01Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 16 16, pointer;
}

/* ========================================
   THEME CUSTOM 3
======================================== */

.custom3 .sidebarMenu {
  background-color: var(--color-code-yellow);
}

.custom3 .sidebarMenu:active {
  cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.38 22.38'%3E%3Cg%3E%3Cg%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m11.19,7.95c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m11.19,2.98c-.41,0-.75-.33-.75-.75V.75c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m11.19,22.38c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m11.19,17.42c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m16.67,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m21.64,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m7.21,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m2.24,11.94H.75c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m13.3,9.83c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l1.06-1.1c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.16-.33.25-.54.25Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m17.52,5.61c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m3.81,19.4c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06h0l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m8.03,15.1c-.41,0-.75-.33-.75-.75,0-.19.05-.38.18-.52l1.06-1.06c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-.52.52h0l-.51.57c-.14.12-.33.19-.52.18Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m14.36,15.1c-.19,0-.38-.05-.52-.18l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v-.03Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m18.58,19.33c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h-.01Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m9.09,9.83c-.2,0-.38-.08-.52-.22l-1.1-1.06c-.3-.3-.3-.79,0-1.09s.79-.3,1.09,0l.52.52h0l.52.52c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v.06Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m4.86,5.61c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.25-.33-.18-.8.15-1.04.27-.2.63-.2.9,0l.52.52h0l.52.54c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h.01Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 16 16, pointer;
}

.custom3 .sidebarMenu a:active {
  cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.38 22.38'%3E%3Cg%3E%3Cg%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m11.19,7.95c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m11.19,2.98c-.41,0-.75-.33-.75-.75V.75c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m11.19,22.38c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m11.19,17.42c-.41,0-.75-.33-.75-.75v-1.49c0-.41.33-.75.75-.75s.75.33.75.75v1.49c0,.41-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m16.67,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m21.64,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m7.21,11.94h-1.49c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m2.24,11.94H.75c-.41,0-.75-.33-.75-.75s.33-.75.75-.75h1.49c.41,0,.75.33.75.75s-.33.75-.75.75Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m13.3,9.83c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l1.06-1.1c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.16-.33.25-.54.25Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m17.52,5.61c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m3.81,19.4c-.41,0-.74-.34-.74-.76,0-.19.08-.38.21-.51l.52-.54h0l.52-.52c.29-.29.77-.29,1.06,0s.29.77,0,1.06h0l-1.06,1.06c-.14.14-.33.21-.52.21Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m8.03,15.1c-.41,0-.75-.33-.75-.75,0-.19.05-.38.18-.52l1.06-1.06c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-.52.52h0l-.51.57c-.14.12-.33.19-.52.18Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m14.36,15.1c-.19,0-.38-.05-.52-.18l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v-.03Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m18.58,19.33c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l1.06,1.06c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h-.01Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m9.09,9.83c-.2,0-.38-.08-.52-.22l-1.1-1.06c-.3-.3-.3-.79,0-1.09s.79-.3,1.09,0l.52.52h0l.52.52c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21v.06Z'/%3E%3Cpath shape-rendering='geometricPrecision' fill='%23ff00ff' d='m4.86,5.61c-.2,0-.38-.08-.52-.22l-1.06-1.06c-.25-.33-.18-.8.15-1.04.27-.2.63-.2.9,0l.52.52h0l.52.54c.29.29.28.77-.01,1.06-.14.13-.32.21-.51.21h.01Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 16 16, pointer;
}

.custom1 #pageInfoPanel {
  background-color: var(--color-code-cyan);
  color: var(--color-black);
}

.custom2 #pageInfoPanel {
  background-color: var(--color-code-magenta);
  color: var(--color-black);
}

.custom3 #pageInfoPanel {
  background-color: var(--color-code-yellow);
  color: var(--color-black);
}

/* ========================================
   LAYOUT
======================================== */

.header {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 240px;
  margin: 0 auto;
  position: fixed;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}

.header nav {
  position: absolute;
  top: 42px;
  left: 3rem;
  display: none;
  pointer-events: auto;
}

.header nav ul li {
  float: left;
  margin-right: 1.2rem;
}

.header nav ul li a {
  font-size: 1.2rem;
  font-weight: 700;
}

.header nav ul li a::before {
  content: "";
}

.header nav ul li a.active {
  color: var(--color-code-magenta);
}

ul.hamburgerMenuCol1 li a.active {
  text-decoration: underline;
}

.main {
  position: relative;
  float: left;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.close .main,
.close .footer {
  top: 0vh;
  transition: all 0.4s ease-in-out;
}

.open .main,
.open .footer {
  top: 30vh;
  transition: all 0.4s ease-in-out;
}

.inside-main {
  padding-bottom: 145px;
}

.f-contact {
  float: left;
  width: 100%;
}

#outMenu {
  float: left;
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer.footer {
  position: relative;
  z-index: 1;
  float: left;
  width: 100%;
  height: 145px;
  margin-top: -145px;
}

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

/* ========================================
   LOGO
======================================== */

.logo {
  position: absolute;
  left: 1.2rem;
  z-index: 11;
  margin-top: 22px;
  pointer-events: auto;
  transform-origin: top left;
}

.logo-lc {
  width: 150px;
}

.logo-lc .logo-lc-item {
  fill: var(--color-black);
}

.ontop .logo {
  transform: scale(1.4) translateY(0);
  transition: transform 0.3s ease;
}

.scrolling .logo,
.open .logo {
  transform: scale(1) translateY(0);
  transition: transform 0.3s ease;
}

/* ========================================
   TEXT CONTENT
======================================== */

.text {
  line-height: 1.5em;
}

.text a {
  text-decoration: underline;
}

.text :first-child {
  margin-top: 0;
}

.text :last-child {
  margin-bottom: 0;
}

.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}

.text ul,
.text ol {
  margin-left: 1rem;
}

.text ul p,
.text ol p {
  margin-bottom: 0;
}

.text ul > li {
  list-style: disc;
}

.text ol > li {
  list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}

.text h1,
.h1,
.intro {
  font-size: 1.6rem;
  line-height: 1.25em;
  margin-bottom: 1.2rem;
}

.text h2,
.h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.text h3,
.h3 {
  font-weight: 700;
}

.text .codeblock {
  display: grid;
}

.text code {
  display: inline-block;
  padding: 0 0.5rem;
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  color: var(--color-black);
}

.text pre {
  margin: 3rem 0;
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
  background: var(--color-black);
  color: var(--color-white);
}

.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}

.text hr {
  margin: 6rem 0;
}

.text dt {
  font-weight: 700;
}

.text blockquote {
  max-width: 25rem;
  margin: 3rem 0;
  padding-left: 1rem;
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
}

.text blockquote footer {
  font-size: 0.875rem;
  font-style: italic;
}

.text figure {
  margin: 3rem 0;
}

.text figcaption {
  padding-top: 0.75rem;
  color: var(--color-text-grey);
}

/* ========================================
   NAV / BREADCRUMB / PREV-NEXT
======================================== */

.breadcrumb {
  float: left;
  padding-bottom: 0.5rem;
}

.breadcrumb ul li {
  float: left;
  margin-right: 0.5rem;
}

.breadcrumb ul li:last-child {
  margin-right: 0;
  color: var(--color-grey);
}

.breadcrumb ul li a {
  text-decoration: underline;
}

.breadcrumb ul li::after {
  content: " /";
  margin-left: 0.4rem;
}

.breadcrumb ul li:last-child::after {
  content: "";
  margin-left: 0;
}

.breadcrumb ul li a.active {
  color: var(--color-grey);
  text-decoration: none;
  cursor: inherit;
}

.prev-next {
  position: relative;
  top: -7rem;
}

.prev-next .prev,
.prev-next .next {
  position: relative;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.prev-next .prev {
  left: -2rem;
}

.prev-next .next {
  right: -2rem;
}

.prev-next .prev a {
  float: right;
  margin-right: 1rem;
}

.prev-next .next a {
  float: left;
  margin-left: 1rem;
}

.prev-next .prev svg,
.prev-next .next svg {
  position: relative;
  top: 6px;
  height: 22px;
}

.prev-next .prev svg {
  margin-right: 1rem;
}

.prev-next .next svg {
  margin-left: 1rem;
}

.onbottom .prev-next .prev {
  left: 0;
  opacity: 1;
}

.onbottom .prev-next .next {
  right: 0;
  opacity: 1;
}

/* ========================================
   TOP / BACK BUTTONS
======================================== */

.back-button-box {
  position: fixed;
  bottom: 2.9rem;
  left: 1.2rem;
  opacity: 0;
  transition: all 0.2s ease-in-out 0.4s;
}

.long .back-button-box {
  position: fixed;
  z-index: 7;
  display: block;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.onbottom .back-button-box {
  bottom: 8.9rem;
  transition: all 0.2s ease-in-out;
}

.back-button svg {
  float: left;
  width: 48px;
  margin-right: 1rem;
}

.back-button svg .arrow-back-path {
  fill: var(--color-black);
}

.top-button {
  position: fixed;
  margin-left: -13px;
  opacity: 0;
  transition: all 0.2s ease-in-out 0.4s;
}

.long .top-button {
  position: fixed;
  left: 50%;
  bottom: 3.1rem;
  z-index: 7;
  display: block;
  width: 26px;
  margin-left: -13px;
  opacity: 1;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.onbottom .top-button {
  bottom: 9.1rem;
  transition: all 0.2s ease-in-out;
}

.top-button svg {
  width: 100%;
  height: 48px;
  margin-bottom: 0.6rem;
}

.top-button svg .arrow-top-path {
  fill: var(--color-black);
}

.back-button-scroll {
  display: none;
  margin-left: -13px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.long .back-button-scroll {
  position: fixed;
  left: 50%;
  bottom: 3.1rem;
  z-index: 3;
  display: block;
  width: 26px;
  margin-left: -13px;
  opacity: 1;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.back-button-scroll svg {
  height: 22px;
}

.back-button-scroll svg .arrow-back-path {
  fill: var(--color-code-magenta);
}

/* ========================================
   HOME
======================================== */

.home-section .home-box {
  width: 100%;
  align-items: center;
  justify-content: center;
}

.home-section .video-home-box {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1080px;
}

.home-section video {
  float: left;
}

/* ========================================
   WORKS
======================================== */

.works-child figure {
  position: relative;
}

.works-child figure figcaption {
  position: absolute;
  bottom: 0;
  z-index: 5;
  padding: 2rem 0;
}

.works-child figure figcaption span {
  padding: 0 0.5rem 0.2rem 0;
  line-height: 1.4;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  opacity: 0.7;
  color: var(--color-white);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.works-child figure figcaption span.sub {
  padding: 0 1rem 0.2rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  color: var(--color-white);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.works-child figure figcaption span.tit {
  padding: 0 0.5rem 0.2rem 1rem;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  opacity: 1;
  color: var(--color-white);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.works-child figure figcaption span.tit-tag {
  padding-left: 1rem;
}

.works-child:hover figure figcaption span {
  color: var(--color-white);
  background-color: var(--color-hover);
}

.works-child .hover-box {
  position: absolute;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background-color: var(--color-grey);
  mix-blend-mode: multiply;
  transition: all 0.3s ease-in-out;
}

.works-child:hover .hover-box {
  background-color: transparent;
}

.works-child:hover figure img {
  background-color: var(--color-hover);
}

.works-tag h2 {
  width: 100%;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  text-align: center;
}

.works-tag ul {
  display: flex;
  float: left;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
}

.works-tag ul li {
  float: left;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.works-tag ul li:last-child {
  margin-right: 0;
}

.works-tag ul li a {
  transition: all 0.3s ease-in-out;
}

/* ========================================
   CLIENTS
======================================== */

.clients figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 1 / 1;
  transition: all 0.3s ease-in-out;
}

.clients figure figcaption {
  position: absolute;
  bottom: 0;
  z-index: 5;
}

.clients figure figcaption span {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01rem;
  color: var(--color-black);
  transition: all 0.3s ease-in-out;
}

.clients:hover figure figcaption span {
  color: var(--color-code-cyan);
  background-color: var(--color-hover);
}

.clients .hover-box {
  position: absolute;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  transition: all 0.3s ease-in-out;
}

.clients:hover .hover-box {
  background-color: transparent;
}

.clients figure img {
  max-width: 145px;
  aspect-ratio: 1 / 1;
  transition: all 0.3s ease-in-out;
}

.clients:hover figure {
  background-color: var(--color-light-hover);
}

.clients:hover figure img {
  opacity: 0.3;
  z-index: 6;
}

.clients .hover-box img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  transition: all 0.3s ease-in-out;
}

.clients:hover .hover-box img {
  opacity: 1;
}

/* ========================================
   PAGE TITLES / TAGS
======================================== */

.tag-title {
  float: left;
  color: var(--color-grey);
}

.page-title {
  float: left;
}
.page-title-seo {
  float: left;
}
.page-title-seo h1{
  font-size: 1.6rem;
  line-height: 1.7rem;
  
}
.page-title-seo h2{
  font-size: 1.1rem;
  line-height: 1.2;
}



/* ========================================
   ALBUM
======================================== */

.album {
  margin: 0 auto;
}

.album-date {
  float: left;
  width: 100%;
  margin-top: 0.5rem;
  color: var(--color-text-grey);
}

.album-tags {
  display: flex;
  float: left;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.album-tags li {
  margin-right: 0.5rem;
}

.album-tags a {
  display: block;
  margin: 0.5rem 0.5rem 0.5rem 0;
  background: var(--color-light);
  font-weight: 700;
}

.album-tags a::before {
  content: "#";
}

.album-tags a:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.album .album-title {
  float: left;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.album .album-subtitle {
  float: left;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.album p {
  float: left;
  font-size: 1.4rem;
  line-height: 1.4;
}

.album-elements li {
  float: left;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.4;
}

.album-elements li span {
  font-weight: 700;
}

.album .gallery > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   NOTE
======================================== */

.note {
  max-width: 35rem;
  margin: 0 auto;
}

.note-header {
  padding-top: 3rem;
  margin-bottom: 3rem;
}

.note-footer {
  padding: 6rem 0;
}

.note-date {
  color: var(--color-text-grey);
}

.note-tags {
  display: flex;
  margin-bottom: 1.5rem;
}

.note-tags li {
  margin-right: 0.5rem;
}

.note-tags a {
  display: block;
  padding: 0.5rem 1rem;
  background: var(--color-light);
}

.note-tags a:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* ========================================
   BLOCKS
======================================== */

.blocks {
  position: relative;
  float: left;
}

.blocks a {
  text-decoration: underline;
}

.blocks p {
  float: left;
  width: 100%;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.35;
}

.blocks h1,
.blocks h2,
.blocks h3,
.blocks h4,
.blocks h5,
.blocks h6 {
  margin-bottom: 1rem;
  line-height: 1.35;
}

.blocks .has-left-border {
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
}

.blocks h1 {
  font-size: 2.4rem;
}

.blocks h2 {
  font-size: 2rem;
}

.blocks h3 {
  font-size: 1.7rem;
}

.blocks h4 {
  font-size: 1.5rem;
}

.blocks h5 {
  font-size: 1.3rem;
}

.blocks h6 {
  font-size: 1.2rem;
}

.blocks .codeblock {
  display: grid;
}

.blocks code {
  display: inline-block;
  padding: 0 0.5rem;
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  color: var(--color-black);
}

.blocks pre {
  margin: 3rem 0;
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
  background: var(--color-black);
  color: var(--color-white);
}

.blocks pre code {
  padding: 0;
  background: none;
  color: inherit;
}

.blocks hr {
  margin: 6rem 0;
}

.blocks dt {
  font-weight: 700;
}

.blocks blockquote {
  max-width: 25rem;
  margin: 0 0 1rem 0;
  padding-left: 1rem;
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
}

.blocks blockquote footer {
  font-size: 0.875rem;
  font-style: italic;
}

.blocks figure {
  margin: 0;
}

.blocks figcaption {
  padding-top: 0.75rem;
  color: var(--color-text-grey);
}

.blocks .img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}

.blocks .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* ========================================
   FORM CONTATTO
======================================== */

.form-contatto {
  margin-top: 0.6rem;
}

.form-contatto form {
  margin-top: 1.5rem;
}

.form-contatto h4 {
  margin-top: 3rem;
}

.form-contatto h4 a {
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 700;
}

.form-contatto h4 i {
  position: relative;
  top: 3px;
  margin-right: 10px;
  color: var(--color-text);
  font-size: 2.2rem;
  font-weight: 700;
}

.form-contatto .field {
  float: left;
  width: 100%;
  margin-bottom: 1.4rem;
  padding-right: 0;
  box-sizing: border-box;
}

.form-contatto .field.cento {
  width: 100%;
  margin-bottom: 0;
}

.form-contatto .text-field {
  float: left;
  width: 100%;
  padding-right: 0;
}

.form-contatto form label {
  display: none;
}

.form-contatto form label.gdpr {
  display: inline;
  font-size: 0.9rem;
  line-height: 1.3rem;
}

.form-contatto form input:not([type="submit"]) {
  width: 100%;
  padding: 0.5rem 0.1rem;
  box-sizing: border-box;
  border: 0;
  border-bottom: 2px solid var(--color-black);
  border-radius: 0;
  transition: 0.35s;
  font-family: var(--font-family-main);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.02rem;
}

.form-contatto form input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-top: 1rem;
  margin-right: 0.5rem;
  padding: 0.5rem 0.1rem;
  box-sizing: border-box;
  border: 0;
  border-bottom: 2px solid var(--color-black);
  border-radius: 0;
  transition: 0.3s;
  transform: scale(1.4);
  position: relative;
  top: 0.1rem;
  left: 0.2rem;
  font-family: var(--font-family-main);
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
}

.form-contatto form textarea {
  width: 100%;
  padding: 0.5rem 0.1rem;
  box-sizing: border-box;
  border: 0;
  border-bottom: 2px solid var(--color-black);
  border-radius: 0;
  transition: 0.35s;
  font-family: var(--font-family-main);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.02rem;
}

.form-contatto form input[type="submit"] {
  float: left;
  margin-top: 1.4rem;
  margin-right: 1rem;
  padding: 0.6rem 2rem;
  border: 0;
  background-color: var(--color-text);
  color: var(--color-white);
  cursor: pointer;
  transition: 0.35s;
  font-family: var(--font-family-main);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.form-contatto form input[type="submit"]:hover {
  background-color: var(--color-code-yellow);
  color: var(--color-black);
}

.form-contatto form input:focus,
.form-contatto form textarea:focus {
  background-color: var(--color-code-yellow);
  outline: none;
}

.form-contatto form input::placeholder,
.form-contatto form textarea::placeholder {
  color: var(--color-black);
  opacity: 1;
}

.form-contatto form input:-ms-input-placeholder,
.form-contatto form textarea:-ms-input-placeholder {
  color: var(--color-black);
}

.form-contatto form input::-ms-input-placeholder,
.form-contatto form textarea::-ms-input-placeholder {
  color: var(--color-black);
}

.form-contatto .success p {
  color: var(--color-code-magenta);
}

/* ========================================
   SWIPER
======================================== */

.swiper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper figure figcaption {
  display: none;
}

.swiper .swiper-pagination {
  bottom: -14px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.swiper:hover .swiper-pagination {
  bottom: 8px;
  opacity: 1;
}

.swiper .swiper-info {
  position: absolute;
  top: 100%;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--color-hover);
  color: var(--color-white);
  transition: all 0.2s ease-in-out;
}

.swiper .swiper-info.visible {
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper .swiper-info ul li {
  margin-bottom: 0;
  font-size: 0.8rem;
  text-align: center;
}

.swiper .swiper-info ul li span {
  font-weight: 700;
}

.swiper .swiper-chevron {
  position: absolute;
  bottom: -1rem;
  z-index: 3;
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.swiper:hover .swiper-chevron {
  bottom: 1.2rem;
  opacity: 1;
}

.swiper .swiper-chevron label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
}

.swiper .swiper-chevron:hover i,
.swiper .swiper-chevron:hover span {
  color: var(--color-code-yellow);
}

.swiper .swiper-chevron i {
  color: var(--color-white);
  text-align: center;
  font-size: 1.8rem;
  transition: all 0.3s ease-in-out;
}

.swiper .swiper-chevron.visible i {
  transform: rotate(180deg);
}

.swiper .swiper-chevron span {
  position: relative;
  top: -4px;
  left: 0.05rem;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.05rem;
  transition: all 0.3s ease-in-out;
}

.swiper-video {
  float: left;
  width: 100%;
}

/* ========================================
   MAP / HONEYPOT
======================================== */

#map {
  width: 100%;
  height: 550px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* ========================================
   SOUND BUTTON
======================================== */

.soundButton {
  position: absolute;
  bottom: 8px;
  left: 12px;
  color: var(--color-white);
  font-size: 2rem;
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
}

.soundButton:hover {
  color: var(--color-code-yellow);
}

.toggleSoundButton.volume-mute {
  color: var(--color-code-cyan);
}

.toggleSoundButton.volume-mute::after {
  content: " off";
  position: relative;
  top: -6px;
  right: 0;
  font-family: var(--font-family-safe);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.toggleSoundButton.volume-up {
  color: var(--color-code-magenta);
}

.toggleSoundButton.volume-up::after {
  content: " on";
  position: relative;
  top: -6px;
  right: 0;
  font-family: var(--font-family-safe);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.toggleSoundButton span {
  display: none;
}

.soundButton .toggleSoundButton:focus-visible {
  outline: 2px solid var(--color-code-yellow);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ========================================
   ASYNC GALLERY
======================================== */

.asyncGallery {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 1);
  transition: opacity 200ms, visibility 200ms;
}

.asyncGallery.is-visible {
  opacity: 1;
  visibility: visible;
}

.asyncGallery__Item {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transition: opacity 200ms, visibility 200ms;
}

.asyncGallery__Item.is-visible {
  opacity: 1;
  visibility: visible;
}

.asyncGallery__ItemImage img {
  display: block;
  width: 100vw;
  padding: 0;
}

.asyncGallery__ItemDescription,
.asyncGallery__Loader {
  color: #fff;
}

.asyncGallery__Loader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  display: none;
  color: #fff;
  transform: translate(-50%, -50%);
}

.asyncGallery__Loader.is-visible {
  display: block;
}

.asyncGallery button {
  padding: 0;
  border: 0;
  outline: 0;
  background-color: transparent;
  font-size: 0;
  cursor: pointer;
}

.asyncGallery__Close {
  position: absolute;
  top: 22px;
  right: 1.2rem;
  z-index: 1000;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-image: url("data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNTEycHgiIHZlcnNpb249IjEuMSIgaGVpZ2h0PSI1MTJweCIgdmlld0JveD0iMCAwIDY0IDY0IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA2NCA2NCI+CiAgPGc+CiAgICA8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjguOTQxLDMxLjc4NkwwLjYxMyw2MC4xMTRjLTAuNzg3LDAuNzg3LTAuNzg3LDIuMDYyLDAsMi44NDljMC4zOTMsMC4zOTQsMC45MDksMC41OSwxLjQyNCwwLjU5ICAgYzAuNTE2LDAsMS4wMzEtMC4xOTYsMS40MjQtMC41OWwyOC41NDEtMjguNTQxbDI4LjU0MSwyOC41NDFjMC4zOTQsMC4zOTQsMC45MDksMC41OSwxLjQyNCwwLjU5YzAuNTE1LDAsMS4wMzEtMC4xOTYsMS40MjQtMC41OSAgIGMwLjc4Ny0wLjc4NywwLjc4Ny0yLjA2MiwwLTIuODQ5TDM1LjA2NCwzMS43ODZMNjMuNDEsMy40MzhjMC43ODctMC43ODcsMC43ODctMi4wNjIsMC0yLjg0OWMtMC43ODctMC43ODYtMi4wNjItMC43ODYtMi44NDgsMCAgIEwzMi4wMDMsMjkuMTVMMy40NDEsMC41OWMtMC43ODctMC43ODYtMi4wNjEtMC43ODYtMi44NDgsMGMtMC43ODcsMC43ODctMC43ODcsMi4wNjIsMCwyLjg0OUwyOC45NDEsMzEuNzg2eiIvPgogIDwvZz4KPC9zdmc+Cg==");
}

.asyncGallery__Counter {
  position: absolute;
  right: 3rem;
  bottom: 42px;
  display: none;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.2rem;
}

.asyncGallery__Dots {
  position: absolute;
  left: 50%;
  bottom: 45px;
  z-index: 1000;
  display: none;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  list-style-type: none;
}

.asyncGallery__Dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  background-color: #fff;
}

.asyncGallery__Dots li {
  opacity: 0.2;
  transition: opacity 200ms;
}

.asyncGallery__Dots li + li {
  margin-left: 10px;
}

.asyncGallery__Dots li.is-active {
  opacity: 1;
}

.asyncGallery__Next,
.asyncGallery__Prev {
  position: absolute;
  top: 50%;
  z-index: 1000;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  transition: transform 200ms, opacity 200ms;
}

.asyncGallery__Next:disabled,
.asyncGallery__Prev:disabled {
  opacity: 0.2;
  cursor: default;
}

.asyncGallery__Next::before,
.asyncGallery__Prev::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 129 129' xmlns:xlink='http://www.w3.org/1999/xlink' enable-background='new 0 0 129 129'%3E%3Cg%3E%3Cpath d='m40.4,121.3c-0.8,0.8-1.8,1.2-2.9,1.2s-2.1-0.4-2.9-1.2c-1.6-1.6-1.6-4.2 0-5.8l51-51-51-51c-1.6-1.6-1.6-4.2 0-5.8 1.6-1.6 4.2-1.6 5.8,0l53.9,53.9c1.6,1.6 1.6,4.2 0,5.8l-53.9,53.9z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 30px 30px;
}

.asyncGallery__Next {
  right: 1.2rem;
}

.asyncGallery__Next:hover {
  transform: translateX(2px) translateY(-50%);
}

.asyncGallery__Next::before {
  transform: translate3d(-50%, -50%, 0);
}

.asyncGallery__Prev {
  left: 1.2rem;
}

.asyncGallery__Prev:hover {
  transform: translateX(-2px) translateY(-50%);
}

.asyncGallery__Prev::before {
  transform: translate3d(-50%, -50%, 0) scale(-1);
}
