/* bodoni-moda-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bodoni-moda-v25-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bodoni-moda-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/bodoni-moda-v25-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bodoni-moda-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/bodoni-moda-v25-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* hanken-grotesk-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/hanken-grotesk-v8-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* hanken-grotesk-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Hanken Grotesk';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/hanken-grotesk-v8-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* hanken-grotesk-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/hanken-grotesk-v8-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* hanken-grotesk-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/hanken-grotesk-v8-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* hanken-grotesk-800italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Hanken Grotesk';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/hanken-grotesk-v8-latin-800italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ANIMATION */
@keyframes rotate-center {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes float {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes float-icon-valori {
  0% {
    transform: translateY(-35px) scale(1.2);
  }
  50% {
    transform: translateY(-15px) scale(1.2);
  }
  100% {
    transform: translateY(-35px) scale(1.2);
  }
}
@keyframes float-section-icon {
  0% {
    transform: translateY(-70px);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(-70px);
  }
}
@keyframes ghost {
  0% {
    opacity: 0.15;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0.15;
  }
  100% {
    opacity: 0.15;
  }
}
.tns-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tns-nav button {
  width: 22px;
  height: 22px;
  background-color: #eee9e5;
  border-radius: 999px;
  border: 5px solid #eee9e5;
  outline: none;
  margin: 0 5px;
}
.tns-nav button.tns-nav-active {
  background-color: #814f9b;
}
/* RESET */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
p,
ul,
ol {
  display: block;
  font-size: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: inherit;
  transition: 0.2s;
  outline: 0;
  text-decoration: none;
  cursor: pointer;
}
a.is-link {
  text-decoration: underline;
}
a.is-link:hover {
  opacity: 0.8;
}
body {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #3c3c3b;
  font-weight: 400;
}
/* ATOMS */
b,
strong {
  font-weight: 700;
}
p:not(:last-child) {
  margin-bottom: 30px;
}
.list {
  margin-bottom: 30px;
}
.list li {
  margin: 0 0 0 20px;
}
h1 {
  font-weight: 400;
}
h2 {
  font-family: 'Bodoni Moda';
  font-size: 55px;
  line-height: 55px;
  letter-spacing: -1px;
  margin: 50px 0;
  font-weight: 800;
}
h3 {
  font-family: 'Bodoni Moda';
  font-size: 50px;
  line-height: 50px;
  font-weight: 800;
  padding: 25px 0 50px 0;
  text-align: center;
}
h4 {
  font-family: 'Bodoni Moda';
  font-size: 25px;
  line-height: 25px;
  font-weight: 800;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #3c3c3b;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  outline: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  line-height: 14px;
  padding: 0 25px;
  font-weight: 400;
  height: 48px;
}
.btn.btn-arancione {
  background-color: #f9b14a !important;
  border: 1px solid #f9b14a;
  color: #814f9b !important;
}
.btn.btn-arancione:hover {
  background-color: #fff !important;
  border: 1px solid #fff !important;
}
.btn.btn-arancione svg {
  fill: #814f9b;
}
.btn.btn-circle {
  padding: 0;
  width: 48px;
}
.btn.btn-ghost {
  background-color: transparent;
  border: 1px solid #3c3c3b;
  color: #3c3c3b;
}
.btn.btn-ghost:hover {
  color: #fff;
  background-color: #3c3c3b;
}
.btn.btn-ghost-white {
  background-color: transparent !important;
  border: 1px solid #fff;
  color: #fff !important;
}
.btn.btn-ghost-white:hover {
  color: #3c3c3b !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
}
.btn.btn-ghost-white:hover svg {
  fill: #3c3c3b;
}
.btn.btn-ghost-white svg {
  fill: #fff;
}
.btn:hover {
  color: #fff;
  background-color: #3c3c3b;
}
.container {
  margin: auto;
  max-width: 1440px;
  padding: 0 25px;
}
/* HELPER */
.t-left {
  text-align: left;
}
.t-center {
  text-align: center;
}
.t-right {
  text-align: right;
}
.hidden,
[hidden] {
  display: none !important;
}
.disabled,
[disabled] {
  opacity: 0.5 !important;
  pointer-events: none !important;
}
.break {
  display: block;
  flex-basis: 100%;
  width: 0px;
  height: 0px;
  overflow: hidden;
}
/* PLACEHOLDER */
::-webkit-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
/* SCROLLBAR */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #3c3c3b;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  align-self: flex-end;
}
.pagination .pagination-prev,
.pagination .pagination-next {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #3c3c3b;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  outline: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  line-height: 14px;
  padding: 0 25px;
  font-weight: 400;
  height: 48px;
  background-color: transparent;
  border: 1px solid #3c3c3b;
  color: #3c3c3b;
  padding: 0;
  width: 48px;
}
.pagination .pagination-prev.btn-arancione,
.pagination .pagination-next.btn-arancione {
  background-color: #f9b14a !important;
  border: 1px solid #f9b14a;
  color: #814f9b !important;
}
.pagination .pagination-prev.btn-arancione:hover,
.pagination .pagination-next.btn-arancione:hover {
  background-color: #fff !important;
  border: 1px solid #fff !important;
}
.pagination .pagination-prev.btn-arancione svg,
.pagination .pagination-next.btn-arancione svg {
  fill: #814f9b;
}
.pagination .pagination-prev.btn-circle,
.pagination .pagination-next.btn-circle {
  padding: 0;
  width: 48px;
}
.pagination .pagination-prev.btn-ghost,
.pagination .pagination-next.btn-ghost {
  background-color: transparent;
  border: 1px solid #3c3c3b;
  color: #3c3c3b;
}
.pagination .pagination-prev.btn-ghost:hover,
.pagination .pagination-next.btn-ghost:hover {
  color: #fff;
  background-color: #3c3c3b;
}
.pagination .pagination-prev.btn-ghost-white,
.pagination .pagination-next.btn-ghost-white {
  background-color: transparent !important;
  border: 1px solid #fff;
  color: #fff !important;
}
.pagination .pagination-prev.btn-ghost-white:hover,
.pagination .pagination-next.btn-ghost-white:hover {
  color: #3c3c3b !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
}
.pagination .pagination-prev.btn-ghost-white:hover svg,
.pagination .pagination-next.btn-ghost-white:hover svg {
  fill: #3c3c3b;
}
.pagination .pagination-prev.btn-ghost-white svg,
.pagination .pagination-next.btn-ghost-white svg {
  fill: #fff;
}
.pagination .pagination-prev:hover,
.pagination .pagination-next:hover {
  color: #fff;
  background-color: #3c3c3b;
}
.pagination .pagination-prev:hover,
.pagination .pagination-next:hover {
  color: #fff;
  background-color: #3c3c3b;
}
.pagination .pagination-current {
  display: flex;
  align-items: center;
  padding: 8px 16px;
}
.go-to {
  width: 32px;
  margin: 0px auto 0px;
  cursor: pointer;
}
.go-to path {
  fill: #fff;
}
.go-to path.go-to-up {
  animation: ghost 3s ease-in-out infinite both;
}
.go-to path.go-to-down {
  animation: ghost 3s ease-in-out infinite both;
  animation-delay: 1s;
}
/* ACCORDION */
.accordion {
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.accordion .accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px 5px 23px;
  cursor: pointer;
  background-color: #eee9e5;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 25px;
  line-height: 25px;
  min-height: 65px;
}
.accordion .accordion-title:hover {
  opacity: 0.9;
}
.accordion .accordion-title b {
  width: calc(100% - 45px);
  font-weight: 700;
}
.accordion .accordion-title .accordion-icon {
  margin-left: auto;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion .accordion-title .accordion-icon img {
  height: 12px;
  transition: 0.2s;
}
.accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s;
  background-color: #fff;
  color: #3c3c3b;
  padding: 0 25px;
  opacity: 0;
}
.accordion .accordion-content ul {
  margin-bottom: 30px;
}
.accordion .accordion-content ul li {
  margin: 0 0 0 20px;
}
.accordion.is-open {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.accordion.is-open .accordion-title {
  border-radius: 10px 10px 0 0;
  background-color: #fff;
  color: #3c3c3b;
}
.accordion.is-open .accordion-title .accordion-icon {
  background-color: #3c3c3b;
}
.accordion.is-open .accordion-title .accordion-icon img {
  transform: rotate(180deg);
}
.accordion.is-open .accordion-content {
  border-radius: 0 0 10px 10px;
  padding: 0 25px 25px 25px;
  overflow: visible;
  opacity: 1;
}
/* COLS */
.cols {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cols .col {
  flex: 1;
}
/* HEADER */
.header {
  border-bottom: 1px solid #fff;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 125;
  transition: 0.2s;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 80px;
}
.header .header-logo img {
  height: 48px;
}
.header .header-logo .header-logo-white {
  display: block;
}
.header .header-logo .header-logo-color {
  display: none;
}
.header .header-menu {
  display: flex;
  justify-content: center;
  margin: auto;
  gap: 35px;
  cursor: pointer;
}
.header .header-menu .menu-item {
  display: flex;
  align-items: center;
  font-size: 17px;
  line-height: 17px;
  text-decoration: none;
  height: 80px;
  color: #fff;
  position: relative;
  transition: 0.2s;
}
.header .header-menu .menu-item svg {
  width: 15px;
  height: auto;
  margin: 3px 0 0 5px;
  stroke: #fff;
  transition: 0.2s;
}
.header .header-menu .menu-item.active:after {
  content: '';
  position: absolute;
  margin: auto;
  bottom: 15px;
  left: 0;
  right: 0;
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 999px;
}
.header .header-menu .menu-item .submenu {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  left: 0;
  top: 100%;
  width: 100%;
  transition: 0.3s;
}
.header .header-menu .menu-item .submenu .submenu-shadow {
  border-radius: 10px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.header .header-menu .menu-item .submenu a {
  display: flex;
  padding: 10px 12px;
  text-align: center;
  background-color: #fff;
  color: #3c3c3b;
  border-top: 1px solid #eee9e5;
}
.header .header-menu .menu-item .submenu a:first-child {
  border-top: none;
}
.header .header-menu .menu-item .submenu a:hover {
  background-color: #3c3c3b;
  color: #fff;
}
.header .header-menu .menu-item:hover {
  color: #f9b14a;
}
.header .header-bar-message {
  text-align: center;
  font-size: 13px;
  line-height: 15px;
  padding: 10px 0;
  color: #fff;
  background-color: #1a1a1a;
}
.header .header-bar-message a {
  text-decoration: underline;
}
.header .header-bar-message a:hover {
  text-decoration: none;
}
.header .header-utils {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.header .header-utils .btn {
  background-color: #fff;
  border: 1px solid #fff;
  color: #3c3c3b;
  font-size: 16px;
  line-height: 16px;
}
.header .header-utils .btn:hover {
  background-color: #1a1a1a;
  border: 1px solid #1a1a1a;
  color: #fff;
}
.header .header-utils .btn.btn-ghost {
  color: #fff;
}
.header .header-utils .util-languages {
  position: relative;
  display: flex;
  align-items: center;
  display: none;
}
.header .header-utils .util-languages .header-languages-btn {
  pointer-events: none;
}
.header .header-utils .util-languages svg {
  width: 15px;
  height: auto;
  margin: 3px 0 0 5px;
  stroke: #fff;
  transition: 0.2s;
}
.header .header-utils .util-languages .header-languages {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  left: 0;
  top: 100%;
  width: 100%;
  transition: 0.3s;
}
.header .header-utils .util-languages .header-languages .header-languages-shadow {
  border-radius: 10px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  text-align: center;
  padding: 5px 0;
}
.header .header-utils .util-languages .header-languages .header-languages-shadow a {
  margin: 5px 0;
}
.header .header-utils .util-languages:hover svg {
  transform: rotate(180deg);
}
.header .header-utils .util-languages:hover .header-languages {
  opacity: 1;
  pointer-events: all;
  padding-top: 15px;
}
.header .header-menu-btn {
  display: none;
}
.header.is-sticky .header-logo .header-logo-white,
.header.is-black .header-logo .header-logo-white {
  display: none;
}
.header.is-sticky .header-logo .header-logo-color,
.header.is-black .header-logo .header-logo-color {
  display: block;
}
.header.is-sticky .header-menu .menu-item,
.header.is-black .header-menu .menu-item {
  color: #3c3c3b;
}
.header.is-sticky .header-menu .menu-item svg,
.header.is-black .header-menu .menu-item svg {
  stroke: #3c3c3b;
}
.header.is-sticky .header-menu .menu-item.active,
.header.is-black .header-menu .menu-item.active {
  color: #3c3c3b;
}
.header.is-sticky .header-menu .menu-item.active:after,
.header.is-black .header-menu .menu-item.active:after {
  background-color: #3c3c3b;
}
.header.is-sticky {
  background-color: #fff !important;
  border-bottom: 1px solid #eee9e5 !important;
}
.header.is-sticky .header-utils .btn {
  background-color: #eee9e5;
  border: 1px solid #eee9e5;
  color: #3c3c3b;
}
.header.is-sticky .header-utils .btn:hover {
  background-color: #1a1a1a;
  border: 1px solid #1a1a1a;
  color: #fff;
}
.header.is-sticky .header-utils .btn.btn-ghost-white {
  border: 1px solid #3c3c3b !important;
  color: #3c3c3b !important;
}
.header.is-sticky .header-utils .btn.btn-ghost-white:hover {
  background-color: #1a1a1a;
  color: #fff;
}
.header.is-sticky .header-utils .util-languages svg {
  stroke: #3c3c3b;
}
.header.is-black {
  background-color: transparent;
  border-bottom: 1px solid #3c3c3b;
}
/* HOME */
#home-chi-siamo {
  display: flex;
  align-items: center;
  margin: 50px auto 100px;
}
#home-chi-siamo .chi-siamo-title-mobile {
  display: none;
}
#home-chi-siamo .chi-siamo-img {
  width: 50%;
}
#home-chi-siamo .chi-siamo-content {
  width: 50%;
  padding: 50px 100px;
}
#home-chi-siamo h2 {
  color: #814f9b;
}
#home-approccio-4d {
  padding: 25px 0 150px 0;
  overflow: hidden;
}
#home-approccio-4d .container {
  position: relative;
}
#home-approccio-4d .container .circle {
  border-radius: 999px;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
