@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spline+Sans+Mono:ital,wght@0,500;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee+Shade&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

h1, h2, h3, h4, h5, h6 {
  vertical-align: baseline;
  font-weight: normal;
}

pre {
  border-radius: 0 !important;
}

figure {
  margin: 0;
}

.stop-color-animation * {
  transition: color, background-color !important;
}
.stop-color-animation *::before, .stop-color-animation *::after {
  transition: color, background-color !important;
}

.stop-animation * {
  animation: none !important;
  transition: none !important;
  transition-duration: none !important;
}
.stop-animation *::before, .stop-animation *::after {
  animation: none !important;
  transition: none !important;
  transition-duration: none !important;
}

@media (prefers-reduced-motion: reduce) {
  body * {
    animation: none !important;
    transition: none !important;
    transition-duration: none !important;
  }
  body *::before, body *::after {
    animation: none !important;
    transition: none !important;
    transition-duration: none !important;
  }
}
:root {
  /* COLORS */
  --white: hsl(0,0%,100%);
  --smoke-grey: #F2F2F2;
  --light-grey: #E0E0E0;
  --medium-grey: #BDBDBD;
  --grey: #828282;
  --dark-grey: hsl(240,10%,22%);
  --darkest-grey: #070707;
  --black: hsl(0,0%,0%);
  --color-1: #DFB39D;
  --color-2: #B2D2D9;
  --color-3: #E2B36F;
  --color-4: #FEE5A7;
  --color-5: #899589;
  --color-1-light: color-mix(in srgb, var(--color-1-medium), white 35%);
  --color-1-dark: color-mix(in srgb, var(--color-1-medium), black 35%);
  /* PALETTE */
}

html {
  --text-color: var(--darkest-grey);
  --text-color-strong: var(--black);
  --body-color-strong: hsl(0, 0%, 100%);
  --body-color-medium: #ffffff;
  --body-color-soft: hsl(0, 0%, 85%);
  --main-color: var(--black);
  --menu-color: var(--black);
  --menu-shadow: 0 1px 8px 3px hsla(0,0%,10%,.2);
  --menu-link-color: var(--darkest-grey);
  --shadow-color: 0deg 0% 0%;
  --border-component: hsla(0,0%,0%,0);
}

:root {
  --content-divider: 1;
  --content-margin: 50px;
  --container: 1600px;
  --container-padding: 2rem;
  --svg-size: 1rem;
}

@media (max-width: 750px) {
  :root {
    --content-divider: 2;
  }
}
/* MENU */
:root {
  --menu-height: 70px;
  --menu-container-padding: var(--container-padding);
}

/* DESKTOP */
header[menu-position=fixed] {
  position: fixed;
}

header[menu-position=absolute] {
  position: absolute;
}

