@charset "UTF-8";
@import 'https://fonts.googleapis.com/css?family=Lato:400';
@font-face {
  font-family: "Konnect-Bold";
  font-weight: bold;
  src: url("/css/Konnect-Bold.ttf");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Konnect-Light";
  font-weight: lighter;
  src: url("/css/Konnect-Light.ttf");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Konnect-Regular";
  font-weight: normal;
  src: url("/css/Konnect-Regular.ttf");
  /* Safari, Android, iOS */
}
:root {
  --page-dominant-color: #4CB762;
  --erecta-color: #529721;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  padding: 0;
  margin: 0;
  line-height: 1;
  box-sizing: border-box;
}
body.unscroll {
  overflow: hidden;
}
body div[data-button=swiper-prev] {
  transform: rotate(180deg);
}
body summary::-webkit-details-marker {
  display: none;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

button {
  border: none;
  cursor: pointer;
  outline: none;
  font-family: "Konnect-Regular";
}

.jump-to-top {
  display: block;
  position: fixed;
  background-color: #d9d3d3;
  color: black;
  border-radius: 50px;
  font-size: 4em;
  cursor: pointer;
  z-index: 22;
  right: 0.55em;
  bottom: 5vh;
  text-align: center;
  height: 0.7em;
  width: 0.7em;
}
.jump-to-top.hidden {
  display: none;
}
.jump-to-top span {
  /* non so perché ma funziona*/
  display: flex;
  font-size: 1em;
  margin-top: -0.31em;
  margin-left: 0.13em;
  transform: rotate(90deg);
}

details summary {
  list-style-type: none;
}
details summary.title {
  font-weight: bold;
}
details summary .chevron {
  writing-mode: vertical-lr;
  transform: scale(1.7, 1);
}
details summary .chevron:after {
  content: ">";
}

details[open] summary {
  list-style-type: none;
}
details[open] summary .chevron:after {
  content: "<";
}

summary {
  cursor: pointer;
}

.swiper-container {
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.97);
  transition: background-color 0.3s ease;
}
header.opacized:not(.opened-menu) {
  background-color: var(--page-dominant-color);
  opacity: 0.99;
}
header .btn-assistenza {
  color: #fff;
  text-transform: uppercase;
  /* testo maiuscolo*/
  background-color: Transparent;
  background-repeat: no-repeat;
  border: 1px solid white;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  border-radius: 25px;
  padding: 7px 14px 7px 14px;
  font-family: "Konnect-Light";
}
header .logo {
  font-weight: 600;
  font-size: 2.2em;
  color: #fff;
}
header .logo img {
  margin-top: 0.3em;
  margin-left: 2.2em;
  height: 1.1em;
}
@media all and (max-width: 375px) {
  header .logo img {
    margin-left: 0;
  }
}
header nav {
  color: #fff;
  margin-right: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: right;
}
@media all and (max-width: 1024px) {
  header nav {
    flex-flow: column;
    justify-content: start;
  }
}
header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 50px;
}
header nav ul li {
  display: inline-block;
  vertical-align: top;
  padding: 20px;
}
header nav ul li .upperline {
  border-top: 1px solid #4CB762;
}
header nav ul li.hambmenu {
  cursor: pointer;
}
header nav ul li .menu-toggle {
  margin-top: 10px;
}
header nav ul li .menu-toggle {
  position: relative;
  display: block;
  width: 24px;
  height: 12px;
  background: transparent;
  border-top: 2px solid;
  border-bottom: 2px solid;
  color: #529721;
  font-size: 0;
  transition: all 0.25s ease-in-out;
}
header nav ul li .menu-toggle:before, header nav ul li .menu-toggle:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #529721;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease-in-out;
}
header nav ul li button:hover {
  color: #75d232;
}
header nav ul li button.is-active {
  border-color: transparent;
  color: #529721;
}
header nav ul li button.is-active.btn-assistenza {
  display: none;
}
header nav ul li button.is-active:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
header nav ul li button.is-active:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
header ul[data-level="1"], header ul.j-sub-group {
  max-height: 100%;
  margin-top: 0.5em;
}
header .jmenu a {
  color: black;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}