#home-approccio-4d .container .circle-1 {
  background-color: #ede9e6;
  width: 300px;
  height: 300px;
  top: 120px;
  left: -210px;
}
#home-approccio-4d .container .circle-2 {
  background-color: #f9b14a;
  width: 150px;
  height: 150px;
  bottom: -70px;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateX(-220px);
}
#home-approccio-4d .container .circle-3 {
  background-color: #ede9e6;
  width: 75px;
  height: 75px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100px);
}
#home-approccio-4d .container .circle-4 {
  background-color: #f9b14a;
  width: 350px;
  height: 350px;
  bottom: 0;
  right: -250px;
}
#home-approccio-4d h2 {
  text-align: center;
  color: #814f9b;
}
#home-approccio-4d .approccio-4d-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 150px 0 100px 0;
}
#home-approccio-4d .approccio-4d-list .approccio-4d-item {
  padding: 0 25px 25px 25px;
  width: calc(25% - 20px);
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0px 2px 10px rgba(26, 26, 26, 0.15);
  text-align: center;
}
#home-approccio-4d .approccio-4d-list .approccio-4d-item .item-icon {
  width: auto;
  height: 200px;
  margin: auto;
  margin-bottom: -35px;
  transform: translateY(-50px);
  animation: float-section-icon 2.5s ease-in-out infinite both;
}
#home-approccio-4d .approccio-4d-list .approccio-4d-item .item-icon-shadow {
  width: 200px;
  margin: auto;
  transform: translateY(-15px);
  opacity: 0.5;
}
#home-approccio-4d .approccio-4d-list .approccio-4d-item .item-name {
  height: 50px;
  margin-bottom: 20px;
  color: #814f9b;
  font-size: 30px;
  line-height: 30px;
}
#home-approccio-4d .approccio-4d-list .approccio-4d-item .item-abstract {
  flex: 1;
  margin-bottom: 25px;
  line-height: 22px;
}
#home-soluzioni {
  padding: 0 0 100px;
}
#home-soluzioni h2 {
  text-align: center;
  color: #814f9b;
}
#home-soluzioni .soluzioni-wrapper {
  background-image: url('../img/big-bubble.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0 100px;
}
#home-soluzioni .soluzioni-wrapper .soluzioni-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 45px 30px;
  margin: 120px 0 100px;
}
#home-soluzioni .soluzioni-wrapper .soluzioni-list .soluzioni-item-wrapper {
  width: calc(33.3333% - 30px);
}
#home-soluzioni .soluzioni-wrapper .soluzioni-list .soluzioni-item-wrapper .soluzioni-item {
  width: 100%;
  height: 100%;
  padding: 0 25px 25px 25px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  border: 1px solid #fff;
  background-color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0px 0 10px rgba(26, 26, 26, 0.15);
  text-align: center;
}
#home-soluzioni .soluzioni-wrapper .soluzioni-list .soluzioni-item-wrapper .soluzioni-item .item-icon {
  width: auto;
  height: 180px;
  margin: auto;
  margin-bottom: -35px;
  transform: translateY(-50px);
  animation: float-section-icon 2.5s ease-in-out infinite both;
}
#home-soluzioni .soluzioni-wrapper .soluzioni-list .soluzioni-item-wrapper .soluzioni-item .item-icon-shadow {
  width: 150px;
  margin: auto;
  transform: translateY(-25px);
  opacity: 0.5;
}
#home-soluzioni .soluzioni-wrapper .soluzioni-list .soluzioni-item-wrapper .soluzioni-item .item-name {
  height: 50px;
  margin-bottom: 20px;
  color: #814f9b;
  font-size: 30px;
  line-height: 35px;
}
#home-soluzioni .soluzioni-wrapper .soluzioni-list .soluzioni-item-wrapper .soluzioni-item .item-abstract {
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 22px;
  background-color: #e6dceb;
  padding: 20px 25px;
  border-radius: 5px;
}
#home-soluzioni .soluzioni-wrapper .soluzioni-list .soluzioni-item-wrapper .soluzioni-item::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f9b14a;
  border-radius: 9999px;
}
#home-ecm {
  display: flex;
  align-items: center;
  margin: 50px auto 100px;
}
#home-ecm .ecm-title-mobile {
  display: none;
}
#home-ecm .ecm-img {
  width: 50%;
  padding: 0 80px;
}
#home-ecm .ecm-content {
  width: 50%;
  padding: 50px 100px;
}
#home-ecm h2 {
  color: #814f9b;
}
#home-team {
  background-image: url('../img/pointer-white.png'), url('../img/bg-albero-viola.png');
  background-position: right -50px center, center center;
  background-repeat: no-repeat;
  background-size: auto 60%, cover;
  text-align: center;
  padding: 100px 0;
}
#home-team h3 {
  color: #fff;
  margin-top: 0;
}
#home-team .team-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#home-contatti {
  padding: 100px 0;
}
#home-contatti h2 {
  color: #814f9b;
}
/* MENU MOBILE */
.menu-mobile {
  display: none;
}
/* HERO */
.hero {
  height: 900px;
  position: relative;
  color: #fff;
  padding: 180px 0 0 0;
  overflow: hidden;
  background-position: center bottom, center center;
  background-repeat: no-repeat;
  background-size: 100% auto, cover;
}
.hero .hero-content {
  height: 560px;
  display: flex;
  justify-content: space-between;
}
.hero .hero-content .hero-title {
  font-family: 'Bodoni Moda';
  font-weight: 800;
  text-align: center;
  font-size: 200px;
  line-height: 200px;
  color: #fff;
  min-height: 200px;
  margin-bottom: 25px;
}
.hero .hero-content .hero-subtitle {
  font-family: 'Bodoni Moda';
  font-weight: 800;
  text-align: center;
  color: #f9b14a;
  font-style: italic;
  font-size: 102px;
  line-height: 102px;
  min-height: 102px;
  margin-bottom: auto;
}
.hero .hero-content .hero-claim {
  width: 400px;
  align-self: flex-end;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 50px;
}
.hero .hero-content .scroll-down-img {
  height: 50px;
  width: auto;
  margin: 0px auto;
}
.hero.home-hero {
  background-color: #fff;
  background-image: url('../img/hero-curve.svg?2'), url('../img/hero-home.png');
  background-size: auto, cover;
  background-position: center bottom -1px, top left;
}
.hero.home-hero .hero-content {
  flex-direction: column;
}
.hero.home-hero .hero-content .hero-claim {
  width: 100%;
  text-align: center;
  font-size: 30px;
  line-height: 30px;
}
.hero.not-found-hero {
  background-color: #ede9e6;
  background-image: url('../img/hero-trees.png'), url('../img/hero-tree-light.svg');
  background-position: top 100px center, center center;
  background-size: 1440px auto, 175% auto;
  color: #3c3c3b;
  height: 550px;
}
.hero.not-found-hero .hero-content {
  height: auto;
  display: block;
}
.hero.not-found-hero .hero-content .hero-claim {
  max-width: 500px;
  width: 100%;
}
@keyframes hero-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero .hero-script {
  position: absolute;
  animation: hero-slide 25s linear infinite both;
  width: 300%;
  height: 125px;
  top: 225px;
  left: 0;
  background: transparent repeat-x left center;
  background-size: auto 100%;
}
.hero .hero-script.hero-script-behind {
  z-index: 1;
}
.hero .hero-script.hero-script-front {
  z-index: 3;
}
/* CLIENTI */
.clients {
  margin: 0 0 50px 0;
  padding: 0 0 50px 0;
}
.clients .container .clients-title {
  font-family: 'Bodoni Moda';
  font-weight: 700;
  margin-bottom: 50px;
  color: #814f9b;
}
.clients .container .clients-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin: 0px -10px;
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}
.clients .container .clients-content .clients-slideshow-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.clients .container .clients-content .clients-slideshow-wrapper .clients-slideshow {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  transition-timing-function: linear;
}
.clients .container .clients-content .clients-slideshow-wrapper .clients-slideshow .client-wrapper .client {
  aspect-ratio: 300 / 205;
  background-color: #f2f2f2;
  border-radius: 10px;
  border: 1px solid transparent;
}
.clients .container .clients-content .clients-slideshow-wrapper .clients-slideshow .client-wrapper .client.is-active {
  border: 1px solid #1a1a1a;
}
.clients .container .clients-content .clients-slideshow-wrapper .clients-slideshow .client-wrapper .client img {
  max-width: 100%;
}
.clients .container .clients-content .clients-slideshow-wrapper .tns-controls {
  width: 250px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  gap: 7px;
}
.clients .container .clients-content .clients-slideshow-wrapper .tns-controls button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #3c3c3b;
  outline: none;
  color: #3c3c3b;
  width: 27px;
  height: 27px;
  border-radius: 999px;
  transition: 0.3s;
}
.clients .container .clients-content .clients-slideshow-wrapper .tns-controls button svg {
  width: 15px;
  height: 15px;
}
.clients .container .clients-content .clients-slideshow-wrapper .tns-controls button:hover {
  background-color: #3c3c3b;
  color: #fff;
}
/* LOGIN */
.form-login {
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(69, 67, 96, 0.07);
  border-radius: 5px;
  padding: 20px;
  max-width: 360px;
  margin: auto;
  margin-bottom: 15px;
}
.form-login-to-registration {
  text-align: center;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 25px;
}
#map {
  min-height: 375px;
}
/* FORM */
.form-wrapper {
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(69, 67, 96, 0.07);
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 15px;
}
.form-wrapper h2 {
  width: 100%;
  margin-top: 25px;
}
.form-wrapper h2:first-child {
  margin-top: 0;
}
form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
form .form-field {
  width: calc(50% - 50px);
}
form .form-field .btn {
  min-width: 150px;
}
form .form-field.is-small {
  width: calc(33.3333% - 50px);
}
form .form-field.is-big {
  width: calc(66.6666% - 50px);
}
form .form-checkbox-group {
  width: calc(50% - 50px);
  text-align: left;
}
form .form-checkbox-group .is-checkbox {
  width: 100%;
  padding-bottom: 15px;
}
form .form-checkbox-group.is-big {
  width: calc(66.6666% - 50px);
}
.radio-button-container {
  display: flex;
  flex-wrap: wrap;
}
.radio-button-container .is-radio-button:first-child label {
  margin-left: 0;
}
.form-field {
  width: calc(50% - 10px);
  padding-bottom: 33px;
}
.form-field.is-full {
  width: 100%;
}
.form-field.is-half {
  width: calc(25% - 10px);
}
.form-field.is-mini {
  width: calc(16.5% - 10px);
}
.form-field.is-hidden {
  display: none;
}
.form-field.is-checkbox {
  display: flex;
  align-items: center;
}
.form-field.is-checkbox span,
.form-field.is-checkbox label {
  width: calc(100% - 30px);
  margin-left: 10px;
  cursor: pointer;
  font-size: 14px;
}
.form-field.is-radio {
  display: flex;
  align-items: center;
}
.form-field.is-radio span,
.form-field.is-radio label {
  width: calc(100% - 30px);
  margin-left: 10px;
  cursor: pointer;
}
.form-field.is-radio-button {
  width: auto;
}
.form-field.is-radio-button input {
  width: 0;
  height: 0;
  visibility: hidden;
}
.form-field.is-radio-button label {
  width: auto;
}
.form-field label {
  font-size: 15px;
  line-height: 15px;
}
.form-field.form-field-upload {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.form-field.form-field-upload .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.form-break {
  display: block;
  flex-basis: 100%;
  width: 0px;
  height: 0px;
  overflow: hidden;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: 23px;
  line-height: 23px;
  border: none;
  border-bottom: 1px solid #ccc;
  font-style: normal;
  padding: 0;
  width: 100%;
  height: 36px;
  background: transparent;
  transition: 0.3s;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #3c3c3b;
  outline: 0;
}
input[type=checkbox],
select[type=checkbox],
textarea[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #ccc;
  position: relative;
}
input[type=checkbox]::before,
select[type=checkbox]::before,
textarea[type=checkbox]::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #814f9b;
  position: absolute;
  left: 3px;
  top: 3px;
  opacity: 0;
  border-radius: 999px;
}
input[type=checkbox]:checked::before,
select[type=checkbox]:checked::before,
textarea[type=checkbox]:checked::before {
  opacity: 1;
}
input[type=radio],
select[type=radio],
textarea[type=radio] {
  width: 20px;
}
select {
  padding: 0 5px;
}
textarea {
  padding: 10px 0;
  height: 130px;
  font-size: 15px;
  line-height: 15px;
  border-bottom: 1px solid #ccc;
}
.form-actions {
  margin-top: 30px;
  text-align: center;
  width: 100%;
}
/* SCRIVICI */
.scrivici-wrapper {
  background-color: #1a1a1a;
  background-image: url('../img/bg-med-nero.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 35px 0 15px 0;
  color: #eee9e5;
}
.scrivici-wrapper .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.scrivici-wrapper .container .scrivici-image {
  width: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.scrivici-wrapper .container .scrivici-image .scrivici-image-casella {
  transform: translateY(-55px);
}
.scrivici-wrapper .container .scrivici-image .scrivici-image-shadow {
  width: 200px;
  margin-top: -28px;
}
.scrivici-wrapper .container .scrivici-content {
  padding: 25px 0;
  width: calc(100% - 400px);
}
.scrivici-wrapper .container .scrivici-content h2 {
  font-family: 'Bodoni Moda';
  font-size: 38px;
  line-height: 53px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
  padding: 0;
}
.scrivici-wrapper .container .scrivici-content input {
  color: #fff;
}
.scrivici-wrapper .container .scrivici-content .ctas-mobile {
  display: none;
}
/* FOOTER */
footer {
  font-size: 15px;
  line-height: 18px;
  background-color: #3c3c3b;
  color: #fff;
  position: relative;
}
footer a:hover {
  opacity: 0.7;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  padding: 75px 25px 50px 25px;
  gap: 50px;
}
footer .container h4 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  margin-bottom: 35px;
  font-size: 16px;
  line-height: 16px;
}
footer .container .footer-company {
  width: 250px;
}
footer .container .footer-company .footer-company-image {
  width: 165px;
  margin-bottom: 20px;
}
footer .container .footer-company .footer-by {
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
}
footer .container .footer-company .footer-claim {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
footer .container .footer-company .footer-claim .footer-claim-image {
  width: 125px;
}
footer .container .footer-company .footer-social {
  display: flex;
  align-items: center;
  margin-top: 35px;
  gap: 10px;
  margin-bottom: 25px;
}
footer .container .footer-company .footer-social .btn {
  width: 35px;
  height: 35px;
}
footer .container .footer-company .footer-social .btn svg {
  width: 100%;
  height: auto;
}
footer .container .footer-company .footer-iubenda {
  filter: grayscale(1);
}
footer .container .footer-section {
  flex: 1;
  padding-top: 23px;
}
footer .container .footer-section .cols {
  align-items: flex-start;
}
footer .container .footer-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
footer .container .footer-row img {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}
footer .container .footer-row .footer-row-text {
  width: calc(100% - 35px);
}
footer .container .footer-sezioni {
  flex: none;
  width: 135px;
}
footer .container .footer-sezioni a {
  display: block;
  margin-bottom: 12px;
}
footer .container .footer-certificazioni {
  flex: none;
  width: 350px;
}
footer .container .footer-certificazioni .footer-certificazioni-list {
  filter: grayscale(1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}
footer .container .footer-certificazioni .footer-certificazioni-list a {
  pointer-events: none;
  cursor: default;
}
footer .container .footer-certificazioni .footer-certificazioni-list img {
  width: 165px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}
footer .container .footer-certificazioni .footer-disclaimer {
  font-size: 11px;
  line-height: 11px;
  color: #666;
}
footer .footer-foglia {
  position: absolute;
  top: -150px;
  right: 0;
  width: 175px;
}
.footer-last {
  background-color: #1a1a1a;
  color: #808080;
  padding: 25px 15px;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
}
/* MODAL */
html.modal-overflow {
  overflow: hidden;
  touch-action: none;
}
html.modal-overflow body {
  overflow: hidden;
  touch-action: none;
}
.modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  transition: 0.6s;
  opacity: 0;
}
.modal-container.is-visible {
  opacity: 1;
}
.modal-container .modal-window {
  border-radius: 7px;
  background: #fff;
  width: 100vw;
  max-width: 350px;
  max-height: 90vh;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  text-align: center;
  position: relative;
}
.modal-container .modal-window.success .modal-header {
  background-color: #45a53c;
  padding: 10px 0;
}
.modal-container .modal-window.error .modal-header {
  background-color: #c92100;
  padding: 10px 0;
}
.modal-container .modal-window.not-yet {
  background-color: #814f9b;
  color: #fff;
  padding: 50px 25px;
  max-width: 450px;
}
.modal-container .modal-window .modal-header {
  text-align: center;
}
.modal-container .modal-window .modal-header h4 {
  padding: 35px 0 0 0;
}
.modal-container .modal-window .modal-content {
  padding: 25px 25px 35px 25px;
  overflow-y: auto;
  max-height: calc( 90vh - 85px);
  text-align: center;
}
.modal-container .modal-window .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background-color: #fff;
  padding: 3px;
}
.modal-container .modal-window .modal-close svg {
  stroke: #1a1a1a;
}
.modal-container .modal-window.loading {
  text-align: center;
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.modal-container .modal-window.loading .modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-container .modal-window.loading svg {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
  display: block;
}
.modal-container .modal-window.loading .modal-footer {
  display: none;
}
.modal-container .modal-window.is-template-modal {
  max-width: 600px;
  border-radius: 15px;
  overflow: visible;
  position: relative;
}
.modal-container .modal-window.is-template-modal .modal-content {
  text-align: left;
  padding: 35px;
  overflow-y: visible;
}
/* ALERT */
body.alert-overflow {
  overflow: hidden;
}
.alert-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.alert-container.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.alert-container.is-visible .alert {
  opacity: 1;
  transform: translate(0, 0);
}
.alert-container .alert {
  border-radius: 4px;
  background: #fff;
  width: 100vw;
  max-width: 300px;
  max-height: 100vh;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  text-align: center;
  transform: translate(0, -20px);
  opacity: 0;
  transition: opacity 0s 0s, transform 0.3s 0s;
}
.alert-container .alert .alert-title {
  font-size: 3rem;
}
.alert-container .alert .alert-content {
  padding: 25px 25px 0px 25px;
}
.alert-container .alert .alert-footer {
  display: flex;
  align-items: center;
  padding: 15px 15px 25px 15px;
  justify-content: center;
}
.alert-container .alert .btn {
  border: 1px solid #fff;
  background-color: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
}
.alert-container .alert .btn:hover {
  background-color: #fff !important;
  color: #fff !important;
  border-color: #fff !important;
}
.alert-container .alert .btn + .btn {
  margin-left: 8px;
}
.alert-container .alert.alert-success {
  background-color: #45a53c;
  color: #fff;
}
.alert-container .alert.alert-success .btn:hover {
  color: #45a53c !important;
}
.alert-container .alert.alert-error {
  background-color: #c92100;
  color: #fff;
}
.alert-container .alert.alert-error .btn:hover {
  color: #c92100 !important;
}
#iubenda-cs-banner h2#iubenda-cs-title {
  font-family: 'Hanken Grotesk';
  font-size: 20px !important;
  line-height: 20px;
  padding: 0;
  text-align: left;
}