@font-face {
  font-family: Barber;
  src: local("Barber-Complete"), url("font/Barber-Complete.woff2") format("woff2"), url("font/Barber-Complete.woff") format("woff"), url("font/Barber-Complete.otf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
:root {
  --font-1: "Public Sans", sans-serif;
  --font-2: "Anton", sans-serif;
  --font-3: "Barber", serif;
  --font-4: "Bungee Shade", sans-serif;
  --main-font: var(--font-1);
  --text-font: var(--font-1);
  --base-font-size: 1rem;
  --base-line-height: 1.2;
  --base-font-weight: 400;
  --text-scale-ratio: 1.3;
  --font-weight-light: 300;
  --font-weight-bold: 800;
}

[style*="--font-size-custom"] {
  font-size: var(--font-size-custom);
}

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

.font-regular {
  font-weight: var(--base-font-weight);
}

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

/* https://maximeroudier.com/typeScaleClampGenerator/ */
h1, .text-h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h2, .text-h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
}

h3, .text-h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h4, .text-h4 {
  font-size: clamp(1.1rem, 2.75vw, 1.75rem);
}

p, .text-p {
  line-height: 1.2;
  font-weight: 300;
  font-size: clamp(1rem, -0.667rem + 3.56vw, 2rem);
}

h5, .text-h5 {
  font-size: clamp(0.75rem, 2vw, 1rem);
}

h6, .text-h6 {
  font-size: clamp(0.6rem, 1.8vw, 0.8rem);
}

@media (max-width: 750px) {
  :root {
    --text-scale-ratio: 1.1;
  }
  .text-custom {
    font-size: calc(var(--font-size-custom) / var(--text-scale-ratio));
  }
}
/* SINGLE PAGE */
.text-container {
  width: min(50rem, 100% - 0.5rem);
  margin: auto;
}

.text.capital-letter p:first-child::first-letter {
  font-size: calc(2rem + 4vmin);
  color: var(--main-color);
  float: left;
  margin: 0.2em 0.1em 0.2em 0;
}

.text {
  --text-scale: 1;
}
.text a {
  color: var(--main-color);
  text-decoration: underline;
}
.text h3 {
  font-size: calc(2.2rem / var(--text-scale));
  margin-top: calc(4rem / var(--text-scale));
  text-transform: uppercase;
  font-weight: bold;
}
.text h4 {
  font-size: calc(1.8rem / var(--text-scale));
  margin-top: calc(3rem / var(--text-scale));
}
.text h5 {
  font-size: 1.2rem;
  line-height: 2;
}
.text h6 {
  font-size: 0.8rem;
}
.text img {
  width: 100%;
}
.text li, .text p {
  font-family: var(--text-font);
  font-size: 1.2rem;
  line-height: 2.2rem;
  margin: 1rem 0;
}
.text li {
  margin-left: 1rem;
}

@media (max-width: 750px) {
  .text {
    --text-scale: 1.5;
  }
  .text li, .text p {
    font-size: 1rem;
    line-height: 2rem;
  }
}
/* Raster grid subsystem (rsms.me/raster) */
/* https://developer.mozilla.org/en-US/docs/Web/CSS/place-content */
.grid {
  --gap-lg: 20px;
  --gap-grid: var(--gap-lg);
  --cols-lg: repeat(12, 1fr);
  --grid-cs: 1;
  --grid-ce: -1;
  display: grid;
  grid-template-columns: var(--cols-lg);
  grid-template-rows: var(--rows-lg);
  gap: var(--row-gap-lg, var(--gap-grid)) var(--column-gap-lg, var(--gap-grid));
  place-content: var(--place-content-lg);
}
.grid.grid-overlap > * {
  grid-row: 1/2;
}
.grid.no-gap {
  --gap-lg: 0;
}
.grid.auto-fit {
  --cols-lg: repeat(auto-fit, minmax(var(--column-width, 100px), 1fr));
}
.grid.auto-fill {
  --cols-lg: repeat(auto-fill, minmax(var(--column-width, 100px), 1fr));
}
.grid.cols-3 {
  --cols-lg: repeat(3, 1fr);
}
.grid.cols-4 {
  --cols-lg: repeat(4, 1fr);
}
.grid.cols-6 {
  --cols-lg: repeat(6, 1fr);
}
.grid.cols-8 {
  --cols-lg: repeat(8, 1fr);
}
.grid > *[col-lg^="1"] {
  --grid-cs: 1;
}
.grid > *[col-lg^="2"] {
  --grid-cs: 2;
}
.grid > *[col-lg^="3"] {
  --grid-cs: 3;
}
.grid > *[col-lg^="4"] {
  --grid-cs: 4;
}
.grid > *[col-lg^="5"] {
  --grid-cs: 5;
}
.grid > *[col-lg^="6"] {
  --grid-cs: 6;
}
.grid > *[col-lg^="7"] {
  --grid-cs: 7;
}
.grid > *[col-lg^="8"] {
  --grid-cs: 8;
}
.grid > *[col-lg^="9"] {
  --grid-cs: 9;
}
.grid > *[col-lg^="10"] {
  --grid-cs: 10;
}
.grid > *[col-lg^="11"] {
  --grid-cs: 11;
}
.grid > *[col-lg^="12"] {
  --grid-cs: 12;
}
.grid > *[col-lg$="+1"], .grid > *[col-lg="1"] {
  --grid-ce: 1;
}
.grid > *[col-lg$="+2"], .grid > *[col-lg$="-1"], .grid > *[col-lg="2"] {
  --grid-ce: 2;
}
.grid > *[col-lg$="+3"], .grid > *[col-lg$="-2"], .grid > *[col-lg="3"] {
  --grid-ce: 3;
}
.grid > *[col-lg$="+4"], .grid > *[col-lg$="-3"], .grid > *[col-lg="4"] {
  --grid-ce: 4;
}
.grid > *[col-lg$="+5"], .grid > *[col-lg$="-4"], .grid > *[col-lg="5"] {
  --grid-ce: 5;
}
.grid > *[col-lg$="+6"], .grid > *[col-lg$="-5"], .grid > *[col-lg="6"] {
  --grid-ce: 6;
}
.grid > *[col-lg$="+7"], .grid > *[col-lg$="-6"], .grid > *[col-lg="7"] {
  --grid-ce: 7;
}
.grid > *[col-lg$="+8"], .grid > *[col-lg$="-7"], .grid > *[col-lg="8"] {
  --grid-ce: 8;
}
.grid > *[col-lg$="+9"], .grid > *[col-lg$="-8"], .grid > *[col-lg="9"] {
  --grid-ce: 9;
}
.grid > *[col-lg$="+10"], .grid > *[col-lg$="-9"], .grid > *[col-lg="10"] {
  --grid-ce: 10;
}
.grid > *[col-lg$="+11"], .grid > *[col-lg$="-10"], .grid > *[col-lg="11"] {
  --grid-ce: 11;
}
.grid > *[col-lg$="+12"], .grid > *[col-lg$="-11"], .grid > *[col-lg="12"] {
  --grid-ce: 12;
}
.grid > *[col-lg$="-12"] {
  --grid-ce: 13;
}
.grid > *[col-lg] {
  grid-column-end: span var(--grid-ce);
}
.grid > *[col-lg*="+"], .grid > *[col-lg*="-"], .grid > *[col-lg*=-last] {
  grid-column-start: var(--grid-cs);
}
.grid > *[col-lg*="-"], .grid > *[col-lg*=-last] {
  grid-column-end: var(--grid-ce);
}
.grid > *[col-lg=row] {
  grid-column: 1/-1;
}
.grid.debug > * {
  --color: rgba(248, 110, 91, 0.3);
  background-image: linear-gradient(to bottom, var(--color) 0%, var(--color) 100%);
}
.grid.debug > :nth-child(6n+2) {
  --color: rgba(103, 126, 208, 0.3);
}
.grid.debug > :nth-child(6n+3) {
  --color: rgba(224, 174, 72, 0.3);
}
.grid.debug > :nth-child(6n+4) {
  --color: rgba(77, 214, 115, 0.3);
}
.grid.debug > :nth-child(6n+5) {
  --color: rgba(217, 103, 219, 0.3);
}
.grid.debug > :nth-child(6n+6) {
  --color: rgba(94, 204, 211, 0.3);
}
.grid.debug > :nth-child(6n+7) {
  --color: rgba(248, 110, 91, 0.3);
}

@media (max-width: 1024px) {
  .grid {
    --gap-grid: var(--gap-md, var(--gap-lg));
    --cols: var(--cols-md, var(--cols-lg));
    grid-template-columns: var(--cols);
    grid-template-rows: var(--grid-rows-md, var(--grid-rows-lg));
    gap: var(--row-gap-md, var(--gap-grid)) var(--column-gap-md, var(--gap-grid));
    place-content: var(--place-content-md, var(--place-content-lg));
  }
  .grid.cols-4 {
    --cols-lg: repeat(2, 1fr);
  }
  .grid.cols-6 {
    --cols-lg: repeat(3, 1fr);
  }
  .grid.cols-8 {
    --cols-lg: repeat(4, 1fr);
  }
  .grid > *[col-md^="1"] {
    --grid-cs: 1;
  }
  .grid > *[col-md^="2"] {
    --grid-cs: 2;
  }
  .grid > *[col-md^="3"] {
    --grid-cs: 3;
  }
  .grid > *[col-md^="4"] {
    --grid-cs: 4;
  }
  .grid > *[col-md^="5"] {
    --grid-cs: 5;
  }
  .grid > *[col-md^="6"] {
    --grid-cs: 6;
  }
  .grid > *[col-md^="7"] {
    --grid-cs: 7;
  }
  .grid > *[col-md^="8"] {
    --grid-cs: 8;
  }
  .grid > *[col-md^="9"] {
    --grid-cs: 9;
  }
  .grid > *[col-md^="10"] {
    --grid-cs: 10;
  }
  .grid > *[col-md^="11"] {
    --grid-cs: 11;
  }
  .grid > *[col-md^="12"] {
    --grid-cs: 12;
  }
  .grid > *[col-md$="+1"], .grid > *[col-md="1"] {
    --grid-ce: 1;
  }
  .grid > *[col-md$="+2"], .grid > *[col-md$="-1"], .grid > *[col-md="2"] {
    --grid-ce: 2;
  }
  .grid > *[col-md$="+3"], .grid > *[col-md$="-2"], .grid > *[col-md="3"] {
    --grid-ce: 3;
  }
  .grid > *[col-md$="+4"], .grid > *[col-md$="-3"], .grid > *[col-md="4"] {
    --grid-ce: 4;
  }
  .grid > *[col-md$="+5"], .grid > *[col-md$="-4"], .grid > *[col-md="5"] {
    --grid-ce: 5;
  }
  .grid > *[col-md$="+6"], .grid > *[col-md$="-5"], .grid > *[col-md="6"] {
    --grid-ce: 6;
  }
  .grid > *[col-md$="+7"], .grid > *[col-md$="-6"], .grid > *[col-md="7"] {
    --grid-ce: 7;
  }
  .grid > *[col-md$="+8"], .grid > *[col-md$="-7"], .grid > *[col-md="8"] {
    --grid-ce: 8;
  }
  .grid > *[col-md$="+9"], .grid > *[col-md$="-8"], .grid > *[col-md="9"] {
    --grid-ce: 9;
  }
  .grid > *[col-md$="+10"], .grid > *[col-md$="-9"], .grid > *[col-md="10"] {
    --grid-ce: 10;
  }
  .grid > *[col-md$="+11"], .grid > *[col-md$="-10"], .grid > *[col-md="11"] {
    --grid-ce: 11;
  }
  .grid > *[col-md$="+12"], .grid > *[col-md$="-11"], .grid > *[col-md="12"] {
    --grid-ce: 12;
  }
  .grid > *[col-md$="-12"] {
    --grid-ce: 13;
  }
  .grid > *[col-md] {
    grid-column-end: span var(--grid-ce);
  }
  .grid > *[col-md*="+"], .grid > *[col-md*="-"], .grid > *[col-md*=-last] {
    grid-column-start: var(--grid-cs);
  }
  .grid > *[col-md*="-"], .grid > *[col-md*=-last] {
    grid-column-end: var(--grid-ce);
  }
  .grid > *[col-md=row] {
    grid-column: 1/-1;
  }
}
@media (max-width: 750px) {
  .grid {
    --gap-grid: var(--gap-sm, var(--gap-lg));
    grid-template-columns: var(--cols-sm, var(--cols));
    grid-template-rows: var(--grid-rows-sm);
    gap: var(--row-gap-sm, var(--gap-grid)) var(--column-gap-sm, var(--gap-grid));
    place-content: var(--place-content-sm, var(--place-content-lg));
  }
  .grid:not([style*="--cols-sm"]) > *:not([col-sm]):not([col]) {
    grid-column: 1/-1;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="1"] {
    --grid-cs: 1;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="2"] {
    --grid-cs: 2;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="3"] {
    --grid-cs: 3;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="4"] {
    --grid-cs: 4;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="5"] {
    --grid-cs: 5;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="6"] {
    --grid-cs: 6;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="7"] {
    --grid-cs: 7;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="8"] {
    --grid-cs: 8;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="9"] {
    --grid-cs: 9;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="10"] {
    --grid-cs: 10;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="11"] {
    --grid-cs: 11;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm^="12"] {
    --grid-cs: 12;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+1"], .grid:not([style*="--cols-sm"]) > *[col-sm="1"] {
    --grid-ce: 1;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+2"], .grid:not([style*="--cols-sm"]) > *[col-sm$="-1"], .grid:not([style*="--cols-sm"]) > *[col-sm="2"] {
    --grid-ce: 2;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+3"], .grid:not([style*="--cols-sm"]) > *[col-sm$="-2"], .grid:not([style*="--cols-sm"]) > *[col-sm="3"] {
    --grid-ce: 3;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+4"], .grid:not([style*="--cols-sm"]) > *[col-sm$="-3"], .grid:not([style*="--cols-sm"]) > *[col-sm="4"] {
    --grid-ce: 4;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+5"], .grid:not([style*="--cols-sm"]) > *[col-sm$="-4"], .grid:not([style*="--cols-sm"]) > *[col-sm="5"] {
    --grid-ce: 5;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+6"], .grid:not([style*="--cols-sm"]) > *[col-sm$="-5"], .grid:not([style*="--cols-sm"]) > *[col-sm="6"] {
    --grid-ce: 6;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+7"], .grid:not([style*="--cols-sm"]) > *[col-sm$="-6"], .grid:not([style*="--cols-sm"]) > *[col-sm="7"] {
    --grid-ce: 7;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+8"], .grid:not([style*="--cols-sm"]) > *[col-sm$="-7"], .grid:not([style*="--cols-sm"]) > *[col-sm="8"] {
    --grid-ce: 8;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+9"], .grid:not([style*="--cols-sm"]) > *[col-sm$="-8"], .grid:not([style*="--cols-sm"]) > *[col-sm="9"] {
    --grid-ce: 9;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+10"], .grid:not([style*="--cols-sm"]) > *[col-sm$="-9"], .grid:not([style*="--cols-sm"]) > *[col-sm="10"] {
    --grid-ce: 10;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+11"], .grid:not([style*="--cols-sm"]) > *[col-sm$="-10"], .grid:not([style*="--cols-sm"]) > *[col-sm="11"] {
    --grid-ce: 11;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="+12"], .grid:not([style*="--cols-sm"]) > *[col-sm$="-11"], .grid:not([style*="--cols-sm"]) > *[col-sm="12"] {
    --grid-ce: 12;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm$="-12"] {
    --grid-ce: 13;
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm] {
    grid-column-end: span var(--grid-ce);
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm*="+"], .grid:not([style*="--cols-sm"]) > *[col-sm*="-"], .grid:not([style*="--cols-sm"]) > *[col-sm*=-last] {
    grid-column-start: var(--grid-cs);
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm*="-"], .grid:not([style*="--cols-sm"]) > *[col-sm*=-last] {
    grid-column-end: var(--grid-ce);
  }
  .grid:not([style*="--cols-sm"]) > *[col-sm=row] {
    grid-column: 1/-1;
  }
  .column-reverse-mobile > *:first-child {
    order: 2;
  }
  .column-reverse-mobile > *:last-child {
    order: 1;
  }
}
[animation^=text] span {
  display: inline-block;
  opacity: 0;
}

/* MENU */
:root {
  --menu-height: 90px;
  --menu-container-padding: 4rem;
}
@media (max-width: 750px) {
  :root {
    --menu-height: 120px;
  }
}

/* DESKTOP */
header {
  display: flex;
  justify-content: center;
  width: 100%;
}
header .menu-container {
  display: flex;
  align-items: center;
  height: var(--menu-height);
  width: min(1800px, 100% - var(--menu-container-padding));
  margin: auto;
  position: relative;
  justify-content: var(--menu-justify, space-between);
  align-items: var(--menu-align, center);
}
header .menu-container li {
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
  font-size: clamp(1rem, -0.667rem + 3.56vw, 2rem);
  font-weight: var(--font-weight-bold);
}
header .menu-container .logo {
  display: flex;
  align-items: center;
}
header .menu-container img {
  width: 50px;
  display: block;
}

/* *--------------------------------------------------------
 * *
 * *TOOLKIT
 * *
 * *-------------------------------------------------------- */
/* TEXT STYLE */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* OVERFLOW */
.overflow .hidden {
  overflow: hidden;
}
.overflow .scroll {
  overflow: scroll;
}
.overflow .auto {
  overflow: auto;
}

/* Z-INDEX */
.z-above {
  z-index: 11;
}

.z-under {
  z-index: 9;
}

.z-negative {
  z-index: -1;
}

/* BACKGROUND */
.background-fit {
  background-size: cover;
  background-repeat: no-repeat;
}

[style*="--background-position-lg"] {
  background-position: var(--background-position-lg);
}

@media (max-width: 1024px) {
  [style*="--background-position-md"] {
    background-position: var(--background-position-md);
  }
}
@media (max-width: 750px) {
  [style*="--background-position-sm"] {
    background-position: var(--background-position-sm);
  }
}
/* WIDTHS */
.full-width-viewport {
  --width: var(--viewport-width, 100vw);
  width: var(--width);
  --vw: calc(var(--width) / 2 - var(--width));
  position: relative;
  left: calc(var(--vw, -50vw) + 50%);
}

.full-width {
  width: 100%;
}

/* HEIGHTS */
.full-height {
  height: 100%;
}

.full-height-viewport {
  height: 100vh;
}

.half-height {
  height: 50%;
}

.half-height-viewport {
  height: 50vh;
}

.content-width {
  width: fit-content;
}

.content-center {
  display: grid;
  place-content: center;
}

/* LAZY LOAD */
.lazy-load {
  opacity: 0;
}

.lazy-loaded {
  opacity: 1;
  transition: opacity 0.3s;
}

.lazy-load-placeholder {
  position: relative;
  overflow: hidden;
  background-color: var(--color-1-medium);
  width: 100%;
  height: var(--img-height-lg);
}
@media (max-width: 1024px) {
  .lazy-load-placeholder {
    height: var(--img-height-md, var(--img-height-lg));
  }
}
@media (max-width: 750px) {
  .lazy-load-placeholder {
    height: var(--img-height-sm, 300px);
  }
}
.lazy-load-placeholder::before {
  display: block;
  content: url(img/image.svg);
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: calc(50% - 25px);
  left: calc(50% - 25px);
}
.lazy-load-placeholder img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ORDER */
[style*="--order-lg"] {
  order: var(--order-lg);
}

@media (max-width: 1024px) {
  [style*="--order-md"] {
    order: var(--order-md);
  }
}
@media (max-width: 750px) {
  [style*="--order-sm"] {
    order: var(--order-sm);
  }
}
/* HEIGHT */
[style*="--height-lg"] {
  height: var(--height-lg);
}

@media (max-width: 1024px) {
  .height-auto_only-sm {
    height: auto;
  }
  [style*="--height-md"] {
    height: var(--height-md);
  }
}
@media (max-width: 750px) {
  [style*="--height-sm"] {
    height: var(--height-sm);
  }
}
/* MIN-HEIGHT */
[style*="--min-height-lg"] {
  min-height: var(--min-height-lg);
}

@media (max-width: 1024px) {
  [style*="--min-height-md"] {
    min-height: var(--min-height-md);
  }
}
@media (max-width: 750px) {
  [style*="--min-height-sm"] {
    min-height: var(--min-height-sm);
  }
}
/* WIDTH */
[style*="--width-lg"] {
  width: var(--width-lg) !important;
}

@media (max-width: 1024px) {
  .width-auto_only-sm {
    width: auto;
  }
  [style*="--width-md"] {
    width: var(--width-md) !important;
  }
}
@media (max-width: 750px) {
  [style*="--width-sm"] {
    width: var(--width-sm) !important;
  }
}
/* MAX-WIDTH */
[style*="--max-width-lg"] {
  max-width: var(--max-width-lg) !important;
}

@media (max-width: 1024px) {
  [style*="--max-width-md"] {
    max-width: var(--max-width-md) !important;
  }
}
@media (max-width: 750px) {
  [style*="--max-width-sm"] {
    max-width: var(--max-width-sm) !important;
  }
}
/* ASPECT RATIO */
[style*=aspect-ratio] {
  aspect-ratio: var(--aspect-ratio-lg);
}
@media (max-width: 1024px) {
  [style*=aspect-ratio] {
    aspect-ratio: var(--aspect-ratio-md, var(--aspect-ratio-lg));
  }
}
@media (max-width: 750px) {
  [style*=aspect-ratio] {
    aspect-ratio: var(--aspect-ratio-sm, var(--aspect-ratio-lg));
  }
}

[class*=aspect-ratio][class*="_16/9"] {
  --aspect-ratio-lg: 16 / 9;
}

[class*=aspect-ratio][class*="_4/3"] {
  --aspect-ratio-lg: 4 / 3;
}

[class*=aspect-ratio][class*="_1/1"] {
  --aspect-ratio-lg: 1 / 1;
}

[class*=aspect-ratio][class*="_21/9"] {
  --aspect-ratio-lg: 21 / 9;
}

/* COLOR */
[style*="--bg-color"] {
  background-color: var(--bg-color);
}

[style*="--text-color"] {
  color: var(--text-color);
}

/* COUNTER */
.counter {
  counter-reset: section;
}
.counter *::before {
  counter-increment: section;
  content: counter(section);
}

/*DISPLAY NONE */
[display-none=all] {
  display: none !important;
}

@media (min-width: 1024px) {
  [display-none*=large] {
    display: none !important;
  }
}
@media (max-width: 1024px) and (min-width: 750px) {
  [display-none*=medium] {
    display: none !important;
  }
}
@media (max-width: 750px) {
  [display-none*=small] {
    display: none !important;
  }
}
/*BORDER RADIUS */
[style*="--border-radius"] {
  border-radius: var(--border-radius-lg);
}
@media (max-width: 1024px) {
  [style*="--border-radius"] {
    border-radius: var(--border-radius-md, var(--border-radius-lg));
  }
}
@media (max-width: 750px) {
  [style*="--border-radius"] {
    border-radius: var(--border-radius-sm, var(--border-radius-lg));
  }
}

/* FLEXBOX */
.flex {
  display: flex;
  gap: var(--flex-gap);
}

.flex.justify-between,
.grid.justify-between {
  justify-content: space-between;
}
.flex.justify-around,
.grid.justify-around {
  justify-content: space-around;
}
.flex.justify-start,
.grid.justify-start {
  justify-content: flex-start;
}
.flex.justify-center,
.grid.justify-center {
  justify-content: center;
}
.flex.justify-end,
.grid.justify-end {
  justify-content: flex-end;
}
.flex.justify-evenly,
.grid.justify-evenly {
  justify-content: space-evenly;
}
.flex.wrap,
.grid.wrap {
  flex-wrap: wrap;
}
.flex.wrap-reverse,
.grid.wrap-reverse {
  flex-wrap: wrap-reverse;
}
.flex.row-reverse,
.grid.row-reverse {
  flex-flow: row-reverse;
}
.flex.align-center,
.grid.align-center {
  align-items: center;
}
.flex.align-end,
.grid.align-end {
  align-items: flex-end;
}
.flex.column,
.grid.column {
  flex-flow: column;
}
.flex.column-reverse,
.grid.column-reverse {
  flex-flow: column-reverse;
}

/* TEXT-ALIGN + LIST */
.text-left {
  text-align: left;
}

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

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

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

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

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

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

.list-none {
  list-style: none;
}

/* POSITION */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  top: calc(var(--top, var(--menu-height)) + 1rem);
  position: -webkit-sticky;
  position: sticky;
}