header .jmenu a.active-menu-item {
  color: var(--page-dominant-color);
}
header .jmenu a:hover {
  color: var(--page-dominant-color);
}
header .jmenu label {
  color: black;
  text-transform: uppercase;
  padding: 5px 0px;
  font-weight: bold;
}
@media all and (max-width: 1024px) {
  header .jmenu {
    display: none;
    flex-flow: column nowrap;
    position: fixed;
    top: 5em;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100%;
    overflow-y: scroll;
    background: white;
    text-align: center;
  }
  header .jmenu.visible, header .jmenu.visible > li > a.active-menu-item + ul {
    display: flex;
  }
  header .jmenu[data-level="1"] {
    height: 100%;
    width: 100%;
    overflow-y: visible;
    position: relative;
    top: 0;
  }
  header .jmenu li.lang-sel {
    margin-bottom: 5em;
  }
  header .jmenu li.lang-sel > a > img {
    display: none;
  }
  header .jmenu li.lang-sel .jmenu {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  header .jmenu li.lang-sel .jmenu li a {
    display: block;
    max-width: 10vw;
  }
  header .jmenu li.lang-sel .jmenu li a.lang-selector-it {
    overflow-y: clip;
    height: 1.4em;
  }
  header .jmenu li.lang-sel .jmenu li a.lang-selector-en {
    overflow-y: clip;
    height: 1.4em;
  }
  header .jmenu li.lang-sel .jmenu li a img {
    width: 110%;
  }
  header .jmenu li .jmenu {
    display: flex;
  }
}
@media all and (min-width: 1025px) {
  header .jmenu {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-around;
    max-width: 80%;
  }
  header .jmenu li {
    padding: 20px 4em;
  }
  header .jmenu li.has-submenu:hover ul, header .jmenu li.has-submenu ul:hover, header .jmenu li.has-submenu ul.enable {
    display: block;
    opacity: 1;
  }
  header .jmenu .lang-sel ul.jmenu[data-level="1"] {
    width: 1.5%;
    margin-top: 1%;
    margin-left: -0.7%;
  }
  header .jmenu .lang-sel ul.jmenu[data-level="1"] a.lang-selector-it {
    overflow-y: clip;
    height: 1.6em;
  }
  header .jmenu[data-level="1"] {
    display: none;
    opacity: 0;
    position: fixed;
    margin-top: 2%;
    margin-left: -20%;
    max-width: 100%;
    width: 25%;
    padding: 15px;
    background: white;
    max-height: 100%;
    border: 1px solid #676A65;
    transition: 0.4s ease-in-out;
  }
  header .jmenu[data-level="1"] > li, header .jmenu[data-level="1"] > label {
    padding: 5px 0px;
    background: white;
  }
  header .jmenu[data-level="1"] li {
    display: block;
    font-size: 0.9em;
    background: white;
  }
  header .jmenu[data-level="1"] li.bordered {
    border-bottom: 2px solid var(--page-dominant-color);
  }
  header .jmenu[data-level="1"] li > a {
    display: block;
    font-weight: normal;
  }
  header .jmenu[data-level="1"] li img {
    width: 100%;
  }
  header .jmenu img {
    max-width: 100%;
    width: 16.5em;
  }
}
@media all and (min-width: 1025px) and (max-width: 1440px) {
  header .jmenu li {
    padding: 20px 3.8em;
  }
}
header .j-sub-group li {
  padding: 5px 0;
  font-weight: normal;
}
header .j-sub-group li a {
  font-weight: normal;
}
header .mobile-menu {
  display: none;
}
@media all and (max-width: 1024px) {
  header .mobile-menu {
    display: block;
  }
}

/* FINE HEADER */
.blue-header header:not(.opacized) .btn-assistenza {
  color: var(--page-dominant-color);
  border: 1px solid var(--page-dominant-color);
}
.blue-header header:not(.opacized) nav ul li .menu-toggle {
  color: var(--page-dominant-color);
}

.accordion-prodotto {
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: justify;
  font-size: 1.5em;
  padding: 1em;
  color: #707070;
  width: 75%;
}
@media (max-width: 1440px) {
  .accordion-prodotto {
    font-size: 1.1em;
  }
}
.accordion-prodotto .testo-dettaglio {
  font-family: "Konnect-Light";
  color: #000;
  font-size: 1em;
  text-align: left;
  padding: 1em 0em 1em 0em;
  width: 100%;
  max-width: 15em;
  margin-left: auto;
  margin-right: auto;
}
.accordion-prodotto summary {
  text-align: left;
}

.handswipe {
  display: none;
  visibility: hidden;
}

.handswipe-2 {
  display: none;
  visibility: hidden;
}

/* MANINA SWIPE */
@keyframes swipeh {
  0% {
    opacity: 0.6;
    transform: translateX(7em);
  }
  100% {
    opacity: 0;
  }
}
@media only screen and (max-width: 480px) {
  .handswipe {
    animation: swipeh 3s infinite;
    animation-timing-function: ease;
    position: absolute;
    display: block;
    visibility: visible;
    padding-top: 2em;
    text-align: left;
    max-width: 60vw;
    z-index: 999;
  }
  .handswipe img {
    width: 40%;
  }

  .handswipe-2 {
    animation: swipeh 3s infinite;
    animation-timing-function: ease;
    position: absolute;
    display: block;
    visibility: visible;
    padding-top: 2em;
    text-align: left;
    max-width: 60vw;
    z-index: -1;
  }
  .handswipe-2 img {
    width: 40%;
  }
}
section.home .head-slider {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 0;
  background-size: cover;
  background-color: #1ac6ff;
}
@media (max-width: 480px) {
  section.home .head-slider {
    margin-top: 5em;
  }
}
section.home .head-slider .picture img {
  height: auto;
  width: 100%;
}
section.home .home-intro {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 800px;
  min-width: 1px;
  margin-bottom: 1px;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6em;
}
@media (max-width: 480px) {
  section.home .home-intro {
    max-width: 90%;
    margin-top: 2em;
  }
}
section.home .home-intro .picture img {
  height: 8em;
  max-width: 100%;
}
section.home .home-intro .description {
  margin-top: 5em;
  margin-bottom: 4em;
  opacity: 0.57;
}
section.home .home-intro .call-to-action a {
  display: inline-flex;
  font-size: 1.2em;
  color: #529721;
  text-decoration: none;
  background-color: Transparent;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  padding-top: 0.5em;
  margin-top: 0em;
  margin-bottom: 5em;
  margin-left: auto;
  margin-right: auto;
  font-weight: bolder;
}
section.home .head-generic-box {
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(82, 151, 33, 0.1);
  padding: 2em 0 2em 0;
}
section.home .head-generic-box .title {
  color: #529721;
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  font-weight: bold;
}
section.home .head-generic-box .sub-title {
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  opacity: 0.57;
}
section.home .body-news .categoria-news {
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(82, 151, 33, 0.1);
  padding: 0.5em 0 0.5em 0;
}
section.home .body-news .categoria-news .title {
  color: #676A65;
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  font-weight: bolder;
}
section.home .body-news .categoria-news .sub-title {
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  opacity: 0.57;
}
section.home .body-news .box-categoria-news-wrapper {
  padding: 1.5em 0 4.5em;
  background-color: rgba(82, 151, 33, 0.1);
  margin: 0.5em auto 0;
  width: 80%;
}
section.home .body-news .box-categoria-news-wrapper .box-categoria-news {
  display: flex;
  flex-flow: row wrap;
  width: 80%;
  margin-top: 0.5em;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  color: rgb(82, 151, 33);
}
@media all and (max-width: 1024px) {
  section.home .body-news .box-categoria-news-wrapper .box-categoria-news {
    flex-flow: column nowrap;
  }
}
section.home .body-news .box-categoria-news-wrapper .box-categoria-news .box-news {
  display: flex;
  flex-direction: column;
  flex-basis: 30%;
  margin-top: 4.5em;
  background-color: #FFF;
}
section.home .body-news .box-categoria-news-wrapper .box-categoria-news .box-news .picture img {
  width: 100%;
}
section.home .body-news .box-categoria-news-wrapper .box-categoria-news .box-news .overtitle {
  font-size: 0.8em;
  padding: 0.8em 0em 0.8em 0em;
  margin: 1em 1em 0.5em 1em;
  border-bottom: 2px green solid;
}
section.home .body-news .box-categoria-news-wrapper .box-categoria-news .box-news .title {
  font-weight: bolder;
  font-size: 0.8em;
  padding: 0.5em 0em 0.5em 0em;
  margin: 0em 1em 0em 1em;
  text-transform: uppercase;
}
section.home .body-news .box-categoria-news-wrapper .box-categoria-news .box-news .description {
  line-height: 1.4em;
  color: rgba(0, 0, 0, 0.5607843137);
  font-size: 0.8em;
  padding: 0.5em 0em 0.5em 0em;
  margin: 0em 1em 1.5em 1em;
}
section.home .body-news .box-categoria-news-wrapper .box-categoria-news .box-news .call-to-action {
  display: block;
  font-size: 1em;
  color: #529721;
  text-decoration: none;
  background-color: Transparent;
  background-repeat: no-repeat;
  border-top: 1px solid #529721;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  padding-top: 0.5em;
  margin: 0em 1em 1.5em 1em;
  text-align: center;
}
section.home .body-news .box-categoria-news-wrapper .box-categoria-news .box-news .call-to-action a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  background: inherit;
}
section.home .body-contattaci .head-generic-box {
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(82, 151, 33, 0.1);
  padding: 2em 0 2em 0;
}
section.home .body-contattaci .head-generic-box .title {
  color: #529721;
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
section.home .body-contattaci .head-generic-box .sub-title {
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  opacity: 0.57;
}
section.home .body-contattaci .box-contatti {
  padding: 1.5em 0 4.5em;
  background-color: rgba(82, 151, 33, 0.1);
  margin: 0.5em auto 0;
  width: 80%;
}
section.home .body-contattaci .box-contatti .box-form {
  margin: 1em 1em 1em 1em;
}
section.home .head-prodotti {
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  width: 80%;
}
section.home .head-prodotti .picture img {
  height: auto;
  width: 100%;
}
section.home .body-prodotti .categoria-prodotti {
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(82, 151, 33, 0.1);
  padding: 1em 0 1em 0;
}
section.home .body-prodotti .categoria-prodotti .title {
  color: #676A65;
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  font-weight: bold;
}
section.home .body-prodotti .categoria-prodotti .sub-title {
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  opacity: 0.57;
}
section.home .body-prodotti .box-categoria-prodotti-wrapper {
  padding: 1.5em 0 4.5em;
  background-color: rgba(82, 151, 33, 0.1);
  margin: 0.5em auto 0;
  width: 80%;
}
section.home .body-prodotti .box-categoria-prodotti-wrapper .box-categoria-prodotti {
  display: flex;
  width: 80%;
  margin-top: 0.5em;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.home .body-prodotti .box-categoria-prodotti-wrapper .box-categoria-prodotti .box-prodotto {
  padding: 1em 0px;
  display: flex;
  flex-direction: row;
  flex-basis: 50%;
  margin-top: 4.5em;
}
@media all and (max-width: 480px) {
  section.home .body-prodotti .box-categoria-prodotti-wrapper .box-categoria-prodotti .box-prodotto {
    flex-direction: column;
    flex-basis: 100%;
    text-align: center;
  }
}
section.home .body-prodotti .box-categoria-prodotti-wrapper .box-categoria-prodotti .box-prodotto .col-sx .picture {
  margin: 0px 1em 1em 1em;
}
section.home .body-prodotti .box-categoria-prodotti-wrapper .box-categoria-prodotti .box-prodotto .col-sx .picture img {
  height: auto;
  width: 3.5em;
}
@media all and (max-width: 480px) {
  section.home .body-prodotti .box-categoria-prodotti-wrapper .box-categoria-prodotti .box-prodotto .col-sx .picture img {
    width: 5em;
  }
}
section.home .body-prodotti .box-categoria-prodotti-wrapper .box-categoria-prodotti .box-prodotto .col-dx .title {
  color: rgba(0, 0, 0, 0.57);
  font-weight: bold;
}
section.home .body-prodotti .box-categoria-prodotti-wrapper .box-categoria-prodotti .box-prodotto .col-dx .description {
  margin-top: 1em;
  margin-bottom: 1em;
  color: rgba(0, 0, 0, 0.57);
  line-height: 1.4em;
}
section.home .body-prodotti .box-categoria-prodotti-wrapper .box-categoria-prodotti .box-prodotto .col-dx .call-to-action {
  display: block;
  font-size: 1.2em;
  color: #529721;
  text-decoration: none;
  background-color: Transparent;
  background-repeat: no-repeat;
  border-top: 1px solid #529721;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  padding-top: 0.5em;
  margin-top: 0.5em;
  margin-left: auto;
  margin-right: auto;
  font-weight: bolder;
}
section.home .distribuzione-territoriale .header {
  padding-top: 1em;
  padding-bottom: 1em;
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
  background-color: #F7F7F7;
}
section.home .distribuzione-territoriale .header .title {
  color: rgb(82, 151, 33);
  text-align: center;
  padding: 1em;
  font-weight: bold;
}
section.home .box-mappa-wrapper {
  padding: 1.5em 0 4.5em;
  background-color: #F7F7F7;
  margin: 0.5em auto 0;
  width: 80%;
}
section.home .box-mappa-wrapper .box-mappa {
  display: flex;
  width: 98%;
  margin-top: 5em;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: column;
}
section.home .box-mappa-wrapper .box-mappa .mappa {
  width: 100%;
}
section.home .box-mappa-wrapper .box-mappa .mappa .picture {
  margin: 0 auto;
  text-align: center;
}
section.home .box-mappa-wrapper .box-mappa .mappa .picture img {
  margin: 0 auto;
  width: 90%;
}
section.home .box-mappa-wrapper .box-mappa .box-accordion {
  color: rgba(0, 0, 0, 0.57);
  width: 100%;
  margin-bottom: 1em;
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .title {
  width: 80%;
  margin: 0 auto;
  background-color: #EBEBEB;
  margin-bottom: 1.5em;
  padding: 1em;
  border-radius: 2em;
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .title .plus-img {
  color: #4CB762;
  margin-right: 1.5em;
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .detail {
  background-color: #EBEBEB;
  width: 100%;
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .drop-container-detail {
  display: flex;
  flex-flow: row wrap;
  max-width: 80%;
  margin: 0 auto;
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .drop-container-detail .video-detail {
  max-width: 40%;
  margin: 0 auto;
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
}
@media all and (max-width: 480px) {
  section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .drop-container-detail .video-detail {
    max-width: 80%;
    padding-bottom: 1em;
  }
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .drop-container-detail .video-detail video {
  width: 100%;
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .drop-container-detail .video-detail .video-play-button-wrapper {
  z-index: 4;
  position: absolute;
  border: 1em solid var(--page-dominant-color);
  border-radius: 70px;
  width: 5em;
  text-align: center;
  height: 5em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -47%;
  margin-left: 39%;
  cursor: pointer;
}
@media all and (max-width: 480px) {
  section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .drop-container-detail .video-detail .video-play-button-wrapper {
    margin-left: 25%;
    margin-top: -57%;
  }
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .drop-container-detail .video-detail .video-play-button-wrapper .video-play-button {
  cursor: pointer;
  color: var(--page-dominant-color);
  font-size: 3em;
  display: block;
  margin-left: 0.1em;
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .drop-container-detail .video-detail img {
  max-width: 70%;
  float: right;
}
@media all and (max-width: 480px) {
  section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .drop-container-detail .video-detail img {
    max-width: 100%;
    float: none;
  }
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .testo-detail-video {
  padding-top: 2em;
  padding-bottom: 2em;
  max-width: 40%;
  margin: 0 auto;
}
@media all and (max-width: 480px) {
  section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .testo-detail-video {
    max-width: 80%;
    padding-top: 1em;
  }
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .testo-detail-video .accordion-detail-list > li {
  line-height: 2em;
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .testo-detail {
  width: 80%;
  margin: 0 auto;
  padding-top: 2em;
  padding-bottom: 2em;
  line-height: 1.4em;
}
section.home .box-mappa-wrapper .box-mappa .box-accordion .detail .testo-detail .accordion-detail-list > li {
  line-height: 2em;
}
section.home .box-mappa-wrapper .box-mappa .col-sx {
  padding-left: 2em;
  width: 60%;
}
section.home .box-mappa-wrapper .box-mappa .col-sx img {
  width: 95%;
}
section.home .box-mappa-wrapper .box-mappa .actionsection {
  text-align: center;
}
section.home .box-mappa-wrapper .box-mappa .actionsection .title {
  color: rgba(0, 0, 0, 0.57);
}
section.home .box-mappa-wrapper .box-mappa .actionsection .description {
  margin-top: 1em;
  margin-bottom: 1em;
  color: rgba(0, 0, 0, 0.57);
  line-height: 1.4em;
}
section.home .box-mappa-wrapper .box-mappa .actionsection .call-to-action {
  display: block;
  font-size: 1.2em;
  color: #529721;
  text-decoration: none;
  background-color: Transparent;
  background-repeat: no-repeat;
  border-top: 1px solid #529721;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  padding-top: 0.5em;
  margin-top: 0.5em;
  margin-left: auto;
  margin-right: auto;
  font-weight: bolder;
}
section.home .box-mappa-wrapper .box-mappa .col-dx {
  width: 35%;
  display: flex;
  align-content: space-around;
  flex-direction: column;
  justify-content: space-between;
}
section.home .box-mappa-wrapper .box-mappa .col-dx .title {
  color: rgba(0, 0, 0, 0.57);
}
section.home .box-mappa-wrapper .box-mappa .col-dx .description {
  margin-top: 1em;
  margin-bottom: 1em;
  color: rgba(0, 0, 0, 0.57);
  line-height: 1.4em;
}
section.home .box-mappa-wrapper .box-mappa .col-dx .call-to-action {
  display: block;
  font-size: 1.2em;
  color: #529721;
  text-decoration: none;
  background-color: Transparent;
  background-repeat: no-repeat;
  border-top: 1px solid #529721;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  padding-top: 0.5em;
  margin-top: 0.5em;
  margin-left: auto;
  margin-right: auto;
  font-weight: bolder;
}
section.home .box-clienti .header {
  border-top: 2px solid rgb(82, 151, 33);
  border-bottom: 2px solid rgb(82, 151, 33);
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
}
section.home .box-clienti .header .title {
  color: rgb(82, 151, 33);
  text-align: center;
  padding: 1em;
  font-weight: bold;
}
section.home .box-clienti .body {
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
  height: 10em;
}
section.home .box-clienti .body .logo-swiper-container {
  overflow: hidden;
}
section.home .box-title .header {
  border-top: 2px solid rgb(82, 151, 33);
  border-bottom: 2px solid rgb(82, 151, 33);
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
}
section.home .box-title .header .title {
  color: rgb(82, 151, 33);
  text-align: center;
  padding: 1em;
}
section.home .home-slide {
  text-align: center;
}
section.home .home-slide .sub-title {
  display: block;
  font-family: "Konnect-Bold";
  font-size: 2.4em;
  color: #000;
  text-align: center;
  max-width: 800px;
  min-width: 400px;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
section.home .home-slide .description {
  display: block;
  font-family: "Konnect-Regular";
  font-size: 1.2em;
  color: #000;
  text-align: center;
  max-width: 800px;
  min-width: 400px;
  margin-bottom: 1em;
  line-height: 1.3em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
section.home .home-slide .btn-call-to-action {
  display: block;
  font-size: 1.2em;
  color: #000;
  background-color: Transparent;
  background-repeat: no-repeat;
  border: 1px solid #000;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  border-radius: 25px;
  padding: 7px 20px 7px 20px;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
}
section.home .home-product {
  display: block;
  text-align: center;
  margin-top: 5em;
  padding-top: 2em;
  padding-bottom: 20em;
  background-color: #529721;
}
section.home .home-product .title {
  padding-top: 1em;
  display: block;
  text-transform: uppercase;
  font-family: "Konnect-Bold";
  font-size: 3.5em;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.1em;
}
section.home .home-product .description {
  font-family: "Konnect-Light";
  font-size: 1.2em;
  line-height: 1.3em;
  color: #fff;
  max-width: 800px;
  min-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 0.7em;
}
section.home .home-slider-product {
  text-align: center;
  margin-bottom: 3em;
}
section.home .home-slider-product .title {
  display: block;
  font-family: "Konnect-Bold";
  font-size: 2.4em;
  color: #000;
  text-align: center;
  max-width: 800px;
  min-width: 400px;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
section.home .home-slider-product .description {
  display: block;
  font-family: "Konnect-Regular";
  font-size: 1.2em;
  color: #000;
  text-align: center;
  max-width: 800px;
  min-width: 400px;
  margin-bottom: 1em;
  line-height: 1.3em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
section.home .home-slider-product .btn-call-to-action {
  display: block;
  font-size: 1.2em;
  color: #000;
  background-color: Transparent;
  background-repeat: no-repeat;
  border: 1px solid #000;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  border-radius: 25px;
  padding: 7px 20px 7px 20px;
  margin-top: 2em;
  margin-bottom: 2em;
  margin-left: auto;
  margin-right: auto;
}
section.home .area-experience {
  display: block;
  text-align: center;
  background-color: #529721;
  padding-top: 1em;
  padding-bottom: 5em;
  color: #fff;
}
section.home .area-experience .sub-title {
  display: block;
  font-family: "Konnect-Bold";
  font-size: 2.4em;
  color: #fff;
  text-align: center;
  max-width: 800px;
  min-width: 400px;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
section.home .area-experience .description {
  display: block;
  font-family: "Konnect-Regular";
  font-size: 1.2em;
  color: #fff;
  text-align: center;
  max-width: 800px;
  min-width: 400px;
  margin-bottom: 1em;
  line-height: 1.3em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
section.home .area-experience .btn-call-to-action {
  display: block;
  font-size: 1.2em;
  color: #000;
  background-color: Transparent;
  background-repeat: no-repeat;
  border: 1px solid #000;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  border-radius: 25px;
  padding: 7px 20px 7px 20px;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
}
section.home .partner-references {
  display: block;
  width: 100%;
  padding-top: 6em;
  padding-bottom: 6em;
}
section.home .partner-references .logo-swiper-container {
  overflow: hidden;
}
section.home .partner-references .logo-swiper-container:nth-child(2) {
  padding-top: 2em;
}
section.home .partner-references ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
section.home .partner-references ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin-top: 1.4em;
}
section.home .partner-references ul li img {
  max-width: 200px;
}
section.home .partner-references ul li figure {
  filter: grayscale(100%);
}

footer .centered-footer {
  max-width: 100%;
  padding-left: 1em;
  padding-right: 1em;
  background-color: #529721;
  min-height: 10em;
}
footer .centered-footer .logo {
  margin: 0 auto;
  max-width: 20em;
}
footer .centered-footer .logo img {
  max-width: 100%;
}
footer .centered-footer .pagine {
  display: flex;
  flex-flow: row;
  max-width: 60%;
  margin: 0 auto;
  justify-content: space-BETWEEN;
}
footer .centered-footer .pagine .page-el {
  max-width: 33%;
  margin-top: 1em;
}
footer .centered-footer .pagine .page-el a {
  text-decoration: none;
  color: white;
}
footer .centered-footer .footer-finale {
  padding-top: 3em;
  padding-bottom: 1em;
  color: white;
  margin: 0 auto;
  font-size: 0.8em;
  width: 100%;
  text-align: center;
}

section.home-prodotti {
  background-color: #22284F;
}
section.home-prodotti .title {
  display: inline-block;
  text-transform: uppercase;
  font-family: "Konnect-Bold";
  font-size: 3.5em;
  color: #fff;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
section.home-prodotti .sub-title {
  display: block;
  font-family: "Konnect-Regular";
  font-size: 1.2em;
  color: #fff;
  text-align: center;
  line-height: 1.3em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3em;
  width: 80%;
}
section.home-prodotti .home-prodotto-categoria {
  padding-bottom: 4em;
}
section.home-prodotti .home-prodotto-categoria .grid-prodotto {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-content: space-between;
  align-items: flex-start;
  width: 80vw;
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1694px) {
  section.home-prodotti .home-prodotto-categoria .grid-prodotto {
    justify-content: space-evenly;
  }
}
section.home-prodotti .home-prodotto-categoria .box-prodotto {
  -moz-box-shadow: 3px 3px 16px 9px rgba(0, 0, 0, 0.3490196078);
  -webkit-box-shadow: 33px 3px 16px 9px rgba(0, 0, 0, 0.3490196078);
  box-shadow: 3px 3px 16px 9px rgba(0, 0, 0, 0.3490196078);
  -moz-border-radius: 11px 11px 11px 11px;
  -webkit-border-radius: 11px 11px 11px 11px;
  border-radius: 11px 11px 11px 11px;
  border: 0px solid #000000;
  background-color: #fff;
  width: 30%;
  max-width: 40em;
  padding-bottom: 0.8em;
}
@media (max-width: 1023px) {
  section.home-prodotti .home-prodotto-categoria .box-prodotto {
    width: 100%;
    max-width: 98vw;
  }
}
@media (max-width: 1694px) {
  section.home-prodotti .home-prodotto-categoria .box-prodotto {
    margin-bottom: 2em;
  }
}
section.home-prodotti .home-prodotto-categoria .box-prodotto .title {
  display: block;
  font-family: "Konnect-Bold";
  font-size: 1.8em;
  color: #22284f;
  text-align: center;
  max-width: 100%;
  line-height: 1.3em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  padding-bottom: 0.3em;
  border-bottom: #707070 1px solid;
  margin-top: 2px;
  padding-top: 0.3em;
}
section.home-prodotti .home-prodotto-categoria .box-prodotto .sub-title {
  display: block;
  font-family: "Konnect-Regular";
  font-size: 1em;
  color: #707070;
  text-align: center;
  max-width: 100%;
  line-height: 1.3em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5em;
  padding-right: 2.5em;
  margin-bottom: 1px;
  padding-bottom: 0;
  width: 80%;
}
@media (max-width: 1440px) {
  section.home-prodotti .home-prodotto-categoria .box-prodotto .sub-title {
    min-height: 4em;
  }
}
section.home-prodotti .home-prodotto-categoria .box-prodotto .picture {
  padding-top: 0;
  padding-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}
section.home-prodotti .home-prodotto-categoria .box-prodotto .picture img {
  width: 100%;
}
section.home-prodotti .home-prodotto-categoria .box-prodotto .btn-call-to-action {
  display: block;
  font-size: 1.4em;
  color: #000;
  text-transform: uppercase;
  background-color: Transparent;
  background-repeat: no-repeat;
  border: 1px solid #000;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  border-radius: 25px;
  padding: 15px 20px 15px 20px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
section.home-prodotti .home-prodotto-categoria .accordion-prodotto {
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: justify;
  padding: 1em;
  color: #707070;
  width: 75%;
  font-size: 1.5em;
}
@media (max-width: 1440px) {
  section.home-prodotti .home-prodotto-categoria .accordion-prodotto {
    font-size: 1.1em;
  }
}
section.home-prodotti .home-prodotto-categoria .accordion-prodotto .testo-dettaglio {
  text-align: left;
  font-family: "Konnect-Light";
  color: #000;
  font-size: 0.8em;
  padding: 1em 2em 1em 1em;
}
section.home-prodotti .home-prodotto-categoria .accordion-prodotto summary {
  text-align: left;
}
section.home-prodotti .home-prodotto-categoria .btn-call-to-action {
  display: block;
  font-size: 1.4em;
  color: #000;
  background-color: Transparent;
  background-repeat: no-repeat;
  border: 1px solid #000;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  border-radius: 25px;
  padding: 15px 20px 15px 20px;
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
  width: 30%;
}
section.home-prodotti .home-prodotto-categoria .show-more-element {
  margin-top: 1em;
  font-size: 1.7em;
}

section.home-prodotti-centralini {
  background-color: #22284F;
}
section.home-prodotti-centralini .title {
  color: #fff;
}
section.home-prodotti-centralini .sub-title {
  color: #fff;
}
@media (max-width: 1694px) {
  section.home-prodotti-centralini .home-prodotto-categoria .grid-prodotto {
    justify-content: space-evenly;
  }
}
section.home-prodotti-centralini .home-prodotto-categoria .grid-prodotto .box-prodotto {
  background-color: #fff;
  min-height: 40.9em;
}
@media (max-width: 1440px) {
  section.home-prodotti-centralini .home-prodotto-categoria .grid-prodotto .box-prodotto {
    min-height: 35.2em;
  }
}
@media (max-width: 1694px) {
  section.home-prodotti-centralini .home-prodotto-categoria .grid-prodotto .box-prodotto {
    margin-bottom: 2em;
  }
}
section.home-prodotti-centralini .home-prodotto-categoria .grid-prodotto .box-prodotto .title {
  color: #22284f;
}
section.home-prodotti-centralini .home-prodotto-categoria .grid-prodotto .box-prodotto .sub-title {
  color: #707070;
}
section.home-prodotti-centralini .home-prodotto-categoria .grid-prodotto .box-prodotto .picture {
  max-width: 100%;
}
section.home-prodotti-centralini .home-prodotto-categoria .grid-prodotto .box-prodotto .btn-call-to-action {
  color: #22284F;
  border: 1px solid #22284F;
}
section.home-prodotti-centralini .home-prodotto-categoria .btn-call-to-action {
  color: #529721;
  border: 1px solid #529721;
}

section.home-prodotti-syneto {
  background-color: #A51762;
}
section.home-prodotti-syneto .title {
  color: #fff;
}
section.home-prodotti-syneto .sub-title {
  color: #fff;
}
section.home-prodotti-syneto .home-prodotto-categoria {
  padding-bottom: 3em;
}
@media (max-width: 1694px) {
  section.home-prodotti-syneto .home-prodotto-categoria .grid-prodotto {
    justify-content: space-evenly;
  }
}
section.home-prodotti-syneto .home-prodotto-categoria .grid-prodotto .box-prodotto {
  background-color: #fff;
}
@media (max-width: 1694px) {
  section.home-prodotti-syneto .home-prodotto-categoria .grid-prodotto .box-prodotto {
    margin-bottom: 2em;
  }
}
section.home-prodotti-syneto .home-prodotto-categoria .grid-prodotto .box-prodotto .title {
  color: #A51762;
}
section.home-prodotti-syneto .home-prodotto-categoria .grid-prodotto .box-prodotto .sub-title {
  color: #707070;
}
section.home-prodotti-syneto .home-prodotto-categoria .grid-prodotto .box-prodotto .picture {
  max-width: 100%;
}
section.home-prodotti-syneto .home-prodotto-categoria .grid-prodotto .box-prodotto .btn-call-to-action {
  color: #A51762;
  border: 1px solid #A51762;
}
section.home-prodotti-syneto .home-prodotto-categoria .btn-call-to-action {
  color: #529721;
  border: 1px solid #529721;
}

section.MenuNavAssistenza {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
}
section.MenuNavAssistenza .area-menu-navigazione {
  clear: both;
  font-family: "Konnect-Light";
  padding-top: 3%;
  width: 80%;
  text-align: center;
}
section.MenuNavAssistenza .area-menu-navigazione h1 {
  display: inline-block;
  padding-top: 1em;
  color: #529721;
  font: normal normal normal 27px/35px Konnect;
  font-size: 1.6em;
}
section.MenuNavAssistenza .area-menu-navigazione #lnk-windows, section.MenuNavAssistenza .area-menu-navigazione #lnk-mac, section.MenuNavAssistenza .area-menu-navigazione #lnk-altro {
  display: inline;
}
section.MenuNavAssistenza .area-menu-navigazione > nav {
  width: 48em;
  margin: 4em 0 0 5em;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li:before {
  z-index: 5;
  content: "";
  display: block;
  width: 4em;
  height: 4em;
  -moz-border-radius: 2em;
  -webkit-border-radius: 2em;
  border-radius: 2em;
  border: 1px solid #BEBEBE;
  float: left;
  background-color: white;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li.connected:after {
  content: "";
  display: block;
  width: 1px;
  height: 5em;
  border-left: 1px solid #BEBEBE;
  position: absolute;
  z-index: -1;
  margin-top: -1em;
  margin-left: 2.1em;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist {
  /**/
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist > h1 {
  display: block;
  text-align: left;
  padding-top: 0.3em;
  padding-left: 2.2em;
  color: black;
  font-family: Konnect-light;
  font-size: 2.2em;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist > nav {
  padding-left: 5.1em;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist.h-tel > h1 {
  padding-left: 2.2em;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist.h-tel > nav {
  padding-left: 5.1em;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist.h-assist > h1 {
  padding-right: 2.2em;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist.h-assist > nav {
  padding-right: 6em;
  padding-left: 0;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist.h-assist a {
  display: block;
  font-size: 1.2em;
  color: #000;
  background-color: Transparent;
  background-repeat: no-repeat;
  border: 1px solid #000;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  border-radius: 25px;
  padding: 0.3em 3em 0.3em 3em;
  margin-top: 1em;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist.h-clients > h1 {
  padding-right: 1.5em;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist.h-clients > nav {
  padding-left: 5.1em;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist.h-clients a {
  display: block;
  font-size: 1.2em;
  color: #000;
  background-color: Transparent;
  background-repeat: no-repeat;
  border: 1px solid #000;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  border-radius: 25px;
  padding: 0 3em 0 3em;
  margin-top: 0.5em;
  max-width: 7em;
}
section.MenuNavAssistenza .area-menu-navigazione > nav > ul > li > .chiusura-menu-assist.h-clients .btn-apri-tk-assist {
  max-width: 13em;
}
section.MenuNavAssistenza .area-menu-navigazione ul {
  padding: 0;
  list-style: none;
}
section.MenuNavAssistenza .area-menu-navigazione ul li {
  padding: 0;
  line-height: 3.5em;
  padding-top: 2em;
}
section.MenuNavAssistenza .area-menu-navigazione ul li a {
  padding: 0;
  font-family: Konnect-light;
  font-size: 1em;
  line-height: 2em;
  color: #353535;
  text-align: left;
}
section.MenuNavAssistenza .area-menu-navigazione ul li ul li {
  padding-top: 0em;
}
section.MenuNavAssistenza .animazione-dx {
  padding-top: 13em;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}

section.MenuNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
}
section.MenuNav .orbita-sx {
  padding-top: 6em;
  width: 20%;
}
section.MenuNav .orbita-sx > svg {
  transform: scale(1.9, 1.8) translateX(-7.9em);
  margin-top: 7.2em;
}
section.MenuNav .orbita-dx {
  padding-top: 6em;
  width: 13em;
  position: absolute;
  right: 0;
}
section.MenuNav .orbita-dx > svg {
  transform: scale(1.9, 1.8);
  margin-top: 7.2em;
}
section.MenuNav .area-menu-navigazione {
  clear: both;
  font-family: "Konnect-Light";
  padding-top: 3%;
  width: 60%;
  text-align: center;
}
section.MenuNav .area-menu-navigazione h1 {
  padding-top: 1em;
  color: #529721;
  font: normal normal normal 27px/35px "Konnect-Bold";
  font-size: 1.6em;
}
section.MenuNav .area-menu-navigazione ul {
  padding: 0;
  list-style: none;
}
section.MenuNav .area-menu-navigazione ul li {
  padding: 0;
  line-height: 0.5em;
}
section.MenuNav .area-menu-navigazione ul li a {
  padding: 0;
  font-family: Konnect-light;
  font-size: 1em;
  line-height: 2em;
  color: #353535;
  /* 2021-09-20 - fix bug links larghi tutto lo schermo */
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
section.MenuNav .btn-assistenza {
  color: #529721;
  text-transform: uppercase;
  /* testo maiuscolo*/
  background-color: Transparent;
  background-repeat: no-repeat;
  border: 1px solid #529721;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  border-radius: 25px;
  padding: 7px 25px 7px 25px;
}
section.MenuNav .menu-social {
  display: block;
  width: 100%;
  padding-top: 0.5em;
}
section.MenuNav .menu-social ul#menu-social li {
  padding-left: 0.5em;
  padding-right: 0.5em;
  display: inline-block;
}

.swiper-pagination {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.swiper-pagination-bullet {
  padding: 0.2em;
  height: 1.5em;
  width: 1.5em;
  line-height: 1.5em;
  border: solid 1px #ACA3A3;
  background-color: transparent;
  margin: 0 0.5em 0 0.5em;
}

.swiper-pagination-bullet {
  opacity: 1;
}

.swiper-pagination-bullet:before {
  display: inline;
  content: "";
  text-align: center;
  position: absolute;
  margin-top: 0.7em;
  margin-left: 1.6em;
  width: 1em;
  height: 1px;
  background: #ACA3A3;
  z-index: -1;
  width: 0.6em;
}

.swiper-pagination-bullet:first-child::before {
  margin-left: 1.5em;
}

.swiper-pagination-bullet:last-child::before {
  display: none;
}

.overlay {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  height: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #529721;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }

  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
/* CSS ORBITE */
#circle-orbit-container {
  position: relative;
  width: 45em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  margin-top: -24em;
}

/* ---------- Repeating styles for the inner orbiting circles ---------- */
/* ---------- PRIMO SERVIZIO ---------- */
/* Orbita */
#orbit-1 {
  position: absolute;
  top: 75px;
  left: 75px;
  width: 150px;
  height: 150px;
  border: 1px solid #529721;
  border-radius: 100%;
  -webkit-animation: spin-right 15s linear infinite;
  animation: spin-right 15s linear infinite;
}

#half-orbit-1 {
  position: absolute;
  top: 75px;
  left: 75px;
  width: 150px;
  height: 150px;
  border: 1px solid #fff;
  opacity: 0.5;
  border-radius: 50%;
  /* Halve the circle */
  border-bottom-color: transparent;
  border-block-end-color: transparent;
  /* Rotate the circle */
}

/* ---------- Repeating styles for the inner orbiting circles ---------- */
/* Sfera */
.orbit-cirlces-1 {
  position: absolute;
  top: 62px;
  left: -6px;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: #9F98E6;
}

/* ---------- Animation ---------- */
@-webkit-keyframes spin-right {
  0% {
    z-index: -1;
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.logo-swiper-container img {
  width: 100%;
}

section.category-product {
  display: block;
  text-align: center;
}
section.category-product .catprod-head {
  background-color: #529721;
  height: 40em;
  padding-top: 1em;
  /* NAVIGAZIONE */
}
section.category-product .catprod-head .catprod-head-box {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
section.category-product .catprod-head .catprod-head-box .title {
  display: inline-block;
  color: white;
  font-size: 5em;
  font-family: "Konnect-Bold";
  line-height: 1.2em;
  padding-top: 0em;
  vertical-align: top;
  margin-top: 10em;
  margin-left: 1em;
  max-width: 8em;
}
section.category-product .catprod-head .catprod-head-box .picture {
  padding-left: 10em;
  display: inline-block;
  padding-left: 5em;
  padding-top: 10em;
}
section.category-product .catprod-head .catprod-head-box .picture img {
  max-width: 45em;
}
section.category-product .catprod-head .catprod-nav {
  clear: both;
  position: fixed;
  top: 35em;
  z-index: 2;
}
section.category-product .catprod-head .catprod-nav .number, section.category-product .catprod-head .catprod-nav .chevron {
  float: left;
}
section.category-product .catprod-head .catprod-nav .number {
  color: white;
  font-family: "Konnect-Regular";
  border: 2px solid white;
  border-radius: 35px;
  padding: 0.3em;
  background-color: var(--page-dominant-color, #529721);
  font-size: 1.5em;
  text-align: center;
  width: 1.3em;
  height: 1.3em;
  margin-top: -0.2em;
  line-height: normal;
}
section.category-product .catprod-head .catprod-nav a {
  color: transparent;
}
section.category-product .catprod-head .catprod-nav .chevron {
  font-size: 1.2em;
  color: var(--page-dominant-color, #529721);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
  width: 16px;
  height: 16px;
  margin-top: 0.65em;
}
section.category-product .catprod-head .catprod-nav-prev {
  left: 0.7em;
}
section.category-product .catprod-head .catprod-nav-prev .chevron {
  margin-right: 5px;
  /* border: 1px solid white; */
}
section.category-product .catprod-head .catprod-nav-prev .chevron span {
  transform: rotate(180deg);
  display: inline-block;
}
section.category-product .catprod-head .catprod-nav-next {
  right: 0.7em;
}
section.category-product .catprod-head .catprod-nav-next .chevron {
  margin-left: 5px;
}
section.category-product .catprod-description {
  padding-top: 12em;
}
section.category-product .catprod-description .catprod-description-centering-box {
  display: inline-block;
  margin-left: -11em;
}
section.category-product .catprod-description .catprod-description-centering-box .catprod-description-image-box {
  max-width: 20em;
  display: block;
  float: left;
}
section.category-product .catprod-description .catprod-description-centering-box .catprod-description-image-box .picture {
  max-width: 6em;
  width: 6em;
  margin-right: 4em;
}
section.category-product .catprod-description .catprod-description-centering-box .catprod-description-box {
  max-width: 55em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  float: left;
}
section.category-product .catprod-description .catprod-description-centering-box .catprod-description-box .picture {
  vertical-align: top;
  max-width: 8em;
  max-height: 10em;
  height: 10em;
  display: inline-block;
  min-width: 8em;
  /*padding-left:11em;*/
  padding-right: 1em;
  margin-left: -8em;
}
section.category-product .catprod-description .catprod-description-centering-box .catprod-description-box .description-box {
  display: inline-block;
  text-align: left;
  max-width: 54em;
  padding-bottom: 8em;
}
section.category-product .catprod-description .catprod-description-centering-box .catprod-description-box .description-box .title {
  font-family: "Konnect-Bold";
  display: inline-block;
  color: #004040;
  font-size: 4em;
}
section.category-product .catprod-description .catprod-description-centering-box .catprod-description-box .description-box .paragraph-title {
  text-align: left;
  padding-top: 2em;
  font-family: "Konnect-Bold";
  font-size: 1.4em;
}
section.category-product .catprod-description .catprod-description-centering-box .catprod-description-box .description-box .paragraph-description {
  padding-top: 1em;
  font-size: 1em;
  color: #353535;
  opacity: 80%;
  text-align: justify;
  line-height: 1.3em;
}
section.category-product .prod-call-to-action {
  background-color: #529721;
  padding-bottom: 2em;
  clear: both;
}
section.category-product .prod-call-to-action .prod-call-to-action-box {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 55em;
}
section.category-product .prod-call-to-action .prod-call-to-action-box .title {
  text-align: left;
  padding-top: 1em;
  font-family: "Konnect-Bold";
  color: #fff;
  font-size: 4em;
}
section.category-product .prod-call-to-action .prod-call-to-action-box .description {
  text-align: left;
  padding-top: 1em;
  font-family: "Konnect-Regular";
  color: #fff;
  font-size: 1.5em;
  line-height: 1.4em;
  padding-bottom: 2em;
}
section.category-product .prod-call-to-action .prod-call-to-action-box .call-to-action {
  display: block;
  max-width: 16em;
  font-size: 1em;
  background-color: white;
  background-repeat: no-repeat;
  border: 1px solid #529721;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  border-radius: 25px;
  padding: 0.7em 1.2em 0.7em 1.2em;
  margin-top: 0em;
  margin-bottom: 1em;
  margin-right: auto;
  color: #529721;
}
section.category-product .prod-call-to-action .prod-call-to-action-box .call-to-action a {
  padding-top: 1em;
  padding-bottom: 1em;
  text-decoration: none;
  color: #529721;
}
section.category-product .prod-wrapper-punti-chiave {
  clear: both;
  max-width: 73em;
  margin: 0 auto;
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}
section.category-product .prod-wrapper-punti-chiave .prod-punti-chiave {
  clear: both;
  display: flex;
}
section.category-product .prod-wrapper-punti-chiave .prod-punti-chiave .picture {
  display: block;
  width: 4em;
  max-width: 4em;
}
section.category-product .prod-wrapper-punti-chiave .prod-punti-chiave .prod-text-box {
  margin-left: 5em;
  padding-top: 0.5em;
}
section.category-product .prod-wrapper-punti-chiave .prod-punti-chiave .prod-text-box .title {
  text-align: left;
  font-family: "Konnect-Bold";
  display: block;
  color: #004040;
  font-size: 3.2em;
}
section.category-product .prod-wrapper-punti-chiave .prod-punti-chiave .prod-text-box .list-box {
  text-align: left;
  margin: 0 auto;
  padding-top: 1em;
  width: 100%;
  max-width: 55em;
}
section.category-product .prod-wrapper-punti-chiave .prod-punti-chiave .prod-text-box .list-box ul {
  text-align: left;
  display: block;
  list-style-type: "- ";
}
section.category-product .prod-wrapper-punti-chiave .prod-punti-chiave .prod-text-box .list-box ul li {
  padding: 0em 0em 1.2em 0em;
}
section.category-product .prod-wrapper-punti-chiave .prod-punti-chiave .prod-text-box .list-box ul li .evidenziatura {
  color: var(--page-dominant-color);
}
section.category-product .call-to-action-itmanager {
  clear: both;
  background-color: #529721;
  padding-bottom: 4em;
  margin-top: 18em;
  text-align: left;
  margin: 0 auto;
}
section.category-product .call-to-action-itmanager .call-to-action-container {
  width: 55em;
  margin: 0 auto 3em auto;
}
section.category-product .call-to-action-itmanager .call-to-action-container .title {
  text-align: left;
  padding-top: 1em;
  font-family: "Konnect-Bold";
  color: #fff;
  font-size: 4em;
  max-width: 80em;
}
section.category-product .call-to-action-itmanager .call-to-action-container .description {
  text-align: left;
  padding-top: 1em;
  font-family: "Konnect-Regular";
  color: #fff;
  font-size: 1.5em;
  line-height: 1.4em;
  padding-bottom: 2em;
}
section.category-product .call-to-action-itmanager .call-to-action-container a {
  text-decoration: none;
  color: #529721;
  background: white;
  padding: 0.5em 6em;
  border-radius: 4em;
}

section.contact-us {
  padding: 5em 0;
}
section.contact-us .wrapper {
  width: 55em;
  margin: 0 auto;
  font-family: "Konnect-Regular";
}
section.contact-us .wrapper h1 {
  font: bold 3.6em/90px "Konnect-Regular";
  letter-spacing: 0;
}
section.contact-us .wrapper label {
  line-height: 58px;
  font-weight: bold;
  letter-spacing: 0;
}
section.contact-us .wrapper div.input-field {
  width: 43.2em;
}
@media (max-width: 1440px) {
  section.contact-us .wrapper div.input-field.priv-field {
    margin: 1.8em 0;
    display: flex;
  }
  section.contact-us .wrapper div.input-field.priv-field label {
    line-height: 1.3em;
    margin-left: 0.5em;
  }
}
section.contact-us .wrapper input, section.contact-us .wrapper textarea {
  padding: 1em 1.1em;
  border: 1px solid #222;
  border-radius: 0.8em;
  width: 100%;
}
section.contact-us .wrapper input[type=checkbox], section.contact-us .wrapper textarea[type=checkbox] {
  width: auto;
}
section.contact-us .wrapper input:focus, section.contact-us .wrapper input:focus-visible, section.contact-us .wrapper textarea:focus, section.contact-us .wrapper textarea:focus-visible {
  outline: none;
  border-color: #000;
}
section.contact-us .wrapper form button[type=submit] {
  line-height: 40px;
  display: block;
  margin-top: 15px;
  background-color: #529721;
  color: white;
  font-weight: bold;
  padding: 0 6em;
  border-radius: 17px;
  font-size: 1em;
}
section.contact-us .wrap-answer {
  display: flex;
  align-items: center;
  height: 25em;
}
section.contact-us .wrap-answer .answer {
  font-family: "Konnect-Regular";
  width: 100%;
  max-width: 45em;
}
section.contact-us .wrap-answer .answer.success {
  background: rgba(85, 250, 0, 0.3);
}
section.contact-us .wrap-answer .answer.error {
  background: rgba(255, 0, 45, 0.3);
}
section.contact-us .wrap-answer .answer p {
  line-height: 4;
  width: fit-content;
  margin: 0 auto;
}

.btn-call-to-action a {
  text-decoration: none;
  color: #000;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  /* Tooltip text */
  /* Show the tooltip text when you mouse over the tooltip container */
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  top: -31px;
  /* margin-right: 50%; */
  left: 50%;
  margin-left: -60px;
}
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 101;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  /* Modal Content/Box */
  /* The Close Button */
}
.modal.open {
  display: block;
}
.modal.open .modal-content {
  animation: 0.5s dropdown-modal linear;
}
.modal.open .modal-content .modal-body {
  opacity: 1;
}
.modal.closing {
  display: block;
  transform: translateY(-50%);
  opacity: 0.8;
}
.modal .modal-content {
  background-color: #fefefe;
  margin: 0 auto 0 auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
}
@media (min-width: 1445px) {
  .modal .modal-content {
    margin-bottom: 15%;
  }
}
.modal .modal-content .modal-body {
  opacity: 0.3;
  transition: opacity 0.5s ease-out;
}
.modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.modal .close:hover, .modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@keyframes dropdown-modal {
  0% {
    margin-top: -90%;
  }
  25% {
    margin-top: -70%;
  }
  50% {
    margin-top: -40%;
  }
  75% {
    margin-top: -10%;
  }
  100% {
    margin-top: 0%;
  }
}
.the-arrow {
  width: 200px;
  transition: all 0.2s;
}
.the-arrow.-left {
  position: absolute;
  top: 60%;
  left: 0;
}
.the-arrow.-left > .shaft {
  width: 0;
  background-color: #529721;
}
.the-arrow.-left > .shaft:before, .the-arrow.-left > .shaft:after {
  width: 0;
  background-color: #529721;
}
.the-arrow.-left > .shaft:before {
  transform: rotate(0);
}
.the-arrow.-left > .shaft:after {
  transform: rotate(0);
}
.the-arrow.-right {
  top: 3px;
}
.the-arrow.-right > .shaft {
  width: 200px;
  transition-delay: 0.2s;
}
.the-arrow.-right > .shaft:before, .the-arrow.-right > .shaft:after {
  width: 8px;
  transition-delay: 0.3s;
  transition: all 0.5s;
}
.the-arrow.-right > .shaft:before {
  transform: rotate(40deg);
}
.the-arrow.-right > .shaft:after {
  transform: rotate(-40deg);
}
.the-arrow > .shaft {
  background-color: #529721;
  display: block;
  height: 1px;
  position: relative;
  transition: all 0.2s;
  transition-delay: 0;
  will-change: transform;
}
.the-arrow > .shaft:before, .the-arrow > .shaft:after {
  background-color: #529721;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.2s;
  transition-delay: 0;
}
.the-arrow > .shaft:before {
  transform-origin: top right;
}
.the-arrow > .shaft:after {
  transform-origin: bottom right;
}

.animated-arrow {
  display: inline-block;
  color: #529721;
  font-size: 1.25em;
  font-style: italic;
  text-decoration: none;
  position: relative;
  transition: all 0.2s;
}
.animated-arrow:hover {
  color: #529721;
}
.animated-arrow:hover > .the-arrow.-left > .shaft {
  width: 200px;
  transition-delay: 0.1s;
  background-color: #529721;
}
.animated-arrow:hover > .the-arrow.-left > .shaft:before, .animated-arrow:hover > .the-arrow.-left > .shaft:after {
  width: 8px;
  transition-delay: 0.1s;
  background-color: #529721;
}
.animated-arrow:hover > .the-arrow.-left > .shaft:before {
  transform: rotate(40deg);
}
.animated-arrow:hover > .the-arrow.-left > .shaft:after {
  transform: rotate(-40deg);
}
.animated-arrow:hover > .main {
  transform: translateX(216px);
}
.animated-arrow:hover > .main > .the-arrow.-right > .shaft {
  width: 0;
  transform: translateX(200%);
  transition-delay: 0;
}
.animated-arrow:hover > .main > .the-arrow.-right > .shaft:before, .animated-arrow:hover > .main > .the-arrow.-right > .shaft:after {
  width: 0;
  transition-delay: 0;
  transition: all 0.1s;
}
.animated-arrow:hover > .main > .the-arrow.-right > .shaft:before {
  transform: rotate(0);
}
.animated-arrow:hover > .main > .the-arrow.-right > .shaft:after {
  transform: rotate(0);
}
.animated-arrow > .main {
  display: flex;
  align-items: center;
  transition: all 0.2s;
}
.animated-arrow > .main > .text {
  margin: 0 16px 0 0;
  line-height: 1;
}
.animated-arrow > .main > .the-arrow {
  position: relative;
}

@media (min-width: 480px) {
  section.about {
    padding: 0em 6em;
  }
}
section.about .head-slider {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 0;
  background-size: cover;
}
@media (max-width: 480px) {
  section.about .head-slider {
    margin-top: 5em;
  }
}
section.about .head-slider .picture img {
  height: auto;
  width: 100%;
}
section.about .box-paragrafo-image-sx {
  padding: 1em 0px;
  display: flex;
  flex-flow: row;
  flex-basis: 50%;
  margin-top: 4.5em;
}
@media (max-width: 480px) {
  section.about .box-paragrafo-image-sx {
    flex-flow: column;
  }
}
section.about .box-paragrafo-image-sx .col-sx {
  width: 50%;
  padding-right: 3em;
}
@media (max-width: 480px) {
  section.about .box-paragrafo-image-sx .col-sx {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
}
section.about .box-paragrafo-image-sx .col-sx .picture {
  margin: 0em 2em 0em 2em;
}
section.about .box-paragrafo-image-sx .col-sx .picture img {
  height: auto;
  width: 100%;
}
section.about .box-paragrafo-image-sx .col-dx {
  width: 50%;
  padding: 2em;
}
@media (max-width: 480px) {
  section.about .box-paragrafo-image-sx .col-dx {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    padding-top: 1em;
  }
}
section.about .box-paragrafo-image-sx .col-dx .title {
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.57);
  color: #529721;
  font-weight: bolder;
}
section.about .box-paragrafo-image-sx .col-dx .description {
  margin-top: 1em;
  margin-bottom: 2em;
  color: rgba(0, 0, 0, 0.57);
  line-height: 1.4em;
}
section.about .box-paragrafo-image-sx .col-dx .call-to-action {
  display: block;
  font-size: 0.9em;
  color: #529721;
  text-decoration: none;
  background-color: Transparent;
  background-repeat: no-repeat;
  border-top: 1px solid #529721;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  padding-top: 0.5em;
  margin-top: 0.5em;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  font-weight: bolder;
}
section.about .box-paragrafo-image-dx {
  padding: 1em 0px;
  display: flex;
  flex-direction: colum;
  flex-basis: 50%;
  margin-top: 4.5em;
}
@media (max-width: 480px) {
  section.about .box-paragrafo-image-dx {
    flex-flow: column;
  }
}
section.about .box-paragrafo-image-dx .col-sx {
  order: 2;
  width: 50%;
}
@media (max-width: 480px) {
  section.about .box-paragrafo-image-dx .col-sx {
    width: 90%;
    margin: 0 auto;
    order: 1;
  }
}
section.about .box-paragrafo-image-dx .col-sx .picture {
  margin: 0em 2em 0em 1.5em;
}
section.about .box-paragrafo-image-dx .col-sx .picture img {
  height: auto;
  width: 100%;
}
section.about .box-paragrafo-image-dx .col-dx {
  order: 1;
  width: 50%;
  padding: 3em 6em 2em 2em;
}
@media (max-width: 480px) {
  section.about .box-paragrafo-image-dx .col-dx {
    width: 80%;
    margin: 0 auto;
    order: 2;
  }
}
section.about .box-paragrafo-image-dx .col-dx .title {
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.57);
  color: #529721;
  font-weight: bolder;
}
section.about .box-paragrafo-image-dx .col-dx .description {
  margin-top: 1em;
  margin-bottom: 2em;
  color: rgba(0, 0, 0, 0.57);
  line-height: 1.4em;
}
section.about .box-paragrafo-image-dx .col-dx .call-to-action {
  display: block;
  font-size: 0.9em;
  color: #529721;
  text-decoration: none;
  background-color: Transparent;
  background-repeat: no-repeat;
  border-top: 1px solid #529721;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  padding-top: 0.5em;
  margin-top: 0.5em;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  font-weight: bolder;
}
section.about .body-contattaci {
  margin-top: 6em;
  background-color: #EEF5EA;
}
section.about .body-contattaci .head-generic-box {
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
  padding: 2em 0 2em 0;
}
section.about .body-contattaci .head-generic-box .title {
  color: #529721;
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
section.about .body-contattaci .head-generic-box .sub-title {
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  opacity: 0.57;
}
section.about .body-contattaci .box-contatti {
  padding: 1.5em 0 4.5em;
  margin: 0.5em auto 0;
  width: 80%;
}
section.about .body-contattaci .box-contatti .box-form {
  margin: 1em 1em 1em 1em;
}
section.about .box-title .header {
  border-top: 2px solid rgb(82, 151, 33);
  border-bottom: 2px solid rgb(82, 151, 33);
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
}
section.about .box-title .header .title {
  color: rgb(82, 151, 33);
  text-align: center;
  padding: 1em;
}

section.prodotto .prodotto-intro .box-prodotto {
  padding: 1em 0px;
  display: flex;
  flex-flow: row nowrap;
  flex-basis: 50%;
  margin-top: 4.5em;
}
@media all and (max-width: 1439px) {
  section.prodotto .prodotto-intro .box-prodotto {
    flex-wrap: wrap;
  }
}
section.prodotto .prodotto-intro .box-prodotto .col-sx {
  order: 1;
  width: 50%;
}
@media all and (max-width: 480px) {
  section.prodotto .prodotto-intro .box-prodotto .col-sx {
    width: 100%;
  }
}
section.prodotto .prodotto-intro .box-prodotto .col-sx .picture {
  margin: 0em 2em 0em 1.5em;
}
section.prodotto .prodotto-intro .box-prodotto .col-sx .picture img {
  height: auto;
  width: 100%;
}
section.prodotto .prodotto-intro .box-prodotto .col-dx {
  order: 2;
  width: 50%;
  padding: 3em 2em 2em 2em;
}
@media all and (max-width: 1024px) {
  section.prodotto .prodotto-intro .box-prodotto .col-dx {
    width: 100%;
  }
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .title {
  font-size: 2.2em;
  text-transform: uppercase;
  color: #000;
  font-weight: bolder;
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .sub-title {
  padding-top: 0.3em;
  font-size: 1.3em;
  color: #000;
  font-weight: bolder;
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .settori {
  display: flex;
  padding-top: 1em;
}
@media all and (max-width: 480px) {
  section.prodotto .prodotto-intro .box-prodotto .col-dx .settori {
    flex-direction: column;
  }
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .settori .settore {
  padding-right: 1em;
}
@media all and (max-width: 480px) {
  section.prodotto .prodotto-intro .box-prodotto .col-dx .settori .settore {
    justify-content: flex-start;
  }
}
@media all and (min-width: 481px) and (max-width: 1024px) {
  section.prodotto .prodotto-intro .box-prodotto .col-dx .settori .settore {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .settori .settore .cerchio {
  width: 100px;
  height: 100px;
  background: #0060A0;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .selettore {
  margin-top: 1em;
  background-color: rgba(192, 192, 192, 0.4588235294);
  display: flex;
  flex-direction: row;
  width: 50%;
  border-radius: 2em;
  justify-content: space-around;
  padding: 0.5em;
  text-align: center;
  -webkit-box-shadow: inset 7px 7px 6px -6px #716e6e;
  -moz-box-shadow: inset 7px 7px 6px -6px #716e6e;
  box-shadow: inset 7px 7px 6px -6px #716e6e;
}
@media all and (max-width: 480px) {
  section.prodotto .prodotto-intro .box-prodotto .col-dx .selettore {
    width: 100%;
  }
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .selettore a, section.prodotto .prodotto-intro .box-prodotto .col-dx .selettore a:hover, section.prodotto .prodotto-intro .box-prodotto .col-dx .selettore a:active, section.prodotto .prodotto-intro .box-prodotto .col-dx .selettore a:visited {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.57);
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .selettore .primo {
  float: left;
  padding: 1em;
  width: 100%;
  color: rgba(0, 0, 0, 0.57);
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .selettore .secondo {
  float: right;
  padding: 1em;
  width: 100%;
  color: rgba(0, 0, 0, 0.57);
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .selettore .selettore-selected {
  background-color: green;
  border-radius: 2em;
  border-color: green;
  color: white;
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .description {
  width: 60%;
  margin-top: 1em;
  margin-bottom: 2em;
  color: rgba(0, 0, 0, 0.57);
  line-height: 1.4em;
}
@media all and (max-width: 1024px) {
  section.prodotto .prodotto-intro .box-prodotto .col-dx .description {
    width: 100%;
  }
}
section.prodotto .prodotto-intro .box-prodotto .col-dx .call-to-action {
  display: block;
  font-size: 0.9em;
  text-align: center;
  text-decoration: none;
  background-color: Transparent;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  background-color: white;
  color: rgba(0, 0, 0, 0.57);
  border: 2px solid #4CB762;
  /* Green */
  border-radius: 15px;
  width: 10em;
  padding: 0.3em;
}
section.prodotto .box-prodotto-paragrafo {
  color: rgba(0, 0, 0, 0.57);
  width: 80%;
  margin: 0 auto;
}
section.prodotto .box-prodotto-paragrafo .title {
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.57);
  color: #529721;
  font-weight: bold;
  font-size: 2.5em;
  margin-top: 2em;
  margin-bottom: 2em;
}
section.prodotto .box-prodotto-paragrafo .sub-title {
  padding-top: 0.3em;
  font-size: 1.3em;
  color: #000;
  font-weight: bolder;
}
section.prodotto .box-prodotto-paragrafo .middle-subtitle {
  max-width: 40%;
  margin-top: 1em;
  margin-bottom: 2em;
  line-height: 1.4em;
}
@media all and (max-width: 1024px) {
  section.prodotto .box-prodotto-paragrafo .middle-subtitle {
    max-width: 100%;
  }
}
section.prodotto .box-prodotto-paragrafo .middle-subtitle p {
  margin-top: 1em;
  width: 100%;
}
section.prodotto .box-prodotto-paragrafo .description {
  margin-top: 1em;
  margin-bottom: 2em;
  color: rgba(0, 0, 0, 0.57);
  line-height: 1.4em;
}
section.prodotto .box-prodotto-paragrafo .description p {
  margin-top: 1em;
  width: 100%;
}
section.prodotto .box-prodotto-paragrafo .box-gallery .gallery-item {
  width: 33%;
}
section.prodotto .box-prodotto-paragrafo .box-gallery .gallery-item img {
  width: 100%;
}
section.prodotto .vertical-border-left {
  border-left: 0.2em solid #529721;
}
section.prodotto .limitato {
  max-width: 60%;
  margin-left: 1em;
}
@media all and (max-width: 480px) {
  section.prodotto .limitato {
    max-width: 90%;
    text-align: left;
  }
}
section.prodotto .box-accordion {
  color: rgba(0, 0, 0, 0.57);
  width: 100%;
  margin-bottom: 1em;
}
section.prodotto .box-accordion .title {
  width: 80%;
  margin: 0 auto;
  background-color: #EBEBEB;
  margin-bottom: 1.5em;
  padding: 1em;
  border-radius: 2em;
}
section.prodotto .box-accordion .title .plus-img {
  color: #4CB762;
  margin-right: 1.5em;
}
section.prodotto .box-accordion .detail {
  background-color: #EBEBEB;
  width: 100%;
}
section.prodotto .box-accordion .detail .drop-container-detail {
  display: flex;
  flex-flow: row wrap;
  max-width: 80%;
  margin: 0 auto;
}
section.prodotto .box-accordion .detail .drop-container-detail .video-detail {
  max-width: 40%;
  margin: 0 auto;
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
}
@media all and (max-width: 480px) {
  section.prodotto .box-accordion .detail .drop-container-detail .video-detail {
    max-width: 80%;
    padding-bottom: 1em;
  }
}
section.prodotto .box-accordion .detail .drop-container-detail .video-detail video {
  width: 100%;
}
section.prodotto .box-accordion .detail .drop-container-detail .video-detail .video-play-button-wrapper {
  z-index: 4;
  position: absolute;
  border: 1em solid var(--page-dominant-color);
  border-radius: 70px;
  width: 5em;
  text-align: center;
  height: 5em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -47%;
  margin-left: 39%;
  cursor: pointer;
}
@media all and (max-width: 480px) {
  section.prodotto .box-accordion .detail .drop-container-detail .video-detail .video-play-button-wrapper {
    margin-left: 25%;
    margin-top: -57%;
  }
}
section.prodotto .box-accordion .detail .drop-container-detail .video-detail .video-play-button-wrapper .video-play-button {
  cursor: pointer;
  color: var(--page-dominant-color);
  font-size: 3em;
  display: block;
  margin-left: 0.1em;
}
section.prodotto .box-accordion .detail .drop-container-detail .video-detail img {
  max-width: 70%;
  float: right;
}
@media all and (max-width: 480px) {
  section.prodotto .box-accordion .detail .drop-container-detail .video-detail img {
    max-width: 100%;
    float: none;
  }
}
section.prodotto .box-accordion .detail .testo-detail-video {
  padding-top: 2em;
  padding-bottom: 2em;
  max-width: 40%;
  margin: 0 auto;
}
@media all and (max-width: 480px) {
  section.prodotto .box-accordion .detail .testo-detail-video {
    max-width: 80%;
    padding-top: 1em;
  }
}
section.prodotto .box-accordion .detail .testo-detail-video .accordion-detail-list > li {
  line-height: 2em;
}
section.prodotto .box-accordion .detail .testo-detail {
  width: 80%;
  margin: 0 auto;
  padding-top: 2em;
  padding-bottom: 2em;
  line-height: 1.4em;
}
section.prodotto .box-accordion .detail .testo-detail .accordion-detail-list > li {
  line-height: 2em;
}
section.prodotto .box-modelli-prodotti {
  color: rgba(0, 0, 0, 0.57);
  width: 80%;
  margin: 0 auto;
  margin-bottom: 4em;
  overflow: hidden;
}
section.prodotto .box-modelli-prodotti .box-modelli-prodotti-wrap {
  width: 100%;
  /*
  .swiper-slide {
  	display:none;

  	&.swiper-slide-active, &.swiper-slide-prev, &.swiper-slide-next {
  		display: block;
  	}
  }
   */
}
section.prodotto .box-modelli-prodotti .box-singolo {
  max-width: 30.2%;
  background-color: #3B3B3B;
  padding: 1em;
  margin: 0.5em;
}
@media all and (max-width: 480px) {
  section.prodotto .box-modelli-prodotti .box-singolo {
    max-width: 90%;
    /*
    &.verticali {
    	max-width: 86%;
    }
     */
  }
}
section.prodotto .box-modelli-prodotti .box-singolo .title {
  font-size: 2em;
  color: var(--page-dominant-color);
}
@media all and (max-width: 480px) {
  section.prodotto .box-modelli-prodotti .box-singolo .title {
    font-size: 1.4em;
  }
}
section.prodotto .box-modelli-prodotti .box-singolo .description {
  margin-top: 1em;
  font-size: 0.8em;
  line-height: 1.5em;
}
section.prodotto .box-modelli-prodotti .box-singolo .description .description-title {
  color: white;
}
section.prodotto .box-modelli-prodotti .box-singolo .description .description-text {
  color: #b5b5b5;
}
section.prodotto .box-modelli-prodotti .box-singolo .description .download-box {
  margin-top: 3em;
}
section.prodotto .box-modelli-prodotti .box-singolo .description .download-box hr {
  color: white;
}
section.prodotto .box-modelli-prodotti .box-singolo .description .download-box a, section.prodotto .box-modelli-prodotti .box-singolo .description .download-box a:link, section.prodotto .box-modelli-prodotti .box-singolo .description .download-box a:visited, section.prodotto .box-modelli-prodotti .box-singolo .description .download-box a:hover, section.prodotto .box-modelli-prodotti .box-singolo .description .download-box a:active {
  border-radius: 2em;
  border: 1px solid #4CB762;
  float: right;
  text-decoration: none;
  color: white;
  padding: 0.5em;
  width: 40%;
  text-align: center;
}
section.prodotto .box-modelli-prodotti .box-modelli-nav {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-content: center;
  flex-direction: row;
}
section.prodotto .box-modelli-prodotti .box-modelli-nav > div {
  margin: 0 0.1em;
  cursor: pointer;
  font-size: 2em;
}
section.prodotto .box-modelli-prodotti .box-modelli-nav > div > i {
  background: var(--page-dominant-color);
  color: black;
  border-radius: 20px;
}
section.prodotto .box-prodotto-configurazioni {
  color: rgba(0, 0, 0, 0.57);
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-flow: row;
  margin-top: 5em;
  margin-bottom: 5em;
  align-items: center;
}
@media all and (max-width: 480px) {
  section.prodotto .box-prodotto-configurazioni {
    flex-flow: column;
    align-items: start;
  }
}
section.prodotto .box-prodotto-configurazioni .title-box {
  width: 50%;
}
@media all and (max-width: 480px) {
  section.prodotto .box-prodotto-configurazioni .title-box {
    width: 100%;
    order: 2;
  }
}
section.prodotto .box-prodotto-configurazioni .title-box .title {
  font-size: 2.5em;
  color: #4CB762;
  text-align: right;
  font-weight: bold;
}
@media all and (max-width: 480px) {
  section.prodotto .box-prodotto-configurazioni .title-box .title {
    text-align: left;
    font-size: 1.6em;
  }
}
section.prodotto .box-prodotto-configurazioni .title-box .subtitle {
  margin-top: 1em;
  font-size: 1em;
  text-align: right;
}
@media all and (max-width: 480px) {
  section.prodotto .box-prodotto-configurazioni .title-box .subtitle {
    text-align: left;
  }
}
section.prodotto .box-prodotto-configurazioni .image-box {
  width: 50%;
}
@media all and (max-width: 480px) {
  section.prodotto .box-prodotto-configurazioni .image-box {
    text-align: left;
    width: 100%;
    order: 1;
  }
}
section.prodotto .box-prodotto-configurazioni .image-box img {
  max-width: 70%;
}
@media all and (max-width: 480px) {
  section.prodotto .box-prodotto-configurazioni .image-box img {
    max-width: 100%;
  }
}
section.prodotto .box-prodotto-tab-comparativa {
  color: rgba(0, 0, 0, 0.57);
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-flow: row;
  margin-top: 5em;
  margin-bottom: 5em;
  align-items: center;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont {
  overflow-x: scroll;
  flex-basis: 80%;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont::-webkit-scrollbar {
  display: none;
}
@media all and (max-width: 1024px) {
  section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont {
    flex-basis: 100%;
    scroll-behavior: auto;
  }
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table {
  border-collapse: collapse;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table td, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table th {
  min-width: 15em;
  text-align: left;
  padding: 0 2em;
}
@media all and (max-width: 1024px) {
  section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table td, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table th {
    padding: 0 1em;
  }
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table td:first-child, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table th:first-child {
  padding-left: 0;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table td:last-child, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table th:last-child {
  padding-right: 0;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table thead tr:first-child {
  line-height: 1.4;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table thead tr:first-child th, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table thead tr:first-child td {
  border-bottom: 1px solid black;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table thead tr:first-child td {
  font-weight: 500;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table thead .spacer {
  height: 2em;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table tbody th, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table tbody td {
  padding-bottom: 0.5em;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-cont table tbody th {
  vertical-align: top;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback {
  flex-basis: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 1024px) {
  section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback {
    flex-basis: 100%;
    display: none;
  }
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play .box-prod-tc-play-button, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play .box-prod-tc-back-play-button, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback .box-prod-tc-play-button, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback .box-prod-tc-back-play-button {
  color: var(--page-dominant-color);
  cursor: pointer;
  max-height: 32px;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play .box-prod-tc-play-button.box-prod-tc-back-play-button, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play .box-prod-tc-back-play-button.box-prod-tc-back-play-button, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback .box-prod-tc-play-button.box-prod-tc-back-play-button, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback .box-prod-tc-back-play-button.box-prod-tc-back-play-button {
  transform: rotate(180deg);
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play .box-prod-tc-play-button > .fa-solid.fa-play, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play .box-prod-tc-back-play-button > .fa-solid.fa-play, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback .box-prod-tc-play-button > .fa-solid.fa-play, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback .box-prod-tc-back-play-button > .fa-solid.fa-play {
  background: black;
  border-radius: 20px;
  width: 32px;
  height: 32px;
  position: relative;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play .box-prod-tc-play-button > .fa-solid.fa-play:before, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play .box-prod-tc-back-play-button > .fa-solid.fa-play:before, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback .box-prod-tc-play-button > .fa-solid.fa-play:before, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback .box-prod-tc-back-play-button > .fa-solid.fa-play:before {
  position: absolute;
  top: 8px;
  right: 8px;
}
section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play .box-prod-tc-play-button.box-prod-tc-play-button > .fa-solid.fa-play:before, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-play .box-prod-tc-back-play-button.box-prod-tc-play-button > .fa-solid.fa-play:before, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback .box-prod-tc-play-button.box-prod-tc-play-button > .fa-solid.fa-play:before, section.prodotto .box-prodotto-tab-comparativa .box-prod-tc-scrollback .box-prod-tc-back-play-button.box-prod-tc-play-button > .fa-solid.fa-play:before {
  right: 10px;
}
section.prodotto .box-prod-tc-dl-wrap {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 5em;
}
@media all and (max-width: 480px) {
  section.prodotto .box-prod-tc-dl-wrap {
    text-align: center;
  }
}
section.prodotto .box-prod-tc-dl-wrap .box-prod-tc-dl {
  display: block;
  cursor: pointer;
  border: 1px solid var(--page-dominant-color);
  border-radius: 25px;
  padding: 1em;
}
section.prodotto .body-contattaci {
  margin-top: 6em;
  background-color: #EEF5EA;
}
section.prodotto .body-contattaci .head-generic-box {
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
  padding: 2em 0 2em 0;
}
section.prodotto .body-contattaci .head-generic-box .title {
  color: #529721;
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
section.prodotto .body-contattaci .head-generic-box .sub-title {
  text-align: center;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  opacity: 0.57;
}
section.prodotto .body-contattaci .box-contatti {
  padding: 1.5em 0 4.5em;
  margin: 0.5em auto 0;
  width: 80%;
}
section.prodotto .body-contattaci .box-contatti .box-form {
  margin: 1em 1em 1em 1em;
}
section.prodotto .box-title .header {
  border-top: 2px solid rgb(82, 151, 33);
  border-bottom: 2px solid rgb(82, 151, 33);
  width: 80%;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
}
section.prodotto .box-title .header .title {
  color: rgb(82, 151, 33);
  text-align: center;
  padding: 1em;
}

input, textarea, button {
  font-family: "Segoe UI", sans-serif;
}

.grid-calls {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  width: 40%;
}
@media all and (max-width: 1024px) {
  .grid-calls {
    width: 100%;
  }
}

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