@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Secular+One&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background-color: #EAEAEA;
  color: #161615;
  position: relative;
}

h1 {
  letter-spacing: 1px;
  font-family: "Secular One", sans-serif;
}

p {
  font-size: 1.6rem;
  line-height: 150%;
}

a {
  display: inline-block;
  text-decoration: none;
}

a.btn {
  -webkit-transition: -webkit-transform 0.2s !important;
  transition: -webkit-transform 0.2s !important;
  transition: transform 0.2s !important;
  transition: transform 0.2s, -webkit-transform 0.2s !important;
  max-width: 30rem;
}
a.btn img {
  display: block;
  width: 100%;
}
a.btn p {
  padding: 0 3rem;
  text-transform: uppercase;
  text-align: center !important;
  margin: 0 !important;
  font-weight: 600;
}
a.btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
a.btn--b p {
  color: #fff !important;
}
a.btn--bl p {
  color: #006AB6 !important;
}

.space {
  padding: 2rem;
}
@media (min-width: 1024px) {
  .space {
    padding: 4rem;
  }
}

.divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem;
}

.menu-mobile {
  background-color: #161615;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 100;
}
.menu-mobile ul {
  padding: 2rem;
  text-align: left;
}
.menu-mobile ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.menu-mobile ul li a {
  color: #c5c5c5;
  font-size: 2rem;
  font-family: "Secular One", sans-serif;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.menu-mobile ul li a:hover {
  border-color: #fff;
}
@media (min-width: 768px) {
/*   .menu-mobile {
    width: 50%;
  } */
  .menu-mobile ul {
    padding: 4rem;
  }
  .menu-mobile ul li a {
    font-size: 3rem;
  }
}
@media (max-height: 600px) {
  .menu-mobile {
    overflow: scroll;
    justify-content: flex-start;
  }
  .menu-mobile ul {
    padding: 18rem 0 5rem;
  }
}

.menu-mobile.open {
  right: 0;
  opacity: 1;
}

.navbar {
  background-color: #161615;
  z-index: 1000;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.navbar.interna {
  position: relative;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
.navbar__wrap {
  height: 100%;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
.navbar__wrap--logo {
  grid-column: span 2;
}
.navbar__wrap--logo a img {
  display: block;
  width: 100%;
  max-width: 25rem;
}
.navbar__wrap--lang {
  grid-row: 2/3;
  grid-column: span 2;
  position: relative;
  display: inline-block;
}
.navbar__wrap--lang:hover .navbar__wrap--lang__content {
  display: block;
}
.navbar__wrap--lang button.dropbtn {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 2px;
  border: none;
  outline: transparent;
  -webkit-appearance: none;
  background-color: transparent;
  border-bottom: 2px solid #ADADAD;
}
.navbar__wrap--lang button.dropbtn span {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-right: 1rem;
  font-weight: 500;
}
.navbar__wrap--lang button.dropbtn img.down {
  width: 1rem;
}
.navbar__wrap--lang__content {
  background-color: #161615;
  display: none;
  position: absolute;
  min-width: 100%;
  z-index: 1;
  padding: 1rem;
}
.navbar__wrap--lang__content a {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
  -webkit-transform: color 0.2s;
          transform: color 0.2s;
}
.navbar__wrap--lang__content a:hover {
  color: #006AB6;
}
.navbar__wrap--lang__content a:not(:last-child) {
  margin-bottom: 1rem;
}
.navbar__wrap .menu-btn {
  grid-row: 1/3;
  cursor: pointer;
}
.navbar__wrap .menu-btn:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.navbar__wrap .menu-btn img {
  display: block;
  width: 100%;
  max-width: 12rem;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media (min-width: 768px) {
  .navbar {
    background-color: transparent;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#0d0d0d), to(rgba(106, 106, 106, 0))) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #0d0d0d 0%, rgba(106, 106, 106, 0) 100%) 0% 0% no-repeat padding-box;
  }
  .navbar.interna {
    background: none !important;
    background-color: #161615 !important;
  }
  .navbar__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar__wrap--lang {
    margin-left: auto;
    margin-right: 4rem;
  }
}
@media (min-width: 1024px) {
  .navbar__wrap {
    padding: 4rem;
  }
  .navbar__wrap--lang {
    margin-left: auto;
    margin-right: 4rem;
  }
}

a.is-active {
  color: #fff !important;
}

.fissato {
  position: fixed !important;
}

.footer {
  background-color: #161615;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
}
.footer__wrap {
  display: grid;
  grid-gap: 4rem;
  max-width: 160rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__wrap__item {
  display: grid;
  grid-gap: 2rem;
}
.footer__wrap__item p {
  font-size: 1.2rem;
  color: #ADADAD;
  text-align: center;
}
.footer__wrap__item p a {
  color: #ADADAD;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.footer__wrap__item p a:hover {
  color: #06B9D9;
}
.footer__wrap__item__part h5 {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #006AB6;
}
.footer__wrap__item__part p {
  text-align: left;
  font-size: 1.4rem;
  color: #fff;
}
.footer__wrap__item__part p:not(:last-child) {
  margin-bottom: 1rem;
}
.footer__wrap__item__part p span {
  font-weight: bold;
}
.footer__wrap__item__part p a {
  color: #fff;
}
@media (min-width: 768px) {
  .footer__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__wrap__item:nth-child(4) {
    grid-column: 1/-1;
  }
}
@media (min-width: 1024px) {
  .footer__wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
  }
  .footer__wrap__item {
    grid-row: 1/2;
  }
  .footer__wrap__item:nth-child(1) {
    grid-column: 2/3;
  }
  .footer__wrap__item:nth-child(3) {
    grid-column: 1/2;
  }
  .footer__wrap__item:nth-child(3) {
    grid-column: 3/4;
  }
  .footer__wrap__item:nth-child(4) {
    grid-row: 2/3;
  }
  .footer__wrap__item__part picture.bag {
    display: block;
  }
  .footer__wrap__item__part picture.bag img {
    display: block;
    width: 100%;
  }
}

#main {
  padding: 2rem;
  padding-top: 6rem;
  max-width: 180rem;
  margin: 0 auto;
}
#main h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
#main h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
#main h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
#main p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
#main hr {
  margin: 2rem auto;
}
#main button {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  background-color: #006AB6;
  color: #fff;
  font-weight: 700;
}
#main ul {
  margin-bottom: 1rem;
}
#main ul li {
  list-style: none;
  font-size: 1.6rem;
}
#main ul li::before {
  content: "- ";
}