.absolute-reset {
  inset: 0;
}

:root {
  --space: 1rem;
}

.margin-top-half {
  margin-top: calc(var(--space) / 2);
}

.margin-bottom-half {
  margin-bottom: calc(var(--space) / 2);
}

.margin-left-half {
  margin-left: calc(var(--space) / 2);
}

.margin-right-half {
  margin-right: calc(var(--space) / 2);
}

.margin-top-x1 {
  margin-top: calc(var(--space) * 1);
}

.margin-bottom-x1 {
  margin-bottom: calc(var(--space) * 1);
}

.margin-left-x1 {
  margin-left: calc(var(--space) * 1);
}

.margin-right-x1 {
  margin-right: calc(var(--space) * 1);
}

.margin-top-x2 {
  margin-top: calc(var(--space) * 2);
}

.margin-bottom-x2 {
  margin-bottom: calc(var(--space) * 2);
}

.margin-right-x2 {
  margin-right: calc(var(--space) * 2);
}

.margin-left-x2 {
  margin-bottom: calc(var(--space) * 2);
}

.margin-top-x3 {
  margin-top: calc(var(--space) * 3);
}

.margin-bottom-x3 {
  margin-bottom: calc(var(--space) * 3);
}

.margin-right-x3 {
  margin-right: calc(var(--space) * 3);
}

.margin-left-x3 {
  margin-left: calc(var(--space) * 3);
}

.padding-top-half {
  --padding-top: calc(var(--space) / 2);
}

.padding-bottom-half {
  padding-bottom: calc(var(--space) / 2);
}

.padding-left-half {
  padding-left: calc(var(--space) / 2);
}

.padding-right-half {
  padding-right: calc(var(--space) / 2);
}

.padding-top-x1 {
  padding-top: calc(var(--space) * 1);
}

.padding-bottom-x1 {
  padding-bottom: calc(var(--space) * 1);
}

.padding-left-x1 {
  padding-left: calc(var(--space) * 1);
}

.padding-right-x1 {
  padding-right: calc(var(--space) * 1);
}

.padding-top-x2 {
  padding-top: calc(var(--space) * 2);
}

.padding-bottom-x2 {
  padding-bottom: calc(var(--space) * 2);
}

.padding-right-x2 {
  padding-right: calc(var(--space) * 2);
}

.padding-left-x2 {
  padding-left: calc(var(--space) * 2);
}

.padding-top-x3 {
  padding-top: calc(var(--space) * 3);
}

.padding-bottom-x3 {
  padding-bottom: calc(var(--space) * 3);
}

.padding-right-x3 {
  padding-right: calc(var(--space) * 3);
}