.errori-page {
  padding: 2rem;
  padding-top: 6rem;
}
.errori-page__wrap {
  text-align: center;
}
.errori-page__wrap h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}
.errori-page__wrap p {
  margin-bottom: 2rem;
}
.errori-page__wrap a {
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: #fff;
  background-color: #000;
}
@media (min-width: 768px) {
  .errori-page {
    padding: 4rem;
    padding-top: 8rem;
  }
  .errori-page__wrap h1 {
    font-size: 4.5rem;
  }
  .errori-page__wrap p {
    font-size: 2rem;
  }
}

.sitemap__wrap {
  max-width: 144rem;
  margin: 0 auto;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 90vh;
}
.sitemap__wrap ul {
  list-style-position: inside;
}
.sitemap__wrap ul li:not(:last-child) {
  margin-bottom: 2rem;
}
.sitemap__wrap ul li a {
  color: #161615;
  font-size: 2rem;
  -webkit-transition: margin 0.2s;
  transition: margin 0.2s;
}
.sitemap__wrap ul li a:hover {
  margin-left: 1rem;
}

.header__wrap__item:nth-child(1) {
  z-index: 1;
  position: relative;
  padding: 2rem;
  padding-top: 20rem;
  background-color: #161615;
  display: grid;
  grid-gap: 2rem;
}
.header__wrap__item:nth-child(1) h3 {
  font-family: "Secular One", sans-serif;
  font-size: 4rem;
  font-weight: lighter;
  color: #006AB6;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.header__wrap__item:nth-child(1) h3 span {
  color: #06B9D9;
}
.header__wrap__item:nth-child(1) p {
  color: #fff;
}
.header__wrap__item:nth-child(1) a.btn {
  justify-self: flex-end;
}
.header__wrap__item:nth-child(1) picture.bag img {
  display: block;
  width: 100%;
  max-width: 30rem;
  -webkit-transform: translateY(25%);
          transform: translateY(25%);
}
@media (min-width: 768px) {
  .header__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .header__wrap__item:nth-child(1) picture.bag {
    grid-column: span 2;
    grid-row: 4/5;
  }
  .header__wrap__item:nth-child(1) picture.bag img {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
}
@media (min-width: 1024px) {
  .header__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .header__wrap__item:nth-child(1) {
    padding: 4rem;
    padding-top: 20rem;
  }
  .header__wrap__item:nth-child(2) {
    grid-column: span 2;
  }
}

.slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider__btn {
  position: absolute;
  z-index: 10;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.slider__btn a.prev,
.slider__btn a.next {
  cursor: pointer;
  padding: 1rem;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
}
.slider__btn a.prev:hover,
.slider__btn a.next:hover {
  padding: 1rem 2.5rem;
}
.slider__item {
  aspect-ratio: 1/1;
}
.slider__item picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.slider__item picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 768px) {
  .slider {
    height: 100%;
    width: 100%;
  }
  .slider__item {
    aspect-ratio: unset;
    height: 100%;
    width: 100%;
  }
}

.fade {
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.sub-header__wrap {
  padding: 8rem 2rem;
  max-width: 160rem;
  margin: 0 auto;
  display: grid;
  grid-gap: 2rem;
  text-align: center;
}
.sub-header__wrap__item:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.sub-header__wrap__item:nth-child(1) img {
  margin-bottom: 2rem;
}
.sub-header__wrap__item:nth-child(1) h1 {
  font-size: 3rem;
}
.sub-header__wrap__item h2 {
  font-size: 2.5rem;
  color: #06B9D9;
  letter-spacing: 1px;
  font-family: "Secular One", sans-serif;
}
.sub-header__wrap__item p {
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sub-header__wrap {
    padding: 8rem 4rem;
  }
  .sub-header__wrap__item:nth-child(1) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sub-header__wrap__item:nth-child(1) img {
    margin: 0;
    margin-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .sub-header__wrap {
    padding: 8rem;
    grid-gap: 4rem;
  }
  .sub-header__wrap__item:nth-child(1) h1 {
    font-size: 4rem;
  }
  .sub-header__wrap__item:nth-child(1) img {
    margin: 0;
    margin-right: 2rem;
  }
  .sub-header__wrap__item h2 {
    font-size: 3.5rem;
  }
}

.cta-applicazioni__wrap {
  padding: 2rem;
  max-width: 160rem;
  margin: 0 auto;
  display: grid;
  grid-gap: 4rem;
}
.cta-applicazioni__wrap__item {
  text-align: center;
}
.cta-applicazioni__wrap__item:nth-child(1) {
  display: grid;
  grid-gap: 2rem;
}
.cta-applicazioni__wrap__item:nth-child(1) .cta-applicazioni__wrap__item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.cta-applicazioni__wrap__item:nth-child(1) .cta-applicazioni__wrap__item__title img {
  display: block;
  margin-bottom: 2rem;
}
.cta-applicazioni__wrap__item:nth-child(1) .cta-applicazioni__wrap__item__title h2 {
  font-size: 3rem;
  font-family: "Secular One", sans-serif;
}
.cta-applicazioni__wrap__item:nth-child(1) h3 {
  text-transform: uppercase;
  font-size: 2rem;
  color: #6A6A6A;
}
.cta-applicazioni__wrap__item:nth-child(2) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: 4rem;
}
.cta-applicazioni__wrap__item:nth-child(2) .cta-applicazioni__wrap__item__app {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.cta-applicazioni__wrap__item:nth-child(2) .cta-applicazioni__wrap__item__app:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.cta-applicazioni__wrap__item:nth-child(2) .cta-applicazioni__wrap__item__app img {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.cta-applicazioni__wrap__item:nth-child(2) .cta-applicazioni__wrap__item__app h3 {
  color: #6A6A6A;
  font-size: 2rem;
  text-transform: uppercase;
}
.cta-applicazioni__wrap__item:nth-child(2) .cta-applicazioni__wrap__item__app:nth-child(6) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cta-applicazioni__wrap__item:nth-child(2) .cta-applicazioni__wrap__item__app:nth-child(6) img {
  border-radius: 0 !important;
  margin: 0;
  width: 100%;
}
.cta-applicazioni__wrap__item:nth-child(2) .cta-applicazioni__wrap__item__app:nth-child(6) p {
  color: #006AB6;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .cta-applicazioni__wrap {
    padding: 4rem;
    grid-gap: 8rem;
  }
  .cta-applicazioni__wrap__item {
    text-align: left;
  }
  .cta-applicazioni__wrap__item:nth-child(1) .cta-applicazioni__wrap__item__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .cta-applicazioni__wrap__item:nth-child(1) .cta-applicazioni__wrap__item__title img {
    display: block;
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .cta-applicazioni__wrap__item:nth-child(2) {
    text-align: center;
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-applicazioni__wrap__item:nth-child(2) .cta-applicazioni__wrap__item__app:nth-child(6) p {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .cta-applicazioni__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-applicazioni__wrap__item:nth-child(1) {
    grid-gap: 4rem;
  }
  .cta-applicazioni__wrap__item:nth-child(1) .cta-applicazioni__wrap__item__title h2 {
    font-size: 4rem;
  }
  .cta-applicazioni__wrap__item:nth-child(1) h3 {
    font-size: 3rem;
  }
  .cta-applicazioni__wrap__item:nth-child(2) {
    grid-column: span 2;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cta-prodotti__wrap {
  display: grid;
  grid-gap: 4rem;
  padding: 8rem 2rem;
}
.cta-prodotti__wrap__box:nth-child(1) .cta-prodotti__wrap__box__item {
  max-width: 154rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.cta-prodotti__wrap__box:nth-child(1) .cta-prodotti__wrap__box__item img {
  display: block;
  margin-bottom: 2rem;
}
.cta-prodotti__wrap__box:nth-child(1) .cta-prodotti__wrap__box__item h2 {
  font-size: 3rem;
  font-family: "Secular One", sans-serif;
}
.cta-prodotti__wrap__box:nth-child(2) {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta-prodotti__wrap__box:nth-child(2) .cta-prodotti__wrap__box__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta-prodotti__wrap__box:nth-child(2) .cta-prodotti__wrap__box__item:nth-child(1) .cta-prodotti__wrap__box__item__img picture img {
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}
.cta-prodotti__wrap__box:nth-child(2) .cta-prodotti__wrap__box__item:last-child .cta-prodotti__wrap__box__item__img picture img {
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
.cta-prodotti__wrap__box:nth-child(2) .cta-prodotti__wrap__box__item__img {
  aspect-ratio: 1/1;
}
.cta-prodotti__wrap__box:nth-child(2) .cta-prodotti__wrap__box__item__img picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cta-prodotti__wrap__box:nth-child(2) .cta-prodotti__wrap__box__item__img picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cta-prodotti__wrap__box:nth-child(2) .cta-prodotti__wrap__box__item__text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#006AB6));
  background-image: linear-gradient(to bottom, transparent, #006AB6);
}
.cta-prodotti__wrap__box:nth-child(2) .cta-prodotti__wrap__box__item__text h3 {
  font-size: 2.5rem;
  font-family: "Secular One", sans-serif;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-weight: lighter;
}
.cta-prodotti__wrap__box:nth-child(3) {
  max-width: 154rem;
  margin: 0 auto;
}
.cta-prodotti__wrap__box:nth-child(3) .cta-prodotti__wrap__box__item {
  text-align: center;
}
.cta-prodotti__wrap__box:nth-child(3) .cta-prodotti__wrap__box__item p {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .cta-prodotti__wrap {
    padding: 8rem 4rem;
  }
  .cta-prodotti__wrap__box:nth-child(1) .cta-prodotti__wrap__box__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .cta-prodotti__wrap__box:nth-child(1) .cta-prodotti__wrap__box__item img {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .cta-prodotti__wrap__box:nth-child(2) {
    grid-template-columns: repeat(auto-fit, minmax(28rem, 30%));
    grid-gap: 2rem;
  }
  .cta-prodotti__wrap__box:nth-child(2) .cta-prodotti__wrap__box__item .cta-prodotti__wrap__box__item__img picture img {
    border-radius: 2rem;
  }
  .cta-prodotti__wrap__box:nth-child(3) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-prodotti__wrap__box:nth-child(3) .cta-prodotti__wrap__box__item {
    text-align: right;
    grid-column: 2/3;
  }
  .cta-prodotti__wrap__box:nth-child(3) .cta-prodotti__wrap__box__item p {
    text-align: left;
  }
  .cta-prodotti__wrap__box:nth-child(3) .cta-prodotti__wrap__box__item a p {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .cta-prodotti__wrap__box:nth-child(1) .cta-prodotti__wrap__box__item h2 {
    font-size: 4rem;
  }
  .cta-prodotti__wrap__box:nth-child(2) .cta-prodotti__wrap__box__item:hover h3 {
    margin-bottom: 2rem;
  }
  .cta-prodotti__wrap__box:nth-child(2) .cta-prodotti__wrap__box__item__text h3 {
    font-size: 3rem;
    -webkit-transition: margin 0.2s;
    transition: margin 0.2s;
  }
}

.cta-full__wrap {
  display: grid;
}
.cta-full__wrap__item:nth-child(1) {
  z-index: 1;
  aspect-ratio: 1/1;
}
.cta-full__wrap__item:nth-child(1) picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cta-full__wrap__item:nth-child(1) picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cta-full__wrap__item:nth-child(2) {
  margin-top: -2rem;
  z-index: 2;
  background-color: #161615;
  padding: 4rem 2rem;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
  display: grid;
  grid-gap: 2rem;
  -ms-flex-line-pack: center;
      align-content: center;
}
.cta-full__wrap__item:nth-child(2) h2 {
  font-family: "Secular One", sans-serif;
  font-size: 4rem;
  font-weight: lighter;
  color: #006AB6;
}
.cta-full__wrap__item:nth-child(2) h2 span {
  color: #06B9D9;
}
.cta-full__wrap__item:nth-child(2) p {
  color: #fff;
}
.cta-full__wrap__item:nth-child(2) ul {
  color: #fff;
}
.cta-full__wrap__item:nth-child(2) ul li {
  font-size: 1.6rem;
  list-style: none;
}
.cta-full__wrap__item:nth-child(2) ul li::before {
  content: "-";
  margin-right: 1rem;
}
.cta-full__wrap__item:nth-child(2) ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.cta-full__wrap__item:nth-child(2) a {
  justify-self: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .cta-full__wrap {
    grid-template-columns: repeat(4, 1fr);
  }
  .cta-full__wrap__item:nth-child(1) {
    grid-column: 1/-1;
    grid-row: 1/2;
    aspect-ratio: unset;
  }
  .cta-full__wrap__item:nth-child(2) {
    margin-top: 0;
    grid-column: 3/5;
    grid-row: 1/2;
    padding: 4rem;
    grid-gap: 4rem;
    border-top-right-radius: 0;
    border-bottom-left-radius: 2rem;
  }
  .cta-full__wrap__item:nth-child(2) a {
    justify-self: flex-end;
  }
}
@media (min-width: 1400px) {
  .cta-full__wrap__item:nth-child(2) {
    grid-column: 4/5;
  }
}

.title {
  padding: 2rem;
}
.title__wrap {
  max-width: 160rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.title__wrap img {
  display: block;
  margin-bottom: 2rem;
}
.title__wrap h1,
.title__wrap h2 {
  font-size: 3rem;
  font-family: "Secular One", sans-serif;
}
@media (min-width: 1024px) {
  .title {
    padding: 4rem;
  }
  .title__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .title__wrap img {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .title__wrap h1,
.title__wrap h2 {
    font-size: 4rem;
  }
}

.slider-articoli {
  max-width: 144rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.slider-articoli a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.slider-articoli a:hover .text h3,
.slider-articoli a:hover .text span {
  color: #06B9D9;
}
.slider-articoli a .immagine {
  aspect-ratio: 4/3;
  margin-bottom: 4rem;
}
.slider-articoli a .immagine picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.slider-articoli a .immagine picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.slider-articoli a .text {
  padding: 0 2rem;
  border-left: 1px solid #ADADAD;
  margin-left: 2rem;
}
.slider-articoli a .text h3,
.slider-articoli a .text span {
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}
.slider-articoli a .text h3 {
  font-family: "Secular One", sans-serif;
  letter-spacing: 1px;
  font-weight: lighter;
  color: #006AB6;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.slider-articoli a .text p {
  color: #6A6A6A;
  margin-bottom: 2rem;
}
.slider-articoli a .text span {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #006AB6;
  font-weight: 700;
}
@media (min-width: 768px) {
  .slider-articoli a {
    padding: 4rem;
  }
  .slider-articoli a .immagine picture img {
    border-radius: 2rem;
  }
}

.splide__arrow {
  background-color: transparent !important;
  opacity: 1 !important;
}

@media (min-width: 1024px) {
  .splide__arrow--next {
    right: 1rem !important;
  }
}

@media (min-width: 1024px) {
  .splide__arrow--prev {
    left: 1rem !important;
  }
}

.splide__arrow svg {
  display: none;
}
@media (min-width: 768px) {
  .splide__arrow svg {
    display: block;
    fill: #ADADAD !important;
    width: 3rem !important;
    height: 3rem !important;
  }
}

.splide__pagination {
  position: relative !important;
  margin-top: 4rem !important;
}
@media (min-width: 768px) {
  .splide__pagination {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .splide__track {
    padding: 0 3rem !important;
  }
}

.splide__pagination__page.is-active {
  background-color: #6A6A6A !important;
}

.breadcrumb__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb__wrap a {
  color: #6A6A6A;
  font-size: 1.6rem;
  font-weight: 600;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.breadcrumb__wrap a:hover {
  color: #06B9D9;
}
.breadcrumb__wrap a::after {
  content: ">";
  margin: 0 1rem;
  color: #6A6A6A !important;
}
.breadcrumb__wrap p {
  color: #6A6A6A;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .breadcrumb__wrap {
    padding: 4rem;
    padding-bottom: 0;
  }
}

.copertina__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-gap: 4rem;
}
.copertina__wrap__item:nth-child(1) picture img {
  display: block;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  border-radius: 2rem;
}
.copertina__wrap__item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.copertina__wrap__item:nth-child(2) img {
  display: block;
  margin-bottom: 2rem;
}
.copertina__wrap__item:nth-child(2) h1,
.copertina__wrap__item:nth-child(2) h2 {
  font-size: 3rem;
  font-family: "Secular One", sans-serif;
}
.copertina__wrap__item:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.copertina__wrap__item:nth-child(3) h2 {
  text-align: center;
  font-size: 2rem;
  color: #6A6A6A;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.copertina__wrap__item:nth-child(3) p {
  text-align: center;
}
.copertina__wrap__item:nth-child(3) a.btn {
  margin-top: 4rem;
  -ms-flex-item-align: center;
      align-self: center;
}
@media (min-width: 1024px) {
  .copertina__wrap {
    padding: 4rem;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .copertina__wrap__item:nth-child(1) {
    grid-column: 1/2;
  }
  .copertina__wrap__item:nth-child(2) {
    grid-column: 2/3;
  }
  .copertina__wrap__item:nth-child(2) h1,
.copertina__wrap__item:nth-child(2) h2 {
    font-size: 4rem;
  }
  .copertina__wrap__item:nth-child(3) {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
  .copertina__wrap__item:nth-child(3) h2 {
    font-size: 2.5rem;
    text-align: left;
  }
  .copertina__wrap__item:nth-child(3) p {
    text-align: left;
  }
  .copertina__wrap__item:nth-child(3) a.btn {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (min-width: 1200px) {
  .copertina__wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .copertina__wrap__item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .copertina__wrap__item:nth-child(2) {
    grid-column: 2/3;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .copertina__wrap__item:nth-child(2) img {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .copertina__wrap__item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .copertina__wrap__item:nth-child(3) p {
    text-align: left;
  }
}

.text1__wrap,
.text2__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-gap: 2rem;
  text-align: center;
}
.text1__wrap__item,
.text2__wrap__item {
  display: grid;
  grid-gap: 2rem;
}
.text1__wrap__item__body ul,
.text2__wrap__item__body ul {
  margin: 1rem 0;
  list-style-type: "- ";
}
.text1__wrap__item__body ul li,
.text2__wrap__item__body ul li {
  font-size: 1.6rem;
  font-weight: 600;
  color: #6A6A6A;
}
.text1__wrap__item__body ul li span,
.text2__wrap__item__body ul li span {
  color: #006AB6;
  text-transform: uppercase;
}
.text1__wrap__item__body ul li:not(:last-child),
.text2__wrap__item__body ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.text1__wrap__item__body ul li a,
.text2__wrap__item__body ul li a {
  color: #06B9D9;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.text1__wrap__item__body ul li a:hover,
.text2__wrap__item__body ul li a:hover {
  color: #006AB6;
}
@media (min-width: 1024px) {
  .text1__wrap,
.text2__wrap {
    padding: 4rem;
    grid-gap: 4rem;
    text-align: left;
  }
  .text1__wrap__item,
.text2__wrap__item {
    grid-gap: 4rem;
  }
  .text1__wrap__item__body,
.text2__wrap__item__body {
    padding-left: 4rem;
  }
  .text1__wrap__item__body ul,
.text2__wrap__item__body ul {
    margin: 2rem 0;
  }
  .text1__wrap__item__body ul li:not(:last-child),
.text2__wrap__item__body ul li:not(:last-child) {
    margin-bottom: 2rem;
  }
}

.text1__wrap {
  text-align: center;
}
.text1__wrap__item h2 {
  color: #06B9D9;
  font-size: 3rem;
  font-family: "Secular One", sans-serif;
}
.text1__wrap__item img {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .text1__wrap {
    text-align: center;
  }
  .text1__wrap__item h2 {
    font-size: 3.5rem;
  }
}

.text3__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  justify-items: flex-start;
}
.text3__wrap h2,
.text3__wrap h3,
.text3__wrap h4,
.text3__wrap h5 {
  font-family: "Secular One", sans-serif;
  margin-bottom: 2rem;
}
.text3__wrap h2 {
  font-size: 3rem;
}
.text3__wrap h3 {
  font-size: 2.8rem;
}
.text3__wrap h4 {
  font-size: 2.5rem;
}
.text3__wrap h5 {
  font-size: 2.2rem;
}
.text3__wrap ul,
.text3__wrap ol {
  margin: 2rem 0;
}
.text3__wrap ul li,
.text3__wrap ol li {
  font-size: 1.6rem;
  line-height: 150%;
}
.text3__wrap ul li:not(:last-child),
.text3__wrap ol li:not(:last-child) {
  margin-bottom: 2rem;
}
.text3__wrap ul {
  list-style-type: "- ";
}
.text3__wrap ol {
  list-style-position: inside;
}
.text3__wrap p {
  margin-bottom: 2rem;
}
.text3__wrap a {
  color: #06B9D9;
  font-weight: 600;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.text3__wrap a:hover {
  color: #006AB6;
}
@media (min-width: 1024px) {
  .text3__wrap {
    padding: 4rem;
  }
  .text3__wrap h2 {
    font-size: 3.5rem;
  }
  .text3__wrap h3 {
    font-size: 3rem;
  }
  .text3__wrap h4 {
    font-size: 2.8rem;
  }
  .text3__wrap h5 {
    font-size: 2.5rem;
  }
}

.item__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-gap: 4rem;
}
.item__wrap__content {
  display: grid;
  grid-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.item__wrap__content:not(:last-child) {
  padding-bottom: 2rem;
  border-bottom: 2px solid #06B9D9;
}
.item__wrap__content__img {
  aspect-ratio: 4/3;
}
.item__wrap__content__img picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.item__wrap__content__img picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2rem;
}
.item__wrap__content__text {
  display: grid;
  grid-gap: 1rem;
}
.item__wrap__content__text h2 {
  font-size: 3rem;
  font-family: "Secular One", sans-serif;
}
.item__wrap__content__text span {
  text-transform: uppercase;
  font-size: 2rem;
  color: #6A6A6A;
  font-weight: 600;
}
@media (min-width: 768px) {
  .item__wrap__content {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
  }
  .item__wrap__content:not(:last-child) {
    padding-bottom: 4rem;
  }
  .item__wrap__content:nth-child(even) .item__wrap__content__img {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .item__wrap__content:nth-child(even) .item__wrap__content__text {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media (min-width: 1024px) {
  .item__wrap {
    padding: 4rem 8rem;
  }
  .item__wrap__content {
    grid-template-columns: repeat(3, 1fr);
  }
  .item__wrap__content:nth-child(even) .item__wrap__content__img {
    grid-column: 3/4;
  }
  .item__wrap__content:nth-child(even) .item__wrap__content__text {
    grid-column: 1/3;
  }
  .item__wrap__content__text {
    grid-column: span 2;
  }
  .item__wrap__content__text h2 {
    font-size: 3.5rem;
  }
  .item__wrap__content__text span {
    font-size: 2.5rem;
  }
}

.blog__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-gap: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 35rem));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.blog__wrap__item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.blog__wrap__item:hover .blog__wrap__item__text h2,
.blog__wrap__item:hover .blog__wrap__item__text span {
  color: #06B9D9;
}
.blog__wrap__item__img {
  aspect-ratio: 4/3;
  margin-bottom: 4rem;
}
.blog__wrap__item__img picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog__wrap__item__img picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2rem;
}
.blog__wrap__item__text {
  border-left: 1px solid #ADADAD;
  padding-left: 2rem;
  margin-left: 2rem;
}
.blog__wrap__item__text h2,
.blog__wrap__item__text span {
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}
.blog__wrap__item__text h2 {
  font-family: "Secular One", sans-serif;
  letter-spacing: 1px;
  font-weight: lighter;
  color: #006AB6;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.blog__wrap__item__text p {
  color: #6A6A6A;
  margin-bottom: 2rem;
}
.blog__wrap__item__text span {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #006AB6;
  font-weight: 700;
}

.paginazione__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
}
.paginazione__wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.paginazione__wrap ul li:not(:last-child) {
  margin-right: 1rem;
}
.paginazione__wrap ul li a {
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
  border-bottom: 2px solid transparent;
  padding: 1rem;
  color: #161615;
  font-size: 1.6rem;
  font-weight: 700;
}
.paginazione__wrap ul li a.attivo {
  border-bottom: 2px solid #06B9D9 !important;
}
.paginazione__wrap ul li a:hover {
  border-color: #06B9D9 !important;
}

.intro__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-gap: 2rem;
}
.intro__wrap__item:nth-child(1) {
  aspect-ratio: 4/3;
}
.intro__wrap__item:nth-child(1) picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.intro__wrap__item:nth-child(1) picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2rem;
}
.intro__wrap__item:nth-child(2) {
  text-align: center;
}
.intro__wrap__item:nth-child(2) p {
  color: #6A6A6A;
  font-weight: 600;
  margin-bottom: 1rem;
}
.intro__wrap__item:nth-child(2) h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.intro__wrap__item:nth-child(2) h2 {
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #06B9D9;
  margin-bottom: 1rem;
}
.intro__wrap__item:nth-child(2) a.file {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.intro__wrap__item:nth-child(2) a.file img {
  width: 5rem;
  margin-right: 1rem;
}
.intro__wrap__item:nth-child(2) a.file p {
  margin: 0 !important;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #006AB6;
  color: #006AB6;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.intro__wrap__item:nth-child(2) a.file:hover p {
  color: #06B9D9;
}
@media (min-width: 768px) {
  .intro__wrap {
    grid-gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .intro__wrap__item:nth-child(2) {
    text-align: left;
  }
  .intro__wrap__item:nth-child(2) a.file {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .intro__wrap {
    padding: 4rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .intro__wrap__item:nth-child(2) {
    grid-column: span 2;
  }
  .intro__wrap__item:nth-child(2) p {
    margin-bottom: 2rem;
  }
  .intro__wrap__item:nth-child(2) h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
  .intro__wrap__item:nth-child(2) h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .intro__wrap__item:nth-child(2) a.file {
    margin-top: 4rem;
  }
}

.intro-app__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}
.intro-app__wrap img {
  display: block;
  max-width: 25rem;
  margin: 0 auto;
  margin-bottom: 2rem;
  border-radius: 2rem;
}
.intro-app__wrap h1 {
  font-size: 3rem;
}
@media (min-width: 768px) {
  .intro-app__wrap {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .intro-app__wrap img {
    margin: 0;
    margin-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .intro-app__wrap {
    padding: 4rem;
  }
  .intro-app__wrap img {
    margin: 0;
    margin-right: 4rem;
  }
  .intro-app__wrap h1 {
    font-size: 4rem;
  }
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 2rem;
}
.form__item .g-recaptcha * {
  width: 100% !important;
  max-width: 304px !important;
}
.form__item:not(:last-child) {
  margin-bottom: 2rem;
}
.form__item span {
  font-size: 1.6rem;
  text-align: left;
}
.form__item__input, .form__item__textarea {
  outline: transparent;
  border: none;
  background-color: #f5f5f5;
  padding: 1rem;
  font-size: 1.6rem;
  width: 100%;
  font-family: "Roboto", sans-serif;
}
.form__item__textarea {
  resize: none;
}
.form__item__check {
  margin-right: 1rem;
}
.form__item__btn {
  cursor: pointer;
  border: none;
  background-color: transparent;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-align: right;
  padding: 1rem 2rem;
  border-radius: 2rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  background-color: #06B9D9;
}
.form__item__btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (min-width: 1024px) {
  .form {
    border-radius: 0;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
  }
}

.contatti__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-gap: 4rem;
}
.contatti__wrap__item:nth-child(1) {
  position: relative;
  padding-bottom: 100%;
}
.contatti__wrap__item:nth-child(1) iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .contatti__wrap__item:nth-child(1) {
    padding-bottom: 56.25%;
  }
}
@media (min-width: 1024px) {
  .contatti__wrap {
    grid-template-columns: repeat(2, 1fr);
    padding: 4rem;
    grid-gap: 0;
  }
  .contatti__wrap__item {
    grid-row: 1/2;
  }
  .contatti__wrap__item:nth-child(1) {
    grid-column: 2/3;
  }
  .contatti__wrap__item:nth-child(1) iframe {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
  .contatti__wrap__item:nth-child(2) {
    grid-column: 1/2;
  }
}

.app__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 25rem));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.app__wrap.interno {
  grid-template-columns: repeat(auto-fit, minmax(10rem, 15rem));
}
.app__wrap.interno h2 {
  font-size: 1.6rem;
}
.app__wrap__item {
  text-align: center;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.app__wrap__item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.app__wrap__item img {
  display: block;
  width: 100%;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.app__wrap__item h2 {
  text-transform: uppercase;
  font-size: 2rem;
  color: #6A6A6A;
}
@media (min-width: 1024px) {
  .app__wrap {
    padding: 4rem;
    grid-gap: 4rem;
  }
  .app__wrap__item h2 {
    font-size: 2.5rem;
  }
}

.app-dett__wrap {
  display: grid;
  grid-gap: 2rem;
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
}
.app-dett__wrap__item__img {
  aspect-ratio: 4/3;
  margin-bottom: 2rem;
}
.app-dett__wrap__item__img picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.app-dett__wrap__item__img picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2rem;
}
.app-dett__wrap__item h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #006AB6;
  text-align: center;
}
.app-dett__wrap__item__text h2,
.app-dett__wrap__item__text h3,
.app-dett__wrap__item__text h4,
.app-dett__wrap__item__text h5 {
  font-family: "Secular One", sans-serif;
  margin-bottom: 2rem;
}
.app-dett__wrap__item__text h2 {
  font-size: 3rem;
}
.app-dett__wrap__item__text h3 {
  font-size: 2.8rem;
}
.app-dett__wrap__item__text h4 {
  font-size: 2.5rem;
}
.app-dett__wrap__item__text h5 {
  font-size: 2.2rem;
}
.app-dett__wrap__item__text ul,
.app-dett__wrap__item__text ol {
  margin: 2rem 0;
}
.app-dett__wrap__item__text ul li,
.app-dett__wrap__item__text ol li {
  font-size: 1.6rem;
  line-height: 150%;
}
.app-dett__wrap__item__text ul li:not(:last-child),
.app-dett__wrap__item__text ol li:not(:last-child) {
  margin-bottom: 2rem;
}
.app-dett__wrap__item__text ul {
  list-style: none;
}
.app-dett__wrap__item__text ul li::before {
  content: "-";
  margin-right: 1rem;
  color: #006AB6;
}
.app-dett__wrap__item__text ol {
  list-style-position: inside;
}
.app-dett__wrap__item__text p {
  margin-bottom: 2rem;
}
.app-dett__wrap__item__text a {
  color: #06B9D9;
  font-weight: 600;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.app-dett__wrap__item__text a:hover {
  color: #006AB6;
}
@media (min-width: 1024px) {
  .app-dett__wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem;
    padding: 4rem;
  }
  .app-dett__wrap__item:nth-child(2) {
    grid-column: span 2;
  }
  .app-dett__wrap__item h1 {
    font-size: 4rem;
  }
  .app-dett__wrap__item__text h2 {
    font-size: 3.5rem;
  }
  .app-dett__wrap__item__text h3 {
    font-size: 3rem;
  }
  .app-dett__wrap__item__text h4 {
    font-size: 2.8rem;
  }
  .app-dett__wrap__item__text h5 {
    font-size: 2.5rem;
  }
}

.video__wrap {
  max-width: 160rem;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
}
.video__wrap iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.prod-dett__wrap {
  max-width: 160rem;
  margin: 0 auto;
  display: grid;
}
.prod-dett__wrap a {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.prod-dett__wrap a:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.prod-dett__wrap__item {
  padding: 2rem;
}
.prod-dett__wrap__item__tit {
  text-align: center;
}
.prod-dett__wrap__item__tit h2 {
  margin-bottom: 1rem;
  color: #006AB6;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Secular One", sans-serif;
}
.prod-dett__wrap__item__tit h3 {
  margin-bottom: 2rem;
  color: #6A6A6A;
  text-transform: uppercase;
  font-size: 1.8rem;
}
.prod-dett__wrap__item__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 20rem));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 2rem;
}
.prod-dett__wrap__item__body__img {
  aspect-ratio: 1/1;
  text-align: center;
}
.prod-dett__wrap__item__body__img picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.prod-dett__wrap__item__body__img picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
  margin-bottom: 2rem;
}
.prod-dett__wrap__item__body__img h5 {
  font-family: "Secular One", sans-serif;
  font-size: 1.8rem;
  color: #161615;
}
@media (min-width: 1024px) {
  .prod-dett__wrap__item {
    padding: 4rem;
  }
  .prod-dett__wrap__item:not(:last-child) {
    border-right: 1px solid #fff;
    border-bottom: 0;
  }
  .prod-dett__wrap__item__tit {
    margin-bottom: 4rem;
  }
  .prod-dett__wrap__item__tit h2 {
    font-size: 3rem;
  }
  .prod-dett__wrap__item__tit h3 {
    font-size: 2rem;
  }
  .prod-dett__wrap__item__body {
    grid-gap: 4rem;
  }
}

.prod-cat__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 35rem));
}
.prod-cat__wrap__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prod-cat__wrap__item:hover h3 {
  margin-bottom: 2rem;
}
.prod-cat__wrap__item__img {
  aspect-ratio: 4/3;
}
.prod-cat__wrap__item__img picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.prod-cat__wrap__item__img picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2rem;
}
.prod-cat__wrap__item__text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#006AB6));
  background-image: linear-gradient(to bottom, transparent, #006AB6);
}
.prod-cat__wrap__item__text h3 {
  font-size: 2.5rem;
  font-family: "Secular One", sans-serif;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-weight: lighter;
  -webkit-transition: margin 0.2s;
  transition: margin 0.2s;
}
@media (min-width: 1024px) {
  .prod-cat__wrap {
    padding: 4rem;
    grid-gap: 4rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery__wrap {
  padding: 2rem;
  max-width: 160rem;
  margin: 0 auto;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 30rem));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery__wrap__item {
  aspect-ratio: 4/3;
}
.gallery__wrap__item picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2rem;
}
@media (min-width: 1024px) {
  .gallery__wrap {
    padding: 4rem;
    grid-gap: 4rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.loghi-cert__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-gap: 4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.loghi-cert__wrap img {
  width: 15rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .loghi-cert__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}/*# sourceMappingURL=style.css.map */



.menu-desktop {
    width: 100%;
    text-align: right;
    display: none;
}
.menu-desktop .menu__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 3rem;
    list-style: none;
}

.menu-desktop .menu__wrap a {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #fff;
}
.menu-desktop .menu__wrap a:hover {
    color: #06B9D9;
}

@media screen and (min-width:1431px) {
  .menu-btn {display: none;}
  .menu-desktop {display: block;}
}