.padding-left-x3 {
  padding-left: calc(var(--space) * 3);
}

/* PADDING AND MARGIN */
[style*="--padding-lg"] {
  padding: var(--padding-lg) !important;
}

[style*="--margin-lg"] {
  margin: var(--margin-lg) !important;
}

.margin-auto {
  margin: auto;
}

@media (max-width: 1024px) {
  [style*="--padding-md"] {
    padding: var(--padding-md) !important;
  }
  [style*="--margin-md"] {
    margin: var(--space-md) !important;
  }
}
@media (max-width: 750px) {
  [style*="--padding-sm"] {
    padding: var(--padding-sm) !important;
  }
  [style*="--margin-sm"] {
    margin: var(--margin-sm) !important;
  }
}
/* TITLE */
.title {
  color: var(--text-color);
  font-family: var(--font-2);
  font-size: clamp(3rem, -4.667rem + 14.22vw, 6rem);
  line-height: 0.9;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
}
.title.white {
  color: #FFF;
}
.title span {
  transform: translateX(4vw);
  display: block;
}

.title-container {
  font-size: clamp(1rem, -4.474rem + 11.68vw, 3rem);
  margin-bottom: 1rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

/* BUTTON */
.button {
  --button-color: var(--main-color);
  --button-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  --button-text-color: var(--button-color);
  --button-border-radius: calc(var(--size) / 24);
  --button-hover-color: var(--button-color);
  --size: var(--button-size, 160px);
  --svg-size: calc(var(--size) / 7);
  --svg-margin: 4;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  font-size: calc(var(--size) / 9);
  width: var(--button-width, var(--size));
  height: var(--button-height, calc(var(--size) / 3));
  background-color: var(--bg-color);
  color: var(--button-text-color);
  border-radius: var(--button-border-radius);
  border: solid var(--button-color);
  position: relative;
  gap: calc(var(--svg-size) / var(--svg-margin));
}

.button_fill {
  --bg-color: var(--button-color);
  --button-text-color: #FFF;
}

.button_small {
  --size: 150px;
  --button-width: 80px;
}

.button_large {
  --size: 200px;
}

.button_auto {
  display: inline-flex;
  width: max-content;
  height: fit-content;
  padding: 15px 30px;
}

.button_radius-none {
  --button-border-radius: 0;
}

.button_shadow {
  box-shadow: 5px 5px 0 0 var(--button-color);
}

.button_solid {
  box-shadow: 0 5px 2px var(--color-1-dark);
}

button:focus {
  outline: max(1px, 0.1em) solid currentColor;
  outline-offset: 0.25em;
}
@supports selector(:focus-visible) {
  button:focus {
    outline: none;
  }
  button:focus-visible {
    outline: max(1px, 0.1em) dashed currentColor;
    outline-offset: -0.25em;
  }
}

/*HERO */
.hero-parallax {
  background-attachment: fixed;
}

.hero {
  --width: var(--hero-width, 100%);
  --standard-hero-height: clamp(25rem, 50vmax, 50vh);
  position: relative;
  color: var(--hero-color, #FFF);
  width: var(--width);
  --vw: calc(var(--width) / 2 - var(--width));
  left: calc(var(--vw, 50vw) + 50%);
  min-height: var(--hero-height, var(--standard-hero-height));
  background-color: var(--hero-bg-color, var(--main-color));
  background-size: var(--hero-bg-size, cover);
  background-repeat: var(--hero-bg-repeat, no-repeat);
  background-position: var(--hero-bg-position, center);
  background-image: var(--hero-image-lg);
}
.hero section, .hero section::before {
  position: var(--hero-position, relative);
  width: 100%;
  min-height: var(--hero-height, var(--standard-hero-height));
  z-index: 0;
}
.hero section {
  padding: var(--hero-padding, 0 2rem);
  z-index: 1;
  display: grid;
  align-content: center;
}
.hero section::before {
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-color: var(--hero-opacity-color, #000);
  background-image: var(--hero-opacity-image);
  opacity: var(--hero-opacity, 0);
}

.hero_long-text {
  --hero-padding: 2rem;
}

.hero_image {
  --hero-height: auto;
  --hero-bg-color: none;
  text-align: center;
}

.hero_full-height {
  --hero-height: 100dvh;
}

.hero_full-width {
  --hero-width: 100vw;
}

.hero_opacity-high {
  --hero-opacity: .8;
}

.hero_opacity-low {
  --hero-opacity: .4;
}

.hero_center section {
  display: grid;
  place-content: center;
}

.hero-video-background {
  background-color: inherit;
  overflow: hidden;
  z-index: 1;
}
.hero-video-background video {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
  min-width: 100%;
  min-height: 100%;
}

.freeprivacypolicy-com---palette-dark .cc-nb-okagree,
.freeprivacypolicy-com---palette-dark .cc-nb-reject {
  color: #FFF !important;
  background-color: var(--main-color) !important;
}

.freeprivacypolicy-com---nb-simple {
  min-width: 100vw !important;
}

#lavori {
  min-height: 70vh;
}
#lavori .lavori-container {
  overflow: hidden;
  display: flex;
  gap: clamp(1rem, -37.321rem + 81.75vw, 15rem);
  flex-wrap: nowrap;
  align-items: center;
  height: 80vh;
  padding-left: max(1rem, (100vw - (var(--container))) / 2);
  padding-right: max(1rem, (100vw - (var(--container))) / 2);
  transform: rotate(3deg);
}
#lavori .lavoro {
  height: clamp(500px, 30vmax, 70vh);
  min-width: clamp(350px, 50vw, 25vw);
  background-color: white;
  border-radius: clamp(0rem, -1.737rem + 5.84vw, 2rem);
  overflow: hidden;
  padding: 2rem;
  display: grid;
  place-content: center;
  border: 5px black solid;
  text-align: center;
  box-shadow: 10px 10px 0 0 #000;
}
#lavori .lavoro img {
  width: calc(100px + 5vmax);
  margin: auto;
  object-fit: cover;
  opacity: 1;
}
#lavori .lavoro .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#lavori .lavoro .container h3 {
  padding: 2rem 0 0 0;
  font-weight: var(--font-weight-bold);
  font-size: clamp(2rem, -0.737rem + 5.84vw, 3rem);
}
#lavori .lavoro .container p {
  font-weight: 300;
  font-size: 1.4rem;
  padding-top: 1rem;
  max-width: 500px;
}
#lavori .lavoro .container .button {
  box-shadow: none;
}

#presentazione {
  position: relative;
  height: clamp(20rem, 70vmax, 100dvh);
  display: grid;
  place-content: center;
  grid-template-columns: 1fr;
  width: 100%;
  --font-size-h2: clamp(2.8rem, -3rem + 10.67vw, 9rem);
}
#presentazione section {
  max-width: 1850px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  color: var(--main-color);
}
#presentazione h2 {
  font-size: var(--font-size-h2);
  font-family: var(--font-4);
  text-transform: uppercase;
  line-height: 1;
  font-weight: 800;
}
#presentazione h2 span {
  opacity: 0;
  display: block;
  white-space: nowrap;
}
#presentazione h2 .color-text-1 {
  font-size: calc(1.9 * var(--font-size-h2));
}
#presentazione h2 .text-small {
  text-orientation: upright;
  writing-mode: vertical-rl;
  font-size: calc(0.39 * var(--font-size-h2));
  text-align: center;
  padding-top: calc(0.1 * var(--font-size-h2)) !important;
}
#presentazione p {
  color: var(--main-color);
  font-size: clamp(1rem, 0.286rem + 1.52vw, 2rem);
  max-width: 600px;
  transform: translateY(15px);
}
#presentazione #device,
#presentazione #light-bulb {
  display: flex;
}
#presentazione #device img,
#presentazione #light-bulb img {
  position: relative;
  top: 55%;
  transform: translateY(-50%) rotate(10deg);
}
#presentazione #light-bulb span {
  display: flex;
  align-items: center;
  min-height: calc(1.5 * var(--font-size-h2));
}
#presentazione #light-bulb img {
  max-width: calc(1.1 * var(--font-size-h2));
}
#presentazione #device img {
  max-width: var(--font-size-h2);
  transform: translateY(-50%) rotate(-15deg);
}

#biografia {
  margin: 2rem var(--container-padding) clamp(1rem, -11.353rem + 26.35vw, 15rem);
}
#biografia #typed-text {
  position: absolute;
  inset: 0;
  top: 25%;
  left: 28%;
  max-width: 140px;
  height: 100%;
  font-size: clamp(0.438rem, 0.391rem + 0.23vw, 0.625rem);
  font-family: "Spline Sans Mono", monospace;
  overflow: hidden;
  transform: skew(0deg, 2.7deg);
  color: #ffffff;
}
#biografia #mestieri {
  overflow: hidden;
  transform: rotate(3deg);
}
#biografia #mestieri section {
  display: flex;
  white-space: nowrap;
  color: var(--main-color);
}
#biografia h2 {
  font-family: var(--font-2);
  font-size: clamp(3rem, -11.333rem + 28.44vw, 10rem);
  letter-spacing: clamp(0.2rem, -1.133rem + 2.84vw, 0.8rem);
  line-height: 1.4;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
#biografia h2:after {
  --size: clamp(0.3rem, -0.318rem + 3.09vw, 2rem);
  content: "";
  width: var(--size);
  height: var(--size);
  background-color: currentColor;
  display: block;
  margin: 0 calc(var(--size) * 4);
  border-radius: 50%;
}
#biografia .computer {
  position: absolute;
  left: 60%;
  width: 550px;
}
#biografia .computer img {
  width: 550px;
}
@media (max-width: 1024px) {
  #biografia .computer img {
    width: 450px;
  }
}

#competenze {
  min-height: clamp(20rem, 70vmax, 85vh);
}
#competenze .article-container {
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  overflow: hidden;
}
#competenze h4 {
  font-family: var(--font-2);
  font-size: clamp(1.5rem, -1rem + 5.33vw, 3rem);
  margin-bottom: 1rem;
}
#competenze p {
  font-size: clamp(0.8rem, -0.333rem + 2.84vw, 0.9rem);
}
#competenze .e2 {
  grid-column-start: 1;
  grid-row-start: 5;
}
#competenze .e3,
#competenze .e4 {
  grid-column-start: 4;
}
#competenze .e3 {
  grid-row-start: 5;
}
#competenze .e4 {
  grid-row-start: 1;
}
#competenze .center-image {
  --svg-size: 260px;
  position: absolute;
  top: calc(50% - var(--svg-size) / 2);
  left: calc(50% - var(--svg-size) / 2);
}

#contatti .container {
  margin: clamp(2rem, -2.333rem + 7.11vw, 6rem) auto;
  border-radius: clamp(0rem, -1.737rem + 5.84vw, 2rem);
  padding: clamp(1rem, -2.462rem + 7.38vw, 4rem);
  border: 5px black solid;
  box-shadow: 10px 10px 0 0 #000;
}

#veloce {
  min-height: clamp(20rem, 70vmax, 85vh);
}
#veloce h2 {
  margin-bottom: 1rem;
  mix-blend-mode: difference;
  color: #FFF;
}
#veloce p {
  font-size: clamp(1rem, -0.333rem + 2.84vw, 1.5rem);
  mix-blend-mode: difference;
  color: #FFB259;
}
#veloce #block-bg {
  position: absolute;
  z-index: -1;
  height: var(--size);
  width: var(--size);
  padding: 1rem;
  font-size: calc(var(--size) / 18);
  border-radius: 100%;
  shape-outside: circle();
  background-color: var(--block-bg);
}
#veloce #block-bg text {
  fill: color-mix(in srgb, var(--block-bg), black 10%);
  text-transform: uppercase;
}
#veloce .block-1 {
  --block-bg: var(--color-1);
  transform: rotate(-20deg);
  left: 60%;
  top: 0%;
  --size: 300px;
}
#veloce .block-2 {
  --block-bg: var(--color-4);
  transform: rotate(10deg);
  left: 25%;
  --size: 400px;
}
#veloce .block-3 {
  --block-bg: var(--color-3);
  transform: rotate(-20deg);
  left: 60%;
  top: 60%;
  --size: 200px;
}
#veloce svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button-shadow {
  position: relative;
  box-shadow: var(--button-shadow);
  background-color: var(--button-color);
  color: #FFF;
}
.button-shadow::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: var(--button-width, var(--size));
  height: var(--button-height, calc(var(--size) / 3));
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  border-radius: var(--button-border-radius);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.button-shadow:hover::after {
  opacity: 1;
}

.button-line {
  position: relative;
  transition: ease-out 0.3s 0.1s;
  overflow: hidden;
}
.button-line::after {
  height: 0.3rem;
  width: 100%;
  background: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: var(--button-effect-line-bottom, 0);
  transform: scaleX(0);
  transition: 0.3s;
}
.button-line:hover::after {
  transform: scaleX(1);
}

.button-border {
  transition: box-shadow 0.3s ease;
}
.button-border:hover {
  box-shadow: inset 0px 0px 0px 5px currentColor;
}

[class*=button-slide] {
  z-index: 1;
  overflow: hidden;
}
[class*=button-slide]::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: var(--button-color);
  transform-origin: center var(--origin);
  transform: var(--scale-b, scaleX(0));
  transition: transform 0.25s ease-in-out;
}
[class*=button-slide]:hover {
  color: #FFF;
}
[class*=button-slide]:hover::before {
  transform-origin: center var(--origin);
  transform: var(--scale-h, scaleX(1));
}

[class*=button-slide][class*=top] {
  --origin: top;
  --scale-b: scaleY(0);
  --scale-h: scaleY(1);
}

[class*=button-slide][class*=bottom] {
  --origin: bottom;
  --scale-b: scaleY(0);
  --scale-h: scaleY(1);
}

[class*=button-slide][class*=left] {
  --origin: left;
}

[class*=button-slide][class*=right] {
  --origin: right;
}

[class*=button-wave] {
  z-index: 1;
  overflow: hidden;
  transition: color 0.4s ease-in-out;
  --wave-h: -50%;
  --wave-v: -50%;
}
[class*=button-wave]::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: var(--top, 0%);
  right: var(--right, 0%);
  left: var(--left, 0%);
  bottom: var(--bottom, 0%);
  width: calc(var(--button-width, var(--size)) / 3);
  height: calc(var(--button-height, calc(var(--size) / 3)) / 3);
  border-radius: 50%;
  background-color: var(--button-hover-color);
  transform-origin: center;
  transform: translate(var(--wave-h), var(--wave-h)) scale(0);
  transition: transform 0.45s ease-in-out;
}
[class*=button-wave]:hover {
  color: #FFF;
}
[class*=button-wave]:hover::before {
  transform: translate(var(--wave-h), var(--wave-h)) scale(15);
}

[class*=button-wave][class*=bottom-left] {
  --right: 100%;
  --top: 100%;
}

[class*=button-wave][class*=bottom-right] {
  --left: 100%;
  --top: 100%;
}

[class*=button-wave][class*=top-left] {
  --bottom: 100%;
  --right: 100%;
}

[class*=button-wave][class*=top-right] {
  --bottom: 100%;
  --left: 100%;
}

[class*=button-wave][class*=circle] {
  --top: 50%;
  --left: 50%;
}

.button-shine {
  z-index: 1;
  overflow: hidden;
  background-color: var(--button-color);
  color: #FFF;
}
.button-shine::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: hsla(0, 0%, 100%, 0.2);
  top: -50%;
  bottom: -50%;
  width: calc(var(--button-width, var(--size)) / 2.2);
  transform: translateX(-525%) rotate(35deg);
}
.button-shine:hover::before {
  transition: transform 0.45s ease-in-out;
  transform: translateX(200%) rotate(35deg);
}

[class*=button-ripple] {
  overflow: hidden;
  background-color: var(--button-color);
  color: #FFF;
  --pos: left center;
}
[class*=button-ripple]:before {
  --size: 0;
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.1;
  -webkit-clip-path: circle(var(--size) at var(--pos));
  clip-path: circle(var(--size) at var(--pos));
  transition: 0.3s ease-out;
}
[class*=button-ripple]:hover:before {
  --size: 100px;
}

[class*=button-ripple][class*=left-center] {
  --pos: left center!important;
}

[class*=button-ripple][class*=right-center] {
  --pos: right center!important;
}

[class*=button-ripple][class*=center-top] {
  --pos: center top!important;
}

[class*=button-ripple][class*=center-bottom] {
  --pos: center bottom!important;
}

[class*=button-ripple][class*=center] {
  --pos: center center;
}

[class*=button-ripple][class*=left-top] {
  --pos: left top;
}

[class*=button-ripple][class*=right-top] {
  --pos: right top;
}

[class*=button-ripple][class*=left-bottom] {
  --pos: left bottom;
}

[class*=button-ripple][class*=right-bottom] {
  --pos: right bottom;
}

textarea,
input:not([type=submit]) {
  font-family: var(--font-family);
  height: 100%;
  color: var(--text-color);
  padding: 1rem;
  background-color: var(--body-color-strong);
  font-size: 14px;
  box-shadow: inset 0 0 0 1px currentColor;
  border: 0;
  transition: box-shadow 0.1s linear;
  caret-color: var(--main-color);
  -webkit-appearance: none;
}
textarea:focus,
input:not([type=submit]):focus {
  outline: none !important;
  box-shadow: inset 0 0 0 2px var(--main-color);
  background-color: var(--focus-bg-color, var(--body-color-strong));
}

input[type=text], input[type=search], input[type=password], input[type=email], input[type=tel] {
  width: 100%;
  margin-bottom: 2rem;
}

input:not([type=submit]):active, input:not([type=submit]):focus,
textarea:not([type=submit]):active,
textarea:not([type=submit]):focus {
  border-color: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--text-color);
  opacity: 0.2;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-button {
  display: none;
}
input::-webkit-search-results-decoration {
  display: none;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

textarea {
  -webkit-appearance: none;
  font-family: var(--font-family);
  resize: none;
  resize: vertical;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px currentColor;
  border: 0;
  transition: box-shadow 0.1s linear;
  color: var(--textarea-color, var(--text-color));
  margin: var(--textarea-margin, 0 0 2rem 0);
  padding: var(--textarea-padding, 1rem);
  font-size: var(--textarea-font-size, 14px);
}

[type=reset],
[type=submit] {
  display: block;
  cursor: pointer;
  min-width: 170px;
  text-align: center;
  padding: 20px 25px;
  font-size: 1rem;
  -webkit-appearance: button;
  background-color: var(--main-color);
  margin: var(--button-margin);
  color: white;
  border: none;
  outline: none;
  position: relative;
}
[type=reset]:focus,
[type=submit]:focus {
  background-color: var(--main-color);
}
[type=reset].disable,
[type=submit].disable {
  opacity: 0.7;
  cursor: not-allowed;
}
[type=reset].accept, [type=reset].decline,
[type=submit].accept,
[type=submit].decline {
  text-align: right;
  padding-right: 50px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 20% 50%;
}
[type=reset].accept,
[type=submit].accept {
  background-color: var(--accept-color, #27ae60);
  background-image: url(img/check.svg);
}
[type=reset].decline,
[type=submit].decline {
  background-color: var(--decline-color, #e74c3c);
  background-image: url(img/close.svg);
}

input:not([type=submit]),
.toogle {
  margin-bottom: 1rem;
}

.toogle {
  --toogle-size: 25px;
  display: block;
  width: calc(var(--toogle-size) * 2);
}
.toogle > input {
  display: none;
}
.toogle i {
  display: inline-block;
  padding: 2px;
  height: var(--toogle-size);
  width: calc(var(--toogle-size) * 2);
  border-radius: var(--toogle-size);
  vertical-align: middle;
  transition: 0.25s 0.09s;
  position: relative;
  background-color: var(--body-color-soft);
  box-sizing: initial;
}
.toogle i:after {
  content: " ";
  display: block;
  width: var(--toogle-size);
  height: var(--toogle-size);
  border-radius: 50%;
  background-color: var(--toogle-color, #FFF);
  position: absolute;
  left: 2px;
  transition: 0.25s;
}
.toogle > input:checked + i {
  background-color: var(--toogle-bg-color, var(--main-color));
}
.toogle > input:checked + i:after {
  -webkit-transform: translateX(var(--toogle-size));
  transform: translateX(var(--toogle-size));
}
.toogle:hover {
  cursor: pointer;
}

.checkbox {
  position: relative;
}
.checkbox label {
  float: left;
  margin-left: 30px;
  max-height: 20px;
  cursor: pointer;
}
.checkbox label:before, .checkbox label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.checkbox label:before {
  width: 20px;
  height: 20px;
  background-color: var(--checkbox-disable-color, var(--body-color-strong));
  border: 1px solid var(--text-color);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
}
.checkbox input[type=checkbox],
.checkbox input[type=radio] {
  outline: 0;
  margin-right: 10px;
  opacity: 0;
}
.checkbox input[type=checkbox]:checked + label:before,
.checkbox input[type=radio]:checked + label:before {
  background-color: var(--checkbox-bg-color, var(--main-color));
  border: none;
}
.checkbox input[type=checkbox]:checked + label:after,
.checkbox input[type=radio]:checked + label:after {
  transform: rotate(-45deg);
  top: 5px;
  left: 4px;
  width: 12px;
  height: 6px;
  border: 2px solid var(--checkbox-check-color, #FFF);
  border-top-style: none;
  border-right-style: none;
}
.checkbox input[type=checkbox]:disabled:checked + label:before,
.checkbox input[type=radio]:disabled:checked + label:before {
  background-color: var(--body-color-soft);
}
.checkbox input[type=checkbox]:disabled:checked + label:after,
.checkbox input[type=radio]:disabled:checked + label:after {
  --checkbox-check-color: var(--body-color-medium);
}

::selection {
  background: var(--main-color);
  color: #FFF;
}

/* ICON */
.menu svg, .icon svg, .button svg {
  --svg-color: currentColor;
  width: var(--svg-width, var(--svg-size));
  height: var(--svg-height, var(--svg-size));
  stroke-width: 0;
  fill: var(--svg-fill, var(--svg-color));
  overflow: visible;
}

img {
  max-width: 100%;
  align-self: center;
  height: auto;
}

svg {
  display: block;
}

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

html {
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font);
  font-size: var(--base-font-size);
  background: var(--body-color-medium);
  color: var(--text-color);
  font-weight: var(--base-font-weight);
  line-height: var(--base-line-height);
}

[menu-open] {
  scrollbar-gutter: stable;
  overflow-y: hidden;
  height: 100%;
}

[active=on] {
  color: var(--main-color);
}

/* MAIN PAGE */
.skip-to-main-content-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: black;
  color: white;
  opacity: 0;
  transition: 0.4 ease-in-out;
}
.skip-to-main-content-link:focus {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

.page {
  width: 100%;
  min-height: calc(100vh - var(--page-height, var(--menu-height)));
  z-index: 0;
}
@media (max-width: 750px) {
  .page {
    padding-top: var(--menu-height);
  }
}

/* CONTAINER */
.container {
  width: min(var(--container), 100% - var(--container-padding));
  margin: auto;
}
.container.container-reset-margin {
  margin: 0;
}
.container.container-reset-padding {
  --container-padding: 0;
}
.container.container_medium {
  --container: 900px;
}
.container.container_small {
  --container: 600px;
}

.content {
  --content-multiplier: var(--multiply, 1);
  --content: calc(var(--content-margin) * var(--content-multiplier) / var(--content-divider));
  padding-top: var(--content);
}
.content:last-child {
  padding-bottom: var(--content);
}

footer {
  width: 100%;
  color: white;
  background-color: var(--main-color);
  min-height: 10rem;
  margin: var(--page-padding);
  padding: 2rem 0;
}
footer h4 {
  margin-bottom: 1rem;
  font-size: clamp(0.75rem, 2vw, 1rem);
}
footer img {
  min-width: 80px;
}

.video {
  position: relative;
  aspect-ratio: 16/9;
}
.video embed, .video iframe, .video video {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
